/* Variables CSS movidas al head para carga crítica */

/* catamaran-regular - latin */
@font-face {
    font-family: "Catamaran";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/catamaran/catamaran-v17-latin-regular.eot"); /* IE9 Compat Modes */
    src: local(""),
        url("../fonts/catamaran/catamaran-v17-latin-regular.eot?#iefix")
            format("embedded-opentype"),
        /* IE6-IE8 */
            url("../fonts/catamaran/catamaran-v17-latin-regular.woff2")
            format("woff2"),
        /* Super Modern Browsers */
            url("../fonts/catamaran/catamaran-v17-latin-regular.woff")
            format("woff"),
        /* Modern Browsers */
            url("../fonts/catamaran/catamaran-v17-latin-regular.ttf")
            format("truetype"),
        /* Safari, Android, iOS */
            url("../fonts/catamaran/catamaran-v17-latin-regular.svg#Catamaran")
            format("svg"); /* Legacy iOS */
}
/* catamaran-500 - latin */
@font-face {
    font-family: "Catamaran";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/catamaran/catamaran-v17-latin-500.eot"); /* IE9 Compat Modes */
    src: local(""),
        url("../fonts/catamaran/catamaran-v17-latin-500.eot?#iefix")
            format("embedded-opentype"),
        /* IE6-IE8 */ url("../fonts/catamaran/catamaran-v17-latin-500.woff2")
            format("woff2"),
        /* Super Modern Browsers */
            url("../fonts/catamaran/catamaran-v17-latin-500.woff")
            format("woff"),
        /* Modern Browsers */
            url("../fonts/catamaran/catamaran-v17-latin-500.ttf")
            format("truetype"),
        /* Safari, Android, iOS */
            url("../fonts/catamaran/catamaran-v17-latin-500.svg#Catamaran")
            format("svg"); /* Legacy iOS */
}
/* catamaran-600 - latin */
@font-face {
    font-family: "Catamaran";
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/catamaran/catamaran-v17-latin-600.eot"); /* IE9 Compat Modes */
    src: local(""),
        url("../fonts/catamaran/catamaran-v17-latin-600.eot?#iefix")
            format("embedded-opentype"),
        /* IE6-IE8 */ url("../fonts/catamaran/catamaran-v17-latin-600.woff2")
            format("woff2"),
        /* Super Modern Browsers */
            url("../fonts/catamaran/catamaran-v17-latin-600.woff")
            format("woff"),
        /* Modern Browsers */
            url("../fonts/catamaran/catamaran-v17-latin-600.ttf")
            format("truetype"),
        /* Safari, Android, iOS */
            url("../fonts/catamaran/catamaran-v17-latin-600.svg#Catamaran")
            format("svg"); /* Legacy iOS */
}
/* catamaran-700 - latin */
@font-face {
    font-family: "Catamaran";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/catamaran/catamaran-v17-latin-700.eot"); /* IE9 Compat Modes */
    src: local(""),
        url("../fonts/catamaran/catamaran-v17-latin-700.eot?#iefix")
            format("embedded-opentype"),
        /* IE6-IE8 */ url("../fonts/catamaran/catamaran-v17-latin-700.woff2")
            format("woff2"),
        /* Super Modern Browsers */
            url("../fonts/catamaran/catamaran-v17-latin-700.woff")
            format("woff"),
        /* Modern Browsers */
            url("../fonts/catamaran/catamaran-v17-latin-700.ttf")
            format("truetype"),
        /* Safari, Android, iOS */
            url("../fonts/catamaran/catamaran-v17-latin-700.svg#Catamaran")
            format("svg"); /* Legacy iOS */
}

body,
a,
p,
.page-header h1 {
    font-family: "Catamaran", sans-serif;
}
body,
p {
    color: #111;
    font-weight: 400;
}
.container-fluid {
    max-width: 1428px;
}
.btn-primary:not(.btn-newsletter),
.btn-outline-primary-2 {
    border-radius: 3px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.2px;

    line-height: 1;
    border-radius: 3px;
    padding: 16px 32px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    background-color: var(--colorPrincipal);
    border-color: var(--colorPrincipal);
}
.btn-outline-primary-2:not(:hover):not(:focus) {
    color: var(--colorPrincipal);
}
.form-control {
    color: #111;
    background-color: #f5f5f5;
    border: 1px solid #f5f5f5;
}

.floating {
    margin-bottom: 2rem;
    background-color: transparent;
    transition: background-color 0.2s ease;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.floating:hover,
.floating:focus-within {
    background-color: transparent;
}

.floating__input {
    padding: 0.85rem 2rem 0;
    font-size: 1.4rem;
    /* border-bottom: 0.1rem solid #ced4da; */
    transition: border-color 0.2s ease;
    caret-color: var(--colorPrincipal);
}

.floating:hover .floating__input {
    border-color: var(--colorPrincipal);
}

.floating__input::placeholder {
    color: rgba(0, 0, 0, 0);
}

.floating__label {
    display: block;
    position: relative;
    max-height: 0;
    font-weight: 500;
    pointer-events: none;
}

.floating__label::before {
    color: #333;
    content: attr(data-content);
    display: inline-block;
    filter: blur(0);
    backface-visibility: hidden;
    transform-origin: left top;
    transition: transform 0.2s ease;
    left: 2rem;
    position: relative;
}

.floating__label::after {
    bottom: 1rem;
    content: "";
    height: 0.1rem;
    position: absolute;
    transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1),
        opacity 180ms cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
    opacity: 0;
    left: 0;
    top: 100%;
    margin-top: -0.1rem;
    transform: scale3d(0, 1, 1);
    width: 100%;
    background-color: var(--colorPrincipal);
}

.floating__input:focus + .floating__label::after {
    transform: scale3d(1, 1, 1);
    opacity: 1;
}

.floating__input:placeholder-shown + .floating__label::before {
    transform: translate3d(0, -31.5px, 0) scale3d(1, 1, 1);
}

.floating__label::before,
.floating__input:focus + .floating__label::before {
    transform: translate3d(0, -39px, 0) scale3d(0.82, 0.82, 1);
}

.floating__input:focus + .floating__label::before {
    color: var(--colorPrincipal);
}

.floating input,
.floating select {
    background: #f5f5f5;
    display: block;
    width: 100%;
    border: 2px solid #f5f5f5;
}

.floating fieldset {
    padding: 3rem 2rem 1.5rem;
}

.floating legend {
    padding: 0 0.5rem;
}

.hidden--visually {
    border: 0;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.floating .floating__input:focus-visible,
.floating:hover .floating__input:focus-visible {
    outline: 0;
}
.page-header {
    background-color: #ffffff;
}
.page-header h1 {
    font-weight: 700;
}
/* header */
.header-top.py-3 {
    background-color: var(--colorPrincipal);
}
.header-11,
.header-11 .sticky-header.fixed {
    background-color: var(--colorPrincipal);
}
.header-11 {
    position: relative;
}
.notification {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 1.3rem 0;
}
.notification .notify-content h3 {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 0;
}
.header-top,
.header-top p {
    color: #fff;
}
.header-top a.account-toggle:hover,
.header-top a.account-toggle:focus {
    color: #fff;
}
.owl-theme.owl-light .owl-nav [class*="owl-"] {
    border: 0;
    background-color: transparent !important;
}
.owl-theme.owl-nav-inside .owl-nav .owl-prev {
    left: 0;
}
.owl-theme.owl-nav-inside .owl-nav .owl-next {
    right: 0;
}
.header-top .container:after,
.header-top .container-fluid:after {
    display: none;
}
.header.header-11 .header-middle .menu > li > a {
    font-weight: 600;
    font-size: 16px;
    text-transform: none;
    padding-right: 0;
}
.menu.sf-arrows .sf-with-ul::after {
    right: -14px;
}
.cart-dropdown .cart-count {
    background-color: var(--colorSecundario);
}
.menu li:hover > a,
.menu li.show > a,
.menu li.active > a {
    color: var(--colorSecundario);
}

.dropdown-menu.dropdown-menu-right {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0 !important;
    max-width: 400px;
    width: 100%;
    padding: 0;
    border-radius: 0;
    -webkit-transform: translate(500px);
    transform: translate(500px);
    transition: transform 0.2s ease-in-out 0s;
    background-color: #fff;
    z-index: 9999;
    overflow-y: auto;
    box-shadow: 0 0.5rem 2rem rgb(0 0 0 / 25%);
}
.cart-dropdown .product {
    background-color: transparent;
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.product-cart-price {
    font-size: 14px;
    font-weight: 700;
}
.cart-dropdown .product-title a {
    color: #111;
}
.dropdown-cart-total {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: none;
    color: #111;
}
.dropdown-cart-total .cart-total-price {
    font-size: 1.8rem;
}
.dropdown-cart-action .btn {
    font-size: 1.6rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.2px;
}
.cart-dropdown .btn-remove,
.compare-dropdown .btn-remove {
    position: relative;
    right: unset;
    margin-top: 0;
}
.btn-remove svg {
    min-width: 28px;
}
.btn-clean {
    background: transparent;
    border: 0;
    font-size: 13px;
    margin-left: auto;
    color: #858583;
    padding: 0;
}
.account .dropdown-menu,
.dropdown-cart-header,
.dropdown-cart-footer {
    padding: 20px;
}
.account-item-title a,
.account-item-title button {
    color: #111;
    font-weight: 500;
}
.dropdown-menu.dropdown-menu-right.show {
    -webkit-transform: translate(0);
    transform: translate(0);
    transition: transform 0.3s ease-in-out 0s;
}
.dropdown.show .sidebar-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    opacity: 0.7;
    z-index: 8999;
    cursor: pointer;
}
.cart-dropdown .product-image-container {
    max-width: 73px;
    margin-left: unset;
}
.cart-dropdown .dropdown-cart-products {
    margin-top: 0;
}
a.cart-close {
    cursor: pointer;
}
a.cart-close svg.icon {
    width: 16px;
    height: 16px;
}
.header-search-extended .form-control {
    border-radius: 0;
    color: #fff;
}
.header.header-11 .header-search-extended .btn.btn-primary:hover,
.header.header-11 .header-search-extended .btn.btn-primary:focus,
.header.header-11 .header-search-extended .btn.btn-primary:active {
    color: #ffffff;
}
.account-toggle:after {
    display: none;
}
.header-search-extended .btn {
    max-width: fit-content;
}
/* menu */

.header .container-fluid .megamenu-container .megamenu {
    right: auto;
    width: 50vw;
    height: 93vh;
    padding-top: 0;
    overflow-y: auto;
}
.header .container-fluid .megamenu-container {
    position: initial;
}

.menu .megamenu {
    height: auto;
    width: 100%;
    left: 0;
    padding-top: 8px;
    padding-bottom: 8px;
}
.megamenu-overlay {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(25, 25, 25, 0.4);
    z-index: 1000;
    transition: all 0.4s;
}
.menu .megamenu,
.menu ul {
    background-color: transparent;
}
.menu li > a {
    color: #000000;
    font-size: 16px;
}
/* menu mobile */
.mobile-menu-light .mobile-search .form-control {
    color: #111;
    background-color: #f5f5f5;
    border-color: #f5f5f5;
    font-size: 16px;
}
.mobile-search {
    background: #f5f5f5;
}
.mobile-search .btn-primary {
    color: #111;
    background-color: #f5f5f5;
    border-color: #f5f5f5;
    font-size: 24px;
}
.mobile-nav,
.mobile-menu-container .social-icons {
    background-color: #f5f5f5;
}
.mobile-menu > li > a {
    text-transform: none;
}
.mobile-menu-light .mobile-menu li a,
.mobile-menu-light .mobile-menu li a:not(:hover):not(:focus) {
    color: #111;
    font-weight: 700;
}
.mobile-menu-container {
    font-size: 1.8rem;
    left: -100vw;
    max-width: 100vw;
}
.mmenu-active .mobile-menu-container {
    transform: translateX(100vw);
}
.mobile-menu-light .mobile-menu-close:not(:hover):not(:focus) {
    font-size: 27px;
    color: #111;
}
.mobile-menu-light .social-icon {
    color: #111;
    border-color: transparent;
    font-size: 24px;
}
.mobile-menu-footer-link {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
.mobile-menu-footer-link svg {
    width: 30px;
}
.mobile-menu-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 0;
}
.space {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
/* index */
.custom-shape-divider-bottom-1648824604 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1648824604 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1648824604 .shape-fill {
    fill: #ffffff;
}
.container-fluid.banners .banner img {
    aspect-ratio: 1;
    object-fit: cover;
}
/*  */
.custom-shape-divider-top-1648824668 {
    position: absolute;
    z-index: 1;
    top: -6px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1648824668 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
    transform: rotateY(180deg);
}

.custom-shape-divider-top-1648824668 .shape-fill {
    fill: #ffffff;
}

.banner-cat .banner-title {
    font-weight: 700;
    text-transform: uppercase;
}
.sidebar-home {
    margin-bottom: 0;
}
.sidebar-home .product {
    margin-bottom: 0;
    height: 100%;
}
.sidebar-home .product img {
    max-height: 319px;
    object-fit: cover;
}
.bg-primary .owl-simple .owl-nav [class*="owl-"]:not(.disabled):hover {
    color: #fff;
}
/* ficha */
.product {
    display: flex;
    flex-direction: column;
}
.product,
.product-body {
    background-color: #f5f5f5;
}
.product .product-body {
    padding: 1.6rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1 1;
}
.product-price {
    font-size: 1.6rem;
}
.product .product-media {
    background-color: #f5f5f5;
    padding: 8px;
}
.product-cat a {
    color: #5b5f7b;
}
.product-title {
    font-size: 18px;
    font-weight: 600;
    flex: 1 1;
}
.product-body .btn-wishlist {
    position: relative;
    top: 0;
    right: 0;
    justify-content: flex-end;
    font-weight: 800;
}

.modal.modal-fav .modal-content {
    max-width: 400px;
    margin: 0 auto;
}

.modal.modal-fav .modal-body {
    display: grid;
    grid-template-areas: "c-img c-description";
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.modal.modal-fav .modal-body > .product-description {
    grid-area: c-description;
}

.modal.modal-fav .product-img-wrapper {
    grid-area: c-img;
}

.modal.modal-fav .product-img-wrapper > img {
    max-height: 150px;
    width: 100%;
    object-fit: contain;
}

.modal.modal-fav .modal-title {
    font-weight: 900;
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.modal.modal-fav .old-price {
    font-size: inherit;
}
/* catalogo */
.widget-collapsible .widget-title a.collapsed:after {
    content: "\f2c2";
}
.widget-collapsible .widget-title a:after {
    content: "\f28e";
}
.toolbox-info h3 {
    font-weight: 700;
}
.toolbox .select-custom .form-control {
    border: 0;
    font-size: 16px;
    min-width: 200px;
    background-color: #f5f5f5;
    color: #2c2c2c;
}
.toolbox select.form-control:not([size]):not([multiple]) {
    height: 44px;
}
.widget-collapsible .widget-title a {
    font-weight: 700;
}
.filter-pill .custom-control label {
    border: 1px solid #f5f5f5;
    padding: 4px 8px;
    background-color: #f5f5f5;
    transition: all ease 0.2s;
}
.product-details .filter-pill .custom-control label {
    border: 1px solid #fff;
    background-color: #fff;
}
.custom-control-label::before {
    top: 0;
}
.custom-control-label::after {
    top: 0;
}
.filter-pill .custom-control label:hover {
    background: #eee;
    cursor: pointer;
}

.filter-pill .custom-control-label {
    cursor: pointer;
}

.filter-pill .custom-control-label::before,
.filter-pill .custom-control-label::after {
    display: none;
}

.filter-pill input[type="checkbox"]:checked + label {
    border: 1px solid var(--colorPrincipal);
    background-color: var(--colorPrincipal);
    color: #fff;
}
.product-details .filter-pill input[type="radio"]:checked + label {
    background-color: var(--colorPrincipal);
    font-weight: 700;
    color: #fff;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 3px 6px;
}
.filter-pill {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}
.filter-pill .custom-control {
    padding: 0;
    height: 100%;
}
.filter-pill .custom-control label {
    display: flex;
    margin: 0;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    line-height: 14px;
}

.toolbox.row {
    flex-direction: row;
    gap: 15px 0px;
    padding-left: 1rem;
}
.toolbox-left,
.toolbox-right {
    flex: 1 1 100%;
    padding-right: 2rem;
}
.toolbox-right {
    justify-content: flex-end;
}
.sidebar-toggler {
    background-color: #f5f5f5;
    border-color: #f5f5f5;
    height: 44px;
    min-width: 100%;
}
.noUi-connect {
    background: var(--colorPrincipal);
}
@media (max-width: 991.9px) {
    .sidebar-filter-responsive {
        position: fixed;
        left: -350px;
        top: 0;
        bottom: 0;
        z-index: 1001;
        background-color: #fff;
        margin-top: 0;
        width: 100%;
        max-width: 350px;
        overflow-y: scroll;
        box-shadow: 0.1rem 0 0.6rem 0 rgba(51, 51, 51, 0.5);
        will-change: transform;
        visibility: hidden;
        transition: all 0.35s;
    }
    .sidebar-filter-active .sidebar-filter-responsive {
        visibility: visible;
        transform: translateX(350px);
    }
    .product-action {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
    .toolbox {
        min-height: 75px;
    }
}
/* producto */
.product-details-action .btn-cart {
    padding: 1.4rem 1.5rem;
    max-width: 100%;
    color: #ffffff;
    border: 0.1rem solid var(--colorPrincipal);
    background-color: var(--colorPrincipal);
}
.product-details-action {
    flex-direction: column;
    row-gap: 20px;
}
.product-details-action .btn-cart span {
    font-weight: 700;
    font-size: 18px;
}
.product-details-action .btn-cart:before,
.btn-cart:before {
    display: none;
}
.btn-product span {
    color: #000000;
    font-weight: 700;
}
.details-action-wrapper .btn-product span {
    font-size: 1.6rem;
}
.details-action-wrapper .btn-product.btn-wishlist:before {
    font-weight: 700;
}
.product-details .product-title {
    font-weight: 800;
    font-size: 32px;
}
.input-spinner .form-control {
    border-color: transparent;
    background-color: transparent;
}

.product-separated-item.col-6:first-of-type {
    max-width: unset;
    flex: 1 1 100%;
}

.product-separated-item.col-6:first-of-type img {
    margin: auto;
    max-width: 100%;
}
.intro-slider-container,
.intro-slide {
    min-height: auto;
    background-color: transparent;
}
.product-gallery .owl-theme.owl-light .owl-nav [class*="owl-"] {
    color: #000;
}
.nav.nav-tabs .nav-link {
    border-left: 0;
    border-right: 0;
    border-top: 0;
}
#modal_calces .nav.nav-tabs .nav-link.active {
    border-bottom: 1px solid var(--colorPrincipal);
}
#modal_calces .nav.nav-tabs .nav-link {
    color: #111;
    font-weight: 700;
    font-size: 1.8rem;
}
#modal_calces_damas .nav.nav-tabs .nav-link.active {
    border-bottom: 1px solid var(--colorPrincipal);
}
#modal_calces_damas .nav.nav-tabs .nav-link {
    color: #111;
    font-weight: 700;
    font-size: 1.8rem;
}
#modal_calces_caballeros .nav.nav-tabs .nav-link.active {
    border-bottom: 1px solid var(--colorPrincipal);
}
#modal_calces_caballeros .nav.nav-tabs .nav-link {
    color: #111;
    font-weight: 700;
    font-size: 1.8rem;
}
.product-cat {
    color: #111;
    font-weight: 400;
    font-size: 1.4rem;
}
.dropup .dropdown-toggle::after {
    display: none;
}
.dropup .jssocials-shares {
    display: flex;
    flex-direction: column;
}
.jssocials-share-logo {
    color: #111 !important;
    width: 16px !important;
    height: 16px;
    margin-right: 10px;
}
.jssocials-share-label {
    font-size: 14px !important;
    color: #111 !important;
}
/* favoritos */
.favoritos .product {
    background-color: transparent;
    align-items: center;
    display: flex;
    justify-content: space-around;
}
.fav-content {
    display: flex;
    align-items: center;
    flex-direction: row;
}
.favoritos .product img {
    max-width: 100px;
}
.nav-link:not(.active) {
    opacity: 0.5;
}

.favoritos .product {
    border: 1px solid #ddd;
    padding: 15px 10px;
}
.favoritos .product-details-action .btn-cart span {
    font-size: 16px;
}
.btn-remove-wishlist {
    font-size: 22px;
    border: 0;
    background: #f5f5f5;
}
.product .product-action-vertical {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}
/* carrito */
.product-cart {
    display: flex;
    align-items: center;
}

.pills.filter-items label:before,
.pills.filter-items label:after {
    display: none;
}

.pills input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.pills.filter-items {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.pills.filter-items label {
    border: 1px solid #eee;
    font-size: 10px;
    padding: 4px 5px;
    transition: all ease 0.2s;
    line-height: normal;
    margin-bottom: 1px;
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pills.filter-items .filter-item {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 2px 2px;
    flex: 1 1 20%;
}

.pills label:hover {
    border-color: var(--colorSecundario);
    background: var(--colorSecundario);
    color: #fff;
    cursor: pointer;
}

.pills input:checked + label {
    border: 1px solid var(--colorSecundario);
    background-color: var(--colorSecundario);
    color: #fff;
}

.pills.filter-items input[disabled] + label {
    background-color: #eee;
    color: #d0d0d0;
    border: 1px solid #d0d0d0 !important;
    position: relative;
}

.pills.filter-items input[disabled] + label:before {
    position: absolute;
    content: "";
    background: #d0d0d0;
    display: block;
    width: 70%;
    height: 1px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.pills.filter-colors label {
    padding: 0;
}

.pills.filter-colors label:hover {
    background: #fff;
}

.pills.filter-colors input:checked + label {
    background: #fff;
    border: 2px solid var(--colorSecundario);
}
.cart-discount {
    width: 100%;
}

@media (max-width: 991px) {
    .accordion-summary .summary {
        margin-top: 0;
    }
    .checkout-discount .btn {
        min-width: auto;
    }
    td[data-title]::before {
        content: attr(data-title) ":";
        color: #000000;
        position: relative;
        margin-right: 10px;
    }
    .nav-dashboard .nav-link,
    .breadcrumb-item {
        font-size: 1.5rem;
    }
    .table.table-cart thead {
        display: none;
    }
    .table.table-cart tr,
    .table.table-cart td {
        display: flex;
        border: 0;
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .table.table-cart tbody td {
        text-align: center;
        flex-direction: row;
        width: 100%;
        align-items: center;
    }
    .table.table-cart tbody tr:not(:last-of-type) {
        border-bottom: 2px solid #ddd;
    }
    .table.table-cart .td-imagen {
        grid-area: img;
    }
    .table.table-cart .td-producto {
        grid-area: nombre;
    }
    .table.table-cart .td-medida {
        grid-area: medida;
    }
    .table.table-cart .td-codigo {
        grid-area: codigo;
    }
    .table.table-cart .td-precio {
        grid-area: precio;
    }
    .table.table-cart .td-precio .old-price {
        margin-right: 6px;
    }
    .table.table-cart .td-cantidad {
        width: auto;
        display: flex;
        flex-direction: row;
        max-width: 100%;
    }
    .table.table-cart .td-total {
        grid-area: total;
    }
    .table.table-cart .td-regalo {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .table.table-cart .td-eliminar {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media screen and (max-width: 580px) {
    .product-details-action {
        flex-direction: unset;
        justify-content: center;
    }
}
/* login */
.form-tab .form-footer a:not(.forgot-link) {
    text-decoration: none;
    color: #fff;
}
.btn.btn-login {
    font-weight: 400;
}
.btn-login.btn-f {
    --Facebook: #3366cc;
    background-color: var(--Facebook) !important;
    border-color: var(--Facebook) !important;
    color: #fff;
}
.btn.btn-login.btn-g i,
.btn.btn-login.btn-f i {
    color: #fff;
}
.btn.btn-login i {
    font-size: 14px;
}
/* checkout */
.summary {
    border: 0;
    background-color: transparent;
}
.summary-title {
    padding-bottom: 10px;
    border-bottom: 2px solid #000000;
    font-size: 20px;
    font-weight: 600;
}
.summary.summary-cart .summary-title {
    margin-bottom: 20px;
}
.checkout .title {
    padding-bottom: 10px;
}

.checkout #step-tabs .nav-item {
    position: relative;
}
.step-count {
    font-size: 16px;
    font-weight: 600;
    width: 40px;
    height: 40px;
    margin: auto;
    margin-bottom: 10px;
    border-radius: 50%;
    border: 2px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-link.active .step-count {
    background-color: var(--colorPrincipal);
    border-color: var(--colorPrincipal);
    color: #fff;
}
p.step-title {
    text-transform: none;
    font-size: 13px;
    font-weight: 600;
    position: absolute;
    width: max-content;
    left: 50%;
    transform: translateX(-50%);
}
#step-tabs .nav-link {
    padding: 0;
}
#step-tabs .nav-item.show .nav-link,
#step-tabs .nav-item .nav-link.active {
    border: 0;
}
#step-tabs .nav-item + .nav-item {
    margin-left: 0;
}
#step-tabs .nav-link:not(.active) {
}
#step-tabs .nav-link.disabled {
    opacity: 0.5;
}
#step-tabs .nav-item .nav-link.active p {
    color: var(--colorPrincipal);
}
.checkout .form-control:not(:focus) {
    border-color: #f8f8f8;
}
.element i {
    font-size: 50px;
}
.accordion-summary .card-title a:not(.collapsed) .element {
    border-color: var(--colorPrincipal);
}
.element {
    min-height: 70px;
}
.element-title {
    font-size: 1.6rem;
}
.accordion-summary .card .store-content {
    font-size: 1.4rem;
}
.accordion-summary .card-title a:not(.collapsed) .element .element-title {
    color: var(--colorPrincipal);
}
.payment_box p {
    font-weight: 400;
    color: #000;
}
.checkout .custom-control .custom-control-label {
    text-align: left;
}

.payment_box {
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 3rem;
    margin-bottom: 3rem;
}

.facturacion_box {
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 3rem;
    margin-bottom: 3rem;
}
.summary {
    border-style: solid;
    background-color: transparent;
}
.prods-summary {
    overflow-y: auto;
    max-height: 19.5em;
}
.table.table-summary tbody tr:last-child td {
    border: 1px solid #ddd;
    cursor: pointer;
}

.checkout .table.table-summary a {
    font-size: 13.5px;
    color: #000;
}

.clear-both {
    clear: both;
}
.direc-item {
    transition: all ease 0.3s;
    color: #595959;
    border: 1px solid #dee2e6;
}
.direc-item:hover {
    border-color: var(--colorPrincipal);
    color: var(--colorPrincipal);
}
.forma_pago_wrapper label {
    text-align: center;
}
.forma_pago_wrapper .element.active {
    border-color: var(--colorPrincipal);
}
.forma_pago_wrapper .element.active label {
    color: var(--colorPrincipal);
}
.forma_pago_wrapper,
.forma_pago_wrapper input,
.forma_pago_wrapper label {
    cursor: pointer;
}

.facturacion_wrapper label {
    text-align: center;
}
.facturacion_wrapper .element.active {
    border-color: var(--colorPrincipal);
}
.facturacion_wrapper .element.active label {
    color: var(--colorPrincipal);
}
.facturacion_wrapper,
.facturacion_wrapper input,
.facturacion_wrapper label {
    cursor: pointer;
}
.input-forma-pago + label {
    background: white;
    color: #000;
    font-size: 16px;
    font-weight: 500;
}
.input-facturacion + label {
    background: white;
    color: #000;
    font-size: 16px;
    font-weight: 500;
}
tr.summary-total span {
    font-weight: 700;
}
@media (min-width: 768px) {
}
@media (max-width: 767px) {
    .accordion-summary .card-body {
        padding: 0;
    }
    .step-title {
        font-size: 12px;
        font-weight: 400;
    }
    .btnPrevious,
    .btnNext {
        margin-bottom: 15px;
        width: 100%;
    }
}
/* politicas */
.politicas-content p {
    margin-bottom: 1.5rem;
}
.politicas-content ul,
.politicas-content ol {
    padding-left: 40px;
}
ol.devoluciones {
    padding-left: 40px;
    list-style-type: upper-roman;
}
ol.gestionar {
    list-style-type: lower-alpha;
}
/* contacto */
.contact-box h3 {
    font-weight: 700;
    font-size: 21px;
}
.contact-box .social-icon {
    font-size: 2.3rem;
}
.contact-box a {
    color: #111;
}
/* micuenta */
.nav-dashboard .nav-link {
    font-size: 16px;
}
.nav-dashboard .nav-link.active {
    font-weight: 500;
}
/* resumen */
.card {
    border: 0.1rem solid #eeeeee;
    border-radius: 5px;
}
.tabla-resumen td {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}
.tabla-resumen .product-col .product-media {
    max-height: 60px;
}
.tabla-resumen tfoot td {
    border: 0;
}
#resumen-content .card-header {
    padding-bottom: 0.5rem;
}
#resumen-content .card-header h4 {
    margin-bottom: 0;
    font-size: 20px;
}
.tabla-resumen .product-media {
    background: transparent;
}
.tabla-resumen img {
    max-width: 90px;
    width: 100%;
    margin: auto;
}
@media (max-width: 767px) {
    .tabla-resumen,
    .tabla-resumen thead,
    .tabla-resumen tbody,
    .tabla-resumen th,
    .tabla-resumen tbody td,
    .tabla-resumen tbody tr {
        font-size: 1.5rem !important;
    }

    .tabla-resumen tbody tr {
        border-bottom: 0.1rem solid #eeeeee;
        display: grid;
        grid-template-columns: auto auto;
        grid-template-areas:
            "prod prod"
            "price cant"
            ". sub";
    }

    .tabla-resumen > thead > tr:nth-child(2) {
        display: none;
    }

    .tabla-resumen td {
        position: relative;
        border-bottom: 0;
        padding: 0px 10px 10px 10px;
    }
    .tabla-resumen .product-col {
        grid-area: prod;
    }
    .tabla-resumen .total-col {
        grid-area: sub;
    }

    .tabla-resumen td:before,
    .tabla-resumen td > div:before {
        position: relative;
        font-weight: 600;
    }

    .tabla-resumen .price-col:before {
        content: "Precio: ";
    }

    .tabla-resumen .cant-td:before {
        content: "Cantidad: ";
    }

    .tabla-resumen tfoot {
        float: right;
    }
    .tabla-resumen .table-foot td {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    #resumen-content .card-body {
        font-size: 1.5rem;
    }
}
.table.table-cart .total-col {
    white-space: nowrap;
}
.marcar-default {
    content: "⭐";
    position: absolute;
    right: 0;
    top: 10px;
    padding: 0 20px;
    filter: grayscale(1);
}
.direccion-default .marcar-default {
    filter: grayscale(0);
}
.direccion.direccion-default {
    border: 1px solid #c3c3c3;
    border-radius: 3px;
}

#tab-pedidos .table tbody td {
    padding-right: 5px;
    padding-left: 5px;
}

#mis-direcciones {
    scroll-margin-top: 3rem;
}

#tab-pedidos .table th {
    font-weight: 600;
    color: #111;
    line-height: normal;
}

@media (max-width: 768px) {
    .dashboard .nav-dashboard {
        display: grid;
        grid-template-columns: auto auto;
    }
}
@media (max-width: 991px) {
    #tab-pedidos td[data-title]::before {
        color: #888;
        line-height: normal;
    }
    #tab-pedidos table tr,
    #tab-pedidos table td {
        display: grid;
    }
    #tab-pedidos thead {
        display: none;
    }
    #tab-pedidos tr,
    #tab-pedidos td {
        padding: 10px 0;
    }
    #tab-pedidos td {
        border-bottom: 0;
        grid-template-rows: 0fr 0fr;
    }

    #tab-pedidos tbody tr {
        grid-template-columns: auto auto;
        grid-template-rows: auto;
        grid-column-gap: 10px;
        border-bottom: 0.1rem solid #eeeeee;
        grid-template-areas:
            "info info"
            "info info"
            "info info"
            "button button";
    }
    .td-btn {
        grid-area: button;
    }

    .td-metodo-entrega {
        display: none !important;
    }

    #tab-pedidos .table,
    #tab-pedidos .table td,
    #tab-pedidos .table th {
        border: 0;
    }

    #tab-pedidos .table tbody .td-btn a {
        font-weight: 600;
        color: #000 !important;
    }
}
.fileinput .btn {
    margin-bottom: 10px;
}

.cursor-pointer {
    cursor: pointer;
}
.tabla-resumen .product-col .product {
    background-color: transparent;
    flex-direction: row;
}
/* footer */
.footer a {
    color: rgb(30, 20, 20);
}
.footer .widget-title {
    font-weight: 700;
    font-size: 18px;
}
.social-icon {
    border: 0;
    font-size: 2rem;
    justify-content: flex-start;
}
footer .btn {
    min-width: auto;
}
.footer-bottom .container:before,
.footer-bottom .container-fluid:before {
    display: none;
}
.btn-newsletter {
    border-radius: 0 3px 3px 0;
}
footer .form-control {
    border-radius: 3px 0 0 3px;
}
#scroll-top {
    width: 4rem;
    height: 4rem;
    right: 15px;
    bottom: 15px;
    color: var(--colorPrincipal);
    background-color: transparent;
    border-radius: 50%;
    border: 2px solid var(--colorPrincipal);
}
#scroll-top:hover,
#scroll-top:focus {
    border-color: #777;
}

.product-action-dark {
    background-color: #001236;
}

.old-price {
    color: #d50109;
}

.new-price {
    color: inherit;
}

.list-payment-icons li.nav-item {
    margin-left: 5px;
}

.list-payment-icons .payment-icon-image {
    max-height: 2em;
    width: auto;
}

/* giftcard */

#giftcard-section .seleccion {
    position: relative;
    cursor: pointer;
    padding-left: 2.5rem;
}

#giftcard-section .seleccion input[type="radio"] {
    display: none;
}

#giftcard-section .seleccion span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid var(--colorPrincipal);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

#giftcard-section .seleccion span::after {
    content: "";
    height: 8px;
    width: 8px;
    background: var(--colorPrincipal);
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: 300ms ease-in-out 0s;
}

#giftcard-section .seleccion input[type="radio"]:checked ~ span::after {
    transform: translate(-50%, -50%) scale(1) !important;
}

#giftcard-section .monto {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    padding-left: 3.5rem;
}

#giftcard-section .monto input[type="radio"] {
    display: none;
}

#giftcard-section .monto span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid var(--colorPrincipal);
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 10px;
}

#giftcard-section .monto span::after {
    content: "";
    height: 8px;
    width: 8px;
    background: var(--colorPrincipal);
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: 300ms ease-in-out 0s;
}

#giftcard-section .monto input[type="radio"]:checked ~ span::after {
    transform: translate(-50%, -50%) scale(1) !important;
}

.contenedor-tarjetas {
    padding-bottom: 2rem;
    border-bottom: 1px solid #e7e7e7;
}

#giftcard-section label {
    color: #333;
    font-weight: 400;
}

#giftcard-section select {
    font-weight: bold;
    color: #666;
    font-size: 16px;
    padding: 1rem 1.5rem 1rem 0;
    border: none;
    margin-left: 1rem;
}

#giftcard-section select:focus {
    outline: none;
}
.jumbotron-stock {
    padding-top: 10rem;
    padding-bottom: 6rem;
}
.bucador-stock {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #dddddd;
    background: #e9ecef;
}
.input-group #codigo {
    padding-left: 10px;
    font-size: 16px;
    text-transform: uppercase;
}

.container-text-stock {
    padding-left: 2rem;
}
.codigo-stock {
    font-size: 3rem;
}
.title-stock {
    font-size: 3rem;
    line-height: 1.5;
}
.container-calces {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    margin-top: 1.6rem;
    margin-bottom: 2.6rem;
}
.container-calce input {
    display: none;
}
.container-calce label {
    height: 44px;
    width: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 0;
}
.container-calce input[type="radio"]:checked ~ label {
    border: 2px solid #333;
    height: 50px;
}
.verde {
    background: #28a745;
}
.rojo {
    background: #dc3545;
}
.tabla-precios {
    width: 85%;
    margin: 2rem 0;
}
.tabla-precios table tr td,
.table-responsive thead tr th,
.table-responsive table tr td {
    padding-left: 1rem;
    border: 1px solid #b7b7b7;
    font-size: 18px;
}
.table-responsive thead tr th {
    color: #333;
    font-weight: 600;
}
.table-responsive table tr td {
    padding: 1rem 0;
    padding-left: 1rem;
}
.calce-seleccionado {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.margin-table-stock {
    margin: 4rem 0;
}
.bg-info {
    background-color: var(--colorPrincipal) !important;
}
.bg-info td {
    color: #fff;
}
@media (min-width: 768px) {
    .checkout #step-tabs .nav-item:not(:last-child)::after {
        content: "";
        width: 50px;
        height: 0.5px;
        background-color: #e7e7e7;
        top: 50%;
        right: -50px;
        position: absolute;
        transform: translateX(50px);
    }
}

@media screen and (max-width: 768px) {
    .nav.nav-pills .nav-item.show .nav-link,
    .nav.nav-pills .nav-item .nav-link.active {
        color: var(--colorPrincipal);
        border-bottom-color: var(--colorPrincipal);
    }

    .bucador-stock .input-group {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 15px;
        border: 1px solid rgba(0, 18, 54, 0.5);
    }
    .input-group #codigo {
        width: 100% !important;
        height: 44px;
    }
    .btn-buscar-stock {
        width: 100%;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: none;
        max-width: none;
    }
    .container-text-stock {
        margin-top: 2rem;
    }
    .container-calces {
        flex-wrap: wrap;
    }
    .tabla-precios {
        width: 100%;
    }
    .container-text-stock {
        padding-left: 0;
    }
    .table-responsive table tr td {
        font-size: 15px;
    }
    .margin-table-stock {
        margin-top: 1rem;
    }
}
.table td {
    padding-left: 1rem;
    padding-right: 1rem;
}
.product-col .product {
    padding-left: 2rem;
}
.table.table-summary tbody td {
    padding: 1rem;
}
.input-group-append .btn.btn-outline-primary-2 {
    padding: 0;
}
.sidebar-filter-wrapper {
    padding: 3.5rem 0 1.5rem;
}
.sidebar-shop .widget-title {
    margin-bottom: 1.2rem;
}

.countdown-wrapper {
    top: -17rem;
    position: relative;
    overflow: hidden;
    max-width: 360px;
    margin: 0 auto;
    height: 86px;
}

.deal-countdown.offer-countdown {
    background: #dee2e6;
    padding: 11px 10px;
    max-width: 360px;
    border-radius: 10px;
    position: absolute;
    top: 1%;
    bottom: 1%;
    left: 0.5%;
    right: 0.5%;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 3%), -5px 5px 10px rgb(0 0 0 / 3%);
    display: flex;
    margin: auto;
    width: 99%;
    height: 97%;
    z-index: 1;
}

.deal-countdown .countdown-section {
    background-color: #fff;
}
.countdown-section {
    background: transparent !important;
}

.accordion-summary .card-title a.anchor-radio::after {
    display: none;
}

.accordion-summary .card-title a.anchor-radio.selected::after {
    display: block;
}

@media screen and (max-width: 991px) {
    .owl-simple.owl-nav-inside-sm .owl-nav .owl-prev {
        left: 18px;
    }

    .owl-simple.owl-nav-inside-sm .owl-nav .owl-next {
        right: 18px;
    }
}
@media screen and (max-width: 768px) {
    .zoomContainer {
        display: none;
    }
    .product-gallery-separated {
        width: 88%;
        margin-left: auto;
        margin-right: auto;
    }
}
