/* BASE
================================================== */

body {
    color: #000;
    background: #f4f5fb;
}

body,
input,
button,
textarea {
    font-family: 'Inter', Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

p,
ul,
ol,
table,
figure {
    margin-bottom: 1.5rem;
}

a,
input,
textarea,
button {
    transition: color 0.3s, background-color 0.3s, border-color 0.3s, opacity 0.3s;
}

a {
    text-decoration: none;
    color: #E62E2D;
}

a:hover {
    color: #961B1A;
}

.a-inverse {
    color: #000;
}
.a-inverse:hover {
    color: #E62E2D;
}

.hover-red:hover, .hover-red:hover svg {
    color: #E62E2D !important;
    fill: #E62E2D !important;
}

*,
*:focus {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

figure img {
    width: 100%;
}

strong {
    font-weight: 700;
}

svg {
    width: 1rem;
    height: 1rem;
    transition: all 0.3s;
}

hr {
    border-top-color: #e6e6e6;
    opacity: 1;
}

hr.dark {
    border-color: #aaa;
}

hr.darker {
    border-color: #333;
}

.hide {
    display: none !important;
}

.flip {
    transform: rotateX(180deg);
}

.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.blue {
    color: #227aff;
}

.border-rounded {
    border-radius: .75rem;
}

.invalid {
    color: #081e406b;
}

/* LAYOUT
================================================== */

/*
	Header
*/

.header {
    position: sticky;
    display: flex;
    align-items: center;
    z-index: 1010;
    top: 0;
    right: 0;
    left: 0;
    height: 4rem;
    background: #fff;
    transition: all 0.3s;
}

.header--sticky {
    box-shadow: 0 2px 5px #ababab;
}

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

.header__logo,
.header__logo:hover {
    color: #961B1A;
}

.header__logo {
    display: flex;
    flex-direction: column;
    font-size: 0.625rem;
}

.header__logo img,
.header__logo svg {
    display: block;
    width: auto;
    height: 2rem;
}

.header__phone {
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    color: #000;
}

.header a {
    font-size: .85rem;
    color: #000;
}
.header a:not(.header__logo a):hover {
    transform: scale(1.05);
}

.header a + span {
    font-size: 1.25rem;
    transform: translateY(-2px);
    color: #000;
}

.header .input-with-icon {
    width: 16rem;
    margin: 0;
    border-radius: 5px;
}

.header input {
    font-size: .85rem;
}

#search-form .btn:disabled, #search-form-mobile .btn:disabled {
    opacity: 1;
}

#search-form .spinner, #search-form-mobile .spinner {
    color: #E62E2D;
}

.icon-red-bg {
    background-color: #E62E2D;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-red-bg svg {
    fill: white;
}

.header .btn .icon-search {
    fill: #E62E2D;
}

.header .btn:hover .icon-search {
    fill: #000;
}

/*
    Navigation
*/

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 1.25rem;
    height: 1rem;
    margin-left: auto;
    transition: all 0.3s;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #081e40;
}

/*
	Footer
*/

.footer {
    padding-top: 3rem;
    font-size: 0.875rem;
    color: #fff;
    background-color: #961B1A;
}

.footer a {
    color: #fff;
}
.footer a:hover {
    color: #F4A6A6;
}
.footer a:hover svg {
    fill: #F4A6A6;
}

.footer__logo {
    font-size: 0.75rem;
}

.footer__logo img {
    display: flex;
    flex-direction: column;
    height: 2rem;
}

.footer .btn-outline-primary {
    color: #E62E2D;
}

.footer .list-with-icon svg {
    fill: #fff;
}

.footer .author {
    display: flex;
    flex-wrap: wrap;
}

.footer .author img {
    display: block;
    height: 1rem;
    margin-left: 0.375rem;
}

.footer .tecdoc {
    padding: 1rem 0;
}

.footer .tecdoc p {
    color: #000;
    font-size: 80%;
    margin-bottom: 0;
}

.footer .tecdoc .logo-column {
    text-align: right;
}

.footer .tecdoc img {
    max-width: 100px;
}

/* 
    Spinner / dots 
*/

#loading-indicator {
    text-align: center;
    font-size: 64px;
    color: #E62E2D;
}

.dots span {
    animation: blink 1.4s infinite;
    font-weight: bold;
    display: inline-block;
    margin-left: 2px;
    margin-right: 2px;
    transform: translateY(-25px);
}

.dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {
    0% { opacity: 0.2; }
    20% { opacity: 1; }
    100% { opacity: 0.2; }
}

/*
    Offcanvas
*/

.offcanvas {
    max-width: 80%;
    font-size: 1rem;
    background: #fff;
}

/*
    POPUP
*/

.popup .exclamation-bg {
    background: linear-gradient(90deg, #F2A91D 0%, #F68E15 100%);
    border-radius: 1rem;
    max-height: 128px;
    aspect-ratio: 1/1;
}

.popup svg {
    width: 3.5rem;
    height: 3.5rem;
    border: 3px solid white;
    border-radius: 50%;
    fill: white;
}

.popup figure {
    border-radius: 1rem;
    overflow: hidden;
    max-height: 200px;
    aspect-ratio: 1/1;
}

.popup figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: auto;
}

.modal-content .img-wrapper {
    width: 150px;
    height: 150px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
}

.modal-alt .modal-content img.img-rounded {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-no-bg {
    background-color: transparent;
}

.modal-no-bg .modal-content {
    background-color: transparent;
    border: none;
}

#popup .modal-dialog {
    max-width: 700px;
}

#popup .btn-close {
    transform: scale(1.5);
}

#popup .btn-close-white {
    filter: invert(1);
}

img.img-shadow {
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.75));
}

.popup2-img {
    max-height: 300px;
    width: auto;
}

/* SECTIONS
================================================== */

.section {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
}

.section-bg-image {
    background-size: cover;
    background-position: right center;
}

/*
    Intro
*/

.intro {
    background: linear-gradient(to bottom, #f4f5fb 0%, #fff 100%);
}

/* 
    Article filters 
*/

#category-list, .dropdown-list {
    position: absolute;
    top: 3rem;
    left: 0;
    z-index: 10;
    width: 100%;
    background-color: white;
    border-radius: 0 0 .75rem .75rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 5px #c5c5c5;
}

.list, #category-list {
    max-height: 20rem;
    overflow-y: scroll;
    border-radius: 0 0 .75rem .75rem;
}

.list-filter {
    margin: .5rem 1rem;
    padding: .25rem .75rem;
    border-radius: .5rem;
    border-width: 1px;
    font-size: 80%;
    color: #575757;
}

.list-filter:focus {
    border: none;
    box-shadow: 0 0 3px #E62E2D;
}

#category-input {
    border: none;
}

.filter-dropdown {
    margin: .5rem;
    border-radius: .75rem;
}

.filter-dropdown .btn {
    justify-content: space-between;
    text-align: left;
    width: 100%;
    background: white;
    border-radius: 0;
    transition: border-radius 0s;
    border: none;
}

.filter-dropdown .btn.button-selected {
    border-radius: .75rem;
}

.filter-dropdown .btn:not(.button-selected):hover {
    background: #E62E2D6c;
}

.filter-dropdown svg {
    fill: #000;
    width: .75rem;
    height: .75rem;
}

.filter-dropdown .btn.button-selected.flat-bottom,
#category-input.flat-bottom {
    border-radius: .75rem .75rem 0 0;
}

.sidebar-filters label {
    margin-left: 1rem;
    transform: translateY(4px);
    font-weight: 600;
    font-size: 12px;
}

.sidebar-filters .filter-dropdown {
    box-shadow: 0 0 5px #c5c5c5;
}

.sidebar-filters .row, .sidebar-filters .filter-dropdown {
    margin-left: 0;
    margin-right: 0;
}

.toggle-filters {
    border-top: 1px solid #961B1A;
    border-bottom: 1px solid #961B1A;
    margin-bottom: .5rem;
    border-color: #961B1A;
}

.toggle-filters button {
    color: #000;
}

.toggle-filters button svg {
    fill: #000;
}

/* .sidebar-filters form {
    position: sticky;
    top: 100px;
} */

.article-filter label {
    display: none;
}

/* 
    Hero
*/

.section-hero {
    color: #fff;
}

.section-hero h1 {
    font-weight: 700;
    font-size: 3rem;
}

.hero-redcar {
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    display: none;
}

.brands-wrapper {
    height: fit-content;
}

.brandlist-container {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, height 0.5s ease;
}

.brandlist-container.show {
    height: 700px;
    opacity: 1;
    transform: translateY(0);
}

#brand-list-banner {
    height: 670px;
}
#brand-list-banner li {
    width: 144px;
}
#brand-list-banner li a {
    font-size: 90%;
    color: #000;
    display: inline-block;
    transition: all 0.3s;
    transform-origin: left center;
}
#brand-list-banner li:hover a {
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    transform: scale(1.2);
}

.banner-carimage img {
    max-width: initial;
    width: 36vw;
}

/* MODULES
================================================== */

/*
    Banners
*/

.banner-box {
    width: 350px;
    height: 126px;
    padding: 20px;
}

.banner-box h3 {
    color: #c9c9c9;
    font-size: 1rem;
}

.banner-box a {
    color: #fff;
}

.banner-box p {
    color: #fff;
    font-size: .6rem;
}

.banner-box ul li, .banner-box ul li a {
    color: #fff;
    font-size: .6rem;
}

.banner-box ul li p {
    margin-left: .5rem;
}

.banner-box ul li svg {
    fill: #fff;
    width: 12px;
    height: 12px;
}


/*
    Carousels
*/

.swiper-slide {
    height: auto;
}

.swiper-pagination {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.swiper-pagination-bullet {
    transition: all 0.3s;
}

.swiper-button-prev,
.swiper-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    margin: 0;
    background-color: #E62E2D;
    border-radius: 100%;
    transform: translate(0, -50%);
    transition: all 0.3s;
}

.swiper-button-prev {
    left: -0.5rem;
}

.swiper-button-next {
    right: -0.5rem;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #961B1A;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    width: 1rem;
    height: 1rem;
    fill: #fff;
}

.swiper-outer {
    position: relative;
}

.swiper-outer .swiper {
    position: static;
}

/*
    Product Box
*/

.product-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #fff;
    font-size: 0.8125rem;
    background: #fff;
    border-radius: 0.125rem;
    transition: all 0.3s;
}

.product-box figure {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 0;
}

.product-box figure:after {
    display: block;
    content: '';
    padding-bottom: 60%;
}

.product-box figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s;
}

.product-box__content {
    display: flex;
    flex-direction: column;
    flex: 1 0 0;
    padding: 1rem;
}

.product-box__title {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.product-box__title a {
    color: #961B1A;
}

.product-box__title a:hover {
    color: #E62E2D;
}

.product-box:hover {
    border-color: #E62E2D;
    color: #961B1A;
}

.product-box figure a:hover img {
    transform: scale(1.05);
}

.cart__item_article {
    margin: 12px 0;
}

.cart__item_article .price {
    font-size: 1.25rem;
}

.cart__item_stock .cart__remove {
    left: 0;
}

/*
    Horizontal Product (Search result product card)
*/

.horizontal-product {
    padding: 1.25rem;
    border: 1px solid #e6e6e6;
    font-size: 1rem;
    background: #fff;
    border-radius: 0.75rem;
    color: #000;
}

.horizontal-product__figure {
    position: relative;
    overflow: hidden;
    max-height: 200px;
    margin: 0 auto;
    width: 100%;
}

.horizontal-product__figure:after {
    display: block;
    content: '';
    padding-bottom: 65%;
}

.horizontal-product__figure img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

/* .horizontal-product__figure:hover img {
    transform: scale(1.05);
} */

.horizontal-product__logo {
    display: flex;
    width: 3rem;
    height: 3rem;
    margin-left: 1.5rem;
    object-fit: contain;
}

.horizontal-product__title {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.5;
}

.horizontal-product__title a {
    color: inherit;
}

.horizontal-product__title a:hover {
    color: #E62E2D;
}

.accordion .horizontal-product__title {
    font-size: 1rem;
}

.horizontal-product--simple {
    border: 0;
    background: transparent;
}

.horizontal-product--simple .horizontal-product__title,
.horizontal-product--simple .price {
    font-size: 1.25rem;
    line-height: 1.5;
}

/*
    Product cards
*/

#results-list {
    row-gap: 40px;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    background-color: #E62E2D;
    display: flex;
    justify-content: center;
    transition: all 0.3s;
}

.back-to-top .btn {
    padding: .5rem .8rem;
}

.back-to-top svg {
    fill: white;
    stroke: white;
    stroke-width: 3px;
    transform: rotate(-90deg);
}

.back-to-top:hover {
    background-color: #961B1A;
    transform: scale(1.1);
}

#results-list .product-card, #articles-results .product-card {
    width: 100%;
    max-width: 380px;
    padding: 20px;
    padding-top: 28px;
    background-color: white;
    border-radius: .75rem;
    border: 2px solid #ebebeb;
    transition: all 0.3s;
    position: relative;
}

.sale {
    background-color: #dc3545;
    color: white;
    padding: 1.6px 8px;
    position: absolute;
    top: -1px;
    border-radius: 0 0 .5rem .5rem;
}

.product-card:hover {
    box-shadow: 0 0 15px #888888;
    border-color: white;
}

.product-card-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-card-bottom {
    height: auto;
}

.product-card hr {
    margin-top: .5rem;
    margin-bottom: .5rem;
}

#results-list .product-card-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.product-card .price {
    font-size: 22px;
}

.cart__add svg {
    width: 25px;
    height: 25px;
    fill: white;
    stroke: white;
    stroke-width: 3px;
}

#results-list .product-card .btn,
#results-list .product-card .cart__input {
    padding: 8px 16px;
}

#results-list .product-card .cart__input {
    height: 48px;
}

.btn-details {
    border-radius: 3px;
    background-color: #f5f5f5;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    box-shadow: 0 0 2px #ababab;
}

.product-card .btn-details, .cart__add {
    background-color: #E62E2D;
    color: white;
}

.btn-details:hover {
    color: #E62E2D;
    background-color: #fff;
    border: 1px solid #E62E2D
}

.product-card .icon-heart, .product-panel .icon-heart {
    width: 25px;
    height: 24px;
    fill: none;
    stroke: #E62E2D;
    stroke-width: 5px;
    transition: all 0.3s;
}

.icon-heart.full {
    fill: #E62E2D;
}

header .icon-heart {
    stroke: #E62E2D;
    stroke-width: 5px;
    fill: none;
}

header .icon-heart.full {
    fill: #E62E2D;
}

.product-card .icon-heart:hover, .product-panel .icon-heart:hover {
    transform: scale(1.2);
    cursor: pointer;
}

.product-card h4, .product-card li, .product-card input {
    color: #000;
}

/*
    Product (Article)
*/
.product-hero {
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: 40%;
    background-color: #E62E2D;
}

.product-hero h2 {
    font-weight: 600;
}

.product-hero, .product-hero .breadcrumb-item {
    color: white;
}

.product-hero a:hover {
    color: #F4A6A6 !important;
}

.product-panel {
    font-size: 1rem;
}

.product-panel .section-title {
    font-weight: 600;
}

.icon-check {
    width: 24px;
    height: 24px;
    fill: #fff;
    background-color: #6CCF67;
    border-radius: 50%;
    padding: 4px;
    margin-right: 10px;
}

.product-panel__form {
    font-size: 1rem;
}

.product-panel .cart__input {
    max-width: 85px;
}

.properties-list p {
    margin-bottom: 0;
}

.properties-list:nth-child(odd) {
    background-color: #EDF0F8;
}

/* 
    Favorite 
*/


.favorite-row {
    border-radius: .75rem;
    border: 2px solid #ebebeb;
}

.favorite-row h5, #favorites_list_header div {
    font-weight: 600;
    color: #000;
}

.favorite-row figure {
    border: 1px solid #c5c5c5;
    height: 150px;
}

.favorite-row .fav-price {
    padding: 0;
    font-weight: 600;
}

.favorite-row .btn.details {
    border: 1.5px solid #E62E2D;
    color: #E62E2D;
}

.favorite-row .btn.details:hover {
    background-color: #E62E2D;
    color: white;
}

.favorite-row svg {
    fill: #E62E2D;
    width: 1.5rem !important;
    height: 1.5rem !important;
    transition: all 0.3s;
}

.favorite-row svg:hover {
    transform: scale(1.1);
}

/*
    Gallery
*/

.gallery > figure {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px #dfdfdf;
}

.gallery > figure:after {
    display: block;
    content: '';
    padding-bottom: 100%;
}

.gallery > figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery__thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 0.75rem;
    border: 1px solid #dfdfdf;
    padding: 1rem;
}

.gallery__thumbs a {
    position: relative;
    display: block;
    border: 2px solid transparent;
}

.gallery__thumbs a:after {
    display: block;
    content: '';
    padding-bottom: 90%;
}

.gallery__thumbs a.active {
    border-color: #E62E2D6e;
}

.gallery__thumbs a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*
    Tabs Icon
*/

.tabs-icon {
    display: flex;
    border: 1px solid #e6e6e6;
}

.tabs-icon__btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    height: 6.25rem;
    font-size: 0.75rem;
    border: 0;
    background: #fff;
}

.tabs-icon__btn:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 50%;
    border-top: 1rem solid #E62E2D;
    border-left: 0.75rem solid transparent;
    border-right: 0.75rem solid transparent;
    transform: translate(-50%, 0);
    opacity: 0;
    transition: opacity 0.3s;
}

.tabs-icon__btn:not(:last-child) {
    border-right: 1px solid #e6e6e6;
}

.tabs-icon__btn svg {
    display: block;
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.5rem;
    fill: #393939;
    transition: fill 0.3s;
}

.tabs-icon__btn:hover,
.tabs-icon__btn--active {
    color: #fff;
    background-color: #E62E2D;
}

.tabs-icon__btn--active:after {
    opacity: 1;
}

.tabs-icon__btn:hover svg,
.tabs-icon__btn--active svg {
    fill: #fff;
}

/*
    Filter Box
*/

.filter-box {
    display: flex;
    flex-direction: column;
    background: #fff;
}

.filter-box:has(*:focus) {
    border: 1px solid #E62E2D
}

.filter-box__title {
    margin-bottom: 1rem;
}

.filter-box__title .accordion-button {
    padding: 1rem 1.5rem 0;
    font-size: 1.125rem;
}

.filter-box__title .accordion-button img {
    width: 3.5rem;
    height: auto;
}

.filter-box__title .accordion-button:focus,
.filter-box__title .accordion-button:not(.collapsed) {
    color: inherit;
    box-shadow: none;
    background-color: transparent;
}

.filter-box__title .accordion-button:after {
    margin-left: auto;
}

.filter-box__info {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 20rem;
    font-size: 1.125rem;
    opacity: 0.4;
}

.filter-box__info svg {
    display: block;
    width: 1rem;
    height: 1rem;
    margin-right: 0.25rem;
}

.filter-box .accordion-collapse {
    padding: 0 1.5rem;
}

.filter-box .list-select {
    max-height: 20rem;
    margin: 0 -1.5rem;
}

.filter-box--disabled .filter-box__title {
    opacity: 0.4;
}


.filter-box--disabled input::placeholder {
    color: #999;
}

/*
    Custom Scrollbar
*/

.custom-scrollbar::-webkit-scrollbar {
    width: 1.5rem;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #fff;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    border-width: 0.4375rem;
    border-style: solid;
    border-color: #fff;
    background-color: #cbcbcb;
    border-radius: 1rem;
}

/*
    Navigation
*/

.nav {
    background: #fff;
    border-radius: 0.125rem;
}

.nav-link {
    position: relative;
    margin: 0.5rem 0;
    padding: 0.5rem 1.5rem;
    color: #393939;
}

.nav-link svg {
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 0.625rem;
    height: 0.625rem;
    fill: #fff;
    transform: translate(0, -50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-link:hover {
    color: #E62E2D;
}

.nav-link.active {
    color: #fff;
    background: #E62E2D;
}

.nav-link.active svg {
    opacity: 1;
}

/*
    Accordion
*/

.accordion-item {
    border-color: #888;
}

.accordion-button,
.accordion-body {
    padding-right: 0;
    padding-left: 0;
}

.accordion-button,
.accordion-button:focus,
.accordion-button:not(.collapsed) {
    color: #393939;
    box-shadow: none;
}

.accordion-button:after {
    margin-left: 1rem;
}

.accordion-item:has(.accordion-button:not(.collapsed)) {
    background: #cfe2ff;
}

.accordion-button::after,
.accordion-button:not(.collapsed)::after {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E62E2D'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
        center center no-repeat;
    background-size: 90% 90%;
}

.accordion-button:not(.collapsed):after {
    transform: rotate(180deg);
}

.accordion-body {
    padding-top: 0;
}

/* COMPONENTS
================================================== */

/*
	Buttons
*/

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 3rem;
    padding: 0.5rem 1rem;
    border-width: 1px;
    /* font-size: 0.875rem; */
    font-weight: 400;
    box-shadow: none;
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.btn-sm {
    min-height: 2rem;
    padding: 0.25rem 0.75rem;
}

.btn-lg {
    min-height: 4.375rem;
    padding: 1rem 1.25rem;
    font-size: 1rem;
}
.product-panel a:hover {
    transform: scale(1.1);
}

.btn-whitefill,
.btn-redfill:hover, .btn-redfill:active {
    background-color: #fff !important;
    color: #E62E2D !important;
    border-color: #E62E2D !important;
}
.btn-redfill,
.btn-whitefill:hover, .btn-whitefill:active {
    background-color: #E62E2D !important;
    color: #fff !important;
    border-color: #E62E2D !important;
}
.btn-whitefill svg,
.btn-redfill:hover svg, .btn-redfill:active svg {
    fill: #E62E2D !important;
}
.btn-redfill svg,
.btn-whitefill:hover svg, .btn-whitefill:active svg {
    fill: #fff !important;
}

.btn-nofill {
    background-color: transparent !important;
}
.btn-whiteoutline, .btn-whiteoutline:active {
    border-color: #fff !important;
}

/* .btn--cart-back:hover {
    border-color: #ff4c14;
    color: #ff4c14;
    background-color: #fff;
} */

.btn--text {
    font-size: inherit;
    justify-content: flex-start;
    text-align: left;
}

.btn svg:not(.filter-dropdown svg) {
    /* width: 1.125rem; */
    height: 1.125rem;
}

.btn-sm svg {
    width: 0.75rem;
    height: 0.75rem;
}

.btn--icon svg {
    width: 1.375rem;
    height: 1.375rem;
    fill: #E62E2D;
}
.btn--icon:hover svg {
    transform: scale(1.1);
}

.btn--cart {
    position: relative;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.btn--cart svg {
    width: 1.25rem;
    height: 1.25rem;
}

.btn--cart span {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: -0.5rem;
    width: 1.75rem;
    height: 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: #E62E2D;
    border-radius: 100%;
}

.btn--figure {
    display: flex;
    align-items: center;
    min-height: 58px;
    width: 100%;
    padding: .5rem 1rem;
    text-align: left;
    border: 1px solid #fff;
    font-weight: 700;
    /* font-size: 1rem; */
    line-height: 1.25;
    color: #393939;
    background: #fff;
    border-radius: 0.125rem;
    cursor: pointer;
    transition: all 0.3s;
}

.main-cat-list .btn--figure:not(.active):hover {
    background-color: rgb(34, 122, 255, 0.15);
}

.btn--figure figure {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 4rem;
    height: 4rem;
    margin: 0 0.5rem 0 0;
}

.btn--figure figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn--figure svg {
    display: block;
    width: 0.625rem;
    height: 0.625rem;
    flex: 0 0 auto;
    margin-left: auto;
    /* margin-right: 0.25rem; */
    fill: #E62E2D;
}

.btn--figure:not(.main-cat) {
    border: 2px solid #d7d7d7;
    border-radius: 5px;
}

.btn--figure:not(.main-cat):hover {
    box-shadow: 0 0 10px #888888;
    border-color: white;
}

.btn.cart__add:hover {
    color: #E62E2D;
    background-color: #fff;
    border: 1px solid #E62E2D;
}

.btn.cart__add:hover svg {
    fill: #E62E2D;
    stroke: #E62E2D;
}

.btn.cart-next:hover {
    border-color: #fff;
    color: #fff;
    background-color: #E62E2D;
}

.btn.cart-next:hover svg {
    fill: #fff;
}

.btn-back svg {
    fill: #E62E2D;
}

.btn-back:hover svg {
    fill: #000;
}

/*
	Form components
*/

fieldset {
    margin-bottom: 1rem;
}

legend {
    float: none;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

legend .form-check {
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
}

.form-label {
    display: block;
    margin-bottom: 0.125rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.form-control,
.form-select {
    min-height: 3rem;
    padding: 0.5rem 1rem;
    border-width: 1px;
    color: #000;
    border-radius: 0.75rem;
}

.form-control,
.form-control:focus,
.form-select,
.form-select:focus {
    border-color: #DEE1E7;
}

.form-control:focus,
.form-select:focus {
    border-color: #961B1A;
    box-shadow: none;
}

.form-control-sm,
.form-select-sm {
    min-height: 2.25rem;
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
}

select.form-select {
    padding-right: 2rem;
}

.input-with-icon .form-control-sm + .btn {
    right: 0.25rem;
}

.form-check {
    margin-bottom: 0;
    padding-left: 2rem;
}

.form-check a {
    text-decoration: underline;
    color: inherit;
}

.form-check a:hover {
    color: #E62E2D;
}

.form-check .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: -2rem;
    margin-top: calc(1em - 0.875rem);
    border-width: 1px;
    border-color: #888888;
    background-color: #fff;
}

.form-check .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0 0 0 / 10%);
}

.form-check .form-check-input:hover {
    cursor: pointer;
}

.form-check .form-check-input:checked {
    border-color: #888888;
    background-color: #E62E2D;
}

.input-with-icon {
    position: relative;
}

.input-with-icon .form-control {
    padding: 8px 16px;
    border-radius: .75rem;
    background-color: #ECEFF5;
}

.input-with-icon .form-control::placeholder {
    color: #000;
    opacity: 0.75;
}

.input-with-icon .btn,
.input-product ~ .btn,
.input-related ~ .btn,
.input-category ~ .btn {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    min-height: auto;
    padding: .35rem;
    border: 0;
    transform: translate(0, -50%);
    border-radius: 100%;
}

.input-product ~ .btn,
.input-category ~ .btn {
    right: 2rem;
}

.input-related ~ .btn {
    top: 28px;
}

.input-product ~ .btn:disabled,
.input-category ~ .btn:disabled {
    opacity: 1;
}

.input-with-icon .btn svg,
.input-product ~ .btn svg,
.input-category ~ .btn svg {
    fill: #1E3251;
}

.input-product ~ .btn .spinner,
.input-category ~ .btn .spinner {
    color: #E62E2D;
}

/*
    Titles
*/

.page-title {
    font-size: 1.75rem;
}

.page-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #E62E2D;
}

.section-title {
    font-size: 1.5rem;
}

.section-title--sm {
    font-size: 1.25rem;
}

/*
    Price
*/

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E62E2D;
}

.price--sm {
    font-size: 1.25rem;
}

/*
    Quote
*/

blockquote {
    padding: 1.5rem;
    font-size: 1rem;
    font-style: italic;
    background-color: #f4f5fb;
    border-radius: .75rem;
}

blockquote p {
    margin-bottom: 1rem;
}

blockquote cite {
    font-size: 1rem;
    font-style: normal;
    font-weight: bold;
}

blockquote cite span {
    color: #888888;
    font-weight: normal;
    font-size: .75rem;
}

blockquote cite span:before {
    content: '- ';
    padding: 0 0.25rem;
}

blockquote .icon-check {
    margin-right: 20px;
    padding: 10px;
    width: 3rem;
    height: 3rem;
}

blockquote .icon-quote {
    position: absolute;
    bottom: 3rem;
    right: 4rem;
    opacity: 0.05;
    width: 5rem;
    height: 5rem;
}

/*
    Lists
*/

.list-with-icon {
    display: flex;
    flex-direction: column;
    padding: 0;
    list-style-type: none;
}

.list-with-icon li {
    position: relative;
    margin-bottom: .5em;
    padding-left: 2em;
}

.list-with-icon li svg {
    position: absolute;
    top: 0.125em;
    left: 0;
    width: 1.2857143em;
    height: 1.2857143em;
    max-width: 1.25rem;
}

.list-select {
    overflow: auto;
}

.category-filter .list-select {
    border: 1px solid transparent;
}

.list-select.custom-scrollbar {
    overflow: scroll;
}

.list-select ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.list-select li {
    font-size: 0.8125rem;
}

.list-select li:nth-child(even),
#related-vehicles a:nth-child(even),
#article-numbers p:nth-child(even) {
    background-color: #f4f5fb;
}

.list-select li button,
.list-select li a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 3rem;
    padding: 0.25rem 1rem;
    border: 0;
    text-align: left;
    text-transform: uppercase;
    color: #000;
    background: transparent;
}

.list-select li button svg,
.list-select li a svg {
    display: block;
    width: 0.625rem;
    height: 0.625rem;
    margin-left: auto;
    fill: #E62E2D;
    transition: all 0.3s;
}

.list-select li button img,
.list-select li a img {
    display: block;
    width: 3rem;
    height: 1.75rem;
    margin-left: auto;
    object-fit: contain;
}

.list-select li button:hover,
.list-select li a:hover,
#related-vehicles a:hover {
    background-color: rgb(34, 122, 255, 0.15);
}

.list-select li button.active,
.list-select li a.active,
.btn--figure.active {
    color: #fff;
    background-color: #E62E2D;
    border: none;
}

.list-select li button.active svg,
.list-select li a.active svg,
.btn--figure.active svg {
    opacity: 1;
    fill: #fff;
}

.list-select--box {
    max-height: 20rem;
    /* padding: 1rem 0; */
    background: #fff;
    border-radius: 0.125rem;
}

.list-select--box li button,
.list-select--box li a {
    text-transform: none;
}

.list-select--box.main-cat-list li button,
.list-select--box.main-cat-list li a {
    font-weight: 700;
}

.list-striped {
    padding: 0;
    list-style-type: none;
}

.list-striped li {
    padding: 0.125rem;
}

.list-striped li:nth-child(odd) {
    background-color: #f4f5fb;
}

.searchDropdown {
    position: absolute;
    top: 48px;
}

.searchDropdown > div {
    background: white;
    border: 1px solid #E62E2D;
    padding: 0.25rem 1rem;
    max-height: 20rem;
    overflow-y: scroll;
}

.searchDropdown-product {
    width: calc(100% - 24px);
    z-index: 2;
}

.searchDropdown-product button {
    color: #E62E2D;
    border: none;
    background-color: white;
    padding: 0;
}

.togglelist {
    box-shadow: 0 0 4px #ababab;
    padding: 0;
    margin-top: 20px;
}

.togglelist > div {
    padding: 10px;
}

.togglelist button, .further-prices button {
    width: 100%;
    background-color: white;
    padding: 7px;
    border: none;
    font-size: 1rem;
}

.further-prices {
    margin-top: 1.5rem;
}

.further-prices button {
    box-shadow: 0 0 5px #ababab;
}

.further-prices p {
    font-size: 14px;
}

.togglelist button:hover, .further-prices button:hover {
    background-color: #961B1A;
    color: white;
}

.togglelist button svg, .further-prices button svg {
    margin-left: 5px;
    margin-bottom: 2px;
    fill: #E62E2D;
}

.togglelist button:hover svg, .further-prices button:hover svg {
    fill: white;
}

/*
    Breadcrumb
*/

.breadcrumb-item {
    position: relative;
    color: #919191;
}

.breadcrumb-item:before {
    display: none;
}

/* .breadcrumb-item:not(:last-child) {
    padding-right: 2.5em;
} */

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0;
}

.breadcrumb-item a {
    color: inherit;
}

.breadcrumb-item a:hover {
    color: #F4A6A6;
}

.breadcrumb-item svg {
    display: inline-flex;
    width: 0.5555em;
    height: 0.5555em;
    fill: #393939;
    margin: 0 1rem;
}

.breadcrumb-item .active {
    font-weight: 700;
    color: #393939;
}

.filter-breadcrumb {
    font-size: 0.825rem;
    transition: all 0.3s;
}

.filter-breadcrumb svg {
    opacity: 0.5;
    margin: 0 8px;
}

.filter-breadcrumb .btn {
    padding: 0;
}

/* .filter-breadcrumb .btn:hover {
    color: #ff4c14;
} */

.filter-breadcrumb .btn:disabled {
    border: none;
}

/*
    Small Logo
*/

.small-logo {
    display: block;
    width: 1.75rem;
    height: 1.75rem;
}

.small-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*
    Map
*/

.map iframe {
    display: block;
    width: 100%;
    height: 20rem;
    border: 0;
}

/* 
    Checkout progress bar 
*/

.checkout-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    padding-left: 18px;
    margin: auto;
}

.checkout-steps::before {
    content: "";
    position: absolute;
    top: 25%;
    left: 14%;
    width: 75%;
    height: 2px;
    background: #ddd;
    z-index: 0;
}

.step {
    position: relative;
    text-align: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
}

.circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ddd;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.step-label {
    display: block;
    margin-top: 8px;
}

.step-completed a, .step-active {
    color: #E62E2D;
    transition: all 0.3s;
}

.step-completed a:hover {
    text-decoration: underline;
}

.step-completed svg {
    fill: #E62E2D;
}

.step-active .circle, .step-completed .circle {
    border: 2px solid #E62E2D;
    color: #E62E2D;
    background: #f4f5fb;
}

/* Miscellaneous */

.current-cart .row {
    margin-left: 0;
    margin-right: 0;
}

.results-note {
    color: #E62E2D;
    font-size: 1.25rem;
}

/* GLOBALS
================================================== */

.bg--silver {
    /* background: url('../img/bg-silver.jpg') center top;
    background-size: cover; */
    background-color: #ebebeb;
}

.bg--gray {
    /* background-color: #eee; */
    background-color: #c9c9c9;
}

.bg--gray-gradient {
    background: linear-gradient(90deg, #dddddd 0%, #848484 100%);
}

.bg--red {
    background-color: #E62E2D;
}

.bg--blue {
    background-color: #227aff;
}

.bg--blue-gradient {
    background: linear-gradient(90deg, #227aff 0%, #0C2A5D 100%);
}

.bg--darkblue-gradient {
    background: linear-gradient(90deg, #0B1D3F 0%, #0B1D3F 20%, #0b1d3f00 100%);
}

.bg--darkred-gradient {
    background: linear-gradient(90deg, #961B1A 0%, #961B1A 20%, #961B1A00 100%);
}

.bg--orange-gradient {
    background: linear-gradient(90deg, #EFAA1F 0%, #FF4001 100%);
}

.bg--red-gradient{
    background: linear-gradient(90deg, #E62E2D 0%, #961B1A 100%);
}

.bg--white {
    background-color: white;
}

.c--gray {
    color: #888;
}

.c--primary, .red {
    color: #E62E2D;
}

.miw--120 {
    min-width: 7.5rem;
}

.miw--180 {
    min-width: 11.25rem;
}

.maw--180 {
    max-width: 11.25rem;
}

.w--200 {
    width: 12.5rem;
}

.text--sm {
    font-size: 0.875rem;
}

.text--xl {
    font-size: 1.5rem;
}

/* RESPONSIVE
================================================== */

/*
	XS
*/

@media screen and (max-width: 575px) {
    .cart__input {
        min-width: 55px;
    }

    .footer .tecdoc p {
        margin-bottom: .5rem;
    }

    .footer .tecdoc .logo-column {
        text-align: center;
    }

    .checkout-steps {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .checkout-steps::before {
        width: 2px;
        height: 80%;
        left: 33px;
        top: 10%;
    }

    .step {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
    }

    .circle {
        margin-right: 10px;
    }

    .step-label {
        margin-top: 0;
    }
}

/*
	SM and down
*/

@media screen and (max-width: 767px) {
    .header .btn {
        padding: 0.5rem;
    }

    .footer .tecdoc img {
        max-height: 62px;
    }

    .breadcrumb-item:has(svg) {
        height: 12px;
    }
    .breadcrumb-item svg {
        transform: translateY(-5px) rotateZ(90deg);
    }
    .list-select svg {
        transform: rotate(90deg);
    }
}

/*
	MD and down
*/

@media screen and (max-width: 991px) {
}

/*
	LG and down
*/

@media screen and (max-width: 1199px) {
    
}

/*
	XXL and down
*/

@media screen and (max-width: 1400px) {

    /*Article reference search box*/

    #articleSearchBox {
        width: 100%;
    }

    #articleSearchBox button::after {
        display: none;
    }

    #articleSearchBox .list-select {
        height: 3rem;
    }

    .input-product ~ .btn,
    .input-category ~ .btn {
        right: 1.5rem;
    }

    .step-label {
        font-size: .875rem;
    }
}

/*
	SM and up
*/

@media screen and (min-width: 576px) {
    .w-sm-auto {
        width: auto !important;
    }

    .cart__item_article .price {
        font-size: 1.5rem;
    }
    
    .hero-redcar {
        display: block;
    }

    #brand-list-banner {
        height: 460px;
    }
    .brandlist-container.show {
        height: 500px;
    }
}

/*
	MD and up
*/

@media screen and (min-width: 768px) {
    .section-bg-image {
        display: flex;
        align-items: center;
        min-height: 20rem;
    }

    #brand-list-banner {
        height: 365px;
    }

    .brandlist-container.show {
        height: 420px;
    }

    .filter-box {
        height: 100%;
    }

    .filter-box__title .accordion-button:after {
        display: none;
    }

    .filter-box .accordion-collapse,
    .filter-box .accordion-collapse.collapse:not(.show) {
        display: flex;
        flex-direction: column;
        flex: 1 0 0;
    }

    .filter-box__info {
        height: 100%;
    }

    .info-bar {
        flex-direction: row;
        align-items: center;
    }

    .checkout-summary-figure {
        max-width: initial;
        width: 30%;
        margin: 0 1rem 0 0;
    }

    .cart__item_stock .cart__remove {
        position: static !important;
    }

    .sidebar-filters {
        display: block !important;
    }
}

/*
	LG and up
*/

@media screen and (min-width: 992px) {
    .input-product ~ .btn {
        top: 38%;
    }

    .w-lg-auto {
        width: auto !important;
    }

    .cart__item_article .price {
        font-size: 1.25rem;
    }

    .favorite-row figure {
        height: 80px;
    }

    #brand-list-banner {
        height: 250px;
    }
    .brandlist-container.show {
        height: 290px;
    }

    .section-about-us {
        padding-top: 5rem;
        padding-bottom: 3rem;
    }
}

/*
    XL and up
*/

@media screen and (min-width: 1200px) {
    .input-product ~ .btn {
        top: 50%;
    }

    .cart__item_article .price {
        font-size: 1.5rem;
    }

    .btn--cart span {
        top: 0.25rem;
    }

    #brand-list-banner {
        height: 225px;
    }
    .brandlist-container.show {
        height: 260px;
    }

}

/*
    XXL and up
*/

@media screen and (min-width: 1400px) {
    html {
        font-size: 12px;
    }

    /* body {
        font-size: 1.125rem;
    } */

    .header {
        height: 6rem;
    }

    .header__logo {
        font-size: 0.875rem;
    }

    .header__logo img,
    .header__logo svg {
        height: 3.2rem;
    }

    .header a, .header input {
        font-size: 1rem;
    }

    .header svg {
        width: 20px;
        height: 20px;
    }

    .header .input-with-icon {
        width: 30rem;
    }

    .icon-red-bg {
        width: 36px;
        height: 36px;
    }

    .footer__logo {
        font-size: 1.0625rem;
    }

    .footer__logo img {
        height: 3.2rem;
    }

    .section-bg-image {
        min-height: 40rem;
    }

    #brand-list-banner {
        height: 200px;
    }
    .brandlist-container.show {
        height: 230px;
    }

    .filter-section {
        display: flex;
        min-height: 326.4px;
    }

    .filter-section .tabs-icon {
        flex-direction: column;
        margin-right: 1.5rem;
    }

    .filter-section .tabs-icon__btn {
        width: 6.25rem;
        height: auto;
    }

    .filter-section .tabs-icon__btn:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid #e6e6e6;
    }

    .filter-section .tabs-icon__btn:after {
        top: 50%;
        left: 100%;
        border-top: 0.75rem solid transparent;
        border-bottom: 0.75rem solid transparent;
        border-left: 1rem solid #E62E2D;
        border-right: 0;
        transform: translate(0, -50%);
    }

    .filter-section .tabs-icon__btn svg {
        width: 2.5rem;
        height: 2.5rem;
    }

    .filter-section__content {
        flex: 1 0 0;
    }

    .product-hero {
        background-size: 70%;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 4rem;
        height: 4rem;
    }

    .swiper-button-prev {
        left: -3rem;
    }

    .swiper-button-next {
        right: -3rem;
    }

    .swiper-button-prev svg,
    .swiper-button-next svg {
        width: 2rem;
        height: 2rem;
    }

    .horizontal-product {
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .product-panel__description {
        min-height: 11rem;
    }

    .map iframe {
        height: 26rem;
    }

    .nav-link {
        font-size: 1.25rem;
    }

    .accordion-button {
        font-size: 1.25rem;
    }

    .breadcrumb--lg {
        font-size: 1rem;
    }

    .breadcrumb--lg .breadcrumb-item:not(:last-child) {
        padding-right: 2em;
    }

    .breadcrumb--lg .breadcrumb-item svg {
        right: 3em;
    }

    .page-title {
        font-size: 4rem;
    }

    .page-subtitle {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title.profil {
        transform: translateX(-2.3rem);
    }

    .section-title--sm {
        font-size: 1.75rem;
    }

    .btn--cart span {
        width: 2rem;
        height: 2rem;
    }

    .cart-header svg,
    #product-details .cart__add svg {
        width: 20px;
        height: 20px;
    }

    .btn--figure {
        /* min-height: 6.625rem; */
        font-size: 1.125rem;
    }

    .btn--figure figure {
        width: 4.625rem;
        height: 4.625rem;
    }

    .form-control:not(#category-input),
    .form-select {
        font-size: 1.125rem;
    }

    .list-select--box li button,
    .list-select--box li a {
        font-size: 1rem;
    }

    .price--lg {
        font-size: 1.75rem;
    }

    .text--md {
        font-size: 1rem;
    }

    .text--lg {
        font-size: 1.25rem;
    }

   /*  #results-list {
        justify-content: space-between;
    } */

    .searchDropdown {
        top: 36px;
    }

    .searchDropdown-product {
        width: calc(100% - 36px);
    }

    .info-bar--sticky {
        top: 92px;
        left: calc((100% - 1305px) / 2);
        right: calc((100% - 1305px) / 2);
    }

    .input-related ~ .btn {
        top: 22px;
        right: 16px;
    }

    .form-check-label {
        font-size: 1rem;
        transform: translateY(2px);
    }

    .banner-box {
        width: 420px;
        height: 162px;
        padding: 32px;
    }

    .banner-box h3 {
        font-size: 1.5rem;
    }

    .banner-box p {
        font-size: 1rem;
    }

    .banner-box ul li a {
        font-size: 1rem;
    }

    .banner-box ul li svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .banner-box ul li p {
        margin-left: 1.2rem;
    }

    .payment-shipment .form-check-label {
        transform: translateY(0px);
    }

    textarea#uzenet {
        height: 18rem;
    }
}

/*
	XXXL and up
*/

@media screen and (min-width: 1800px) {
    html {
        font-size: 16px;
    }

    .container {
        max-width: 1720px;
    }

    /* .header a, .header input {
        font-size: 18px;
    } */

    .filter-section {
        min-height: 434.6px;
    }

    .searchDropdown-product {
        width: calc(100% - 48px);
        top: 48px;
    }

    .searchDropdown-category {
        top: 48px;
    }

    .btn--figure {
        min-height: 63px;
    }

    .btn--cart span {
        top: -0.25rem;
        right: -0.75rem;
    }

    .input-related ~ .btn {
        top: 28px;
    }

    .cart-header svg,
    #product-details .cart__add svg {
        width: 25px;
        height: 25px;
    }

    .banner-box {
        width: 500px;
        height: 193px;
    }

    #results-list .col {
        width: 25% !important;
    }

    #brand-list-banner {
        height: 220px;
    }
    .brandlist-container.show {
        height: 260px;
    }
}
