body {
    font-family: "Inter", sans-serif;
    max-width: 100%;
    overflow-x: hidden;
}

.preview-modal {
    background-color: #ebebeb;
    border-radius: 9px;
}

#close {
    float:right;
    font-size: 1.25rem;
    transition: 0.25s;
    cursor: pointer;
}

#close:hover {
    color: #00000070;
}

.bar {
    background: #ffffff;
    box-shadow: 1px 6px 20px 3px rgba(0, 0, 0, 0.09);
    border-radius: 13px;
    font-size: 16px;
    /* font-size: 1.03359vw; */
    font-family: "Inter",Helvetica,Arial,sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 18px;
    letter-spacing: -.03em;
    display: block;
    padding: 8px 12px;
    position: fixed;
    top: 0;
    left: 50%;
    width: auto;
    height: auto;
    color: #1d1d1d;
    margin: 3.33333vw 0 0;
    z-index: 8;
    white-space: nowrap;
    -webkit-transform: translate3d(-50%,0,0);
    transform: translate3d(-50%,0,0);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 1;
    -webkit-transition: opacity 1s .5s;
    transition: opacity 1s .5s;
}

.poppins-font {
    font-family: "Poppins", sans-serif;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    /* needed for Firefox: */
    overflow: hidden;
    text-align: center;
    text-align-last: center;
}

option {
text-align: left;
/* reset to left*/
}

.answer-card {
    border: 2px solid #D2D2D2;
    border-radius: 48px;    
    box-shadow: none;
    -webkit-transition-duration: 500ms; /* Safari */
    transition-duration: 500ms;
    transition: 500ms;
    width: 100%;
    background-color: #ffffff;
}

.answer-card:hover {
    border: 2px solid #868686;
    -webkit-transition-duration: 500ms; /* Safari */
    transition-duration: 500ms;
    transition: 500ms;
}

.navbar-container {
    padding-top: 10vh;
}

.vl {
    border-left: 2px solid rgb(204, 204, 204);
}

@media screen and (max-width: 600px) {

    .hide-mobile {
        visibility: hidden;
        display: none;
    }

    .bar {
        margin-top: 15vw;
        padding: 4px 6px;
    }
    
    .main-container {
        margin-top: 5vh;
    }

    .solutionText {
        display: none;
    }

    }

    #answer1 #answer2 #answer3 #answer4 {
        -webkit-transition-duration: 500ms; /* Safari */
        transition-duration: 500ms;
        transition: 500ms;
    }


/* @media (prefers-color-scheme: dark) {
    body {
        color: #eee !important;
        background-color: black !important;
    }
    .bar {
        background-color: #232323 !important;
    }


    body a  {
        color: #809fff !important;
    }

    button, select {
        background-color: #232323 !important;
        color: #eee !important;
    }

    p {
        color: #eee !important;
    }
}
 */
.container p {

    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.main-container {
    margin-top: 30vh;
    display: block;
}

.main-overlay {
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
    background-color: white;
}

.click-overlay {
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1;
    background-color: transparent;
}

.dialog {
    background-color: #ffffff;
    position: relative;
    width: 100%;
    overflow-y: scroll;
    border-bottom: 1px solid #1d1d1d;
    display: none;
}

.solutionText {
    visibility: hidden;
    opacity: 0;
    transition: display 0s, opacity 0.75s linear;
    z-index: -10;
}

mark {
    background-color: rgb(177, 177, 177) !important;
    color: rgb(177, 177, 177) !important;
}