/* > Process Styles */
.process-wrap {
    width: 90%;
    margin: 0.3125rem auto 3.125rem;
}

.process-main {
    width: 100%;
    display: flex;
}

.col-3 {
    width: 20%;
    position: relative;
}

    .col-3:first-child .process-step:before {
        content: '1';
    }

    .col-3:nth-child(2) .process-step:before {
        content: '2';
    }

    .col-3:nth-child(3) .process-step:before {
        content: '3';
    }

    .col-3:nth-child(4) .process-step:before {
        content: '4';
    }

    .col-3:last-child .process-step:before {
        content: '5';
    }

.process-main .col-3:not(:first-child):before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 0.3125rem;
    top: 1.09375rem;
    left: calc(-50% + 1.0625rem);
    right: 0;
    background: #ebebeb;
    -o-transition: .4s;
    -ms-transition: .4s;
    -moz-transition: .4s;
    -webkit-transition: .4s;
    transition: .4s;
}

.process-processstep-cont {
    font-family: inherit;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: space-between;
}

.process-step {
    border-radius: 100%;
    line-height: 0;
    background: #959595;
    text-align: center;
    align-items: center;
    justify-content: center;
    align-self: center;
    display: flex;
    color: #fff;
    width: 2.1875rem;
    height: 2.1875rem;
    font-weight: 700;
    margin-bottom: 0.4375rem;
    z-index: 4;
}

.process-label {
    color: #959595;
    font-weight: 600;
    width: 100%;
    text-align: center;
    font-size: 0.875rem;
}

.process-dots {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background-color: #ebebeb;
    cursor: pointer;
}

.process-dot-cont {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    width: 60%;
    padding-top: 0.3125rem;
}

.active-step1 .col-3:first-child .process-step,
.active-step1 .col-3:first-child .process-dots:first-child,
.active-step1-mini2 .col-3:first-child .process-step,
.active-step1-mini2 .col-3:first-child .process-dots:nth-child(-n+2),
.active-step1-mini3 .col-3:first-child .process-step,
.active-step1-mini3 .col-3:first-child .process-dots:nth-child(-n+3),
.active-step1-mini4 .col-3:first-child .process-step,
.active-step1-mini4 .col-3:first-child .process-dots:nth-child(-n+4),
.active-step1-mini5 .col-3:first-child .process-step,
.active-step1-mini5 .col-3:first-child .process-dots:nth-child(-n+5) {
    background-color: var(--light-blue);
}

.active-step1-mini2 .col-3:first-child .process-dots:first-child,
.active-step1-mini3 .col-3:first-child .process-dots:nth-child(-n+2),
.active-step1-mini4 .col-3:first-child .process-dots:nth-child(-n+3),
.active-step1-mini5 .col-3:first-child .process-dots:nth-child(-n+4) {
    background-color: #fbcb93;
}

.active-step1 .col-3:first-child .process-label,
.active-step1-mini3 .col-3:first-child .process-label,
.active-step1-mini2 .col-3:first-child .process-label,
.active-step1-mini4 .col-3:first-child .process-label,
.active-step1-mini5 .col-3:first-child .process-label {
    color: var(--light-blue);
}

.active-step2 .col-3:first-child,
.active-step3 .col-3:nth-child(-n+2),
.active-step4 .col-3:nth-child(-n+3),
.active-step5 .col-3:nth-child(-n+4) {
    opacity: 0.5;
    /*pointer-events: none;*/
}

    .active-step2 .col-3:first-child .process-step:before,
    .active-step3 .col-3:nth-child(-n+2) .process-step:before,
    .active-step4 .col-3:nth-child(-n+3) .process-step:before,
    .active-step5 .col-3:nth-child(-n+4) .process-step:before {
        content: '\2713';
        padding: 0.4375rem;
    }

.active-step2 .col-3:nth-child(-n+2) .process-step,
.active-step2 .col-3:nth-child(-n+2) .process-dots,
.active-step3 .col-3:nth-child(-n+3) .process-step,
.active-step3 .col-3:nth-child(-n+3) .process-dots,
.active-step4 .col-3:nth-child(-n+4) .process-step,
.active-step4 .col-3:nth-child(-n+4) .process-dots,
.active-step5 .col-3:nth-child(-n+5) .process-step,
.active-step5 .col-3:nth-child(-n+5) .process-dots {
    background-color: var(--light-blue);
}

.active-step2 .col-3:nth-child(-n+2) .process-label,
.active-step3 .col-3:nth-child(-n+3) .process-label,
.active-step4 .col-3:nth-child(-n+4) .process-label,
.active-step5 .col-3:nth-child(-n+5) .process-label {
    color: var(--light-blue);
}

.active-step2 .col-3:nth-child(-n+2):before,
.active-step3 .col-3:nth-child(-n+3):before,
.active-step4 .col-3:nth-child(-n+4):before,
.active-step5 .col-3:nth-child(-n+5):before {
    background: var(--light-blue) !important;
}

@media screen and (max-width: 640px) {
    .process-main {
        flex-wrap: wrap;
    }

    .col-3 {
        width: 100%;
    }

    .process-main .col-3:not(:first-child):before {
        display: none;
    }

    .process-step {
        display: inline-block;
        line-height: 2.3125rem;
        margin-bottom: 0.3125rem;
    }

    .process-processstep-cont {
        display: inline-block;
    }

    .process-label {
        margin-left: 0.625rem;
    }

    .process-wrap {
        border: 0.0625rem solid #d9d9d9;
        padding: 0.75rem 1.25rem 0.4375rem 1.25rem;
        width: 90%;
        margin-top: 0;
        margin-bottom: 1.875rem;
    }
}
