
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mindTest-header-container {
    background-color: #ffffff;
    flex-direction: column;
    padding: 2rem 0 2rem 0;
    border-radius: 0.3rem;
    position: relative;
}

.back-icon {
    position: absolute;
    top: 2.2rem;
    left: 10%;
}

.back-icon img {
    width: 0.7rem;
}

.mindTest-type {
    font-family: Kefa;
    color: #592f15;
    font-size: 1.25rem;
}

.mindTest-level {
    font-family: Kefa;
    color: #592f15;
    font-size: 1.45rem;
    line-height: 2.3rem;
    width: 60%;
    text-align: center;
}

.mindTest-main-container {
    background-color: #ffffff;
    flex-direction: column;
    padding: 1rem 0 8rem 0;
    border-radius: 0.3rem;
}

.mindTest-title {
    font-family: "Arial Black";
    font-weight: 500;
    color: #3c3c3c;
    font-size: 1.65rem;
    line-height: 2.4rem;
    margin-bottom: 2rem;
    width: 50%;
    text-align: center;
}

.mindTest-answer-list {
    flex-direction: column;
}

.mindTest-answer-list .mindTest-answer-item {
    width: 28rem;
    background-color: #ededed;
    padding: 1rem 2rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    font-family: Kefa;
    color: #3c3c3c;
    font-size: 1.1rem;
    line-height: 2rem;
    cursor: pointer;
    transition: transform 1000ms ease-in-out, background-color 1000ms ease-in-out, color 1000ms ease-in-out;
    border: 1px solid rgb(224, 224, 224);
    box-sizing: border-box;
    border-radius: 10px;
    max-width: 360px;
    box-shadow: rgba(84, 60, 151, 0.25) 2px 2px 6px;
    background: rgb(234, 238, 247);
    position: relative;
}


/*.mindTest-answer-list .mindTest-answer-item.selecting,*/
.mindTest-answer-list .mindTest-answer-item:active {
    transition: 100ms ease-in-out;
    transform: scale(1.1);
}

.mindTest-answer-list .mindTest-answer-item img {
    position: absolute;
    width: 3.8rem;
    transform: translate(0, -50%);
    left: 15px;
    top: 50%;
}

.mindTest-progress {
    width: 40%;
    /*width: 240px;*/
    height: 8px;
    border-radius: 25px;
    background: #e5d2d3;
    margin-top: 1.5rem;
    position: relative;
    font-family: Kefa;
    color: #592f15;
    font-size: 1rem;
}

.g-progress {
    width: 0%;
    height: inherit;
    border-radius: 25px 0 0 25px;
    background: #b22d36;
    border-radius: 25px;
}

.mindTest-progress .start-cnt {
    transform: translate(-50%, 0);
    position: absolute;
    top: 18px;
    left: 0;
}


.mindTest-progress .end-cnt {
    position: absolute;
    transform: translate(-50%, 0);
    top: 18px;
    left: 100%;
}

.now-circle {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    background: #b22d36;
    left: 5%;
    top: 50%;
    color: #ffffff;
    z-index: 2;
}

.mindTest-progress .start-circle {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    background: #b22d36;
    left: 0;
    top: 50%;
}

.mindTest-progress .end-circle {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    background: #e5d2d3;
    left: 100%;
    top: 50%;
}

.mindTest-progress .end-circle.end {
    background: #b22d36;
}

.ad-popup-wrapper {
    width: 50%;
    z-index: 12;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    position: fixed;
    display: block;
}

.test-summary-wrapper {
    background-color: #ffffff;
    padding: 2rem 3rem;
    margin-bottom: 1rem;
    display: flex;
    border-radius: 0.3rem;
    position: relative;
}

.test-summary-wrapper .back-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.2rem;
    width: 1rem;
}

.test-progress-container {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    border-radius: 50%;
    margin-right: 2rem;

}

.test-progress-container .progress-number {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    font-family: DIN Condensed;
    font-weight: 700;
    color: #b22d36;
    font-size: 1.8rem;
}

.test-summary-wrapper .summary-main {
    flex: 1;
    padding: 1rem 0;
}

.test-summary-wrapper .summary-title {
    font-family: Kefa;
    color: #750000;
    font-size: 1.45rem;
    margin-bottom: 0.85rem;
}

.test-summary-wrapper .summary-subtitle {
    font-family: Kefa;
    color: #3c3c3c;
    font-size: 1.2rem;
    line-height: 2rem;
}

.ad-popup-wrapper .ad-container {
    background-color: #ffffff;
    /*height: 700px;*/
    border-radius: 0.3rem;
    padding: 0.8rem;
}


.ad-popup-wrapper .next-btn {
    width: 100%;
    padding: 1rem 0;
    background-color: #b22d36;
    border-radius: 3rem;
    text-align: center;
    font-family: Kefa;
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 1rem;
    cursor: pointer;
}

.van-overlay-ad {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    width: 100%;
    height: 100%;
    background: rgba(43, 41, 41, 0.75);
    display: block;
}
