/* ===== TOGGLE SWITCHES ===== */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    margin: 0 12px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.switch input:checked + .switch-slider {
    background-color: #0066FF;
    border-color: #0052CC;
}

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

.switch:hover .switch-slider {
    background-color: rgba(255, 255, 255, 0.15);
}

.switch input:checked:hover + .switch-slider {
    background-color: #0052CC;
}
