/* Numbered process lists used by the Sell / Buy / Appraise With Us pages */

.process-intro {
    font-size: 17px;
    line-height: 1.8;
}

.part-label {
    display: inline-block;
    margin: 0 0 20px 0;
    padding: 6px 16px;
    background: #1e4c84;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.process-steps {
    list-style: none;
    margin: 0 0 40px 0;
    padding: 0;
    counter-reset: process-step;
}

.process-steps > li {
    position: relative;
    padding: 0 0 35px 75px;
}

.process-steps > li:before {
    counter-increment: process-step;
    content: counter(process-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: #1e4c84;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.process-steps > li:not(:last-child):after {
    content: "";
    position: absolute;
    left: 24px;
    top: 62px;
    bottom: 10px;
    width: 2px;
    background: #e5e5e5;
}

.process-steps > li > h3 {
    margin: 12px 0 12px 0;
    font-size: 20px;
    line-height: 1.4;
    text-transform: uppercase;
}

.process-steps > li > p {
    margin: 0 0 15px 0;
    line-height: 1.8;
}

.process-steps ul {
    margin: 0 0 15px 0;
    padding: 0 0 0 20px;
    line-height: 1.8;
}

.step-note {
    margin: 0 0 15px 0;
    padding: 12px 18px;
    background: #f5f7fa;
    border-left: 4px solid #1e4c84;
    font-size: 15px;
    line-height: 1.7;
}

.fee-table {
    width: 100%;
    margin: 0 0 15px 0;
    border-collapse: collapse;
}

.fee-table th,
.fee-table td {
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    vertical-align: top;
    line-height: 1.6;
}

.fee-table th {
    background: #1e4c84;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.fee-table td:first-child {
    width: 32%;
    font-weight: 700;
}

@media (max-width: 767px) {
    .process-steps > li {
        padding-left: 58px;
    }
    .process-steps > li:before {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
    }
    .process-steps > li:not(:last-child):after {
        left: 19px;
        top: 50px;
    }
    .fee-table td:first-child {
        width: 40%;
    }
}
