.find-pairs-frame {
    width: 100vw;
    height: 80vh;
}

.control-button-container {
    display: flex;

    width: 100vw;
    position: fixed;
    bottom: 0;

    margin-bottom: 5vh;

    justify-content: center;
    align-items: center;
}

.control-button {
    margin: 0;
}

.word-list {
    max-height: 70vh;
}

.word-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--lblue-3);
    font-weight: bold;
    font-size: 1.2em;

    padding: 0.25em;
    margin: 0.25em;

    border-radius: 0.5em;

    cursor: pointer;
}

.answer {
    width: 100%;
    background-color: white;
}

.answer:hover {
    background-color: whitesmoke;
}

.question {
    width: 100%;
}

.question:hover {
    background-color: #e9f6fd;
}

.current {
    border: thin;
    border-color: var(--green-3);
    padding: 0.25em;
    box-shadow: 0 0 0.5em 0.1em var(--green-3);
}

.current-vocab {
    background-color: #e9f6fd !important;
}

.hovering {
    background-color: #e9f6fd !important;
}

.correct {
    background-color: rgb(155, 255, 155);
}

.guess {
    background-color: rgb(255, 255, 155);
}

.control-button-container {
    padding-top: 0.5em;
    border-top: solid;
    border-color: var(--blue-1);

    background-color: var(--lblue-2);
    width: 100vw;
}

.control-button {
    font-size: 1.5em;
}

.control-button:hover{
    box-shadow: 0 0 0.5em 0.1em var(--lblue-1);
    background-color: var(--blue-2) !important;
    color: whitesmoke;
}

.indexing {
    color: var(--lblue-1) !important;
    display: none;
    font-size: large;
    font-weight: bold;
    padding-top: 0.4em;
    text-shadow: 0.05em 0.05em black;
}

.vocab:hover {
    cursor: pointer;
    background-color: #e9f6fd;
}

@media screen and (orientation: portrait) {
    .theme-lb.modal-content {
        height: 93vh;
    }
    
    .mobile {
        display: default;
    }

    .mobile-message {
        display: none;
    }

    .help {
        padding: 0.5em 0;
    }

    .btn.help {
        max-width: 2em;
        max-height: 2em;
        position: absolute;
        right: 1em;
        top: 0;
        padding: 0 !important;
    }

    /* .teacher-quiz-finish {
        position: absolute !important;
        left: auto !important;
        width: 95vw !important;
        top: 0 !important;
    } */
}

@media screen and (min-width: 1024px) {
    .orjhlab-comprehension-frame {
        max-width: 75vw;
    }

    .find-pairs-frame {
        width: 70vw;
    }

    .theme-lb.modal-content {
        height: 80vh;
    }

    .word-list {
        max-height: 60vh;
        max-width: 65vw;
        padding-bottom: 2em;
    }

    .control-button {
        position: absolute;
        right: 30vw;
    }

    .theme-lb.modal-content {
        overflow-y: hidden;
    }

    .control-button-container {
        position: fixed;
        height: 10vh;
        bottom: -5vh;
    }

    .indexing {
        display: block;
        width: 2em;
        height: 2em;
        border-radius: 50%;
        background-color: var(--lblue-3);

        text-align: center;
    }
}