/* Products */
.link {
    text-decoration: none !important;
}

.order__form {
    border: 1px solid #30c4f3;
    padding: 20px;
}

.order__form__btn {
    text-align: right;
}

.order__form__btn .btn--blue {
    max-width: 214px;
    width: 100%;
}

/* Catalog page */

.breadcrumbs__wrapper {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 4px;
    align-items: baseline;
}

.breadcrumbs__item {
    list-style: none;
}

.breadcrumbs__separator {
    color: #444;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    opacity: 0.5;
    scroll-padding: 2px;
}

.breadcrumbs__item a{
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    text-decoration: none;
    display: inline-flex;
}

.breadcrumbs__label {
    color: #444;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    line-height: 20px;
    text-decoration: none;
    opacity: 0.8;
}

.pageTitle {
    padding-top: 15px;
}

.pageTitle .pageTitle__title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pageTitle .pageTitle__subtitle {
    font-size: 20px;
}

.mainCatalog .container {
    width: 1430px;
    max-width: 100%;
}

.catalog__sortWrapper {
    border: 1px solid #F2F2F2;
    padding: 8px 20px;
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.catalog__wrapper {
    display: flex;
}

.sidebar {
    width: 300px;
    flex-shrink: 0;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu__list {
    margin-top: 12px;
}

.sidebarFilter {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}

.filterWrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.filter__block {
    display: flex;
    flex-direction: column;
    background-color: #F2F2F2;
    padding: 16px 20px;
    gap: 10px;
}

.filter__titleWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.filter__title {
    margin: 0;
    color: #444;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.filter__tooltip {
    position: relative;
}

.filter__tooltipIcon {
    background-image: url("../img/oils/icons/tooltip.svg");
    display: block;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.tooltip__wrapper {
    position: absolute;
    padding: 10px 16px;
    background: #232323;
    display: none;
    z-index: 20;
    width: 240px;
    bottom: calc(100% + 15px);
    color: #FFF;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    transform: translateX(-50%);
    left: 50%;
}

.filter__tooltip:hover .tooltip__wrapper {
    display: flex;
}

.tooltip__wrapper:before {
    content: '';
    background-image: url("../img/oils/product/rating/carret.svg");
    width: 48px;
    height: 24px;
    display: block;
    position: absolute;
    bottom: -11px;
    transform: rotate(180deg) translateX(50%);
    left: 50%;
}

.filter__showWrapper {
    position: absolute;
    padding: 10px 16px;
    background: #232323;
    display: block;
    z-index: 20;
    width: 180px;
    color: #FFF;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    left: 90%;
    bottom: 100px;
}

.filter__showWrapper:before {
    content: '';
    background-image: url("../img/oils/product/rating/carret.svg");
    width: 48px;
    height: 24px;
    display: block;
    position: absolute;
    bottom: -11px;
    transform: rotate(-90deg) translateX(25%);
    left: -22px;
    top: 50%;
}

.filter__showWrapperText {
    color: #FFF;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.filter__showWrapperBTN {
    padding: 0;
    border: 0;
    width: 100%;
    background: transparent;
}

.filter__showWrapperBTN .btn {
    width: 100%;
}

.filter__showWrapperBTN span {
    display: block;
}

.filter__resetBTN {
    cursor: pointer;
    color: #a1a1a1;
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    line-height: 28px;
    display: none;
    gap: 4px;
    align-items: center;
    position: absolute;
    right: -10px;
}

.filter__resetBTN:after {
    content: '';
    background-image: url("../img/oils/icons/remove.svg");
    width: 16px;
    height: 16px;
}

.filter__resetBTN:hover {
    color: #30C4F3;
}

.filter__resetBTN:hover:after {
    background-image: url("../img/oils/icons/remove_blue.svg");
}

.filter__container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox__search {
    border: 1px solid #DDD;
    background: #FFFFFF;
    padding: 10px;
    color: #444;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.filter__checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter__checkboxesWrapper {
    display: flex;
    flex-direction: column;
}

.checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
    padding: 0;
    margin-top: 0 !important;
}

.checkbox input[type="checkbox"] {
    display: none; /* Сховати стандартний чекбокс */
}

.checkbox__label {
    color: #444;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: normal;
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}
 /*
.checkbox:last-of-type .checkbox__label {
   margin-bottom: 0;
}*/

.checkbox__label::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 1px solid #62C2EE;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px #ffffff;
}

.checkbox input[type="checkbox"]:checked + .checkbox__label::before {
    background: #62C2EE;
}

.checkbox input[type="checkbox"]:disabled + .checkbox__label::before {
    background-color: #333333;
    border-color: #333333;
    box-shadow: inset 0 0 0 1px #333333;
    opacity: .08;
}

.checkbox input[type="checkbox"]:disabled + .checkbox__label {
    opacity: .5;
}

.checkbox-btnMore, .checkbox-btnLess {
    border: 0;
    padding: 0;
    background: transparent;
}

.filter__checkboxesWrapper .checkbox {
    transition: opacity 0.5s ease, height 0.5s ease;
}

.filter__checkboxesWrapper .checkbox.visible {
    opacity: 1;
    height: auto;
}

.checkbox-btnMore, .checkbox-btnLess {
    cursor: pointer;
}

.checkbox-btnLess:after {
    content: '';
    background-image: url("../img/oils/icons/arrow_blue.svg");
    background-position: center right;
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
    display: flex;
    transform: rotate(180deg);
}

.slider__inputs {
    display: flex;
    gap: 8px;
}

.slider__inputs label {
    border: 1px solid #DDD;
    background: #FFFFFF;
    padding: 10px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
}

.slider__inputs label input {
    color: #333333;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border: 0;
    padding: 0;
    width: 100%;
}

.range__wrapper {
    height: 30px;
    padding-top: 6px;
    display: flex;
    align-items: center;
}

.range__wrapper .range__el {
    height: 2px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    background: #D9D9D9;
}

.range__wrapper .noUi-horizontal .noUi-handle {
    width: 24px;
    height: 24px;
    top: -11px;
    background-color: #30C4F3;
    border-radius: 50%;
    border: 0;
    box-shadow: none;
    cursor: pointer;
}

.range__wrapper .noUi-connect {
    background: #30C4F3;
}

.range__wrapper .noUi-horizontal .noUi-handle:after,
.range__wrapper .noUi-horizontal .noUi-handle:before {
    display: none;
}

.filter__btnsWrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.filter__btn {
    background-color: #62C2EE;
    border: 0;
    color: #FFFFFF;
    font-size: 14px;
    height: 40px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    transition: .3s;
    cursor: pointer;
}

.filter__btn:hover {
    background-color: #30c4f3;
}

.filter__btn-reset {
    display: flex;
    align-items: center;
    background: transparent;
    border: 0;
    justify-content: center;
    gap: 2px;
    color: #444444;
    font-size: 12px;
    line-height: 24px;
    transition: .3s;
}

.filter__btn-reset:hover {
    color: #30c4f3;
}

.filter__btn-reset path {
    transition: .3s;
}

.filter__btn-reset:hover path {
    fill: #30c4f3;
}

.sort__title {
    color: #444;
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 0;
}

.sort__list {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.sort__listItem {
    list-style: none;
    cursor: pointer;
    font-weight: 700;
    position: relative;
}

.sort__listItem:hover,
.sort__listItem.active {
    color: #30c4f3;
}

.sort__listItem.active:before {
    content: '';
    background-image: url("../img/oils/icons/sort__arrow.svg");
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    right: -20px;
    top: 3px;
}

a.sort__listItem.desc:before {
    transform: rotate(180deg);
    content: '';
    background-image: url("../img/oils/icons/sort__arrow.svg");
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    right: -20px;
    top: 3px;
}

a.sort__listItem.asc:before {
    content: '';
    background-image: url("../img/oils/icons/sort__arrow.svg");
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    right: -20px;
    top: 3px;
}

.sort__listItem.active.desc:before {
    transform: rotate(180deg);
}

.catalog__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    position: relative;
}

.products {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.product {
    width: calc(25% - 15px);
    position: relative;
    min-height: 400px;
}

.product__wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border: 1px solid #F2F2F2;
    text-decoration: none;
    width: 100%;
    height: 100%;
    transition: .3s;
    box-shadow: 0 0 0 0 #30C4F3;
}

.product:hover .product__wrapper {
    position: relative;
    z-index: 10;
    background-color: #ffffff;
    box-shadow: inset 0 0 0 1px #30C4F3;
    cursor: pointer;
}

.product__wrapper .product__image{
    height:184px;
    width:100%;
}

.product__wrapper .product__image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product__code {
    color: rgba(69, 69, 69, 0.5);
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.product__rating {
    display: flex;
    gap: 2px;
}

.product__rating .star {
    background-image: url("../img/oils/icons/full_star.svg");
    width: 16px;
    height: 16px;
    background-size: contain;
}

.product__rating .empty__star {
    background-image: url("../img/oils/icons/empty_star.svg");
}

.product__title {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    color: #444444;
    transition: .3s;
    height: 60px;
}

.product:hover .product__title {
    color: #30c4f3;
}

.row_items{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.product__inStock {
    color: #27AE60;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    margin: 0;
    margin-top: auto;
}

.product__minLot {
    color: #30c4f3;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    margin: 0;
    margin-top: auto;
}

.product__priceWrapper {
    display: flex;
    gap: 8px;
    align-items: center;
}

.product__price {
    color: #444;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
}

.product__cart {
    width: 24px;
    height: 24px;
    /*background-image: url("../img/oils/icons/card.png");*/
    background-size: contain;
    background-position: center;
    cursor: pointer;
}

.product__cart i{
    font-size: 24px;
    position: relative;
    top: -4px;
}

.product__search {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-position: center;
    cursor: pointer;
}

.product__search i{
    font-size: 24px;
    position: relative;
    top: -4px;
}

.product__cart:hover{
    opacity: 0.7;
}

.product__characteristicList {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: .3s;
    overflow: hidden;
    position: absolute;
    top: calc(100% - 1px);
    background: #FFFFFF;
    width: 100%;
    left: 0px;
    border-bottom: 1px solid #32c4f3;
    border-left: 1px solid #32c4f3;
    border-right: 1px solid #32c4f3;
    padding: 0 20px 20px;
    opacity: 0;
    z-index: -1;
    transition: .3s;
}

.productCart__wrapper{
    margin-bottom: 30px;
}

.productCart__wrapper  .product__characteristicList {
    z-index: 1;
}

.product:hover .product__characteristicList {
    opacity: 1;
    z-index: 20;
}

.product__characteristicItem {
    color: #333333;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    line-height: 16px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.product__characteristicLabel {
    background-color: #FFFFFF;
    padding-right: 2px;
    z-index: 10;
}

.product__characteristicValue {
    background-color: #FFFFFF;
    padding-right: 2px;
    z-index: 10;
}

.product__characteristicItem:before {
    content: '';
    position: absolute;
    width: 100%;
    border-bottom: 1px dotted rgba(51, 51, 51, 0.3);
    bottom: 4px;
}

.catalog__navigation {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 0 15px 0;
}

.catalog__navigation-btn {
    background: rgba(98, 194, 238, 0.10);
    color: #30C4F3;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 20px;
    line-height: 20px;
    width: 100%;
}

.catalog__nav {
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.catalog__navItem {
    list-style: none;
}

.catalog__navItem-link {
    display: block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: #333333;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

a.catalog__navItem-link:hover,
.catalog__navItem-link.active {
    background-color: #30C4F3;
    color: #ffffff;
}

.catalog__navItem-link.prev {
    background-image: url("../img/oils/icons/arrow.svg");
    transform: rotate(180deg);
    background-repeat: no-repeat;
    background-position: center;
}

.catalog__navItem-link.next {
    background-image: url("../img/oils/icons/arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
}

a.catalog__navItem-link.prev:hover {
    background-image: url("../img/oils/icons/arrow_white.svg");
}

a.catalog__navItem-link.next:hover {
    background-image: url("../img/oils/icons/arrow_white.svg");
}

.partners__wrapper {
    border: 1px solid #F2F2F2;
    padding: 20px;
    gap: 12px;
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
}

.partners__title {
    margin: 0;
    color: #444;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
}

.partners__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.catalogContent {
    margin-bottom: 40px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.catalogContent__title {
    color: #444;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    margin: 0;
}

.catalogContent__description {
    color: #444;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    max-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    box-orient: vertical;
}

.catalogContent.active .catalogContent__description {
    max-height: 100%;
    -webkit-line-clamp: none;
}

.catalogContent__description *:last-child {
    margin-bottom: 0;
}

.btn__more {
    color: #30C4F3;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn__not_found {
    color: #ff7373;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn__more:after {
    content: '';
    background-image: url("../img/oils/icons/arrow_blue.svg");
    background-position: center right;
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
    display: flex;
}

.catalogContent.open .btn__more:after {
    transform: rotate(180deg);
}

.catalogContent.open .catalogContent__description {
    -webkit-line-clamp: inherit;
    max-height: 100%;
}

/* Product page */

.productCart__product__title {
    display: flex;
    gap: 10px;
}

.btn-back {
    background-image: url("../img/oils/icons/back-blue.svg");
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.productCart__pageTitle {
    font-size: 24px;
}

.productCart__header {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.productCart__images {
    display: flex;
    align-items: flex-start;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.gallery__thumbs {
    width: 68px;
    height: 300px;
    overflow: hidden;
}

.swiper-slide-thumb-active {
    border: 1px solid #30c4f3;
}

.productCart__images .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.gallery__product {
    width: 500px;
    height: 400px;
    overflow: hidden;
    margin-left: 20px;
}

.gallery__product .swiper-slide {
    cursor: pointer;
}

.swiper-slide img {
    display: block;
    width: auto;
    height: 100%;
    object-fit: contain;
}

.product-card {
    text-align: center;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

.product-card img {
    width: 100px; /* Змініть розмір за необхідністю */
    height: auto;
    margin-bottom: 10px;
}

.productCart__characteristicsWrapper {
    width: 50%;
}

.productCart__header .product__characteristicList,
.productCart__tabs .product__characteristicList {
    display: flex;
    opacity: 1;
    position: relative;
    top: auto;
    border: none;
    left: 0;
    padding: 0;
    width: 100%;
    background: transparent;
}

.product__moreCharacteristic {
    color: #30C4F3;
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 4px;
    cursor: pointer;
    transition: .3s;
}

.product__moreCharacteristic:hover {
    gap: 16px;
}

.productCart__meta {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.productCart__thumbsWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thumbs-btn {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
    width: 20px;
    height: 20px;
    margin-bottom: 10px;
    margin-top: 0;
}

.thumbs-btn:after {
    background-image: url("../img/oils/icons/slider-arrow.svg");
    font-size: 0;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
}

.thumbs-btn.swiper-button-prev {
    margin-bottom: 0;
    margin-top: 0;
}

.thumbs-btn.swiper-button-prev:after {
    transform: rotate(0deg);
}

.product__ratingWrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product__ratingTotal {
    position: relative;
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
}

.product__ratingCarret {
    background-image: url("../img/oils/icons/arrow-right.svg");
    width: 12px;
    height: 12px;
    transform: rotate(90deg);
    background-size: contain;
    background-position: center;
}

.ratingTotal__list {
    position: absolute;
    border-radius: 2px;
    background: #232323;
    padding: 12px 16px 16px;
    width: 240px;
    transform: translateX(-47%);
    z-index: 10;
    top: calc(100% + 10px);
    display: none;
}

.ratingTotal__list.active {
    display: block;
}

.ratingTotal__list .product__rating .star {
    width: 24px;
    height: 24px;
}

.ratingTotal__list:before {
    content: '';
    background-image: url("../img/oils/product/rating/carret.svg");
    width: 48px;
    height: 24px;
    display: block;
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
}

.ratingTotal__listRate {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}

.ratingTotal__listRateTotal {
    color: #FFF;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
}

.ratingTotal__listRateFrom {
    color: #FFF;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
}

.ratingList {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.ratingList__item {
    list-style: none;
    display: flex;
    color: #FFF;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    justify-content: space-between;
}

.ratingList__stars {
    height: 16px;
    width: 90px;
}

.ratingList__starsOne {
    background-image: url("../img/oils/product/rating/one.svg");
}

.ratingList__starsTwo {
    background-image: url("../img/oils/product/rating/two.svg");
}

.ratingList__starsThree {
    background-image: url("../img/oils/product/rating/three.svg");
}

.ratingList__starsFour {
    background-image: url("../img/oils/product/rating/four.svg");
}

.ratingList__starsFive {
    background-image: url("../img/oils/product/rating/five.svg");
}

.productCart__meta .product__code {
    color: #444444;
}

.productCart__priceWrapper {
    background: #F2F2F2;
    padding: 32px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.productCart__generalPrice {
    color: #444;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 20px;
}

.productCart__perOnePrice {
    color: rgba(68, 68, 68, 0.5);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;
}

.productCart__loginPriceWrapper {
    background: #FFD64E;
    width: 100%;
    padding: 8px 10px;
    text-decoration: none;
    gap: 12px;
    display: flex;
    align-items: center;
}

.productCart__loginPriceWrapper:after {
    content: '';
    background-image: url("../img/oils/icons/arrow-right.svg");
    width: 12px;
    height: 12px;
    margin-left: 0;
    transition: .3s;
}

.productCart__loginPriceWrapper:hover:after {
    content: '';
    background-image: url("../img/oils/icons/arrow-right.svg");
    width: 12px;
    height: 12px;
    margin-left: 5px;
}

.productCart__loginPrice {
    color: #444;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
}

.productCart__loginBtn {
    color: #444;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    line-height: 16px;
}

.big__btn .cube {
    width: 100%;
    height: 40px;
}

.big__btn .front {
    padding: 5px 14px !important;
    width: 100%;
    height: 40px;
}

.big__btn .bottom {
    padding: 5px 14px !important;
    width: 100%;
    transform: rotateX(-90deg) translateZ(-26px);
}

/* TAB */

.tab__content {
    display: none;
}

.tab__content.active {
    display: block;
}

.tab__contentWrapper {
    display: flex;
    gap: 20px;
}

.tab__contentGeneral {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tab__characteristicList {
    width: 100%;
}

.tab__characteristicList-title {
    color: #444;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 20px;
}

.tab__characteristicList .product__characteristicItem {
    font-size: 14px;
}

.tab__contentSidebar {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.brandWrapper {
    border: 1px solid #F2F2F2;
    padding: 16px 20px;
    flex-direction: column;
    gap: 10px;
    display: flex;
}

.brandWrapper__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brandWrapper__name {
    color: #444;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.brandWrapper__logo {
    width: 150px;
    height: 56px;
}

.brandWrapper__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brandWrapper__list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.brandWrapper__listItem {
    color: #444;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    list-style: none;
}

.brandWrapper__btn {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    align-self: flex-start;
    display: flex;
    gap: 8px;
    align-items: center;
}

.brandWrapper__btn:after {
    content: '';
    background-image: url("../img/oils/icons/slider-arrow.svg");
    width: 12px;
    height: 12px;
    background-size: contain;
    background-position: center;
    transform: rotate(90deg);
    transition: .3s;
}

.brandWrapper__btn:hover:after {
    margin-left: 6px;
}

.aboutProduct {
    padding: 0 20px;
}

.aboutProduct__title {
    font-size: 16px;
    margin-bottom: 4px;
}

.aboutProduct .product__characteristicItem {
    font-size: 14px;
}

.productDoc {
    padding: 0 20px;
}

.productDoc__title {
    font-size: 16px;
    margin-bottom: 12px;
}

.productDoc__list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.productDoc__listItem {
    list-style: none;
    display: flex;
    gap: 8px;
}

.productDoc__listItem:before {
    content: '';
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-size: contain;
}

.productDoc__listItem-doc:before {
    background-image: url("../img/oils/icons/doc.svg");
}

.productDoc__listItem-standard:before {
    background-image: url("../img/oils/icons/standard.svg");
}

.productDoc__listItem-archive:before {
    background-image: url("../img/oils/icons/archive.svg");
}

.productDoc__listItem a {
    color: #30C4F3;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
    transition: .3s;
}

.productDoc__listItem a:hover {
    color: #0dafe3;
}

.product__tabs {
    display: flex;
    cursor: pointer;
    font-weight: bold;
    border-bottom: 1px solid rgba(160, 180, 206, 0.40);
    margin-bottom: 32px;
    gap: 20px;
}

.product__tab {
    border: none;
    outline: none;
    transition: 0.3s;
    color: #444;
    font-family: "Intro", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 27px;
    padding-bottom: 8px;
}

.product__tab:hover, .product__tab.active {
    color: #30C4F3;
    box-shadow: 0 1px 0 0 #30C4F3, inset 0 -1px 0 0 #30C4F3;
}

.tab__content-desc {
    color: #444;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 24px;
}

.tab__content-desc *:last-child {
    margin-bottom: 0;
}

/* Related */

.productCart__related {
    margin: 40px 0 10px 0;
    overflow: hidden;
}

.productCart__relatedTitleWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.productCart__relatedTitle {
    color: #444;
    font-size: 18px;
    line-height: 28px;
    margin: 0;
}

.productSlider__nav {
    position: relative;
    display: flex;
    gap: 4px;
}

.productSlider__nav-btn {
    background-image: url('../img/oils/icons/slider-arrow.svg');
    width: 22px;
    height: 22px;
    transform: rotate(-90deg);
    background-position: center;
}

.productSlider__nav-next {
    transform: rotate(90deg);
}

.productCart__related .swiper-slide {
    height: initial;
}

@media (min-width: 1280px) {
    .productCart__related .swiper-slide {
        max-width: 25%;
    }
}

.productCart__related .product:hover .product__wrapper {
    position: relative;
}

.productCart__related .product {
    width: 100%;
    height: 100%;
    display: flex;
}

.filter__close {
    display: none;
}

.mobileBtns {
    display: none;
}

/* Popup */

.popup-gallery__overlay {
    background: #ffffff5c;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
}

.popup-gallery {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    height: 100vh;
    width: 100vw;
    justify-content: center;
    align-items: center;
}

.popup-gallery__content {
    display: flex;
    background-color: #FFFFFF;
    max-width: 900px;
    width: 95%;
    height: 780px;
    padding: 30px;
    position: relative;
}

.popup-gallery__thumbs {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
}

.popup-gallery__thumbs .swiper-slide {
    width: 68px;
    height: 60px !important;
    cursor: pointer;
}

.popup-gallery__thumbs .swiper-slide img {
    height: 100%;
    object-fit: contain;
}

.popup-prev.swiper-button-prev:after {
    transform: rotate(0deg);
}

.popup-next.swiper-button-next:after {
    transform: rotate(180deg);
}

.popup__galleryGeneralWrapper {
    overflow: hidden;
    margin: 0 120px 0 60px;
    padding: 20px 0;
    align-self: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.popup-gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    z-index: 20;
    cursor: pointer;
}

.popup-gallery-btn svg {
    width: 40px;
    height: 40px;
}

.popup-gallery-next {
    left: auto;
    right: 20px;
}

.popup-gallery__close {
    background: transparent;
    border: 0;
    position: absolute;
    top: 12px;
    right: 12px;
}

@media (max-width: 768px) {
    .order__form {
        display: none;
    }
}

@media (max-width: 1200px) {
    .order__form__btn .order__form__btn--left .btn--blue {
        width: 100% !important;
        max-width: unset;
    }

    .order__form__btn .order__form__btn--left .row > div:first-child {
        margin-bottom: 5px;
    }

    .order__form__btn .order__form__btn--right .btn--blue {
        width: 140px !important;
    }

    .product {
        width: calc(33.33% - 14px);
    }

    .sidebar {
        width: 250px;
    }

    .gallery__product {
        width: 350px;
    }

    .productCart__characteristicsWrapper {
        width: 40%;
    }
}

@media (max-width: 991px) {
    .order__form__btn .order__form__btn--right .btn {
        width: 100% !important;
        max-width: unset;
    }

    .order__form__btn .order__form__btn--right .row > div:first-child {
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        background: rgba(51, 51, 51, 0.9);
        padding: 0;
        gap: 0;
        height: 100vh;
        width: 0;
        overflow: hidden;
        transition: .3s;
        z-index: 1000;
    }

    .sidebar.active {
        width: 100%;
    }

    .sidebarMenu {
        max-width: 280px;
        background: #FFFFFF;
        display: none;
    }

    .filterWrapper {
        width: 280px;
        background-color: #ffffff;
        overflow-x: auto;
        max-height: 100vh;
    }

    .filter__showWrapper {
        left: 200px;
    }

    .filter__close {
        position: absolute;
        top: 0;
        left: 280px;
        z-index: 10;
        background-color: #FFFFFF;
        display: flex;
        height: 85px;
        width: 35px;
        align-items: center;
        justify-content: center;
        transform: rotate(180deg);
        cursor: pointer;
    }

    .filter__close-text {
        color: rgba(68, 68, 68, 0.5);
        font-family: 'Roboto', sans-serif;
        font-size: 12px;
        writing-mode: vertical-lr;
    }

    .filter__close {
        display: flex;
    }

    .mobileBtns {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .mobileBtns__menu {
        height: 40px;
        line-height: 40px;
        width: 100%;
        text-align: center;
    }

    .mobileBtns__filters {
        background-color: #30C4F3;
        width: 100%;
        text-align: center;
        color: #ffffff;
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
        font-weight: 700;
        line-height: 32px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .mobileBtns__filters-icon {
        background-image: url("../img/oils/icons/filtersIcon.svg");
        width: 20px;
        height: 20px;
        background-position: center;
    }

    .user__search {
        margin-bottom: 0;
    }

    .breadcrumbs {
        display: none;
    }

    .productCart__characteristicsWrapper {
        display: none;
    }

    .productCart__header {
        gap: 20px;
    }

    .tab__contentSidebar {
        width: 280px;
        flex-shrink: 0;
    }

    /* Popup */
    .popup-gallery__content {
        height: 530px;
    }

}

@media (max-width: 768px) {

    .gallery__product {
        width: 325px;
        margin: 0 auto;
        height: 300px;
    }

    .productCart__header {
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }

    .productCart__images {
        display: flex;
        flex-direction: column-reverse;
    }

    .gallery__thumbs {
        width: 100%;
        height: 70px;
        overflow: hidden;
        margin: 4px 0 0 0;
    }

    .productCart__thumbsWrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 350px;
        gap: 10px;
    }

    .thumbs-btn {
        top: 50%;
        margin-bottom: 0;
        margin-top: 0;
    }

    .popup-next.swiper-button-next:after,
    .thumbs-btn:after {
        transform: rotate(90deg);
    }

    .thumbs-btn.swiper-button-prev:after {
        transform: rotate(-90deg);
    }

    .tab__contentWrapper {
        flex-direction: column;
    }

    .tab__contentGeneral {
        width: 100%;
    }

    .tab__contentSidebar {
        width: 100%;
    }

    .productCart__meta {
        width: 100%;
        max-width: 350px;
    }

    .product__tabs {
        overflow-y: auto;
    }

    .btn-back {
        flex-shrink: 0;
    }

    /* Popup */
    .popup-gallery__thumbs {
        max-height: 308px;
    }

    .popup-gallery__content {
        flex-direction: column-reverse;
        height: 435px;
        align-items: center;
        padding: 20px;
    }

    .gallery__product-popup .swiper-slide img {
        height: 100%;
        object-fit: contain;
    }

    .popup-gallery__content .thumbs-btn {
        top: 0;
    }

    .popup-gallery__thumbs .swiper-slide img {
        height: 100%;
        object-fit: contain;
    }

    .popup__galleryGeneralWrapper,
    .gallery__product-popup {
        margin: 0;
    }

}

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

    .filter__btn{
        display: block;
    }

    .product__title{
        line-height: normal;
    }

    .pagination {
        width: auto;
        overflow-x: unset;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .pagination::-webkit-scrollbar {
        display: none;
    }

    .product {
        width: calc(50% - 10px);
    }

    .sort__title,
    .pageTitle__subtitle {
        display: none;
    }

    .sort__list {
        gap: 30px;
    }

}

@media (max-width: 375px) {

    .productCart__thumbsWrapper {
        max-width: 290px;
        width: 100%;
    }

    .gallery__product {
        max-width: 290px;
        width: 100%;
    }

}

.catalog__wrapper a:hover{
    text-decoration: none;
}


.loader_piston{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    position: relative;
    min-height:408px;
}

.bg_blur{
    position: absolute;
    left: 0;
    top: 0;
    right:0;
    bottom:0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    z-index:10;
}
.catalog__list .top_line{
    content: "";
    height: 2px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    background: #30C4F3;
    transition: all;
    z-index:11;
}

.catalog__list .right_line{
    content: "";
    width: 2px;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    background: #30C4F3;
    transition: all;
    z-index:11;
}

.catalog__list .left_line{
    content: "";
    width: 2px;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #30C4F3;
    transition: all;
    z-index:11;
}

.catalog__list .bottom_line{
    content: "";
    height: 2px;
    display: inline-block;
    position: absolute;
    right: 0;
    bottom:0;
    background: #30C4F3;
    transition: all;
    z-index:11;
}

.top-underline-animated {
    animation: top-underline-animated 3s 0s infinite forwards;
}

.right-underline-animated {
    animation: right-underline-animated 3s 1.5s infinite forwards;
}

.bottom-underline-animated {
    animation: bottom-underline-animated 3s 3s infinite forwards;
}

.left-underline-animated {
    animation: left-underline-animated 3s 4.5s infinite forwards;
}

.catalog__list .piston{
    position:absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    z-index:11;
}

.catalog__list .piston img{
    width: 100px;
    height: auto;
    opacity: 0.8;
    max-width: unset;
}

@keyframes right-underline-animated {
    0% {
        bottom: 100%;
        top: 0;
    }
    50% {
        bottom: 0;
        top: 0;
    }
    100% {
        bottom: 0;
        top: 100%;
    }
}

@keyframes left-underline-animated {
    0% {
        top: 100%;
        bottom: 0;
    }
    50% {
        bottom: 0;
        top: 0;
    }
    100% {
        top: 0;
        bottom: 100%;
    }
}

@keyframes top-underline-animated {
    0% {
        right: 100%;
    }
    50% {
        right: 0;
        left: 0;
    }
    100% {
        right: 0;
        left: 100%;
    }
}

@keyframes bottom-underline-animated {
    0% {
        left: 100%;
    }
    50% {
        right: 0;
        left: 0;
    }
    100% {
        left: 0;
        right: 100%;
    }
}

.tooltip{
    margin-left: 15px;
}

.tooltip > .tooltip-inner{
     padding: 18px 16px;
     background: #232323;
     display: block;
     z-index: 20;
     max-width: 240px;
     min-width: 135px;
     width:100%;
     bottom: calc(100% + 15px);
     color: #FFF;
     font-family: Roboto, sans-serif;
     font-size: 12px;
     font-weight: 400;
     line-height: normal;
}

.tooltip.right > .tooltip-arrow{
     content: '';
     background-image: url('../img/oils/product/rating/carret.svg');
     width: 48px;
     height: 24px;
     display: block;
     position: absolute;
     bottom: 0;
     transform: rotate(-90deg);
     left: -23px;
     margin-top: -11px;
}

.product__priceWrapper .tooltip.right > .tooltip-arrow{
    content: '';
    background-image: url('../img/oils/product/rating/carret.svg');
    width: 48px;
    height: 24px;
    display: block;
    position: absolute;
    bottom: 0;
    transform: rotate(-90deg);
    left: -23px;
    margin-top: -11px;
}

.product__priceWrapper .cart-tooltips{
    white-space: nowrap;
}

.cart_loader{
    max-width: 22px;
}

.popup-gallery .swiper-slide img{
    margin:0 auto;
}