

/* Start:/local/components/shop.elastomeric/catalog.documents/templates/doc.v1/style.css?178715940621385*/
.documentation {
    width: 100%;
}

.documentation__title {
    margin: 0 0 28px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
}

.documentation__filter {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 28px;
    padding: 24px;
    border: 1px solid #dfe3e8;
    border-radius: 12px;
    background: #fff;
}

.documentation__field {
    position: relative;
    display: block;
    min-width: 0;
}

.documentation__label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.3;
    color: #4b5563;
}

.documentation__select,
.documentation-product-select__button,
.documentation-product-select__search {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #cfd6df;
    border-radius: 8px;
    background: var(--white);
    color: var(--blue-350);
    font-size: var(--fz-14);
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.documentation__select:focus,
.documentation-product-select__button:focus,
.documentation-product-select__search:focus {
    outline: 1px solid transparent;
    outline-offset: 1px;
    border-color: var(--red-600);
}

.documentation-product-select__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    text-align: left;

    span:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        min-width: 0;
        flex: 1;
        cursor: pointer;
    }
}

.documentation-product-select__arrow {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .2s ease;
}

.documentation-product-select.is-open .documentation-product-select__arrow {
    transform: rotate(225deg) translate(-2px, -2px);
}

.documentation-product-select__dropdown {
    position: absolute;
    z-index: 30;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    overflow: hidden;
    border: 1px solid #d7dde5;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(17, 24, 39, .12);
}

.documentation-product-select__search-wrap {
    padding: 10px;
    border-bottom: 1px solid #edf0f3;
}

.documentation-product-select__search {
    height: 42px;
}

.documentation-product-select__list {
    max-height: 550px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.documentation-product-select__item {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border: 0;
    background: transparent;
    color: var(--gray-800);
    text-align: left;
    cursor: pointer;
    font-size: var(--fz-14);
    line-height: 18px;
}

.documentation-product-select__item:hover,
.documentation-product-select__item.is-active {
    background: #f4f6f8;
}

.documentation-product-select__status {
    padding: 16px 14px;
    color: #667085;
    text-align: center;
}

.documentation-product-select__status--error {
    color: #b42318;
}

.documentation__results {
    min-height: 160px;
}

.documentation__loading,
.documentation__empty {
    padding: 40px 24px;
    border: 1px solid #e1e5ea;
    border-radius: 12px;
    color: #667085;
    text-align: center;
}

.documentation__empty--error {
    color: #b42318;
}

.documentation-group {
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid #dfe3e8;
    border-radius: 12px;
    background: #fff;
}

.documentation-group__header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    border-bottom: 1px solid #e6e9ed;
}

.documentation-group__image {
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.documentation-group__product {
    min-width: 0;
}

.documentation-group__name {
    margin: 0;
    font-size: 24px;
    line-height: 1.25;
}

.documentation-group__description {
    margin-top: 4px;
    color: #667085;
    font-size: 14px;
    line-height: 1.45;
}

.documentation-table__head,
.documentation-table__row {
    display: grid;
    grid-template-columns: minmax(190px, 1fr) minmax(280px, 2fr) 120px 100px 120px;
    align-items: center;
    column-gap: 20px;
}

.documentation-table__head {
    padding: 12px 22px;
    background: #f7f8fa;
    color: #475467;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.documentation-table__row {
    min-height: 68px;
    padding: 10px 22px;
    border-top: 1px solid #edf0f3;
}

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

.documentation-table__cell {
    min-width: 0;
    color: #344054;
    font-size: 14px;
}

.documentation-table__cell--type {
    display: flex;
    align-items: center;
    gap: 10px;
}

.documentation-file-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 44px;
    border: 1px solid #d0d5dd;
    border-radius: 5px;
    color: #b42318;
    font-size: 9px;
    font-weight: 700;
}

.documentation-table__cell--name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.documentation-table__link {
    color: #175cd3;
    text-decoration: none;
}

.documentation-table__link:hover {
    text-decoration: underline;
}

.documentation-table__version {
    color: #98a2b3;
    font-size: 12px;
}

.documentation-table__cell--action {
    text-align: right;
}

.documentation-table__download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid #cfd6df;
    border-radius: 7px;
    color: #111827;
    text-decoration: none;
    transition: background-color .15s ease, border-color .15s ease;
}

.documentation-table__download:hover {
    border-color: #98a2b3;
    background: #f8fafc;
}

@media (max-width: 960px) {
    .documentation__filter {
        grid-template-columns: 1fr;
    }

    .documentation-table__head {
        display: none;
    }

    .documentation-table__row {
        grid-template-columns: 1fr auto;
        gap: 12px 20px;
        padding: 18px;
    }

    .documentation-table__cell--type,
    .documentation-table__cell--name {
        grid-column: 1 / -1;
    }

    .documentation-table__cell:not(.documentation-table__cell--type):not(.documentation-table__cell--name):not(.documentation-table__cell--action)::before {
        content: attr(data-label) ': ';
        color: #98a2b3;
    }

    .documentation-table__cell--action {
        grid-column: 2;
        grid-row: 3 / span 2;
        align-self: center;
    }
}

@media (max-width: 576px) {
    .documentation__filter {
        padding: 16px;
    }

    .documentation-group__header {
        padding: 16px;
    }

    .documentation-group__image {
        width: 56px;
        height: 56px;
    }

    .documentation-group__name {
        font-size: 20px;
    }

    .documentation-table__row {
        grid-template-columns: 1fr;
    }

    .documentation-table__cell--action {
        grid-column: 1;
        grid-row: auto;
        text-align: left;
    }
}

/* Плоская документ-центричная выдача */
.documentation-table {
    overflow: hidden;
    border: 1px solid #dfe3e8;
    border-radius: 12px;
    background: #fff;
}

.documentation-table__name-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.documentation-table__products {
    color: #667085;
    font-size: 13px;
    line-height: 1.4;
}

.documentation__more {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.documentation__more-button {
    min-width: 190px;
    min-height: 46px;
    padding: 0 24px;
    border: 1px solid #cfd6df;
    border-radius: 8px;
    background: #fff;
    color: #111827;
    font: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: background-color .15s ease, border-color .15s ease;
}

.documentation__more-button:hover:not(:disabled) {
    border-color: #98a2b3;
    background: #f8fafc;
}

.documentation__more-button:disabled {
    cursor: default;
    opacity: .65;
}


/**/
.doc__banner {

    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 16px;
        overflow: hidden;
    }
}


.doc__filters {
    display: flex;
    gap: 20px;
    padding: 28px;
    margin-bottom: 34px;
    border: 1px solid var(--shadow-card);
    border-radius: 6px;
    background: var(--white);
    box-shadow: var(--shadow-card);

    @media (max-width: 902px) {
        flex-wrap: wrap;
    }

    @media (max-width: 768px) {
        flex-direction: column;
        padding: 20px 16px;
    }
}

.doc__field {
    max-width: 26%;
    width: 100%;

    @media (max-width: 902px) {
        max-width: calc(100% / 2 - (20px / 2 * 1));
    }

    @media (max-width: 768px) {
        max-width: 100%;
    }
}


.doc__field-label {
    display: block;
    margin-bottom: 12px;
    font-size: var(--fz-14);
    font-weight: 400;
    color: var(--gray-800);
}

.doc__button {
    height: 42px;
    padding: 0 22px;
    border: 1px solid var(--red-700);
    border-radius: 4px;
    background: var(--white);
    color: var(--red-700);
    cursor: pointer;
    transition: .3s;
    flex: 1;

    @media (max-width: 768px) {
        flex: auto;
    }
    @media (max-width: 768px) {
        font-size: var(--fz-12);
    }

    &:hover {
        border: 1px solid var(--red-600);
    }
}


.doc__button--reset {
    align-self: end;
    height: 52px;

    @media (max-width: 992px) {
        width: 100%;
    }
    @media (max-width: 568px) {
        height: 40px;
    }
}


/**/

.doc__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;

    @media (max-width: 576px) {
        gap: 12px;
        flex-direction: column;
    }
}


.doc__card {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    gap: 20px;
    padding: 24px 20px;
    border: 1px solid var(--gray-200-47);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow-card);
    flex: 0 0 calc(100% / 3 - (20px / 3 * 2));

    @media (max-width: 992px) {
        flex: 0 0 calc(100% / 2 - (20px / 2 * 1));
    }
    @media (max-width: 576px) {
        padding: 16px 12px;
        gap: 16px;
        flex-direction: column;
    }
}


.doc__card-top {
    display: grid;
    gap: 16px 8px;
    grid-template-columns: 30px 1fr auto;
    grid-template-rows: auto 1fr;
    width: 100%;
    position: relative;
    z-index: 1;
}

.doc__card-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    width: 100%;
}

.doc__card-img {
    height: 180px;

    @media (max-width: 576px) {
        display: none;
    }

    img {
        position: absolute;
        right: -40px;
        bottom: 0;
        width: 260px;
        height: 100%;
        object-fit: contain;
    }
}

.doc__card-icon {
    grid-column: 1/2;
    grid-row: 1/2;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;

    svg {
        width: 25px;
        height: 25px;
        stroke-width: 15;
        fill: var(--blue-350);
        stroke: var(--blue-350);
    }
}

.doc__card-type {
    grid-column: 2/3;
    grid-row: 1/2;
    color: var(--blue-350);
    font-size: var(--fz-14);
    font-weight: 300;
    display: flex;
    align-items: center;

    @media (max-width: 576px) {
        font-size: var(--fz-12);
    }
}

.doc__badge {
    grid-column: 3/4;
    padding: 10px 12px;
    border-radius: var(--radius-xs);
    font-size: var(--fz-10);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    margin: auto;
    @media (max-width: 576px) {
        font-size: var(--fz-8);
        padding: 8px 10px;
        margin-right: auto;
    }
}

.doc__card-title {
    grid-column: 1/-1;
    grid-row: 2/3;
    color: var(--gray-800);
    font-size: var(--fz-16);
    line-height: 1.18;
    font-weight: 400;

    @media (max-width: 768px) {
        font-size: var(--fz-16);
    }
    @media (max-width: 576px) {
        font-size: var(--fz-14);

    }
}

.doc__badge--active {
    background: var(--green-150);
    color: var(--green-200);
}

.doc__badge--expired {
    background: var(--red-100);
    color: var(--red-700);
}

/*
.doc__card-icon--certificate {
    background-color: var(--green-75);

    svg {
        fill: var(--green-250);
        stroke: var(--green-250);
    }
}

.doc__card-icon--brochure {
    background-color: var(--blue-150);

    svg {
        fill: var(--blue-450);
        stroke: var(--blue-450);
    }
}

.doc__card-icon--drawings {
    background-color: var(--purple-100);

    svg {
        fill: var(--purple-500);
        stroke: var(--purple-500);
    }
}

.doc__card-icon--flayer {
    background-color: var(--orange-100);

    svg {
        fill: var(--orange-600);
        stroke: var(--orange-600);
    }
}

.doc__card-icon--specification {
    background-color: var(--green-50);

    svg {
        fill: var(--green-500);
        stroke: var(--green-500);
    }
}

.doc__card-icon--technical {
    background-color: var(--gray-100);

    svg {
        fill: var(--gray-600);
        stroke: var(--gray-600);
    }
}
*/

.doc__products {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(2px);
    border-radius: var(--radius-xl);
    padding: 40px 20px 40px 0;

    @media (max-width: 576px) {
        padding: 0;
    }

    a {
        color: var(--blue-350);
        font-size: var(--fz-12);
        transition: .3s;
        border-bottom: .1px solid var(--blue-350);

        @media (max-width: 576px) {
            font-size: var(--fz-10);
        }

        &:hover {
            border-bottom: .1px solid var(--red-600);
            color: var(--red-600);
        }
    }
}


.doc__card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    width: 100%;
    border-top: 1px solid var(--gray-200-47);
    padding-top: 12px;

    .button {
        gap: 4px;

        svg {
            height: 12px;
        }
    }
}

.doc__date {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--blue-350);
    font-size: var(--fz-12);

    svg {
        width: 20px;
        height: 20px;
        fill: var(--blue-350);
        stroke: var(--blue-350);
        stroke-width: 10;

    }

    small {
        font-weight: 400;
        font-size: var(--fz-12);
    }
}


.doc__download {
    max-width: 140px;
    font-size: var(--fz-12);
    color: var(--red-600);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;

    span {
        border-bottom: .5px solid transparent;
        transition: .3s;
    }

    svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
        fill: var(--red-600);
        stroke: var(--red-600);

        @media (max-width: 576px) {
            width: 10px;
            height: 10px;
        }
    }

    &:hover {

        span {
            border-bottom: .5px solid var(--red-600);
        }

    }
}

/*select*/
.doc__input, .doc__search,
.doc__select {
    width: 100%;
    height: 52px;
    border: 1px solid var(--blue-250);
    border-radius: 4px;
    background: var(--white);
    color: var(--blue-350);
    outline: none;
    transition: .3s;
    cursor: pointer;

    @media (max-width: 576px) {
        height: 40px;
    }

    &:hover {
        border: 1px solid var(--red-600);
    }
}

.doc__select-content-wrapper {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px 0 rgba(9, 10, 11, .149);
    padding: 4px;
}

.doc__select-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.doc__select-item {
    background-color: var(--white);
    padding: 8px 12px;
    border-radius: 4px;

    span {
        color: var(--blue-350);
        font-size: var(--fz-14);

        @media (max-width: 576px) {
            font-size: var(--fz-12);
        }
    }

    &:hover {
        background-color: var(--gray-350-30);
    }

    svg {
        fill: var(--red-600);
        stroke: var(--red-600);
        flex-shrink: 0;
        height: 20px;
        width: 20px;
        transition: .3s;
    }
}

.doc__select-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    height: 100%;
    padding: 0 12px;
    margin-bottom: 18px;

    &:hover {
        .doc__select-arrow {
            fill: var(--red-700);
            stroke: var(--red-700);
        }
    }

    .doc__select-arrow {
        fill: var(--blue-350);
        stroke: var(--blue-350);
        flex-shrink: 0;
        height: 20px;
        width: 20px;
        transition: .3s;
    }
}

.doc__select-title {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: var(--fz-14);

    @media (max-width: 768px) {
        max-width: 100%;
    }
    @media (max-width: 576px) {
        font-size: var(--fz-12);
    }
}

.doc__select.js-select-dropdown {
    position: relative;
}

.doc__select.js-select-dropdown.active {
    border: 1px solid var(--red-700);
}

.js-select-dropdown.active .doc__select-header {
    .doc__select-arrow {
        fill: var(--red-700);
        stroke: var(--red-700);
        transform: rotate(180deg);
    }
}

.doc__search {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;

    .doc__search-clear {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        background-color: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        margin-right: 12px;

        svg {
            fill: var(--blue-350);
            stroke: var(--blue-350);
            width: 15px;
            height: 15px;
            transition: .3s;
        }

        &:hover {
            svg {
                fill: var(--red-700);
                stroke: var(--red-700);
            }

        }
    }

    .doc__search-icon {
        position: absolute;
        left: 12px;
        fill: var(--blue-350);
        stroke: var(--blue-350);
        width: 15px;
        height: 15px;
    }


    .doc__search-input {
        padding-left: 32px;
        outline: none;
        border: none;
        width: 100%;
        padding-right: 15px;
        color: var(--blue-350);
    }

    &:focus {
        border-color: var(--red-600);
        background: white;
        box-shadow: 0 0 10px 0 rgba(250, 0, 0, 0.28);
    }
}

/*Tabs*/
.js-tab {
    &.active {
        background-color: var(--red-600) !important;
        color: var(--white) !important;
    }

    &.active .tab-icon svg {
        fill: var(--white) !important;
        stroke: var(--white) !important;
    }
}

.js-tab-content {
    display: none;


    &.js-tab-active {
        display: block;
    }
}

/*docs-empty*/
.docs-empty {
    width: 100%;
    padding: 40px;
    border: 1px dashed color-mix(in srgb, var(--red-700) 38%, transparent);
    border-radius: 28px;
    background: radial-gradient(circle at 12% 20%, rgba(226, 27, 60, 0.08), transparent 34%),
    radial-gradient(circle at 88% 70%, rgba(42, 176, 228, 0.1), transparent 32%),
    var(--white);
    box-shadow: 0 18px 48px rgba(31, 36, 46, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;

    @media (max-width: 576px) {
        flex-direction: column;
        padding: 24px 16px;
    }
}


.docs-empty__media {
    position: relative;
    display: grid;
    place-items: center;
}


.docs-empty__media::before {
    width: 104px;
    height: 104px;
}


.docs-empty__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    border: 1px solid rgba(226, 27, 60, 0.14);
}

.docs-empty__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
    border: 1px solid var(--red-100);
    width: 100px;
    height: 100px;

    svg {
        fill: var(--red-700);
        stroke: var(--red-700);
        width: 50px;
        height: 50px;
    }
}


.docs-empty__eyebrow {
    margin: 0 0 8px;
    color: var(--red-700);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.docs-empty__title {
    margin: 0;
    color: var(--gray-850);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.docs-empty__text {
    max-width: 560px;
    margin: 12px 0 0;
    color: var(--blue-350);
    font-size: var(--fz-16);
    font-weight: 300;
    line-height: 1.6;

    @media (max-width: 576px) {
        font-size: var(--fz-14);
    }
}

.docs-empty__actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;

    @media (max-width: 576px) {
        flex-wrap: wrap;
    }
}






/* End */
/* /local/components/shop.elastomeric/catalog.documents/templates/doc.v1/style.css?178715940621385 */
