/* SWITCH */
.theme-toggle-fixed {
    position: fixed;
    top: 20px;
    right: 25px;
    z-index: 9999;
}

.darkmode-toggle {
    position: relative;
    width: 60px;
    height: 28px;
    display: inline-block;
}

.darkmode-toggle input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    border-radius: 30px;
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
    font-size: 14px;
}

.slider:before {
    content: "";
    position: absolute;
    height: 24px;
    width: 24px;
    left: 2px;
    bottom: 2px;
    background: white;
    border-radius: 50%;
    transition: .4s;
}

.darkmode-toggle input:checked + .slider {
    background: #007bff;
    color: #fff;
}

.darkmode-toggle input:checked + .slider:before {
    transform: translateX(32px);
}

.theme-toggle-fixed {
    position: fixed;
    top: 20px;
    right: 25px;
    z-index: 9999;
}
