#map {
    width: 100%; 
    height: 0px;
    position: relative;
}

body {
    margin: 0;
}

.legend {
    display: none;
    margin: 10px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;    
}
.legend#svcCtrLegend{
    width: 290px;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: default;

    /*    This makes the buttons unhighlightable. */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: moz-none;
    -ms-user-select: none;
    user-select: none;
}


.tooltip .tooltiptext {
    width: 85%;
    transition: opacity .2s linear 0s,
        top .8s cubic-bezier(0.22, 0.61, 0.36, 1);
    opacity: 0;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 7px;
    z-index: -10;

    /* Position the tooltip */
    position: absolute;
    left: -90%;
    top: -15%;
}

.tooltip .tooltipButton{
    background-color: black; 
    display: inline-block;
    border-style: solid; 
    border-width: 1px; 
    border-color: white; 
    margin: 2% 4%; 
    padding: 2% 5%;  
    cursor: pointer;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.tooltip .tooltipButton:hover{
    background-color: white; 
    color: black;
}

.tooltip #msg_MultipleEmails {
    top: -30%;
}

.tooltip .isHovered {
    opacity: 1;
}

.tooltip #msg_LogInSubscribe{
    font-weight: bolder;
    top: -60%;
}

.tooltip .MessageSlider_open{
    z-index: 10;
    opacity: 1;
/*    transition: opacity .4s linear;*/
}

.toogleTitle {
    text-align: center;
    font-size: 1.2em;
    padding: 5px 10px;
}

.circle {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    width: 20px;
    height: 20px; 
    float: left;
    /* width and height can be anything, as long as they're equal */
}

div#aeris-attribution {
    padding: 5px;
    font-weight: bold;
}

div.legendEntry {
    clear: both;
    padding: 5px 10px;
}

@media only screen and (max-width: 768px) {
    #layerToggleSection {
        display: none !important;
    }
    
    #svcCtrLegend {
        display: none !important;
    }
    
    body {
        min-width: 0px !important;
        height: 100%;
    }
    
    .headerSection {
        display: none;
    }
}

.layerToggle {
    padding: 5px 10px;
}

.advisory-container {
    font-size: 0.9em;
    width:300px;
}

.advisory-title {
    text-align: center;
}

.advisory-desc {
    max-height: 250px;
    overflow: auto;
    padding: 10px;  
}

.advisory-desc pre {
    white-space: -moz-pre-wrap; /* Mozilla, supported since 1999 */
    white-space: -pre-wrap; /* Opera */
    white-space: -o-pre-wrap; /* Opera */
    white-space: pre-wrap; /* CSS3 - Text module (Candidate Recommendation) http://www.w3.org/TR/css3-text/#white-space */
    word-wrap: break-word; /* IE 5.5+ */
    width: 210px;
}

.svcCtrInfoContainer {
    font-size: 0.9em;
    line-height: 1.8em;
    max-width: 350px;
}

.svcCtr-info-line label {
    font-weight: bold;
}

.svcCtr-info-detail {
    padding: 0px 5px;
}

.svcCtr-info-title {
    text-align: center;
}

.advisory-desc::-webkit-scrollbar {
    width: 12px;
}
 
.advisory-desc::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 10px;
}
 
.advisory-desc::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}