/* SWITCH */

.switch {
    background-color: #fff;
    border-radius: 50px;
    display: none;
    padding: 10px;
}

.switch.is-visible {
    display: block;
}

.switch__btn {
    position: relative;
}

.switch__btn + .switch__btn {
    margin-top: 10px;
}

.switch__btn input {
    cursor: pointer;
    height: 100%;
    left: 0;
    opacity: 0;
    top: 0;
    position: absolute;
    width: 100%;
}

.switch__btn label {
    align-items: center;
    border-radius: 50%;
    color: var(--blue);
    display: flex;
    font-size: 40px;
    height: 70px;
    justify-content: center;
    width: 70px;
}

.is-room-2 .switch__btn label {
    color: var(--red);
}

.switch__btn input:checked + label {
    background-color: var(--black);
    color: var(--grey-l);
}
