.qAndA-Screen-main {
    width: 100%;
    height: 100%;
    background: #3E4C62;
    position: absolute;
    top: 0;
    z-index: 4;
}

.qAndA-Screen {
    position: relative;
    background-image: url(../../../Media/eng/images/common/alternate_background.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    max-width: 95%;
    margin: 4.5em auto;
    padding: 3em 0em;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    height: 660px;
}

.closeQandA {
    position: absolute;
    top: 46px;
    right: 66px;
    width: 18px;
    cursor: pointer;
    height: 18px;
}

.screen-title {
    max-width: 50%;
    background-image: url(../../../Media/eng/images/red_pat);
}

.top-line {
    align-self: self-start;
    margin-left: 4em;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    width: 85%;
}

.player-data {
    background-image: url(../../../Media/eng/images/common/);
    display: grid;
    width: 400px;
    grid-template-columns: 100px repeat(2, 1fr);
    grid-template-rows: 30px 30px;
}

.player-image {
    grid-column: 1/2;
    grid-row: 1/3;
}

.player-name {
    grid-column: 2/3;
    grid-row: 1/2;
}

.display-score {
    grid-column: 2/3;
    grid-row: 2/3;
}

.display-badges {
    grid-column: 3/4;
    grid-row: 2/3;
}

.category-header {
    margin-left: 1em;
    display: flex;
    align-items: center;
    gap: 1em;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1em;
}

.question-Q-A {
    width: 95%;
    margin-left: 4em;
    background-color: rgb(0 0 0 / 10%);
    border-radius: 10px;
    padding: 1.5em 1.5em;
    margin-bottom: 1em;
}

.question-block {
    /* overflow-y: scroll; */
    width: 94%;
    height: auto;
    padding-bottom: 2em;
}

.question-block::-webkit-scrollbar {
    width: 2em;
    background-color: red;
    border-radius: 20px;
}

.user-answer-div,
.correct-answer-div {
    position: relative;
    align-self: flex-start;
    float: left;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: none;
}

.user-answer-correct::after,
.correct-answer-div::after {
    content: url(../../../Media/eng/images/common/qa_right.png);
    /*position: absolute;*/
    /* top: 0; */
    /* left: 100%; */
    margin-left: -0.5em;
}

.user-answer-wrong::after {
    content: url(../../../Media/eng/images/common/qa_wrong.png);
    /* position: absolute; */
    /* top: 0; */
    /* left: 100%; */
    margin-left: -0.5em;
}

.qandAReport-text-container {
    background-position: 50% 50%;
    background-size: 100% 100%;
    text-align: center;
    color: #fff;
    width: 40%;
    margin: 0 auto;
    padding: 0.8rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 60px;
    background-color: #DE4F3E;
    border-radius: 30px;
    border: 3px solid #fff;
}

.mainQAndA .question-text {
    font-size: 16px;
    font-family: SPARTANMB-REGULAR;
    transition: all 0.2s ease;
    line-height: 25px;
    color: #11151B;
    display: inline-block;
}

.mainQAndA .question-options {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: space-around;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    align-items: flex-start;
    gap: 1em;
    padding: 2em;
}

.user-answer {
    color: #FFCC00;
    padding: 0.5em 1em 0.5em 1em;
    /* width: auto !important; */
    border: 2px solid #FFCC00 !important;
    border-radius: 20px;
    margin-left: 0em;
    align-self: flex-start;
}

.correct-answer {
    color: #fff;
    padding: 0.5em 1em 0.5em 1em;
    width: auto !important;
    border: 2px solid #fff !important;
    border-radius: 20px;
}

.question-block .question-text span:nth-child(2) {
    font-size: 20px;
    margin-top: 0;
    font-family: SPARTANMB-REGULAR;
    line-height: normal;
    width: auto;
    text-align: left;
}

.mainQAndA::-webkit-scrollbar {
    width: 5px;
    border-radius: 10px;
}


/* Track */

.mainQAndA::-webkit-scrollbar-track {
    /* box-shadow: inset 6px 1px 1px #3c4f6e; */
    border-radius: 10px;
    background-color: #3C4F6E;
    /* position: absolute; */
    /* left: 37px; */
}


/* Handle */

.mainQAndA::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 10px;
    width: 5px;
}


/* Handle on hover */

.mainQAndA::-webkit-scrollbar-thumb:hover {
    background: #de4f3f;
}

.mainQAndA::-webkit-scrollbar-track-piece {
    width: 10px;
    height: 50px;
}