.s_chart {
    margin: 60px 0 0;
}

.s_chart_head {
    padding: 11px 0px;
    border-bottom: 1px solid rgb(224, 234, 240);
    border-top: 1px solid rgb(224, 234, 240);
    display: flex;
}

.s_chart_head2 {
    width: 100%;
    gap: 20px;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(1, 1fr);
    display: grid;
}

.s_chart_head_item {
    font-size: 14px;
    font-weight: 700;
    border-radius: 3px;
    line-height: 20px;
    text-align: center;
    -webkit-box-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    font-style: italic;
    position: relative;
}

.s_cursor {
    cursor: pointer;
}

.s_chart_head_item i {
    margin-left: 5px;
}

.s_chart_head_item2 {
    justify-content: flex-start;
    flex-direction: column;
}

.s_chart_head_item2 .s_chart_head_label {
    padding: 0 0 10px;
    width: 100%;
    border-bottom: 1px solid rgb(235, 235, 235);
}

.s_chart_head_item:first-child {}

.s_chart_head_item:nth-child(2) {
    grid-column: span 2 / span 2;
}

.s_chart_head_item:nth-child(3) {
    grid-column-start: 4;
}

.s_chart_head_item2 {
    grid-column: span 4 / span 4;
    grid-column-start: 5;
}

.s_chart_head_item:nth-child(5) {
    grid-column-start: 9;
}

.s_chart_head_item:nth-child(6) {
    grid-column-start: 10;
}

.s_chart_head_item:nth-child(7) {
    grid-column-start: 11;
}

.s_chart_head_item:nth-child(8) {
    grid-column-start: 12;
}


.s_chart_stage {
    padding-top: 10px;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
}

.s_chart_content_item>div {
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.s_chart_2_label {
    margin-bottom: 17px;
    font-weight: 500;
    text-align: center;
}

.s_chart_2_label:last-child {
    margin-bottom: 0;
}

.s_chart_content {}

.s_chart_content_item {
    padding: 25px 0;
    border-bottom: 1px solid lightgrey;
    gap: 5px;
    grid-template-columns: repeat(12, 1fr);
    display: grid;
}

.s_chart_content_item>div:first-child div {
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.s_chart_content_item>div:nth-child(2) {
    grid-column: span 2 / span 2;
}

.s_chart_content_item>div:nth-child(3) {
    grid-column-start: 4;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 600;
}

.s_chart_content_item>div:nth-child(4) {
    grid-column: span 8 / span 8;
    grid-column-start: 5;
}

.s_chart_progressbar {
    margin-bottom: 10px;
    padding: 4px;
    width: 100%;
    height: 20px;
    border-radius: 100px;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(6, 34, 49, 0.06) 0px 2px 12px;
    transition: height 0.3s;
    overflow: hidden;
    position: relative;
}

.s_chart_progressbar:last-child {
    margin-bottom: 0;
}

.s_chart_progress_line {
    border-radius: 100px;
    height: 100%;
    background: linear-gradient(to right, var(--hover-color) 0%, var(--main-color) 100%);
    position: relative;
    animation: load 5s forwards;
}

@keyframes load {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.s_chart_circle {
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    height: 4px;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: calc(50% - 2px);
    user-select: none;
    width: 4px;
    z-index: 1;
}

.s_chart_circle1 {
    left: calc(8%);
}

.s_chart_circle2 {
    left: calc(24%);
}

.s_chart_circle3 {
    left: calc(41%);
}

.s_chart_circle4 {
    left: calc(56%);
}

.s_chart_circle5 {
    left: calc(69%);
}

.s_chart_circle6 {
    left: calc(82%);
}

.s_chart_circle7 {
    left: calc(94.5%);
}

.s_chart_checkbox {
    margin-bottom: 20px;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.s_chart_checkbox_item {
    margin-left: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.s_chart_checkbox_item>div {
    margin-right: 10px;
}

.s_chart_checkbox_item span {
    font-size: 16px;
}

.pp_mobile_label {
    display: none;
}

.pp_mobile_progress_bar_label {
    display: none;
    width: 100%;
}

.s_chart_content_item>div:last-child .s_chart_2_label{
    display: none;
}

.s_chart_head_item_mobile{
    margin-bottom: 20px;
    display: none;
    border-radius: 0;
    line-height: 1.5;
    font-style: initial;
    font-size: 16px;
    font-weight: 700 !important;
    border-bottom: 2px solid var(--main-color);
}

@media screen and (max-width: 1400px) {
    .s_chart {
        zoom: 0.8;
    }
}

@media screen and (max-width: 1199px) {
    
    .s_pp {
        gap: 20px;
    }

    .s_pp_menubar_item {
        font-size: 16px;
    }

    .s_chart {
        zoom: 1;
    }

    .s_chart_head {
        display: none;
    }

    .s_chart_head_item_mobile {
        display: flex;
    }

    .s_chart_progressbar {
        margin-bottom: 20px;
    }

    .pp_mobile_label {
        border-bottom: 2px solid var(--main-color);
        margin-bottom: 15px;
        font-size: 16px;
        font-weight: 700 !important;
        line-height: 1.5;
        display: flex;
    }

    .s_chart_2_label {
        margin-bottom: 10px;
    }

    .s_chart_content_item {
        width: 100%;
        padding-bottom: 60px;
        gap: 20px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .s_chart_content_item>div {
        font-size: 16px;
        font-weight: 500;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .s_chart_content_item>div:first-child {
        width: 45%;
        justify-content: flex-start;
    }

    .s_chart_content_item>div:first-child div {
        font-weight: 500;
        text-align: start;
    }

    .s_chart_content_item>div:nth-child(2) {
        display: none;
        grid-column: span 4 / span 4;
        grid-column-start: 5;
        justify-content: flex-start;
    }

    .s_chart_content_item>div:nth-child(3) {
        width: 45%;
        font-weight: 500;
        grid-column: span 4 / span 4;
        grid-column-start: 9;
        justify-content: flex-start;
    }

    .s_chart_content_item>div:last-child {
        width: 100%;
        grid-column: span 12 / span 12;
        grid-row-start: 2;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .s_chart_content_item>div:last-child .s_chart_2_label{
        display: flex;
    }

    .pp_mobile_progress_bar_label {
        margin-bottom: 25px;
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: repeat(2, 1fr);
        display: grid;
    }

    .s_chart_head_item:first-child {
        grid-column: span 5 / span 5;
        grid-row: span 2 / span 2;
    }

    .s_chart_head_item:nth-child(2) {
        grid-column: span 2 / span 2;
        grid-row: span 2 / span 2;
        grid-column-start: 6;
    }

    .s_chart_head_item:nth-child(3) {
        grid-column: span 2 / span 2;
        grid-row: span 2 / span 2;
        grid-column-start: 8;
    }

    .s_chart_head_item:nth-child(4) {
        grid-column: span 2 / span 2;
        grid-row: span 2 / span 2;
        grid-column-start: 10;
    }

    .s_chart_head_item:nth-child(5) {
        grid-column: span 2 / span 2;
        grid-row: span 2 / span 2;
        grid-column-start: 12;
    }

    .s_chart_circle1 {
        left: calc(6.5%);
    }

    .s_chart_circle2 {
        left: calc(20.5%);
    }

    .s_chart_circle3 {
        left: calc(35%);
    }

    .s_chart_circle4 {
        left: calc(50%);
    }

    .s_chart_circle5 {
        left: calc(66.5%);
    }

    .s_chart_circle6 {
        left: calc(83.5%);
    }

    .s_chart_circle7 {
        left: calc(95.5%);
    }

}

@media screen and (max-width: 991px) {
    .s_pp {
        flex-direction: column;
        display: flex;
    }

    .s_pp_menubar {
        flex-direction: row;
        align-items: center;
        overflow-x: auto;
    }

    .s_pp_menubar_item {
        border-left: 0;
        margin-bottom: 0;
        padding: 15px;
        font-size: 16px;
    }

    .s_pp_menubar_item.active {
        border-left: 0;
        color: white;
        background-color: var(--main-color);
    }
}


@media screen and (max-width: 767px) {
    .s_chart_content_item {
        display: flex;
        flex-direction: column;
    }

    .s_chart_content_item > div{
        margin-bottom: 20px;
    }

    .s_chart_content_item>div:last-child {
        margin-bottom: 0!important;
    }

    .pp_mobile_label {
        margin-bottom: 10px;
    }

    .s_chart_content_item {
        margin-bottom: 20px;
        border-bottom: 3px solid lightgrey;
    }

    .s_chart_2_label{
        text-align: start;
    }

    .s_chart_content_item>div:nth-child(3),
    .s_chart_content_item>div:first-child {
        width: 100%;
    }
}


@media screen and (max-width: 640px) {
    .s_pp_menubar_item {
        font-size: 14px;
    }

    .s_pp_title {
        font-size: 16px;
    }

    .s_pp_content {
        padding: 20px;
    }

    .s_cg_pdf {
        margin-top: 20px;
    }

    .s_pp_content ul li,
    .s_pp_right p {
        font-size: 14px;
    }

    .s_chart_head_item {
        font-size: 12px;
    }

    .s_chart_head_item_mobile{
        font-size: 16px!important;
    }

    
}

@media screen and (max-width: 430px) {
    .s_chart_head_item {
        font-size: 9px;
    }
}