@charset "UTF-8";
/* Imports for Project */
/***********************************
 *   STUFF WE NEED BASIC LAYOUT    *
 *     BUT COMES FROM OTH SITE     *
 * NEEDS TO BE REMOVED FOR PUBLISH *
 ***********************************/
/* Fonts */
/* Main Stuff */
/****************************************************/
/**           CUSTOM CSS FOR FILTER OPTIONS       **/
/**************************************************/
.accordion-button:not(.active)::after {
  background-image: var(--bs-accordion-btn-icon);
}

.accordion-button.active::after {
  background-image: var(--bs-accordion-btn-icon);
  -webkit-transform: var(--bs-accordion-btn-icon-transform);
      -ms-transform: var(--bs-accordion-btn-icon-transform);
          transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-collapse {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}

.filter-icon {
  width: 15px;
  height: 15px;
  margin-right: 8px;
}

.map-filter {
  padding: 10px;
  background-color: #f2f2f2;
}

.form-check-filter {
  padding-left: 0 !important;
}
.form-check-filter input[type=radio] {
  margin-right: 0px;
}

.form-select-lms {
  word-wrap: break-word;
}

.femanager_stack_teachingniveau.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.femanager_stack_teachingniveau.hide {
  display: none !important;
}

.input-container {
  position: relative;
  display: inline-block;
}

.input-container input:-moz-placeholder-shown + button {
  opacity: 0;
  pointer-events: none;
}

.input-container input:-ms-input-placeholder + button {
  opacity: 0;
  pointer-events: none;
}

.input-container input:placeholder-shown + button {
  opacity: 0;
  pointer-events: none;
}

.input-container button {
  position: absolute;
  border: none;
  width: 20px;
  height: 20px;
  line-height: 16px;
  border-radius: 50%;
  top: 9px;
  bottom: 0;
  right: 35px;
  background: #ed7100;
  color: white;
  padding: 0;
  padding-right: 5px;
  outline: none;
  cursor: pointer;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.show-reset-button {
  position: relative;
  top: -50%;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.hide-reset-button {
  display: none;
}

/* Map Stuff */
#mapContainer {
  position: relative;
  width: 100%;
  /* height: 100%;
  width: 100vw; */
}

/* CUSTOM CURSOR STYLES */
.leaflet-interactive {
  cursor: pointer;
}

.leaflet-grab {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: default;
}

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}

.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: move;
}

/*** ICON STYLES ***/
.member-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.member-icon:hover .member-label {
  -webkit-box-shadow: 0px 0px 5px 4px rgb(255, 171, 46);
  box-shadow: 0px 0px 5px 4px rgb(255, 171, 46);
}

.icon-img {
  width: 72px;
  height: 72px;
  margin-left: 12px;
}

/**********************
 * STYLE FOR MARKER LABEL *
 **********************/
.member-label {
  border: none;
  border-radius: 0px;
  color: white;
  font-family: MetaWeb, Tahoma, Geneva, Helvetica, Arial, sans-serif;
  white-space: nowrap;
  padding: 6px;
  -webkit-box-shadow: 0 1px 3px rgba 0, 0, 0, 0.4;
          box-shadow: 0 1px 3px rgba 0, 0, 0, 0.4;
}
.member-label:before {
  border-bottom-color: transparent;
}
.member-label.orangeColor {
  background-color: #ed7100;
}
.member-label.greyColor {
  background-color: #53555a;
}
.member-label.cyanColor {
  background-color: #1fb1cc;
}
.member-label.purpleColor {
  background-color: #6C3580;
}
.member-label.greenColor {
  background-color: #45b179;
}
.member-label.blueColor {
  background-color: #00679f;
}

.marker-active-effect {
  -webkit-box-shadow: 0px 0px 5px 4px rgb(255, 171, 46);
  box-shadow: 0px 0px 5px 4px rgb(255, 171, 46);
}

.marker-cluster:hover {
  -webkit-box-shadow: 0px 0px 5px 4px rgb(255, 171, 46);
  box-shadow: 0px 0px 5px 4px rgb(255, 171, 46);
}

/****************************************************/
/**  OVERWRITE DEFAULT VALUES FROM LEAFLET POPUP  **/
/**************************************************/
.leaflet-popup-content {
  position: relative;
  margin: 0;
  font-family: MetaWeb, "Courier New", Tahoma, Geneva, Helvetica, Arial, sans-serif;
  color: #373a3c;
}
.leaflet-popup-content p {
  margin: 0 !important;
}
.leaflet-popup-content a {
  -webkit-text-decoration: none;
  text-decoration: none;
}

.leaflet-popup-content-wrapper {
  border-radius: 0 !important;
  padding: 0;
}

.leaflet-container .leaflet-popup-close-button {
  color: #c3c3c3 !important;
  right: 20px !important;
  top: 5% !important;
}

.leaflet-popup-scrolled {
  overflow-x: hidden !important;
}

.custom-close-btn {
  position: absolute;
  top: 20px;
  left: 400px;
  border: none;
  text-align: center;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #FFFFFF;
  -webkit-text-decoration: none;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
}

/****************************************************/
/**          CONTENT STYLES IN POPUP            **/
/**************************************************/
.member-info {
  margin-left: 5px;
}

.popup-header {
  padding: 20px;
  text-align: center;
  color: #FFFFFF;
  background-color: #ed7100;
}
.popup-header.orangeColor {
  background-color: #ed7100;
}
.popup-header.greyColor {
  background-color: #53555a;
}
.popup-header.cyanColor {
  background-color: #1fb1cc;
}
.popup-header.purpleColor {
  background-color: #6c3580;
}
.popup-header.greenColor {
  background-color: #45b179;
}
.popup-header.blueColor {
  background-color: #00679f;
}

td {
  padding-top: 10px;
}

td:nth-child(1) {
  padding-right: 25px;
  width: 165px;
}

.infos {
  padding: 0 20px 20px 20px;
  color: #373a3c;
  word-wrap: anywhere;
  border-collapse: separate;
}

.link-button-wrapper {
  margin: 0 20px 20px 20px;
}

.link-button {
  text-align: center;
  padding: 7px;
}
.link-button a {
  color: #ffffff;
}
.link-button a p {
  color: #ffffff;
}
.link-button.orangeColor {
  background-color: #ed7100;
}
.link-button.greyColor {
  background-color: #53555a;
}
.link-button.cyanColor {
  background-color: #1fb1cc;
}
.link-button.purpleColor {
  background-color: #6C3580;
}
.link-button.greenColor {
  background-color: #45b179;
}
.link-button.blueColor {
  background-color: #00679f;
}

.inline-border {
  border: 1px solid #ffffff;
  padding: 7px;
}

.hide-overlay {
  display: none;
}

.show-overlay {
  display: block;
}

.overlay-bg {
  position: absolute;
  background-color: rgba(12, 11, 11, 0.438);
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1000;
}

#preConsentScreen {
  background: url("../img/pre-screen-map.webp") no-repeat top left;
  background-size: cover;
}

#overlay-hint-no-auth-suburst {
  background: url("../img/pre-screen-sunburst.webp") no-repeat center center;
  background-size: contain;
}

#overlay-hint-no-auth-bubbles {
  background: url("../img/pre-screen-bubbles.webp") no-repeat center center;
  background-size: contain;
}

#preConsentScreen,
#overlay-hint-no-auth-suburst,
#overlay-hint-no-auth-bubbles {
  position: relative;
  width: 100%;
  height: 80vh;
}
#preConsentScreen.overlay-bg,
#overlay-hint-no-auth-suburst.overlay-bg,
#overlay-hint-no-auth-bubbles.overlay-bg {
  position: relative;
  top: auto;
  top: initial;
  left: auto;
  left: initial;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  -webkit-transform: initial;
      -ms-transform: initial;
          transform: initial;
}

.no-result-hint {
  /* top: 50%;
  left: 50%;
  transform: translate(-50%,-50%); */
  background-color: rgb(255, 255, 255);
  border: 2px solid #ed7100;
  padding: 20px;
  font-size: 10px;
  font-weight: 400;
}

span.preConsentInfoIcons {
  cursor: normal;
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  background-color: #f4f4f4;
  border-radius: 5px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  margin-bottom: -10px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
span.preConsentInfoIcons#preGoBackToMap {
  background-image: url("../img/layers.png") !important;
}
span.preConsentInfoIcons#preSunburstChart {
  background-image: url("../img/em-logosunbrus-chart-icon.svg") !important;
}
span.preConsentInfoIcons#preBubbleCharts {
  background-image: url("../img/em-logobubble-chart-icon.svg") !important;
}

.leaflet-control-layers-toggle {
  background-image: url("../img/layers.png") !important;
}

.leaflet-control-layers-base {
  font-family: MetaWeb, "Courier New", Tahoma, Geneva, Helvetica, Arial, sans-serif;
  color: #373a3c;
  padding: 5px;
}

.layer-title {
  padding-left: 10px !important;
}

.layer-img {
  height: 35px;
  width: 50px;
  margin: 5px 0px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.layer-img:hover {
  -webkit-box-shadow: 0px 0px 5px 3px rgba(255, 171, 46, 0.8);
  box-shadow: 0px 0px 5px 3px rgba(255, 171, 46, 0.8);
}

.active-layer {
  border: 3px solid #ed7100;
}

.map-header {
  font-size: 15px;
}

.leaflet-control-layers-selector {
  display: none;
}

@media (max-width: 576px) {
  .leaflet-popup-content {
    max-width: 300px !important;
    max-height: 80vh !important;
  }
  td:nth-child(1) {
    width: 130px;
  }
  #femanager_field_reset_hint {
    font-size: 10px !important;
  }
  .no-result-hint {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: rgb(255, 255, 255);
    border: 5px solid #f29400;
    z-index: 500;
    padding: 20px;
    font-size: 13px;
    font-weight: 400;
    width: 80%;
  }
  .custom-close-btn {
    position: absolute;
    top: 22px;
    left: 280px;
    border: none;
    text-align: center;
    font-size: 13px;
    color: #FFFFFF;
    -webkit-text-decoration: none;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
  }
}
@media (min-width: 576px) {
  .no-result-hint {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: rgb(255, 255, 255);
    border: 5px solid #f29400;
    z-index: 500;
    padding: 30px;
    font-size: 16px;
    font-weight: 400;
    width: 70%;
  }
}
@media (min-width: 768px) {
  .no-result-hint {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: rgb(255, 255, 255);
    border: 5px solid #ed7100;
    z-index: 500;
    padding: 30px;
    font-size: 16px;
    font-weight: 400;
    width: 70%;
  }
}
@media (min-width: 992px) {
  .no-result-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: rgb(255, 255, 255);
    border: 5px solid #ed7100;
    z-index: 500;
    padding: 30px;
    font-size: 20px;
    font-weight: 400;
  }
}
@media (min-width: 1200px) {
  .no-result-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: rgb(255, 255, 255);
    border: 5px solid #ed7100;
    z-index: 500;
    padding: 30px;
    font-size: 20px;
    font-weight: 400;
  }
}
@media (min-width: 1400px) {
  .no-result-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: rgb(255, 255, 255);
    border: 5px solid #ed7100;
    z-index: 500;
    padding: 30px;
    font-size: 20px;
    font-weight: 400;
  }
}
/****************************
 * CUSTOMIZATION OF OTH CSS *
 ****************************/
.accordion-collapse {
  padding: 0px;
}
.accordion-collapse.show {
  padding: 10px;
}

.accordion-button:focus:not(.active) {
  border-color: #f9ca80;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(242, 148, 0, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(242, 148, 0, 0.25);
}

#charts {
  background-color: #f2f2f2;
  display: none;
  position: relative;
  height: 80vh;
}

.leaflet-control-sunburstChart {
  cursor: pointer;
  width: 44px !important;
  height: 44px !important;
  background-image: url("../img/em-logosunbrus-chart-icon.svg") !important;
  background-size: 75%;
}

.leaflet-control-bubbleCharts {
  cursor: pointer;
  width: 44px !important;
  height: 44px !important;
  background-image: url("../img/em-logobubble-chart-icon.svg") !important;
  background-size: 75%;
}

#chartControlsContainer {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;
}
#chartControlsContainer a {
  cursor: pointer;
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  background-color: white;
  border-radius: 5px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
#chartControlsContainer a:hover {
  background-color: #f4f4f4;
}
#chartControlsContainer a#bubbleCharts {
  background-image: url("../img/em-logobubble-chart-icon.svg") !important;
}
#chartControlsContainer a#donutCharts {
  background-image: url("../img/em-logodonut-chart-icon.svg") !important;
}
#chartControlsContainer a#sunburstChart {
  background-image: url("../img/em-logosunbrus-chart-icon.svg") !important;
}
#chartControlsContainer a#goBackToMap {
  background-image: url("../img/layers.png") !important;
}

.subcharts-container {
  position: relative;
  font-weight: 400;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.subcharts-container .subchart {
  position: relative;
  margin: 0;
  padding: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-right: 1px solid #ccc;
}
.subcharts-container .subchart h3.chartHeading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 5px;
  text-align: center;
  font-size: 1.5em;
  z-index: 900;
}
.subcharts-container .subchart svg {
  width: 100%;
  height: 100%;
}
.subcharts-container .subchart svg#sunburstChart {
  width: 100%;
  height: calc(100% - 60px);
  margin-top: 50px;
}

@media only screen and (max-width: 576px) {
  .subcharts-container .subchart h3.chartHeading {
    font-size: 0.75em;
  }
  .centeredLabel {
    width: 20%;
    position: absolute;
    padding: 4px;
    text-align: center;
    top: 55%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    pointer-events: none;
    color: #53555a;
  }
  .centeredLabel .percentage {
    font-size: 0.8em;
  }
  .centeredLabel .correspondingLabel {
    font-size: 0.5em;
    margin-top: -15px;
  }
}
@media only screen and (min-width: 577px) {
  .centeredLabel {
    width: 20%;
    position: absolute;
    padding: 4px;
    text-align: center;
    top: 55%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    pointer-events: none;
    color: #53555a;
  }
  .centeredLabel .percentage {
    font-size: 1.5em;
  }
  .centeredLabel .correspondingLabel {
    font-size: 1em;
    margin-top: -15px;
  }
}
@media only screen and (min-width: 768px) {
  .centeredLabel {
    width: 25%;
    top: 54%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .centeredLabel .percentage {
    font-size: 2em;
  }
  .centeredLabel .correspondingLabel {
    font-size: 1em;
  }
}
@media only screen and (min-width: 1024px) {
  .centeredLabel {
    width: 20%;
    top: 53%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .centeredLabel .percentage {
    font-size: 1.4em;
  }
  .centeredLabel .correspondingLabel {
    font-size: 0.8em;
  }
}
@media only screen and (min-width: 1024px) and (max-height: 1024px) {
  .centeredLabel {
    width: 14%;
    top: 55%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .centeredLabel .percentage {
    font-size: 1.4em;
  }
  .centeredLabel .correspondingLabel {
    font-size: 0.8em;
  }
}
@media only screen and (min-width: 1280px) {
  .centeredLabel {
    width: 12%;
    top: 54%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .centeredLabel .percentage {
    font-size: 1.5em;
  }
  .centeredLabel .correspondingLabel {
    font-size: 0.75em;
    line-height: 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .centeredLabel {
    width: 10%;
    top: 53%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .centeredLabel .percentage {
    font-size: 1.5em;
  }
  .centeredLabel .correspondingLabel {
    font-size: 0.9em;
  }
}
@media only screen and (min-width: 576px) and (max-height: 576px) {
  .subcharts-container .subchart h3.chartHeading {
    font-size: 0.75em;
  }
  .centeredLabel {
    width: 8%;
    position: absolute;
    padding: 4px;
    text-align: center;
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    pointer-events: none;
    color: #53555a;
  }
  .centeredLabel .percentage {
    font-size: 0.7em;
  }
  .centeredLabel .correspondingLabel {
    font-size: 0.4em;
    margin-top: -15px;
  }
}
#sunburstLegendBox {
  margin-left: 10px;
  margin-bottom: 10px;
  position: absolute;
  left: 0px;
  bottom: 0px;
}
#sunburstLegendBox #sunburstLegend {
  min-width: 250px;
}
#sunburstLegendBox #sunburstLegend h4 > span {
  font-style: normal !important;
  font-weight: 400 !important;
}
#sunburstLegendBox #sunburstLegend,
#sunburstLegendBox #sunburstLegendToggle {
  position: relative;
  background-color: rgb(255, 255, 255);
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
  display: block;
  padding: 6px 15px 6px 6px;
  pointer-events: auto;
  border-radius: 4px;
}
#sunburstLegendBox #sunburstLegendToggle {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNTk5MDE0Mjk2NTEwIiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjE3Nzk4IiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ij48ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik05MzQuNCA0NzguNzJINzM3LjI4Yy0xNS44NzItMTEwLjA4LTExMS4xMDQtMTk0LjU2LTIyNS4yOC0xOTQuNTZTMzAyLjU5MiAzNjguNjQgMjg2LjcyIDQ3OC43Mkg4OS42djY2LjU2SDI4Ni43MmMxNS44NzIgMTEwLjA4IDExMS4xMDQgMTk0LjU2IDIyNS4yOCAxOTQuNTZzMjA5LjQwOC04NC40OCAyMjUuMjgtMTk0LjU2aDE5Ny4xMnYtNjYuNTZ6IiBmaWxsPSIjNzA3MDcwIiBwLWlkPSIxNzc5OSI+PC9wYXRoPjwvc3ZnPg==");
  width: 30px;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
}
#sunburstLegendBox #sunburstLegendToggle:hover {
  background-color: #f4f4f4;
}
#sunburstLegendBox .sunburstLegensIcons {
  width: 44px;
  height: auto;
}

.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
  -webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
  -webkit-transition: opacity 0.3s ease-in, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-in, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-in;
  transition: transform 0.3s ease-out, opacity 0.3s ease-in, -webkit-transform 0.3s ease-out;
}

.leaflet-cluster-spider-leg {
  /* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
  -webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
  -webkit-transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
  transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}

.marker-cluster-small {
  background-color: rgba(181, 226, 140, 0.6);
}

.marker-cluster-small div {
  background-color: rgba(110, 204, 57, 0.6);
}

.marker-cluster-medium {
  background-color: rgba(241, 211, 87, 0.6);
}

.marker-cluster-medium div {
  background-color: rgba(240, 194, 12, 0.6);
}

.marker-cluster-large {
  background-color: rgba(253, 156, 115, 0.6);
}

.marker-cluster-large div {
  background-color: rgba(241, 128, 23, 0.6);
}

/* IE 6-8 fallback colors */
.leaflet-oldie .marker-cluster-small {
  background-color: rgb(181, 226, 140);
}

.leaflet-oldie .marker-cluster-small div {
  background-color: rgb(110, 204, 57);
}

.leaflet-oldie .marker-cluster-medium {
  background-color: rgb(241, 211, 87);
}

.leaflet-oldie .marker-cluster-medium div {
  background-color: rgb(240, 194, 12);
}

.leaflet-oldie .marker-cluster-large {
  background-color: rgb(253, 156, 115);
}

.leaflet-oldie .marker-cluster-large div {
  background-color: rgb(241, 128, 23);
}

.marker-cluster {
  background-clip: padding-box;
  border-radius: 20px;
}

.marker-cluster div {
  width: 30px;
  height: 30px;
  margin-left: 5px;
  margin-top: 5px;
  text-align: center;
  border-radius: 15px;
  font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
}

.marker-cluster span {
  line-height: 30px;
}