#phone_rotate_hint {
    position: absolute;
    left: 0; top: -100%; 
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    /* text-align: center; */
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.6rem;
    color: white;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}


#phone_rotate_hint img {
    max-width: 50%;
    max-height: 25%;
    width: 10rem; height: 10rem;
}

#phone_rotate_hint button {
    background-color: rgb(190, 190, 190);
    border-radius: 2rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.6rem;
    color: black;
    padding: 1rem 3rem;
}

body.intro #phone_rotate_hint button {
    display: none;
}




.dictor .switcher {
    display: inline-block;
    position: relative;
    width: 3.5rem; height: 2rem;
    vertical-align: middle;
    border-radius: 1rem; 
    background-color: rgba(255,255,255,0.2);
    margin: 0;
    margin-left: 1rem;
    cursor: pointer;
    transition: background-color var(--transition-duration);
}

.dictor .switcher::after {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 2rem; height: 2rem;
    border-radius: 1rem; 
    background-color: #F5503C;
    background-color: rgba(255,255,255,0.7);
    transition: left var(--transition-duration);
}

.dictor .switcher.off::after {
    left: 0;
}

body.dictor .dictor .switcher::after {
    left: calc(100% - 2rem);
}

body.dictor .dictor .switcher {
    background-color: #F5503C;
}

body.dictor .dictor .switcher::after {
    background-color: rgba(255,255,255,0.7);
}

