/* _content/Poll/Components/Components/AnswerItem.razor.rz.scp.css */


.question-small[b-dse9vd4ye4]{
    font-size: 10px;
}

.question-answer-player[b-dse9vd4ye4]{
    font-size: 12px;
}


.question[b-dse9vd4ye4] {
    border: 2px solid black;
    padding: 5px;
    text-align: center;
    display: flex;
    height: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 130%;

    /* Make it non selectable */
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}

.selected[b-dse9vd4ye4] {
    border: 4px solid black;
    cursor: default;
}

.not-selected[b-dse9vd4ye4] {
    opacity: 0.3;
    cursor: default;
}

.question-inner[b-dse9vd4ye4] {
    /* Make it non selectable */
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}

.question:nth-child(4n+0)[b-dse9vd4ye4] {
    background-color: rgb(182, 215, 168);
}

.question:nth-child(4n+1)[b-dse9vd4ye4] {
    background-color: rgb(201, 218, 248);
}

.question:nth-child(4n+2)[b-dse9vd4ye4] {
    background-color: rgb(179 153 234);
}

.question:nth-child(4n+3)[b-dse9vd4ye4] {
    background-color: rgb(255, 229, 153);
}

.question.valid[b-dse9vd4ye4] {
    border: 4px solid green;
}
.question.invalid[b-dse9vd4ye4] {
    opacity: 0.3;
}
/* _content/Poll/Components/Components/Latency.razor.rz.scp.css */
#latency-display[b-ohjqq1tjw3]{
    font-size:10px;
    position:fixed;
    left: 5px;
    bottom:5px;
}
/* _content/Poll/Components/Components/QrCodeRenderer.razor.rz.scp.css */
.qrcode[b-jotem23dn9]{
}
/* _content/Poll/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-5uk0ll1czv] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-5uk0ll1czv] {
    flex: 1;
}

.sidebar[b-5uk0ll1czv] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-5uk0ll1czv] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .top-row[b-5uk0ll1czv]  a, .top-row[b-5uk0ll1czv]  .btn-link {
        white-space: nowrap;
        text-decoration: none;
        color: rgb(33, 37, 41);
    }

    .top-row[b-5uk0ll1czv]  a:hover, .top-row[b-5uk0ll1czv]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-5uk0ll1czv]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-5uk0ll1czv] {
        justify-content: space-between;
    }

    .top-row[b-5uk0ll1czv]  a, .top-row[b-5uk0ll1czv]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-5uk0ll1czv] {
        flex-direction: row;
    }

    .sidebar[b-5uk0ll1czv] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-5uk0ll1czv] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-5uk0ll1czv]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-5uk0ll1czv], article[b-5uk0ll1czv] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-5uk0ll1czv] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-5uk0ll1czv] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.loading-screen[b-5uk0ll1czv]{
    text-align: center;
    margin-top: 30vh;
}
/* _content/Poll/Components/Layout/NavMenu.razor.rz.scp.css */
/* _content/Poll/Components/Pages/Home.razor.rz.scp.css */
.question-container[b-c2vxw0mmvy] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(10rem, 1fr); /* For equal height rows */
    gap: 1rem;
    margin: auto;
    width: 100%;

}

.answer-container[b-c2vxw0mmvy] {
    width: 100%;
    border: 1px solid black;
    padding: 1rem;
    min-height: 5rem;
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.answer-failure[b-c2vxw0mmvy] {
}

.answer-success[b-c2vxw0mmvy] {

}

.score-row[b-c2vxw0mmvy] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.3rem;
}

.score-row:nth-child(odd)[b-c2vxw0mmvy] {
    background: rgba(0, 0, 0, 0.07);
}

.player-names[b-c2vxw0mmvy] {

}

.game-end[b-c2vxw0mmvy]{
    text-align: center;
    font-size: 3rem;
}

.qrcode-container[b-c2vxw0mmvy]{
    margin:auto;
    max-height: 40vh;
    text-align: center;
}

[b-c2vxw0mmvy] .qrcode-container svg{
    max-height: 40vh;
    max-width: 100%;
}

.image-container[b-c2vxw0mmvy]{
    text-align: center;
    margin-bottom: 1rem;
}

.image-details[b-c2vxw0mmvy]{
    max-height: 30vh;
    max-width: 100%;
}

.footer[b-c2vxw0mmvy]{
    position: fixed;
    text-align: right;
    bottom: 0.3rem;
    left: 0.3rem;
    right: 0.3rem;
    height: 1rem;
}

.footer small[b-c2vxw0mmvy]{
    font-size: 11px;
}

.waiting-image-container[b-c2vxw0mmvy]{
text-align: center;
}

.waiting-image[b-c2vxw0mmvy]{
    max-width:100%;
}

.answer-countdown[b-c2vxw0mmvy]{    
    text-align: center;
    font-size: 10rem;
}
