* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: #231F20;
    font-size: 16px;
    background: #f6f4f2;
}

p {
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 24px;
    margin-top: 30px;
}

h3 {
    font-size: 20px;
    margin-top: 30px;

}

a {
    text-decoration: none;
}

.container {
    max-width: 1700px;
}

.container-fluid {
    padding: 0;
}

.row {
    padding-right: 0px;
    padding-left: 0px;
}

.row-2 {
    padding-right: 20px;
    padding-left: 20px;
}

.row-3 {
    padding: 0 10px;
}

.row>* {
    padding-right: 0px;
    padding-left: 0px;
}

.location {
    font-size: 18px;
    font-weight: 400;
    padding-top: 15px;
}

.location a {
    color: #231F20;
}

.location-icon {
    display: inline-block;
    width: 14px;
    height: 18px;
    background-image: url('/assets/images/icon/location.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 10px;
    vertical-align: middle;
}

.navbar-nav li a {
    font-size: 18px;
    font-weight: 400;
    color: #231F20;
    margin-left: 50px;
}

.navbar-nav li a:hover {
    color: #0E09C1;
}

.navbar-nav li .active {
    color: #0E09C1 !important;
}

.multisearch-icon {
    display: inline-block;
    width: 25px;
    height: 15px;
    background-image: url('/assets/images/icon/multisearch.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 3px;
    vertical-align: middle;
}

.border-bottom {
    border-bottom: 1px solid #ebebe9;
}

header {
    background-color: #fffefc;
}

.logo img {
    width: 100%;
    max-width: 240px;
}

.form-control:focus {
    box-shadow: none;
    background-color: transparent;
}

.ptb-30 {
    padding: 30px 0;
}

.mt-40 {
    margin-top: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-80 {
    margin-top: 80px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.pr-50 {
    padding-right: 50px;
}

.input-group-search {
    display: flex;
    align-items: center;
    width: 100%;
    background: #0E09C1;
    border-radius: 20px;
}

#parts {
    border: none;
    border-radius: 20px;
    height: 70px;
    border-right: none;
    border: 2px solid #0E09C1;
    padding: 0 45px;
    flex-grow: 1;
    background: #fff;
}

.img {
    width: 100%;
}

.input-group-append button {
    height: 70px;
    background: #0E09C1;
    border-radius: 0 20px 20px 0;
    border: none;
    color: #ffff;
    font-size: 20px;
    padding: 0 20px;
    cursor: pointer;
    width: 100px;
}

#searchForm {
    margin-top: 15px;
}


.border-bottom-head-1 {
    border-bottom: 1px solid #ebebe9;
    box-shadow: 0 4px 15px -4px rgba(0, 0, 0, 0.1);
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 22px;
    background-image: url('/assets/images/icon/search.svg');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
}

.icon-links {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
    margin-top: 32px;
}

.icon-link {
    position: relative;
}

.icon-link span {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.t-cart-icon {
    background-image: url('/assets/images/icon/cart.svg');
}

.t-user-icon {
    background-image: url('/assets/images/icon/user.svg');
}

.t-user-icon-active {
    background-image: url('/assets/images/icon/user-active.svg');
}

.t-search-icon {
    background-image: url('/assets/images/icon/search-mobile.svg');
}

.t-home-icon {
    background-image: url('/assets/images/icon/home.svg');
}

/* Стили для выпадающего меню */
.user-dropdown {
    .dropdown-content {
        position: absolute;
        top: 100%;
        right: 0;
        min-width: 300px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        padding: 10px 0;
        margin-top: 0px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.2s ease;
        z-index: 1000;
        padding-bottom: 0;

        &.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
    }

    .dropdown-item {
        display: block;
        padding: 8px 10px;
        color: #231F20;
        font-size: 16px;
        transition: all 0.2s ease;

        &:hover {
            background-color: #f5f5f5;
            color: #0E09C1;
            text-decoration: none;
        }
    }

    .dropdown-form {
        margin: 0;
        padding: 0;
    }

    .dropdown-logout {
        width: 100%;
        text-align: left;
        padding: 10px 10px;
        background: none;
        border: none;
        color: #d9534f;
        cursor: pointer;
        font-size: 15px;
        transition: all 0.2s ease;
        border-top: 1px solid #999;
        margin-top: 15px;

        &:hover {
            background-color: rgba(217, 83, 79, 0.1);
            text-decoration: none;
        }
    }
}

.auth-name {
    padding: 0 10px;
    font-size: 18px;
    font-weight: 600;
}

.auth-company {
    padding: 3px 10px;
    font-size: 14px;
    font-weight: 400;
    color: #999;
    margin-bottom: 10px;
}

.cart-badge {
    position: absolute;
    top: 11px;
    right: -10px;
    background: #0E09C1;
    color: #fff;
    font-size: 11px;
    padding-top: 4px;
    border-radius: 50%;
    line-height: 1;
    text-align: center;
    width: 20px !important;
    height: 20px !important;
}

.text-availability-cart {
    display: block;
    color: #0E09C1 !important;
    font-size: 12px;
    padding-bottom: 5px;
}

.multisearch-icon {
    width: 25px;
}


.main-slider {
    gap: 20px;
}

.slider-progress-bar {
    height: 3px;
    background-color: #CBC8C5;
    margin-top: 30px;
    position: relative;
}

.slider-progress-bar .progress {
    height: 1px;
    background-color: #63605D;
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.main-slider .slick-slide {
    margin: 0;
    padding-right: 0px;
    padding-left: 0px;
}

.custom-arrows {
    position: relative;
    right: 0px;
    top: 25px;
    margin-bottom: 45px;
    z-index: 999;
}

.custom-arrows .prev-button,
.custom-arrows .next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 13px;
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    background: none;
}


.custom-arrows .slick-prev {
    left: auto;
    background-image: url("../images/icon/arrow-active.svg");
    right: 50px;
    transform: rotate(180deg);
    background-repeat: no-repeat;
}

.slick-prev.slick-arrow.slick-disabled {
    left: auto;
    background-image: url("../images/icon/arrow-disabled.svg");
    right: 50px;
    transform: none;
    background-repeat: no-repeat;
}


.custom-arrows .slick-next {
    right: 0;
    background-image: url("../images/icon/arrow-active.svg");
    transform: none;
    background-repeat: no-repeat;
}

.slick-next.slick-arrow.slick-disabled {
    right: 0;
    transform: rotate(180deg);
    background-image: url("../images/icon/arrow-disabled.svg");
    background-repeat: no-repeat;
}

.items {
    position: relative;
    /* Родительский контейнер для позиционирования */
    flex: 1;
    text-align: center;
}

.items-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.items-description {
    position: absolute;
    right: 100px;
    background-color: #F6F4F2;
    width: 400px;
    padding: 20px;
    color: #231F20;
    text-align: center;
    border-radius: 10px 10px 0px 0px;
    bottom: 0px;
}

.items-description-4 {
    position: absolute;
    right: 100px;
    background-color: #0E09C1;
    width: 400px;
    padding: 20px;
    color: #fff;
    text-align: center;
    border-radius: 10px 10px 0px 0px;
    bottom: 0px;
}

.items-description-1 {
    font-size: 65px;
    font-weight: 400;
}

.items-description-3 {
    font-size: 34px;
    font-weight: 400;
    padding-bottom: 10px;
}

.about {
    background-color: #fff;
    padding: 30px 0;
}

.experience-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.delivery-icon {
    background-image: url('/assets/images/icon/delivery.png');
}

.return-icon {
    background-image: url('/assets/images/icon/return.png');
}

.warehouse-icon {
    background-image: url('/assets/images/icon/warehouse.png');
}

.distributor-icon {
    background-image: url('/assets/images/icon/distributor.png');
}

.section-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 0px;
}

.section-heading {
    color: #000967;
    background: #000967;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    font-size: 40px;
    display: inline-block;
}

.section-line {
    flex-grow: 1;
    height: 2px;
    background-image: linear-gradient(90deg, #000967 0%, #0E09C1 50%);
    margin: 10px 200px 0 30px;
}

.link-more {
    white-space: nowrap;
}

.link-more a {
    color: #000967;
    font-size: 18px;
    font-weight: 400;
}

.link-more a:hover {
    color: #0E09C1;
}

.experience-img img {
    width: 150px;
}

.experience-img {
    margin-bottom: 30px;
}

.experience-description {
    font-size: 20px;
    font-weight: 300;
    color: #231F20;
}

.brand {
    padding-top: 60px;
}

.brand-bg {
    background: #fff;
    margin-bottom: 20px;
    margin-left: 20px;
    text-align: center;
    border-radius: 20px;
}



.brand-bg img {
    width: 100%;
    height: 150px;
    margin: 30px 0;
    object-fit: contain;
    transition: filter 0.3s ease;
    filter: grayscale(100%);
}

.brand-bg img:hover {
    filter: grayscale(0%);
}

.brand-logo {
    background: #fff;
    border-radius: 10px;
    margin-right: 30px;
    margin-bottom: 0px;
    text-align: center;
}

.brand-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: 25px;
    max-height: 220px;
}

.ml--30 {
    margin-left: -30px;
}

.ml--60 {
    margin-left: -60px;
}


.product {
    margin-bottom: 50px;
    margin-left: 50px;
}


.product-images-bg {
    position: relative;
    background: #fff;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0px 4px 15.1px 0px #00000033;
}

.main-photo {
    margin-bottom: 25px;
}

.main-photo-full {
    margin-bottom: 0;
}

.thumbnails {
    gap: 21.5px;
}

.product-images-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    padding-left: 0px;
    margin-bottom: 0px;
    border-radius: 20px;
}

.product-images img {
    width: 100%;
    height: 333px;
    object-fit: contain;
    padding-left: 50px;
    margin-bottom: 20px;
}

.product-name {
    font-weight: 500;
    font-size: 18px;
    color: #231F20;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}

.no_photo {
    width: 100%;
    max-height: 500px;
    padding: 40px;
    margin-bottom: 20px;
    object-fit: contain;
}


.product-art {
    font-weight: 400;
    font-size: 14px;
    color: #828282;

}

.product-brand {
    font-weight: 500;
    font-size: 14px;
    color: #828282;
    margin-bottom: 20px;

}

.product-price {
    font-weight: 600;
    font-size: 22px;
    color: #231F20;
    margin-bottom: 0px;
}

.product-quantity {
    font-weight: 400;
    font-size: 14px;
    color: #231F20;
}

.product-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-link {
    position: relative;
    z-index: 5;
}

.button-cart {
    position: relative;
    float: right;
    margin-top: -100px;
    z-index: 10;
}

.cart-button {
    width: 65px;
    height: 48px;
    background-image: url('../images/icon/button-cart.svg');
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: background-image 0.3s ease;
}

.cart-button:hover {
    background-image: url('../images/icon/button-cart-active.svg');
}

.added-to-cart {
    background-color: #e8f5e9 !important;
}

.photo-shoot {
    font-weight: 400;
    font-size: 18px;
    color: #000967;
    padding-bottom: 20px;

}

.product-availability {
    color: #fff;
    background: #0E09C1;
    border-radius: 10px;
    padding: 3px 10px 3px 10px;
    margin-left: 20px;
    margin-top: 15px;
    position: absolute;
}

.storage-photo img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

.storage-photo {
    margin-left: 20px;
    margin-bottom: 20px;
}

.storage {
    padding-bottom: 80px;
}


footer {
    background-color: #fffefc;
    padding: 50px 0 0 0;
}

.logo-footer img {
    width: 100%;
    max-width: 240px;
}


.footer-menu-heading {
    font-weight: 400;
    font-size: 24px;
    color: #231F20;
    padding-bottom: 30px;

}

.footer-menu ul {
    list-style: none;
    padding: 0;
    line-height: 2;
}

.footer-menu li a {
    font-weight: 400;
    font-size: 16px;
    color: #231F20;
}

.footer-menu li a:hover {
    font-size: 16px;
    color: #0E09C1;
}

#subscribe {
    border: 1px solid #0E09C1;
    height: 45px;
    margin-bottom: 10px;
}


.footer-subscribe-heading {
    font-weight: 400;
    font-size: 24px;
    color: #231F20;
    padding-bottom: 10px;

}


.form-check {
    margin-bottom: 15px;
}

.form-check-label {
    color: #231F20;
    font-size: 14px;
    margin-top: 0px;
    text-transform: none;
    margin-left: 5px;
    font-weight: 400;
}

.form-check-label a {
    color: #231F20;
    font-weight: 500;
}

.form-check .form-check-input {
    float: left;
    margin-left: -23px;
    border: 1px solid #231F20;
    border-radius: 0;
    background-color: #FAF9F8;
}

.form-check-input:focus {
    box-shadow: none;

}

.form-check-input:checked[type=checkbox] {
    background-image: url('data:image/svg+xml,<svg width="14" height="10" viewBox="0 0 14 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.55583 9.69327L0 5.13744L0.6545 4.48385L4.55583 8.38519L12.9488 -0.0078125L13.6024 0.645771L4.55583 9.69327Z" fill="%231F1811"/></svg>');
}



.button-subscribe {
    background: #0E09C1;
    color: #fff;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 300;
    border-radius: 8px;
    border: none;
}

.button-subscribe:hover {
    background: #000967 !important;
    color: #fff !important;
}


.social {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.social-link {
    display: inline-block;
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-indent: -9999px;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 1;
}

.social-link.youtube {
    background-image: url('../images/icon/youtube.png');
    /* Иконка YouTube */
}

.social-link.telegram {
    background-image: url('../images/icon/telegram.png');
    /* Иконка Telegram */
}

.social-link.telegram:hover {
    background-image: url('../images/icon/telegram-active.png');
    /* Иконка Telegram */
}

.social-link.phone {
    background-image: url('../images/icon/phone.png');
    /* Иконка телефона */
}

.social-link.phone:hover {
    background-image: url('../images/icon/phone-active.png');
    /* Иконка телефона */
}

.social-link.whatsapp {
    background-image: url('../images/icon/whatsapp.png');
    /* Иконка WhatsApp */
}

.social-link.whatsapp:hover {
    background-image: url('../images/icon/whatsapp-active.png');
    /* Иконка WhatsApp */
}

.footer-copyright {
    padding: 30px 0;
}

.footer-left {
    display: flex;
    gap: 20px;
    /* Расстояние между ссылками */
    flex-shrink: 0;
    /* Запрет на сжатие */
}

.footer-left a {
    font-weight: 400;
    font-size: 16px;
    color: #828282;
}

.footer-left a:hover {
    color: #231F20;
}


.copyright {
    font-size: 14px;
    color: #828282;
    font-weight: 400;
}

.address {
    color: #231F20;
    font-size: 20px;
    font-weight: 400;
}

.bg-white {
    background: #fff;
    border-radius: 5px;
}

.pages {
    margin-bottom: 40px;
}

.padding-pages {
    padding: 20px;
}

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

.faq-links li {
    margin-bottom: 20px;
}

.faq-links li a {
    border-radius: 10px;
    padding: 20px;
    color: #231F20;
    font-weight: 400;
    font-size: 18px;
    background: #fff;
    display: block;
    margin-right: 50px;
}

.faq-links li:last-child {

    margin-bottom: 0px;

}

.faq-links li a:hover {
    color: #fff;
    background: #0E09C1;
}

.faq-links li .active {
    color: #fff;
    background: #0E09C1;
}



.status-new {
    color: #F2A95C;
}

.status-wait {
    color: #7B7C7D;
}

.status-job {
    color: #F9D300;
}

.status-completed {
    color: #A25CF2;
}

.status-ready {
    color: #5CA9F2;
}

.status-send {
    color: #0055FF;
}

.status-done {
    color: #2EC830;
}

.status-canceled {
    color: #F30000;
}

.text-justify {
    text-align: justify;
}





.pagination-container {
    margin: 60px 0;
    white-space: nowrap;
    display: flex;
    justify-content: center;
}

.pagination-page,
.pagination-current {
    float: left;
    line-height: 38px;
    font-weight: normal;
    text-align: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    margin-left: 5px;
    padding: 0 !important;
    text-decoration: none;
    display: block;
    transition-duration: 0.3s;
}

.pagination-page {
    border: 1px solid #807F7F;
    color: #000000;
    font-size: 16px;
    color: #000;
}

.pagination-page:hover {
    background-color: #fff;
}

.pagination-current {
    background: #0E09C1;
    border-color: #0E09C1;
    color: #ffffff;
}

.pagination-arrow {
    font-size: 16px;
}



.desc-404 {
    color: #231F20;
    font-size: 35px;
    font-weight: 400;
}

.font-404 {
    color: #0E09C1;
    font-size: 300px;
    font-weight: 700;
    line-height: 1;
}

.main-404 {
    margin-top: 30px;
    font-size: 20px;
}

.main-404 a {
    color: #231F20;
}

.main-404 a:hover {
    color: #0E09C1;
}

.table {
    --bs-table-bg: none;
}

.table-parts th {
    font-weight: 600;
    font-size: 16px;
    border: 0.5px solid #D9D9D9;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    background: #f6f4f2;
}

.table-parts td {
    font-weight: 400;
    font-size: 15px;
    border: 0.5px solid #D9D9D9;
    padding: 10px;
    vertical-align: middle;
    text-align: center;
    word-wrap: break-word;
}

.table-parts td:nth-of-type(1) {
    max-width: 320px;
    overflow: hidden;
}

.table-parts td:nth-of-type(2) {
    max-width: 220px;
    overflow: hidden;
}

.table-parts td:nth-of-type(9) {
    width: 100px;
    overflow: hidden;
}

.table-parts-brand th {
    font-weight: 600;
    font-size: 16px;
    border: 0.5px solid #D9D9D9;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    background: #f6f4f2;
}

.table-parts-brand td {
    font-weight: 400;
    font-size: 15px;
    border: 0.5px solid #D9D9D9;
    padding: 10px;
    vertical-align: middle;
    text-align: center;
}

.table-parts-brand td:nth-of-type(1) {
    width: 320px;
    overflow: hidden;
}

.table-parts-brand td:nth-of-type(2) {
    width: 220px;
    overflow: hidden;
}

.table-parts-brand td:nth-of-type(9) {
    width: 100px;
    overflow: hidden;
}


.table-requisites td {
    font-weight: 400;
    font-size: 17px;
    border: 0.5px solid #D9D9D9;
    padding: 10px;
    vertical-align: middle;
    text-align: left;
}

.table-requisites td:nth-of-type(1) {
    width: 400px;
    overflow: hidden;
}

.table-requisites td:nth-of-type(2) {
    font-weight: 700;
}

.not-result {
    font-size: 22px;
    margin-bottom: 0;
    font-weight: 500;
}


table.dataTable {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
}


/* Data Tables */
.dataTables_wrapper {
    padding-left: 0;
    padding-right: 0;
}

.dataTables_wrapper label {
    font-size: .8125rem;
}

.dataTables_wrapper select {
    padding: .4rem;
    outline-offset: -2px;
}

.dataTables_wrapper .dataTables_length select {
    min-width: 70px;
    margin-left: .25rem;
    margin-right: .25rem;
    width: -webkit-fill-available;
    border-radius: 4px;
}

.dataTables_wrapper .dataTable .btn,
.dataTables_wrapper .dataTable .fc button,
.fc .dataTables_wrapper .dataTable button,
.dataTables_wrapper .dataTable .ajax-upload-dragdrop .ajax-file-upload,
.ajax-upload-dragdrop .dataTables_wrapper .dataTable .ajax-file-upload,
.dataTables_wrapper .dataTable .swal2-modal .swal2-buttonswrapper .swal2-styled,
.swal2-modal .swal2-buttonswrapper .dataTables_wrapper .dataTable .swal2-styled,
.dataTables_wrapper .dataTable .wizard>.actions a,
.wizard>.actions .dataTables_wrapper .dataTable a {
    padding: 0.1rem 1rem;
    vertical-align: top;
}

.dataTables_wrapper .dataTable .btn i,
.dataTables_wrapper .dataTable .fc button i,
.fc .dataTables_wrapper .dataTable button i,
.dataTables_wrapper .dataTable .ajax-upload-dragdrop .ajax-file-upload i,
.ajax-upload-dragdrop .dataTables_wrapper .dataTable .ajax-file-upload i,
.dataTables_wrapper .dataTable .swal2-modal .swal2-buttonswrapper .swal2-styled i,
.swal2-modal .swal2-buttonswrapper .dataTables_wrapper .dataTable .swal2-styled i,
.dataTables_wrapper .dataTable .wizard>.actions a i,
.wizard>.actions .dataTables_wrapper .dataTable a i {
    font-size: .875rem;
    margin-right: .3rem;
}

.dataTables_wrapper .dataTable thead th {
    border-bottom-width: 0;
}

table.dataTable thead span.sort-icon {
    display: inline-block;
    padding-left: 10px;
    position: absolute;
    line-height: 0.5;
    padding-top: 6px;
}

.dataTables_wrapper .dataTable thead .sorting span:before,
.dataTables_wrapper .dataTable thead .sorting span:after,
.dataTables_wrapper .dataTable thead .sorting_asc span:before,
.dataTables_wrapper .dataTable thead .sorting_asc span:after,
.dataTables_wrapper .dataTable thead .sorting_desc span:before,
.dataTables_wrapper .dataTable thead .sorting_desc span:after,
.dataTables_wrapper .dataTable thead .sorting_asc_disabled span:before,
.dataTables_wrapper .dataTable thead .sorting_asc_disabled span:after,
.dataTables_wrapper .dataTable thead .sorting_desc_disabled span:before,
.dataTables_wrapper .dataTable thead .sorting_desc_disabled span:after {
    font-family: themify;
    font-size: .65rem;
}

.dataTables_wrapper .dataTable thead .sorting span:before,
.dataTables_wrapper .dataTable thead .sorting_asc span:before,
.dataTables_wrapper .dataTable thead .sorting_desc span:before,
.dataTables_wrapper .dataTable thead .sorting_asc_disabled span:before,
.dataTables_wrapper .dataTable thead .sorting_desc_disabled span:before {
    content: "\e648";
    right: 1.2em;
    display: block;
    bottom: 0;
}

.dataTables_wrapper .dataTable thead .sorting span:after,
.dataTables_wrapper .dataTable thead .sorting_asc span:after,
.dataTables_wrapper .dataTable thead .sorting_desc span:after,
.dataTables_wrapper .dataTable thead .sorting_asc_disabled span:after,
.dataTables_wrapper .dataTable thead .sorting_desc_disabled span:after {
    content: "\e64b";
    right: 1.2em;
    top: 0;
}

.sorting .sort-icon {
    opacity: 0.4;
}

.sorting_asc span:before {
    opacity: 0.4;
}

.sorting_asc span:after {
    opacity: 1;
}

.sorting_desc span:before {
    opacity: 1;
}

.sorting_desc span:after {
    opacity: 0.4;
}

table.dataTable>thead .sorting:before,
table.dataTable>thead .sorting_asc:before,
table.dataTable>thead .sorting_desc:before,
table.dataTable>thead .sorting_asc_disabled:before,
table.dataTable>thead .sorting_desc_disabled:before {
    right: 1em;
    content: "â†‘";
    display: none;
}

table.dataTable>thead .sorting:after,
table.dataTable>thead .sorting_asc:after,
table.dataTable>thead .sorting_desc:after,
table.dataTable>thead .sorting_asc_disabled:after,
table.dataTable>thead .sorting_desc_disabled:after {
    right: 0.5em;
    content: "â†“";
    display: none;
}

.dataTables_wrapper .dataTables_paginate {
    margin-top: 20px;
}

.dataTables_wrapper .dataTables_info {
    font-size: 0.875rem;
}


.highlight-row,
.highlight-row td {
    font-weight: 700 !important;
}

.replacement-warning {
    color: #ff0000;
    font-weight: 400;
    font-size: 12px;
}

.popover {
    background-color: #fff;
    font-size: 14px;
    border: 1px solid #D9D9D9;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.popover-header {
    background-color: #dbeafe;
    color: #1e40af;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 1px solid #5ea1ff;
}

.popover-body {
    padding: 8px 12px;
    color: #0E09C1;
}


.tooltip-inner {
    background-color: #231F20;
    /* фон */
    color: #ffffff;
    /* текст */
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 4px;
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #231F20;
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #231F20;
}

.tooltip.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: #231F20;
}

.tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: #231F20;
}

.cars-icon-blue {
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url('/assets/images/icon/cars-blue.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 5px;
    vertical-align: bottom;
    cursor: pointer;
}

.cars-icon-red {
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url('/assets/images/icon/cars-red.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 5px;
    vertical-align: bottom;
    cursor: pointer;
}



/* Убираем стрелки в Chrome, Safari и Edge */
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input[type="number"] {
    -moz-appearance: textfield;
}

.cart-container {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
}

.minus {
    width: 8px;
    height: 3px;
    background: none;
    background-image: url(/assets/images/icon/minus.svg);
    background-size: cover;
    background-position: center;
    border: none;
    cursor: pointer;
    padding: 0;
    display: inline-block;
}

.plus {
    width: 11px;
    height: 12px;
    background: none;
    background-image: url('/assets/images/icon/plus.svg');
    background-size: cover;
    background-position: center;
    border: none;
    cursor: pointer;
    padding: 0;
    display: inline-block;
}

.cart-icon {
    width: 26px;
    height: 20px;
    background: none;
    background-image: url('/assets/images/icon/cart-search.svg');
    background-size: cover;
    background-position: center;
    border: none;
    cursor: pointer;
    padding: 0;
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.2);
}

.cart-icon:focus-visible {
    outline: none;
    box-shadow: none;
}

.quantity-input {
    width: 50px;
    text-align: center;
    padding: 3px;
    font-size: 14px;
    border: 1px solid #828282;
    border-radius: 50px;
}

.cart-container {
    display: flex;
    align-items: center;
}

.search-product-link a {
    color: #231F20;
    text-decoration: none !important;
    display: inline-block;
    align-items: center;
    gap: 10px;
    transition: color 0.2s ease;
    border-bottom: none !important;
}

.search-product-link a .text {
    border-bottom: 1px dashed #231F20;
}

.search-product-link a:hover {
    color: #0E09C1;
    border-bottom: none !important;
}

.search-product-link a:hover .text {
    border-bottom: 1px dashed #0E09C1;
}

/* Иконка - всегда без границы */
.search-product-link a .icon,
.search-product-link a .icon i {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    font-size: 18px;
    vertical-align: middle;
    margin-right: 5px;
    display: inline-flex;
}


.product-detail-name {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 30px;
    padding-right: 30px;
}

.product-meta {
    padding-right: 40px;
}

.meta-item:last-child {
    border-bottom: none !important;
}

.border-gray-200 {
    border-color: #D9D9D9 !important;
}

.meta-label {
    color: #828282;
    font-size: 18px;
}

.meta-value {
    color: #231F20;
    font-size: 18px;
}

.meta-price {
    color: #231F20;
    font-size: 32px;
    font-weight: 600;
}

.py-3 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.product-gallery {
    position: relative;
}

.thumbnail {
    position: relative;
    width: 100px;
    height: 100px;
    cursor: pointer;
    overflow: hidden;
}

.thumbnail img {
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    padding: 0;
    border-radius: 5px;
}

.thumbnail:hover img {
    opacity: 0.4;
    background-color: white;
}

.imageMain {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 5px;
}

.imageMain-full {
    width: 100%;
    max-height: 545px;
    object-fit: cover;
    border-radius: 5px;
}

.btn-cart-product {
    width: 100%;
    /*margin-bottom: 10px;*/
    padding: 12px;
}

.btn-primary {
    background: #0E09C1;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: #000967 !important;
    color: #fff !important;
    border: none;
}

.text-bg-success {
    background-color: #0E09C1 !important;
    color: #fff !important;
}

.btn-close:focus {
    box-shadow: none;
}

.page-title {
    margin-bottom: 20px;
}

.count-stock {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 40px;
}

.count-badge {
    background: #000967;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 14px;
}

.slider-about {
    padding-right: 50px;
}

.about-company {
    background-color: #fff;
    padding: 30px 0;
}

.about-company-block {
    background: #000967;
    padding: 60px;
    margin: 20px;
    color: #fff;
    border-radius: 10px;
}

.about-company-title {
    font-size: 52px;
    font-weight: 700;
}

.about-company-description {
    font-size: 16px;
}


.company-philosophy {
    background-color: #fff;
    padding: 40px 0;
}

.company-philosophy-block {
    padding: 40px 120px;
}

.company-philosophy-block p {
    font-size: 24px;
}

.company-philosophy-line {
    height: 1px;
    background-image: linear-gradient(90deg, #000967 0%, #0E09C1 50%);
    margin: 40px 200px 40px 200px;
}

.company-philosophy-sign {
    font-size: 16px !important;
}

.about-main-text {
    font-size: 18px;
}

.about-slider img {
    max-height: 450px;
    object-fit: cover;
}

.form-control-1 {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: none;
    background: none;
    opacity: 1;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    border-radius: 0;
    color: #231F20;
    margin-bottom: 30px;
}

.profile label {
    color: #828282;
    font-size: 15px;
}

.profile-desc {
    color: #231F20;
    font-size: 16px;
    margin-bottom: 10px;
}

.profile-desc span {
    color: #0E09C1;
}

input.form-control-1:focus {
    box-shadow: none !important;
    outline: none !important;
    border-color: inherit !important;
}

.profile {
    padding: 20px 40px;
}

.order-view {
    display: inline-block;
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-indent: -9999px;
    transition: opacity 0.3s ease;
}

.order-view {
    background-image: url('../images/icon/eye.svg');
}

.order-view:hover {
    background-image: url('../images/icon/eye-active.svg');
}

.order-bill {
    display: inline-block;
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-indent: -9999px;
    transition: opacity 0.3s ease;
}

.order-bill {
    background-image: url('../images/icon/bill.svg');
}

.order-bill:hover {
    background-image: url('../images/icon/bill-active.svg');
}

.order-link {
    display: inline-flex;
    align-items: center;
    color: #0E09C1;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.order-link:hover {
    color: #231F20;
}

.order-bill-detail {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-left: 6px;
    /* Отступ слева от текста */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-indent: -9999px;
    transition: background-image 0.3s ease;
    background-image: url('../images/icon/bill-active.svg');
}

.order-link:hover .order-bill-detail {
    background-image: url('../images/icon/bill.svg');
}


.table-order {
    width: 100%;
}

.table-order th {
    font-weight: 500;
    font-size: 16px;
    border-bottom: 0.5px solid #D9D9D9;
    padding: 10px 0;
    text-align: left;
    vertical-align: middle;
    color: #828282;
}

.table-order td {
    font-weight: 400;
    font-size: 15px;
    border-bottom: 0.5px solid #D9D9D9;
    padding: 10px 0;
    vertical-align: middle;
    text-align: left;
    color: #231F20;
}

.table-order td:nth-of-type(7) {
    text-align: center !important;
}

.table-order td:nth-of-type(8) {
    text-align: center !important;
}

.table-order th:nth-of-type(7) {
    text-align: center !important;
}

.table-order th:nth-of-type(8) {
    text-align: center !important;
}

.table-order td:nth-of-type(1) {
    width: 110px;
}

.table-order td:nth-of-type(2) {
    width: 110px;
}

.table-order td:nth-of-type(3) {
    width: 110px;
}

.table-order td:nth-of-type(4) {
    width: 150px;
}

.table-order td:nth-of-type(5) {
    width: 300px;
}

.table-order td:nth-of-type(7) {
    width: 100px;
}

.table-order td:nth-of-type(8) {
    width: 100px;
}

.exit {
    background-color: rgba(217, 83, 79, 0.1) !important;
    color: #d9534f !important;
}

.faq-links li a.exit:hover {
    background-color: rgba(217, 83, 79, 0.9) !important;
    color: #fff !important;
}


.orders-details-quantity {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
}

.orders-details-quantity span {
    font-weight: 600;
}

.orders-details-price {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 5px;
}

.orders-details-price span {
    font-weight: 600;
}

.table-parts-order {
    width: 100%;
    margin-bottom: 10px;
}

.table-parts-order th {
    font-weight: 600;
    font-size: 16px;
    border: 0.5px solid #D9D9D9;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    background: #f6f4f2;
}

.table-parts-order td {
    font-weight: 400;
    font-size: 15px;
    border: 0.5px solid #D9D9D9;
    padding: 10px;
    vertical-align: middle;
    text-align: center;
}

.table-parts-order td:nth-of-type(2) {
    width: 320px;
    overflow: hidden;
}

.table-parts-order td:nth-of-type(3) {
    width: 220px;
    overflow: hidden;
}

.orders-info {
    margin-top: 30px;
}

.orders-info p {
    font-size: 17px;
    font-weight: 500;
}

.orders-info span {
    font-size: 16px;
}

.order-detail-button {
    background: #0E09C1;
    color: #fff;
    padding: 10px 40px;
    font-size: 14px;
    font-weight: 300;
    border-radius: 8px;
    border: none;
    text-transform: uppercase;
}

.order-detail-button:hover {
    background: #000967 !important;
    color: #fff !important;
}

.alert-danger {
    padding-left: 10px !important;
}

.alert-success {
    padding-left: 10px !important;
}

.is-invalid-1 {
    border-bottom: 1px solid #ff0000 !important;
}

.login label {
    color: #595959;
    font-size: 17px;
}

.form-control-1::placeholder {
    color: #cecece;
    opacity: 1;
    font-size: 15px;
}

.form-control::placeholder {
    color: #cecece;
    font-size: 16px;
}

#subscribeForm .form-control::placeholder {
    color: #cecece;
    font-size: 14px;
}

.button-login {
    background: #0E09C1;
    color: #fff;
    padding: 10px 80px;
    font-size: 16px;
    font-weight: 300;
    border-radius: 8px;
    border: none;
}

.button-login:hover {
    background: #000967 !important;
    color: #fff !important;
}

.auth {
    margin: 40px 0;
}

.auth p {
    font-size: 17px;
    margin-bottom: 10px;
}

.auth a {
    color: #0E09C1;
}

.auth a:hover {
    color: #000967;
}

.suggestions-nowrap {
    white-space: nowrap;
}

.suggestions-input {
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}

.suggestions-input::-ms-clear {
    display: none;
}

.suggestions-wrapper {
    position: relative;
    margin: 0;
    padding: 0;
    vertical-align: top;
    -webkit-text-size-adjust: 100%;
}

.suggestions-suggestions {
    background: #fff;
    border: 1px solid #999;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: default;
    left: 0;
    min-width: 100%;
    position: absolute;
    z-index: 9999;
    -webkit-text-size-adjust: 100%;
}

.suggestions-suggestions strong {
    font-weight: normal;
    color: #3399ff;
}

.suggestions-suggestions.suggestions-mobile {
    border-style: none;
}

.suggestions-suggestions.suggestions-mobile .suggestions-suggestion {
    border-bottom: 1px solid #ddd;
}

.suggestions-suggestion {
    padding: 4px 4px;
    overflow: hidden;
}

.suggestions-suggestion:hover {
    background: #f7f7f7;
}

.suggestions-selected {
    background: #f0f0f0;
}

.suggestions-selected:hover {
    background: #f0f0f0;
}

.suggestions-hint {
    padding: 4px 4px;
    white-space: nowrap;
    overflow: hidden;
    color: #777;
    font-size: 85%;
    line-height: 20px;
}

.suggestions-subtext {
    color: #777;
}

.suggestions-subtext_inline {
    display: inline-block;
    min-width: 6em;
    vertical-align: bottom;
    margin: 0 0.5em 0 0;
}

.suggestions-subtext-delimiter {
    display: inline-block;
    width: 2px;
}

.suggestions-subtext_label {
    margin: 0 0 0 0.25em;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 0 3px;
    background: #f5f5f5;
    font-size: 85%;
}

.suggestions-value[data-suggestion-status="LIQUIDATED"] {
    position: relative;
}

.suggestions-value[data-suggestion-status="LIQUIDATED"]:after {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: 1px solid rgba(0, 0, 0, 0.4);
    content: "";
}

.suggestions-promo {
    font-size: 85%;
    display: none;
    color: #777;
    padding: 4px;
    text-align: center;
}

.suggestions-promo a {
    color: #777;
    display: block;
    filter: grayscale(100%);
    line-height: 20px;
    text-decoration: none;
}

.suggestions-promo a:hover {
    filter: grayscale(0);
}

.suggestions-promo svg {
    height: 0px;
    vertical-align: bottom;
}


#subscribeMessages .alert p {
    margin-bottom: 0px;
}



.button-multisearch {
    background: #0E09C1;
    color: #fff;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 300;
    border-radius: 8px;
    border: none;
}

.button-multisearch:hover {
    background: #000967 !important;
    color: #fff !important;
}

.form-control-2 {
    display: block;
    width: 100%;
    padding: 2px 5px !important;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: none;
    background: none;
    opacity: 1;
    border: none;
    border: 1px solid #231F20;
    padding: 10px 0;
    border-radius: 0;
    color: #231F20;
    margin-bottom: 30px;
}

input.form-control-2:focus {
    box-shadow: none !important;
    outline: none !important;
    border-color: inherit !important;
}

textarea.form-control-2:focus {
    box-shadow: none !important;
    outline: none !important;
    border-color: inherit !important;
}

.modal-button {
    max-width: 300px;
    margin: 0 auto;
}

.table-parts {
    width: 100%;
}

.table-parts-multi {
    width: 100%;
}

.table-parts-brand {
    width: 100%;
}

.table-parts-multi th {
    font-weight: 600;
    font-size: 16px;
    border: 0.5px solid #D9D9D9;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    background: #f6f4f2;
}

.table-parts-multi td {
    font-weight: 400;
    font-size: 15px;
    border: 0.5px solid #D9D9D9;
    padding: 10px;
    vertical-align: middle;
    text-align: center;
    word-wrap: break-word;
}

.table-parts-multi td:nth-of-type(1) {
    width: 150px;
    overflow: hidden;
}

.table-parts-multi td:nth-of-type(2) {
    width: 90px;
    overflow: hidden;
}

.table-parts-multi td:nth-of-type(3) {
    width: 270px !important;
    overflow: hidden;
}

.table-parts-multi td:nth-of-type(4) {
    width: 150px !important;
    overflow: hidden;
}

.table-parts-multi td:nth-of-type(10) {
    width: 100px;
    overflow: hidden;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    justify-items: left;
}

.city-btn {
    padding: 10px;
    border: 0;
    border-radius: 0;
    background: #fff;
    color: #231F20;
    cursor: pointer;
    font-weight: 300;
    transition: all 0.3s ease;
    user-select: none;
    font-weight: 400;
}

.city-btn:hover,
.city-btn.active {
    background: #fff;
    color: #0E09C1;
    font-weight: 600;
}

#authRequiredModal h5 {
    margin-bottom: 20px;
}

#authRequiredModal p {
    margin-bottom: 20px;
}

.deliveryCity {
    font-size: 12px;
    color: #0E09C1;
}


.table-cart th {
    font-weight: 600;
    font-size: 16px;
    border-bottom: 0.5px solid #231F20;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    background: #f6f4f2;
}

.table-cart td {
    font-weight: 400;
    font-size: 15px;
    border-bottom: 0.5px solid #231F20;
    padding: 10px;
    vertical-align: middle;
    text-align: center;
}

.table-cart td:nth-of-type(1) {
    width: 300px;
    overflow: hidden;
}

.table-cart td:nth-of-type(2) {
    width: 200px;
    overflow: hidden;
}

.table-cart td:nth-of-type(7) {
    width: 200px;
    overflow: hidden;
}

.table-cart td:nth-of-type(8) {
    width: 200px;
    overflow: hidden;
}

.cart-remove a {
    color: #231F20;
    cursor: pointer;
}

.cart-remove a:hover {
    color: #0E09C1;
}

.cart-remove i {
    font-size: 18px;
    font-weight: 700;
}

.cart-remove:focus-visible {
    outline: none;
    box-shadow: none;
}

.order-auth {
    font-size: 24px;
    text-align: center;
    font-weight: 600;
    margin: 40px 0;
}

.cart-summary {
    font-size: 20px;
    font-weight: 400;
    margin: 20px 0;
}

.cart-summary span {
    font-weight: 600;
}

.deliverycity {
    display: none;
}

.warning_groz {
    display: none;
}

.warning_sklad {
    display: none;
    padding-bottom: 20px;
    color: #ff0000;
}

.pickup {
    display: none;
    padding-bottom: 20px;
    color: #ff0000;
}

.delivery_pek_sdek {
    display: none;
    padding-bottom: 20px;
    color: #ff0000;
}

.accept-offerta {
    padding: 30px 0;
    font-size: 16px;
    color: #231F20;
}

.form-control {
    border-color: #e7e7e7;
}

.form-control:focus-visible {
    outline: none;
    box-shadow: none;
}

.order-warning {
    background: #f6f4f2;
    border-color: #e7e7e7;
}

.dt-buttons {
    float: right !important;
    text-align: right !important;
    margin-bottom: 15px;
}

.buttons-excel {
    font-size: 14px !important;
    font-weight: 300 !important;
    border: none !important;
    color: #fff !important;
    padding: 5px 10px !important;
    border-radius: 5px !important;
    background: #0e09c1 !important;
    transition: background 0.2s ease-in-out;
}

.buttons-excel:hover {
    background: #000967 !important;
    cursor: pointer !important;
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.sale {
    display: inline;
    font-size: 10px;
    color: #e00000;
    vertical-align: middle;
    margin-top: 5px;
    font-weight: 700;
}

.sale-bg {
    background-color: #f5e8e8;
}