/* MENSAJE DE HEADER EN FILA 1 */

#header-msg {
  display: inline-block;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  font-size: 12px;
}

#header-msg.fade-out {
  opacity: 0;
}


/* ESTILO VISUAL DEL BOTON OPORTUNIDADES EN LA HOME */
/* clase visual aplicada en el elemento del menu "personalizar --> menu" */


.menu-espacio>a {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  height: 25px !important;
  margin-right: 20px;
  background-color: #000;
  color: #fff !important;
  border-radius: 0px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

/* MODIFICAR ICONO SVG DEL HEADER*/
/* Elimina el relleno "fill" para iconos de tipo Outline*/

[data-row] svg [stroke] {
  fill: none !important;
}

[data-row] .ct-icon {
  color: var(--theme-icon-color);
}

/*MINICART*/
.ct-cart-content {
  max-height: 80vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}