@charset "UTF-8";
/*
Theme Name: Bisum - Multipurpose eCommerce Template
Theme URI: https://spreethemesprevious.github.io/bisum/
Author: Spree Themes
Author URI: https://themeforest.net/user/spreethemes/portfolio
Description: Bisum – eCommerce HTML template is a clean, modern and well organized template. It's suitable for all store and this template can be easily customized.
Version: 1.0.1
*/
/*============================================================================
  Prefix mixin for generating vendor prefixes:
  Usage:
    // Input:
    .element {
      @include prefix(transform, scale(1), ms webkit spec);
    }

    // Output:
    .element {
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
    }

  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_prefixer.scss
==============================================================================*/

/*============================================================================
    Template Common CSS
==============================================================================*/

:root {
  --primary-color: #A7D02D;
  --secondary-color: #2b2a2a;

  --btn-primary-border-radius: 0.25rem;
  --btn-primary-color: #fff;
  --btn-primary-background-color: #A7D02D;
  --btn-primary-border-color: #A7D02D;
  --btn-primary-hover-color: #fff;
  --btn-primary-background-hover-color: #333333;
  --btn-primary-border-hover-color: #333333;
  --btn-primary-font-weight: 500;

  --btn-secondary-border-radius: 0.25rem;
  --btn-secondary-color: #fff;
  --btn-secondary-background-color: var(--secondary-color);
  --btn-secondary-border-color: var(--secondary-color);
  --btn-secondary-hover-color: #fff;
  --btn-secondary-background-hover-color: var(--secondary-color);
  --btn-secondary-border-hover-color: var(--secondary-color);
  --btn-secondary-font-weight: 500;

  --heading-color: #000;
  --heading-font-family: 'Poppins', sans-serif;
  --heading-font-weight: 700;

  --title-color: #000;
  --title-font-family: 'Poppins', sans-serif;
  --title-font-weight: 400;

  --body-color: #000;
  --body-background-color: #fff;
  --body-font-family: 'Poppins', sans-serif;
  --body-font-size: 14px;
  --body-font-weight: 400;

  --section-heading-color: #000;
  --section-heading-font-family: 'Poppins', sans-serif;
  --section-heading-font-size: 48px;
  --section-heading-font-weight: 600;

  --section-subheading-color: #000;
  --section-subheading-font-family: 'Poppins', sans-serif;
  --section-subheading-font-size: 16px;
  --section-subheading-font-weight: 400;
  --checkout-input-focus-shadow: 0 3px 0 var(--secondary-color);
  --checkout-input-shadow-error: 0 3px 0 #fb4e4e;
}



#drawer-menu span {
  text-transform: lowercase;
  display: inline-block;
}

#drawer-menu span:first-letter {
  text-transform: uppercase;
}

body select {
  -webkit-appearance: none;
}

.select-arrow {
  position: absolute;
  top: 15px;
  right: 15px;
}

body a {
  color: var(--secondary-color);
}

iframe {
  width: 100%;
}

/* .container-fluid {
  padding-left: 160px;
  padding-right: 160px;
}

@media (max-width: 1800px) {
  .container-fluid {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media (max-width: 575px) {
  .container-fluid {
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem);
  }
} */

.bg-principal {
  background-color: var(--primary-color);
}

.bg-second {
  background-color: var(--secondary-color);
}

.bg-1 {
  background-color: #F5F5F5;
}

.bg-2 {
  background-color: #333333;
}

.bg-3 {
  background-color: #F76B6A;
}

.bg-4 {
  background-color: #071C1F;
}

.bg-5 {
  background-color: #e7e7e7;
}

.bg-pink {
  background-color: #FFF3F3;
}

.bg-trust-1 {
  background-color: #FCEDDA;
}

.bg-trust-2 {
  background-color: #F2FBCB;
}

.bg-trust-3 {
  background-color: #F7D8F9;
}

.btn-secondary:hover {
  opacity: 0.7;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-member,
.btn-member:hover,
.btn-member:focus {
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  padding: 0 17px;
  height: 40px;
  -ms-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -ms-display: inline-flex;
  -webkit-display: inline-flex;
  display: -webkit-inline-box;
  display: inline-flex;
  -ms-align-items: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-member,
.btn-member:hover,
.btn-member:focus {
  min-width: 140px;
  height: 47px;
  color: #fff;
}

.btn-primary,
.btn-member {
  -ms-border-radius: var(--btn-primary-border-radius);
  -webkit-border-radius: var(--btn-primary-border-radius);
  border-radius: var(--btn-primary-border-radius);
  color: var(--btn-primary-color);
  border: 1px solid var(--btn-primary-border-color);
  background-color: var(--btn-primary-background-color);
  font-weight: var(--btn-primary-font-weight);
}

.btn-secondary {
  -ms-border-radius: var(--btn-secondary-border-radius);
  -webkit-border-radius: var(--btn-secondary-border-radius);
  border-radius: var(--btn-secondary-border-radius);
  color: var(--btn-secondary-color);
  border: 1px solid var(--btn-secondary-border-color);
  background-color: var(--btn-secondary-background-color);
  font-weight: var(--btn-secondary-font-weight);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-member:hover,
.btn-member:focus {
  color: var(--btn-primary-hover-color);
  border: 1px solid var(--btn-primary-border-hover-color);
  background-color: var(--btn-primary-background-hover-color);
}

.btn-secondary:hover,
.btn-secondary:focus {
  color: var(--btn-secondary-hover-color);
  border: 1px solid var(--btn-secondary-border-hover-color);
  background-color: var(--btn-secondary-background-hover-color);
}

.nav-link:focus,
.nav-link:hover {
  color: var(--secondary-color);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--secondary-color);
  background-color: transparent;
}

.input-reset,
.btn-reset {
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
}

.field {
  height: 48px;
  background: #E5E5E5;
  padding: 0 15px;
  -ms-border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  border-radius: 0.25rem;
  -ms-display: flex;
  -webkit-display: flex;
  display: -webkit-box;
  display: flex;
  -ms-align-items: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.field-input {
  width: 100%;
  font-size: 14px;
  color: #000;
}

input[type="number"] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

input[type="number"] {
  -moz-appearance: textfield !important;
}

.icon {
  width: 28px;
  height: 28px;
}

.overlay-furniture,
.overlay-tools,
.overlay {
  position: relative;
}

.overlay-furniture:before,
.overlay-tools:before,
.overlay:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2);
}

.overlay-tools:before {
  background-color: rgba(7, 28, 31, 0.5);
}

.overlay-furniture:before {
  background-color: rgba(0, 35, 77, 0.5);
}

/* cookie */

.cookie-text {
  width: 95%;
}

.cookies-button {
  padding: 10px !important;
  line-height: 30px !important;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 80% !important;
  border-radius: 10px !important;
  font-size: 14px;
}

.cookies-button:hover {
  color: #fff !important;
}

#cookie1 {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 8px;
  z-index: 999999999999;
  width: 100%;
  max-width: 400px;
  padding: 20px;
  text-align: center;
  font-size: 16px;
  color: #333
}

#cookiesModal {
  z-index: 9999999999999 !important;
}

.no-interaction {
  pointer-events: none;
}

.checkout__submit,
.checkout__submit:hover,
.checkout__submi:focus {
  background-color: var(--btn-primary-background-color);
  border: var(--checkout-btn-border);
  border-radius: var(--checkout-btn-br);
  padding: 0 12px;
  line-height: 45px;
  color: #fff !important;
  text-transform: uppercase;
  font-weight: bold;
  outline: none;
  align-self: center;
}

@media (max-width: 1178px) {
  .cookie-text {
    width: 100%;
  }

  #cookie1 {
    flex-direction: column;
  }

  .cookie-button {
    width: 100%;
    text-align: center;
  }
}

#backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99999999999;
}

/* cookie */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
}

body {
  color: var(--body-color);
  background-color: var(--body-background-color);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  font-family: var(--body-font-family);
  letter-spacing: 0.5px;
  padding-right: 0 !important;
}

.body-wrapper {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#MainContent {
  min-height: 500px;
}

.web_cookies,
.web_legal,
.web_about,
.web_terms,
.web_privacy {
  margin-top: 30px;
  margin-bottom: 30px;
}

.acptar-politica {
  color: var(--body-color);
  font-size: 14.5px;
}

.border-activo {
  border: 1px solid var(--primary-color);
}

.border-inactivo {
  border: 1px solid var(--secondary-color);
}

.heading_72,
.heading_48,
.heading_42,
.heading_34,
.heading_24,
.heading_18,
.text_16,
.text_14,
.text_12 {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--body-color);
}

.heading_72 {
  font-weight: 600;
  font-size: 72px;
  line-height: 1.2;
  letter-spacing: 0;
}

.heading_48 {
  font-weight: 600;
  font-size: 48px;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.heading_42 {
  font-weight: 600;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.heading_34 {
  font-weight: 600;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: 0.25px;
}

.heading_18 {
  font-size: 18px;
  line-height: 1.5;
}

.text_16 {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.68;
  letter-spacing: 0.5px;
}

.text_14 {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.08;
}

.text_12 {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.4px;
}

.link-underline {
  text-decoration: underline;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.link-underline:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes upDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.primary-color {
  color: var(--primary-color);
}

.secondary-color {
  color: var(--secondary-color);
}

a,
a:focus,
a:hover {
  text-decoration: none;
  border: none;
  outline: none;
  -ms-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover {
  color: var(--primary-color) !important;
}

img {
  max-width: 100%;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}

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

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #888;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #888;
}

button,
.offcanvas {
  -ms-border: none !important;
  -webkit-border: none !important;
  border: none !important;
  -ms-outline: none !important;
  -webkit-outline: none !important;
  outline: none !important;
  -ms-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.content-absolute {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
}

.height-inherit {
  height: inherit;
}

.section-heading {
  color: var(--section-heading-color);
  font-family: var(--section-heading-font-family);
  font-size: var(--section-heading-font-size);
  font-weight: var(--section-heading-font-weight);
  margin-bottom: 0;
  line-height: 1.5;
}


.section-subheading {
  color: var(--section-subheading-color);
  font-family: var(--section-subheading-font-family);
  font-size: var(--section-subheading-font-size);
  font-weight: var(--section-subheading-font-weight);
  margin-top: 10px;
  margin-bottom: 0;
}

.section-subheading.primary-color {
  color: var(--primary-color);
}

.section-icon {
  margin-bottom: 10px;
}

.slick-initialized .slick-slide {
  outline: none;
}

#require-terms.error {
  visibility: hidden;
  display: none;
  max-width: 330px;
  text-align: center;
  float: right;
}

#MultiSafepayError {
  margin-top: 10px;
  display: none;
  text-align: center;
  float: right;
}

#require-terms.error.visible {
  display: block;
}

.msp-ui-payment-form {
  background: #f5f5f5;
  margin-bottom: 1rem !important;
}

.common-slider .slick-slide {
  margin: 0 12px;
}

.w-45 {
  width: 45% !important;
}

.common-slider .slick-list {
  margin: 0 -12px;
}

.container-product {
  max-width: 1760px;
}

/* elige talla */
.switch-field-tallas input {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}

.switch-field-tallas label {
  cursor: pointer;
  float: left;
  display: inline-block;
  padding: 10px;
  padding-top: 10px;
  min-width: 50px;
  color: #000;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  text-shadow: none;
  padding-top: 10px;
  font-size: 15px;
  border: 1px solid #999 !important;
  margin-right: 5px;
  margin-bottom: 5px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.talla-sin-stock {
  color: #999 !important;
  text-decoration: line-through;
  border: none !important;
  border: 1px solid #999 !important;
}

.switch-field-tallas input:checked+label {
  background-color: var(--primary-color);
  ;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #FFF;
  border: 4px solid var(--primary-color);
  ;
}

/* elige talla */

/* deseo cesta */
.product-wishlist {
  position: absolute;
  top: 0;
  right: 0;
}

/* deseo cesta */

/* añadir cesta */
.anadir-cesta {
  background-color: #fff !important;
  color: #000 !important;
  border: 2px solid var(--primary-color);
}

.buy-it-now-btn {
  border: 2px solid var(--primary-color);
}

.btn-hover-cesta:hover {
  background: var(--primary-color) !important;
}

.btn-atc {
  width: 49% !important;
}

.btn-w-avisame {
  width: 49% !important;
}

@media (max-width: 767px) {
  .btn-atc {
    width: 100% !important;
  }

  .btn-w-avisame {
    width: 100% !important;
  }
}

.bg-cesta {
  background-image: url('recortes/cesta.svg') !important;
  background-repeat: no-repeat !important;
  background-position: left !important;
  background-position-x: 10px !important;
}

/* añadir cesta */

/* estilo texto producto */
.marca-product-box {
  font-size: 1rem !important;
  margin: 5px 0;
  color: #919191 !important;
  font-weight: 400 !important;
}

.product-title {
  font-size: 1.3rem !important;
  color: var(--body-color) !important;
  font-family: var(--title-font-family) !important;
  font-weight: initial !important;
  line-height: 1.25em !important;
  margin: 0;
  margin-top: 10px;
  margin-bottom: 20px;
}

#product-price .price {
  color: var(--body-color);
  font-size: 18px;
  font-family: var(--body-font-family);
  margin-right: 7px;
}

.elige-talla {
  color: #a0a0a0;
  font-size: 15px;
}

.entrega_gratis span {
  color: #777;
}

.referencia-pagina-producto {
  font-size: 0.85rem;
  margin: 5px 0;
  color: #a1a1a1;
  font-weight: 300;
}

/* estilo texto producto */

.show-arrows-always .arrow-slider {
  opacity: 1;
  visibility: visible;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  -ms-display: flex;
  -webkit-display: flex;
  display: -webkit-box;
  display: flex;
  -ms-align-items: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  border-radius: 0.25rem;
}

.show-arrows-always .arrow-slider svg {
  width: 24px;
  stroke: #000;
  stroke-width: 1.5px;
}

.arrows-white .arrow-slider svg {
  stroke: #fff;
}

.article-arrows .arrow-slider {
  opacity: 0;
  visibility: hidden;
  -ms-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.home-section:hover .article-arrows .arrow-slider {
  opacity: 1;
  visibility: visible;
}

.arrow-slider {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 9;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.arrow-slider.arrow-next {
  left: auto;
  right: 0;
}

.slick-dots {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  position: absolute;
  bottom: 15px;
  left: 50%;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.slick-dots li {
  width: 12px;
  height: 8px;
  background-color: #000;
  opacity: 0.5;
  margin: 0 6px;
  cursor: pointer;
  -ms-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slick-dots li.slick-active {
  opacity: 1;
  width: 24px;
}

.slick-dots li button {
  display: none;
}

.slick-arrow[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.5 !important;
}



.scroll-horizontal {
  overflow: hidden;
  overflow-x: auto;
}

#scrollup {
  position: fixed;
  display: inline-block;
  background-color: var(--primary-color);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 100px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  -webkit-transition: background-color .3s,
    opacity .5s, visibility .5s;
  -o-transition: background-color .3s,
    opacity .5s, visibility .5s;
  transition: background-color .3s,
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  cursor: pointer;
}

#scrollup.show {
  opacity: 1;
  visibility: visible;
}

#scrollup:hover {
  background-color: var(--secondary-color);
}

.common-form input,
.common-form select,
.common-form label {
  width: 100%;
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.69;
  letter-spacing: 0.25px;
  color: #333333;
}

.common-form label {
  margin-bottom: 4px;
}

.common-form input,
.common-form select {
  height: 34px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-radius: 4px;
}

/* filtros horizontal */
.filters-v2__btn,
.filters-v2__btn:hover,
.filters-v2__btn:focus {
  background: #fff;
  padding: 8px 16px;
  font-size: 15px;
  color: 000 !important;
  box-shadow: inset 0 0 0 1px #000 !important;
}

.filters-v2__btns-submit,
.filters-v2__btns-submit:hover,
.filters-v2__btns-submit:focus {
  flex: 1;
  padding: 10px;
  background-color: #000;
  color: #fff;
  border: none;
  font-weight: bold;
  outline: none;
}

.filters-v2__option {
  box-shadow: inset 0 -1px 0 0 #d0d1d3;
  font-size: 15px;
}

.open-filters {
  max-height: 40vh;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  min-width: 288px;
}

.filters-v2__arrow {
  border: solid black;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-width: 0 2px 2px 0;
  display: inline-flex;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  margin-left: 5px;
  margin-bottom: 1.5px;
}

.dropdown-menu {
  top: 45px;
}

@media (max-width: 767px) {
  .btn_filters_category_movil {
    background-color: #000;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 15px;
    margin-top: 10px;
    cursor: pointer;
  }

  .dropdown-movil {
    width: 100%;
  }

  .filters-v2__btn {
    width: 100%;
  }

  .dropdown-menu {
    position: initial !important;
    inset: 0px auto auto 0px !important;
    margin-bottom: 15px !important;
    transform: translate(0px, 15px) !important;
  }
}

.dropdown-toggle::after {
  content: none;
}

/* filtros horizontal */

.common-form fieldset {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-100 {
  margin-top: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}



.icon-breadcrumb {
  width: 16px;
  height: 16px;
  margin: 0 7px;
}

.breadcrumb li,
.breadcrumb li a,
.breadcrumbs a,
.breadcrumbs span {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--body-color);
}

.breadcrumb {
  margin-bottom: 0;
  margin-top: 30px;
}

/*Para vista previa de productos diferentes páginas*/

.product-gallery-vertical .product-img-large {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: calc(100% - 97px);
}

.product-gallery-vertical .product-img-thumb {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin-right: 24px;
  width: 73px;
  margin-top: -6px;
  position: relative;
}

.product-img-thumb img {
  max-width: 73px;
}

.product-gallery-vertical .img-thumb-wrapper:not(:first-child) {
  margin-top: 12px;
}

.product-img-thumb .arrow-slider {
  visibility: visible;
  opacity: 1;
}

.product-img-thumb .arrow-slider svg {
  width: 24px;
  height: 24px;
}

.product-gallery-vertical .product-img-thumb .arrow-slider {
  top: auto;
  -webkit-transform: translateY(0) rotate(90deg);
  -ms-transform: translateY(0) rotate(90deg);
  transform: translateY(0) rotate(90deg);
  width: 33px;
  height: 33px;
  position: relative;
}

.product-gallery-vertical .img-thumb-wrapper {
  margin-top: 6px;
}

.img-large-wrapper {
  cursor: pointer;
}

.img-thumb-wrapper {
  outline: 1px solid transparent;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.slick-current .img-thumb-wrapper {
  outline: 1px solid #000;
}

@media (max-width: 767px) {
  .product-gallery-vertical .product-img-thumb {
    margin-right: 0;
    margin-top: 6px;
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .product-gallery-vertical .product-img-large {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .product-gallery-vertical {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .product-img-thumb img {
    max-width: 100%;
  }

  .product-gallery-vertical .img-thumb-wrapper {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

.message-popup-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.69;
  letter-spacing: 0.5px;
  color: var(--body-color);
}



.product-wishlist,
.product-wishlist:hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--body-color);
  border-radius: 4px;
  margin-left: 12px;
}

.btn-atc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 13.5px 24px;
  width: 100%;
  height: 44px;
  background: var(--body-color);
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  color: #FEFEFE;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-add-to-cart {
  max-width: calc(100% - 56px);
}

.btn-buyit-now {
  background: #00234D;
}

.btn-atc:hover {
  background: var(--secondary-color);
}

.product-details .product-title {
  font-weight: 600;
  font-size: 34px;
  line-height: 1.09;
  letter-spacing: 0.25px;
  color: var(--body-color);
}

.rating-count {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--body-color);
}

.product-availability {
  padding: 4px 12px;
  background: var(--primary-color) !important;
  border-radius: 4px;
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: 0.03em;
  color: #FEFEFE;
  display: inline-block;
}

.product-details .product-price {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--body-color);
}

.product-details .product-price.compare-price {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.69;
  letter-spacing: 0.5px;
  color: rgba(0, 0, 0, 0.5) !important;
}

.label,
.product-meta {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.69;
  letter-spacing: 0.5px;
  color: var(--body-color) !important;
}

.label {
  font-weight: 600;
}

.product-variant input[type=radio] {
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px;
}

.product-variant-other label {
  border: 1px solid #000;
  min-height: 30px;
  min-width: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 5px;
  color: #000;
  font-size: 16px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.product-variant-other label:hover,
.product-variant-other input:checked+label {
  color: #fff;
  background-color: #000;
}

.product-variant-color label {
  border: none;
  min-height: auto;
  min-width: auto;
  height: 30px;
  width: 30px;
  padding: 0;
  border-radius: 100%;
  outline: 1.5px solid transparent;
  outline-offset: 2px;
}

.product-variant-color label:hover,
.product-variant-color input:checked+label {
  outline: 1.5px solid #000;
}

.variant-list {
  margin-left: -8px;
}

.variant-label {
  margin-left: 8px;
  cursor: pointer;
}

.product-variant-color .variant-list {
  margin-left: -10px;
}

.product-variant-color .variant-label {
  margin-left: 10px;
}

.color-swatch {
  position: relative;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #2C2C2C;
  border: 2px solid transparent;
  outline: 1px solid transparent;
  margin: 3px 10px 0 0;
  display: inline-block;
}

.color-swatch.active {
  border-color: #fff;
  outline-color: #000;
}

.swatch-black {
  background-color: #000;
}

.swatch-cyan {
  background-color: #ABE6FF;
}

.swatch-purple {
  background-color: #FFE0E0;
}

.swatch-blue {
  background-color: #0d6efd;
}

.swatch-orange {
  background-color: #fd7e14;
}

.swatch-teal {
  background-color: #20c997;
}

.color-lists {
  margin: 0;
  margin-top: 15px;
}

.color-lists>li {
  line-height: 1;
}

.qty-btn,
.qty-input {
  width: 50px;
  text-align: center;
  border: none;
  outline: none;
  background: transparent;
}

.qty-btn:hover,
.qty-btn:focus,
.qty-btn:active,
.qty-input:hover,
.qty-input:focus,
.qty-input:active {
  border: none;
  outline: none;
  background: transparent;
}

.qty-btn::-webkit-inner-spin-button,
.qty-input::-webkit-inner-spin-button {
  display: none;
}

.quantity {
  width: 100px;
  -ms-border: 1px solid rgba(0, 0, 0, 0.1) !important;
  -webkit-border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.quantity .qty-btn {
  width: 25px;
  padding: 4px 5px 6px;
  cursor: pointer;
}

.quantity .qty-btn img {
  max-width: 12px;
  pointer-events: none;
}

.quantity .qty-btn.dec-qty {
  -ms-border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
  -webkit-border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.quantity .qty-btn.inc-qty {
  -ms-border-left: 1px solid rgba(0, 0, 0, 0.1) !important;
  -webkit-border-left: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-left: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.product-vendor,
.quantity input,
.product-price {
  font-size: 13px;
  color: var(--body-color);
  font-weight: var(--body-font-weight);
  font-family: var(--body-font-family);
}

.checkout-icon-list {
  margin-left: -12px;
}

.checkout-icon-item {
  margin-left: 12px;
}

.checkout-icon-item svg {
  width: 48px;
  height: 48px;
}

.guaranteed-checkout {
  margin-top: 40px;
}

.share-item {
  margin-left: 20px;
  cursor: pointer;
}

.share-item svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 991px) {
  .product-details {
    margin-top: 30px;
  }

  .img-large-list {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: auto;
  }

  .img-large-list .img-large-wrapper {
    width: 50%;
    min-width: 50%;
  }
}

@media (max-width: 767px) {
  .product-details .product-title {
    font-size: 28px;
  }

  .share-item svg {
    width: 18px;
    height: 18px;
  }

  .checkout-icon-item svg {
    width: 36px;
    height: 36px;
  }

  .img-large-list .img-large-wrapper {
    width: 100%;
    min-width: 100%;
  }
}

/*fin de comunes vista previa productos*/

@media (min-width: 1520px) {
  .article-arrows .arrow-slider {
    left: -68px;
  }

  .article-arrows .arrow-next {
    left: auto;
    right: -68px;
  }
}

@media (max-width: 767px) {
  .mt-100 {
    margin-top: 80px;
  }

  .pt-100 {
    padding-top: 80px;
  }

  .pb-100 {
    padding-bottom: 80px;
  }

  .collection-tab-inner {
    margin-top: -10px;
  }

  .heading_48 {
    font-size: 40px;
  }

  .heading_42 {
    font-size: 36px;
  }

  .heading_34 {
    font-size: 28px;
  }

  .heading_24 {
    font-size: 22px;
  }
}

@media (max-width: 400px) {
  .offcanvas {
    max-width: 100vw;
  }
}

.accordion-child {
  display: none;
}

.accordion-heading {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.69;
  letter-spacing: 0.5px;
  color: var(--body-color);
}

.accordion-header {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.accordion-header .accordion-icon {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.accordion-header.active .accordion-icon {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.accordion-content {
  padding: 25px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.overlay-blue:before,
.overlay-black:before,
.overlay-yellow:before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #00234D;
  opacity: 0.8;
}

.overlay-black:before {
  background-color: #000;
}

.overlay-yellow:before {
  background-color: #FFAE00;
}

.img-large-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -12px;
  margin-left: -12px;
}

.img-large-list .img-large-wrapper {
  width: 50%;
  padding-left: 12px;
  padding-top: 12px;
}

.product-accordion {
  margin-top: 24px;
}

.error-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 10px;
}

.error-subtitle {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 48px;
}

@media (max-width: 991px) {
  .section-heading {
    font-size: 40px;
  }

  .newsltter-content-1 {
    padding: 80px;
  }
}

@media (max-width: 767px) {
  .section-heading {
    font-size: 32px;
  }

  .collection-tab-content {
    margin-top: -20px;
  }

  .faq-inner,
  .latest-blog-inner,
  .core-features-inner {
    margin-top: -12px;
  }

  .action-card svg {
    width: 16px;
  }

  .action-card {
    width: 35px;
    height: 35px;
  }

  .product-tab-link:before {
    display: none;
  }

  .action-title a,
  .action-title {
    font-size: 24px;
  }

  .action-subtitle {
    line-height: 1.5;
  }

  .about-service-wrapper,
  .contact-form-area {
    padding: 40px 20px;
  }

  .checkout-page-btn {
    width: 100%;
  }

  .checkout-page-btn:not(:first-child) {
    margin-top: 12px;
  }

  .edit-user {
    margin-left: 0;
    margin-top: 20px;
  }

  .checkout-user-details {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .checkout-user-area {
    padding: 40px 16px;
  }

  .error-img {
    max-width: 70%;
  }
}

.slick-prev:before,
.slick-next:before {
  color: #000 !important;
}

.modal-header {
  border: none;
}

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

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 800px;
  }
}

.input-search {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
  border-top-left-radius: 125px;
  border-bottom-left-radius: 125px;
  box-shadow: none !important;
  border-color: #ced4da !important;
}

.boton-search {
  border-top-right-radius: 125px;
  border-bottom-right-radius: 125px;
  padding-right: 10px;
}

#search-boton {
  border: 1px solid #ced4da !important;
  border-left: none !important;
}

/*fin de elementos comunes*/
