@import "fonts.css";
@import "theme.css";

/*
    Overrides
 */

:root {
     --altura-header: 202px; /* Valor inicial */
}

.border_button {
    --this-text-color: #98122b;
    --this-border-color: #98122b;
    --this-bg-color: transparent;
    --this-text-color-hover: white;
    --this-border-color-hover: #98122b;
    --this-bg-color-hover: #98122b;
}

.green_button {
    --this-text-color: white;
    --this-border-color: #98122b;
    --this-bg-color: #98122b;
    --this-text-color-hover: white;
    --this-border-color-hover: #C82A48;
    --this-bg-color-hover: #C82A48;
}

.border_button,
.green_button {
    display: inline-block;
    transition: .35s all 0s linear;
    color: var(--this-text-color);
    border-color: var(--this-border-color);
    border-width: 2px;
    border-style: solid;
    background-color: var(--this-bg-color);
    padding: 0.65rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    min-width: 182px;
    box-sizing: border-box;
    text-align: center;
    outline: none;
}

.green_button:hover,
.border_button:hover,
.border_button:focus,
.green_button:focus {
    cursor: pointer;
    color: var(--this-text-color-hover) !important;
    border-color: var(--this-border-color-hover) !important;
    background-color: var(--this-bg-color-hover) !important;
}

body, html {
    font-family: var(--font-family-inter);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--main-text-color)
}

#wrapper {
    padding-top: var(--altura-header);
    background: var(--main-bg);
    overflow: hidden;
}

a.wa-btn {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 60px;
    height: 60px;
    background: url('../images/forestgreen-maderas-whatsapp.png') no-repeat #1bd741;
    z-index: 330;
    background-size: 50px;
    border-radius: 60px;
    background-position: center;
    box-shadow: 0 5px 20px -5px rgb(27 215 65 / 75%);
    transition: opacity 0.1s linear;
}
a.wa-btn:hover {
    opacity: 0.8;
}


/* HEADER */


/** Top bar **/

.displayNav1 {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}
.displayNav1 a,
.displayNav1 p {
    font-weight: 400;
    color: white;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
}
.displayNav1 a:hover {
    color: #FFE5D8 !important;
}
.displayNav1 .cb-item-content {
    display: flex;
    align-items: center;
}
.displayNav1 .custom-info-wrapper {
    display: flex;
    align-items: center;
    gap: max(3.5vw, 3.5em);
    width: 100%;
    margin-right: 1.5rem;
}
.displayNav1 .custom-nav-wrapper ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: max(1.5vw, 1.5em);
    margin: 0;
}
.displayNav1 .cb-img {
    margin-right: 8px;
}

/**/

#header,
#header.sticky .header-top {
    position: fixed;
    top: 0;
    width: 100%;
}

#header .header-top {
    padding: 0;
    border-bottom: 1px solid var(--main-color);
    /*position: absolute;*/
    width: 100%;
}
#header .header-top .logo-container {
    padding-top: 15px;
    padding-bottom: 15px;
}

.header-menu-contener {
    background: var(--megamenu-bg);
}

#header .header-top .menu {
    padding-left: 0;
}

#main_menu_contener > :last-child,
#main_menu_contener > :first-child {
    display: flex;
    justify-content: space-between
}

.top-menu[data-depth="0"] {
    display: flex;
    width: 100%;
    justify-content: space-between
}
#search_widget {
    margin-bottom: 0 !important;
}
#search_widget form input {
    padding: 12px 20px 12px 40px;
}
#search_widget:hover {
    cursor: pointer;
}

.searchbar-autocomplete {
    position: fixed;
    top: 46px !important;
    left: 0 !important;
    width: 100vw !important;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .25);
    border-radius: 0 !important;
    max-height: calc(85vh - 46px);
    overflow-y: auto;
    min-height: inherit !important;
}
.ui-autocomplete.searchbar-autocomplete li a {
    display: flex;
    align-items: center;
}
.ui-autocomplete.searchbar-autocomplete li a .autocomplete-thumbnail {
    height: 50px;
    object-fit: cover;
}
.ui-autocomplete.searchbar-autocomplete li a span {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-family-inter);
    display: flex;
    align-items: center;
}

.header-top #search_widget input {
    transition: .35s all 0s ease-in-out;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
    opacity: 0;
    transform: translateY(-100%);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0);
}
.header-top #search_widget input.shown {
    opacity: 1;
    transform: translateY(0%);
    box-shadow: 0 0 1rem rgba(0, 0, 0, .25);
}

#header {
    --icon-size: 2.5rem;
    --header-gap: 1rem;
}
#header #_desktop_cart .cart-contain,
#header .user-info a {
    width: var(--icon-size);
    height: var(--icon-size);
    align-items: center;
    justify-content: center;
    display: flex;
}
#header .user-info a.logout {
    display: none;
}

#header #_desktop_cart .cart-contain {
    position: relative;
}
#header .cart-products-count {
    position: absolute;
    top: 0;
    right: 0;
    font-size: .5em;
    background: var(--main-color);
    border-radius: 10px;
    color: #ffffff;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

/*#header .separator {
    width: 1px;
    height: calc(var(--icon-size) / 2);
    background: gray;
    display: block;
}*/

#header #_desktop_cart .cart-contain i,
#header #_desktop_user_info i,
#header #search_widget form i {
    width: var(--icon-size);
    height: var(--icon-size);
    color: transparent;
    background-image: url('../images/Icon - Search.svg');
    background-position: center center;
    background-repeat: no-repeat;
    text-indent: -99999px;
}
#header #_desktop_user_info i {
    display: block !important;
    background-image: url('../images/Icon - User.svg');
}
#header #_desktop_cart .cart-contain i {
    background-image: url('../images/Icon - Cart.svg');
}
#header #search_widget form i {
    position: inherit !important;
    padding: 0 !important;
}

#displayNavContener {
    padding: 0 0.7rem;
}


.lgcookieslaw-banner .lgcookieslaw-btn {
    border-color: var(--main-color) !important;
    background: var(--main-color) !important;
    border: 0 !important;
}

/* CARRITO */

.blockcart.cart-preview.opened .cart-hover-content {
    transform: translateX(0%);
}
.material-icons.menu-hover-close {
    top: 15px;
    background: rgb(0, 0, 0) !important;
    border-radius: 6px;
}
.menu-hover-overlay {
    width: 100%;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    opacity: 0;
    background: rgb(0 0 0 / .5) !important;
    pointer-events: none;
    will-change: opacity;
    transition: opacity 0.2s linear
}
.menu-hover-close {
    color: #fff !important;
    font-size: 35px;
    position: absolute;
    right: calc(100% + 15px);
    top: 0;
    cursor: pointer;
}
.menu-hover-close > .material-icons {
    font-size: 32px
}
#_desktop_cart .blockcart.cart-preview.opened .menu-hover-overlay,
#_desktop_cart .blockcart.cart-preview.opened {
    opacity: 1;
    pointer-events: initial;
}
#_desktop_cart .blockcart.cart-preview {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 101;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    transition: opacity 0.2s linear;
}

.cart-hover-content {
    max-width: 80vw;
    width: 650px;
    background: #ffffff;
    z-index: 12;
    will-change: transform;
    transform: translateX(105%);
    display: flex;
    transition: transform 0.2s linear;
    flex-direction: column;
}
#_desktop_cart .cart-preview .cart-ajax-heading {
    background-color: var(--main-color);
    font-size: 1.2rem;
    font-weight: 500;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
}
#_desktop_cart .cart-preview .ht_cart ul {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    padding-bottom: 1.5rem;
    -webkit-mask-image: linear-gradient(black 90%,transparent);
}
#_desktop_cart .cart-preview .wk-order-product {
    margin: 0 20px;
    position: relative;
    padding: 15px 0;
    background: #fff;
    display: flex;
    overflow: hidden;
    border-bottom: 1px solid #F8F6F7;
    flex-wrap: wrap;
}

.wk-product-img,
.wk-shipping-img,
#_desktop_cart .cart-preview .wk-product-img {
    margin: 0;
    overflow: hidden;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ECECEC;
    border-radius: 10px;
}
.wk-product-img {
    width: 80px;
    height: 80px;
}
.wk-product-img img {
    border: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border: 0;
}

#_desktop_cart .cart-preview .wk-order-product .checkline-2 {
    display: flex;
    width: calc(100% - 90px);
    position: relative;
    flex-direction: column;
    padding: 10px 10px 10px 15px;
}
#_desktop_cart .cart-preview .product-name {
    padding-right: 95px;
}
#_desktop_cart .cart-preview .product-name a {
    display: flex;
    flex-direction: column;
    padding-right: 0.5rem;
    box-sizing: border-box;
}
#_desktop_cart .cart-preview .product-name a span {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
}
#_desktop_cart .cart-preview .product-name a span:first-child {
    margin-bottom: 0.25rem;
}

#_desktop_cart .cart-preview span.reference {
    font-size: 13px;
    color: #6f6f6f;
    font-weight: initial;
    line-height: 1;
    text-transform: none;
    margin-bottom: 10px;
    display: block;
}

.line-price-qty {
    display: flex;
    align-items: stretch;
    margin-top: auto;
    justify-content: space-between;
}
.product-quantity .qty-checkline,
.line-price-qty .qty-checkline {
    padding-right: 10px;
}
.product-quantity .qty,
.line-price-qty .wk-product-info.qty {
    width: 85px;
    height: 30px;
    border-radius: 4px;
    background-color: #F8F6F7 !important;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10) !important;
}
.product-quantity .qty {
    width: 105px;
    height: 50px;
}
.qty > .bootstrap-touchspin {
    width: 100%;
    height: 100%;
}
.qty #quantity_wanted,
.qty #quantity_wanted_cart,
.qty input.wk-qty.form-control {
    border: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    padding: 0 25px;
    text-align: center;
    background: transparent;
    font-size: 0.9rem;
}
.qty #quantity_wanted {
    padding: 0 35px;
}
.qty button.js-touchspin {
    padding: 0;
    margin: 0;
    border: 0;
    width: 25px;
    height: 100%;
    display: inline-block;
    position: absolute;
    background: transparent;
    position: absolute;
    top: 0;
    cursor: pointer;
    z-index: 9;
    outline: none;
    text-indent: -9999px;
}
.product-quantity .qty button.js-touchspin {
    width: 35px;
}
.qty button.js-touchspin i {
    display: none;
}
.qty button.bootstrap-touchspin-up {
    right: 0;
}
.qty button.bootstrap-touchspin-down {
    left: 0;
}
.qty button.js-touchspin:after,
.qty button.js-touchspin:before {
    content: '';
    background: var(--main-text-color);
    height: 2px;
    width: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    backface-visibility: hidden;
}
.qty button.bootstrap-touchspin-up:after {
    width: 2px;
    height: 10px;
}
.qty button.bootstrap-touchspin-down:before {
    width: 8px;
}
.qty button.bootstrap-touchspin-down:after {
    display: none;
}

#_desktop_cart .cart-preview .remove-from-cart {
    color: #d40000 !important;
    background-color: #F8F6F7;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 8px;
    width: 35px;
    transition: background-color 0.26s ease;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
}
#_desktop_cart .cart-preview .remove-from-cart:hover {
    background-color: #ECECEC;
}

#_desktop_cart .cart-preview .wk-delete-qty {
    position: absolute;
    right: 10px;
    top: 10px;
}
#_desktop_cart .cart-preview .price-checkline span.product-price {
    line-height: 1;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--main-text-color);
}

#_desktop_cart .cart-preview .cart-summary {
    margin-top: auto;
    background-color: #ECECEC;
    padding: 15px 20px;
}
#_desktop_cart .cart-preview .cart-summary .subtotal-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#_desktop_cart .cart-preview .cart-summary .label {
    font-size: 16px;
    line-height: 1.53;
    color: var(--main-text-color);
}
#_desktop_cart .cart-preview .cart-summary .value {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.44;
    text-align: right;
    color: var(--main-text-color);
}
#_desktop_cart .cart-preview .cart-wishlist-checkout.btn {
    padding: 15px;
    width: 100%;
    font-size: 1.1rem;
}

.empty-cart {
    display: flex;
    align-items: center;
    justify-content: center;
}
.no-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1.75rem;
    text-align: center;
}
.no-items .material-icons {
    font-size: 50px;
    margin-bottom: 5px;
}

/* MENÚ */

#main_menu_contener {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ets_mm_megamenu_content .container {
    width: 100%;
    max-width: 100%;
    border: none !important;
}

.ets_mm_megamenu_content_content {
    margin: 0 -0.7rem;
}

.layout_layout1 .ets_mm_megamenu_content,
.ets_mm_megamenu_content .container {
    background: transparent !important;
}

.ets_mm_megamenu {
    background: transparent !important;
    clear: none !important;
    display: inherit !important;
    margin-top: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    z-index: 2;
}

.mm_menu_content_title {
    float: none;
    padding: 0 0.7rem !important;
    position: relative;
    min-height: 2rem !important;
    display: flex;
    align-items: center;
    text-transform: none !important;
}

.mm_menus_li > a {
    font-weight: 400 !important;
}

.ets_mm_block_content a {
    line-height: 1.4 !important;
    padding-left: 0.75rem;
    display: block
}
.ets_mm_block_content a:before {
    position: absolute;
    left: 0;
    top: 0;
}


.ets_mm_block > .h4 {
    font-weight: 500;
    text-transform: none;
}

ul ul ul.ets_mm_categories li {
    margin-bottom: 0.5rem;
}

.layout_layout1 .ets_mm_megamenu_content,
.layout_layout1 .mm_menus_li:nth-child(2) {
    border: none !important;
}
.layout_layout1 .mm_menus_li {
    border: none !important;
    position: relative
}

.layout_layout1:not(.click_open_submenu) .mm_menus_li.mm_has_sub:hover > a::after,
body .ets_mm_megamenu::before {
    display: none !important
}

.ets_mm_block_content .ets_mm_categories .has-sub > a:after,
.mm_block_type_category .ets_mm_categories .ets_mm_categories {
    display: none !important;
}

/* HOME */

.wrapper_pre_slider {
    padding: 1rem 0;
}
.wrapper_pre_slider .banner_pre_slider_contener {
    border: 3px solid rgba(234, 45, 45, 0.10);
    padding: 0.75rem 0;
    text-align: center;
    line-height: 1.4;
}
.wrapper_pre_slider .banner_pre_slider_contener p {
    margin: 0;
}
.wrapper_pre_slider .banner_pre_slider_contener p strong {
    font-size: 1.1rem;
    font-weight: 700;
}
.wrapper_pre_slider .banner_pre_slider_contener p a {
    color: #545454;
    font-size: 0.88rem;
    text-decoration-line: underline;
}

/* Slider */
.wrapper_slider {
    padding: 0 15px;
}
.wrapper_slider .cb-carousel {
    width: 1847px !important;
    max-width: 100%;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
    margin: 0 auto;   
}
.wrapper_slider .cb-item-content {
    display: flex;
    flex-direction: row-reverse;
    justify-content: stretch;
    align-items: center;
}
.wrapper_slider .cb-item-content .cb-img {
    /*max-width: 1220px;*/
    width: 65%;
    flex: 0 0 65%;
    min-height: 508px;
    height: 100%;
    object-fit: cover;
}
.wrapper_slider .slide_slider_contener .custom-html {
    padding: 3rem 2rem;
    width: 35%;
    flex: 0 0 35%;
    text-align: left;
    box-sizing: border-box;
}
.wrapper_slider .slide_slider_contener h2,
.wrapper_slider .slide_slider_contener .h2 {
    font-size: 2.11rem;
    font-weight: 500;
    text-transform: uppercase;
}

.wrapper_slider .slide_slider_contener .p,
.wrapper_slider .slide_slider_contener p {
    font-size: 1.38rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-transform: none;
}
.wrapper_slider .slide_slider_contener .buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.sw-nav, .n-hover:hover .sw-nav {
    border-radius: 0 !important;
    background: var(--main-color) !important;
    border: var(--main-color) !important;
    box-shadow: none !important;
    /*transition: opacity .2s linear;*/
}
.sw-nav.swiper-button-disabled {
    opacity: 0;
    cursor: default;
}
.wrapper_slider .sw-nav.swiper-button-disabled {
    opacity: 0.6;
}
.wrapper_slider .sw-nav.prev {
    left: auto !important;
    right: calc(65% - 50px);    
}
.wrapper_slider .sw-nav.next {
    right: 0 !important;
}
/**/

.advantages {
    width: 100%;
    background: #F8F6F7;
    padding: 3rem 15px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    max-width: 100%;
}

.advantages > div {
    width: 25%;
    max-width: 420px;
    padding: 0 15px;
    font-weight: 400;
}
.advantages .advantage .cb-img {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    max-height: 37px;
}
.advantages .advantage .custom-html {
    padding-top: calc(37px + 0.75rem);
}
.advantages .advantage p {
    color: #52525B;
    margin-bottom: 0.75rem;
}
.advantages .advantage p strong {
    font-weight: 600;
    color: var(--main-text-color);
}
.advantages .advantage p:last-child {
    margin: 0;
}

.title-home {
    padding: 3rem 0 0 0;
}
.title-home h1 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.8rem;
    text-transform: uppercase;
}

/* PRODUCTOS */

.featured-products {
    text-align: center;
    padding: 3rem 0;
}
.featured-products.news-products {
    background: linear-gradient(180deg, #F8F7F6 0%, #FFF 100%);
    margin-right: calc(var(--container-max-width) / 2 - 15px - 50vw);
    margin-left: calc(var(--container-max-width) / 2 - 15px - 50vw);
}
@media only screen and (max-width: 1680px) {
    .featured-products.news-products {
        max-width: 100vw;   
        margin-right: -15px;
        margin-left: -15px;
    }
}
.featured-products h2,
.featured-products .h2 {
    margin-bottom: 3rem;
}

.product-miniature, .product-miniature .product {
    width: 100%;
    height: 100%;
    flex-direction: column;
}
.product-miniature .thumbnail-container {
    background: transparent;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.swiper-products-offers .product-miniature .thumbnail-container {
    margin-bottom: 0 !important;
}
/*.swiper-products-offers .product-miniature .thumbnail-top:before {
    padding-bottom: 100%;
}*/

.products.swiper-products {
    padding: 0 5rem;
}
.products.swiper-products:before,
.products.swiper-products:after {
    content: '';
    background: #fff;
    width: 5rem;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 9;
}
.products.swiper-products:before {
    left: 0;
}
.products.swiper-products:after {
    right: 0;
}
.swiper-products-offers {
    max-width: 425px;
}
.swiper-products .swiper-wrapper,
.swiper-products-offers .swiper-wrapper {
    height: auto;
}
.swiper-products .swiper-slide .product,
.swiper-products-offers .swiper-slide .product {
    width: 100% !important;
    height: 100%;
    padding: 0 !important;
}

.featured-products.news-products .product-miniature .thumbnail-top:before,
.easycarousels .product-miniature .thumbnail-top:before {
    padding-bottom: 100%;
}

.featured-products.news-products .product-miniature .thumbnail-top {
    border: 0;
}

.product-miniature .product-description {
    padding: 1.25rem 0 calc(1.25rem + 42px) 0;
    bottom: initial;
    position: initial;    
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.product-miniature .product-title {
    margin-top: 0;
    margin-bottom: 0.5rem;
    text-align: left;
    text-transform: uppercase;
}
/*.product-miniature .product-title a:.first-letter {
    text-transform: uppercase;
}*/
.product-miniature .product-title a {
    font-size: 0.9rem;
    color: var(--main-text-color);
    text-align: left;
    font-weight: 500;
}
/*.product-miniature .product-title a:hover {
    color: var(--main-color);
}*/

.product-miniature .product-actions {
    text-align: left;
    position: absolute;
    bottom: 1.25rem;
    left: 0;
    right: 0;
}
.product-miniature .product-actions button,
.product-miniature .product-actions a {
    padding: 0.45rem 0.45rem;
    width: 100%;
    height: 42px;
}

.product-list-reviews {
    position: inherit;
    top: inherit;
    left: inherit;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    background: transparent;
    padding: 0 0 0.5rem 0;
    flex-grow: 1;
}
/*.grade-stars .star-content {
    left: 0;
}*/
.star-content {
    margin: 0;
}
.star-content .star:after,
.product-list-reviews .comments-nb {
    display: none;
}
.product-list-reviews .grade-stars.small-stars {
    min-width: 90px;
    height: auto;
}
.product-list-reviews .grade-stars.small-stars .star-content.star-empty {
    position: inherit;
}
/*div.star {
    margin-left: 3px !important;
}
div.small-stars div.star {
    margin-left: 2px !important;
}
div.star:first-child,
div.small-stars div.star:first-child {
    margin-left: 0 !important;
}*/
.star-content div.star,
.star-content div.star-on,
.star-content div.star-hover {
    background: url(../images/stars.png) no-repeat 0 0 transparent;
}
.star-content div.star-on, .star-content div.star-hover {
  background-position: -25px 0;
}
.small-stars .star-content div.star,
.small-stars .star-content div.star-on,
.small-stars .star-content div.star-hover {
    background: url(../images/small_stars.png) no-repeat 0 0 transparent;
}
.small-stars .star-content div.star-on, .small-stars .star-content div.star-hover {
    background-position: -20px 0;
}
.product-miniature .product-price-and-shipping {
    font-weight: 400;
    color: var(--main-color);
    text-align: left;
    font-size: 1.38rem;
    margin-bottom: 0.5rem;
}
.product-miniature .regular-price {
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--main-color);
    position: relative;
}
.product-miniature .regular-price:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #ff1616;
    transform: translate(-50%, -50%) rotate(170deg);
    position: absolute;
    top: 50%;
    left: 50%;
}

.product-flags {
    left: 1px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
}
.product-flags li.product-flag {
    margin: 0;
    width: calc(100% - 2px);
    min-height: inherit !important;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    box-sizing: border-box;
}
.product-flags li.product-flag:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.product-flags li.product-flag.out_of_stock {
    background: #f7b4bf;
    color: var(--main-color);
}
.product-flags li.product-flag.discount,
.product-flags li.product-flag.discount-amount,
.product-flags li.product-flag.discount-percentage {
    background-color: orange;
}
.product-flags li.product-flag.discount {
    display: none !important;
}
.product-flags li.product-flag.online-only {
    left: 0;
}
.product-miniature .product-flags li.product-flag.online-only {
    top: 0;
}

.product-miniature .highlighted-informations {
    top: 0 !important;
    bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: rgba(152, 18, 43, 0.75);
    height: 100% !important;
    opacity: 0;
}
.product-miniature .thumbnail-container:focus .highlighted-informations.no-variants,
.product-miniature .thumbnail-container:hover .highlighted-informations.no-variants,
.product-miniature .thumbnail-container:focus .highlighted-informations,
.product-miniature .thumbnail-container:hover .highlighted-informations {
    opacity: 1;
}

.product-miniature .highlighted-informations a {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    border-radius: 0;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    outline: none !important;
}
.product-miniature .highlighted-informations a span.icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url(../images/icon_add.png) no-repeat center center;
    background-size: 100% auto;
    margin-bottom: 0.5rem;
}

.offers-products {
    text-align: left;
    background: #ECECEC;
    padding: 6rem 3rem;
    clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 92%);
}
.rounded {
    padding: 3rem 0;
    filter: url('#round');
}
.offers-products h2,
.offers-products .h2 {
  margin-bottom: 1.5rem;
}
.offers-products .row {
    display: flex;
    align-items: center;
}
.offers-products .offers-products-text .cb-item {
    text-align: left;
    margin-bottom: 1.5rem;
    max-width: 885px;
}
.offers-products .offers-products-text p strong {
    font-size: 1.1rem;
    font-weight: 400;
}

.product-add-to-cart-btn.blocked,
.custom-add-to-cart.blocked {
    /*font-size: 0 !important;*/
    cursor: not-allowed;
}
.product-add-to-cart-btn.blocked span:first-child,
.custom-add-to-cart.blocked span:first-child {
    visibility: hidden;
}
.cart_loader {
    position: absolute;
    left: calc(50% - 10px);
    top: calc(50% - 10px);
    z-index: 11;
    border-top: 0.2em solid currentcolor;
    border-right: 0.2em solid transparent;
    animation: loader-19 1s linear infinite;
    border-radius: 100%;
    display: inline-block;
    width: 1rem;
    height: 1rem;
    color: inherit;
    vertical-align: middle;
    pointer-events: none;
    font-size: 1rem;
    opacity: 0;
    transition: opacity .2s;
}
.product-add-to-cart-btn.blocked .cart_loader,
.custom-add-to-cart.blocked .cart_loader {
    opacity: 1;
}
@keyframes loader-19 {
    to {
        transform:rotate(360deg)
    }
}

/****/

.home-title {
    padding: 3rem 0;
}
.home-title h2 {
    margin-bottom: 0;
}
.home-title h2 + p {
    margin-top: 0.5rem;
}
.home-title p {
    font-size: 1.11rem;
    font-weight: 400;
}

.wrapper_home_featured_products {
    padding: 0 0 3rem 0;
    display: flex;
    gap: 20px;
}
.wrapper_home_featured_products .home_featured_products_banner {
    width: 25%;
}
.wrapper_home_featured_products .home_featured_products_banner .cb-item-content {
    display: flex;
    flex-direction: row-reverse;
    justify-content: stretch;
}
.wrapper_home_featured_products .home_featured_products_banner .custom-html {
    background: var(--main-color);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*justify-content: center;*/
    padding: 40px 20px 30px 20px;
    min-width: 205px;
}
.wrapper_home_featured_products .home_featured_products_banner .custom-html h3,
.wrapper_home_featured_products .home_featured_products_banner .custom-html .h3 {
    font-size: 1.12rem;
    margin-bottom: 1rem;
}
.wrapper_home_featured_products .home_featured_products_banner .custom-html p {
    margin: 0;
    width: 100%;
}
.wrapper_home_featured_products .home_featured_products_banner .custom-html p > strong {
    font-family: var(--font-family-caveat);
    width: 100%;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    padding: .15em;
    transform: rotate(-15deg);
    background-color: #CE324F;
    margin-bottom: 1.5em;
    /*box-shadow: 0 0 1em rgba(0, 0, 0, .25);*/
    display: inline-block;
}
.wrapper_home_featured_products .home_featured_products_banner .custom-html p a {
    color: #ffffff;
    display: inline-block;
    padding: 0.35rem 1.5rem;
    position: relative;
}
.wrapper_home_featured_products .home_featured_products_banner .custom-html p a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: #ffffff;    
    transition: .2s all linear;
}
.wrapper_home_featured_products .home_featured_products_banner .custom-html p a:hover:before {
    background-color: #6c0a1c;
    width: 100%;
    height: 100%;
}
.wrapper_home_featured_products .home_featured_products_banner .custom-html p a strong {
    font-weight: 300;
    position: relative;
    z-index: 1;
}
.wrapper_home_featured_products .home_featured_products_banner .cb-img {
    width: 100%;
    height: 258px;
    object-fit: cover;
}

/* Tabs */

#index .easycarousels {
    padding: 3rem 0;
}
.easycarousels .c_container {
    margin: 0 0 2rem 0 !important;
    display: flex;
    flex-wrap: wrap;
}
#index .easycarousels .c_container {
    margin: 3rem 0 !important;
    justify-content: center;
}
.easycarousels .c_item {
    padding: 5px 15px;
    height: 100%;
}

.easy_products_tabs .ec-tabs {
    gap: 1.5rem;
    margin: 0 auto 2rem auto;
    max-width: 1235px;
    float: none;
    display: flex;
    justify-content: space-evenly !important;
}

.easy_products_tabs .ec-tabs li a,
.easy_products_tabs .ec-tabs li a h2 {
    transition: .25s all 0s linear;
    text-transform: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0;
    margin: 0;
}
.easy_products_tabs li a:hover,
.easy_products_tabs li.active a,
.easy_products_tabs li a:hover h2,
.easy_products_tabs li.active a h2 {
    background: transparent !important;
    color: var(--main-text-color);
}
.easy_products_tabs .ec-tabs li a {
    padding: 0.25rem 0;
    position: relative;
    display: inline-block;
}
.easy_products_tabs .ec-tabs li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transition: .25s all 0s linear;
    opacity: 0;
    background: var(--main-color);
}
.easy_products_tabs .ec-tabs li.active a:after,
.easy_products_tabs .ec-tabs li a:hover:after {
    opacity: 1;
}

.easycarousels .product-miniature .thumbnail-container .highlighted-informations {
    padding: 0;
    background: rgba(152, 18, 43, 0.75);
    transition: .3s;
}
.easycarousels .product-miniature .thumbnail-container:hover .highlighted-informations {
    bottom: 0;
    margin-top: 0;
    opacity: 1;
}
.easycarousels .product-miniature .highlighted-informations a {
    color: #ffffff;
}

.easycarousels .product-miniature .thumbnail-container {
    height: 100% !important;
    display: flex;
    flex-direction: column;
}
.easycarousels .product-miniature .product-description,
.easycarousels .product-miniature .thumbnail-container {
  background: transparent;
  width: 100%;
  margin-bottom: 0;
}
.easycarousels .product-miniature .product-description {    
    padding: 1.25rem 0 calc(1.25rem + 42px) 0;
    position: initial;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.easycarousels .product-miniature .product-title {
    margin: 0 0 0.5rem 0;
    padding: 0;
    line-height: 1.1;
}
.easycarousels .product-flags li {
    margin: 0;
    float: none;
    clear: none;
    word-break: break-word;
    background: var(--main-color);
    font-size: 0.75rem;
    box-shadow: 2px 2px 11px 0 rgba(0,0,0,.1);
    width: calc(100% - 2px);
    font-weight: 600;
    text-align: center;
    box-sizing: border-box;
}
.easycarousels .product-flags li:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.easycarousels .product-flags li.discount-percentage,
.easycarousels .product-flags li.on-sale {
    background: var(--main-color);
}

.easycarousels .carousel-description {
    margin: 0;
}
.easycarousels .carousel-description p {
    text-align: center;
}

/**/

.btn-link {
    cursor: pointer;
    padding: 0;
    outline: none;
    transition: all 0.2s linear;
}

#custom-text {
    padding: 3rem 0 0 0;
    margin-bottom: 2rem;
    text-align: left;
}

#custom-text div {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(black 60%,transparent);
    height: 215px;
}
.show_content div {
    -webkit-mask-image: none !important;
    height: auto !important;
}
#custom-text h2 {
    font-size: 1.83rem;
    text-transform: none;
}
#custom-text h3 {
    font-size: 1.11rem;
    color: var(--main-color);
    font-weight: 400;
}
.collapsible-content-more,
.collapsible-content-less {
    margin: 0;
    padding: 0.5rem 0;
    display: inline-block;
}
/* Cuidado con borrar los botones en el html */
.collapsible-content-more button,
.collapsible-content-less button {
    text-transform: uppercase;
}
.collapsible-content-less {
    display: none;
}
.show_content .collapsible-content-more {
    display: none;
}
.show_content .collapsible-content-less {
    display: inline-block;
}

.content-banner {
    margin-bottom: 3rem;
}
.content-banner img {
    width: 100% !important;
    height: auto !important;
}

/* Google Reviews */

.google-reviews-contener {
    padding: 3rem 0;
}

.google-reviews-contener .google-reviews-title {
    margin-top: 0;
    margin-bottom: 3rem;
    text-transform: none;
}

.google-reviews-contener .button-all-reviews-container a {
    transition: .35s all 0s linear;
    color: white;
    border-color: var(--main-color);
    border-width: 2px;
    border-style: solid;
    background-color: var(--main-color);
    padding: 0.65rem 2rem;
    font-size: 1rem;
    font-weight: 400;
    min-width: 182px;
    box-sizing: border-box;
    text-align: center;
    outline: none;
    text-transform: none;
}
.google-reviews-contener .button-all-reviews-container a:hover {
    cursor: pointer;
    color: white !important;
    border-color: #C82A48 !important;
    background-color: #C82A48 !important;
}

.google-reviews-contener #google-reviews {
    gap: 1rem;
}
.google-reviews-contener #google-reviews > div:first-child {
    margin-left: calc(-1rem - 5px);
}

.google-reviews-contener #google-reviews .review-item {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-items: flex-start;
    border-radius: 7px;
    border: 1px solid rgba(0, 0, 0, 0.13);
    background: #ffffff;
    position: relative;
}
.google-reviews-contener #google-reviews .review-item:before {
    content: '';
    width: 23px;
    height: 23px;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: url('../images/icon-verified-badge.png') no-repeat center center;
    background-size: 100% auto;
    display: inline-block;
}

.google-reviews-contener #google-reviews .review-meta .review-author {
    font-size: 16px;
    font-weight: 600;
}
.google-reviews-contener #google-reviews .review-meta .review-sep {
    display: none;
}

.google-reviews-contener #google-reviews .review-stars {
    font-size: 13.5px;
    margin-top: 0.5rem;
}
.google-reviews-contener #google-reviews .review-stars ul li i {
    color: #FCD34D;
}

.google-reviews-contener #google-reviews .review-date {
    display: none;
}
.google-reviews-contener #google-reviews .review-text {
    line-height: 1.25;
    margin: 1em auto 0;
    font-size: 16px;
    max-width: inherit;
}

/**/

/* FOOTER */

.wrapper_kit,
.wrapper_kit .cb-img {    
    margin-bottom: 1rem;
    font-size: 14px;
}

.banner_forestgreen_group {
    color: #737373;
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
    padding-right: 1.5rem;
}
.banner_forestgreen_group .cb-img {
    margin-bottom: 1.5rem;
}

.wrapper_location {
    display: flex;
    align-items: flex-start;
    justify-content: stretch;
    gap: 1rem;
    padding-bottom: 1.5rem;
    font-size: 16px;
    /*margin-top: 2rem;
    padding-left: 15px;
    padding-right: 15px;*/
}
.wrapper_location .banner_location {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
}
.wrapper_location .banner_location .custom-html {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
}
.wrapper_location .banner_location .location_title {
    border-bottom: 1px solid #F0F0F0;
    padding-bottom: .6em;
    margin-bottom: .6em;
    margin-top: 0 !important;
}
.wrapper_location .banner_location ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .75em;
}
.wrapper_location .banner_location ul ul {
    gap: .25em;
    margin-top: .25em;
}
.wrapper_location .banner_location li li {
    padding: .5em;
    background: #F0F0F0;
    border-radius: var(--main-border-radius);
    margin-bottom: 0;
}
.wrapper_location .banner_location p a,
.wrapper_location .banner_location .green {
    color: var(--main-color);
    font-weight: 600;
}
.wrapper_location .banner_location .red {
    color: darkred;
    font-weight: 600;
}
.wrapper_location .banner_location p {
    margin: 0;
    padding: 0;
    line-height: 1.35;
}
.wrapper_location .banner_location p a {
    display: block;
    background: #F0F0F0;
    padding: .5em;
    border-radius: var(--main-border-radius);
    margin-top: 0.5rem;
}
.wrapper_location .banner_location p a:hover {
    color: #F0F0F0;
    background: var(--main-color);
    cursor: pointer;
}
.wrapper_location .banner_location.text p {
    margin-top: 1.05rem;
}
.wrapper_location .banner_location.map {
    flex: 2;
}
.wrapper_location .banner_location.map .footer-map {
    width: 100%;
    max-width: 100%;
    border-radius: var(--main-border-radius);
    height: auto;
    min-height: 12rem;
}


.footer-container > .container {
    position: relative;
    padding-top: 2rem;
}
.footer-container > .container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background: rgba(152, 18, 43, 0.20);
    z-index: 1
}
.footer-container .wrapper_us *,
.footer-container .wrapper_support * {
    text-align: left;
}

footer * {
    box-sizing: border-box;
}
footer .footer-container > .container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
footer .displayFooter {
    width: 33.33%;
}
footer #footer_links_block {
    width: calc(66.67% - 30px);
    padding-top: calc(83px + 1.5rem);
    
}
footer #footer_links_block .wrapper {
    width: 50%;
}
footer #footer_links_block li a {
  font-size: 16px;
}

.wrapper_footer_after {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #737373;
    padding: 24px 0;
    border-top: 1px solid #D0D5DD;
}
.wrapper_footer_after > div {
    width: 33.33%;
}
.wrapper_footer_after > div:first-child {
    text-align: left;
}
.wrapper_footer_after > div:last-child {
    text-align: right;
}
.wrapper_footer_after p {
    margin: 0;
}
.wrapper_footer_after ul {
    display: flex;
    gap: 1rem;
    margin: 0;
}
.wrapper_footer_after li a {
    font-size: 14px;
}

footer .block-social {
    position: absolute;
    top: 3.5rem;
    right: 10px;
}
footer .block-social ul {
    margin: 0;
}
footer .block-social ul li {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    border-radius: 2rem;
    position: relative;
    margin-left: 0.5rem;
    overflow: hidden;
}
footer .block-social ul li a {
    position: relative;
    z-index: 1;
    color: #fff !important;
}
footer .block-social .facebook:before {
    content: '';
    background: url('../images/facebook.png') no-repeat center center;
    background-size: 60% auto;
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
footer .block-social .instagram:before {
    content: '';
    background: url('../images/instagram.png') no-repeat center center;
    background-size: 60% auto;
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}


/* CATEGORÍA */

body#category #content-wrapper {
    display: block !important;
}

body#category #footer {
    display: block !important;
}

body#category #wrapper {
    background: linear-gradient(180deg, #F8F7F6 0%, #FFF 100%);
}

body#category .card-block {
    /*border-radius: var(--main-border-radius);
    background: white;
    border: 1px solid #eee;
    padding: 1.5rem;*/
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

body#category #search_filters,
body#category #search_filters_brands,
body#category #search_filters_suppliers,
body#category .block-categories {
    border-radius: var(--main-border-radius);
    background: white;
    padding: 1.5rem;
}

body#category #category-description {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(black 60%,transparent);
    height: 105px;
}
body#category #category-description h2,
body#category #category-description h3,
body#category #category-description h4,
body#category #category-description h5,
body#category #category-description h6 {
    padding-top: 1.5rem;
}
body#category #category-description p img {
    margin-bottom: 1em;
    border-radius: .5rem;
}

.products-title, .easycarousels .row .title_block {
    font-size: 1.46rem;
    font-weight: 500;
}

#custom-text a,
body#category .block-category a {
    color: var(--main-color);
    text-decoration: underline;
}

/* Subcategorías */

body#category #subcategories {
    overflow: hidden;
}
body#category #subcategories-list {
    overflow: visible;
}
body#category #subcategories-list .sw-nav {
    margin-top: 0;
    top: calc(-45px - 1rem);
    width: 45px;
    height: 45px;
}
body#category #subcategories-list .sw-nav:before {
    margin-top: 16px;
}
body#category #subcategories-list .sw-nav.prev {
    left: initial;
    right: calc(45px + 0.5rem);
}
body#category #subcategories-list .sw-nav.next {
    right: 0;
}
#subcategories .subcategory-heading {
    font-size: 1.46rem;
    line-height: 45px;
}
#subcategories .subcategories-list > div {
    text-align: left;
    min-width: inherit;
    width: calc(100% / 5 - 20px);
}
#subcategories .subcategories-list > div .subcategory-name,
#subcategories .subcategories-list > div .subcategory-name h2 {
    font-size: 0.9rem;
    text-align: left;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.2;
}
#subcategories .subcategories-list > div .subcategory-image {
    position: relative;
    padding: 0;
    margin-bottom: 0.5rem;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #eee;
}
#subcategories .subcategories-list > div .subcategory-image a {
    display: block;
    padding: 0 !important;
    border: 0 !important;
    height: 110px;
}
#subcategories .subcategories-list > div .subcategory-image a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.3s linear opacity;
    background: rgba(152, 18, 43, 0.75);
}
#subcategories .subcategories-list > div:hover .subcategory-image a:before {
    opacity: 1;
}
#subcategories .subcategories-list > div .subcategory-image a img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/**/

.products-selection p {
    font-weight: 500;
    border-bottom: 0 !important;
}

.infinitescroll-bottom-message {
    padding: 0;
    color: var(--main-text-color) !important;
    background-color: transparent !important;
    border: 0 !important;
    margin-bottom: 3rem;
    text-align: center;
}
.infinitescroll-bottom-message a {
    padding: 0.65rem 2rem;
    color: #ffffff !important;
    background-color: #98122b !important;
    display: inline-block;
    font-size: 1rem;
    min-width: 182px;
    box-sizing: border-box;
    text-align: center;
    outline: none;
    border-color: #98122b;
    border-width: 2px;
    border-style: solid;
    transition: .35s all 0s linear;
}
.infinitescroll-bottom-message a:hover {
    cursor: pointer;
    color: #ffffff !important;
    border-color: #C82A48 !important;
    background-color: #C82A48 !important;
}
.infinitescroll-bottom-message a i {
    display: none !important;
}

.pagination {
    display: none !important;
}


/* Ordenar */
.brands-sort .select-title, .products-sort-order .select-title, .suppliers-sort .select-title {
    border: 1px solid #e7e7e7 !important;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
}
.brands-sort .dropdown-menu, .products-sort-order .dropdown-menu, .suppliers-sort .dropdown-menu {
    background: #fff;
    border: 1px solid #e7e7e7;
}
.brands-sort .select-list, .products-sort-order .select-list, .suppliers-sort .select-list {
    padding: .4rem .8rem;
}
.dropdown-menu {
    font-size: 16px;
    padding: 0;
}

/* Filtros */
.block-categories .collapse-icons {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 2.25em;
}
.block-categories .category-sub-menu {
    margin-top: 0.5rem;
}
.block-categories .category-sub-menu li[data-depth="0"] > a {
    padding: .4rem;
    margin-top: 1px;
    border-radius: 8px;
    transition: .3s linear background;
}
.block-categories .category-sub-menu li[data-depth="0"]:hover > a {
    background: #F8F6F7;
}
.block-categories .category-sub-menu li[data-depth="1"] {
    margin-bottom: 0;
    border-bottom: 1px solid #ECECEC;
    padding: 0.4rem;
}
.block-categories .category-sub-menu li[data-depth="1"]:last-child {
    border-bottom: 0;
}
.block-categories .category-sub-menu li[data-depth="1"] a:hover {
    color: var(--main-color);
}
.block-categories .category-sub-menu li .arrows {
    width: 2.5em;
    height: 2.1em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
}
.block-categories .category-sub-menu li .arrows i {
    font-size: 1.1rem;
}
.category-top-menu {
    margin-bottom: 0;
}

.block-categories .category-sub-menu li[data-depth="0"] > span {
	padding: 0.4rem;
	margin-top: 1px;
	border-radius: 8px;
	transition: .3s linear background;
	display: inline-block;
	width: 100%;
	padding-bottom: 0.1875rem;
	font-weight: 500;
}
.selected-category {
	font-weight: bold !important;
}

/* PRODUCTO */

#product #content {
    max-width: 800px;
}
#product .product-cover:before {
  content: '';
  padding-bottom: 75%;
  display: block;
}
#product .product-cover {
    border-radius: 10px;
    border: 1px solid #ECECEC;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}
#product .product-cover img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.product-cover .layer {
    /*background: rgba(152, 18, 43, 0.75);*/
    transition: .3s;
}
.images-container .product-images {
    padding: 0 1px;
}
.images-container .product-images > li.thumb-container {
  display: inline-block;
  width: 20%;
  padding: 0 .625rem;
  box-sizing: border-box;
}
.images-container .product-images > li.thumb-container picture {
    margin: .625rem auto !important;
    display: block;
    width: 102px;
    height: 102px;
    max-width: calc(100% - 2px);
}
.images-container .product-images > li.thumb-container .thumb {
    border-radius: 10px;
    border: 1px solid #eee;
    transition: .3s linear border;
    margin: 0 !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.images-container .product-images > li.thumb-container .thumb.selected, .product-images > li.thumb-container .thumb:hover {
    border: var(--main-color) 1px solid;
}

.product-container span.reference {
    font-size: 16px;
    color: #6f6f6f;
    line-height: 1;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.product-prices {
    margin-top: 0;
    margin-bottom: 2rem;
}
.product-prices > div {
    margin-bottom: 0;
}
.product-prices .current-price-value {
    font-weight: 500;
    color: var(--main-color);
    text-align: left;
    font-size: 1.68rem;
}
.product-discount, .tax-shipping-delivery-label {
    display: inline-block;
}
.product-discount .regular-price {
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--main-color);
    position: relative;
}
.product-discount .regular-price:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #ff1616;
    transform: translate(-50%, -50%) rotate(170deg);
    position: absolute;
    top: 50%;
    left: 50%;
}
.has-discount .discount {
    background: var(--main-color);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

#product-availability {
    display: flex;
    align-items: center;
    font-weight: 500;
}
#product-availability .product-last-items, #product-availability .product-unavailable {
    color: #ff1616;
    margin-bottom: 5px;
}

.blockreassurance_product {
    display: flex;
    gap: 1rem;
}
.blockreassurance_product > div {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 400;
}
.blockreassurance_product .item-product {
    margin-right: 0;
    width: auto;
    height: 37px;
    float: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blockreassurance_product .item-product img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
}
.blockreassurance_product .block-title {
    margin: 0.2em 0;
    font-weight: 600;
}
.blockreassurance_product .clearfix {
    display: none;
}
.blockreassurance_product p {
  color: #52525B !important;
}

/*.modal-body figure {
    border-radius: 10px;
    border: 1px solid #eee;
    background-color: #ffffff;
    overflow: hidden;
}*/


.product-actions .control-label {
    font-size: 15px;
}
.product-actions .add {
    padding-right: 1.5rem;
    width: calc(53% - 57.5px - 0.75rem);
    justify-content: center;
}
.product-actions .add-to-cart {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    justify-content: center;
}
.product-actions .add-to-cart i {
    width: 21px;
    height: 21px;
    background-image: url('../images/icon-button-cart.svg');
    background-position: center center;
    background-repeat: no-repeat;
    text-indent: -99999px;
    margin-right: 0.25rem;
}

.product-actions .buttons_bottom_block {
    margin-bottom: 1.5rem;
    width: calc(50% - 57.5px - 0.75rem);
}
.product-actions .buttons_bottom_block .bt_productinfo {
    padding: 0.65rem 2rem;
    border-radius: 0 !important;
    height: 2.75rem;
    outline: none;
    transition: .35s all 0s linear;
    width: 100%;
}
.bt_productinfo i {
    display: none;
}
.bt_productinfo:hover, .bt_productinfo:focus {
    background-color: #C82A48 !important;
}

.product-additional-info {
    /*display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1.5rem 0;*/
}

.product-variants > .product-variants-item select {
    border-radius: .5rem;
    width: 100%;
}

/*.product-comments-additional-info {
    width: 100%;
}
.content-sharing + .product-comments-additional-info  {
    width: 50%;
}*/

.content-sharing {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    /*justify-content: flex-end;
    width: 100%;*/
}
.content-sharing:before {
    content: '';
    background: url(../images/share.png) no-repeat 0 0 transparent;
    background-size: 100% auto;
    width: 24px;
    height: 24px;
    display: inline-block;
    margin-right: 5px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.title-sharing {
    font-weight: 500;
    cursor: pointer;
    padding-left: 29px;
    position: relative;
    z-index: 1;
}
.social-sharing {
    margin: 0;
    background: #F1F1F1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    border-radius: 4px;
    display: none;
}
.social-sharing > span {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 4px;
}
.social-sharing > span span {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.social-sharing > span span:before {
    display: none;
}
.social-sharing > span span a {
    display: inline-flex;
    width: 100%;
    height: 100%;
}
.social-sharing > span span.facebook a {
    background: url(../images/fb.png) no-repeat center center;
    background-size: 100% auto;
}
.social-sharing > span span.twitter a {
    background: url(../images/tw.png) no-repeat center center;
    background-size: 100% auto;
}
.social-sharing > span span.pinterest a {
    background: url(../images/pint.png) no-repeat center center;
    background-size: 100% auto;
}

.product-comments-additional-info {
    font-size: 15px;
    margin-bottom: 2rem;
}
.comments-note > span {
    display: block;
}

.product-comment-list-item .comment-infos,
.product-comment-list-item .comment-content p {
    font-size: 16px;
}

.product-additional-info .tabs {
    padding: 0;
    margin-bottom: 2rem;
}

#productinfoForm {
    padding: 0;
}
#productinfoForm h4 {
    padding: 30px 30px 15px;
}
#productinfoForm .block_content {
    padding: 15px 30px 30px;
}
#productinfoForm .producto_presu,
#productinfoForm .row > div {
    padding: 6px;
}
#productinfoForm .row {
    margin: 0 -6px;
}
#productinfoForm .accept-form {
    width: 100%;
}
#productinfoForm .captcha-247 {
    padding: 0 6px !important;
}
#productinfoForm label {
    width: 100%;
}
#content-wrapper > #modal button.close {
    padding: 30px 30px 15px;
}

span.post-product-comment {
    cursor: pointer;
    /*font-weight: 600;
    padding: 8px;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    transition: all .3s linear;*/
}
span.post-product-comment:hover {
    /*background-color: var(--main-color);
    color: #ffffff;*/
    text-decoration: underline;
}

.btn-comment, .btn-comment-inverse {
    border-radius: 0;
    background-color: var(--main-color);
    color: #ffffff;
    font-size: 1rem;
    box-shadow: none;
}
.btn-comment:hover, .btn-comment-inverse:hover {
    background-color: #C82A48;
}

.product-accessories {
    text-align: center;
}

.accordion {
    max-width: 1220px;
    margin: 0 auto;
    padding: 3rem 0;
}

.ui-accordion .ui-accordion-header {
    background: transparent;
    border: 0;
    padding: 1em 2.2em 1em 1em;
    margin-top: 0px;
    border-radius: 0;
    border-top: 1px solid var(--main-text-color);
    transition: .3s background linear;
}
.ui-accordion .ui-accordion-header:hover {
    background: var(--megamenu-bg);
}
.ui-accordion .ui-accordion-header:first-child {
    border-top: 0;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
    left: inherit;
    right: 1em;
}
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
    color: var(--main-text-color);
    font-weight: 500;
    font-size: 1rem;
    font-family: var(--font-family-inter) !important;
}
.ui-accordion .ui-accordion-content,
.ui-accordion #product-details {
    border: 0;
    border-radius: 0;
    padding: 1em 1em;
    color: #737373;
    height: auto !important;
    opacity: 1;
}
.ui-accordion .ui-accordion-content p,
.ui-accordion .ui-accordion-content ul,
.ui-accordion .ui-accordion-content span,
.ui-accordion .ui-accordion-content a,
.ui-accordion #product-details p,
.ui-accordion #product-details ul,
.ui-accordion #product-details span,
.ui-accordion #product-details a {
    color: #737373 !important;
    font-weight: 300 !important;
    font-family: var(--font-family-inter) !important;
    font-size: 0.9rem !important;
}
.ui-accordion #product-details label {
    font-family: var(--font-family-inter) !important;
    font-size: 0.9rem !important;
}

.ui-accordion .attachment .h4 {
    margin-bottom: 0.5rem;
}
.ui-accordion .attachment > a {
    padding: 8px 12px;
    display: inline-block;
    background: var(--main-color);
    color: #ffffff !important;
    font-weight: 400 !important;
    margin-bottom: 1rem;
}
.ui-accordion .attachment > a:hover {
    background: #C82A48;
}


.page-content.page-cms {
    padding: 0;
}


form .form-group .form-control-label {
    width: 100%;
    text-align: left;
    font-weight: 500;
}
form .form-group .js-input-column {
    width: 100%;
}



/* CONTACTO */

body#contact #wrapper {
    background: linear-gradient(180deg, #F8F7F6 0%, #FFF 100%);
}

body#contact .card-block {
    padding: 0rem  !important;
}

body#contact .card {
    background: transparent;
}

body#contact .wpcf7 {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
}
body#contact span.wpcf7-form-control-wrap.captcha-247 {
    padding: 0.7rem;
}

body#contact form .row {
    margin-top: 1rem;
}

body#contact input.wpcf7-submit {
    text-transform: capitalize;
}

body#contact input.wpcf7-submit,
body#contact span.button_choosefile,
.btn-form input {
    background: var(--main-color) !important;
    display: inline-block;
    transition: .35s all 0s linear;
    border-width: 2px;
    border-style: solid;
    padding: 0.6rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    min-width: 182px;
    box-sizing: border-box;
    text-align: center;
    outline: none;
    text-transform: none;
    border: 1px solid var(--main-color) !important;
}
body#contact input.wpcf7-submit:hover,
body#contact span.button_choosefile:hover,
.btn-form input:hover {
    background: #98122b;
    border: 1px solid #98122b !important;
}

.product-comment-modal .btn-comment, .product-comment-modal .btn-comment-inverse {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 400;
}
.product-comment-modal label.form-label {
    font-size: .875rem;
    font-weight: 500;
}


/* LOGIN */

body#authentication #wrapper, body#registration #wrapper {
    background: linear-gradient(180deg, #F8F7F6 0%, #FFF 100%);
}

body#authentication div#content,
body#registration div#content {
    background: #F8F6F7;
    border-radius: 15px;
    padding: 0px;
}

body#authentication div#content section.login-form,
body#registration div#content section.register-form {
    padding: 2rem;
}

body#authentication div#content hr {
    display: none;
}

body#authentication .no-account {
    background: var(--main-color);
    border-radius: 0 0 15px 15px;
    padding: 1rem;
}

body#authentication .no-account a {
    color: white;
}

body#authentication h1,
body#registration h1,
body#pagenotfound h1 {
    text-align: center;
}

/* ABOUT US */

body.cms-id-4 #wrapper {
    background: linear-gradient(180deg, #F8F7F6 0%, #FFF 100%);
}

body.cms-id-4 #content .container {
    padding: 0 !important;
}

body.cms-id-4 .about-us {
    background: #F8F6F7;
    display: flex;
    align-items: center;
    margin: 1rem 0;
    border-radius: 15px;
    padding: 0 1rem;
}

body.cms-id-4 .contact-information .row{
    display: flex;
}

body.cms-id-4 .contact-information .row .col-3 {
    width: 25%;
    padding: 0.5rem;
}

body.cms-id-4 .col-3 div {
    background: #F8F6F7;
    height: 100%;
    padding: 1rem;
    border-radius: 15px;
}

body.cms-id-4 .col-3 div p {
    text-align: center;
}

body.cms-id-4 .rounded {
    border-radius: 10px;
}

/* BLOG */

#module-amazzingblog-blog #wrapper {
    background: linear-gradient(180deg, #F8F7F6 0%, #FFF 100%);
}
#module-amazzingblog-blog .card {
    padding: 0;
    background: transparent;
}

#module-amazzingblog-blog .ab-pagination {
    margin-bottom: 1rem;
    display: inline-block;
    width: 100%;
}
#module-amazzingblog-blog .npp-holder {
    display: none;
}

#module-amazzingblog-blog * {
    font-family: var(--font-family-inter) !important;
}

.post-item {
    height: 100%;
    background: #ffffff;
    border-radius: 15px;
}
.post-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.post-main-image {
    text-align: center;
}

.category-description * {
    background: transparent !important;
}

.post-item-title {
    margin-top: 1rem;
    font-weight: 500;
}

.post-page h1 {
    text-align: center;
    font-size: 2.11rem;
}
.post-main-image {
    max-width: 1280px;
    margin: 0 auto 1.5rem auto;
    border-radius: 25px;
}
.post-content {    
    max-width: 1280px;
    margin: 0 auto 4rem auto;
    font-size: 1rem;
}
.post-content a {
    color: var(--main-color);
    text-decoration: underline !important;
}

.ab-pagination {
  margin:16px 0;
  line-height:1;
  color:#4D5F65
}
.ab-pagination .pages>a,
.ab-pagination .pages>span {
    display:inline-block;
    border:1px solid #D0D8DB;
    outline:none;
    padding:0;
    width:32px;
    height:32px;
    line-height:30px;
    font-size:14px;
    text-align:center;
    font-weight:400;
    background:#FFF;
    color:#4D5F65;
}
.ab-pagination .pages>a:hover {
    background:#FAFAFA;
}
.ab-pagination .pages>span {
    font-weight:700;
    background:#ECEFF1;
    color:#4D5F65;
}
#module-amazzingblog-blog [class^="icon-"], #module-amazzingblog-blog [class*=" icon-"] {
    font: normal normal normal 14px/1 blogIcons !important;
}
.amazzingblog .ab-pagination i:before {
    font-size:12px;
}
.post-item-footer a,
a.item-readmore i {
    color: var(--main-color) !important;
}
/**/

.close_menu {
    background-color: var(--main-color) !important;
}
.close_menu .pull-left {
    display: none !important;
}
.close_menu .pull-right {
    text-indent: -9999px;
}
.close_menu .pull-right .mm_menus_back_icon {
    position: absolute;
    right: 12px;
    top: 17px;
}

.ets_mm_megamenu .arrow {
    top: 9px !important;
}
.ets_mm_megamenu .has-sub .arrow {
    display: none !important;
}


.custom_choosefile {
    border-radius: .5rem !important;
    overflow: hidden;
}
.wpcf7 label {
    font-weight: 500 !important;
}
.wpcf7 .form-control {
    padding: .7rem 1rem;
    border-radius: .5rem !important;
    color: var(--main-text-color) !important;
}
div.wpcf7 input[type="file"] {
    padding: .5rem 1rem;
}


/* --- */

@media (min-width: 768px) {

    #footer_sub_menu_2,
    #footer_sub_menu_4 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 15px;
    }

    #block_myaccount_infos {
        width: 20%;
    }

    .ets_mm_megamenu.sticky_enabled.scroll_heading {
        position: static !important;
    }
    .layout_layout1:not(.ybc_vertical_menu):not(.click_open_submenu) .mm_menus_li > a:before,
    .layout_layout1:not(.ybc_vertical_menu).click_open_submenu .mm_menus_li.open_li > a:before,
    .layout_layout1.ybc_vertical_menu:hover .ybc-menu-vertical-button:before,
    .layout_layout1:hover .ybc-menu-vertical-button .ybc-menu-button-toggle_icon_default .icon-bar,
    .ybc-menu-vertical-button.layout_layout1:hover,
    .layout_layout1 .mm_menus_li:hover,
    .layout_layout1:not(.ybc_vertical_menu):not(.click_open_submenu) .mm_menus_li:hover > a,
    .layout_layout1:not(.ybc_vertical_menu).click_open_submenu .mm_menus_li.open_li > a,
    .layout_layout1:not(.ybc_vertical_menu) .mm_menus_li.menu_hover > a,
    .ets_mm_megamenu.layout_layout1.ybc_vertical_menu:hover,
    #header .layout_layout1:not(.ybc_vertical_menu):not(.click_open_submenu) .mm_menus_li:hover > a,
    #header .layout_layout1:not(.ybc_vertical_menu).click_open_submenu .mm_menus_li.open_li > a,
    #header .layout_layout1:not(.ybc_vertical_menu) .mm_menus_li.menu_hover > a,
    .ets_mm_megamenu.layout_layout1.ybc_vertical_menu:hover {
        background: transparent !important;
        border-color: transparent !important
    }
}

@media only screen and (max-width: 1600px) {
    .mm_menus_ul .mm_menu_content_title {
        font-size: 16px !important;
    }
}
@media only screen and (max-width: 1475px) {
    .mm_menus_ul .mm_menu_content_title {
        padding: 0 0.5rem !important;
    }
}
@media only screen and (max-width: 1415px) {
    .mm_menus_ul .mm_menu_content_title {
        font-size: 15px !important;
    }
}
@media only screen and (max-width: 1350px) {
    .mm_menus_ul .mm_menu_content_title {
        padding: 0 0.3rem !important;
    }
}




@media only screen and (max-width: 1280px) {
    body.cms-id-4 .contact-information .row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .displayNav1 .custom-info-wrapper {
        gap: 1.5rem;
    }

    .wrapper_home_featured_products {
        padding: 0 0 3rem 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .wrapper_home_featured_products .home_featured_products_banner {
        width: 100%;
    }

    body#category #search_filters,
    body#category #search_filters_brands,
    body#category #search_filters_suppliers,
    body#category .block-categories {
        padding: 1rem;
        font-size: 16px;
    }

    .images-container .product-images > li.thumb-container {
        width: 25%;
    }


    .product-actions .add {
        padding-right: 0;
        width: calc(100% - 115px);
    }
    .product-actions .buttons_bottom_block {
        width: 100%;
    }
}

@media only screen and (max-width: 1199px) {
    .layout_layout1.ets_mm_megamenu .mm_columns_ul,
    .ets_mm_megamenu .mm_columns_ul {
        background-color: #FFFFFF !important;
        margin-top: 0 !important;
    }
    .transition_fadeInUp:not(.click_open_submenu) li:hover .mm_columns_ul,
    .transition_fade:not(.click_open_submenu) .mm_menus_li.mm_has_sub:hover .mm_columns_ul,
    .transition_fade.click_open_submenu .mm_menus_li.mm_has_sub .mm_columns_ul.open {        
        animation: none;
    }

    .displayNav1 .custom-info-wrapper .cb-item .custom-html {
        display: none;
    }
    .displayNav1 .custom-info-wrapper .cb-item:last-child .custom-html {
        display: block;
    }
}

@media only screen and (max-width: 1024px) {
    body.cms-id-4 .contact-information .row .col-3 {
        width: 33%;
        padding: 0.5rem;
    }

    body.cms-id-4 .about-us {
        padding: 2rem;
    }

    .wrapper_slider .slide_slider_contener .custom-html,
    .wrapper_slider .cb-item-content .cb-img {
        width: 50%;
        flex: 0 0 50%;
    }
    .wrapper_slider .sw-nav.prev {
        right: calc(50% - 50px);
    }

    /* MIRAR ESTO */
    body#contact form h3, body#contact .contact-rich h4 {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }
    /**/
}


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

    body, html {
        font-size: 16px;
    }
    .border_button, .green_button {
        min-width: 155px;
    }
    .product-miniature .product-actions button, .product-miniature .product-actions a {
        line-height: 25px;
    }

    .product-quantity .qty {
        height: 44px;
    }
    

    .wrapper_slider .cb-item-content {
        flex-direction: column;
    }
    .wrapper_slider .slide_slider_contener .custom-html,
    .wrapper_slider .cb-item-content .cb-img {
        width: 100%;
        flex: 0 0 100%;
    }
    .wrapper_slider .cb-item-content .cb-img {
        min-height: 208px;
    }
    .wrapper_slider .sw-nav.prev {
        right: inherit;
        left: 0;
    }
    .wrapper_slider .slide_slider_contener .custom-html {
        padding: 1.5rem 1rem;
    }
    .wrapper_slider .slide_slider_contener h2,
    .wrapper_slider .slide_slider_contener .h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .wrapper_slider .slide_slider_contener .p,
    .wrapper_slider .slide_slider_contener p {
        font-size: 1rem;
    }

    .images-container .product-images > li.thumb-container {
        width: 33.33%;
    }

    .form_2021 {
        display: flex;
        flex-direction: column;
    }
    .form_2021 .row {
        display: flex;
        gap: 1rem;
        flex-direction: column;
    }
    .form_2021 .row div {
        width: 100% !important;
    }

    body.cms-id-4 .about-us {
        display: flex;
        flex-direction: column;
    }
    body.cms-id-4 .about-us {
        padding: 1rem !important;
    }


    .wrapper_home_featured_products .home_featured_products_banner .cb-item-content {
        display: flex;
        flex-direction: column;
        justify-content: stretch;
    }
    .wrapper_home_featured_products .home_featured_products_banner .custom-html p > strong {
        transform: rotate(-5deg);
        margin-bottom: 1rem;
    }
    .cb-item.home_featured_products_banner .custom-html {
        height: 100%;
    }

    .offers-products .row {
        flex-direction: column;
        gap: 1rem;
    }
    .offers-products .row > div:first-child {
        width: 100%;
    }


    /*.ec-tabs-content .block_content .c_container {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .simple-grid.m-3 .c_col {
        width: 50%;
    }*/


    .displayNav1 .custom-info-wrapper .cb-item:last-child .custom-html {
        display: none;
    }


    body#authentication div#content .form-group.row {
        padding: 1rem;
    }
}

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

    .wrapper_pre_slider .banner_pre_slider_contener p strong {
        font-size: 1rem;
    }

    body#category .container > .row {
        display: flex;
        flex-direction: column-reverse;
    }
    body#category #products .up,
    body#category .filter-button {
        display: none !important;
    }
    body#category .sort-by-row .col-xs-8 {
        width: 100%;
    }

    #wrapper {
        padding-top: 139px;
    }

    .h1, h1, .post-page h1 {
        font-size: 1.8rem;
    }
    .h2, h2 {
        font-size: 1.46rem;
    }

    #header .header-top > .container > .row:first-of-type {
        justify-content: center;
    }
    #header .logo {
        max-width: 100%;
        height: 65px;
        width: auto;
    }
    #header .header-top .position-static {
        position: relative;
    }

    .ets_mm_megamenu_content {
        position: absolute;
        top: -75px;
        left: 0;
    }
    .ets_mm_megamenu_content .ybc-menu-toggle {
        font-size: 0;
    }
    .ets_mm_megamenu_content .ybc-menu-toggle .icon-bar {
        width: 30px;
        margin: 3px 3px 2px 0;
    }
    .ets_mm_megamenu_content .mm_menus_ul {
        font-size: 1rem;
    }

    #header #_desktop_cart .cart-contain, #header .user-info a,
    #header #_desktop_cart .cart-contain i, #header #_desktop_user_info i, #header #search_widget form i {
        width: 2rem;
    }

    #displayNavContener {
        position: absolute;
        top: -65px;
        right: -15px;
        z-index: 99;
    }

    #_desktop_cart .cart-preview .wk-order-product {
        flex-direction: column;
    }
    #_desktop_cart .cart-preview .cart-summary .label {
        font-size: 14px;
    }
    #_desktop_cart .cart-preview .cart-summary .value {
        font-size: 1rem;
    }
    #_desktop_cart .cart-preview .product-name a span {
        font-size: 0.8rem;
    }
    #_desktop_cart .cart-preview .wk-order-product .checkline-2 {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .wk-product-img, .wk-shipping-img, #_desktop_cart .cart-preview .wk-product-img {
        width: 40px;
        height: 40px;
    }
    #subcategories .subcategory-heading {
        font-size: 1.26rem;
        padding-right: 100px;
        line-height: 1.2;
        padding-top: 1rem;
    }
    #custom-text h2 {
        font-size: 1.43rem;
    }

    .wrapper_slider .sw-nav {
        display: none !important;
    }
    .wrapper_slider .buttons a {
        padding: 0.65rem 1rem;
        min-width: 130px;
    }
    .wrapper_slider .slide_slider_contener .buttons {
        gap: .5rem;
    }

    .advantages {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .advantages > div {
        width: 100%;
        max-width: 420px;
    }


    .images-container .product-images > li.thumb-container {
        width: 25%;
    }

    .wrapper_home_featured_products .home_featured_products_banner .cb-img {
        height: 220px;
    }
    .wrapper_home_featured_products .home_featured_products_banner .custom-html h3 {
        font-size: 1rem;
    }
    .wrapper_home_featured_products {
        grid-template-columns: 1fr;
    }
    .wrapper_home_featured_products .home_featured_products_banner .cb-item-content {
        flex-direction: row-reverse;
    }
    .cb-item.home_featured_products_banner .custom-html {
        height: auto;
    }

    .rounded {
        padding: 0;
    }
    .offers-products {
        padding: 4rem 1rem;
        clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
    }

    .easy_products_tabs .ec-tabs {
        flex-wrap: wrap;
    }
    /*.ec-tabs-content .block_content .c_container {
        grid-template-columns: 1fr;
    }*/
    .easycarousels .in_tabs.compact .ec-tabs li.carousel_title {
        border: 0 !important;
        margin-top: 0 !important;
        width: auto !important;
        display: inline-block; !important;
    }
    .compact li.responsive_tabs_selection {
        display: none !important;
    }
    .easy_products_tabs .ec-tabs li a {
        background: transparent !important;
    }
    .easy_products_tabs .ec-tabs {
        position: inherit !important;
        gap: 1rem;
        max-width: 100%;
        margin: 0 0 1.5rem 0;
    }


    .header-menu-contener {
        padding: 0 1rem;
    }

    body#contact form h3, body#contact .contact-rich h4 {
        flex-direction: row;
        align-items: center;
    }


    body.cms-id-4 .contact-information .row .col-3 {
        width: 100%;
    }


    footer .displayFooter {
        width: 100%;
    }
    footer #footer_links_block {
        width: 100%;
        padding-top: 1rem;
    }
    footer .wrapper_location {
        display: flex;
        flex-direction: column;
    }
    footer #footer_links_block .wrapper {
        width: 100%;
    }
    footer .wrapper_location .banner_location {
        width: 100%;
    }
    footer .wrapper_footer_after {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    footer .wrapper_footer_after > div {
        width: 100%;
    }
    footer .wrapper_footer_after ul {
        justify-content: center;
    }
    footer .wrapper_footer_after > div:last-child {
        text-align: center;
    }
    footer .wrapper_footer_after ul {
        flex-direction: column;
        align-items: center;
    }
}


@media only screen and (max-width: 580px) {
    .images-container .product-images > li.thumb-container {
        width: 33.33%;
    }
}

@media only screen and (max-width: 430px) {
    .products.swiper-products {
        padding: 0;
    }
    .products.swiper-products:before, .products.swiper-products:after {
        background: transparent;
    }
    .sw-nav.prev, .n-hover:hover .sw-nav.prev {
        left: 0;
    }
    .sw-nav.next, .n-hover:hover .sw-nav.next {
        right: 0;
    }
    .images-container .product-images > li.thumb-container picture {
        width: 65px;
        height: 65px;
    }
}