.price-lists {
    position: relative;
    margin-top: 25px;
}

@media only screen and (max-width: 640px) {
    .price-lists {
        margin-top: 20px;
    }
}

.price-lists__wrap {
    position: relative;
    font-size: 0;
    line-height: 0;
    text-align: left;
    gap: 20px;
}

.price-lists__wrap--center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: wrap row;
    -ms-flex-flow: wrap row;
    flex-flow: wrap row;
}

.price-lists__wrap:after {
    content: "";
    display: table;
    clear: both;
}

@media only screen and (max-width: 550px) {
    .price-lists__wrap {
        margin-right: 0;
    }
}

.price-lists__element {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(20% - 16px);
    box-shadow: 0px 0px 6px 0px rgba(0, 90, 170, 0.3);
    border-radius: 8px;
    overflow: hidden;
}
@media only screen and (max-width: 1200px) {
    .price-lists__element {
        width: calc(25% - 15px);
    }
}
@media only screen and (max-width: 900px) {
    .price-lists__element {
        width: calc(33% - 11px);
    }
}
.price-lists__element:nth-child(3n+3) {
    clear: left;
}

.price-lists__element--sale .price-info__title {
    font: 500 22px/120% "Open Sans", sans-serif;
}

@media only screen and (max-width: 800px) {
    .price-lists__element {
        width: calc(50% - 10px);
    }

    .price-lists__element:nth-child(3n+3) {
        clear: none;
    }

    .price-lists__element:nth-child(odd) {
        clear: left;
    }
}

@media only screen and (max-width: 550px) {
    .price-lists__wrap {
        gap: 15px;
    }
    .price-lists__element {
        width: calc(50% - 8px);
    }

    .price-lists__element:nth-child(odd) {
        clear: none;
    }
}

.price-lists__element.certificate-links__element {
    width: 50%;
    margin: 0 0 25px 0;
    padding: 0 20px 0 0;
}

@media only screen and (max-width: 550px) {
    .price-lists__element.certificate-links__element {
        width: 100%;
        padding-right: 0;
    }
}

@media only screen and (max-width: 480px) {
    .price-lists__element .price-info {
        padding: 10px;
    }

    .price-lists__element .price-info .price-info__title a {
        font-size: 14px;
    }

    .price-lists__element .price-info .price-info__link {
        font-size: 13px;
    }
}

.price-icon {
    position: relative;
    float: left;
    vertical-align: top;
    padding: 0 15px 0 0;
}

.price-icon__pdf {
    width: 44px;
    height: 53px;
    position: relative;
    background-size: contain;
    background-image: url(/local/static/build/img/pdf.png);
    display: inline-block;
}

.price-icon__zip {
    width: 44px;
    height: 53px;
    position: relative;
    background-size: contain;
    background-image: url(/local/static/build/img/zip.png);
    display: inline-block;
}

.price-info {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 15px;
    justify-content: space-between;
    height: 100%;
}

.price-info__title {
    font: 500 16px/120% "Open Sans", sans-serif;
    color: #000;
    margin: 0 0 5px 0;
}

.price-info__block {
    position: relative;
    display: block;
    cursor: default;
}

.price-info__size, .price-info__data {
    font: 300 12px/120% "Open Sans", sans-serif;
    color: #515151;
    display: inline-block;
}

.price-info__data {
    margin: 0;
}

.price-info__link {
    font: 400 15px/120% "Open Sans", sans-serif;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.price-picture {
}

.price-picture__img {
    max-width: 100%;
    width: 100%;
}

.catalog-tags {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 25px 0;
}
.catalog-tag {
    border: 1px solid #014ea2;
    border-radius: 8px;
    font-size: 14px;
    margin: 6px 20px 6px 0;
    text-transform: uppercase;
    font-weight: 600;
    padding: 7px 16px;
    overflow: hidden;
    user-select: none;
    cursor: pointer;
    background-color: #ffffff;
    color: #014ea2;
}

.catalog-tag:focus {
    outline: unset;
}

.catalog-tag.active {
    cursor: default;
    background-color: #014ea2;
    color: #ffffff;
}

.catalog__select {
    position: relative;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 44px;
    padding: 6px 12px;
    background-color: #ffffff;
    border: 1px solid #ABCAE9;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    color: #828282;
    margin-bottom: 25px;
    text-align: start;
    line-height: 1;
}
.catalog__select-text {
    color: #005AAA;
    font-weight: 500;
}
.catalog__select-arrow {
    transition: 0.3s ease;
}
.catalog__select-arrow-rotate {
    transform: rotate(180deg);
}

@media (max-width: 879px) {
    .catalog__select {
        display: flex;
    }

    .catalog-tags {
        display: none;
        position: absolute;
        top: 44px;
        flex-direction: column;
        border: 1px solid #ABCAE9;
        border-radius: 8px;
        overflow: hidden;
        transform-origin: 0 0;
        width: 100%;
        padding: 0;
        margin: 0;
        z-index: 1;
        background: #fff;
    }

    .catalog-tags .catalog-tag {
        padding: 6px 12px;
        margin: 0;
        justify-content: space-between;
        min-height: 44px;
        border: none;
        border-top: 1px solid #ABCAE9;
        border-radius: unset;
        width: 100%;
        text-transform: none;
    }
}