/*
 * Switches of control (Maps)
 *
 */


.toggles-list {
    position: relative;
}

.toggle {
    display: flex;
    line-height: .8 !important;
    padding-bottom: 5px;
}

.nav-item {
    margin-right: 0.8rem !important;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 18px;
    margin-bottom: 0 !important;
}

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

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

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

input:checked + .slider {
    background-color: #93bd42;
}

input:focus + .slider {
    box-shadow: 0 0 1px #93bd42;
}

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

/* Rounded sliders */
.slider.round {
    border-radius: 14px;
}

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

.desc-slider {
    margin-left: 1rem;
    font-size: .8rem !important;
    line-height: .8 !important;
}

.maps-alert {
    text-align: left;
    font-size: .8rem !important;
    margin-top: .4rem;
}

.layer-div {
    width: 85%;
}

.layer-div-2 {
    width: 83%;
}

.help-div {
    position: absolute;
    padding-left: 86%;
    padding-top: 10px;
    z-index: 55;
}

.info-span {
    margin-left: 1rem;
    color: #93bd42;
    cursor: pointer;
}

.alert-span {
    /*  margin-left: 1rem;  */
    color: #e6e661;
    cursor: default;
}

@media (max-width: 1400px) {
    .alert-span {
        margin-top: unset !important;
    }
}

@media (max-width: 1600px) {
    .alert-span {
        margin-top: -2.8px;      /*  margin-top: 1.3px;      */
    }
}

.pop-alert {
    display              : none;
    position             : absolute;
    z-index              : 99999;
    padding              : 10px 15px 0 15px;
    background           : #93bd42;
    text-align           : justify;
    width                : 19rem;
    font-size            : .9rem;
    color                : white;
    border               : 1px solid #A2ADBC;
    border-radius        : 10px;
    -moz-border-radius   : 10px;
    -webkit-border-radius: 10px;
    /*  margin               : 0px;     */
    margin-left          : 1rem;
    margin-top           : -1rem;
    -webkit-box-shadow   : 0px 0px 5px 0px rgba(164, 164, 164, 1);
    box-shadow           : 0px 0px 5px 0px rgba(164, 164, 164, 1);
}	
