
.switch {
    position: relative;
    display: inline-block;
    width: 100% height: 31px;
    margin-top: 6px;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border: solid 1.5px rgba(0, 0, 0, 0.1);
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider.round {
        border-radius: 31px;
    }

    .slider:before {
        position: absolute;
        content: "";
        height: 28px;
        width: 28px;
        left: 0px;
        bottom: 0px;
        background: #fff;
        -webkit-transition: .4s;
        transition: .4s;
        box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.05), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 1px 0 rgba(0, 0, 0, 0.05);
        border: solid 0.5px rgba(0, 0, 0, 0.1);
    }

    .slider.round:before {
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: #002663;
}

    input:checked + .slider:before {
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

.map-toggle label {
    margin-top: 20px;
    padding-top: 5px;
    margin-right: 5px;
}

.map-toggle label {
    margin-top: 5px;
}

@media (max-width:768px) {
    .map-toggle label {
    }

    .map-toggle {
        margin-bottom: 30px;
    }
}

.map {
    background-color: #f4f4f4;
    padding: 10px;
    margin-top: 15px;
    margin-bottom: 20px;
}


.RadioButton input[type='radio'] {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border: 1px solid darkgray;
    border-radius: 50%;
    outline: none;
    box-shadow: 0 0 4px 0px gray inset;
}

    .RadioButton input[type='radio']:hover {
        box-shadow: 0 0 5px 0px #26405c inset;
    }

    .RadioButton input[type='radio']:before {
        content: '';
        display: block;
        width: 50%;
        height: 50%;
        margin: 25% auto;
        border-radius: 50%;
    }

    .RadioButton input[type='radio']:checked:before {
        background: #26405c;
    }

.RadioButton label {
    font-size: 16px;
    font-family: Lato-Bold;
    color: #26405c;
    margin: 5px;
}
