/* Theme toggle switcher */

.nav__checkbox__container {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 30px;
}
.nav__checkbox {
    opacity: 0;
}

.nav__checkbox__label {
    width: 50px;
    height: 23px;
    background-color: rgb(114, 110, 110);
    display: flex;
    border-radius: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    position: relative;
    transform: scale(1.5);
    cursor: pointer;
}

.nav__checkbox__ball {
    width: 20px;
    height: 20px;
    background-color: white;
    position: absolute;
    top: 2px;
    left: 2px;
    border-radius: 50%;
    transition: transform 0.2s linear;
}

.nav__checkbox:checked+.nav__checkbox__label .nav__checkbox__ball {
    transform: translateX(24px);
}

.nav__checkbox__moon, .nav__checkbox__sun {
    height: 15px;
}

@media (max-width: 768px) {

    .nav__checkbox__container {
        display: none;
    }

}