

/* Start:/local/components/componentsTheme/block.delivery/templates/.default/style.css?17703802432704*/
.block-title.block-delivery__title {
    position: relative;
    margin-bottom: 50px;
}

.delivery__text {
    position: relative;
    margin-bottom: var(--Margin-30);
}

.delivery-select {
    position: relative;
    width: 100%;
    height: fit-content;

    margin-bottom: 30px;

    @media(min-width: 841px) {
        & {
            display: none;
        }
    }
}

.delivery-tabs {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;

    flex-wrap: wrap;

    margin-bottom: 30px;

    @media(max-width: 840px) {
        & {
            display: none;
        }
    }
}

.delivery-tab {
    position: relative;
    width: fit-content;
    height: fit-content;

    padding: 17px 25px;
    background: var(--bg-primary-main);
    border: solid 1px var(--bg-primary-stroke);
    border-radius: 10px;
    overflow: hidden;
    
    color: var(--text-primary-main);
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;

    transition: var(--transition);

    cursor: pointer;

    &.active,
    &:hover {
        background: var(--colors-main);
        border-color: var(--colors-main);
        color: var(--text-primary-head);
    }
}

.delivery-content {
    &:not(.active) {
        display: none;
    }
}

.delivery-table__wrapper {
    position: relative;
    width: 100%;
    height: fit-content;
    max-width: 100%;

    overflow-x: auto;
}
.delivery-table {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: clamp(5px, 0.324vw + 3.786px, 10px);

    width: 100%;
    max-width: 100%;
    height: fit-content;
}
.delivery-table__row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 32.468%;
    gap: clamp(5px, 0.971vw + 1.359px, 20px);

    & * {
        position: relative;
        width: 100%;
        height: 100%;
        min-width: 240px;
        padding: clamp(14px, 10.909vw + -20.909px, 20px) 20px;

        display: flex;
        align-items: center;
        justify-content: start;

        text-align: start;
        color: var(--text-primary-main);

        border: solid 1px var(--bg-primary-stroke);
        border-radius: 10px;

        &.fill {
            background: var(--bg-primary-second);
            border-color: var(--bg-primary-second);

            color: var(--text-primary-head);
        }

        &.border {
            border-color: var(--bg-alt-main);
        }
    }

    &.head {
        & * {
            color: var(--text-primary-head);
        }
    }
}
/* End */
/* /local/components/componentsTheme/block.delivery/templates/.default/style.css?17703802432704 */
