@font-face {
  font-family: "icons";
  src: url(../fonts/icons.eot?2iflwn);
  src: url("../fonts/icons.eot?2iflwn#iefix") format("embedded-opentype"), url(../fonts/icons.ttf?2iflwn) format("truetype"), url(../fonts/icons.woff?2iflwn) format("woff"), url("../fonts/icons.svg?2iflwn#icons") format("svg");
  font-weight: 400;
  font-style: normal;
}
i {
  font-family: "icons" !important;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-blog:before {
  content: "\e90c";
}
.icon-history:before {
  content: "\e90d";
}
.icon-catalogs:before {
  content: "\e90b";
}
.icon-search:before {
  content: "\e90e";
}
.icon-arrow-mini:before {
  content: "\e908";
}
.icon-arrow-right:before {
  content: "\e909";
}
.icon-arrow-left:before {
  content: "\e909";
  transform: rotate(180deg);
  position: relative;
  display: block;
}
.icon-play:before {
  content: "\e90a";
}
.icon-logo:before {
  content: "\e100";
}
.icon-cart:before {
  content: "\e900";
}
.icon-cart-add:before {
  content: "\e901";
}
.icon-express:before {
  content: "\e902";
}
.icon-location:before {
  content: "\e903";
}
.icon-logout:before {
  content: "\e904";
}
.icon-menu:before {
  content: "\e905";
}
.icon-shop:before {
  content: "\e906";
}
.icon-star:before {
  content: "\e907";
}
html,
body {
  height: 100%;
}
body {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  color: #000;
  background: #fff;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover,
a:focus {
  text-decoration: underline;
  color: #000;
}
input,
select,
textarea {
  background: #fff;
}
:active,
:focus {
  outline: none !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
}
h1,
.h1 {
  margin: 40px 0;
  font-weight: 600;
  line-height: 1;
  color: #000;
  font-size: 26px;
}
h5 {
  color: #777;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 30px;
}
.searcher h2 {
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  h1,
  .h1 {
      font-size: 18px;
      line-height: 1.2;
      margin: 20px 0;
  }
  h2,
  .searcher h2 {
      font-size: 18px;
      line-height: 1.2;
  }
}
::-webkit-input-placeholder {
  color: #ccc;
}
:-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #ccc;
}
#main {
  background: #fff;
  padding-bottom: 30px;
  overflow-x: hidden;
}
.selected {
  font-weight: 700;
}
.emphasis {
  font-style: italic;
  color: #e30613;
}

.pe-submenu {  
  padding: 10px 0;
  margin: 0 auto;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  max-width: 1400px;
}
  .pe-submenu ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
  }
    .pe-submenu ul > li {
      display: inline-block;
      margin: 0 2px;
    }
    .pe-submenu ul > li > a {
      display: inline-block;
      color: white;
      background: var(--theme-red);
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 600;
      line-height: 1;
      margin: 2px auto;
      text-decoration: none;
      transition-duration: 0.3s;
    }
    .pe-submenu ul > li.active > a {
      background: var(--theme-red-hover);
    }
    .pe-submenu ul > li > a:hover {
      background: var(--theme-red-hover);
    }

@media screen and (max-width:768px) {
  .pe-submenu ul > li > a {
    font-size: 13px;
  }
}
@media screen and (max-width:768px) {
  .pe-submenu ul {
    text-align: left;
  }  
}


nav {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 85px;
  left: -150px;
  width: 75%;
  padding: 15px 15px 0 15px;
  z-index: 888;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 40px 8px 15px 2px rgba(0, 0, 0, 0.3);
  transition-duration: 0.3s;  
}
nav.visible {
  opacity: 1;
  left: 0;
  pointer-events: initial;
  width: 100%;
  box-shadow: 5px 8px 10px 2px rgba(0, 0, 0, 0.1);
}
nav a {
  color: white;
  font-weight: 400;
  background: var(--theme-red);
  padding: 8px 10px;
  border-radius: 4px;
  display: block;
  margin: 4px auto;
  text-decoration: none;
  transition-duration: 0.3s;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  box-shadow: inset 0 25px 0px -7px rgba(0,0,0,0.01);
  text-shadow: 0px 1px 1px rgba(0,0,0,0.2);
}
nav a:hover,
nav a:focus {
  color: white;
  text-decoration: none;
  background: var(--theme-red-hover);  
}
nav ul {
  padding: 0;
}
nav li {
  list-style-type: none;
}
nav li.selected a {
  font-weight: 600;
  background: var(--theme-red-hover);
}
@media screen and (min-width: 768px) {
  nav {
    display: none;
  }
}


@media screen and (min-width: 992px) {
  #search_button {
      display: inline-block;
      font-size: 15px;
      font-weight: 700;
      line-height: 23px;
      margin-top: 54px;
      font-family: "Lato", sans-serif;
      color: #e72419;
      border: 2px solid #e72419;
      text-transform: uppercase;
      padding: 2px 5px;
      height: auto;
      border-radius: 26px;
  }
  #search_button div {
      display: inline-block;
  }
  #search_button i {
      font-size: 21px;
      margin-right: 10px;
  }
  #search_button:hover {
      color: #fff;
      background-color: #e72419;
      cursor: pointer;
  }
  #search_button a {
      color: #e72419;
      padding: 8px;
      display: block;
  }
  #search_button:hover a {
      color: #fff;
  }
}
.search-btn-xs a {
  font-size: 21px;
}
.search-btn-xs {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .search-btn-xs {
      margin-top: 82px;
  }
}
.cart {
  position: relative;
}
.cart .items {
  position: absolute;
  display: inline-block;
  margin: 0 auto;
  transform: translateX(-50%);
  top: 4px;
  left: calc(50% - 2px);
  color: #000;
  font-size: 12px;
  font-weight: 600;
  background: #fff;
  border: 2px solid #000;
  line-height: 1;
  min-width: 18px;
  text-align: center;
  padding: 2px 1px 0 1px;
}
.cart .items_red {
  position: relative;
  display: inline;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  border: none;
  color: var(--theme-red);
  font-size: inherit;
  font-weight: 600;
  background: unset;
  line-height: 1;
  text-align: center; 
}
.below-menu {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 10px 20px;  
}
@media screen and (max-width:768px) {
  .below-menu {
    padding: 10px 0;
    text-align: left;
  }
}
.below-menu a {
  color: white;
  font-weight: 600;
  background: var(--theme-red);
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  margin: 2px auto;
  text-decoration: none;
  transition-duration: 0.3s;
  font-size: 14px;
  line-height: 1;
}
.below-menu a:hover {
  background: var(--theme-red-hover) !important;
  color: white;
  text-decoration: none;
}
.below-menu span {
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  .below-menu a {
    font-size: 13px;
    margin: 2px;
  }
}
footer {
  padding-top: 25px;
  position: relative;
  background: #fff;
  color: #333;
  padding-bottom: 30px;
  font-size: 13px;
}
footer a {
  margin: 0 15px;
  display: inline-block;
  line-height: 30px;
}
footer .text-lg-upper {
  text-transform: uppercase;
}
@media screen and (max-width: 500px) {
  footer a {
    text-transform: initial;
  }
}
.overlay-express {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1000;
  text-align: center;
  overflow-y: auto;
  overflow-x: hidden;
}
.overlay-express > div {
  overflow-y: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 50%;
  max-width: 600px;
  transform: translate(-50%, -50%);
  max-width: calc(100% - 30px);
  max-height: calc(100% - 30px);
  padding: 15px;  
  border-radius: 8px;
  background: linear-gradient(180deg, #963227d2, #d43b2dd2);
  box-shadow: 2px 6px 20px -6px rgba(0,0,0,0.35)
}
.overlay-express h5 {
  color: white;
}
.overlay-express h2 {
  font-size: 16px;
}
.overlay-express h5.h1 {
  font-size: 20px;
  margin: 10px auto;
}
.overlay-express a.button {
  background: white;
  color: #333 !important;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 2px 2px 3px -2px rgba(0,0,0,0.5);
  transition-duration: 0.3s;
}
  .overlay-express a.button:hover {
    background: #fafafa;
    color: #333 !important;
    text-decoration: none;
    box-shadow: -1px -1px 3px -2px rgba(0,0,0,0);
  }
@media screen and (max-width: 767px) {
  .overlay-express > div {
      width: calc(100% - 30px);
      height: auto;
  }
}
.overlay-spain {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1000;
  text-align: center;
  overflow-y: auto;
  overflow-x: hidden;
}
.overlay-spain > div {
  overflow-y: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 50%;
  max-width: 600px;
  transform: translate(-50%, -50%);
  max-width: calc(100% - 30px);
  max-height: calc(100% - 30px);
  background: linear-gradient(180deg, #82241ad2, #d43b2dd2);
  color: white;
  padding: 15px;
  border: 1px solid #a6a6a6;
  border-radius: 6px;
}
.overlay-spain h5 {
  color: white;
}
.overlay-spain h2 {
  font-size: 16px;
}
.overlay-spain h2.h1 {
  font-size: 20px;
}
.overlay-spain a.button {
  display: inline-block;
  padding: 6px 12px;
  font-weight: 600;
  margin: 15px auto;
  background: white;
  color: #333 !important;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 2px 2px 3px -2px rgba(0,0,0,0.5);
  transition-duration: 0.3s;
}
.overlay-spain a.button:hover {
  background: #fafafa;
  color: #333 !important;
  text-decoration: none;
  box-shadow: -1px -1px 3px -2px rgba(0,0,0,0);
}
@media screen and (max-width: 767px) {
  .overlay-spain > div {
      width: calc(100% - 30px);
      height: auto;
  }
}
.overlay-search {
  display: none;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 25px;
  background: rgba(255, 255, 255, 0.98);
  overflow-y: auto;
  overflow-x: hidden;
}
.overlay-search h2 {
  margin: 0;
}
form#search input {
  font-size: 18px;
  font-weight: 300;
  line-height: 25px;
  border: 0;
  border-bottom: 1px solid #eee;
  padding: 8px 30px;
  margin: 15px auto 15px auto;
  background: none;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  form#search input {
      font-size: 30px;
      line-height: 50px;
  }
}
.added {
  position: fixed;
  bottom: -100px;
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  z-index: 888;
  padding-top: 8px;
  padding-bottom: 8px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.added.visible {
  bottom: 0;
}
.added.bg-success {
  background: #27ae60;
  color: #fff;
}
.added.bg-warning {
  background: #f7da64;
}
.noscroll {
  overflow: hidden !important;
}
.nocursive {
  font-style: normal !important;
}
#debug {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #545454;
  z-index: 9999;
  background: #fff;
  text-align: center;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  border-top: 1px solid red;
  -webkit-transform: translateZ(0);
}
.cart_sticky[data-items=""] {
  display: none;
}
@media screen and (max-width: 1024px) {
  .block_mini_home1 svg {
      width: auto;
      height: 45px !important;
  }
  .block_mini_home4 svg {
      width: auto;
      height: 45px !important;
  }
}
@media screen and (max-width: 989px) {
  .text-sm-center {
      text-align: center;
  }
}
.alert-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1001;
  text-align: center;
}
.alert-modal > div {
  overflow-y: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 50%;
  max-width:600px;
  transform: translate(-50%, -50%);
  max-width: calc( 100% - 30px );
  max-height: calc( 100% - 30px );    
  padding:15px;
  border-radius: 8px;
  background: linear-gradient(180deg, #82241ad2, #d43b2dd2);
  box-shadow: 2px 6px 20px -6px rgba(0,0,0,0.35);
  color: white;
}
.alert-modal h4.title {
  font-size: 15px;
  font-weight: 600;
  color: white;
}
.alert-modal span.message {
  display: block;
  font-size: 14px;    
  max-width: calc(100% - 30px);
  margin: 15px auto 0 auto;
}
.alert-modal button {
  display: inline-block;
  padding: 6px 12px;
  font-weight: 600;
  margin: 15px auto;
  background: white;
  color: #333 !important;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 2px 2px 3px -2px rgba(0,0,0,0.5);
  transition-duration: 0.3s;
}
  .alert-modal button:hover {
    background: #fafafa;
		color: #333 !important;
		text-decoration: none;
		box-shadow: -1px -1px 3px -2px rgba(0,0,0,0);
  }
@media screen and (max-width: 768px) {
  .alert-modal > div {
      width: calc(100% - 30px);
  }
  .text-xs-center {
      text-align: center !important;
  }
}
@media screen and (max-width: 767px) {
  .text-xs-center {
      text-align: center !important;
  }
}
@media screen and (max-width: 480px) {
  .hidden-xxs {
      display: none !important;
  }
}

/* OJO */
header {
  width: 100%;
  z-index: 100;
  padding: 10px 0;  
}
header > div > div > [class*="col-md-4"] {
  height: 80px;
}

.flex-v-center {
  height: 100%;
  display: flex;
  justify-content: center;  
  flex-direction: column;  
}

.h100 {
  height: 100%;
}
.h-auto {
  height: initial;
}

.p0 {
  padding: 0;
}

#logo {
  height: 100%;
}
#logo > img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  cursor: pointer;
}
@media screen and (max-width:480px){
  #logo > img {
    width: 80%;
    margin: 0 auto;
  }
}

header a {
  color: white;
  font-size: 14px;
  line-height: 1;
  display: inline-block;  
}
  header a:hover,
  header a:focus {
    color: white;    
  }
header a.button {
  display: inline-block;
  padding: 2px 10px;
  color: #333;
  border: 1px solid #333;
  border-radius: 6px;
  width: 100px;
  max-width: 100%;
  text-align: center;
  margin: 4px 0;
  background: white;
}
  header a.button:hover {
    color: #333;
    background: white;
    text-decoration: underline !important;
  }

#info-description,
#info-description-mobile {
  background: #fff;
  border: 1px solid #eee;
  position: absolute;
  text-align: left;
  font-size: 12px;
  z-index: 999;
  left: 0;
  overflow: auto;
  width: 500px;
  max-width: calc(100vw - 30px );
  max-height: 70vh;
}
#info-description-mobile {
  left: 5px;
  max-width: calc(100vw - 10px );
}
#info-description span,
#info-description-mobile span {
  color:#e30613 !important;
  font-size:13px;
}
#info-description a,
#info-description-mobile a {
  display:inline; 
  margin:0;
  padding:0
}

#info-description::-webkit-scrollbar,
#info-description-mobile::-webkit-scrollbar {
  width: 6px;
}
#info-description::-webkit-scrollbar-track,
#info-description-mobile::-webkit-scrollbar-track {
  background: #f5f5f5; 
}
#info-description::-webkit-scrollbar-thumb,
#info-description-mobile::-webkit-scrollbar-thumb {
  background: #c1c1c1;
}
#info-description::-webkit-scrollbar-thumb:hover,
#info-description-mobile::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

#user-logged a { color: #333; }

#search-field,
#search-field-xs
{
  background: unset;
  text-align: right;
  border: none;
  color: #333;
  width: 100%;
  border-radius: 0 !important;
  outline: unset !important;
}
#search-field {
  border-bottom: 1px solid #333;
}

#search-field::placeholder,
#search-field-xs::placeholder {
  color: #333;
}

#header-buttons {
  position: relative;
  left: -6px;
}

@media screen and (max-width: 500px) {
  #header-buttons {
    position: relative;
    left: initial;
    right: 30px;
    width: 30vw;
  }  
  header a.button {
    border-radius: 8px;
    font-size: 12px;
    padding: 2px 8px;
    width: 80px;
  }
  #user-logged a {
    font-size: 13px;
  }
  #search-field-xs {
    font-size: 14px;
  }
}

#menu_toggle {
  background: unset;
  border: none;
}
#menu_toggle img { width: 50px; }
#cta-cart {
  color: #333;
}
label.min48h {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--theme-red);
  color: white;
  padding: 2px;
  border-radius: 4px;
  line-height: 1;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  font-size: 10px;
  justify-content: center;  
}
.pe-submenu [href$="/navidad"] { background: #41914d; }
.pe-submenu [href$="/navidad"]:hover { background: #51A15d; }
.pe-submenu ul > li.active [href$="/navidad"] {
  background: #51A15d;
}