/** custom css */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --jsm-red:#ed1c24;
    --jsm-grey:#dbd7d8;
    --jsm-grey-medium:#4e5464;
    --jsm-raisin-black:#2d2727;
    --jsm-black:#010101;
    --jsm-grey-light:#EBEBEB;

    --BT-wrapper-background: #fff;
    --BT-footer-background: #fff;

    --BT-product-flag-new: #512da8;
    --BT-product-flag-discount:#00bb2d;
    --BT-product-flag-pack:#f57c00;
}
a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
    color: #ed1c24;
    text-decoration: none;
}
#subcategories ul li .subcategory-name:hover, .block-categories .arrows .arrow-down:hover, .block-categories .arrows .arrow-right:hover, .block-categories .collapse-icons .add:hover, .block-categories .collapse-icons .remove:hover, .cart-grid-body a.label:hover {
    color: #414141;
}    
    
html,body,
p, a, div,
textarea,
input, input::placeholder, select, textarea,
li,
td, th { font-family: 'Open Sans', sans-serif!important; }

h1, h2, h3, h4, h5, h6 { font-family: 'Roboto Slab', sans-serif!important; }
body { overflow-x: hidden;}

/** BUTTONS */
.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus { outline: none; outline-offset: -2px; }
.btn-primary, .btn-primary:hover { color: #fff; background-color: var(--jsm-black); }
.btn-primary:hover { background-color: var(--jsm-grey-medium); }

/** FORM ELEMENTS */
.form-control {
    padding: .5rem 1rem;
    color: var(--jsm-black);
    border: 1px solid #010101;
    border-radius: 0; }
    .form-control:focus { color: var(--jsm-black); outline: .1875rem solid var(--jsm-grey); border-color:#010101; }
    .input-group.focus { outline: .1875rem solid var(--jsm-grey); }
    .input-group .input-group-btn>.btn[data-action=show-password] { background: var(--jsm-black); }

/** HEADER */
#header {
    background: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 1px solid #ddd;
    width: 100%;
    transition: all .35s ease-in-out;
}
#header.header-sticky {
    position: fixed;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .11);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .11);
    top: 0;
    left: 0;
    right: 0;
    animation: slideDown 0.45s ease forwards;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

#header .header-nav {
    max-height: 50px;
    border-bottom: none;
    background: var(--jsm-black); }
#header.header-sticky .header-nav { display: none;}

#header .header-top { padding: .870rem 0; }
#header .header-top .position-static {
    display: flex;
    flex-direction: row;
    justify-content: flex-end; }

.blockshopinfo_nav { margin: .375rem 15px; }
.blockshopinfo_nav a, .blockshopinfo_nav span { color:#fff!important; font-size: .810rem; }

@media screen and (325px <= width < 767px) {
    #header .header-top { display:none; }
}
@media screen and (768px <= width < 991px) {
    #header .header-nav .left-nav { width:100%; }
    #header .header-nav .right-nav { display:none; }
    #header .header-top #_desktop_logo { width: 25%; }
    #header .header-top .position-static { width: 75%; }
}

@media screen and (992px <= width < 1199px) {
    #header .header-nav .left-nav { width:70%; }
    #header .header-nav .right-nav { width:30%; }
}

/** CUSTOMERSIGNIN */
#header .header-top .user-info { margin-top: 0!important; }
#header .header-top .user-info .btn-login {
    padding: .75rem .50rem;
    border: none;
    background: transparent;
}
#header .header-top .user-info .dropdown-menu { padding: 15px; }
#header .header-top .user-info a.sign-up {
    text-align: center;
    background: #010101;
    color: #fff!important;
    margin-bottom: 15px; }
    #header .header-top .user-info .btn-login span {
        background: #00bb2d;
        color: #fff;
        font-size: .625rem;
        padding: 1px 4px;
        margin-left: 7px;
    }
#header .header-top .user-info .dropdown-menu .dropdown-item.account { font-size: .850rem; font-weight: 500; }
#header .header-top .user-info .dropdown-menu .dropdown-item.account i { margin-right: 7px; }
#header .header-top .user-info .dropdown-menu .dropdown-item.logout{background:#010101;color:#fff;font-size:.8rem}
#header .header-top .user-info a.registration { text-align: center; }
#header .header-top .user-info a.registration strong { text-transform:uppercase; }

/** SHOPPING-CART */
#header .header-top .blockcart{position:relative;height:fit-content;padding:.75rem .50rem;margin-left:0;text-align:center;white-space:nowrap;background:transparent}
span.cart-products-count{display:inline-flex;background:var(--jsm-red);color:#fff;font-size:.790rem;width:20px;height:20px;align-items:center;justify-content:center;border-radius:50%}

/** SEARCH-BAR */
@media only screen and (min-width: 992px) {
  #header .header-top #search_widget { min-width: 22.5rem; overflow:hidden; }
}
#header .header-top #search_widget form input {
    padding: 13px 40px 7px 20px;
    background-color: #fff;
    font-size: .850rem;
    font-style: italic;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #ddd; }
    #header .header-top #search_widget form i { right: 1px; top: 8px; color:#010101; }

/** FOOTER */
.footer-container {
    padding-top: 4.5rem;
    background: var(--jsm-grey-light);
    border-top: 5px solid var(--jsm-grey);
}
.footer-copyright span { color: var(--jsm-black); }
.footer-container .h3, .footer-container .h4 {
    margin-bottom: 2rem;
    font-size: 1rem;
    color: var(--jsm-black);
    font-weight: 500;
}
.footer-container li a {
    font-size: .825rem;
    color: var(--jsm-black);
    transition: all .35s ease-in-out; }
    .footer-container li a:hover, .footer-container li a:focus { color:var(--jsm-black); }

.links li:before {
    content: '\f054';
    font-family: 'Font Awesome 6 Pro';
    color: var(--jsm-grey-medium);
    font-size: .6rem;
    margin-right: 5px;
    transition: all .35s ease-in-out; }
    .links li:hover:before { color: var(--jsm-red); margin-right:3px; }
    
.blockshopinfo .bsi_logo-footer img.logo { margin-bottom: 1rem; width:33%; }
.blockshopinfo ul li { font-size: 13px; line-height: 18px; color: var(--jsm-black); }
li.bsi_socialmedia-links-item a:hover, li.bsi_socialmedia-links-item a:focus, li.bsi_socialmedia-links-item a:active { color: var(--jsm-red); }

@media screen and (768px <= width) {
    .blockshopinfo-title { display: none; }
}

@media screen and (325px <= width < 767px) {
    .footer-container { padding-top: 2.5rem; }
    .blockshopinfo { text-align: left; }
    .blockshopinfo .bsi_logo-footer { margin-left: 25px; }
    .blockshopinfo .bsi_logo-footer img.logo { width: 40%; }
    .blockshopinfo-list { display:block!important; background:transparent!important; }
    .footer-container .blockshopinfo ul>li {
        padding: 0 15px 5px 30px;
        border-bottom: none;
        font-weight: 500;
    }
    .blockshopinfo ul.bsi_socialmedia-links{justify-content:flex-start;background:transparent!important;width:fit-content;position:absolute;top:0;right:25px;padding-top:0}
    .footer-container .blockshopinfo ul>li { padding: 0 15px 5px 15px; }
}
@media screen and (768px <= width < 991px) {
    
    .blockshopinfo { width: 100%; display: flex; flex-direction: row; margin-bottom:25px; }
    .blockshopinfo .blockshopinfo-list { display: flex; flex-direction: column; width:50%; }
    .blockshopinfo .bsi_logo-footer { margin-right:40px; display:block; width:33%; }
    .blockshopinfo .bsi_logo-footer img.logo { width: 90%; }
    .blockshopinfo ul.bsi_socialmedia-links { padding: 0; margin-left: 30px; }
    .footer-container .links { width:100%; }

}

@media screen and (992px <= width < 1199px) {
    .blockshopinfo .bsi_logo-footer img.logo { width: 45%; }
}
/** FOOTER-BAIRES */
.baires-footer-container { background: var(--jsm-grey-medium); }
.bairesfooter span.powered-by { color: var(--jsm-grey); }
.bairesfooter a._blank { font-size: .750rem; color: #fff; }

/** WRAPPER */
#wrapper { background:var(--BT-wrapper-background); }
body:not(#index) #wrapper {
    padding-top:0;
}
body#authentication #wrapper, body#registration #wrapper, body#cart #wrapper, body#checkout #wrapper { padding-top: 3.125rem; }

/** MEGAMENU */
.layout_layout1 .ets_mm_megamenu_content { border-bottom: none; border-top: none; }
@media (min-width:768px) {
    .layout_layout1 .ets_mm_megamenu_content { background: #fff!important; }
    #header .layout_layout1:not(.ybc_vertical_menu) .mm_menus_li > a, .layout_layout1 .ybc-menu-vertical-button, .layout_layout1 .mm_extra_item * { color: var(--jsm-black); }
    .layout_layout1 .mm_menus_li > a:before { display: none; }
}
.layout_layout1 .mm_menus_li:nth-child(2) { border-left: none; }
.layout_layout1 .mm_menus_li:last-child, .layout_layout1 .mm_menus_li { border-right: none; }
.mm_menus_li > a {
    font-size: .950rem!important;
    font-weight: 600;
}
.mm_menu_content_title {
    padding: 0 20px;
    min-height: 36px;
    transition: all .35s ease-in-out;
}
li.mm_menus_li.mm_sub_align_full a.ets_mm_url .mm_menu_content_title { color: var(--jsm-black); }
li.mm_menus_li.mm_sub_align_full a.ets_mm_url .mm_menu_content_title:hover { color: var(--jsm-red); }
li.mm_menus_li.mm_menus_li_tab.mm_sub_align_full a.ets_mm_url .mm_menu_content_title { color: #fff; }

@media (max-width:1199px) and (min-width:768px) {
    .changestatus.ets_mm_megamenu.hook-custom { margin-top: 0; }
    li.mm_menus_li.mm_menus_li_tab a { background: var(--jsm-red)!important; }
}

/* BREADCRUMB */
#wrapper .breadcrumb {
    padding: 0;
    background: 0 0;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    background: var(--jsm-grey-light);
    border-bottom: 2px solid var(--jsm-grey);
}
#wrapper .breadcrumb ol {
    border-bottom: none;
    padding: 10px 5px 10px 3px;
    font-size: .820rem;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (325px <= width < 767px) {
    #wrapper .breadcrumb ol { padding-left:25px; padding-right: 25px; }
}
@media screen and (768px <= width < 991px) {
    #wrapper .breadcrumb ol { padding-left:25px; padding-right: 25px; }
}
@media screen and (992px <= width < 1199px) {
    #wrapper .breadcrumb ol { padding-left:25px; padding-right: 25px; }
}

/** CUSTOM-TEXT WELCOME */
.custom-text-welcome {
    padding: 3.125rem;
    text-align: center;
}
.custom-text-welcome h2 { font-size: 2.3rem; }
.custom-text-welcome div.welcome-icons { padding-top:20px; }
.custom-text-welcome div.welcome-icons i {
    font-size: 3.5rem;
    margin-right: 10px;
    margin-left: 10px;
    color: var(--jsm-red);
}
@media screen and (325px <= width < 767px) {
    .custom-text-welcome h2 { font-size: 1.3rem; line-height: 1.9rem; }
}
@media screen and (768px <= width < 991px) {
    .custom-text-welcome h2 { font-size: 1.8rem; }
}

/** PRODUCTS SECTION TITLE */
#products .products-section-title, .featured-products .products-section-title, .product-accessories .products-section-title {
    margin: 2.5rem 0;
    padding-bottom:15px;
    font-weight: 600;
    text-align: center;
    font-size: 1.625rem;
    color: var(--jsm-black);
    position: relative; }
    #products .products-section-title:after,.featured-products .products-section-title:after,.product-accessories .products-section-title:after{content:'';width:15%;background:#010101;height:3px;position:absolute;bottom:0;left:calc(50% - 15%)}
    #products .products-section-title:before,.featured-products .products-section-title:before,.product-accessories .products-section-title:before{content:'';width:15%;background:var(--jsm-red);height:3px;position:absolute;bottom:0;left:calc(50%)}
#products .all-product-link, .featured-products .all-product-link, .product-accessories .all-product-link { border-radius: 0; }

/** MANUFACTURER SLIDER */
div#ybc-mnf-block .ybc-mnf-block-title { display: none; }

/** CUSTOM-TEXT => QUIENES SOMOS HOME */
#custom-text {
    padding: 3.125rem 3.125rem 2.125rem 3.125rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border-radius: 2px;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    background: var(--jsm-grey-light);
    border-bottom: 4px solid var(--jsm-grey);
}
#custom-text h2 {
    color: var(--jsm-black);
    text-transform: uppercase;
    margin-top: 25px;
    margin-bottom: 1rem;
}
#custom-text p.custom-text-text { width:40%; display:block; margin-left: auto; margin-right:auto; }
#custom-text a.custom-text-link {
    border: 1px solid var(--jsm-red);
    padding: 6px 15px;
    display: inline-block;
    margin-top: 20px;
    font-size: .850rem;
    color: var(--jsm-red);
    text-transform: uppercase;
    transition: all .35s ease-in-out; }
    #custom-text a.custom-text-link:hover, #custom-text a.custom-text-link:focus { background:var(--jsm-red); color: #fff; }

@media screen and (992px <= width < 1199px) {
    #custom-text p.custom-text-text { width: 60%; }
}
@media screen and (768px <= width < 991px) {
    #custom-text p.custom-text-text { width: 80%; }
}
@media screen and (325px <= width < 767px) {
    #custom-text p.custom-text-text { width: 100% }
}

/** SECTION BANNER ENVIO */
section.banner-home-envios {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-top:3rem;
    background: var(--jsm-red);
    padding: 3.125rem;
    min-height: 250px; }
section.banner-home-envios > .container { display: flex; flex-direction: row; }
section.banner-home-envios .home-envios-icon { display: flex; align-items: center; justify-content: center; width: 50%; }
section.banner-home-envios .home-envios-text {
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: center;
}
section.banner-home-envios .home-envios-text ul li {
    position: relative;
    font-size: 1.4rem;
    line-height: 1.9rem;
    color: #fff;
    padding-bottom: 20px;
    padding-left:35px; }
    section.banner-home-envios .home-envios-text ul li:before {
        content: '\f32b';
        font-family: 'Font Awesome 6 Pro';
        display: inline-block;
        margin-right: 10px;
        font-size: 1.5rem;
        color: #fff;
        position: absolute;
        left:0;
    }
    section.banner-home-envios .home-envios-text a.home-envios-button {
        border: 1px solid #fff;
        width: fit-content;
        padding: 8px 15px;
        color: var(--jsm-black);
        background: #fff;
        text-transform: uppercase;
        font-size: .850rem;
        font-weight: 500;
    }

@media screen and (325px <= width < 767px) {
    section.banner-home-envios { padding: 2.125rem; }
    section.banner-home-envios > .container { flex-direction: column; }
    section.banner-home-envios .home-envios-icon, section.banner-home-envios .home-envios-text { width: 100%; }
    section.banner-home-envios .home-envios-icon img { width: 45%; }
    section.banner-home-envios .home-envios-text { align-items: center; }
    section.banner-home-envios .home-envios-text ul { margin-top: 25px; }
    section.banner-home-envios .home-envios-text ul li { font-size: 1.2rem; line-height: 1.5rem; }
    section.banner-home-envios .home-envios-text ul li:before { font-size: 1.3rem; }

}
@media screen and (768px <= width < 992px) {
    section.banner-home-envios .home-envios-icon img { width: 60%; }
    section.banner-home-envios .home-envios-text ul li { font-size: 1.1rem; line-height: 1.5rem; }
}

/** PRODUCT FLAGS */
.product-flags { flex-direction:column; }
.product-flags li.product-flag {
    padding: .1rem .5rem;
    margin-top: .325rem;
    font-size: .720rem;
    border-radius: 0;
}

/** PRODUCT THUMBNAILS */
.product-miniature .thumbnail-container { border-radius: 0; border: 1px solid var(--jsm-grey); }
.product-miniature .product-price-and-shipping .price.promo-price, .promo-price, .product-miniature .product-price-and-shipping .price { color: var(--jsm-black); font-size:1.1rem; font-weight:500; }
.product-miniature .regular-price { font-weight: 500; }
.product-price-and-shipping .btn-add-to-cart, .quickview .add .btn-add-to-cart {
    border-radius: 0;
    background: var(--jsm-black);
    border-color: var(--jsm-black);
    padding: 8px 20px;
    text-transform: uppercase;
    font-size: .750rem; }
    .product-price-and-shipping .btn-add-to-cart:hover, .quickview .add .btn-add-to-cart:hover { background:var(--jsm-grey-medium) }

@media screen and (325px <= width < 767px) {
    .product-price-and-shipping .btn-add-to-cart, .quickview .add .btn-add-to-cart { padding: 8px 12px; }
}

/** MODAL QUICKVIEW */ 
.quickview .modal-content { background: #fff; }

/** MODAL BLOCKCART */
div#blockcart-modal .blockcart-buttons .btn-info { background: var(--jsm-black); border-color: var(--jsm-black); }
#blockcart-modal .product-name { color: var(--jsm-black); }

/** PAGE: AUTHENTICATION - REGISTRATION */
body#authentication .page-header h1 p.welcome-message,
body#registration .page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--jsm-black);
    font-family: 'Roboto Slab', sans-serif!important;
}
body#authentication .page-header h1 span {
    font-size: 1.3rem;
    color: var(--jsm-grey-medium);
}
.page-customer-account #content .forgot-password a { color: var(--jsm-red); }
body#authentication .no-account a {
    border: 1px solid #010101;
    border-radius: 0;
    color: var(--jsm-black); }
    body#authentication .no-account a:hover, body#authentication .no-account a:focus { background:var(--jsm-black); color:#fff;}
body#registration section.register-form .form-footer { display: flex; justify-content: center; }
section.register-form .form-footer button{background:var(--jsm-black);border-color:var(--jsm-black);width:90%}
section.register-form .login-link a { color: var(--jsm-black); font-weight: 600; }

/** PAGE: PRODUCT */
body#product div#content-wrapper { padding-top: 30px; }
.product-images>li.thumb-container .thumb.selected, .product-images>li.thumb-container .thumb:hover { border: var(--jsm-red) 3px solid; }
.product-actions .add-to-cart { background: var(--jsm-black); border-color: var(--jsm-black); }
.product-actions .add-to-cart:hover, .product-actions .add-to-cart:focus { background: var(--jsm-grey-medium); }


.tabs {
    padding: 3.125rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    border: none;
    border-top: 2px solid var(--jsm-grey);
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    background: var(--jsm-grey-light);
}
.tabs h2.product-section-title{text-align:left;margin-bottom:30px;font-size:2.2rem;max-width:1140px;margin-left:auto;margin-right:auto}
.tabs .nav-tabs {
    justify-content: flex-start;
    border: 0;
    border-bottom: none;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}
.tabs .tab-content { max-width:1140px; margin-left:auto; margin-right:auto;}
.tabs .nav-tabs .nav-link {
    font-size: .820rem;
    font-weight: 500;
    color: var(--jsm-black);
    border: 0 solid transparent;
    text-transform: uppercase;
}
.tabs .nav-tabs .nav-link.active, .tabs .nav-tabs .nav-link:hover {
    border: 0;
    border-bottom: var(--jsm-red) 3px solid;
    color: var(--jsm-red);
    background:transparent;
}

/** PAGE: CATEGORY */
@media screen and (768px <= width < 991px) {
    div#js-product-list-top { display: flex; }
    #js-product-list-top .total-products, #js-product-list-top .col-lg-7 { width: 50%; }
}

/** PAGE: CART - CHECKOUT */
.card.cart-summary {
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.cart-overview.js-cart { border: 1px solid #eee; border-radius: 5px; }
body#checkout .cart-grid-right .card { border: 1px solid #ddd; border-radius: 5px; }
body#checkout #header .header-nav { background: #fff; }
body#checkout .blockshopinfo_nav a, body#checkout .blockshopinfo_nav span { color: var(--jsm-black)!important; }
body#checkout .blockshopinfo_nav { margin-bottom: 9px; }
body#checkout .header-nav a.btn.btn-secondary { background: var(--jsm-black); color: #fff; }
body#checkout #footer { padding: 0; }

.block-promo.promo-highlighted { padding: .5rem 1rem; font-weight: 600; color: #fff; background: #00bb2d; }
.cart-grid-right .promo-discounts .cart-summary-line .label { font-size: .9rem; color: #010101; }
span.cart-label-aclaracion {
    text-align: center;
    display: block;
    font-size: .8rem;
    background: #ffebee;
    padding: .5rem;
    border-radius: .5rem;
    border: 1px dashed;
    border-color: #ef5350;
}
@media screen and (325px <= width < 767px) {
    .card-block h1 { padding-left: 20px; }
    .product-line-grid-right.product-line-actions { padding-top:10px; }
    .product-line-grid-right.product-line-actions .col-xs-4.hidden-md-up { display: none;}
    .product-line-grid-right.product-line-actions .col-xs-6 { width:75%; }
    .card.cart-summary { padding:20px; }
    body#checkout .cart-grid-right .card { padding: 20px; }
}

@media screen and (768px <= width < 991px) {
    body#checkout .blockshopinfo_nav { display: none; }
    body#checkout .header-nav a.btn.btn-secondary { margin-top: 20px; }
}
@media screen and (992px <= width < 1199px) {
    body#checkout .header-nav #_desktop_logo { width: 25%; }
    body#checkout .header-nav #_desktop_logo + .col-md-8 { width: 75%; }
}

/** RESPONSIVE MENU */
.rm-body-with-header { padding-top: 60px; }
.rm-header, #footer .rm-header { height: 60px; border-bottom: 2px solid var(--jsm-grey); box-shadow: none; }
.rm-header .rm-lo go-container { height: 60px; }
.rm-header .rm-logo img { width: 102px; }
.rm-header .rm-icon-container { margin-top: 9px; }
.rm-header .rm-trigger, #footer .rm-header .rm-trigger { color: var(--jsm-black); text-align: center; }
.rm-header .rm-cart .count,#footer .rm-header .rm-cart .count{top:-4px;left:21px;border-radius:100%;background:var(--jsm-red);width:23px;height:23px}
.rm-login-bar { background: var(--jsm-black); }


/** MEDIA-QUERIES */
@media screen and (325px <= width < 767px) {}
@media screen and (768px <= width < 991px) {}
@media screen and (992px <= width < 1199px) {}
@media screen and (1200px <= width < 1400px) {}
@media screen and (1401px <= width) {}