
#checkInput  {
    position: absolute;
    top: 50%;
    left: 50%;
    /* z-index: 1; */
    visibility: hidden;

    -webkit-tap-highlight-color: transparent;
}

#checkInput[type="checkbox"] {
    transform: scale(2.5);
}

.changeTheme{
    position: absolute;
    padding: 15px;
    width: 100px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    top: 48px;
    left: 130px;

    user-select: none;
    cursor: pointer;
    transition: background 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

#black_btn, #white_btn {
    width: 50px;
    height: 60px;
    border-radius: 50% / 50%;
    /* border: 1px solid rgb(10, 10, 10); */
}

#black_btn {
    position: absolute;
    top: 15px;
    right: 10px;
    transform: rotate(35deg);
    background-color: rgb(41, 45, 62);
    box-shadow: -3px 3px 5px rgba(0,0,0,0.2); /* deslocamento-x deslocamento-y blur spread cor; */
}

#white_btn {
    position: absolute;
    top: 15px;
    left: 12px;
    transform: rotate(-35deg);
    background: rgb(112, 194, 112);
}

#checkInput:checked~#white_btn {
    background: rgb(25, 26, 33);
    transition: all 0.9s ease-in-out;
}

#checkInput:checked~#black_btn {
    background: rgb(112, 194, 112);
    transition: all 0.9s ease-in-out;
}

