body {
    margin: 0;
    color: #999999;
    font-size: 10px;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

.logo {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.waterMarks {
    position: absolute;
    left: 80px;
    bottom: 20px;
    width: 400px;
    height: 200px;
    display: none;
}

.toggleContainer {
    position: absolute;
    left: 150px;
    bottom: 10px;
    display: none;
}

.slidecontainer {
    position: absolute;
    left: -37px;
    bottom: -80px;
    width: 25px;
    height: 200px;
    display: none;
}

.slider {
    writing-mode: bt-lr;
    -webkit-appearance: none;
    transform: rotate(270deg);
    appearance: none;
    width: 200px;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #046DAA;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 50%;
    background: #046DAA;
    cursor: pointer;
}

.depth {
    font-size: 20px;
    color: #CCCCCC;
    position: absolute;
    left: 10px;
    bottom: 120px;
    display: none;
}

.title {
    font-size: 36px;
    color: #b81818;
    position: absolute;
    top: 10px;
    left: 0px;
    right: 0px;
    text-align: center;
    /*-webkit-text-stroke: 1px #333333;*/
    text-shadow: -1px -1px 0 #DDDDDD,
    -1px 1px 0 #DDDDDD,
    1px -1px 0 #DDDDDD,
    1px 1px 0 #DDDDDD;
}

.subtitle {
    font-size: 26px;
    color: #ab5c09;
    position: absolute;
    top: 50px;
    left: 0px;
    right: 0px;
    text-align: center;
    /*-webkit-text-stroke: 1px #333333;*/
    text-shadow: -1px -1px 0 #DDDDDD,
    -1px 1px 0 #DDDDDD,
    1px -1px 0 #DDDDDD,
    1px 1px 0 #DDDDDD;
}


.imageNav {
    cursor: pointer;
    display: inline-block;
}

.location {
    font-size: 18px;
    color: #333333;
    position: absolute;
    top: 98px;
    left: 0px;
    text-align: center;
    -webkit-text-stroke: 1px #cccccc;
    cursor: pointer;
}

.mapBL {
    position: absolute;
    left: 20px;
    bottom: 30px;
    width: 270px;
    height: 140px;
}

.mapBR {
    position: absolute;
    right: 20px;
    bottom: 90px;
    width: 270px;
    height: 140px;
}

.esri-attribution {
    color: #777777;;
	position: absolute;
	top: 4px;
	left: 4px;
	width: 292;
	font-size: 8px;
}

/* POPUP */
.popuptext {
    visibility: hidden;
    width: 180px;
    background-color: #555;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 8px 8px;
    position: absolute;
    z-index: 1;
    bottom: 50%;
    left: 50%;
    margin-left: -80px;
    font-family: Arial;
    font-size: 13px;
    line-height: 22px;
}

.popuptext .separator {
    background-color: #AAAAAA;
    width: 170px;
    height: 1px;
    margin-left: 5px;
    margin-bottom: 5px;
}

.popuptext .popupTitle {
    text-align: center;
    font-weight: bold;
}

/* Popup arrow */
.popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media screen and (max-height: 600px) {
    .title {
        font-size: 20px;
    }
    
    .subtitle {
        font-size: 20px;
        top: 35px;
    }

    .location {
        top: 65px;
    }

    .logo {
        width: 150px;
        height: 36px;
    }

    .mapBL {
        position: absolute;
        left: 15px;
        bottom: 10px;
        width: 135px;
        height: 90px;
    }
    
    .mapBR {
        position: absolute;
        right: 15px;
        bottom: 51px;
        width: 135px;
        height: 80px;
    }

    .esri-attribution {
        color: #777777;
        position: absolute;
        top: 4px;
        left: 4px;
        width: 292;
        font-size: 6px;
    }
}

@media screen and (max-width: 600px) {
    .title {
        font-size: 20px;
    }

    .subtitle {
        font-size: 20px;
        top: 35px;
    }

    .location {
        top: 65px;
    }

    .logo {
        visibility: hidden;
    }

    .mapBL {
        visibility: hidden;
    }

    .mapBR {
        visibility: hidden;
    }
}

.toggleLabel {
    height: 46px;
    font-size: 16px;
    color: #CCCCCC;
    vertical-align: middle;
    position: relative;
    padding-top: 10px;
    /*
    position: absolute;
    bottom: 0px;
    display: inline-block;
    */
}

/* The switch - the box around the sslider */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The sslider */
.sslider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.sslider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.sslider {
    background-color: #2196F3;
}

input:focus+.sslider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.sslider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

/* Rounded ssliders */
.sslider.round {
    border-radius: 26px;
}

.sslider.round:before {
    border-radius: 50%;
}
