<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
#main-form{
    position: relative;
    height: 100%;
}
.question-title {
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 700;
}
.question-answer .radio-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.question-answer{
    margin: 10px 0;
}
.question-answer label {
    margin: 0;
    font-size: 15px;
    color: #000;
    line-height: 24px;
    font-weight: 400;
    margin-left: 0;
    width: calc(100% - 30px);
    cursor: pointer;
}
.question-list {
    height: calc(100vh - 165px);
    background: #fff;
    overflow: auto;
}
.controls-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#controls-wrapper {
    background: #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 15px;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    min-height: 120px;
    display: grid;
}

#controls .btn.focus, 
#controls .btn:focus {
    outline: 0;
    box-shadow: none;
}
#controls .btn {
	color: #ffffff;
	padding: 12px 25px;
	cursor: pointer;
	-webkit-transition: 0s;
	-o-transition: 0s;
	transition: 0s;
	border-radius:0.1rem;
	background: #f26c4f;
}
#controls .btn {
    border: none;
    box-shadow: none;
    border-radius: 4px;
	font-family: var(--font-main);
    font-size: 1.4rem;
}
#controls .mobile{
    display: none;
}
#controls{
    display: flex;
    justify-content: space-between;
    height: 44px;
}
#controls .back-question-icon,
#controls .next-question-icon {
    background: #EAF0F7;
    color: #67758D;
    border-radius: 20px;
    height: 40px;
    width: 250px;
    text-align: center;
    font-weight: bold;
    line-height: 40px;
    font-size: 15px;
}
#controls .back-question-icon {
    background: #EAF0F7;
    color: #67758D;
}
#controls .next-question-icon {
    background: #EF803D;
    color: #fff;
}
#controls .back-question-icon.disabled,#controls .next-question-icon.disabled,
#controls .back-question-icon:hover,#controls .next-question-icon:hover {
    opacity: .7;
}
#controls #submit-tests {
    font-weight: bold;
}
.question-number-container{
    padding-right: 0;
}
.question-number-wrapper{
    display: flex;
    flex-flow: wrap;
    column-gap: 33px;
    row-gap: 33px;
    max-height: calc(100vh - 350px);
    overflow-x: hidden;
    overflow-y: auto;
    background: #fff;
    padding: 15px;
}
.question-number-wrapper::-webkit-scrollbar,
.question-list::-webkit-scrollbar{
    width:5px;
}
.question-number-wrapper::-webkit-scrollbar-thumb,
.question-list::-webkit-scrollbar-thumb{
    background-color: #d0d0d0;
}
.question-number-wrapper::-webkit-scrollbar-track,
.question-list::-webkit-scrollbar-track{
    background-color: #fff;
}
.question-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
  font-weight: bold;
    color: #67758D;
}
.test-question-info{
  background-color:#fff;
  padding: 15px;
}
.test-question-info::after{
  content: "";
    display: block;
    width: 80%;
    height: 1px;
    background: #f5f5f5;
    margin: 20px auto 0px;
}
.test-question-header{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f3f3f3;
    padding: 20px 0;
    align-items: center;
}
.tests-question-title{
  font-size: 20px;
    font-weight: bold;
}
.tests-time-count{
  font-size: 20px;
}
.question-number-type {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
}
.tests-number-right-answer{
    font-weight: 600;
}
.tests-number-right-answer span{
    color: #00C48C;
    
}
.question-number-type .answered,
.question-number-type .unread,
.question-number-type .notanswer{
    position: relative;
    font-size: 15px;
}
.question-number-type .answered::before,
.question-number-type .unread::before,
.question-number-type .notanswer::before{
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
}

.question-number-type .answered::before{
    background: #f9d2bb;
}
.question-number-type .unread::before{
    background: #F6F9FC;
    border: 1px solid #f5f5f5;
}
.question-number-type .notanswer::before{
    background: #DEE5EF;
}
.question-number.unread{
    background: #F6F9FC;
}
.question-number.notanswer{
    background: #DEE5EF;
    color: #fff;
}
.question-number.answered{
    background: #f9d2bb;
    color: #EF803D;
}

.question-number.selected{
    font-size: 20px;
    border: 2px solid #67758D;
}

.tests-question-number-note {
    padding-left: 20px;
    font-size: 12px;
}
.question-wrapper{
    padding: 15px;
    width: 100%;
    background: #fff;
    margin-bottom: 15px;
    position: relative;
}
.question-question {
    padding: 20px 0;
    font-size: 15px;
    border-bottom: 1px solid #e2e8f0;
    line-height: 24px;
}
.question-answer-wrapper{
  margin-top: 20px;
  margin-bottom: 40px;
}
.question-answer-note {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
}
.remove-answer {
    color: red;
    font-weight: bold;
    line-height: 40px;
    font-size: 15px;
    cursor: pointer;

}
.icheck-radio {
    border-radius: 50%;
}
.icheck{
  position: relative;
    width: 22px;
    height: 22px;
    border: 2px solid #C4CFDD;
    cursor: pointer;
}
.icheck.checked{
  border: 2px solid #EF803D;
}
.icheck-checkbox.checked::after{
  content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #EF803D;  
}
.icheck-radio.checked::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #EF803D;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.question-answer-radio,.question-answer-checkbox {
    margin: 0 !important;
  padding: 0 !important;
    position: absolute;
    top: -20%;
    left: -20%;
    display: block;
    width: 140%;
    height: 140%;
    background: rgb(255, 255, 255);
    border: 0px;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}
.radio-control:hover .icheck-radio::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #EF803D;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.radio-control:hover .icheck-checkbox::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #EF803D;
}
.radio-control:hover .icheck {
    border: 2px solid #EF803D;
}
.radio-control:hover .icheck-label{
  color: #EF803D;
    font-weight: bold;
}
.question-number-type-choice.right_answer::before{
  background: #00C48C;
}
.question-number-type-choice.wrong_answer::before{
  background: #ff7272;
}
.question-number-type-choice{
  position: relative;
}
.question-number-type-choice::before {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 0;
    left: -24px;
}
.question-number.wrong_answer {
    background: #ff7272;
    color: #fff;
}
.question-number.right_answer {
   background: #00C48C;
}
.question-answer.wrong_answer {
    background: #ff7272;
}
.question-answer.right_answer {
   background: #00C48C;
    color: #fff;
}
.question-answer.wrong_answer label,
.question-answer.right_answer label{
    color: #fff !important;
}
.category-container{
    margin-top: 20px;
}
.question-number-container {
    padding-right: 0;
    padding-left: 0;
    box-shadow: 0 5px 30px -10px rgb(0 0 0 / 20%);
}
.question-container {
    box-shadow: 0 5px 10px -10px rgb(0 0 0 / 20%);
}

.question-question p {
    font-family: var(--font-main) !important;
}

@media (max-width: 1199px) {
    .question-number-wrapper{
        column-gap: 30px;
        row-gap: 30px;
    }
}

@media (max-width: 767px) {
    .question-number-wrapper::-webkit-scrollbar, .question-list::-webkit-scrollbar{
        width: 3px;
        height: 3px;
    }
    .question-number-wrapper {
        flex-flow: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
    }
    .question-number {
        min-width: 40px;
    }
    .question-number-type {
        padding: 10px 0;
    }
    .test-question-info::after {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        background: #f5f5f5;
        margin: 0;
    }
    .tests-question-number-note{
        display: none;
    }
    .question-number-close-button {
        position: absolute;
        top: -12px;
        right: 3px;
        font-size: 24px;
        color: #EF803D;
        background: #fff;
        border-radius: 50%;
    }
    #controls-wrapper{
        position: fixed;
        left: 0;
        right: 0;
        z-index: 100;
    }
    #back2Top{
        z-index: -1;
    }
    .d-none-desktop{
        display: block;
    }
    .question-number-container{
        position: fixed;
        z-index: 101;
        left: 0;
        right: 0;
        bottom: 60px;
        display: none;
    }
    .report-question{
        padding: 6px;
    }
}
@media (max-width: 600px) {
	#controls .mobile{
        display: block;
    }
    #controls .desktop{
        display: none;
    }
}
</pre></body></html>