

.ProQuiz-default{
    position: relative;
    display: grid;
    gap: 30px;
    margin: 0 auto;
    padding: 0 32.5px;
    width: 100%;
    max-width: 955px;

    color: #fff;
}

.ProQuiz-default .ProQuiz-ExamQuestions,
.ProQuiz-default .ProQuiz-Completed{
    grid-column: 1 / 2;
    grid-row: 1 / 2;

    opacity: 0;
    pointer-events: none;
    transition: opacity ease-in-out 200ms;
}
.ProQuiz-default .ProQuiz-ExamQuestions.active,
.ProQuiz-default .ProQuiz-Completed.active{
    pointer-events: auto;
    opacity: 1;
}


/*
 * ProQuiz-NoSubmissionAllowed
 */
.ProQuiz-NoSubmissionAllowed{
    padding: 30px 0;
    text-align: center;
}
.ProQuiz-NoSubmissionAllowed .title{
    margin: 0 0 20px;
    color: #13DBC4;
    font-size: 2.0625rem;
    line-height: calc( 44 / 33 );
    letter-spacing: 0;
    font-weight: normal;
}
.ProQuiz-NoSubmissionAllowed p{
    margin: 0 0 0;
    color: #fff;
    font-size: 1.625rem;
    line-height: calc( 35 / 26 );
    letter-spacing: 0;
    font-weight: normal;
}

/*
 * ProQuiz-ExamQuestions
 */
.ProQuiz-default .ProQuiz-ExamQuestions{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.ProQuiz-default .ExamQuestions-header{
    display: flex;
    flex-direction: column;
}
.ProQuiz-default .ExamQuestions-body{
    display: flex;
    flex-direction: column;
}
.ProQuiz-default .ExamQuestions-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ProQuiz-default .ExamQuestions-header .headline{
    padding: 30px 0;
    text-align: center;
}
.ProQuiz-default .ExamQuestions-header .title{
    margin: 0 0 0;
    color: #13DBC4;
    font-size: 2.0625rem;
    line-height: calc( 44 / 33 );
    letter-spacing: 0;
    font-weight: normal;
}
.ProQuiz-default .ExamQuestions-header .subTitle{
    margin: 0 0 0;
    color: #fff;
    font-size: 1.625rem;
    line-height: calc( 35 / 26 );
    letter-spacing: 0;
    font-weight: normal;
}
.ProQuiz-default .ExamQuestions-header .subTitle:empty{
    display: none;
}
.ProQuiz-default .ExamQuestions-header .tool{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    padding: 8px 0;
    color: #13DBC4;
    font-size: 1.125rem;
    line-height: calc( 24 / 18 );
    z-index: 1;
}
.ProQuiz-default .ExamQuestions-header .tool::before{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    background: linear-gradient(calc(180deg + 45deg), #1b385d, #008186);
    transform: translate3d(-50%,0,0);
    z-index: -1;
}
.ProQuiz-default .ExamQuestions-header .tool .timing.isWarning{
    color: #dc3545;
    font-weight: bold;
    animation: timingWarning 1s ease 0s infinite alternate;
}
@keyframes timingWarning
{
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.3);
    }
}
/* ExamQuestions-list */
.ProQuiz-default .ExamQuestions-list{
    display: grid;
    flex-direction: column;

    font-size: 1rem;
    line-height: calc( 32 / 24 );
}
.ProQuiz-default .ExamQuestions-list .item{
    grid-column: 1 / 2;
    grid-row: 1 / 2;

    display: flex;
    flex-direction: column;
    gap: 40px;

    opacity: 0;
    pointer-events: none;
    transition: opacity ease-in-out 200ms;
}
.ProQuiz-default .ExamQuestions-list .item.active{
    opacity: 1;
    pointer-events: auto;
}
.ProQuiz-default .ExamQuestions-list .item-header{
    display: flex;
    gap: 30px;
    align-items: center;
}
.ProQuiz-default .ExamQuestions-list .item-header .item-title{
    font-size: 1.375rem;
}
.ProQuiz-default .ExamQuestions-list .item-index{
    flex-shrink: 0;
    align-self: flex-start;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ProQuiz-default .ExamQuestions-list .item-index .progress-circle {
    --percent: 0;
    --size: 64px;
    --border-width: 1px;

    position: relative;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
}
.ProQuiz-default .ExamQuestions-list .item-index .progress-circle > svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.ProQuiz-default .ExamQuestions-list .item-index .progress-circle circle {
    --r: calc((var(--size) - var(--border-width)) / 2);

    cx: calc(var(--size) / 2);
    cy: calc(var(--size) / 2);
    r: var(--r);
    fill: none;
    stroke: #07707D;
    stroke-width: var(--border-width);
    stroke-linecap: round;
    stroke-dasharray: calc(2 * 3.1415 * var(--r) * (var(--percent) / 100)), calc(2 * 3.1415 * var(--r));
    transition: stroke-dasharray .4s linear, stroke .3s;
}
.ProQuiz-default .ExamQuestions-list .item-index span{
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.0625rem;
    line-height: calc( 44 / 33 );
    letter-spacing: 0;
    font-weight: normal;
}
.ProQuiz-default .ExamQuestions-list .item-body{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
}
.ProQuiz-default .ExamQuestions-list .item-body input{
    position: absolute;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}
.ProQuiz-default .ExamQuestions-list .item-body label{
    position: relative;
    display: flex;
    z-index: 1;
    padding: 0 20px;
    cursor: pointer;
    user-select: none;
}
.ProQuiz-default .ExamQuestions-list .item-body label::before{
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient( 279deg, #017E84, #008186);
    opacity: 0.25;
    z-index: -1;
    transition: opacity ease-in-out 200ms;
}
.ProQuiz-default .ExamQuestions-list .item-body label > span{
    display: flex;
    padding: 15px 20px;
    align-items: center;
}
.ProQuiz-default .ExamQuestions-list .item-body label > span:first-child{
    position: relative;
    flex-shrink: 0;
    font-size: 1.25rem;
}
.ProQuiz-default .ExamQuestions-list .item-body label > span:first-child::before{
    content: '';
    position: absolute;
    inset: 0 0 0 auto;
    border-right: 1px solid #00FF8C;
    opacity: 0.1;
}
.ProQuiz-default .ExamQuestions-list .item-body input:checked + label::before{
    opacity: 1;
}
@media (max-width: 991.98px) {
    .ProQuiz-default .ExamQuestions-list .item{
        gap: 30px;
    }
    .ProQuiz-default .ExamQuestions-list .item-body label{
        padding: 0 15px;
    }
    .ProQuiz-default .ExamQuestions-list .item-body label > span{
        padding: 10px 15px;
    }
}
.ProQuiz-default .ExamQuestions-footer{
    font-size: 1.375rem;
    line-height: calc( 30 / 22 );
}
.ProQuiz-default .ExamQuestions-footer svg{
    width: 1em;
    height: 1em;
    fill: currentColor;
}
.ProQuiz-default .ExamQuestions-footer > div > div{
    display: none;
}
.ProQuiz-default .ExamQuestions-footer a{
    display: flex;
    align-items: center;
    gap: 5px 15px;
    color: #13DBC4;
    user-select: none;
}


/*
 * ProQuiz-Completed
 */
.ProQuiz-default .ProQuiz-Completed{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 45px;
}
.ProQuiz-default .ProQuiz-Completed svg{
    width: 1em;
    height: 1em;
    fill: currentColor;
}
.ProQuiz-default .Completed-header{
    position: relative;
    padding: 25px 0;
    z-index: 1;
}
.ProQuiz-default .Completed-header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    background: linear-gradient(calc(180deg + 45deg), #1b385d, #008186);
    transform: translate3d(-50%,0,0);
    z-index: -1;
}
.ProQuiz-default .Completed-header .title{
    margin: 0 0 0;
    color: #13DBC4;
    font-size: 2.0625rem;
    line-height: calc( 44 / 33 );
    letter-spacing: 0;
    font-weight: normal;
}
.ProQuiz-default .Completed-body{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 35px;
    color: #fff;
    font-size: 1.125rem;
    line-height: calc( 24 / 18 );
}
.ProQuiz-default .ProQuiz-Completed.isLoading .Completed-body::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/loader_anim.svg');
    background-size: 80px auto;
    background-repeat: no-repeat;
    background-color: rgba(10, 69, 89,0.86);
    background-position: center center;
    border-radius: 10px;
    z-index: 100;
}
.ProQuiz-default .Completed-body > .title{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 0 0 0;
    color: #fff;
    font-size: 2.1875rem;
    line-height: calc( 47 / 35 );
    letter-spacing: 0;
    font-weight: normal;
}
.ProQuiz-default .Completed-body > .title > span{
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.125rem;
    height: 2.125rem;
    color: rgb(23,66,86);
    font-size: 1.625rem;
    line-height: 1;
    border-radius: 50%;
    background-color: #13DBC4;
}
.ProQuiz-default .Completed-body .resultBox .resultCircle{
    position: relative;
    margin: 0 auto 35px;
    width: 200px;
}
.ProQuiz-default .Completed-body .resultBox .progress-circle {
    --score: 0;
    --minScore: 0;
    --maxScore: 100;
    --percent: calc( ( var(--score) - var(--minScore) ) /  ( var(--maxScore) - var(--minScore) ) * 100 );
    --size: 200px;
    --border-width: 5px;

    position: relative;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
}
.ProQuiz-default .Completed-body .resultBox .progress-circle > svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.ProQuiz-default .Completed-body .resultBox .progress-circle circle{
    --r: calc((var(--size) - var(--border-width)) / 2);

    cx: calc(var(--size) / 2);
    cy: calc(var(--size) / 2);
    r: var(--r);
    fill: none;
    stroke-width: var(--border-width);
    stroke-linecap: round;
}
.ProQuiz-default .Completed-body .resultBox .progress-circle circle:first-child{
    display: none;
    stroke: #ccc;
}
.ProQuiz-default .Completed-body .resultBox .progress-circle circle:last-child {
    stroke: #07707D;
    stroke-dasharray: calc(2 * 3.1415 * var(--r) * (var(--percent) / 100)), calc(2 * 3.1415 * var(--r));
    transition: stroke-dasharray .4s linear, stroke .3s;
}
.ProQuiz-default .Completed-body .resultBox .progress-circle .circle-dot{
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 50%;
    transform: rotate( calc( var(--percent) / 100 * 360deg ) ) translate3d(0,0,0);
    transform-origin: bottom;
    transition: transform .4s linear;
}
.ProQuiz-default .Completed-body .resultBox .progress-circle .circle-dot::after{
    content: '';
    position: absolute;
    top: -5px;
    left: -8px;
    width: 16px;
    height: 16px;
    background-color: #07707D;
    border-radius: 50%;
}
.ProQuiz-default .Completed-body .resultBox .progress-text{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    user-select: none;
    gap: 5px;
}
.ProQuiz-default .Completed-body .resultBox .score{
    margin: 0 0 0;
    color: #fff;
    font-size: 1rem;
    line-height: 1;
}
.ProQuiz-default .Completed-body .resultBox .title{
    margin: 0 0 0;
    color: #13DBC4;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0;
    font-weight: normal;
}
.ProQuiz-default .Completed-body .resultBox .des{
    margin: 0 0 0;
}
.ProQuiz-default .Completed-body .emailBox .title{
    margin: 0 0 0;
    color: #13DBC4;
    font-size: 1.375rem;
    line-height: calc( 30 / 22 );
    letter-spacing: 0;
    font-weight: normal;
}
.ProQuiz-default .Completed-body .emailBox p{
    margin-bottom: 30px;
}
.ProQuiz-default .Completed-body .emailBox .extraForm{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
    width: 100%;
    max-width: 368px;
}
.ProQuiz-default .Completed-body .emailBox .extraForm input[type="email"]{
    padding: 10px;
    width: 100%;
    color: #787878;
    font-size: 1.125rem;
    line-height: calc( 24 / 18 );
    border-radius: 10px;
    border: 1px solid #707070;
    background-color: #fff;
}
.ProQuiz-default .Completed-body .emailBox .extraForm input[type="email"]::placeholder {
    text-align: center;
}
.ProQuiz-default .Completed-body .emailBox .extraForm input[type="email"]::-webkit-input-placeholder{
    text-align: center;
}
.ProQuiz-default .Completed-body .emailBox .extraForm > a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 10px;
    width: 100%;
    color: #fff;
    font-size: 1.4375rem;
    line-height: calc( 31 / 23 );
    border-radius: 10px;
    border: none;
    background: linear-gradient(calc(180deg + 45deg), #1b385d, #008186);
    box-shadow: 0px 3px 6px #00000029;
    transition: filter ease-in 200ms;
    user-select: none;
}
.ProQuiz-default .Completed-body .emailBox .extraForm > a:hover{
    filter: brightness(1.2);
}
.ProQuiz-default .Completed-body .emailBox .extraForm > a svg{
    font-size: 1.8125rem;
}
.ProQuiz-default .Completed-body .emailBox .extraForm input[type="checkbox"]{
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}
.ProQuiz-default .Completed-body .emailBox .extraForm div{
    position: relative;
    margin: 20px auto 0;
    max-width: max-content;
}
.ProQuiz-default .Completed-body .emailBox .extraForm label{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 10px;
    user-select: none;
}
.ProQuiz-default .Completed-body .emailBox .extraForm label span{
    flex-shrink: 0;
    align-self: flex-start;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    color: rgb(23,66,86);
    font-size: 1rem;
    line-height: 1;
    border-radius: 4px;
    background-color: #13DBC4;
}
.ProQuiz-default .Completed-body .emailBox .extraForm label svg{
    display: none;
}
.ProQuiz-default .Completed-body .emailBox .extraForm input[type="checkbox"]:checked + label svg{
    display: block;
}

/*
 * ProQuiz-Dialog
 */
.ProQuiz-default .ProQuiz-Dialog{
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: rgba(10, 69, 89, 0.86);
    overflow: hidden;
    overflow-y: auto;
    color: #FFF;
}
.ProQuiz-default .ProQuiz-Dialog svg{
    width: 1em;
    height: 1em;
    fill: currentColor;
}
.ProQuiz-default .Dialog-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100%;
    padding: 15px;
}
.ProQuiz-default .Dialog-main{
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 20px 55px;
    width: 384px;
    max-width: 100%;
    background: transparent linear-gradient(315deg, #1B385D 0%, #008186 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 10px;
    z-index: 2;
}
.ProQuiz-default .Dialog-close{
    position: fixed;
    inset: 0;
}
.ProQuiz-default .Dialog-main .title{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 0 20px;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
}
.ProQuiz-default .Dialog-main .title svg{
    color: #dc3545;
    font-size: 40px;
}
.ProQuiz-default .Dialog-main a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 38px;
    color: #FFF;
    font-size: 16px;
    line-height: 1;
    background: #14324B;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.16);
    border:none;
    border-radius: 10px;
    transition: filter ease-in 200ms;
    user-select: none;
}
.ProQuiz-default .Dialog-main a:hover{
    filter: brightness(1.2);
}
.ProQuiz-default .Dialog-main .close-icon{
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    color: #1E4A69;
    font-size: 14px;
    line-height: 1;
    background: #6FA7AB;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: filter ease-in 200ms;
}
.ProQuiz-default .Dialog-main .close-icon:hover{
    filter: brightness(1.2);
}


/*
 * ProQuiz-Message
 */
.ProQuiz-default .ProQuiz-Message{
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: rgba(10, 69, 89, 0.86);
    overflow: hidden;
    overflow-y: auto;
    color: #FFF;
}
.ProQuiz-default .ProQuiz-Message svg{
    width: 1em;
    height: 1em;
    fill: currentColor;
}
.ProQuiz-default .Message-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100%;
    padding: 15px;
}
.ProQuiz-default .Message-main{
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 20px 55px;
    width: 384px;
    max-width: 100%;
    background: transparent linear-gradient(315deg, #1B385D 0%, #008186 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 10px;
    z-index: 2;
}
.ProQuiz-default .Message-main .Message-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: #dc3545;
    font-size: 40px;
    line-height: 1;
}
.ProQuiz-default .Message-close{
    position: fixed;
    inset: 0;
}
.ProQuiz-default .Message-main .close-icon{
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    color: #1E4A69;
    font-size: 14px;
    line-height: 1;
    background: #6FA7AB;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: filter ease-in 200ms;
}
.ProQuiz-default .Message-main .close-icon:hover{
    filter: brightness(1.2);
}