.switch {
    opacity: 0;
    position: absolute;
}

.switch-label {
    background-color: #ecdcdc;
    width: 50px;
    height: 26px;
    border-radius: 50px;
    position: relative;
    padding: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fa-moon {
    color: #80766c;
}

.fa-sun {
    color: #f39c12;
}

.switch-label .ball {
    background-color: #fff;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 2px;
    top: 2px;
    border-radius: 50%;
    transition: transform 0.2s linear;
}

.switch:checked + .switch-label .ball {
    transform: translateX(24px);
}

