/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 body {
    font-family: Arial, sans-serif;
}

.wps_pr-con {
    width: calc(100% - 80px);
    margin: 70px auto;
}

.wps_pr-bar {
    position: relative;
    width: 100%;
    height: 3px;
    background-color: #e0e0e0;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
}

.wps_progress {
    position: absolute;
    height: 6px;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 50px;
    background-color: #001747;
    transition: width 0.3s ease-in-out;
}

.level,
.wps_start {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* width: 33.33%; */
    text-align: center;
    color: #000;
    font-weight: bold;
}

.wps_start {
    left: 0;
    width: 0;
}

.level:nth-of-type(2) {
    left: 0;
}

.level:nth-of-type(3) {
    left: 34%;
}

.level:nth-of-type(4) {
    left: 64%;
}
.level:nth-of-type(5) {
    left: 100%;
}

.wps_pointer {
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    position: absolute;
    left: calc(100% - 40px);
    top: -60px;
    background: #fff;
    padding: 5px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    width: 68px;
}

.wps_pointer:after {
    position: absolute;
    content: '';
    width: 1px;
    height: 15px;
    background: #e0e0e0;
    left: 50%;
    transform: translate(-50%, 0);
    top: 100%;
}

.wps_pointer b {
    font-weight: 900;
    color: #001747;
    display: block;
}

.level .level-score,
.wps_start .level-score {
    position: absolute;
    left: calc(100% - 40px);
    width: 80px;
    font-size: 12px;
    line-height: 1.5;
    top: 20px;
    display: flex;
    flex-direction: column;
}

.level .level-score b,
.wps_start b {
    font-weight: 900;
    color: #001747;
}

.level .level-score:after,
.wps_start .level-score:after {
    position: absolute;
    content: '';
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #e0e0e0;
    left: 50%;
    transform: translate(-50%, 0);
    top: -28px;
    box-shadow: 0 0 0 5px rgba(0, 23, 71, 0.7), 0 0 0 10px rgba(0, 23, 71, 0.5);
}

.level.active-level .level-score:after,
.wps_start .level-score:after {
    background: #001747;
    box-shadow: 0 0 0 5px rgba(230, 182, 119, 0.7), 0 0 0 10px rgba(230, 182, 119, 0.5);
}

/* Single page tab design */
.w_ts-head {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    border-bottom: 1px solid #e2e2e2;
}

.w_tsh-sec {
    padding: 8px 15px;
    background: #e2e2e2;
    border: 1px solid #e2e2e2;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    color: #000;
}

.w_tsh-sec.w_t-active {
    background: transparent;
    border-bottom: none;
    box-shadow: 0 2px #fff;
}

.w_tsm-sec {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 0;
}

.w_tsm-sec p{
    margin: 0 0 10px!important;
    text-align: justify;
}

.w_tsm-sec.w_t-active {
    display: grid;
}

@media only screen and (max-width:768px) {
    .w_tsm-sec {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px 10px;
    }
}

@media only screen and (max-width:420px) {
    .w_ts-head {
        gap: 5px;
    }

    .w_tsh-sec {
        padding: 6px 10px;
    }
}
