@font-face {
    font-family: 'Circe';
    src: url('/assets/font/Circe-Regular.eot');
    src: local('Circe'), local('Circe-Regular'), url('/assets/font/Circe-Regular.eot?#iefix') format('embedded-opentype'), url('/assets/font/Circe-Regular.woff') format('woff'), url('/assets/font/Circe-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Circe';
    src: url('/assets/font/Circe-Bold.eot');
    src: local('Circe Bold'), local('Circe-Bold'), url('/assets/font/Circe-Bold.eot?#iefix') format('embedded-opentype'), url('/assets/font/Circe-Bold.woff') format('woff'), url('/assets/font/Circe-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --blue: #004C91;
    --blue-light: #4A8BC8;
    --red: #FF0000;
    --black: #282828;
    --green: #27AE60;
    --gray: #9A9A9A;
}

a {
    color: var(--blue);
}

a:hover,
a:focus,
a:active,
button:hover,
button:focus,
button:active {
    outline: none;
    text-shadow: none;
    box-shadow: none;
}

img:focus {
    outline: none;
    text-shadow: none;
    box-shadow: none;
}


/* Product page */

.product__image {
    margin-bottom: 15px;
    padding: 0 25px;
    position: relative;
    text-align: center;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product__image .img-fluid {
    max-height: 180px;
}

.product__image .product__gallery-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.product__image .tns-outer {
    position: relative;
    z-index: 2;
}

.product__gallery-controls button {
    border: 0;
    background: none;
}

.product__gallery-controls:focus {
    outline: none;
}

.product__description-sku {
    color: var(--gray);
    font-size: 15px;
}

.product__description-title {
    font-size: 20px;
    font-weight: 700;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.product__description-title h1,
.product .h1 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.product__description-size {
    color: var(--gray);
    font-size: 15px;
    display: flex;
    align-items: center;
}

.product__description-size img {
    margin-right: 5px;
    margin-top: -2px;
}

.product__available-label .in-stock.green {
    color: var(--green);
}

.product__available-label .in-stock.red {
    color: var(--red);
}

.product__available-label .in-stock.orange {
    color: #ff9100;
}

.product__available-label .out-stock,
.product__available-price .sale {
    color: var(--red);
}

.product__available-price {
    font-size: 20px;
}

.product__available-price strike {
    display: block;
    font-size: 15px;
}

.product__description-delivery-date {
    margin-bottom: 15px;
}

.product__description-delivery-date span {
    display: inline-block;
    color: #fff;
    font-size: 15px;
    padding: 6px 12px;
    background-color: var(--blue);
}

.product__description-delivery-date span.for-order {
    background-color: #2F80ED;
}

.product__description-delivery-date span.white-bg {
    background-color: #fff;
}



.product__description-available {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* max-width: 360px; */
    margin-top: 15px;
    margin-bottom: 15px;
}

.product__available-price-date {
    font-size: 10px;
    color: #4F4F4F;
}

.product__actions button {
    margin-bottom: 5px;
}

.product__inventory {
    padding: 16px 20px;
    border: 0.5px solid #E0E0E0;
    border-radius: 1px;
    margin-top: 20px;
}

.product__inventory-header {
    background: rgba(0, 115, 222, 0.2);
    font-size: 20px;
    font-weight: 400;
    padding: 5px 12px;
}

@media (min-width: 768px) {
    .product__inventory-header {
        font-size: 24px;
    }
}

.product__inventory-item {
    margin-top: 15px;
    border-bottom: 1px solid #C4C4C4;
    margin-bottom: 14px;
    padding-bottom: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product__inventory {
    box-shadow: 0px 3px 8px -1px rgba(50, 50, 71, 0.25);
}

@media (max-width: 767px) {
    .product__inventory {
        box-shadow: none;
        padding: 0;
        border: 0;
    }
}

.product__inventory-item .region-name,
.product__inventory-item .store,
.product__inventory-item .car,
.product__inventory-item .docs {
    padding-left: 25px;
    background-repeat: no-repeat;
    background-position: left 3px;
    font-size: 15px;
}

.product__inventory-item .region-name {
    background-image: url('/image/manlocation.svg');
}

.product__inventory-item .store {
    background-image: url('/image/store.svg');
}

.product__inventory-item .car {
    background-image: url('/image/car.svg');
}

.product__inventory-item .docs {
    background-image: url('/image/docs.svg');
}

.product__inventory-items-header {
    display: flex;
    justify-content: space-between;
    margin-top: 13px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .product__inventory-items-header {
        border-bottom: 1px solid #c4c4c4;
        padding-bottom: 10px;
    }
}

.product__inventory-items-header svg {
    margin: 0 2px;
}

.product__inventory-items-header>div:first-child {
    color: #282828;
    opacity: 0.6;
    font-size: 14px;
}

.product__inventory-items-header>div:last-child {
    white-space: nowrap;
    color: #7e7e7e;
    font-size: 14px;
}

.product__inventory-item:last-child {
    border: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.product__inventory-item span {
    font-size: 10px;
    display: block;
}

.product__inventory-item .region,
.product__inventory-item .warehouse {
    font-size: 13px;
    font-weight: 700;
}

.product__inventory-item .qty,
.product__inventory-item .reserve,
.product__inventory-item .qty span,
.product__inventory-item .reserve span {
    font-size: 12px;
    font-weight: 400;
}

.product__inventory-item .qty span,
.product__inventory-item .reserve span {
    display: inline-block;
}

.product__inventory-item>div:last-child {
    margin-right: 40px;
    margin-left: 15px;
}

.product__calculator,
.product__feature {
    margin-top: 25px;
}

.product__calculator-hidden {
    display: none;
}

.product__calculator-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 15px -5px 0;
}

.product__calculator-item {
    padding: 0 5px;
}

.product__calculator-result {
    padding: 5px;
    font-size: 20px;
}

.product__calculator-result span {
    color: var(--blue);
}

.product__calculator-item .inner {
    border: 1px solid #C5C5C5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100px;
    padding-right: 5px;
    margin-bottom: 15px;
    font-size: ;
}

.product__calculator-item input {
    width: 70px;
    padding: 5px 0 5px 5px;
    border: 0;
    text-align: center;
    color: var(--blue);
    margin: 1px;
}

.product__calculator-item input:focus {
    outline: none;
}

.product__feature {
    margin-bottom: 25px;
}

.product__feature .brand {
    color: var(--blue)
}

.product__feature-table {
    position: relative;
}

.product__feature-table.hide {
    max-height: 175px;
    overflow: hidden;
}

.product__feature-table.hide:after {
    content: "";
    text-align: right;
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white 100%);
    pointer-events: none;
}

.product__feature-table>.row {
    border-bottom: 1px solid #C4C4C4;
    margin: 0;
}

.product__feature-table>.row:last-child {
    border: 0;
}

.product__feature-table>.row>div {
    padding: 10px 0;
}

.product__feature-table>.row>div:nth-child(odd) {
    color: #9D9999;
}

.product__feature-table>.row>div:nth-child(even) {
    text-align: right;
}

.shop__location {
    font-size: 15px;
    color: var(--black);
    margin-bottom: 15px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    padding-left: 5px;
}

.shop__location img {
    margin-top: -2px;
    margin-right: 5px;
}

.left-column {
    position: relative;
}

.left-column .shop__location {
    float: right;
    z-index: 500;
}

.left-column .product__description-delivery-date {
    z-index: 500;
}

.left-column .product__description-delivery-date span {
    background: rgba(0, 76, 145, 0.8);
}

@media (min-width: 768px) and (max-width: 1199px) {
    .left-column .shop__location,
    .left-column .product__description-delivery-date {
        position: relative;
        padding: 0;
        float: none;
    }
}

.number {
    display: flex;
    align-items: center;
}

.number .minus,
.number .plus {
    display: inline-block;
    color: #C5C5C5;
    font-size: 30px;
}

.number input,
.disabled input {
    margin: 0 7.5px;
    height: 38px;
    width: 70px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #C5C5C5;
    display: inline-block;
    vertical-align: middle;
}

.disabled input {
    margin: 0;
}

@media (min-width: 768px) {
    .product__actions button {
        max-width: 350px;
    }
}

@media (min-width: 1200px) {
    .product__inventory {
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
        padding: 30px;
    }
    .product__inventory-item {
        display: flex;
        justify-content: space-between;
        font-size: 15px;
        margin-left: -10px;
        margin-right: -10px;
    }
    .product__inventory-item>div {
        padding: 0 10px;
    }
    .product__inventory-item .region {
        width: 150px;
    }
    .product__inventory-item .region,
    .product__inventory-item .warehouse {
        font-size: 18px;
        font-weight: 700;
    }
    .product__inventory-item .warehouse {
        flex: 1;
    }
    .product__inventory-item .qty span,
    .product__inventory-item .reserve span,
    .product__inventory-item span {
        display: block;
        font-size: 12px;
        font-weight: 400;
    }
    .product__inventory-item .qty,
    .product__inventory-item .reserve {
        font-size: 15px;
        width: 75px;
    }
}

.product__inventory-item .qty,
.product__inventory-item .reserve {
    display: inline-block;
    padding: 5px;
    border-radius: 13px;
    text-align: center;
    min-width: 75px;
    max-width: 150px;
    font-size: 14px;
}

.product__inventory-item .qty {
    background-color: #BDE0B4;
}

.product__inventory-item .reserve {
    background-color: #FFE0AD;
    margin-top: 8px;
}

.product__inventory-item>div:last-child {
    display: flex;
    flex-direction: column;
}


/* кнопки */

.button {
    font-size: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 0;
    padding: 10px;
    transition: all 0.2s linear;
}

.button>img {
    margin-right: 10px;
    margin-top: -3px;
}

.button:hover {
    text-decoration: none;
}

.btn-blue {
    background-color: var(--blue);
}

.btn-blue:hover {
    color: #fff;
    background-color: #113F80;
}

.btn-blue:focus {
    color: #fff;
    background-color: #1652A6;
}

.btn-lightblue {
    background-color: var(--blue-light);
}

.btn-lightblue:hover {
    color: #fff;
    background-color: #4079AD;
}

.btn-lightblue:focus {
    color: #fff;
    background-color: #4E93D4;
}

.btn-red {
    background-color: var(--red);
}

.btn-red:hover {
    color: #fff;
    background-color: #E60000;
}

.btn-red:focus {
    color: #fff;
    background-color: #FF4444;
}

.btn-white {
    background-color: #fff;
    color: var(--blue);
}

.btn-white:hover,
.btn-white:focus {
    background: var(--blue);
    color: #fff;
}

.btn-white img {
    transition: all 0.2s linear;
}

.btn-white:hover img,
.btn-white:focus img {
    filter: brightness(0) invert(1);
}


.product__paymentsystems {
    margin-bottom: 20px;
}

.product__paymentsystems .product__paymentsystems-block {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.product__paymentsystems .product__paymentsystems-block .product__paymentsystems-item {
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
}

.product__paymentsystems .product__paymentsystems-block .product__paymentsystems-item .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 2px;
    border: 1px solid #E1E4E8;
    height: 38px;
    position: relative;
    transition: all 0.2s linear;
    cursor: pointer;
}

.product__paymentsystems .product__paymentsystems-block .product__paymentsystems-item .inner:hover {
    background-color: rgba(35, 98, 203, 0.04);
}

.ptooltip ol {
    margin: 0;
    padding: 0 0 0 15px;
}

.ptooltip .ptooltip__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.ptooltip .ptooltip__logo {
    background-color: #fff;
    border-radius: 2px;
    padding: 4px 6px;
}

.ptooltip .ptooltip__title {
    font-weight: 700;
    line-height: 18px;
}

.ptooltip .ptooltip__text {
    font-size: 12px;
}


@media (min-width: 769px) and (max-width: 1199px) {
    .ptooltip.ptooltip-last {
        left: auto;
        right: 0;
    }

    .ptooltip.ptooltip-last:before {
        left: auto;
        right: 24px;
    }
}

.product__paymentsystems .product__paymentsystems-block .product__paymentsystems-item .inner .logo,
.ptooltip .ptooltip__logo {
    position: relative;
    height: auto!important;
}

.ptooltip .ptooltip__logo.ptooltip__logo-amount {
    padding-right: 10px;
}

.product__paymentsystems .product__paymentsystems-block .product__paymentsystems-item .inner .amount,
.ptooltip .ptooltip__logo .amount {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #C8C8C8;
    font-size: 9px;
    line-height: 8px;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: -3px;
    right: -3px;
    background-color: #fff;
}

.ptooltip .ptooltip__logo {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid #E1E4E8;
}

.ptooltip .ptooltip__logo.ptooltip__logo-amount {
    width: 38px;
}

.ptooltip .ptooltip__logo .amount {
    bottom: 2px;
    right: 5px;
}

.ptooltip {
    background-color: #303437;
    color: #fff;
    padding: 8px;
    border-radius: 6px;
    width: 320px;
    padding: 24px;
}

@media (min-width: 769px) {
    .ptooltip {
        position: absolute;
        left: 0;
        bottom: -18px;
        transform: translateY(100%);
        z-index: 2;
        transition: all 0.2s linear;
        opacity: 0;
    }


    .ptooltip:before {
        content: '';
        position: absolute;
        top: 1px;
        transform: translateY(-100%);
        left: 24px;
        width: 14px;
        height: 12px;
        background-image: url('/image/tooltip-arrow.svg');
    }
    .product__paymentsystems-overlay,
    .ptooltip__close {
        display: none;
    }

    .product__paymentsystems .product__paymentsystems-block .product__paymentsystems-item .inner * {
        pointer-events: none;
    }
}

@media (max-width: 768px) {
    .ptooltip {
        opacity: 0;
    }
    .ptooltip {
        display: block;
        position: fixed;
        top: 50%;
        bottom: auto;
        left: 20px;
        right: 20px;
        transform: translateY(-50%);
        transition: none;
        width: auto;
        max-width: inherit;
        z-index: 1080;
    }
    .product__paymentsystems-overlay.show {
        position: fixed;
        z-index: 1075;
        background-color: rgba(48, 52, 55, 0.5);
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    .ptooltip__header {
        position: relative;
    }
    .ptooltip__header .ptooltip__close {
        position: absolute;
        top: -10px;
        right: -10px;
    }
}

.product__item .product__paymentsystems .product__paymentsystems-block .product__paymentsystems-item .inner {
    height: 38px;
}

.product__item .product__paymentsystems {
    margin-bottom: 0;
    margin-top: 15px;
    padding: 0 15px;
    width: 100%;
}

.product__item .product__paymentsystems .product__paymentsystems-block .product__paymentsystems-item .inner {
    cursor: default;
}
.product__item .product__paymentsystems .product__paymentsystems-block .product__paymentsystems-item .inner:hover {
    background-color: transparent;
}
.product__paymentsystems .product__paymentsystems-block .title {
    display: none;
    line-height: 14px;
    margin-top: 2px;
}

@media (min-width: 992px) {
    .product__paymentsystems .product__paymentsystems-block .title {
        display: block;
    }
}

.toggle-tooltip {
    pointer-events: all!important;
}
.item_small .item_small__price_aval {
    justify-content: space-between;
}
.item_small .item_small__price_aval .item_block_in_list_paymentsystems {
    order: 2;
    margin-right: 10px;
}

.item_small .item_small__price_aval strike {
    flex: 1 0 auto;
}

.item_small .item_small__price_aval .product__paymentsystems {
    margin-bottom: 0;
}

.item_small .item_small__price_aval .product__paymentsystems .product__paymentsystems-block .product__paymentsystems-item {
    min-width: 38px;
    flex: 0 0 auto;
}

.item_small .item_small__price_aval .product__paymentsystems .product__paymentsystems-block .product__paymentsystems-item .inner {
    padding-left: 4px;
    padding-right: 4px;
}

@media (min-width: 769px) {
    .item_small .item_small__price_aval .ptooltip {
        bottom: auto;
        top: -20px;
        transform: translateY(-100%);
    }

    .item_small .item_small__price_aval .ptooltip:before {
        top: auto;
        bottom: 1px;
        transform: translateY(100%) rotate(180deg);
    }
}

@media (max-width: 575px) {
    .item_small .item_block_in_list_paymentsystems {
        display: none;
    }
}