body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    margin: 0;
}

fieldset {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    font-size: .9rem;
}

dl {
    color: #363636;
}

dl dd {
    text-align: right;
}

#logo {
    position: absolute;
    top: 5%;
    right: 2.5%;
    width: 100px;
    z-index: 10001;
}

#controls-panel {
    background-color: #ffffff;
    border-radius: 8px;
    position: absolute;
    top: 5%;
    left: 2.5%;
    width: 25%;
    max-height: 75vh;
    height: auto;

    padding: 24px 8px;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    z-index: 10000;
}
#controls-panel #slider {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
fieldset, button  {font-size: .8rem!important;}
h6  {font-size: .9rem!important;}
h3  {font-size: 1.1rem!important;}

@media only screen and (max-width: 992px) {
    #controls-panel {
        width: 45%;
        left: 5%;
        top: 2.5%;
    }
    #controls-panel h3 {
        margin-right: 50px!important;
    }
    #logo {
        right: 5%;
        top: 3.5%;
        width: 50px;
    }
    #controls-panel img {
        width: 15%;
    }
}

@media only screen and (max-width: 768px) {
    #controls-panel {
        width: 95%;
        left: 2.5%;
        top: 1%;
        max-height: 90vh;
    }
}

#controls-panel h1 {
    color: #363636 !important;
}

#map {
    height: 100%;
    width: 100%;
}

.leaflet-popup-content p {
    margin: 0;
    color: #363636;
}

.leaflet-touch .leaflet-bar a {
    padding: 0;
    border-radius: 8px !important;
}

button {
    padding: 8px !important;
    font-size: .9rem;
}

div {
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;

    opacity: 1;
    visibility: visible;
    height: auto;
}

div.hidden, button.hidden {
    display: none;
    opacity: 0;
    visibility: hidden;
    height: 0;
}

div[role="group"] {
    box-shadow: none!important;
}

/** LPP Colors **/
[type="checkbox"]:checked,
[type="checkbox"]:checked:active,
[type="checkbox"]:checked:focus,
[type="radio"]:checked,
[type="radio"]:checked:active,
[type="radio"]:checked:focus {
    accent-color: #00ffac;
    background-color: #00ffac;
    border-color: #363636;
    color: #363636;
}

[type="range"]:active::-moz-range-thumb, [type="range"]:focus-within::-moz-range-thumb,
[type="range"]:active::-webkit-slider-thum, [type="range"]:focus-within::-webkit-slider-thum {
    background-color: #00ffac!important;
}

/** Iframe **/
.iframe > #controls-panel > .container-fluid:not(:first-of-type) {
    display: none;
}