@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: "Nunito", serif;
    margin: 0;
    padding: 0;
    background: #f5f8ff;
    color: #333;
    font-size: 14px;
}

.container {
    width: 95%;
    max-width: 1100px;
    margin: 20px auto 40px auto;
}

header {
    display: grid;
    grid-template-columns: auto 120px;
    margin: 10px 0 20px 0;
}

h1 {
    font-weight: 600;
    font-size: 26px;
    margin: 0;
}

h1 strong {
    font-weight: 700;
}

h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #505768;
    border-bottom: 1px solid #DDD;
    padding-bottom: 8px;
}

h2 img {
    display: inline-block;
    margin: 0px 10px -5px 0;
    width: 22px;
}

a{
    color: #6ea8ff;
    display: block;
    margin: 3px 0;
}

.alert {
    padding: 10px 20px;
    margin: 20px 0;
    border-radius: 5px;
    border: 1px solid;
    display: grid;
    grid-template-columns: 30px auto;
}

.alert img {
    display: inline-block;
    margin: 0 5px -5px 0;
    width: 20px;
}

.alert_success {
    background: #d1e7dd;
    color: #0a3622;
    border-color: #a3cfbb;
}

.alert_danger {
    background: #f8d7da;;
    color: #58151c;
    border-color: #f1aeb5;
}

.progressbar {
    counter-reset: step;
    position: relative;
    z-index: 1;
}

.progressbar li {
    float: left;
    width: 20%;
    position: relative;
    text-align: center;
    list-style: none;
    font-weight: 600;
}

.progressbar li span {
    display: block;
    font-size: 10px;
    color: #666;
}

.progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
    height: 30px;
    border: 2px solid #bebebe;
    display: block;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    line-height: 27px;
    background: white;
    color: #bebebe;
    text-align: center;
    font-weight: bold;
}

.progressbar li:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #979797;
    top: 15px;
    left: -50%;
    z-index: -1;
}

.progressbar li:first-child:after {
    content: none;
}

.progressbar li.active:after {
    background: #198754;
}
.progressbar li.active:before {
    border-color: #198754;
    background: #198754;
    color: #FFF
}

.two_columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.four_columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.block {
    padding: 20px 30px;
    margin-bottom: 20px;
    overflow: hidden;
}

.bg_white {
    background: #FFF;
    box-shadow: 0 0 35px 0 rgba(154, 161, 171, .15);
}

.block p {
    margin-bottom: 10px;
}

.block strong {
    display: block;
}


.product_line,
.products_header {
    display: grid;
    grid-template-columns: 80px auto 120px 40px 100px;
    grid-gap: 20px;
    align-items: center;
}

.products_header {
    font-weight: 600;
    color: #959ba8;
    margin: -45px 0 15px 0;
}

.services_header {
    font-weight: 600;
    color: #959ba8;
    margin: -45px 0 25px 0;
}

.product_line,
.service_line {
    padding: 5px 0;
    border-bottom: 1px dashed #DDD;
    min-height: 60px;
}

.product_line:last-of-type,
.service_line:last-of-type {
    border-bottom: 0!important;
}

.product_line img {
    width: 100%;
}

.service_line,
.services_header {
    display: grid;
    grid-template-columns: auto 120px;
    grid-gap: 20px;
    align-items: center;
}

.right_txt {
    text-align: right;
}

.block_line {
    overflow: hidden;
    margin-bottom: 5px;
    border-top: 1px dashed #DDD;
    padding: 5px 0;
}

.block_line:first-of-type {
    border-top: 0;
}

.block_line div {
    display: flex;
    justify-content: space-between;
}

.info_label {
    font-size: 12px;
    padding: 1px 8px;
    border-radius: 5px;
    float: right;
    margin-top: 3px;
}

.green_label {
    background: #d1e7dd;
    color: #0a3622;
}

.orange_label {
    background: #f8d7da;
    color: #842029;
}

.file_button {
    background: #0d6efd;
    color: #FFF;
    border: none;
    padding: 7px 12px;
    border-radius: 5px;
    cursor: pointer;
    margin: 3px 0 10px 0;
}

.no_docs{
    text-align: center;
}

.no_docs img{
    width: 90%;
    max-width: 50px;
    margin: 20px 0;
}

.no_docs p{
    color: #c3c9d2;
    font-weight: 600;
}

del {
    color: #666;
    display: block;
    font-size: 13px;
}

small {
    color: #959ba8;
    font-size: 12px;
    display: block;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .four_columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .two_columns {
        grid-template-columns: 100%;
        grid-gap: 0;
    }

    .steps_block {
        padding: 20px 5px;
    }
}

@media (max-width: 800px) {
    .product_line, .products_header {
        grid-template-columns: 70px auto 90px 40px 90px;
        grid-gap: 10px;
    }

}

@media (max-width: 600px) {

    header {
        grid-template-columns: auto 95px;
    }

    h1 {
        font-size: 22px;
    }

    .product_line,
    .products_header {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        grid-template-rows: auto auto;
    }

    .products_header {
        margin: -10px 0 15px 0;
    }

    .products_header span:nth-child(3) {
        grid-column: 2;
    }

    .product_line > div {
        grid-row: 1/3;
    }

    .product_line > :nth-child(2) {
        grid-column: 2/5;
    }

    .product_line > :nth-child(3) {
        grid-column: 2;
    }

    .product_line > p.right_txt,
    .products_header > span.right_txt {
        text-align: left;
        font-size: 13px;
    }

    .four_columns {
        grid-template-columns: 100%;
        grid-gap: 0;
    }

}

@media (max-width: 500px) {

    header {
        grid-template-columns: auto 85px;
    }

    h1 {
        font-size: 20px;
    }

    .product_line,
    .products_header {
        grid-template-columns: auto 25% 13% 25%;
    }

    .progressbar li {
        float: unset;
        width: unset;
        text-align: unset;
        line-height: 30px;
        padding-left: 35px;
        background: #D9DDE6;
        border-radius: 5px;
        border: 1px solid #BABFCA;
        margin-bottom: 5px;
    }

    .progressbar li.active {
        background: #198754;
        background: linear-gradient(240deg, rgb(9, 121, 60) 19%, rgb(12, 94, 33) 100%);
        border-color: #198754;
        color: #FFF;
    }

    .progressbar li.active::before {
        background: none;
        border: none;
    }

    .progressbar li::before {
        margin: unset;
        line-height: 30px;
        position: absolute;
        left: 0;
        border: none;
        background: none;
    }

    .progressbar li::after {
        content: none;
    }

    .steps_block {
        padding: 0 5px;
    }

    .file_button {
        margin: 3px 0 20px 0;
        font-size: 16px;
    }

}