.question-screen{
    display: none;
    top: 42px;
    left: 0;
    width: 100svw;
    height: (100svh - 42px);
    background-color: #0000002e;
    backdrop-filter: blur(8px) ;
    position: absolute;
    justify-content: center;
    align-items: center;
    z-index: 30;
}
.question-effective-screen{
    width: 100svw;
    height: calc(100svh - 42px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.question-modal{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    background-color: white;
    width: min(65.429svw, 530px);
    border-radius: min(6.476svw, 5.232svh);
    font-size: 1rem;
    padding: min(4.857svw, 3.9245svh);
    border: min(1.0383svw, 0.839svh) solid #264AF4;
    max-height: (100svh - 42px);
}
.question-textbox{
    margin-top: min(2.5svw,20px);
    margin-bottom: min(2.5svw,20px);
    font-size: 1.25rem;
    width: 100%;
    max-height: min(92.143svw, 33.596svh);
    overflow-y: auto;
}
.question-selectbox{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: min(1.25svw,10px);
    margin-top: auto;
}
.question-selectbox>button{
    width: 100%;
    font-size: 1.5rem;
    padding-top: min(1.25svw, 1.01svh);
    padding-bottom: min(1.25svw, 1.01svh);
    padding-right: min(2.5svw, 2.02svh);
    padding-left: min(2.5svw, 2.02svh);
    border-radius: min(1.295svw, 1.046svh);
    border: 0;
    margin-top: min(2.165svw, 1.832svh);
    font-weight: bold;
    box-shadow: 0 0 5px gray;
    background-color: #264AF4;
    color: white;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.question-selectbox>button>span{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.CrOS>button{
    padding-bottom:min(2.5svw, 1.51svh);
}
.question-selectbox.noruby>button{
    align-items: center;
}
@media screen and (max-width: 768px) {
    .question-textbox{
        font-size: 0.75rem;
    }
    .question-selectbox>button{
        font-size: 1rem;
    }
}