/*@color-primary: #47b3f1;*/
/*@mobile:      ~"only screen and (max-width: 529px)";
@tablet:      ~"only screen and (min-width: 530px) and (max-width: 949px)";
@tabletP:     ~"only screen and (min-width: 530px) and (max-width: 949px) and (max-height: 500px)";
@desktop:     ~"only screen and (min-width: 950px) and (max-width: 1128px)";
@desktop-xl:  ~"only screen and (min-width: 1129px)";*/
/* Hacer coincidir con los puntos de ruptura de Bootstrap*/
:root {
  --principal: #0f4171;
  --secundario-azul-oscuro: #042647;
  --secundario-azul-medio: #77b3ed;
  --secundario-azul-claro: #cfe4f8;
  --secundario-rosa: #ff6666;
  --negro: #000000;
  --blanco: #fff;
  --color-claro: var(--secundario-azul-claro);
  --color-clarisimo: var(--blanco);
  --color-efe: var(--principal);
  --color-medio: var(--secundario-azul-medio);
  --color-oscuro: var(--secundario-azul-oscuro);
  --color-oscurisimo: var(--negro);
  --color-fondo: #e9ebeb;
  --buscador-contenedor-fondo: var(--principal);
  --buscador-contenedor-txt: var(--secundario-azul-claro);
  --buscador-input-fondo: var(--blanco);
  --buscador-input-txt: var(--secundario-azul-oscuro);
  --buscador-txt-hover: var(--secundario-azul-medio);
  --filtrado-cabecera: var(--secundario-azul-oscuro);
  --filtrado-toggle: var(--secundario-azul-oscuro);
  --filtrado-btn: var(--secundario-azul-claro);
  --filtrado-txt: var(--secundario-azul-oscuro);
  --filtrado-fondo: var(--secundario-azul-claro);
  /* fondo de la columna de filtrado*/
  --filtrado-borde: var(--secundario-azul-medio);
  --filtrado-agenda-btn: #050F14;
  /*--filtrado-agenda-txt: #7c96a2;*/
  --filtrado-agenda-txt: #fefefe;
  --filtrado-agenda-fondo: #050F14;
  --General-filtrado-fondo: var(--secundario-azul-medio);
  --menu-nav-item-divider: var(--secundario-azul-medio);
  --menu-nav-user-divider: var(--secundario-azul-medio);
  --menu-nav-Link: var(--principal);
  --menu-nav-Link-hover: var(--secundario-azul-medio);
  --menu-nav-Link-active: var(--secundario-azul-medio);
  --menu-nav-Link-caret: var(--principal);
  --menu-nav-item-dropdown-menu: var(--secundario-azul-medio);
  --menu-nav-item-dropdown-header: var(--secundario-azul-oscuro);
  --menu-nav-item-dropdown-header-txt: var(--blanco);
  --search-area-bg-color: brown;
  --search-input-bg-color: brown;
  --filters-area-bg-color: red;
  --menu-footer-fondo: var(--negro);
  --menu-footer-nav-Link: var(--secundario-azul-claro);
  --menu-footer-nav-Link-hover: var(--secundario-azul-medio);
  --range-control: red;
}
.contenedor {
  position: relative;
  height: 200px;
  width: 100%;
  overflow: hidden;
}
.capa {
  width: 100%;
  height: 100px;
  position: absolute;
  bottom: -150px;
  /* Comienza debajo de la vista */
  font-size: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  /* Centra horizontalmente */
  align-items: end;
  color: #fff;
  text-shadow: 2px 2px 2px #000000;
  opacity: 0;
}
.capa p {
  padding: 0;
  margin: 0;
}
.capa1 {
  /*background-color: #3498db;*/
}
.capa2 {
  /*background-color: #e74c3c;*/
}
/*ul.menuprue {
  background-color: #77b3ed;
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
  
  li {
    float: left; 
    /*width: 16.666%;*/
/*width:50px;
    opacity: 1;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    
    &:hover,
    &:first-child ~ li:last-child {
      /*width: 50%;*/
/* width:auto;
      opacity: 1;
      -moz-transition: all .5s ease-in-out;
      -ms-transition: all .5s ease-in-out;
      -webkit-transition: all .5s ease-in-out;
      transition: all .5s ease-in-out;
    }
    
    &:hover ~ li:last-child {
      width: 16.666%;
      opacity: 0.4;
    }
  }
} // End ul*/
/** Add cool filter efects **/
/*ul.menuprue li {
  &::before {
    content: "";
    display:block;
    width:0;
    height:100%;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
  }
  &::after{
    content: attr(data-full);
    position: absolute;
    left: 100%;
    white-space: nowrap;
  }

  &:nth-child(1)::before { background-color: rgba(255, 87, 34, .2)}
  &:nth-child(2)::before { background-color: rgba(76, 175, 80, .25)}
  &:nth-child(3)::before { background-color: rgba(33, 150, 243, .25)}
  &:nth-child(4)::before { background-color: rgba(156, 39, 176, .2)}
}*/
ul.menuprue {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.menu-item {
  color: #bd1616;
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 50px;
  /* Solo se muestra 3 letras */
  transition: all 0.3s ease;
}
.menu-item:hover {
  width: auto;
  /* Al pasar el ratón, el texto se despliega */
}
.menu-item::after {
  content: attr(data-full);
  position: absolute;
  left: 100%;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease, left 0.3s ease;
}
.menu-item:hover::after {
  opacity: 1;
  left: 0;
}
/* Estilo del contenido de cada elemento que se oculta */
.menu-item.collapsed::after {
  display: none;
}
/* --------------------------------------------------------- */
/*   1. Estructura : HTML/BODY | HEADER | SIDEBAR | FOO      */
/* --------------------------------------------------------- */
html *,
body * {
  box-sizing: border-box;
  /*outline:solid 1px red; */
}
html,
body {
  height: 100vh;
  position: relative;
  font-family: 'Segoe UI', 'Ubuntu', Verdana, Arial, 'Open sans', Helvetica, sans-serif !important;
  font-size: 0.95rem;
  /*&:after { 
    color: white; content: "undefined"; left: 0; position: absolute; text-align: center; top: 0; z-index: 99;
    @media @mobile {background: orange; content: "mobile";}
    @media @tablet {background: purple; content: "tablet";}
    @media @desktop {background: green; content: "desktop";}
    @media @desktop-xl {background: blue;content: "desktop-xl";}
    }*/
  line-height: 1.5rem;
  font-weight: normal;
  color: #344856;
}
@media only screen and (max-width: 575px) {
  html,
  body {
    font-size: 95%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 991px) {
  html,
  body {
    font-size: 97%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  html,
  body {
    font-size: 100%;
  }
}
/* HEADER ------------------------------- */
header {
  min-height: 60px;
}
header a.navbar-brand {
  font-size: 2.2rem;
  line-height: normal;
  font-family: 'Segoe UI Black';
  white-space: normal;
  text-align: center;
  word-break: break-all;
}
/* CONTAINER ------------------------------- */
.container {
  margin: 0 auto;
  overflow: auto;
}
.container-fluid {
  /*min-height: calc(100% - 176px)*/
}
.container-fixed {
  max-width: 1170px;
  margin: 0 auto;
}
.container-fluid {
  padding: 0;
  width: 100%;
}
.container-body-app {
  min-height: calc(100% - 80px);
  overflow: auto;
  position: relative;
}
/* SEARC BAR ---------------------------------- */
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .search .search-div {
    min-width: 100%;
  }
  .search .btn-filter {
    width: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  .search {
    height: 50px;
  }
  .search .search-div {
    min-width: calc(100% - 15rem);
  }
  .search .btn-filter {
    width: 15rem;
    pointer-events: none;
  }
}
.search .btn-filter {
  background-color: #344856;
  color: white;
}
.search .btn-filter:hover {
  background-color: #5c7f97;
}
.search .btn-filter:focus {
  box-shadow: none;
  background-color: #344856;
}
.search button,
.search input {
  line-height: 50px;
  height: 50px;
}
.search button:hover,
.search input:hover {
  background-color: #5c7f97;
}
.search button:focus,
.search input:focus {
  box-shadow: none;
}
.search button::placeholder,
.search input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #cecece;
  opacity: 1;
  /* Firefox */
}
.search button:-ms-input-placeholder,
.search input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #cecece;
}
.search button::-ms-input-placeholder,
.search input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #cecece;
}
/* SIDE BAR ---------------------------------------------- */
#wrapper {
  overflow-x: hidden;
}
#sidebar-wrapper,
#sidebar-wrapper-derecha {
  -webkit-transition: margin 0.25s ease-out;
  -moz-transition: margin 0.25s ease-out;
  -o-transition: margin 0.25s ease-out;
  transition: margin 0.25s ease-out;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  #collapseSideBar #sidebar-wrapper {
    height: 100%;
    min-height: calc(100vh + 60px);
    /*margin-left: -@w-sidebar;*/
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  #collapseSideBarModal #sidebar-wrapper {
    height: 100%;
    min-height: 596px;
    /*margin-left: -@w-sidebar;
            &.filtradorproductos {
                height: 100%;
                max-height: 580px;
            }*/
  }
}
#sidebar-wrapper .sidebar-heading {
  padding: 0.875rem 1.25rem;
  font-size: 1.2rem;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  #sidebar-wrapper .list-group {
    width: 15rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  #sidebar-wrapper-derecha {
    /*height: 100%;*/
    min-height: 602px;
  }
  #sidebar-wrapper-derecha #ListaProductosSelecionados_SIDEBAR {
    overflow: hidden;
    overflow-y: auto;
    max-height: 448px;
  }
}
.sidebar-separator {
  border-bottom: 1px solid #96afc0;
}
#page-content-wrapper {
  min-width: 100vw;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  #page-content-wrapper {
    min-width: 0;
    width: 100%;
    max-width: calc(100% - 15rem);
  }
}
/* FOOTER --------------------------------------------- */
footer {
  /* position: fixed;
    bottom: 0;
    right:0;
    width: 100%;
    white-space: nowrap;
    line-height: 22px; /* Vertically center the text there */
  /* &.noncomplete-w{width: calc(100% - @w-sidebar);}*/
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  footer {
    height: 51.2px;
  }
}
/*iframe{border:0; height:calc(100vh - 124px)}*/
.container-Hmin {
  min-height: calc(100% - 166px);
}
.contaniner-Hmin-B {
  min-height: calc(100% - 286px);
}
/* Textos ********* */
.formato {
  background-color: var(--color-medio);
  color: white;
  display: inline;
  font-size: 12px;
  padding: 2px 6px;
}
.fecha {
  color: var(--color-medio);
}
.guia {
  color: var(--color-medio);
}
.titulo {
  color: var(--color-oscuro);
}
.texto {
  color: var(--color-oscurisimo);
}
.datos {
  color: var(--color-medio);
}
.metadatos-titulo {
  color: var(--color-oscuro);
}
.metadatos-dato {
  color: var(--color-medio);
}
.fecha-o {
  color: var(--color-medio);
}
.guia-o {
  color: var(--color-medio);
}
.titulo-o {
  color: var(--color-clarisimo);
}
.texto-o {
  color: var(--color-clarisimo);
}
.datos-o {
  color: var(--color-medio);
}
.metadatos-titulo-o {
  color: var(--color-claro);
}
.metadatos-dato-o {
  color: var(--color-medio);
}
/* Fin textos ***** */
/* Cajas ******* */
.caja-blanca {
  background-color: var(--color-clarisimo);
}
.caja-primaria {
  background-color: var(--color-efe);
}
.caja-secundaria-c {
  background-color: var(--color-claro);
}
.caja-secundaria-m {
  background-color: var(--color-medio);
}
.caja-secundaria-o {
  background-color: var(--color-oscuro);
}
.caja-negra {
  background-color: var(--color-oscurisimo);
}
.caja-fondo {
  background-color: var(--color-fondo);
}
.pop-up {
  background-color: var(--error-validation-color);
  font-weight: 300;
  display: inline-block;
  width: max-content;
  padding: 6px 12px;
  position: absolute;
  left: -8px;
  margin: 4px 0 0;
  box-shadow: 0px 0px 2px 0px var(--color-medio);
}
.pop-up .form-control {
  width: 132px;
}
.pop-up:before {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--color-medio);
  position: absolute;
  top: -10px;
}
/* - Table ********************* */
#Cabecera_pedidos {
  margin: 0;
  padding: 0 1rem;
  display: inline-block;
  background-color: var(--color-medio);
}
#Cabecera_pedidos .Cabecera_pedidos_data {
  background-color: var(--color-medio);
}
#Cabecera_pedidos .Cabecera_pedidos_accordion {
  background-color: var(--color-efe) /*#0f4171;*/;
}
#Cabecera_pedidos li {
  margin: 0;
  color: var(--color-clarisimo);
  font-size: 0.9rem;
}
#Cabecera_pedidos li span {
  font-weight: 500;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  #Cabecera_pedidos li {
    display: block;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  #Cabecera_pedidos li {
    display: inline-block;
    padding: 0 1rem;
    margin: 0.5rem 0 !important;
    border-right: solid 1px white;
  }
}
#Cabecera_pedidos li:last-child {
  border: none;
}
div[id^="tablePedidos"],
div[id^="Detalle_"] {
  background-color: #e9ebeb;
  border: 2px solid var(--color-medio);
}
div[id^="tablePedidos"].pedido-activo,
div[id^="Detalle_"].pedido-activo {
  border-width: 34px;
}
.separador-consumos {
  margin: 40px 0;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .nav-item-active {
    order: 12;
  }
}
/* * Responsible table con div ********************** * */
div.table-responsive {
  /*background-color: #e9ebeb;*/
}
div.table-responsive-media {
  display: block;
  font-size: 0.9rem;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  div.table-responsive-media {
    padding: 0;
    margin: 0 0 6px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  div.table-responsive-media {
    padding: 0;
    margin: 0 0 6px;
    background-color: #e9ebeb;
    border: solid 1px var(--color-efe);
  }
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  div.table-responsive-media div.table-header,
  div.table-responsive-media div.table-row,
  div.table-responsive-media div.table-row-mm {
    padding: 0;
    margin: 0 0 6px;
    display: block;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  div.table-responsive-media div.table-header,
  div.table-responsive-media div.table-row,
  div.table-responsive-media div.table-row-mm {
    display: flex;
    flex-direction: row;
  }
  div.table-responsive-media div.table-header div.col-40-fix,
  div.table-responsive-media div.table-row div.col-40-fix,
  div.table-responsive-media div.table-row-mm div.col-40-fix {
    min-width: 40px;
    max-width: 50px;
  }
  div.table-responsive-media div.table-header div.col-70-fix,
  div.table-responsive-media div.table-row div.col-70-fix,
  div.table-responsive-media div.table-row-mm div.col-70-fix {
    min-width: 70px;
    max-width: 80px;
    width: 5.5%;
  }
  div.table-responsive-media div.table-header div.col-110-fix,
  div.table-responsive-media div.table-row div.col-110-fix,
  div.table-responsive-media div.table-row-mm div.col-110-fix {
    min-width: 100px;
    max-width: 110px;
    width: 8.5%;
  }
  div.table-responsive-media div.table-header div.col-120-fix,
  div.table-responsive-media div.table-row div.col-120-fix,
  div.table-responsive-media div.table-row-mm div.col-120-fix {
    min-width: 120px;
    max-width: 130px;
    width: 9.5%;
  }
  div.table-responsive-media div.table-header div.col-180-fix,
  div.table-responsive-media div.table-row div.col-180-fix,
  div.table-responsive-media div.table-row-mm div.col-180-fix {
    min-width: 180px;
    max-width: 190px;
    width: 13.6%;
  }
  div.table-responsive-media div.table-header div.col-240-fix,
  div.table-responsive-media div.table-row div.col-240-fix,
  div.table-responsive-media div.table-row-mm div.col-240-fix {
    min-width: 240px;
    max-width: 250px;
    width: 18.8%;
  }
  div.table-responsive-media div.table-header div.col-300-fix,
  div.table-responsive-media div.table-row div.col-300-fix,
  div.table-responsive-media div.table-row-mm div.col-300-fix {
    min-width: 300px;
    max-width: 310px;
    width: 23.6%;
  }
  div.table-responsive-media div.table-header div.col-340-fix,
  div.table-responsive-media div.table-row div.col-340-fix,
  div.table-responsive-media div.table-row-mm div.col-340-fix {
    min-width: 340px;
    max-width: 350px;
    width: 26.9%;
  }
}
div.table-responsive-media div.table-header {
  /*background-color: #e9ebeb;*/
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  div.table-responsive-media div.table-header {
    display: none;
  }
}
div.table-responsive-media div.table-header div {
  padding: 0;
  /* border-top: 1px none #f2f2f2;*/
  background-color: var(--color-efe) /*#0f4171*/;
  color: white;
  /*font-size: 0.9rem;*/
  align-items: center;
  display: flex;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  div.table-responsive-media div.table-header div {
    border-right: solid 1px var(--color-claro) /*#6ccada*/ !important;
    border-bottom: solid 4px var(--color-claro) /*#6ccada*/ !important;
    min-height: 50px;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
div.table-responsive-media div.table-header div:last-of-type {
  border-right: unset;
}
div.table-responsive-media div.table-header div.Hauto {
  min-height: unset !important;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  div.table-responsive-media div.table-header span,
  div.table-responsive-media div.table-header label,
  div.table-responsive-media div.table-header a.btn,
  div.table-responsive-media div.table-header div.situacion-servicio,
  div.table-responsive-media div.table-header div.consumosDescarga {
    flex-basis: 60%;
    text-align: left;
    padding: 5px 0 5px 5px;
    border-left: solid 2px #c4dfed !important;
  }
  div.table-responsive-media div.table-header label {
    margin: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  div.table-responsive-media div.table-header span,
  div.table-responsive-media div.table-header label,
  div.table-responsive-media div.table-header a.btn,
  div.table-responsive-media div.table-header div.situacion-servicio,
  div.table-responsive-media div.table-header div.consumosDescarga {
    text-align: center;
  }
}
.table-row-container {
  flex-direction: column;
  box-shadow: 0 1px 3px #c4c4c4;
  background-color: white;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .table-row-container {
    margin: 0 0 8px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  .table-row-container {
    margin: 0 0 6px 0;
  }
}
.table-row-container:last-of-type {
  margin: 0;
}
.table-row-container .table-row {
  border: unset !important;
  background-color: white;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .table-row-container .table-row-objetos {
    border: solid 6px white !important;
    border-top: none!important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  .table-row-container .table-row-objetos {
    border: solid 4px white !important;
    border-top: none!important;
    /*background-color:Transparent !important;*/
  }
}
.table-row-container .table-row > div[class^="col"] {
  /* border-top: 1px none #f2f2f2;*/
  background-color: white;
  /*font-size: 0.9rem;*/
  align-items: center;
  display: flex;
  word-wrap: break-word;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .table-row-container .table-row > div[class^="col"] {
    border: solid 1px #d3dde2;
    padding: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  .table-row-container .table-row > div[class^="col"] {
    padding: 4px;
    border-right: solid 1px #c4dfed;
    -ms-flex-align: center!important;
    align-items: center!important;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  .table-row-container .table-row > div[class^="col"]:last-of-type {
    border-right: unset!important;
    border-bottom: unset!important;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .col-media-MT {
    flex-basis: 100%!important;
    position: relative;
    display: flex;
    background: #225771;
    background: linear-gradient(90deg, #225771 40%, #ffffff 40%);
  }
  .col-media-MT:before {
    background-color: #225771;
    top: 0;
    bottom: 0;
    color: white;
    padding: 5px 5px 5px 0;
    content: attr(data-label);
    flex-basis: 40%!important;
    text-align: right;
  }
  .col-media-MT span,
  .col-media-MT label,
  .col-media-MT a.btn,
  .col-media-MT div.situacion-servicio,
  .col-media-MT div.consumosDescarga {
    flex-basis: 60%;
    text-align: left;
    padding: 5px 0 5px 5px;
    border-left: solid 2px #c4dfed !important;
  }
  .col-media-MT label {
    margin: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  .col-media-MT {
    text-align: center;
  }
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7 {
    max-width: unset!important;
  }
}
/* * Fin Responsible table con div ***************** * */
/* PIEEEEEEEEEEEEEEEEEEEEEEEEEEEE chart ****/
@property --p {
  syntax: '<number>';
  inherits: true;
  initial-value: 0;
}
.pie-graph {
  --p: 20;
  /* the percentage */
  --b: 22px;
  /* the thickness */
  --c: var(--color-medio);
  /* the color */
  --w: 150px;
  /* the size*/
  width: var(--w);
  aspect-ratio: 1/1;
  position: relative;
  display: inline-grid;
  margin: 5px;
  place-content: center;
  font-size: 0.9rem;
  font-weight: bold;
  font-family: sans-serif;
}
.pie-graph:before,
.pie-graph:after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.pie-graph:before {
  inset: 0;
  /*background:
    radial-gradient(farthest-side,var(--c) 98%,#0000) top/var(--b) var(--b) no-repeat,
    conic-gradient(var(--c) calc(var(--p)*1%),#ebebeb 0);*/
  background: radial-gradient(farthest-side, var(--c) 98%, #0000) top / var(--b) var(--b) no-repeat, conic-gradient(var(--c) calc(var(--p)*1%), #ebebeb 0);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(99% - var(--b)), #000 calc(100% - var(--b)));
  mask: radial-gradient(farthest-side, #0000 calc(99% - var(--b)), #000 calc(100% - var(--b)));
}
/*
.pie-graph:after {
  inset:calc(50% - var(--b)/2);
  background:var(--c);
  transform:rotate(calc(var(--p)*3.6deg - 90deg)) translate(calc(var(--w)/2 - 50%));
}*/
.animate {
  animation: p 1s 0.5s both;
}
.no-round:before {
  background-size: 0 0,auto;
}
.no-round:after {
  content: none;
}
@keyframes p {
  from {
    --p: 0;
  }
}
/* Pieeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee */
/* Table generada en tables.less */
.table th.w-40-fix,
.table td.w-40-fix {
  min-width: 40px;
  max-width: 50px;
}
.table th.w-70-fix,
.table td.w-70-fix {
  min-width: 70px;
  max-width: 80px;
  width: 5.5%;
}
.table th.w-110-fix,
.table td.w-110-fix {
  min-width: 100px;
  max-width: 110px;
  width: 8.5%;
}
.table th.w-120-fix,
.table td.w-120-fix {
  min-width: 120px;
  max-width: 130px;
  width: 9.5%;
}
.table th.w-180-fix,
.table td.w-180-fix {
  min-width: 180px;
  max-width: 190px;
  width: 13.6%;
}
.table th.w-240-fix,
.table td.w-240-fix {
  min-width: 240px;
  max-width: 250px;
  width: 18.8%;
}
.table th.w-300-fix,
.table td.w-300-fix {
  min-width: 300px;
  max-width: 310px;
  width: 23.6%;
}
.table th.w-340-fix,
.table td.w-340-fix {
  min-width: 340px;
  max-width: 350px;
  width: 26.9%;
}
.table thead tr th {
  height: 40px;
  border-right: 1px solid #7796ac;
  text-align: center;
  vertical-align: middle !important;
  padding: 0;
  border-top: 1px none #f2f2f2;
  font-size: 0.9rem;
  vertical-align: middle;
}
.table thead tr th:last-of-type {
  border-right: 1px none #f2f2f2;
}
.table thead tr th label,
.table thead tr th button,
.table thead tr th a {
  min-width: 100%;
  text-align: center !important;
  display: block !important;
  height: 40px;
  font-size: 0.9rem !important;
}
.table thead tr th label,
.table thead tr th a {
  height: auto !important;
}
.table thead tr th #ord-efe-icon-flecha-abajo,
.table thead tr th #ord-efe-icon-flecha-arriba,
.table thead tr th .pac-flecha-arriba,
.table thead tr th .pac-flecha-abajo {
  position: absolute;
  right: 0;
  left: 0;
}
.table thead tr th #ord-efe-icon-flecha-abajo,
.table thead tr th .pac-flecha-abajo {
  bottom: 0;
}
.table thead tr th #ord-efe-icon-flecha-arriba,
.table thead tr th .pac-flecha-arriba {
  top: 0;
}
.table tbody tr:not(.spacer) td,
.table tbody tr:not(.spacer) th {
  vertical-align: middle !important;
  padding: 0;
  /*border-bottom: 1px solid @grey-light;*/
  font-size: 0.9rem;
  padding: 0.5rem;
}
.table tbody tr:not(.spacer) td a,
.table tbody tr:not(.spacer) th a {
  font-size: 0.9rem;
}
.table tbody tr:not(.spacer) td {
  border-right: 1px solid #f2f2f2;
  color: #344856;
}
.table tbody tr:not(.spacer) td:last-of-type {
  border-right: 1px none #f2f2f2;
}
.table tbody tr:not(.spacer) td[colspan] {
  padding: 0 !important;
  border-bottom: 1px solid #f2f2f2;
}
.table tbody tr:not(.spacer) td[colspan] .DIVobjetosMM {
  background-color: #ececec;
  border: solid 10px white;
  border-top: none;
}
.table tbody tr:not(.spacer) .form-info {
  background-color: transparent !important;
  opacity: 1;
  border: solid 1px white;
  border-radius: 0;
  cursor: not-allowed;
  font-size: 1.5rem !important;
  padding: 0 1rem !important;
  border-left: 1px solid #007bff !important;
  height: auto;
}
.table tbody tr.spacer td {
  padding: 0 !important;
  height: 6px;
  border-radius: 0 !important;
  border: 0px none transparent !important;
  background: transparent !important;
}
.table.usuarios thead #ord-efe-icon-flecha-abajo,
.table.usuarios thead #ord-efe-icon-flecha-arriba {
  color: #6ccada;
}
.table.usuarios thead th {
  border-bottom: solid 4px #6ccada !important;
}
.table.usuarios tbody td[colspan] .card-body {
  background-color: #6ccada !important;
}
.table.usuarios tbody .form-info {
  border-left: 1px solid #6ccada !important;
}
.table-publi th,
.table-publi td {
  text-align: center;
  border: solid 1px #666666 !important;
}
.table-publi th.segunda-cabecera,
.table-publi td.segunda-cabecera {
  background-color: #738a9a;
  color: white;
}
.table-publi th.tercera-cabecera,
.table-publi td.tercera-cabecera {
  background-color: #bfd1de;
}
.table-publi th {
  background-color: #344856;
  color: white;
}
.table-publi th[rowspan][colspan] {
  background-color: transparent !important;
  border: none !important;
}
.table-publi td[colspan="5"] {
  background-color: #738a9a;
  font-size: 2px;
  padding: 0 !important;
}
.table-sm th,
.table-sm td {
  padding: 0.4rem !important;
}
/* - Fin Table ***************** */
.abtn {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}
.heightHref {
  height: 100%;
  width: 100%;
}
.form-control {
  font-size: 0.9rem !important;
  font-weight: 500;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .image-mosaic {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  .image-mosaic {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    /*grid-auto-rows: 350px;*/
  }
}
.card-directo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #353535;
  /*font-size: 3rem;*/
  color: #fff;
  box-shadow: rgba(3, 8, 20, 0.1) 0px 0.15rem 0.5rem, rgba(2, 8, 20, 0.1) 0px 0.075rem 0.175rem;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  transition: all 500ms;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .card-directo {
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 600px) {
  .card-tall {
    /*grid-row: span 2 / auto;*/
  }
  .card-wide {
    /* grid-column: span 2 / auto;*/
  }
}
.vid_orientacion_V {
  height: 30rem;
}
.vid_orientacion_H {
  width: 100%;
}
.panel-title {
  position: relative;
  padding-right: 2rem!important;
}
.panel-title::after {
  content: "\f107";
  color: #fff;
  top: 0;
  right: 1rem;
  position: absolute;
  font-size: 1rem;
  font-family: "FontAwesome";
}
.panel-title[aria-expanded="true"]::after {
  content: "\f106";
}
/*
 * Added 12-27-20 to showcase full title clickthrough
 */
.panel-heading-full.panel-heading {
  padding: 0;
}
.panel-heading-full .panel-title {
  padding: 10px 15px;
}
.panel-heading-full .panel-title::after {
  top: 10px;
  right: 15px;
}
/* DATATABLES ************************************************ */
.dataTables_wrapper {
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  .dataTables_filter {
    border-left: solid 1px #efefef;
  }
}
.dataTables_length,
.dataTables_filter {
  float: none !important;
  padding: 0 1rem;
  font-size: 0.8rem;
  border-bottom: solid 1px #efefef;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .dataTables_length,
  .dataTables_filter {
    width: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  .dataTables_length,
  .dataTables_filter {
    width: auto;
  }
}
.dataTables_length input,
.dataTables_length select,
.dataTables_filter input {
  /*display: inline-block;
      padding: .5rem .75rem;
      font-size: 1rem;
      line-height: 20000em;
      color: #464a4c;
      background-color: #fff;
      background-image: none;
      -webkit-background-clip: padding-box;
      background-clip: padding-box;
      border: 1px solid rgba(0,0,0,.15);
      border-radius: .25rem;
      -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
      transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
      -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
      transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
      transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;*/
}
.dataTables_length select {
  padding: 0 2px 0;
}
.dataTables_length select option {
  padding: 0 2px 0;
}
[class*="icono"] {
  /*position: relative;*/
  /* ORIGINAL */
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-block;
  vertical-align: middle;
  /*color: #56a5cc;*/
  box-sizing: border-box;
}
[class*="icono"]:after,
[class*="icono"]:before {
  content: "";
  box-sizing: border-box;
}
[class*="icono-arrow1"] {
  width: 20px;
  height: 20px;
  border-width: 4px 4px 0 0;
  border-style: solid;
  margin: 10px;
}
[class*="icono-arrow1"]:before {
  right: 0;
  top: -3px;
  position: absolute;
  height: 4px;
  box-shadow: inset 0 0 0 32px;
  transform: rotate(-45deg);
  width: 23px;
  transform-origin: right top;
}
[class*="icono-arrow1"][class*="-left"] {
  transform: rotate(45deg);
}
[class*="icono-arrow1"][class*="-left"][class*="-up"] {
  transform: none;
}
[class*="icono-arrow1"][class*="-left"][class*="-down"] {
  transform: rotate(90deg);
}
[class*="icono-arrow1"][class*="-right"] {
  transform: rotate(-135deg);
}
[class*="icono-arrow1"][class*="-right"][class*="-up"] {
  transform: rotate(-90deg);
}
[class*="icono-arrow1"][class*="-right"][class*="-down"] {
  transform: rotate(180deg);
}
[class*="icono-arrow1"][class*="-up"] {
  transform: rotate(-45deg);
}
[class*="icono-arrow1"][class*="-down"] {
  transform: rotate(135deg);
}
[class*="icono-arrow2"] {
  width: 0;
  height: 0;
  /* border-width: 6px; */
  /*ORIGINAL */
  border-width: 12px;
  border-style: solid;
  border-bottom-color: transparent;
  border-left-color: transparent;
  /*margin: 10px; */
  /* ORIGINAL */
}
[class*="icono-arrow2"]:before {
  right: 0;
  top: -3px;
  position: absolute;
  height: 4px;
  box-shadow: inset 0 0 0 32px;
  transform: rotate(-45deg);
  /*width: 15px;*/
  transform-origin: right top;
}
[class*="icono-arrow2"][class*="-left"] {
  transform: rotate(45deg);
}
[class*="icono-arrow2"][class*="-left"][class*="-up"] {
  transform: none;
}
[class*="icono-arrow2"][class*="-left"][class*="-down"] {
  transform: rotate(90deg);
}
[class*="icono-arrow2"][class*="-right"] {
  transform: rotate(-135deg);
}
[class*="icono-arrow2"][class*="-right"][class*="-up"] {
  transform: rotate(-90deg);
}
[class*="icono-arrow2"][class*="-right"][class*="-down"] {
  transform: rotate(180deg);
}
[class*="icono-arrow2"][class*="-up"] {
  transform: rotate(-45deg);
}
[class*="icono-arrow2"][class*="-down"] {
  transform: rotate(135deg);
}
[class*="icono"] {
  /*position: relative;*/
  /* ORIGINAL */
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-block;
  vertical-align: middle;
  /*color: #56a5cc;*/
  box-sizing: border-box;
}
[class*="icono"]:after,
[class*="icono"]:before {
  content: "";
  box-sizing: border-box;
}
[class*="icono-arrow3"] {
  width: 18px;
  height: 20px;
  border-width: 4px 4px 0 0;
  border-style: solid;
  margin: 10px;
  border-radius: 0 2px 0 0;
}
[class*="icono-arrow3"]:before,
[class*="icono-arrow3"]:after {
  border-radius: 2px;
  position: absolute;
}
[class*="icono-arrow3"]:before {
  right: 0;
  top: -3px;
  width: 23px;
  height: 4px;
  transform: rotate(-45deg);
  transform-origin: right top;
  box-shadow: inset 0 0 0 32px;
}
[class*="icono-arrow3"]:after {
  width: 4px;
  height: 4px;
  left: -2px;
  top: -4px;
  box-shadow: inset 0 0 0 32px, 16px 17px;
}
[class*="icono-arrow3"][class*="-left"] {
  transform: rotate(45deg);
}
[class*="icono-arrow3"][class*="-left"][class*="-up"] {
  transform: none;
}
[class*="icono-arrow3"][class*="-left"][class*="-down"] {
  transform: rotate(90deg);
}
[class*="icono-arrow3"][class*="-right"] {
  transform: rotate(-135deg);
}
[class*="icono-arrow3"][class*="-right"][class*="-up"] {
  transform: rotate(-90deg);
}
[class*="icono-arrow3"][class*="-right"][class*="-down"] {
  transform: rotate(180deg);
}
[class*="icono-arrow3"][class*="-up"] {
  transform: rotate(-45deg);
}
[class*="icono-arrow3"][class*="-down"] {
  transform: rotate(135deg);
}
[class*="icono-arrow4"] {
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-top: 7px solid;
  border-right: 7px solid;
  margin: 15px;
}
[class*="icono-arrow4"][class*="-left"] {
  transform: rotate(45deg);
}
[class*="icono-arrow4"][class*="-left"][class*="-up"] {
  transform: none;
}
[class*="icono-arrow4"][class*="-left"][class*="-down"] {
  transform: rotate(90deg);
}
[class*="icono-arrow4"][class*="-right"] {
  transform: rotate(-135deg);
}
[class*="icono-arrow4"][class*="-right"][class*="-up"] {
  transform: rotate(-90deg);
}
[class*="icono-arrow4"][class*="-right"][class*="-down"] {
  transform: rotate(180deg);
}
[class*="icono-arrow4"][class*="-up"] {
  transform: rotate(-45deg);
}
[class*="icono-arrow4"][class*="-down"] {
  transform: rotate(135deg);
}
.arrow_box {
  position: relative;
  /*background: #88b7d5;
    border: 4px solid #c2e1f5;*/
}
.arrow_box:after,
.arrow_box:before,
.arrow_box_disable_1:after,
.arrow_box_disable_1:before,
.arrow_box_disable_2:after,
.arrow_box_disable_2:before {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  z-index: 9;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .arrow_box:after,
  .arrow_box:before,
  .arrow_box_disable_1:after,
  .arrow_box_disable_1:before,
  .arrow_box_disable_2:after,
  .arrow_box_disable_2:before {
    top: 100%;
    left: 50%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  .arrow_box:after,
  .arrow_box:before,
  .arrow_box_disable_1:after,
  .arrow_box_disable_1:before,
  .arrow_box_disable_2:after,
  .arrow_box_disable_2:before {
    left: 100%;
    top: 50%;
  }
}
.arrow_box:after {
  border-color: rgba(136, 183, 213, 0);
  border-width: 10px;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .arrow_box:after {
    margin-left: -10px;
    border-top-color: #fff;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  .arrow_box:after {
    margin-top: -10px;
    border-left-color: #fff;
  }
}
.arrow_box:before,
.arrow_box_disable_1:before,
.arrow_box_disable_2:before {
  border-color: rgba(194, 225, 245, 0);
  border-width: 12px;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .arrow_box:before,
  .arrow_box_disable_1:before,
  .arrow_box_disable_2:before {
    margin-left: -12px;
    border-top-color: #e4e7ea;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  .arrow_box:before,
  .arrow_box_disable_1:before,
  .arrow_box_disable_2:before {
    margin-top: -12px;
    border-left-color: #e4e7ea;
  }
}
.arrow_box_disable_1 {
  position: relative;
  /*background: #e9ebeb;
    border: 4px solid #c2e1f5;*/
}
.arrow_box_disable_1:after {
  border-color: rgba(136, 183, 213, 0);
  border-width: 10px;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .arrow_box_disable_1:after {
    margin-left: -10px;
    border-top-color: #e9ebeb;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  .arrow_box_disable_1:after {
    margin-top: -10px;
    border-left-color: #e9ebeb;
  }
}
.arrow_box_disable_2 {
  position: relative;
  /*background: #ababab;
    border: 4px solid #c2e1f5;*/
}
.arrow_box_disable_2:after {
  border-color: rgba(136, 183, 213, 0);
  border-width: 10px;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .arrow_box_disable_2:after {
    margin-left: -10px;
    border-top-color: #c4c4c4;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  .arrow_box_disable_2:after {
    margin-top: -10px;
    border-left-color: #c4c4c4;
  }
}
/*30px;*/
/* 10px;*/
/*1px;*/
input[type=range] {
  -webkit-appearance: none;
  margin: 14px/2 0;
  /* Lo que tengo ahora 
  margin: 6.45px 0; 
  background:transparent
  */
  width: 100%;
  /*
  input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 1.1px;
    cursor: pointer;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0px 0px 1px rgba(13, 13, 13, 0);
    background: #979797;
    border-radius: 0px;
    border: 0px solid rgba(1, 1, 1, 0);
  }
*/
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  box-shadow: 2px 2px 2px #0f4171, 0px 0px 2px #124e88;
  background: #050605;
  border-radius: 5px;
  border: 0 solid black;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 1px 1px 1px #111, 0px 0px 1px #1e1e1e;
  border: 1px solid var(--color-efe);
  height: 14px;
  width: 14px;
  border-radius: 2px;
  background: var(--color-efe);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
  /*((-@track-border-width * 2 + @track-height) / 2) - (@thumb-height / 2);*/
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #111411;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  box-shadow: 2px 2px 2px #0f4171, 0px 0px 2px #124e88;
  background: #050605;
  border-radius: 5px;
  border: 0 solid black;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 1px 1px 1px #111, 0px 0px 1px #1e1e1e;
  border: 1px solid var(--color-efe);
  height: 14px;
  width: 14px;
  border-radius: 2px;
  background: var(--color-efe);
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 14px 0;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #000000;
  border: 0 solid black;
  border-radius: 5px*2;
  box-shadow: 2px 2px 2px #0f4171, 0px 0px 2px #124e88;
}
input[type=range]::-ms-fill-upper {
  background: #050605;
  border: 0 solid black;
  border-radius: 5px*2;
  box-shadow: 2px 2px 2px #0f4171, 0px 0px 2px #124e88;
}
input[type=range]::-ms-thumb {
  box-shadow: 1px 1px 1px #111, 0px 0px 1px #1e1e1e;
  border: 1px solid var(--color-efe);
  height: 14px;
  width: 14px;
  border-radius: 2px;
  background: var(--color-efe);
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #050605;
}
input[type=range]:focus::-ms-fill-upper {
  background: #111411;
}
/* RANGE CONTROL ******************************** */
/*
 
  
  input[type=range]::-webkit-slider-thumb {
    box-shadow: 0.5px 0.5px 0.5px rgba(0, 0, 0, 0), 0px 0px 0.5px rgba(13, 13, 13, 0);
    border: 0px solid rgba(0, 0, 0, 0);
    height: 14px;
    width: 14px;
    border-radius: 3px;
    background: var();
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -6.45px;
  }
  input[type=range]:focus::-webkit-slider-runnable-track {
    background: #b6b6b6;
  }
  input[type=range]::-moz-range-track {
    width: 100%;
    height: 1.1px;
    cursor: pointer;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0px 0px 1px rgba(13, 13, 13, 0);
    background: #979797;
    border-radius: 0px;
    border: 0px solid rgba(1, 1, 1, 0);
  }
  input[type=range]::-moz-range-thumb {
    box-shadow: 0.5px 0.5px 0.5px rgba(0, 0, 0, 0), 0px 0px 0.5px rgba(13, 13, 13, 0);
    border: 0px solid rgba(0, 0, 0, 0);
    height: 14px;
    width: 14px;
    border-radius: 3px;
    background: #56a5cc;
    cursor: pointer;
  }
  input[type=range]::-ms-track {
    width: 100%;
    height: 1.1px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
  }
 
  input[type=range]::-ms-thumb {
    box-shadow: 0.5px 0.5px 0.5px rgba(0, 0, 0, 0), 0px 0px 0.5px rgba(13, 13, 13, 0);
    border: 0px solid rgba(0, 0, 0, 0);
    height: 14px;
    width: 14px;
    border-radius: 3px;
    background: var(--color-efe);
    cursor: pointer;
    height: 1.1px;
  }
  input[type=range]:focus::-ms-fill-lower {
    background: #979797;
  }
  input[type=range]:focus::-ms-fill-upper {
    background: #b6b6b6;
  }
*/
@font-face {
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/rajdhani/v16/LDI2apCSOBg7S-QT7pasEcOs.ttf) format('truetype');
}
@font-face {
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/rajdhani/v16/LDIxapCSOBg7S-QT7q4A.ttf) format('truetype');
}
@font-face {
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/rajdhani/v16/LDI2apCSOBg7S-QT7pb0EMOs.ttf) format('truetype');
}
@font-face {
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/rajdhani/v16/LDI2apCSOBg7S-QT7pbYF8Os.ttf) format('truetype');
}
@font-face {
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/rajdhani/v16/LDI2apCSOBg7S-QT7pa8FsOs.ttf) format('truetype');
}
.rajdhani-light {
  font-family: "Rajdhani", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.rajdhani-regular {
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.rajdhani-medium {
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.rajdhani-semibold {
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.rajdhani-bold {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'efe-icons';
  src: url('../fonts/efe-icons.eot?9y2xu9');
  src: url('../fonts/efe-icons.eot?9y2xu9#iefix') format('embedded-opentype'), url('../fonts/efe-icons.ttf?9y2xu9') format('truetype'), url('../fonts/efe-icons.woff?9y2xu9') format('woff'), url('../fonts/efe-icons.svg?9y2xu9#efe-icons') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?9y2xu5');
  src: url('../fonts/fontawesome-webfont.eot?9y2xu5#iefix') format('embedded-opentype'), url('../fonts/fontawesome-webfont.ttf?9y2xu5') format('truetype'), url('../fonts/fontawesome-webfont.woff?9y2xu5') format('woff'), url('../fonts/fontawesome-webfont.svg?9y2xu5#fontawesome') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
/* TEXT ************** */
.txt-light {
  color: white;
}
.txt-dark {
  color: #000000;
}
.txt-grey {
  color: #d3d3d3;
}
.txt-baja {
  color: #bbb;
}
.txt-theme-m {
  color: #639baa;
}
/* Font-size *************************************** */
.f-xs {
  font-size: 0.65rem !important;
}
.f-s {
  font-size: 0.75rem !important;
}
.f-ns {
  font-size: 0.9rem !important;
}
.f-n {
  font-size: 1rem !important;
}
.f-ngr {
  font-size: 1.14rem !important;
}
.f-gr {
  font-size: 2rem !important;
}
.f-xgr {
  font-size: 2.25rem !important;
}
.f-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
/* Fin font-size *********************************** */
/* Menu ********************************* */
/* recursive mixin with guard expression - condition */
/* the statement */
/*#img@{index} {
    background-image: url("http://mysite.com/image@{index}.png");
    }*/
.listaDirectos_container :nth-child(1 of .fecha_31):before {
  content: attr(data-label);
}
/* end of the statement */
/* the next iteration's call - final-expression*/
/* the primary call - initialization */
/* Cabecera ****************************************** */
.navbar {
  padding: 0;
  width: 100%;
}
@media only screen and (max-width: 575px) {
  .navbar {
    min-height: 60px;
  }
}
.navbar button:focus {
  outline: 1px none!important;
  outline: 5px auto transparent!important;
}
.navbar-light {
  background-color: white;
}
.navbar-light .navbar-toggler {
  border-color: rgba(0, 0, 0, 0);
}
.navbar-light .navbar-toggler.navbar-toggler-right {
  right: 0;
}
.navbar-light .navbar-toggler .navbar-toggler-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.navbar-brand {
  padding: 0!important;
}
.navbar-brand img,
.navbar-brand svg {
  max-width: unset;
  height: auto;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .navbar-brand {
    position: absolute;
    left: 0;
    z-index: 1;
  }
}
@media only screen and (max-width: 575px) {
  .navbar-brand {
    top: 4px;
  }
  .navbar-brand img,
  .navbar-brand svg {
    max-width: unset;
    width: 140px;
    height: auto;
    margin: 0 0 0 8px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 991px) {
  .navbar-brand {
    top: 0;
  }
  .navbar-brand img,
  .navbar-brand svg {
    max-width: unset;
    width: 180px;
    height: auto;
    margin: 0 0 0 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  .navbar-brand img,
  .navbar-brand svg {
    max-width: unset;
    width: 204px;
    height: auto;
    margin: 0 0 0 13px;
  }
}
.navbar-brand:hover #imgSvg path,
.navbar-brand:hover #imgSvg polygon {
  fill: black;
}
.navbar-brand:hover .color-logo {
  fill: black;
}
.dispositive {
  width: 100%;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .dispositive .dispositive-user-area {
    order: 1;
    background-color: #ffffff;
    padding: 2px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  .dispositive .dispositive-user-area {
    order: 2;
    border-left: solid 1px var(--menu-nav-user-divider);
  }
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .dispositive .dispositive-user-area #info-user {
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
}
.dispositive .dispositive-user-area #info-user li {
  position: relative;
  cursor: pointer;
  height: 30px;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .dispositive .dispositive-user-area #info-user li {
    width: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  .dispositive .dispositive-user-area #info-user li {
    width: 40px;
  }
}
.dispositive .dispositive-user-area #info-user li .fa {
  position: absolute;
  bottom: 0;
}
.dispositive .dispositive-user-area #info-user .info .fa {
  font-size: 1rem;
  cursor: pointer;
}
.dispositive .dispositive-user-area .marca-favorito {
  color: #26C6DA !important;
  position: relative;
}
.dispositive .dispositive-user-area .marca-carro {
  color: #ffb22b !important;
  position: relative;
}
.dispositive .dispositive-user-area .marca-avisos {
  color: red !important;
  position: relative;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .dispositive .dispositive-product-area {
    order: 2;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  .dispositive .dispositive-product-area {
    order: 1;
  }
  .dispositive .dispositive-product-area.navbar-nav::before {
    content: "|";
    position: relative;
    display: inline-block;
    margin: 0;
    line-height: 60px;
    color: var(--menu-nav-user-divider) !important;
  }
}
.navbar-light .navbar-nav .show > .nav-link {
  color: #56a5cc !important;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .kakota {
    order: 1;
    background-color: red;
  }
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .rekakota {
    order: 2;
  }
}
/* NavBar ******************************************** */
#info-user .info .fa {
  font-size: 1.3rem;
  /*line-height: 2.5rem*/
  cursor: pointer;
}
/* MENU de la leche ********************************************** */
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .nav-item {
    border-bottom: solid 1px #e7ebec;
  }
}
.nav-item .nav-link {
  color: var(--menu-nav-link) !important;
  line-height: 34px;
  text-wrap: nowrap;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .nav-item .nav-link {
    text-align: center;
  }
  .nav-item .nav-link.show .nav-link {
    color: rgba(0, 20, 55, 0.5);
    text-align: center;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  .nav-item .nav-link.nav-link-a {
    padding: 0 1rem 0 0.5rem;
    line-height: 48px;
    margin: 0 0;
    font-size: 0.9rem;
    color: var(--menu-nav-Link) !important;
  }
  .nav-item .nav-link.nav-link-a.directo-color {
    color: var(--secundario-rosa) !important;
  }
  .nav-item .nav-link.nav-link-a.directo-color:hover {
    color: unset;
  }
  .nav-item .nav-link.nav-link-a:hover {
    color: var(--menu-nav-Link-hover) !important;
  }
  .nav-item .nav-link.nav-link-a:after,
  .nav-item .nav-link.nav-link-a:before {
    content: '';
    display: block;
    width: 100%;
    height: 6px;
    background: white;
  }
  .nav-item .nav-link.nav-link-a.active:after {
    background: var(--menu-nav-Link-active);
  }
  .nav-item .nav-link.nav-link-a .caret {
    font-size: 0.5rem !important;
    background: transparent;
    pointer-events: none;
    position: absolute;
    bottom: 30px;
    color: var(--menu-nav-Link-caret) !important;
    margin: auto;
    left: 97%;
    transform: translate(-100%, 50%);
  }
  .nav-item .nav-link.show .nav-link {
    color: rgba(0, 20, 55, 0.5);
  }
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
.nav-item .directo-blink-transmision-icon {
  animation: blink 1s step-start 0s infinite;
}
.nav-item.dropdown .dropdown-menu {
  padding: 0.25rem 0;
  margin: -2px 0 0;
  border: 2px solid var(--menu-nav-item-dropdown-menu);
  border-radius: 14px;
  min-width: 220px;
  overflow: hidden;
}
.nav-item.dropdown .dropdown-menu.dropdown-menu-orientation {
  right: 4px !important;
  left: auto !important;
}
.nav-item.dropdown .dropdown-menu .dropdown-header {
  font-size: inherit;
  color: var(--menu-nav-item-dropdown-header-txt);
  font-weight: 500;
  background-color: var(--color-oscuro);
}
@media only screen and (max-width: 575px) {
  .nav-item.dropdown .dropdown-menu .dropdown-header {
    padding: 0.8rem 1.2rem;
  }
}
.nav-item.dropdown .dropdown-menu .dropdown-item {
  padding: 4px;
  margin: 0 !important;
  font-size: 0.9rem;
  /*&:after, &:before{
            content: '';
            display: block;
            width: 100%;
            height: 6px;
            background: white;
          }*/
}
.nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  color: var(--menu-nav-Link-hover);
  background-color: unset !important;
}
.nav-item.dropdown .dropdown-menu .dropdown-item.active {
  color: var(--menu-nav-Link-active);
  text-decoration: none;
  background-color: transparent !important;
}
.nav-item.dropdown .dropdown-menu .dropdown-item.active:after {
  background: var(--menu-nav-Link-active);
}
@media only screen and (max-width: 575px) {
  .nav-item.dropdown .dropdown-menu .dropdown-item {
    padding: 0.1rem 0.5rem;
  }
}
.nav-item.dropdown .dropdown-menu .dropdown-item span {
  font-weight: normal;
}
.nav-item.dropdown .dropdown-menu .dropdown-item span.subtitulo {
  color: var(--secundario-azul-medio) !important;
}
.nav-item.dropdown .dropdown-menu .dropdown-item span.subtitulo,
.nav-item.dropdown .dropdown-menu .dropdown-item span.formato-menu {
  display: block;
}
.nav-item.dropdown:last-child .dropdown-menu.dropdown-menu-right,
.nav-item.dropdown:nth-last-child(2) .dropdown-menu.dropdown-menu-right {
  right: 4px !important;
  left: auto !important;
}
.nav-item.nav-item-divider {
  border-left: 1px solid var(--menu-nav-item-divider);
  font-size: 0;
}
.dropdown-toggle::after {
  display: none;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: unset;
  border-right: unset;
  border-bottom: unset;
  border-left: unset;
}
.navbar-light .navbar-toggler {
  border-color: rgba(0, 0, 0, 0);
}
.navbar-light .navbar-toggler.navbar-toggler-right {
  right: 0;
}
.navbar-light .navbar-toggler .navbar-toggler-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.navbar button:focus {
  outline: 1px none!important;
  outline: 5px auto red!important;
}
/* Fin NavBar ******************************************** */
/* FIN MENU ****************************************** */
/* Fin Menu ***************************** */
/* Buscador ************* */
/* ******************************************************************* */
/* Buscador ********************************************************** */
/* ******************************************************************* */
/*.bkk *{outline: 1px red solid;}*/
.busqueda-wrapper {
  flex: auto;
  /*z-index: 999;*/
}
.busqueda-wrapper .busqueda {
  flex: auto;
}
.busqueda-wrapper .busqueda .busqueda-controllers {
  border-radius: 20px;
  background-color: var(--buscador-input-fondo) !important;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .busqueda-wrapper .busqueda {
    border-bottom: groove 2px #55bdff;
  }
}
.busqueda-wrapper .busqueda input {
  flex: auto;
  /*background-color: var(--secundario-azul-claro) !important;*/
  background-color: transparent !important;
  color: var(--buscador-input-txt) !important;
  border: none;
}
.busqueda-wrapper .busqueda input:hover {
  /*box-shadow: inset 0 0 14px #050f14;*/
}
.busqueda-wrapper .busqueda input::placeholder,
.busqueda-wrapper .busqueda .inputbusqueda::placeholder,
.busqueda-wrapper .busqueda input::-webkit-input-placeholder,
.busqueda-wrapper .busqueda .inputbusqueda::-webkit-input-placeholder,
.busqueda-wrapper .busqueda input:-moz-placeholder,
.busqueda-wrapper .busqueda .inputbusqueda:-moz-placeholder,
.busqueda-wrapper .busqueda input::-moz-placeholder,
.busqueda-wrapper .busqueda .inputbusqueda::-moz-placeholder,
.busqueda-wrapper .busqueda input:-ms-input-placeholder,
.busqueda-wrapper .busqueda .inputbusqueda:-ms-input-placeholder {
  color: white !important;
}
.busqueda-wrapper .busqueda .inputbusqueda::placeholder {
  color: var(--buscador-input-txt);
}
@media only screen and (max-width: 529px) {
  .busqueda-wrapper .busqueda-acciones .select_menu_buscador,
  .busqueda-wrapper .busqueda-acciones-mini .select_menu_buscador {
    /*height: 44px;*/
  }
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .busqueda-wrapper .busqueda-acciones,
  .busqueda-wrapper .busqueda-acciones-mini {
    width: 100%;
  }
  .busqueda-wrapper .busqueda-acciones .select_menu_buscador,
  .busqueda-wrapper .busqueda-acciones-mini .select_menu_buscador {
    flex: auto !important;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .busqueda-wrapper .busqueda-acciones,
  .busqueda-wrapper .busqueda-acciones-mini {
    width: 270px;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .busqueda-wrapper .busqueda-acciones-mini {
    width: 150px!important;
  }
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .buscador-portada .busqueda-wrapper .busqueda {
    border-bottom: groove 2px #555;
  }
}
.buscador-portada .busqueda-wrapper .busqueda input {
  background-color: transparent !important;
}
.buscador-wrapper {
  display: block;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  width: 100%;
  z-index: 100;
}
.buscador {
  width: 100%;
  margin: 0 auto;
  box-sizing: content-box;
  background-color: var(--buscador-contenedor-fondo);
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .buscador {
    z-index: 2;
    height: 60px;
  }
}
.buscador.buscador-portada {
  color: var(--buscador-input-txt);
  background-color: unset;
  position: relative;
}
.buscador.buscador-portada::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background-color: var(--buscador-input-fondo);
  border-radius: 25px;
  opacity: 0.75;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}
.buscador.buscador-portada .busqueda-controllers {
  border-radius: 20px;
  background-color: transparent !important;
  z-index: 999;
}
.buscador.buscador-portada .dropdown .caret {
  font-size: 2rem !important;
  background: transparent;
  pointer-events: none;
  position: absolute;
  bottom: 0.4rem;
  color: var(--buscador-input-txt) !important;
  margin: auto;
  left: 97%;
  transform: translate(-100%, -85%);
}
.buscador.buscador-portada .dropdown .dropdown-menu {
  padding: 0.25rem 0;
  margin: -2px 0 0;
  border: 1px solid var(--principal);
  border-radius: 14px;
}
.buscador.buscador-portada .dropdown .dropdown-menu .dropdown-item {
  font-size: 0.9rem;
}
.buscador.buscador-portada .dropdown .dropdown-menu .dropdown-item span {
  font-weight: normal;
}
.buscador.buscador-portada .dropdown .dropdown-menu .dropdown-item span.subtitulo {
  color: var(--secundario-azul-medio) !important;
}
.buscador.buscador-portada .dropdown .dropdown-menu .dropdown-item span.subtitulo,
.buscador.buscador-portada .dropdown .dropdown-menu .dropdown-item span.formato-menu {
  display: block;
}
/* Filtrado ************* */
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .filtrado-wrapper {
    width: 100%;
  }
  .filtrado-wrapper.filtrado-desktop {
    display: none;
  }
  .filtrado-wrapper.filtrado-portable {
    display: block;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .filtrado-wrapper {
    width: 265px;
    min-height: 60px;
  }
  .filtrado-wrapper.filtrado-desktop {
    display: block;
  }
  .filtrado-wrapper.filtrado-portable {
    display: none;
  }
}
.filtrado-wrapper .filtrado-button {
  cursor: pointer;
  position: relative;
  background-color: var(--filtrado-fondo);
  color: var(--filtrado-txt);
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none;
}
.filtrado-wrapper .filtrado-button:disabled {
  cursor: auto;
  color: darkgrey;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .filtrado-wrapper .filtrado-button {
    padding: 10px;
    width: 100%;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .filtrado-wrapper .filtrado-button {
    width: 265px;
    min-height: 60px;
  }
}
.filtrado-wrapper .filtrado-button.active {
  min-width: 265px;
}
/* Acotar ********************************************************** */
/*
#refinar, #refinar-kk {
  border-top: solid 1px #212c31 !important;
  background-color: var( --filtrado-agenda-fondo);
  h3,.cabecera,.FiltradoFlecha {
    color: white;
  }
  
}*/
#refinar-kk,
#refinar-fav {
  background-color: var(--filtrado-fondo);
  overflow: hidden;
  padding-bottom: 16px;
  text-align: left;
  vertical-align: top;
  border-top: solid 1px var(--filtrado-borde);
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  #refinar-kk,
  #refinar-fav {
    display: none !important;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  #refinar-kk,
  #refinar-fav {
    display: inline-block;
  }
}
#refinar-kk div,
#refinar-fav div {
  font-size: 1.5rem;
  /*color: #56a5cc;*/
  font-weight: lighter;
  font-style: italic;
  white-space: nowrap;
}
#refinar {
  display: inline-block;
  background-color: var(--filtrado-fondo);
  overflow: hidden;
  padding-bottom: 16px;
  text-align: left;
  vertical-align: top;
  /*@media @mobile {} 
        @media @tablet, @desktop, @desktop-xl {z-index: 1;width: 265px;padding-bottom: 0;-webkit-transition: width 0.2s ease-in-out;transition: width 0.2s ease-in-out;}*/
}
#refinar .acotar-container {
  padding: 0 8px 0 2px;
}
#refinar hr {
  border: 0;
  width: 100%;
  color: #f00;
  background-color: var(--filtrado-borde);
  height: 1px;
}
#refinar h3,
#refinar .cabecera {
  font-size: 18px;
  color: var(--filtrado-cabecera);
  font-weight: 100;
  padding: 0 0 8px 0;
}
#refinar .custom-control-label {
  color: var(--filtrado-txt);
}
#refinar .acotar-element {
  position: absolute;
  opacity: 0;
}
#refinar .acotar-element + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  color: var(--filtrado-txt);
}
.FiltradoFacet {
  border-bottom: solid 1px var(--filtrado-borde);
}
.FiltradoToggle {
  cursor: pointer;
}
.FiltradoFlecha {
  text-align: right;
  color: var(--filtrado-toggle);
  cursor: pointer;
}
.FiltradoVermas {
  text-align: right;
  color: var(--filtrado-toggle);
  cursor: pointer;
}
.controlVermas.hide {
  display: none;
}
.controlVermas.show {
  display: block;
}
.truncar {
  max-width: 150px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-right: 6px;
}
.custom-control-input {
  z-index: 100;
}
.custom-control-label {
  font-size: 0.85rem;
  cursor: pointer;
}
.custom-control-label span {
  line-height: 1.5rem;
}
.custom-control-input:checked ~ .custom-control-label {
  color: var(--General-filtrado-fondo) !important;
  font-weight: 500;
}
.custom-controls-stacked .custom-control {
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 529px) {
  .custom-filters .custom-control-label::after,
  .custom-filters .custom-control-input:checked ~ .custom-control-label::after,
  .custom-filters .custom-control-label::before,
  .custom-filters .custom-control-input:checked ~ .custom-control-label::before {
    display: block;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px), only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .custom-filters .custom-control-label::after,
  .custom-filters .custom-control-input:checked ~ .custom-control-label::after,
  .custom-filters .custom-control-label::before,
  .custom-filters .custom-control-input:checked ~ .custom-control-label::before {
    display: none !important;
  }
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--General-filtrado-fondo);
  border: solid 2px #56a5cc;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--General-filtrado-fondo);
  border: solid 2px #56a5cc;
}
/* Filtros rápidos ****** */
.nav {
  padding: 16px 0 4px;
}
.nav-link {
  color: #555;
  font-size: 1rem;
}
.nav-item {
  display: inline-block;
}
@media only screen and (max-width: 529px) {
  .nav-item {
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .nav-item {
    width: 100%;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .nav-item {
    width: auto;
  }
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .filtros-rapidos {
    padding: 0 10px;
    background-color: #091016;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .filtros-rapidos {
    background-color: #fff;
  }
}
.filtros-rapidos .nav_filters {
  list-style: none;
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .filtros-rapidos .nav_filters .pl-2 {
    padding-left: 0 !important;
  }
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .filtros-rapidos .nav_filters .group-logged,
  .filtros-rapidos .nav_filters .group-order,
  .filtros-rapidos .nav_filters .group-interval {
    width: 100%;
  }
}
.filtros-rapidos .nav_filters .group-logged.first,
.filtros-rapidos .nav_filters .group-order.first,
.filtros-rapidos .nav_filters .group-interval.first {
  border-left: solid 1px #091016;
}
.filtros-rapidos .nav_filters .group-logged.first:before,
.filtros-rapidos .nav_filters .group-order.first:before,
.filtros-rapidos .nav_filters .group-interval.first:before {
  content: "";
  display: none;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .filtros-rapidos .nav_filters .group-logged.last,
  .filtros-rapidos .nav_filters .group-order.last,
  .filtros-rapidos .nav_filters .group-interval.last {
    border-bottom: solid 1px #143342;
    margin: 0 0 1rem;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .filtros-rapidos .nav_filters .group-logged.last,
  .filtros-rapidos .nav_filters .group-order.last,
  .filtros-rapidos .nav_filters .group-interval.last {
    /*border-left:solid 1px #091016;*/
  }
}
k .filtros-rapidos .nav_filters .group-logged.last:before,
k .filtros-rapidos .nav_filters .group-order.last:before,
k .filtros-rapidos .nav_filters .group-interval.last:before {
  content: "";
  display: none;
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .filtros-rapidos .nav_filters .group-logged:before,
  .filtros-rapidos .nav_filters .group-order:before,
  .filtros-rapidos .nav_filters .group-interval:before {
    content: "|";
    position: relative;
    display: inline-block;
    margin: 0;
    line-height: 3.2em;
  }
}
.filtros-rapidos .nav_filters .group-interval.last {
  border-right: solid 1px #091016;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .filtros-rapidos .nav_filters .group-logged,
  .filtros-rapidos .nav_filters .group-order {
    width: 25%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .filtros-rapidos .nav_filters .group-md-interval {
    width: 20%;
  }
}
.filtros-rapidos .nav_filters label {
  position: relative;
  cursor: pointer;
  margin: 0;
}
@media only screen and (max-width: 529px) {
  .filtros-rapidos .nav_filters label {
    padding: 0 0;
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .filtros-rapidos .nav_filters label {
    line-height: 32px;
    padding: 0.5em 0 0;
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  .filtros-rapidos .nav_filters label {
    line-height: 54px;
    padding: 0 0 0;
  }
}
@media only screen and (min-width: 1129px) {
  .filtros-rapidos .nav_filters label {
    line-height: 54px;
    padding: 0 0 0;
  }
}
@media only screen and (max-width: 529px) {
  .filtros-rapidos .nav_filters label span {
    display: block;
    color: #bbbbbb !important;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .filtros-rapidos .nav_filters label span {
    color: #2c6f90 !important;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  .filtros-rapidos .nav_filters label span {
    padding: 0.5em 0.5em;
  }
}
@media only screen and (min-width: 1129px) {
  .filtros-rapidos .nav_filters label span {
    padding: 0.5em 1em;
  }
}
.filtros-rapidos .nav_filters label input {
  position: absolute;
  opacity: 0;
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .filtros-rapidos .nav_filters label:after {
    content: '';
    display: block;
    width: 100%;
    height: 6px;
    background: white;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .filtros-rapidos .nav_filters label:hover:after {
    background-color: var(--General-filtrado-fondo);
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .filtros-rapidos .nav_filters label:focus:after {
    background-color: var(--General-filtrado-fondo);
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .filtros-rapidos .nav_filters label.active:after {
    background-color: var(--General-filtrado-fondo);
  }
}
.filtros-rapidos .nav_filters label.sin-hover {
  cursor: default !important;
}
.filtros-rapidos .nav_filters label.sin-hover span {
  cursor: default !important;
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .filtros-rapidos .nav_filters label.sin-hover:hover:after {
    background-color: #fff !important;
    cursor: default !important;
  }
}
@media only screen and (max-width: 529px) {
  .filtros-rapidos .nav_filters .nav-link {
    display: block;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px), only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .filtros-rapidos .nav_filters .nav-link {
    display: inline-block;
  }
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .filtros-rapidos .nav_filters .custom-control {
    display: inline-block;
    position: relative;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    margin-right: 1rem;
    cursor: pointer;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .filtros-rapidos .nav_filters .custom-control-indicator {
    display: none;
  }
}
/* Fin Filtros rápidos ***************************************************** */
/* Select *************** */
.select_menu_group {
  background-color: white;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .select_menu_group {
    border: 1px solid #dee2e6 !important;
  }
}
.select_menu_group:before {
  content: attr(data-label);
  display: block;
  font-weight: bold;
  font-size: 0.75rem !important;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .select_menu_group:before {
    padding-left: 0.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  .select_menu_group .select_menu_container {
    border: 1px solid #dee2e6 !important;
  }
  .select_menu_group .select_menu_container.disable_1 {
    background-color: #e9ebeb;
  }
  .select_menu_group .select_menu_container.disable_2 {
    background-color: #c4c4c4;
  }
}
.select_menu_group .txtPrecioObjeto {
  color: #3c763d;
  height: 38px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  .select_menu_group .txtPrecioObjeto {
    border: 1px solid #dee2e6 !important;
    background-color: #dff0d8;
    width: 100%;
  }
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .select_menu_group.disable_1 {
    background-color: #e9ebeb;
  }
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .select_menu_group.disable_2 {
    background-color: #c4c4c4;
  }
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .select_menu_group.precio {
    background-color: #dff0d8;
  }
}
.select_menu {
  position: relative;
  display: block;
  overflow: hidden;
  font-size: 50px !important;
  /* Arrow */
  /* Transition */
}
.select_menu select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  outline: 0;
  box-shadow: none;
  border: 0 !important;
  background-image: none;
  background-color: transparent;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  font-size: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 6px;
}
.select_menu select::-ms-expand {
  display: none;
}
.select_menu::after {
  font-family: FontAwesome;
  font-size: 1rem;
  content: '\f078';
  padding: 0 1em;
  background: transparent;
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0%, -50%);
  -webkit-transition: 0.25s all ease;
  -o-transition: 0.25s all ease;
  transition: 0.25s all ease;
}
.select_menu:hover::after {
  color: #56a5cc;
}
.select_menu:hover {
  color: aquamarine;
}
.select_menu.select_menu_normal {
  width: 116px;
  height: 36px;
  background: transparent;
  font-size: 0.95rem;
}
.select_menu.select_menu_normal::after {
  color: #999;
}
.select_menu.select_menu_normal .select_menu_disable_1 {
  background-color: #e9ebeb;
}
.select_menu.select_menu_normal .select_menu_disable_2 {
  background-color: #ababab;
}
.select_menu_buscador {
  /*height: 68px;*/
  width: 136px;
  background-color: transparent!important;
}
@media only screen and (max-width: 529px) {
  .select_menu_buscador {
    width: 74%;
    /*height: 30px;*/
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .select_menu_buscador {
    /*height: 42px;*/
  }
}
.select_menu_buscador::after {
  /*color: white;*/
}
.select_menu_buscador:hover::after {
  color: red;
}
.select_menu_buscador select {
  color: white;
}
.select_menu_buscador select option {
  background-color: #56a5cc;
  padding: 0 0.6rem;
}
.buscador-portada select {
  color: var(--buscador-input-txt);
}
.buscador-portada select option {
  background-color: var(--buscador-input-fondo) !important;
  padding: 0 0.6rem !important;
}
.select_menu_wagenda {
  height: 68px;
  width: 100%;
  background: transparent!important;
}
.select_menu_wagenda::after {
  color: white;
}
.select_menu_wagenda:hover::after {
  color: #000;
}
.select_menu_wagenda option {
  background-color: #607d8b;
  padding: 0 0.6rem;
}
/* Form ***************** */
form {
  width: 100%;
}
:is(button,input,optgroup,select,textarea) {
  font-family: Segoe UI, 'Ubuntu', Verdana, Arial, 'Open sans', Helvetica, sans-serif !important;
  font-size: 1rem;
}
:is([type="text"],[type="button"],[type="submit"], textarea, select, button):hover,
:is([type="text"],[type="button"],[type="submit"], textarea, select, button):focus {
  outline: none;
}
input[type=checkbox],
input[type=radio] {
  vertical-align: middle;
  /*position: relative;*/
  bottom: 1px;
}
input[type=checkbox] ~ *,
input[type=radio] ~ * {
  padding: 2px;
}
input[type=radio] {
  bottom: 2px;
}
/* BTN ****************** */
/* *************************************************** */
/* BOTONES ******************************************* */
/* *************************************************** */
:root {
  --btn-primary-fondo: var(--color-efe);
  --btn-primary-borde: var(--blanco);
  --btn-primary-fondo-hover: var(--color-medio);
  --btn-primary-borde-hover: var(--color-medio);
  --btn-plantillas-icon: var(--color-efe);
  --btn-plantillas-icon-hover: var(--color-medio);
  --btn-plantillas-icon-activo: var(--color-medio);
}
.btn:not(.btn-plantillas):not(.btn-icon):not(.btn-icon-no-action,.btn-no-action):not(.btn-buscador-input):not(.btn-icon-text) {
  cursor: pointer;
  position: relative;
  font-size: 0.9rem !important;
  line-height: 1rem !important;
  border-color: var(--btn-primary-borde);
  border-width: 2px;
  -webkit-box-shadow: 0px 1px 4px -2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 4px -2px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 4px -2px rgba(0, 0, 0, 0.5);
  /*&.btn-plantillas, &.btn-icon{
      border-width: unset !important;
      -webkit-box-shadow:unset !important; 
      -moz-box-shadow: unset !important;
      box-shadow: unset !important;
    }*/
}
.btn:not([data-group="grupo"]) {
  border-radius: 10px;
}
.btn-primary {
  color: #fff;
  background-color: var(--btn-primary-fondo);
  border-color: var(--btn-primary-borde);
  border-radius: 10px;
  border-width: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  min-width: 36px;
}
.btn-primary:hover {
  color: #fff;
  background-color: var(--btn-primary-fondo-hover);
  border-color: var(--btn-primary-borde-hover);
}
.btn-primary[data-group="grupo"] {
  border-width: 1px;
  outline: solid 1px #ced4da;
}
.btn-outline-danger {
  border-color: #dc3545 !important;
}
@media only screen and (max-width: 529px) {
  .btn {
    white-space: normal;
  }
}
.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}
.btn:is(.btn-icon,.btn-icon-trans) {
  display: table-cell;
  vertical-align: middle;
  padding: 0.3rem 0.4rem;
  text-align: center;
  background: #fff;
}
.btn:is(.btn-icon,.btn-icon-trans):hover {
  background: #eaeaea;
}
.btn-icon,
.btn-icon-no-action {
  width: 32px;
  min-height: 29.78px;
  font-size: 18px;
  line-height: 18px;
}
.btn-icon-min {
  width: 30px !important;
  min-height: 14px !important;
  height: 20px;
  padding: 0 !important;
  font-size: 14px !important;
  line-height: 18px !important;
}
.btn-icon-no-action {
  pointer-events: none !important;
  cursor: default !important;
}
.btn-icon-trans {
  background: transparent !important;
  border-style: none !important;
}
.btn-icon-text {
  vertical-align: middle;
  background: #fff;
}
.btn-icon-text:hover {
  background: #eaeaea;
}
.btn-icon-text.btn-calculator {
  color: var(--secundario-azul-medio);
}
.btn-txt {
  font-size: 17px;
  line-height: 17px;
}
.btn-label {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 3px 0 0 3px;
}
:is(.btn-close,.btn-danger,.btn-mosaic,.btn-default) {
  /*border-bottom: #143342 1px solid;*/
  -webkit-box-shadow: 0px 1px 4px -2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 4px -2px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 4px -2px rgba(0, 0, 0, 0.5);
}
:is(.btn-close,.btn-danger,.btn-mosaic,.btn-default):hover {
  color: white;
  border: 1px solid #56a5cc;
}
:is(.btn-close,.btn-danger,.btn-mosaic,.btn-default) span {
  padding: 0 0rem 0 0.8rem;
}
:is(.btn-close,.btn-danger,.btn-mosaic,.btn-default) i {
  padding: 0.4rem 0.3rem;
  vertical-align: middle;
  min-width: 24px;
}
:is(.btn-close,.btn-danger,.btn-mosaic,.btn-default) i.fa-chevron-down {
  font-size: 1.33333333rem;
  line-height: 0.75rem;
  vertical-align: 0;
}
:is(.btn-close,.btn-danger,.btn-mosaic,.btn-default) i.fa-lg-g {
  font-size: 0.9em;
  line-height: 1em;
  vertical-align: -15%;
}
.btn-default {
  font-size: 13px;
}
.btn-back {
  /* Por si hay que cambiar estilos del boton back */
}
.btn-active {
  color: #56a5cc;
}
.btn-active:hover {
  background-color: #08151b;
}
.btn-danger {
  color: #fff;
}
.btn-close {
  background-color: #990000;
  color: #ffffff;
}
.btn-ico {
  font-size: 1rem!important;
  padding: 0 0.3rem;
  vertical-align: middle;
  border: 1px none #dcdcdc;
  min-width: 24px;
  box-shadow: none!important;
  text-shadow: none!important;
  color: white !important;
}
.btn:is(#HelpBTN,#ActionBTN) {
  z-index: 99999;
}
.btn:is(.btn-ir-arriba,.btn-recargar) {
  display: none;
}
.btn-sugerencias-producto {
  position: fixed;
  bottom: 10px;
  right: 60px;
}
[class^="icon-"],
[class*=" icon-"] {
  line-height: inherit;
}
/*.search-bar_btn*/
.btn-buscador-input,
.btn-buscador {
  background-color: transparent!important;
  border: none;
  color: var(--buscador-contenedor-txt);
  width: 54px;
}
.btn-buscador-input:hover,
.btn-buscador:hover {
  color: var(--buscador-txt-hover) !important;
}
.btn-buscador-input {
  color: var(--buscador-input-txt) !important;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .btn-buscador-input,
  .btn-buscador {
    height: 42px;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .btn-buscador-input,
  .btn-buscador {
    height: 44px;
  }
}
.btn-plantillas {
  background-color: transparent !important;
  padding: 0;
  margin: 0;
  color: var(--btn-plantillas-icon);
}
.btn-plantillas.active {
  color: var(--btn-plantillas-icon-activo);
  pointer-events: none;
  cursor: crosshair;
}
.btn-plantillas:hover {
  color: var(--btn-plantillas-icon-hover);
}
#sidebar-wrapper-derecha .btn-producto {
  outline: solid 1px #112a1b;
}
/* Fin buttons ********************************** */
[class^="shar"][class^="share_"] {
  color: white;
  -webkit-box-shadow: 0px 1px 4px -2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 4px -2px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 4px -2px rgba(0, 0, 0, 0.5);
}
[class^="shar"].share_facebook {
  background: #3b5998 !important;
  border-color: #3b5998;
}
[class^="shar"].share_twiter {
  background: #55acee !important;
  border-color: #55acee;
}
[class^="shar"].share_google {
  background: #dd4b39 !important;
  border-color: #dd4b39;
}
[class^="shar"].share_meneame {
  background: #F9853C !important;
  border-color: #F9853C;
}
[class^="shar"].share_whatsapp {
  background: #25D366 !important;
  border-color: #25D366;
}
[class^="shar"].share_email {
  background: #5eadf2 !important;
  border-color: #5eadf2;
}
[class^="shar"]:hover {
  background: #56a5cc;
}
/* resto ********************************************************** */
/* ---------------------------------------------- /*
*   0. Estructura
/* ---------------------------------------------- */
.fullscreen {
  width: 100%;
}
.container-sugerencias {
  background-color: var(--color-oscuro);
}
.constrain-screen {
  max-width: 1170px;
  margin: 0 auto;
}
.gallery-container {
  display: inline-block;
  padding: 0;
  white-space: normal;
  width: 100%;
}
@media only screen and (min-width: 530px) and (max-width: 949px), only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .gallery-container {
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  }
}
#portada-container {
  display: flex;
  background-position: center center;
  background-size: cover;
  align-items: center;
  /* Align the inner div vertically */
  justify-content: center;
  /* Align the inner div horizontally */
}
@media only screen and (max-width: 529px) {
  #portada-container {
    height: calc(100% - 41px);
    position: relative;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px), only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  #portada-container {
    height: calc(100% - 72px);
  }
}
/* PORTADA PUBLICA ****************************** */
/* ********************************************** */
.portadaCaption {
  position: absolute;
  bottom: 20px;
  color: white;
  cursor: pointer;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px 20px;
}
.portadaCaption:hover {
  color: #56a5cc;
}
.portada-mosaics .portada-mosaic-item {
  padding: 0;
}
.portada-mosaics .portada-mosaic-item div {
  width: 100%;
  height: 100%;
  position: relative;
}
.portada-mosaics .portada-mosaic-item div.d {
  background-color: #000000;
}
.portada-mosaics .portada-mosaic-item div a {
  display: block;
  background-position: center center;
  background-size: cover;
}
.portada-mosaics .portada-mosaic-item div img {
  width: 100%;
  max-width: 100%;
}
.portada-mosaics .portada-mosaic-item div h3,
.portada-mosaics .portada-mosaic-item div h2 {
  width: 100%;
  font-size: 0.875rem;
  color: #fff;
  text-align: center;
  padding: 1.25rem 0;
  position: absolute;
  bottom: 0;
  margin: 0;
}
.portada-mosaics .portada-mosaic-item div h3.l,
.portada-mosaics .portada-mosaic-item div h2.l {
  background-color: #56a5cc;
}
.portada-mosaics .portada-mosaic-item div h3.d,
.portada-mosaics .portada-mosaic-item div h2.d {
  background-color: #08151b;
}
.portada-mosaics .portada-mosaic-item.p {
  padding: 0 15px;
}
#efemeride-dia {
  margin: 0 auto 4em auto;
}
#efemeride-dia #foto-dia h2 {
  text-align: left;
}
#efemeride-dia #foto-dia img {
  width: 100%;
}
#efemeride-dia #foto-dia .text-container {
  background-color: #56a5cc;
  color: #fff;
  height: 74px;
  text-align: right;
  font-size: 24px;
  padding: 0 20px 0 0;
}
#efemeride-dia #foto-dia .text-container span {
  display: block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#efemeride-dia #foto-vida-tal-dia h2 {
  text-align: right;
}
#efemeride-dia #foto-vida {
  background-color: #56a5cc;
  padding: 1.2em;
}
#efemeride-dia #foto-vida p {
  color: #fff;
  padding: 0 1.2em;
}
#efemeride-dia #foto-vida .dropdown-menu {
  height: 260px;
  overflow: auto;
}
#efemeride-dia #tal-dia {
  background-color: #56a5cc;
}
#efemeride-dia #tal-dia p {
  color: white;
  padding: 1em 1em 0;
  position: relative;
  margin: 0;
}
#efemeride-dia #tal-dia p:after {
  content: "";
  height: 40px;
  line-height: 60px;
  display: block;
}
#efemeride-dia #tal-dia p button {
  font-size: 14px;
  position: absolute;
  bottom: 0;
  right: 1em;
}
#portada_info {
  background-color: #56a5cc;
}
#portada_info h2 {
  text-align: left;
  color: #fff;
}
#portada_info h3 {
  text-align: left;
  color: #fff;
  font-size: 1.625rem;
}
#portada_info p {
  font-size: 1rem;
  color: #fff;
}
@media only screen and (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  #portada_info p {
    padding: 8px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) {
  #portada_info p {
    padding: 8px 0;
  }
}
#portada-que-es {
  background-color: #56a5cc;
}
#portada-que-es h3 {
  font-size: 1rem;
  color: #fff;
  padding: 1.25rem 0;
}
#portada-que-es p {
  color: white;
  margin: 0;
  padding: 0 0 1rem;
}
#portada-error {
  background-color: #dfdfdf;
}
#portada-error h2 {
  color: #56a5cc;
  font-size: 1.7rem;
}
#portada-error h3 {
  color: #555;
  font-size: 1.6rem;
}
#portada-error p {
  color: #333;
  font-size: 1.1rem;
}
#portada-error hr {
  border: 1px solid #56a5cc;
}
/* ********************************************** */
/* PORTADA PUBLICA ****************************** */
.border-azul-efe {
  border-color: #56a5cc !important;
}
.border-gris {
  border-color: #d7d7d7 !important;
}
/* COLORS ********************************************************************* */
/* ******************************************************************* */
/* ******************************************************************* */
/*-----------------
  * [Master Stylesheet]
  * Theme    : Efeservicios | Version  : 1.0 | Author   : Hoson | Support  : * 
  ------------------*/
/*-----------------
    [ALL CONTENTS]
  0. Estructure
  1. General styles
  2. Home
  3. Brand / Navigation 
  4. Portfolio
  5. Servise
  6. Contact and Map
  7. Footer
  8. Scroll to top
  9. Preloader
  10. All Media Queries
  
  ------------------*/
.block {
  display: block !important;
}
.iblock {
  display: inline-block !important;
}
/* ---------------------------------------------- /*
    *   1. Estilos generales
    /* ---------------------------------------------- */
/*#e8eded*/
html {
  background-color: #e9ebeb;
}
html,
body {
  font-family: Segoe UI, 'Ubuntu', Verdana, Arial, 'Open sans', Helvetica, sans-serif !important;
  height: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  font-size: 1rem;
  /*&:after { 
            color: white; content: "undefined"; left: 0; position: absolute; text-align: center; top: 0; z-index: 99;
            @media @mobile {background: orange; content: "mobile";}
            @media @tablet {background: purple; content: "tablet";}
            @media @desktop {background: green; content: "desktop";}
            @media @desktop-xl {background: blue;content: "desktop-xl";}
        }*/
  font-weight: normal;
}
@media only screen and (max-width: 529px) {
  html,
  body {
    font-size: 95%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  html,
  body {
    font-size: 97%;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  html,
  body {
    font-size: 100%;
  }
}
html *,
body * {
  box-sizing: border-box;
  /*outline:solid 1px red; */
}
body {
  background-color: transparent !important;
}
img {
  max-width: 100%;
  height: auto;
  /*&.image_orientation_H{}*/
}
img.image_orientation_V {
  max-height: 700px;
  padding: 1rem 0 0 0;
  overflow: hidden;
  margin: 0 auto;
  width: auto !important;
  display: block;
  -webkit-transition: max-width 0.5s ease-out;
  /* Saf3.2+, Chrome */
  -moz-transition: max-width 0.5s ease-out;
  /* FF4+ */
  -ms-transition: max-width 0.5s ease-out;
  /* IE10? */
  -o-transition: max-width 0.5s ease-out;
  /* Opera 10.5+ */
  transition: max-width 0.5s ease-out;
}
a {
  color: #007bff;
  /*border-bottom: 4px solid rgb(222, 65, 65); */
}
a:hover {
  text-decoration: underline;
}
b,
strong {
  font-weight: 700!important;
}
/* hr ************************************* */
hr {
  border-top: 1px solid #cecece;
  border-bottom: 1px solid #ffffff;
}
hr.hr_height1 {
  height: 1px;
}
/* TYPOGRAPHY ********************************** */
h2.cabecera,
p.cabecera {
  width: 100%;
  font-weight: lighter;
  padding: 2rem 0 1rem;
}
@media only screen and (max-width: 575px) {
  h2.cabecera,
  p.cabecera {
    font-size: 1.7em;
  }
}
@media only screen and (min-width: 576px) and (max-width: 991px) {
  h2.cabecera,
  p.cabecera {
    font-size: 1.9em;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  h2.cabecera,
  p.cabecera {
    font-size: 2.25em;
  }
}
h2.cabecera.light,
p.cabecera.light {
  color: #f3f8fb;
}
h2.cabecera.dark,
p.cabecera.dark {
  color: #143342;
}
.cabecera {
  width: 100%;
  font-weight: lighter;
  display: block;
}
.fecha {
  color: #143342;
  font-size: 0.9rem;
  line-height: 1rem;
}
.fecha > span {
  display: block;
}
.formato {
  background-color: #56a5cc;
}
.guia {
  color: var(--color-medio);
}
.guia a {
  color: var(--color-medio);
  position: relative;
}
.guia a::before {
  content: '';
  border-bottom: solid 1px var(--color-medio);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.guia a:hover::before {
  -webkit-transform: scaleY(4);
  -moz-transform: scaleY(4);
  -ms-transform: scaleY(4);
  -o-transform: scaleY(4);
  transform: scaleY(4);
}
.guia a::before {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.formato.generica,
.guia.generica {
  font-size: 0.75rem;
  line-height: 0.75rem;
}
.formato.detalle,
.guia.detalle {
  font-size: 1rem;
  line-height: 1.2rem;
}
.titulo {
  display: block;
  color: var(--color-oscuro);
  /*.hitlist{}
        .detalle{}
        .sug_prod{}*/
}
.titulo.generico {
  font-size: 0.75rem;
  line-height: 0.75rem;
}
.titulo.generica {
  font-size: 0.75rem;
  line-height: 0.75rem;
}
.titulo.pseudo {
  font-size: 1.5rem;
  line-height: 2.2rem;
}
.texto {
  font-size: 0.9em;
  margin-top: 20px;
}
/*.formatos{}*/
/* Font-size *************************************** */
.f-xs {
  font-size: 0.75rem !important;
}
.f-s {
  font-size: 0.75rem !important;
}
.f-ns {
  font-size: 0.9rem !important;
}
.f-n {
  font-size: 1rem !important;
}
.f-ngr {
  font-size: 1.14rem !important;
}
.f-gr {
  font-size: 2rem !important;
}
.f-xgr {
  font-size: 2.25rem !important;
}
/* Fin font-size *********************************** */
/* FIN TYPOGRAPHY ********************************* */
audio:hover,
audio:focus,
audio:active {
  -webkit-box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.4);
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.4);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  transform: scale(1.05);
}
audio {
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -moz-box-shadow: 2px 2px 4px 0px #12191f;
  -webkit-box-shadow: 2px 2px 4px 0px #12191f;
  box-shadow: 0 1px 3px 0px #12191f;
  -moz-border-radius: 7px 7px 7px 7px;
  -webkit-border-radius: 7px 7px 7px 7px;
  border-radius: 7px 7px 7px 7px;
  background: #f1f3f4;
}
/* ---------------------------------------------- /*
    *   1. Fin General styles
    /* ---------------------------------------------- */
.qc-cmp-persistent-link {
  right: unset !important;
  left: 0px !important;
  max-height: 50px !important;
  padding: 8px !important;
  font-size: 12px !important;
}
.blockquote-footer::before {
  content: "";
}
.container {
  margin: 0 auto;
  overflow: auto;
}
table.gridtable {
  margin: 0 auto;
  overflow: auto;
  font-family: helvetica, arial, sans-serif;
  font-size: 14px;
  color: #333333;
  border-width: 1px;
  border-color: #666666;
  border-collapse: collapse;
  text-align: center;
  border: 1px solid #eceeef;
}
table.gridtable th {
  background-color: #56a5cc;
  text-align: center;
}
table.gridtable th,
table.gridtable td {
  padding: 0.75rem;
  vertical-align: middle;
  border-top: 1px solid #eceeef;
  text-align: left;
}
/* Large tablet  */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #container {
    width: 95%;
  }
  table.gridtable {
    width: 100%;
    font-size: 13px;
  }
}
/* Small tablet  */
@media only screen and (min-width: 569px) and (max-width: 767px) {
  #container {
    width: 95%;
  }
  table.gridtable {
    width: 100%;
    font-size: 12px;
  }
}
/* Smartphone  */
@media only screen and (min-width: 240px) and (max-width: 568px) {
  #container {
    width: 100%;
  }
  table.gridtable {
    width: 100%;
    border: 1px none #eceeef;
  }
  table.gridtable thead {
    display: none;
  }
  table.gridtable tr {
    display: block;
    margin-top: 6px;
    margin-bottom: 12px;
    border-bottom: 2px solid #56a5cc;
  }
  table.gridtable td {
    display: block;
    text-align: right;
    font-size: 13px;
    border-radius: 5px;
    min-height: 14px;
    border: 1px solid #eceeef;
  }
  table.gridtable td[scope] {
    display: none;
  }
  table.gridtable td:before {
    content: attr(colname);
    float: left;
    font-weight: normal;
    font-size: 12px;
    padding: 0 4px;
    color: #56a5cc;
  }
}
/* PseudoDetalle ******************************************** */
.PseudoDetailPrev,
.PseudoDetailNext {
  z-index: 999;
  height: 86px;
  width: 42px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
}
.PseudoDetailPrev {
  left: 1px;
}
.PseudoDetailNext {
  right: 1px;
}
.MMFlotan {
  vertical-align: middle;
}
.MMFlotan span {
  font-size: 1.05rem;
}
.MMFlotan i {
  color: #fff;
  margin: 0 8px 0 0;
  font-size: 1.5rem;
  line-height: 38px;
  width: 38px;
  height: 38px;
  text-align: center;
}
.formats {
  color: #56a5cc;
  font-size: 14px;
  line-height: 18px;
  font-style: italic;
  letter-spacing: -1px;
}
.pseudodetalle-relacionadas {
  background-color: var(--color-oscuro);
}
.noticias-relacionadas img.fullsize1 {
  position: absolute;
  top: -50%;
  border: solid 4px white;
  right: 120px;
  opacity: 0;
  pointer-events: none;
  min-width: 300px;
  max-width: 300px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  transition: all 0.6s ease;
  /*.drop-shadow (0, 2px, 4px, 4px, 0.5);*/
}
.noticias-relacionadas img.thumb1:hover + img.fullsize1 {
  opacity: 1;
}
.noticias-relacionadas:first-of-type img.fullsize1 {
  top: 0;
  bottom: unset;
}
.noticias-relacionadas:first-of-type img.thumb1:hover + img.fullsize1 {
  /*border:none; top:0;*/
}
.noticias-relacionadas:nth-last-child(-n+2) img.fullsize1 {
  top: unset;
  bottom: 0;
}
.noticias-relacionadas:nth-last-child(-n+2) img.thumb1:hover + img.fullsize1 {
  /*border:none; bottom:0;*/
}
/* Fin PseudoDetalle **************************************** */
.pseudodetalle p {
  font-size: 1rem;
  line-height: 1.6rem;
  text-align: left;
}
/* Arabe **********************/
/* Fin Arabe **********************/
/* FIN OVERRAIDS ************************************ */
/* CHECKS FILTROS RAPIDOS **************************** */
@media only screen and (max-width: 529px) {
  #filtros-rapidos .custom-control-input:checked ~ .custom-control-label::after,
  #filtros-rapidos .custom-control-input:checked ~ .custom-control-label::before {
    display: block;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px), only screen and (min-width: 950px) and (max-width: 1128px) {
  #filtros-rapidos .custom-control-input:checked ~ .custom-control-label::after,
  #filtros-rapidos .custom-control-input:checked ~ .custom-control-label::before {
    display: none !important;
  }
}
@media only screen and (max-width: 529px) {
  #filtros-rapidos .custom-control-label::after,
  #filtros-rapidos .custom-control-label::before {
    display: block;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px), only screen and (min-width: 950px) and (max-width: 1128px) {
  #filtros-rapidos .custom-control-label::after,
  #filtros-rapidos .custom-control-label::before {
    display: none !important;
  }
}
/* List ************************** */
.list-group-item {
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  padding: 0.4rem 0.25rem;
  border: none;
  font-size: 0.9rem;
  color: var(--color-medio);
  background-color: transparent;
}
.list-group-item b {
  color: var(--color-claro);
  margin: 0rem;
  font-weight: 300 !important;
}
/* background ***************************** */
/* ** Color ******************************* */
.bg-white {
  background-color: white !important;
}
.bg-black {
  background-color: #000000;
}
.bg-transparent {
  background-color: transparent !important;
}
.bg-azul-base {
  background-color: #56a5cc;
}
.bg-alert warning {
  background-color: #56a5cc;
}
.bg-google {
  background-color: #e04a39;
}
.bg-google-icon {
  background-color: #000000;
}
.bg-azulbase-d40 {
  /* Color fondo sugerencias de producto*/
  background-color: #143342;
}
.bg-map {
  background-color: #09181f;
}
/* ** Fin Color *************************** */
/* Texto ********************************** */
/* ** Color ******************************* */
.text-light {
  color: #fefefe !important;
}
.text-blue-base {
  color: #56a5cc !important;
}
.text-bluegrey {
  color: #6197b3 !important;
}
.text-dark {
  color: #000000 !important;
}
.text-light-cc {
  color: #cccccc !important;
}
/* ** Fin Color *************************** */
/* ** Tamaño ****************************** */
.fa-lg-min {
  font-size: 1em!important;
}
.fa-lg-14 {
  font-size: 14px!important;
  line-height: 14px;
}
.fa-lg-18 {
  font-size: 18px!important;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-1x {
  font-size: 1.66666667em !important;
}
.fa-1rx {
  font-size: 1.8rem !important;
}
.fa-2rx {
  font-size: 2rem!important;
}
.fa-7x {
  font-size: 7rem!important;
  text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.83);
}
/* ** Fin Tamaño ************************** */
/* ** Peso ****************************** */
.text-normal {
  font-weight: normal !important;
}
.text-bold {
  font-weight: bold !important;
}
/* ** Fin Tamaño ************************** */
/* ARROWS ********************************* */
.arrow {
  width: 0;
  height: 0;
}
.arrow_28 {
  border-width: 28px;
}
.arrow-up-color {
  border-color: transparent transparent var(--color-oscuro) transparent;
}
.arrow-down-color {
  border-color: var(--color-oscuro) transparent transparent transparent;
}
.arrow-right-color {
  border-color: transparent transparent transparent var(--color-oscuro);
}
.arrow-left-color {
  border-color: transparent var(--color-oscuro) transparent transparent;
}
.arrow-up-color-warning {
  border-color: transparent transparent #f9853c transparent;
}
.arrow-down-color-warning {
  border-color: #f9853c transparent transparent transparent;
}
.arrow-right-color-warning {
  border-color: transparent transparent transparent #f9853c;
}
.arrow-left-color-warning {
  border-color: transparent #f9853c transparent transparent;
}
.arrow-up-color-info {
  border-color: transparent transparent #3a8ace transparent;
}
.arrow-down-color-info {
  border-color: #3a8ace transparent transparent transparent;
}
.arrow-right-color-info {
  border-color: transparent transparent transparent #3a8ace;
}
.arrow-left-color-info {
  border-color: transparent #3a8ace transparent transparent;
}
.arrow-up-color-danger {
  border-color: transparent transparent #ccc transparent;
}
.arrow-down-color-danger {
  border-color: #ccc transparent transparent transparent;
}
.arrow-right-color-danger {
  border-color: transparent transparent transparent #ccc;
}
.arrow-left-color-danger {
  border-color: transparent #ccc transparent transparent;
}
.arrow-top-style-s {
  border-style: none solid solid solid;
}
.arrow-right-style-s {
  border-style: solid none solid solid;
}
.arrow-bottom-style-s {
  border-style: solid solid none solid;
}
.arrow-left-style-s {
  border-style: solid solid solid none;
}
.alert {
  border-radius: 0;
  -webkit-border-radius: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.11);
  display: table;
  width: 100%;
  margin: 0;
}
.alert-white {
  background-image: linear-gradient(to bottom, #fff, #f9f9f9);
  border-top-color: #d8d8d8;
  border-bottom-color: #bdbdbd;
  border-left-color: #cacaca;
  border-right-color: #cacaca;
  color: #404040;
  padding-left: 61px;
  position: relative;
}
.alert-white.rounded {
  border-radius: 3px;
  -webkit-border-radius: 3px;
}
.alert-white.rounded .icon {
  border-radius: 3px 0 0 3px;
  -webkit-border-radius: 3px 0 0 3px;
}
.alert-white .icon {
  text-align: center;
  width: 45px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #bdbdbd;
  padding-top: 15px;
}
.alert-white .icon:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  display: block;
  content: '';
  width: 10px;
  height: 10px;
  border: 1px solid #bdbdbd;
  position: absolute;
  border-left: 0;
  border-bottom: 0;
  top: 50%;
  right: -6px;
  margin-top: -3px;
  background: #fff;
}
.alert-white .icon i {
  font-size: 20px;
  color: #fff;
  left: 12px;
  margin-top: -10px;
  position: absolute;
  top: 50%;
}
/*============ colors ========*/
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-white.alert-success .icon,
.alert-white.alert-success .icon:after,
.alert-success-modal-head {
  border-color: #54a754;
  background-color: #60c060 !important;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #98cce6;
  color: #3a87ad;
}
.alert-white.alert-info .icon,
.alert-white.alert-info .icon:after,
.alert-info-modal-head {
  border-color: #3a8ace;
  background-color: #4d90fd !important;
}
.alert-white.alert-warning .icon,
.alert-white.alert-warning .icon:after,
.alert-warning-modal-head {
  border-color: #d68000;
  background-color: #fc9700 !important;
}
.alert-warning {
  background-color: #fcf8e3;
  border-color: #f1daab;
  color: #c09853;
}
.alert-danger {
  background-color: #f2dede;
  border-color: #e0b1b8;
  color: #b94a48;
}
.alert-white.alert-danger .icon,
.alert-white.alert-danger .icon:after,
.alert-danger-modal-head {
  border-color: #ca452e;
  background-color: #da4932 !important;
}
.alert-info-PS {
  /* Producto sugerido*/
  border-color: #3a8ace;
  background-color: #4d90fd !important;
}
.alert-info-VSD {
  /* Visualización sin descarga */
  border-color: #3a8ace;
  background-color: #4d90fd !important;
}
.alert-info-hitlist {
  /* Producto sugerido*/
  border-color: #3a8ace;
  background-color: #4d90fd !important;
}
/*  MODAL DE INTROJS
        Etiqueta flotante "Guía interactiva" ****** 
        **************************************** */
.modal-body p {
  line-height: 24px;
  font-size: 13px;
}
.modal-body p:first-of-type {
  font-size: 20px;
}
.modal-label {
  right: 0;
}
@media only screen and (max-width: 529px) {
  .modal-label {
    bottom: 0;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px), only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .modal-label {
    bottom: 2rem !important;
  }
}
/******************************************* LOADING CARRO COMPRA *******************************************/
/* Absolute Center Spinner */
.loading {
  display: none;
  position: fixed;
  z-index: 9999;
  height: 2em;
  width: 2em;
  overflow: visible;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}
/* Animation */
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.botonServExt {
  color: #212529;
}
.modal .modal-lg {
  max-width: 1000px;
}
.card-header {
  border-bottom: solid 1px #424242;
}
.card-header.notificaciones {
  background-color: var(--color-efe);
  border: none 1px var(--color-efe);
}
.card-header.collapsed {
  background-color: var(--color-medio) !important;
}
.card-header h2 {
  color: white;
  font-weight: lighter;
}
.card-header.notificaciones:after {
  /* symbol for "opening" panels */
  font-family: "Fontawesome";
  /* essential for enabling glyphicon */
  content: "\f077";
  /* adjust as needed, taken from bootstrap.css */
  float: right;
  /* adjust as needed */
  color: white;
  /* adjust as needed */
}
.card-header.notificaciones.collapsed:after {
  /* symbol for "collapsed" panels */
  content: "\f078";
  /* adjust as needed, taken from bootstrap.css */
  color: white;
}
/* COLORS ********************************************************************* */
/* Blanco */
/* Negro */
/* *************************************** */
/* Blanco */
/* Negro */
/* FONTS *********************************************************************** */
/* BOXES ********************************** */
.BOX-light {
  background-color: white !important;
}
.BOX-shadow {
  -webkit-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
}
/* FIN BOXES ****************************** */
/* COLOR TEXT ***************************** */
.text-light {
  color: #fefefe !important;
}
/* FIN COLOR TEXT ************************* */
/* ARROWS ********************************* */
.arrow-up,
.arrow-down,
.arrow-right,
.arrow-left {
  width: 0;
  height: 0;
}
.arrow-up {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black;
}
.arrow-up {
  border-left: 10px solid transparent !important;
  border-right: 10px solid transparent !important;
  border-bottom: 10px solid #ebcccc !important;
  position: absolute;
  top: -10px;
  left: 10px;
}
.arrow-down {
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #ccc;
}
.arrow-right {
  border-top: 60px solid transparent;
  border-bottom: 60px solid transparent;
  border-left: 60px solid green;
}
.arrow-left {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid blue;
}
/* FIN ARROWS ***************************** */
/* OVERRAIDS **************************************** */
/* Override custom-control bootstrap V$ *** */
.custom-control-input:checked ~ .custom-control-indicator {
  background-color: #05ab00 !important;
}
.custom-control-input:focus ~ .custom-control-indicator {
  box-shadow: none !important;
}
/* Checks y radio ********************************************************** */
/* Override Bootstrap ****************************************************** */
.custom-control-indicator.custom-control-indicator-dark {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
}
.custom-control-indicator.custom-control-indicator-light {
  background-color: #ddd !important;
}
.custom-control-indicator.custom-control-indicator-white {
  background-color: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
}
.custom-control-indicator-grey-bck {
  color: #143342 !important;
  font-size: 0.85rem;
}
.custom-control-input:checked ~ .custom-control-indicator {
  background-color: #378db8 !important;
}
.custom-control-description {
  font-size: 0.85rem;
}
.custom-control-description.custom-control-description-dark {
  color: #143342 !important;
}
.custom-control-description.custom-control-description-light {
  color: #bbb !important;
}
.custom-control-input:checked ~ .custom-control-description {
  color: #378db8 !important;
}
.custom-controls-stacked .custom-control {
  margin-bottom: 0.5rem;
}
/* FIN OVERRAIDS ************************************ */
.FiltradoDatos .custom-control {
  color: #555 !important;
}
/* ***************************************************** */
.infoInternaDIV {
  position: absolute;
  top: 50px;
  right: 55px;
  background-color: red;
  z-index: 999;
  color: white;
  display: none;
  padding: 16px;
}
.infoInternaDIV p {
  padding: 0;
  margin: 0;
}
.infoInternaDIV a.nav-link {
  color: white!important;
  padding: 0.5em 0;
}
.infoInternaDIV-show {
  display: block;
}
/* Display *************************************** */
.ds-none {
  display: none !important;
}
.ds-block {
  display: block !important;
}
.ds-inblock {
  display: inline-block;
}
/* ************************************************** */
.form-control.form-control-personal,
.form-control.form-control-detalle {
  background-color: var(--color-medio) !important;
  color: white;
  /*-webkit-box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.5) inset;
    box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.5) inset;*/
  -webkit-box-shadow: 0px 1px 1px 0 rgba(4 38 71 / 75%) inset;
  box-shadow: 0px 1px 1px 0 rgba(4, 38, 71, 0.75) inset;
  font-size: 0.8rem;
}
.form-control.form-control-personal[readonly],
.form-control.form-control-detalle[readonly] {
  background-color: var(--color-efe) !important;
  border: solid 1px var(--secundario-rosa);
  outline: unset;
  box-shadow: 0px 0px 6px 2px rgba(4, 38, 71, 0.85) inset;
}
.bloqueo {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.3;
}
.desbloqueo {
  pointer-events: all !important;
  cursor: pointer;
  opacity: 1;
}
.form-control.form-control-personal {
  width: 70px !important;
}
.form-control.form-control-personal::-webkit-input-placeholder {
  color: #fff;
}
.form-control.form-control-personal:-moz-placeholder {
  color: #fff;
}
.form-control.form-control-personal::-moz-placeholder {
  color: #fff;
}
.form-control.form-control-personal:-ms-input-placeholder {
  color: #fff;
}
.form-control:disabled,
.form-control[readonly] {
  background-color: #efefef !important;
  opacity: 1;
}
.form-control:disabled.PP_url,
.form-control[readonly].PP_url,
.form-control:disabled.PP_clave,
.form-control[readonly].PP_clave {
  background-color: transparent !important;
  outline: unset !important;
  border: unset;
  border-radius: 0;
  border-bottom: 1px var(--color-medio) dotted;
  color: var(--color-medio) !important;
  box-shadow: unset;
}
/* Alinear verticalmente FLEXBOX ******************** */
.Aligner {
  display: flex!important;
  align-items: center;
  justify-content: center;
}
.Aligner-item-top {
  align-self: flex-start;
}
.Aligner-item-bottom {
  align-self: flex-end;
}
.Aligner-item-left {
  justify-content: flex-start !important;
}
.Aligner-item-right {
  justify-content: flex-end !important;
}
.b-shadow {
  -webkit-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
}
.text-wrap {
  white-space: normal!important;
}
@media only screen and (max-width: 529px) {
  .text-sm-wrap {
    white-space: normal!important;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .text-md-wrap {
    white-space: normal;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  .text-lg-wrap {
    white-space: normal;
  }
}
@media only screen and (min-width: 1129px) {
  .text-xl-wrap {
    white-space: normal;
  }
}
.flex-grow {
  flex: 1 0 auto;
}
.nav-tabs {
  margin: 0;
  padding: 0.2em 0.2em 0;
}
.nav-tabs .nav-item {
  margin-bottom: -1px;
  padding-bottom: 1px;
}
.nav-tabs .nav-item .nav-link {
  border-style: solid none none none !important;
  border-width: 3px 0 0 0 !important;
  border-color: #e8eded;
  background: var(--color-claro);
  font-weight: normal;
  color: #ffffff;
}
.nav-tabs .nav-item .nav-link.active {
  border: 3px solid var(--color-efe);
  border-bottom: 0px solid #ffffff !important;
  background: var(--color-clarisimo);
  font-weight: bold;
  color: var(--color-medio) !important;
  pointer-events: none;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  .nav-tabs .nav-item .nav-link.active {
    font-size: 1.3rem;
    text-align: left !important;
  }
}
.ui-tabs-panel {
  display: block;
  border-width: 0;
  /* padding: 1em 1.4em; */
  background: none;
  border: solid 1px var(--color-medio);
}
.navbar-light .navbar-nav .show > .nav-link {
  color: var(--color-medio) !important;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .kakota {
    order: 1;
    background-color: red;
  }
}
#info-user .info .fa {
  font-size: 1rem;
  /*line-height: 2.5rem;*/
  cursor: pointer;
}
.marca-favorito {
  color: #26C6DA !important;
  position: relative;
}
.marca-carro {
  color: #ffb22b !important;
  position: relative;
}
.marca-avisos {
  color: red !important;
  position: relative;
}
.ml-lgie-auto {
  margin-left: auto;
}
/*  IE10+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ml-lgie-auto {
    margin-left: 0px !important;
  }
}
/*  IE6,7,9,10  */
@media screen and (min-width: 640px), screen\9  {
  .ml-lgie-auto {
    margin-left: 0px !important;
  }
}
@media only screen and (max-width: 529px) {
  #hitlist-sugerencias {
    display: none;
  }
}
#hitlist-sugerencias .sugerencias-HT-title {
  font-size: 0.8rem;
  line-height: 0.8rem;
}
#hitlist-sugerencias .sugerencias-HT-subtitle {
  font-size: 0.8rem;
  line-height: 1rem;
  background-color: #dcdedf;
}
#hitlist-sugerencias .sugerencias-HT-subtitle span {
  display: inline-block;
  padding: 0 8px 4px;
  color: #000000;
  letter-spacing: 0.12rem;
}
#hitlist-sugerencias .sugerencias-HT-subtitle-agenda {
  color: #607d8b !important;
  font-size: 0.8rem;
  line-height: 1.25rem;
}
#hitlist-sugerencias .sugerencias-HT-subtitle-agenda b {
  font-weight: bold;
  font-size: 1.2rem;
}
#hitlist-sugerencias .sugerencias-HT-guias-container > div:first-child img {
  margin: 0 1px;
}
#hitlist-sugerencias .sugerencias-HT-guias-container > div:first-child img:first-child {
  margin: 0 1px 0 0;
}
#hitlist-sugerencias .sugerencias-HT-guias-container > div:first-child img:last-child {
  margin: 0 0 0 1px;
}
#hitlist-sugerencias .sugerencias-HT-items-container {
  border: inherit;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
#hitlist-sugerencias .sugerencias-HT-items-container > div:first-child {
  border: solid 3px #dcdedf;
}
#hitlist-sugerencias .sugerencias-HT-items-container > div:first-child a {
  display: block;
  margin: 0 1px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
#hitlist-sugerencias .sugerencias-HT-items-container > div:first-child a:hover {
  margin: 0 4px;
}
#hitlist-sugerencias .sugerencias-HT-items-container > div:first-child a[data-sugerencia^="img"] {
  font-size: 0;
}
#hitlist-sugerencias .sugerencias-HT-items-container > div:first-child a[data-sugerencia^="txt"] {
  font-size: 13px;
  color: #666;
  white-space: normal;
  width: 160px;
  line-height: 16px;
  margin: 0 1px;
  padding: 0.25rem;
  background-color: #f4f6f6;
}
#hitlist-sugerencias .sugerencias-HT-items-container > div:first-child a[data-sugerencia^="txt"]:hover {
  color: #56a5cc;
}
#hitlist-sugerencias .sugerencias-HT-items-container > div:first-child a[data-sugerencia^="txt"]::first-letter {
  color: #56a5cc;
  float: left;
  font-size: 300%;
  line-height: 2rem;
  margin: 0 0rem 2.5rem 0rem;
  padding: 0 0.1rem;
}
#hitlist-sugerencias .sugerencias-HT-items-container > div:first-child a img {
  opacity: 1;
  /*-webkit-filter: grayscale(0);
    filter: grayscale(0);*/
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  height: 5rem;
}
#hitlist-sugerencias .sugerencias-HT-items-container > div:first-child a:hover img {
  /*opacity: 0.5;
    -webkit-filter: grayscale(100);
    filter: grayscale(100);/*/
  outline: solid var(--color-medio) 4px;
}
#hitlist-sugerencias .sugerencias-HT-items-container > div:first-child a:first-child {
  margin: 0 1px 0 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
#hitlist-sugerencias .sugerencias-HT-items-container > div:first-child a:first-child:hover {
  margin: 0 4px 0 0;
}
#hitlist-sugerencias .sugerencias-HT-items-container > div:first-child a:last-child {
  margin: 0 0 0 1px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
#hitlist-sugerencias .sugerencias-HT-items-container > div:first-child a:last-child:hover {
  margin: 0 0 0 4px;
}
#hitlist-sugerencias .sug_txt {
  max-width: 360px;
  overflow: hidden;
  position: relative;
  min-width: 300px;
  text-overflow: ellipsis;
}
#hitlist-sugerencias .sug_txt .sug_txt_list {
  white-space: nowrap;
  font-size: 13px;
  color: white;
  text-decoration: none;
  height: 83px;
  padding: 0 6px;
  background-color: rgba(96, 125, 139, 0);
  background-image: url(../img/hitlist/agenda_bck.jpg);
  background: -moz-linear-gradient(top, rgba(96, 125, 139, 0), rgba(96, 125, 139, 0)), url(../img/hitlist/agenda_bck.jpg);
  background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(96, 125, 139, 0)), to(rgba(96, 125, 139, 0))), url(../img/hitlist/agenda_bck.jpg);
  background: -webkit-linear-gradient(top, rgba(96, 125, 139, 0), rgba(96, 125, 139, 0)), url(../img/hitlist/agenda_bck.jpg);
  background: -o-linear-gradient(top, rgba(96, 125, 139, 0), rgba(96, 125, 139, 0)), url(../img/hitlist/agenda_bck.jpg);
  background: linear-gradient(to bottom, rgba(96, 125, 139, 0), rgba(96, 125, 139, 0)), url(../img/hitlist/agenda_bck.jpg);
}
#hitlist-sugerencias .sug_txt .sug_txt_list a {
  color: white;
}
#hitlist-sugerencias .sug_txt .sug_txt_list a p {
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}
#hitlist-sugerencias .sug_txt .sug_txt_list a p b {
  font-size: 12px;
  font-weight: bold;
}
#hitlist-sugerencias .sug_txt::after {
  content: "";
  background: #607d8b !important;
  opacity: 0.5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}
h2.cabecera-pag,
section.cabecera-pag {
  width: 100%;
  font-weight: lighter;
}
h2.cabecera-pag span.cabecera-formato,
section.cabecera-pag span.cabecera-formato {
  color: var(--color-efe);
  line-height: normal;
  /* font-size: calc(20px + (36 - 20) * ((100vw - 300px) / (1600 - 300))) !important;*/
  font-size: clamp(1.2rem, 6vw, 2.25rem);
}
.aperture {
  background-color: hsl(200, 58%, 5%);
  z-index: 1;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .aperture {
    height: auto;
    overflow: hidden;
    -webkit-transition: height 0.1s ease-in-out;
    transition: height 0.1s ease-in-out;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .aperture {
    width: 265px;
    padding-bottom: 0;
    -webkit-transition: width 0.1s ease-in-out;
    transition: width 0.1s ease-in-out;
  }
}
.aperture.aperture-hide {
  display: inline-block !important;
  padding: 0!important;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .aperture.aperture-hide {
    height: 0px;
    overflow: hidden;
    width: 100%;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .aperture.aperture-hide {
    width: 0;
    min-width: 0;
    display: none !important;
  }
}
.aperture-f-rapidos {
  z-index: 1;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .aperture-f-rapidos {
    display: none!important;
    background-color: hsl(200, 58%, 5%);
    width: 100%;
  }
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .aperture-f-rapidos.aperture-f-rapidos-hide {
    display: block!important;
    min-height: 200px;
    overflow: hidden;
    width: 100%;
  }
}
.refinements-open {
  /*calc(100% - 265px);*/
  overflow: hidden;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .refinements-open {
    height: auto;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .refinements-open {
    width: calc(100% - 265px);
    width: -moz-calc(100% - 265px);
    width: -webkit-calc(100% - 265px);
    width: -o-calc(100% - 265px);
    height: auto;
  }
}
.refinements-closed {
  width: 100%;
  overflow: hidden;
}
@media only screen and (min-width: 530px) and (max-width: 949px), only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .refinements-closed {
    height: auto;
  }
}
/* override autocomplete *********** */
.ui-autocomplete {
  background-color: white!important;
  -webkit-box-shadow: 0px 4px 6px 1px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0px 4px 6px 1px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 4px 6px 1px rgba(0, 0, 0, 0.6);
  border-style: none!important;
}
.ui-autocomplete li {
  padding: 0 8px;
  border-bottom: 1px solid #efefef;
}
#buscadorfii:focus,
#buscadorfif:focus {
  background-color: #050F14;
  border-color: #050F14;
  color: white;
}
#refinements {
  display: inline-block;
  background-color: #353838;
  overflow: hidden;
  padding-bottom: 16px;
  text-align: left;
  vertical-align: top;
  width: 100%;
}
@media only screen and (min-width: 530px) and (max-width: 949px), only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  #refinements {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: 265px;
    padding-bottom: 0;
    -webkit-transition: width 0.2s ease-in-out;
    transition: width 0.2s ease-in-out;
  }
}
.refinements-gallery-container .refinements-open {
  position: absolute;
  height: 0;
  overflow: hidden;
}
/* Fin buscador **************************************************** */
/* Refinar ********************************************************* */
/* Fin refinar ***************************************************** */
@media only screen and (max-width: 529px) {
  #hitlist-plantillas {
    display: none;
  }
}
/* importado de HitList **************************** */
/* Items ****************************************** */
.item-hitlist {
  position: relative;
}
.item-hitlist.agenda-evento-estado-aplazado {
  border: solid 4px orange;
}
.item-hitlist.agenda-evento-estado-aplazado > div:first-child {
  background-color: orange;
  color: white;
  font-weight: 600;
  padding: 0 4px 2px;
}
.item-hitlist.agenda-evento-estado-anulado {
  border: solid 4px #b42417;
}
.item-hitlist.agenda-evento-estado-anulado > div:first-child {
  background-color: #b42417;
  color: white;
  font-weight: 600;
  padding: 0 4px 2px;
}
.item-hitlist .ih-contenido {
  top: calc(100% - 60px);
  top: -moz-calc(100% - 60px);
  top: -webkit-calc(100% - 60px);
  top: -o-calc(100% - 60px);
  width: 100%;
}
.item-hitlist .ih-contenido * {
  cursor: pointer;
}
.item-hitlist .item-HT-formats {
  color: #56a5cc;
  font-size: 14px;
  line-height: 18px;
  font-style: italic;
  letter-spacing: -1px;
}
.item-hitlist .item-HT-fecha-agenda {
  font-size: 13px;
  color: #666666;
  display: inline-block;
  height: 100%;
}
.item-hitlist .item-HT-titulo-agenda {
  font-size: 1rem;
  color: #555c63;
  font-weight: bold;
}
.item-hitlist .item-H-image {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
}
.item-hitlist .item-H-image img {
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.item-hitlist .item-H-image + div {
  position: absolute;
  top: calc(50% - 19px);
  top: -moz-calc(50% - 19px);
  top: -webkit-calc(50% - 19px);
  top: -o-calc(50% - 19px);
  left: 0;
  width: 100%;
  color: #444;
  text-align: center;
}
.item-hitlist .item-H-image + div i {
  background: rgba(244, 246, 246, 0.5);
  border-radius: 100%;
  margin: 0 2px;
  font-size: 1.4rem;
  width: 38px;
  height: 38px;
  text-align: center;
}
.item-hitlist .item-H-txt-container {
  position: relative;
  background: white;
}
.item-hitlist .item-H-txt-container.image-txt-calc {
  width: calc(100% - 80px);
  width: -moz-calc(100% - 80px);
  width: -webkit-calc(100% - 80px);
  width: -o-calc(100% - 80px);
}
.item-hitlist .item-H-txt-container.image-txt-all {
  width: 100%;
}
.item-hitlist .item-H-txt {
  position: relative;
}
.item-hitlist .item-H-txt p {
  margin: 0;
  padding: 0;
}
.item-hitlist .item-H-txt .item-HT-format {
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--General-filtrado-fondo);
  color: white;
  font-size: 12px;
  padding: 2px 6px;
}
.item-hitlist .item-H-txt .item-HT-date {
  color: #205169;
  font-size: 0.9rem;
  font-family: "Droid sans";
  line-height: 1rem;
}
.item-hitlist .item-H-txt .item-HT-date > span {
  display: block;
}
.item-hitlist .item-H-txt .item-HT-guia,
.item-hitlist .item-H-txt .item-HT-guia-agenda {
  font-size: 0.75rem;
  padding: 0;
  font-weight: normal;
}
.item-hitlist .item-H-txt .item-HT-guia {
  color: #56a5cc;
}
.item-hitlist .item-H-txt .item-HT-guia-agenda {
  color: #607d8b;
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
}
.item-hitlist .item-H-txt .item-HT-texto-agenda {
  font-size: 1rem;
  color: #555c63;
  font-weight: bold;
}
.item-hitlist .item-H-txt .item-HT-title {
  font-size: 1rem;
  font-weight: 700;
}
.item-hitlist .item-H-txt .item-HT-title a {
  color: #333;
  text-decoration: none;
}
.item-hitlist .item-H-txt .item-HT-title a:hover {
  color: #0033cc;
}
.item-hitlist .item-H-txt .item-HT-data {
  text-align: right;
}
.item-hitlist .item-H-txt .item-HT-data span {
  color: #114b67;
  font-size: 0.8rem;
  outline: 1px solid #114b67;
  padding: 2px 6px;
}
.item-hitlist .item-H-txt .item-HT-lugar,
.item-hitlist .item-H-txt .item-HT-cobertura,
.item-hitlist .item-H-txt .item-HT-ambito {
  text-align: right;
  font-style: italic;
  color: #1a495f;
  font-size: 0.9rem;
}
.item-hitlist .item-H-footer {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  padding: 8px 0;
}
.item-hitlist .item-H-footer .item-HF-state {
  width: auto;
}
.item-hitlist .item-H-footer .item-HF-state div {
  width: auto;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 0 12px 0 8px;
  color: white;
  height: 30px;
  align-items: center;
  display: inline-flex;
  justify-content: center;
}
.item-hitlist .item-H-footer .item-HF-state div.item-HF-stateSoloVis {
  background-color: palevioletred;
}
.item-hitlist .item-H-footer .item-HF-state div.item-HF-PPDG {
  background-color: #8cc158;
}
.item-hitlist .item-H-footer .item-HF-state div.item-HF-PPDR {
  background-color: orangered;
}
.item-hitlist .item-H-footer .item-HF-state div.item-HF-Pool {
  background-color: #0b491f;
}
.item-hitlist .item-H-footer .item-HF-action {
  width: auto;
  padding: 0 8px;
}
.item-hitlist .item-HF-PPDG-detalle {
  background-color: #8cc158;
}
.item-hitlist .item-HF-Pool-detalle {
  background-color: #0b491f;
}
.item-hitlist .item-H-mark {
  cursor: pointer;
  bottom: -32px;
  height: 42px;
  position: absolute;
  z-index: 9;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../img/hitlist/arrow_hitlist.png) no-repeat top center;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .item-hitlist .item-H-mark {
    display: none;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .item-hitlist .item-H-mark {
    width: 100%;
  }
}
.item-hitlist .item-H-mark img {
  height: 100%;
  width: 100%;
}
.item-hitlist.mosaico,
.item-hitlist.portada-cliente {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.item-hitlist.portada-cliente {
  z-index: 1;
}
@media only screen and (max-width: 529px) {
  .item-hitlist.mosaico {
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .item-hitlist.mosaico {
    width: 50%;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  .item-hitlist.mosaico {
    width: 33%;
  }
}
@media only screen and (min-width: 1129px) {
  .item-hitlist.mosaico {
    width: 20%;
  }
  .item-hitlist.mosaico.c_ListaDobleAct {
    width: 33%;
  }
  .item-hitlist.mosaico.c_ListaDobleHist {
    width: 50%;
  }
}
.item-hitlist.mosaico:hover .item-H-mark.ds-none {
  display: block !important;
}
.item-hitlist.mosaico > div,
.item-hitlist.portada-cliente > div {
  width: 100%;
  margin: 3% 3%;
  background-color: white;
  position: relative;
}
.item-hitlist.portada-cliente > div {
  margin: 6% !important;
}
.item-hitlist.mosaico > div > a,
.item-hitlist.portada-cliente > div > a,
.item-hitlist.mosaico > div .itemHimage,
.item-hitlist.portada-cliente > div .itemHimage {
  display: block;
  background-color: #f4f6f6;
}
.item-hitlist.mosaico > div > a,
.item-hitlist.portada-cliente > div > a {
  background-color: transparent;
}
.item-hitlist.mosaico .item-H-image,
.item-hitlist.portada-cliente .item-H-image {
  background-size: contain;
}
.item-hitlist.caja,
.item-hitlist.carro {
  margin: 0 0 4px 0;
}
@media only screen and (max-width: 529px) {
  .item-hitlist.caja,
  .item-hitlist.carro {
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .item-hitlist.caja,
  .item-hitlist.carro {
    width: 100%;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .item-hitlist.caja,
  .item-hitlist.carro {
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  .item-hitlist.caja .item-H-image-pcontainer,
  .item-hitlist.carro .item-H-image-pcontainer {
    width: 100% !important;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .item-hitlist.caja .item-H-image-pcontainer,
  .item-hitlist.carro .item-H-image-pcontainer {
    width: 40% !important;
    max-height: 100px;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .item-hitlist.caja .item-H-image-pcontainer,
  .item-hitlist.carro .item-H-image-pcontainer {
    width: 40% !important;
    max-height: 100px;
  }
}
.item-hitlist.caja .item-H-image-pcontainer .item-H-image,
.item-hitlist.carro .item-H-image-pcontainer .item-H-image {
  height: 100% !important;
}
@media only screen and (max-width: 529px) {
  .item-hitlist.caja .item-H-txt-pcontainer,
  .item-hitlist.carro .item-H-txt-pcontainer {
    width: 100% !important;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .item-hitlist.caja .item-H-txt-pcontainer,
  .item-hitlist.carro .item-H-txt-pcontainer {
    width: 60% !important;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .item-hitlist.caja .item-H-txt-pcontainer,
  .item-hitlist.carro .item-H-txt-pcontainer {
    width: 60% !important;
  }
}
.item-hitlist.caja .item-H-txt-pcontainer .item-H-txt,
.item-hitlist.carro .item-H-txt-pcontainer .item-H-txt {
  width: 100% !important;
}
.item-hitlist.caja .item-H-image,
.item-hitlist.carro .item-H-image,
.item-hitlist.caja .item-H-audio,
.item-hitlist.carro .item-H-audio {
  position: relative;
  background-color: #f4f6f6;
  background-size: cover;
}
@media only screen and (max-width: 529px) {
  .item-hitlist.caja .item-H-image,
  .item-hitlist.carro .item-H-image,
  .item-hitlist.caja .item-H-audio,
  .item-hitlist.carro .item-H-audio {
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .item-hitlist.caja .item-H-image,
  .item-hitlist.carro .item-H-image,
  .item-hitlist.caja .item-H-audio,
  .item-hitlist.carro .item-H-audio {
    width: 100%;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .item-hitlist.caja .item-H-image,
  .item-hitlist.carro .item-H-image,
  .item-hitlist.caja .item-H-audio,
  .item-hitlist.carro .item-H-audio {
    width: 100%;
  }
}
.item-hitlist.caja .item-H-image i,
.item-hitlist.carro .item-H-image i,
.item-hitlist.caja .item-H-audio i,
.item-hitlist.carro .item-H-audio i {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0 -50% 0 0;
  transform: translate(-50%, -50%);
  opacity: 0.8;
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .item-hitlist.caja .item-H-audio,
  .item-hitlist.carro .item-H-audio {
    width: 80px !important;
  }
}
@media only screen and (max-width: 529px) {
  .item-hitlist.caja .item-H-txt,
  .item-hitlist.carro .item-H-txt {
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .item-hitlist.caja .item-H-txt,
  .item-hitlist.carro .item-H-txt {
    width: 100%;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .item-hitlist.caja .item-H-txt,
  .item-hitlist.carro .item-H-txt {
    width: 100%;
  }
}
.item-hitlist.caja .item-H-txt:after,
.item-hitlist.carro .item-H-txt:after {
  content: "";
  height: 8px;
  line-height: 8px;
  display: block;
}
.item-hitlist.caja .item-H-txt .item-HT-date,
.item-hitlist.carro .item-H-txt .item-HT-date,
.item-hitlist.caja .item-H-txt .item-HT-guia,
.item-hitlist.carro .item-H-txt .item-HT-guia,
.item-hitlist.caja .item-H-txt .item-HT-title,
.item-hitlist.carro .item-H-txt .item-HT-title {
  margin: 0;
}
.item-hitlist.caja .item-H-txt .item-HT-title,
.item-hitlist.carro .item-H-txt .item-HT-title {
  font-size: 1rem;
  line-height: 1rem;
}
.item-hitlist.caja .item-H-txt .item-HT-format,
.item-hitlist.carro .item-H-txt .item-HT-format {
  position: relative;
  right: 0;
  background-color: #56a5cc;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
}
.item-hitlist.caja .image-txt-no,
.item-hitlist.carro .image-txt-no {
  display: none;
}
.item-hitlist.caja .item-H-footer,
.item-hitlist.carro .item-H-footer {
  width: auto;
  right: 0;
  background-color: #fff;
}
.item-hitlist.caja > a {
  position: relative;
}
.item-hitlist.caja > a i.fa {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 34px;
  height: 46px;
  border: none;
}
.item-hitlist.carro {
  width: 100%;
}
.item-hitlist > div {
  -webkit-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
}
.item-hitlist.lista {
  margin: 0 0 4px 0;
}
@media only screen and (max-width: 529px) {
  .item-hitlist.lista {
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .item-hitlist.lista {
    width: 100%;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .item-hitlist.lista {
    width: 100%;
  }
}
.item-hitlist.lista .item-HF-state {
  width: auto;
}
.item-hitlist.lista .item-HF-state div {
  width: auto;
  padding: 0 8px;
  color: white;
  height: 30px;
  align-items: center;
  display: inline-flex;
  justify-content: center;
}
.item-hitlist.lista .item-HF-state div.item-HF-stateSoloVis {
  background-color: palevioletred;
}
.item-hitlist.lista .item-HF-state div.item-HF-PPDG {
  background-color: #8cc158;
}
.item-hitlist.lista .item-HF-state div.item-HF-PPDR {
  background-color: orangered;
}
.item-hitlist.lista .item-HF-state div.item-HF-Pool {
  background-color: #0b491f;
}
.item-hitlist.lista .item-HT-format {
  position: relative !important;
  line-height: 30px;
  display: table-cell;
  vertical-align: middle;
}
/************************ */
/* COLOCAR ************** */
a.itemHimage video {
  bottom: 0;
  top: 0;
  position: absolute;
  z-index: 999;
  margin: auto;
  right: 0;
  left: 0;
}
/* COLOCAR ************** */
/************************ */
.added_to_favorite {
  color: #26c6da !important;
}
.added_to_cart {
  color: #ffb22b !important;
}
.justified-gallery > a > .caption.caption-visible,
.justified-gallery > div > .caption.caption-visible {
  display: initial;
  filter: "alpha(opacity=100)";
  opacity: 1;
  -webkit-transition: opacity 500ms ease-in;
  -moz-transition: opacity 500ms ease-in;
  -o-transition: opacity 500ms ease-in;
  transition: opacity 500ms ease-in;
  background-color: rgba(0, 0, 0, 0.8) !important;
}
.clonado {
  position: fixed;
  bottom: 20px;
}
a.itemHimage video {
  bottom: 0;
  top: 0;
  position: absolute;
  z-index: 999;
  margin: auto;
  right: 0;
  left: 0;
}
.qc-cmp2-persistent-link {
  right: unset !important;
  left: 0;
}
/* Hitlist para visualización de guias agrupadas */
div[class*="apilado"] {
  float: left;
  position: relative;
  margin: 30px !important;
}
div[class*="apilado"] .div-image-background {
  height: 100%;
  background-position: center center;
  background-size: cover;
}
div[class*="apilado"] .div-contador-noticias {
  top: 0;
  left: 30px;
  background: #101820;
  width: 62px;
  height: 60px;
}
div[class*="apilado"] .div-contador-noticias h1,
div[class*="apilado"] .div-contador-noticias p,
div[class*="apilado"] .div-contador-noticias i {
  text-align: center;
  color: #56a5cc;
}
div[class*="apilado"] .div-contador-noticias h1 {
  font-size: 30px;
}
div[class*="apilado"] .div-contador-noticias p {
  font-size: 10px;
}
div[class*="apilado"] .div-contador-noticias i {
  font-size: 2rem;
}
div[class*="apilado"] .div-guia {
  bottom: 0;
  background: rgba(16, 24, 32, 0.75);
  width: 100%;
}
div[class*="apilado"] .div-guia h3 {
  font-size: 13px;
  color: white;
}
div[class*="apilado"],
div[class*="apilado"]:before,
div[class*="apilado"]:after {
  border: 4px solid #fff;
  width: 100%;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
div[class*="apilado"]:before,
div[class*="apilado"]:after {
  background: #c5c5c5;
  content: "";
  position: absolute;
  z-index: -1;
  height: 100%;
}
div[class*="apilado"]:before {
  -webkit-transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -o-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  transform: rotate(10deg);
}
div[class*="apilado"]:after {
  background: #808080;
  -webkit-transform: rotate(6deg);
  -moz-transform: rotate(6deg);
  -o-transform: rotate(6deg);
  -ms-transform: rotate(6deg);
  transform: rotate(6deg);
}
/* Fin importado de HitList ************************ */
.basket .item-basket-image img {
  width: 100%;
  max-width: 100%;
}
.basket ul {
  list-style: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 0.9rem;
}
.basket ul li span {
  display: block;
}
.basket ul li.txtPrecioObjeto span {
  display: inline-block !important;
}
.basket .titulo_OBJ {
  color: #205169;
  font-size: 1.3rem;
}
.basket .spanLicenciaDeUso {
  display: block;
  margin: 0;
}
.basket .txtPrecioObjeto {
  line-height: 1.1rem;
  border: 1px solid transparent;
  padding: 0.4rem 1rem;
}
.basket .precioNoticia {
  font-weight: bold;
  font-size: 1.1rem;
}
.panel_comprar {
  background-color: #1A323E;
  color: white;
}
.precioIVA {
  display: block;
  text-align: right;
}
/* TABLA DE CONSUMOS **************************** */
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .table-responsive {
    display: block;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .table-responsive {
    display: table;
  }
}
.table-responsive thead th {
  vertical-align: bottom;
  border-bottom: 2px none #eceeef;
  max-width: 100px;
  text-align: center;
}
.table-responsive .col-1,
.table-responsive .col-2 {
  width: auto;
}
.table-sm td,
.table-sm th {
  padding: 0.8rem;
  /* margin: 0.1rem; */
  text-align: center;
  border: solid 1px #e8eded;
  vertical-align: middle;
}
.table td,
.table th {
  padding: 0.75rem;
  vertical-align: middle;
  border-top: 1px solid #eceeef;
}
.consumptions_panel {
  position: relative;
}
.consumptions_panel:after {
  content: "";
  height: 33px;
}
.consumption_bar {
  height: 7px;
}
.consumption_bar.consumption_bar_normal {
  background-color: #e6e6e6;
}
.consumption_bar.consumption_bar_no_limit {
  background-color: #91e891;
}
.consumption_bar.consumption_bar_agotado {
  background-color: red;
}
.consumption_bar .consumption_bar_consumed {
  height: 7px;
  background-color: #56a5cc;
}
.consumption_bar .comsumption_legend {
  position: absolute;
  top: -22px;
  right: 2px;
}
.consumption_bar_normal {
  color: #e6e6e6;
}
.consumption_bar_consumed {
  color: #56a5cc;
}
.consumption_bar_no_limit {
  color: #91e891;
}
.consumption_bar_agotado {
  color: red;
}
.consumosTrStriped {
  background-color: #f9f9f9;
}
.consumos_txt_consumido {
  font-size: 0.85rem;
  white-space: nowrap;
}
.pseudo .comsumption_legend {
  color: #efefef;
}
.pseudo .comsuption_nombre_servicio {
  color: #efefef;
}
/* CAJAS - GAMA DE COLOR AZUL **************************************** */
.box-n {
  background-color: #56a5cc;
}
.box-l10 {
  background-color: #7dbad8;
}
.box-l15 {
  background-color: #91c4de;
}
.box-l20 {
  background-color: #a4cfe4;
}
.box-l25 {
  background-color: #b8d9ea;
}
.box-l30 {
  background-color: #cce4ef;
}
.box-l35 {
  background-color: #dfeef5;
}
.box-l40 {
  background-color: #f3f8fb;
}
.box-l45 {
  background-color: #ffffff;
}
.box-l50 {
  background-color: #ffffff;
}
.box-b10 {
  background-color: #378db8;
}
.box-b15 {
  background-color: #317ea4;
}
.box-b20 {
  background-color: #2c6f90;
}
.box-b25 {
  background-color: #26607d;
}
.box-b30 {
  background-color: #205169;
}
.box-b35 {
  background-color: #1a4256;
}
.box-b40 {
  background-color: #143342;
}
.box-b45 {
  background-color: #0e242e;
}
.box-b46 {
  background-color: #0d212b;
}
.box-b47 {
  background-color: #0c1e27;
}
.box-b48 {
  background-color: #0a1b23;
}
.box-b49 {
  background-color: #09181f;
}
.box-b50 {
  background-color: #08151b;
}
.box-b52 {
  background-color: #060f13;
}
.box-b55 {
  background-color: #020607;
}
.box-b57 {
  background-color: #000000;
}
.box-b60 {
  background-color: #000000;
}
.pruebacolor [class^="box-"] {
  height: 40px;
  width: 40px;
  color: orange;
  display: none;
}
.border {
  border: solid 1px red;
}
/* FIN CAJAS - GAMA DE COLOR AZUL ************************************ */
.enjoy-input {
  display: inline-block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  padding: 10px 20px;
  border: 1px solid #b7b7b7;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font: normal medium / normal Arial, Helvetica, sans-serif;
  color: #008ec6;
  -o-text-overflow: clip;
  text-overflow: clip;
  background: #fcfcfc;
  -webkit-box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.2) inset;
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.2) inset;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.66);
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
}
.enjoy-input:hover {
  border: 1px solid #a3a3a3;
  background: #ffffff;
  -webkit-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1);
}
.enjoy-input:focus {
  border: 1px solid #018dc4;
  -webkit-box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2) inset;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2) inset;
  -webkit-transition: all 50ms cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 50ms cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 50ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 50ms cubic-bezier(0.42, 0, 0.58, 1);
}
/* ***************************************** */
.arrow-up,
.arrow-down,
.arrow-right,
.arrow-left {
  width: 0;
  height: 0;
}
.arrow-up {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black;
}
.arrow-down {
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #ccc;
}
.arrow-right {
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  border-left: 28px solid #1a323e;
}
.arrow-left {
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  border-right: 28px solid #1a323e;
}
/*  
        Document   : flip-scroll
        Created on : 28/02/2012, 11:01:45 AM 
        Author     : Simon Elvery
        Description:
            Demonstration of the responsive tables method described at by David Bushell
            at http://dbushell.com/2012/01/05/responsive-tables-2/
    */
@media only screen and (max-width: 800px) {
  #flip-scroll .cf:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
  }
  #flip-scroll * html .cf {
    zoom: 1;
  }
  #flip-scroll *:first-child + html .cf {
    zoom: 1;
  }
  #flip-scroll table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
  }
  #flip-scroll th,
  #flip-scroll td {
    margin: 0;
    vertical-align: top;
  }
  #flip-scroll th {
    text-align: left;
  }
  #flip-scroll table {
    display: block;
    position: relative;
    width: 100%;
  }
  #flip-scroll thead {
    display: block;
    float: left;
  }
  #flip-scroll tbody {
    display: block;
    width: auto;
    position: relative;
    overflow-x: auto;
    white-space: nowrap;
  }
  #flip-scroll thead tr {
    display: block;
  }
  #flip-scroll th {
    display: block;
    text-align: right;
  }
  #flip-scroll tbody tr {
    display: inline-block;
    vertical-align: top;
  }
  #flip-scroll td {
    display: block;
    min-height: 1.25em;
    text-align: left;
  }
  /* sort out borders */
  #flip-scroll th {
    border-bottom: 0;
    border-left: 0;
  }
  #flip-scroll td {
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }
  #flip-scroll tbody tr {
    border-left: 1px solid #babcbf;
  }
  #flip-scroll th:last-child,
  #flip-scroll td:last-child {
    border-bottom: 1px solid #babcbf;
  }
}
/* ****** *Resdes ****** */
.input-group-addon.registro {
  background-color: transparent;
}
.input-group-addon.redes {
  width: 34px;
  border-radius: 4px 0 0 4px;
  height: 34px;
  top: 0;
}
.input-group-addon.redes.google,
.input-group-addon.redes.Google {
  background-color: #dc4e41;
}
.input-group-addon.redes + a {
  border-radius: 4px;
  width: 100%;
}
.input-group-addon.redes.google + a,
.input-group-addon.redes.Google + a {
  background-color: #9e3325;
  border-color: #9e3325;
  color: #fff !important;
}
.input-group-addon.redes.facebook,
.input-group-addon.redes.Facebook {
  background-color: #3d5c95;
}
.input-group-addon.redes.facebook + a,
.input-group-addon.redes.Facebook + a {
  background-color: #1d3469;
  border-color: #1d3469;
  color: #fff !important;
}
.input-group-addon.redes.facebook + a:hover,
.input-group-addon.redes.Facebook + a:hover {
  background-color: #3d5c95;
  border-color: #3d5c95;
}
.input-group-addon.redes.Google + a:hover,
.input-group-addon.redes.Google + a:hover {
  background-color: #dc4e41;
  border-color: #dc4e41;
}
.w-temasact [class*=col-],
.w-seranoticia [class*=col-],
.w-personajes [class*=col-],
.w-creativas [class*=col-],
.w-sugprod [class*=col-] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 0;
  padding-right: 0;
}
.w-temasact [class*=col-].w-cliente,
.w-seranoticia [class*=col-].w-cliente,
.w-personajes [class*=col-].w-cliente,
.w-creativas [class*=col-].w-cliente,
.w-sugprod [class*=col-].w-cliente {
  padding: 0.8rem !important;
}
.w-temasact [class*=col-].w-cliente h3,
.w-seranoticia [class*=col-].w-cliente h3,
.w-personajes [class*=col-].w-cliente h3,
.w-creativas [class*=col-].w-cliente h3,
.w-sugprod [class*=col-].w-cliente h3,
.w-temasact [class*=col-].w-cliente h2,
.w-seranoticia [class*=col-].w-cliente h2,
.w-personajes [class*=col-].w-cliente h2,
.w-creativas [class*=col-].w-cliente h2,
.w-sugprod [class*=col-].w-cliente h2 {
  position: relative!important;
  background-color: white!important;
  color: #378db8 !important;
}
.w-cli h2.cabecera,
.w-cli p.cabecera {
  display: none;
}
.w-cli .w-hora {
  font-size: 13px;
  background-color: #607d8b !important;
  color: white;
  display: inline-block;
  height: 100%;
}
.w-cli .w-titulo {
  font-size: 0.9rem;
  font-weight: bold;
  color: #2b5366;
}
.w-cli .w-titulo.w-titulo-agenda {
  font-size: 0.8rem;
  color: #555c63;
}
.w-cli .w-guia {
  font-size: 13px;
  color: #56a5cc;
  padding: 0;
  margin: 2px 0;
  font-weight: bold;
}
.w-cli .w-guia.w-guia-agenda {
  color: #607d8b !important;
}
.w-cli .w-cli .item-HT-lugar,
.w-cli .w-cli .item-HT-cobertura {
  text-align: right;
  font-style: italic;
  color: #1a495f;
  font-size: 0.9rem;
}
.w-cli .w-txt {
  font-size: 13px;
  margin: 4px 8px 8px 20px;
}
.w-cli .card-block li {
  border-bottom: solid 1px #ededed;
}
.w-cli .seguimiento_inactivo {
  background-color: #08151b;
  color: white;
}
.w-cli .seguimiento_activo {
  background-color: #56a5cc;
  color: white;
}
.w-servivios .servicio-abrev,
.w-tto-informatico .servicio-abrev {
  color: #56a5cc !important;
}
.w-servivios a,
.w-tto-informatico a {
  display: inline-block;
  color: #586067;
}
.w-html img,
.w-html iframe {
  display: block;
}
#widget-pais > div {
  width: 100%;
}
/* Hitlist ******************************************** */
.item-HF-state-detalle div {
  line-height: 32px;
  width: auto;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  display: inline-block;
  padding: 0 16px 0 8px;
  text-align: center;
  color: white;
}
.item-HF-PPDG-detalle {
  background-color: #8cc158;
}
.item-HF-Pool-detalle {
  background-color: #0b491f;
}
.justified-gallery > div {
  background: #E5E5E5;
  filter: "alpha(opacity=10)";
  opacity: 0.1;
}
.navegaFiltros .nf_productos > * {
  font-size: 0.9rem;
  /*background-color: var(--color-efe);*/
  display: flex;
  align-items: center;
  margin: 0;
  border-radius: 12px;
}
.navegaFiltros .nf_productos i {
  /*background-color:  var(--color-efe);*/
  line-height: 1.5rem;
  padding: 0 0.4rem;
  border-radius: 12px;
}
.navegaFiltros .post_Facets_delete i {
  /*background-color:  var(--color-efe);*/
  line-height: 1.5rem;
  padding: 0 0.4rem;
  border-radius: 12px;
}
/* Fin Hitlist **************************************** */
/* A colocar más tarde ***************************** */
.collapsador {
  margin: 0px 0px 10px 0px;
  width: 100%;
}
.bodycolapso {
  background-color: #050f14;
  border-color: #050f14;
}
.loadingcolapso {
  width: 100%;
  padding: 20px;
  text-align: center;
}
.audioListMos {
  background-color: #f4f6f6;
  text-align: center;
  padding: 4px 0;
  height: 48px;
}
.audioListMos div {
  width: 50px;
  height: 30px;
  margin: auto;
  text-align: left;
}
.audioListCaja {
  padding: 10px 30px 0 10px;
  width: 80px;
  -webkit-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0) !important;
  -moz-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0) !important;
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0) !important;
}
.audioListCaja div[id*="div"] {
  border-radius: 50%;
  background-color: #f4f6f6;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
}
.audioListiles {
  text-align: center;
  padding: 4px 0;
}
.audioListiles div {
  width: 50px;
  height: 50px;
  margin: auto;
  text-align: left;
}
.audioListMos div i,
.audioListCaja div i,
.audioListiles div i {
  cursor: text;
}
/*.cursorPlay { cursor:  url(../img/font-awesome-play-black.png), default !important;}*/
/*Clases para favoritos JJ*/
.listaCarpetasFavoritos .selected {
  background-color: #56a5cc;
  color: white;
}
/*Clases para favoritos JJ*/
.listaCarpetasFavoritos .selected {
  background-color: #56a5cc;
  color: white;
}
/* añadido para agenda*/
.agendaSeparador {
  padding-top: 20px;
}
/*.agendaLeft{width:200px}*/
h2.agendaLeft,
h3.agendaLeft {
  vertical-align: middle;
  text-align: center;
  margin-top: 20px;
}
#calBuscadorAgenda .ui-datepicker-inline {
  width: 246px;
}
#calBuscadorAgenda .ui-datepicker-inline,
#calBuscadorEfemerides .ui-datepicker-inline {
  width: 246px;
}
#calBuscadorEfemerides .ui-datepicker-year {
  display: none;
}
.ui-datepicker-calendar th[scope="col"] span {
  color: white;
}
.ui-datepicker-month,
.ui-datepicker-year {
  color: #bbbbbb;
  border: solid 1px #153d52;
  background: transparent;
}
.ui-datepicker-month option,
.ui-datepicker-year option {
  background-color: #153d52;
  padding: 0 0.6rem;
}
.separate {
  border-bottom: solid 2px red;
}
.evento-fecha {
  background-color: #56a5cc;
  color: white;
}
.evento-fecha .evento-fecha-cabecera {
  font-size: 1.8rem;
}
.evento-fecha .evento-fecha-pie {
  font-size: 1rem;
}
.item-hitlist.agenda-evento .item-H-txt .item-HT-date {
  font-size: 1.4rem;
  margin: 0;
}
.item-hitlist.agenda-evento .item-H-txt .item-HT-guia {
  font-size: 0.9rem;
  margin: 0;
}
.item-hitlist.agenda-evento .item-H-txt .item-HT-title {
  font-size: 1rem;
  margin: 0;
}
#dropdown-menu-busquedas a.dropdown-item {
  padding: 3px 0.8rem 3px 1.5rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.SeguimientoMsg {
  display: none;
  margin-bottom: 6px;
  font-size: 1.1em;
}
.SeguimientoMsg.SeguimientoMsgOK {
  color: green;
}
.SeguimientoMsg.SeguimientoMsgError {
  color: orangered;
}
.lblCaducidadS {
  font-weight: bold;
}
.ui-dialog.delete-dialog {
  font-family: Verdana, Arial, sans-serif;
  font-size: 0.8em;
  background: white;
}
.ui-dialog.delete-dialog .ui-dialog-titlebar {
  background: #56A5CC;
}
.ui-dialog.delete-dialog .ui-widget-content {
  background: white;
}
.item-hitlist.eventoSinHora {
  background-color: #225b77 !important;
  color: white;
  width: 100%;
}
.item-hitlist.eventoConHora {
  background-color: #fff !important;
  color: #666;
  width: 100%;
}
.item-hitlist.eventoprevision {
  color: #3ba0ce !important;
}
.eventoprevision {
  color: #3ba0ce !important;
}
.Mini_envio_applet_contenedor div.popover {
  max-width: 400px;
}
#alert-agenda {
  margin: 10px 10px 10px 50px;
  min-height: 100px;
  position: relative;
  width: 90%;
  display: none;
}
.w-cont {
  /*#6f8c9a*/
}
.w-cont .card-header {
  background-color: var(--color-oscuro) !important;
}
.w-cont:first-of-type .card-header {
  background-color: var(--color-oscuro) !important;
}
.w-cont:last-of-type .card-header {
  background-color: var(--color-oscuro) !important;
}
.multiTruncate {
  overflow: hidden!important;
  position: relative!important;
  line-height: 1.2em !important;
  max-height: 6em !important;
  text-align: lef!important;
  /*margin-right: -1em!important;
      padding-right: 1em!important;*/
}
.multiTruncate:before {
  content: '...';
  position: absolute;
  right: 10px;
  bottom: -10px;
}
.multiTruncate:after {
  content: '';
  position: absolute;
  right: 0;
  width: 1em;
  height: 1em;
  margin-top: 0.2em;
  background: white;
}
/* *********************************************************************** */
ul.pagination a.page-link {
  cursor: pointer;
}
ul.pagination a.page-link,
.cursorpointer {
  cursor: pointer;
}
.classTituloCaducidad {
  font-style: italic;
  font-weight: bold;
}
/*NUEVAS LUIS*/
.item-HF-stateSoloVis-pseudo {
  width: auto;
  background-color: palevioletred;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 0;
  display: inline-block;
  text-align: center;
  color: white;
  line-height: 32px;
}
.item-HF-stateSoloVis-pseudo-explica {
  font-size: 1.1em;
  background-color: palevioletred;
}
.noclickers {
  cursor: default;
}
.siclickers {
  cursor: pointer;
}
.rtltextos {
  direction: rtl;
  text-align: right;
}
.rtltextos_caja {
  direction: rtl;
  text-align: right;
  padding-right: 120px;
}
.rtltextos_tiles {
  direction: rtl;
  text-align: right;
  padding-right: 60px !important;
}
.clientes-caja-alerta-notificaciones {
  position: relative;
}
.clientes-caja-alerta-notificaciones div.seguimiento_filtrado {
  left: auto;
  top: auto;
}
.activeUtc {
  color: red;
}
.spanUTC {
  font-size: 0.8rem;
}
.spanUTC.caja {
  display: inline-block !important;
}
.page-header-title {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
  display: inline-block;
}
.page-header-caption {
  font-size: 0.9rem;
  font-style: italic;
  margin-left: 10px;
}
.page-header-caption-2 {
  font-size: 0.9rem;
  font-family: 'Droid Serif';
}
.alert-noticias {
  background-color: #fff;
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
  border-color: none;
  color: #205169;
}
.alert-dismissible .close {
  /* position: absolute; */
  /* top: 0; */
  /* right: 0; */
  position: absolute;
  top: 50%;
  /* left: 50%; */
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  /* padding: .75rem 1.25rem; */
  color: inherit;
}
.alert-efe-recibido {
  background-color: #ffffff !important;
  border: 2px solid #0033cc !important;
}
.alert-efe-no-recibido {
  background-color: #ffffff !important;
  border: 2px solid #868f98 !important;
}
.alert-efe-visto {
  background-color: #ffffff !important;
  color: #56a5cc !important;
}
.alert-efe-no-visto {
  background-color: #ffffff !important;
  color: #868f98 !important;
}
.animacionAvisos {
  animation-name: parpadeoAvisos ;
  animation-duration: 300ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-name: parpadeoAvisos;
  -webkit-animation-duration: 300ms;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}
@-moz-keyframes parpadeoAvisos {
  0% {
    color: inherit;
  }
  50% {
    color: red;
  }
  100% {
    color: inherit;
  }
}
@-webkit-keyframes parpadeoAvisos {
  0% {
    color: inherit;
  }
  50% {
    color: red;
  }
  100% {
    color: inherit;
  }
}
@keyframes parpadeoAvisos {
  0% {
    color: inherit;
  }
  50% {
    color: red;
  }
  100% {
    color: inherit;
  }
}
.sinafter:after {
  height: 0 !important;
  line-height: 0 !important;
}
.input-group-addon {
  padding: 6px 2px;
  font-size: 14px;
  font-weight: normal;
  color: #bbbbbb !important;
  text-align: center;
  border: 1px none #ccc;
  border-radius: 4px;
  z-index: 999;
}
input[data-attr="show-password"] ~ span.input-group-addon {
  left: inherit;
  right: 0;
  color: white !important;
  width: 39px;
  background-color: #ccc;
}
.pointer {
  cursor: pointer;
}
.input-group.redes-container {
  border-bottom: none 1px #30596d;
  padding-right: 0;
  margin: 8px auto;
}
.border-r {
  border-right: solid 1px #333;
}
#num_noticias {
  display: none;
  font-size: 1.3rem;
  color: darkgray;
  text-align: center;
}
.listaMinima {
  overflow: hidden;
  max-height: 140px;
  width: 100%;
  cursor: pointer;
  border: 1px solid #153d51;
  border-radius: 5px;
}
.listaMinima p {
  font-size: 0.9rem;
  line-height: 1.2rem;
}
.listaMinima .item-HT-format {
  position: absolute;
  right: 16px;
  bottom: 0;
  background-color: #56a5cc;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
}
.dropdown-menu-efe {
  width: 300px !important;
  padding: 10px;
}
.dropup .dropdown-toggle-efe::after {
  border-bottom: none;
}
.color-logo {
  fill: #0f4171;
}
/* Modal ********************************* */
.modal-header {
  background-color: var(--color-efe);
}
.modal-header h5,
.modal-header .cabecera {
  color: white;
}
.modal-header p {
  color: white;
  font-size: 1.25rem;
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
  color: white !important;
}
color:white .modal-header .close:hover {
  color: red;
}
.item-HT-textoCaja {
  font-size: 12px;
}
.ordenacion {
  position: absolute;
  top: 50%;
  margin: -10px;
  right: 8px;
}
.ordenacion i {
  line-height: 0.3em;
  color: #dedede;
}
.ordenacion i.ordenado {
  color: var(--color-efe);
}
.shadow {
  box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
}
.newsletter-container .newsletter-item h2 {
  color: #143342;
  font-weight: 600;
  font-size: calc(16px + 0.8vw);
}
.newsletter-container .newsletter-item p {
  font-size: calc(16px - 0.1vw);
}
.newsletter-container .newsletter-item p.categoria {
  text-transform: uppercase;
  font-weight: 600;
}
.newsletter-container .newsletter-item p.categoria i {
  color: orange;
}
.newsletter-container .newsletter-item.newsletter-active {
  outline: solid 6px #007bff;
}
.newsletter-container p {
  padding: 0;
  margin: 0;
}
.newsletter-container .newsletter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-container .newsletter-btn.confirmar {
  background-color: #ffa20770;
  color: #e0a800;
  font-weight: 600 ;
  border: 2px solid #e0a800;
}
.newsletter-container .newsletter-btn.confirmar p {
  color: #e0a800;
  font-weight: 600;
  text-align: center;
}
.newsletter-container .newsletter-btn.desuscribir {
  background-color: rgba(220, 53, 69, 0.5);
  color: #dc3545;
  font-weight: 600 ;
  border: 2px solid #dc3545;
}
/* ** Panel carro compra infobinarios ***** */
.panel-container {
  padding: 1rem;
  background-color: #e9ebeb;
}
.panel-title {
  position: relative;
  padding-right: 2rem!important;
}
.panel-title-full {
  width: 100%;
}
.panel-title::after {
  content: "\f107";
  color: #444;
  top: 0;
  right: 1rem;
  position: absolute;
  font-size: 1rem;
  font-family: "FontAwesome";
}
.panel-title[aria-expanded="true"]::after {
  content: "\f106";
}
/*var --app-drawer-width: 240px;
    --ytd-persistent-guide-width: 240px;
    --ytd-permission-role-bottom-bar-height: 30px;*/
.selector-1 {
  background-color: #f00;
  width: 300px;
}
/* Portada pública*/
.portada-item {
  width: 100%;
  max-width: 975px;
}
.portada-item .portada-literal {
  margin: 0 auto;
  box-sizing: content-box;
  padding: 1.2em 0;
  color: white;
  text-shadow: 0 1px 1px #969696, 0 4px 3px #0a0a0a;
  letter-spacing: 2px;
  -o-text-overflow: clip;
  text-overflow: clip;
}
.portada-item .portada-literal div span,
.portada-item .portada-literal div h1 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
@media only screen and (max-width: 575.98px) {
  .portada-item .portada-literal div span,
  .portada-item .portada-literal div h1 {
    font-size: 1.25em;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .portada-item .portada-literal div span,
  .portada-item .portada-literal div h1 {
    font-size: 1.875em;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) {
  .portada-item .portada-literal div span,
  .portada-item .portada-literal div h1 {
    font-size: 2.5em;
  }
}
.portada-item .portada-literal p {
  text-align: center;
  padding: 0;
  margin: 0;
  position: relative;
}
@media only screen and (max-width: 575.98px) {
  .portada-item .portada-literal p {
    font-size: 2.1875em;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .portada-item .portada-literal p {
    font-size: 2.8125em;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) {
  .portada-item .portada-literal p {
    font-size: 3.4375em;
  }
}
.portada-item .portada-literal p a {
  color: white;
}
.portada-item .portada-literal p a:hover {
  color: #56a5cc;
}
.portada-item .portada-literal p a .point {
  font-size: 8px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
@media only screen and (max-width: 575.98px) {
  .portada-item .portada-literal p a .point {
    top: 0.625em;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .portada-item .portada-literal p a .point {
    top: 0.9375em;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) {
  .portada-item .portada-literal p a .point {
    top: 1.375em;
  }
}
/* Fin Portada pública*/
/* Fin resto ****************************************************** */
/* promos ********************************************************** */
.promos-fijas {
  margin: 0 0 1.5rem 0;
}
.promos-carrusel {
  margin: 1.5rem 0;
}
.promos-fijas,
.promos-carrusel {
  overflow: hidden;
}
.promos-fijas div,
.promos-carrusel div {
  text-align: center;
}
.promos-fijas div.promo-item,
.promos-carrusel div.promo-item {
  /*padding: 0 0 1rem;*/
  /*min-height:100px;*/
}
.promos-fijas div.promo-item:last-child,
.promos-carrusel div.promo-item:last-child {
  /* padding: 0;*/
}
.promos-fijas div.promo-item-img,
.promos-carrusel div.promo-item-img,
.promos-fijas div .promo-item-vid,
.promos-carrusel div .promo-item-vid {
  padding: 0;
  height: 100%;
  background-color: #0f4271;
  /*line-height: 0;*/
  vertical-align: text-top;
}
.promos-fijas div.promo-item-img,
.promos-carrusel div.promo-item-img {
  /*padding: 1rem 1rem 0;*/
  display: block;
}
.promos-fijas div.promo-item-img:last-child,
.promos-carrusel div.promo-item-img:last-child {
  /*padding: 1rem 1rem 1rem;*/
  display: block;
}
.promos-fijas div.promo-item-img > div,
.promos-carrusel div.promo-item-img > div {
  display: block;
}
.promos-fijas div.promo-item-vid iframe,
.promos-carrusel div.promo-item-vid iframe {
  display: block;
}
.promos-fijas div.promo-item-titulo,
.promos-carrusel div.promo-item-titulo {
  padding: 0 0 4px;
}
.promos-fijas div.promo-item-desc,
.promos-carrusel div.promo-item-desc {
  padding: 0 8px 4px;
  text-align: left;
}
/* Fin promos ****************************************************** */
/* Detalle ********************************************************** */
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  html {
    --efeser-menu-height: 44px;
    --efeser-sectionheader-height: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  html {
    --efeser-menu-height: 120px;
    --efeser-sectionheader-height: 64px;
  }
}
.directos:hover {
  background-color: var(--color-efe) !important;
  cursor: pointer;
}
.directos.activo {
  background-color: var(--color-efe) !important;
  cursor: default;
}
#listaDirectosTable #listaDirectosCabecera,
#listaDirectosTable #listaDirectos {
  color: var(--color-medio);
}
#listaDirectosTable #listaDirectosCabecera .directos-estado,
#listaDirectosTable #listaDirectos .directos-estado {
  width: 60px;
  text-align: center;
}
#listaDirectosTable #listaDirectosCabecera .directos-titulo-datos,
#listaDirectosTable #listaDirectos .directos-titulo-datos {
  width: calc(100% - 158px);
}
#listaDirectosTable #listaDirectosCabecera .directos-fecha,
#listaDirectosTable #listaDirectos .directos-fecha {
  width: 52px;
  text-align: center;
}
#listaDirectos {
  /* Works on Firefox */
  scrollbar-width: thin;
  scrollbar-color: var(--color-clarisimo) var(--color-oscuro);
  /* Works on Chrome, Edge, and Safari */
}
#listaDirectos::-webkit-scrollbar {
  width: 12px;
}
#listaDirectos::-webkit-scrollbar-track {
  background: var(--color-oscuro);
}
#listaDirectos::-webkit-scrollbar-thumb {
  background-color: var(--color-clarisimo);
  border-radius: 20px;
  border: 3px solid var(--color-oscuro);
}
[class^="fecha_"] {
  border-bottom: solid 1px var(--color-medio);
}
[class^="fecha_"]:before {
  color: var(--color-medio);
  width: 100%;
  display: block;
  padding: 0 0.3rem 0.2rem;
  margin: 1rem 0 0;
  font-size: 1.4rem;
}
.listaDirectos_container :nth-child(1 of .fecha_1):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_2):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_3):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_4):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_5):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_6):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_7):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_8):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_9):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_10):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_11):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_12):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_13):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_14):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_15):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_16):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_17):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_18):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_19):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_20):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_21):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_22):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_23):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_24):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_25):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_26):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_27):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_28):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_29):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_30):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
.listaDirectos_container :nth-child(1 of .fecha_31):before {
  content: attr(data-label);
  border-bottom: solid 1px var(--color-medio);
}
#iframe_container {
  aspect-ratio: 16/9;
}
@media only screen and (max-width: 575px) {
  #iframe_container.hidden {
    display: none;
  }
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  #iframe_container {
    flex-basis: auto;
  }
}
#iframe_container #div_container_poster,
#iframe_container #videoDirectos {
  background-size: cover;
  background-position: center left;
  height: 100%;
  aspect-ratio: 16/9;
}
@media only screen and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 991px) {
  #iframe_container #div_container_poster,
  #iframe_container #videoDirectos {
    flex-basis: auto;
    margin: 0 auto;
  }
  #iframe_container #div_container_poster:before:before,
  #iframe_container #videoDirectos:before:before {
    content: attr(data-texto);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  #iframe_container #div_container_poster,
  #iframe_container #videoDirectos {
    width: 100%;
  }
}
/*
  .textoDirectos_iframe{
    @media @mobile, @tablet {
    }
    @media @desktop,@desktop-xl{
      display:none
    }
  }
  .textoDirectos_noiframe{
    @media @mobile, @tablet {
      display:none !important;
    }
    @media @desktop,@desktop-xl{
      
    }
  }

*/
/* Fin Detalle ****************************************************** */
/* Detalle ********************************************************** */
/* Detalle *************************************************** */
.detalle img {
  width: 100%;
}
.detalle h1 {
  color: var(--color-oscuro);
  padding: 0.6rem 0 1.2rem;
  font-size: 2rem;
  line-height: 2.2rem;
  font-weight: lighter;
}
.detalle p {
  font-size: 1rem;
  line-height: 1.6rem;
}
.detalle p.fecha,
.detalle p.guia {
  padding: 0.2rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.2rem;
}
.detalle p.fecha {
  color: var(--color-medio);
  color: #143342;
}
.detalle div[id^="PrimerParrafo"] h2 {
  font-size: 1rem;
  line-height: 1.6rem;
  font-weight: 700;
}
.detalle li.list-group-item b {
  display: block;
}
.detalle .listIconObjMM {
  border-radius: 100%;
}
.detalle .listIconObjMM.listIconObjMM-active {
  background-color: var(--color-oscuro);
  color: white;
  padding: 6px;
}
.detalle .listObjMM {
  position: relative;
  color: white;
}
.detalle .listObjMM > div.listObjMM-content {
  background: var(--color-medio);
  border-bottom: groove 2px var(--color-claro);
  border-left: 16px solid var(--color-medio);
  min-height: 58px;
}
.detalle .listObjMM .arrow-left-position,
.detalle .listObjMM .arrow-right-position {
  display: none;
}
.detalle .listObjMM .listObjMM-format {
  background-color: var(--color-medio);
  color: white;
  width: auto;
  border-radius: 50% 0 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 2px 6px;
}
.detalle .listObjMM.listObjMM-active > div.listObjMM-content {
  background: var(--color-medio) !important;
  color: white;
  border-left: 16px solid var(--color-oscuro);
}
.detalle .listObjMM.listObjMM-active .arrow-left-position {
  display: block !important;
  position: absolute;
  top: 0px;
  left: 12px;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .detalle .listObjMM.listObjMM-active .arrow-left-position {
    display: none !important;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .detalle .listObjMM.listObjMM-active .arrow-left-position {
    display: block !important;
  }
}
.detalle .listObjMM.listObjMM-active .arrow-right-position {
  display: block !important;
  position: absolute;
  top: 0px;
  right: 12px;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .detalle .listObjMM.listObjMM-active .arrow-right-position {
    display: none !important;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .detalle .listObjMM.listObjMM-active .arrow-right-position {
    display: block !important;
  }
}
.detalle .listObjMM.listObjMM-active .listObjMM-format {
  background-color: var(--color-oscuro) !important;
  z-index: 9;
  right: 0;
  position: absolute;
  border-radius: 50% 0 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 6px; */
  height: 50px;
  width: 50px;
}
.detalle .listObjMM.listObjMM-active img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  opacity: 0.6;
}
.detalle .listObjMM p {
  font-size: 14px;
  line-height: 1.2rem;
}
.detalle .listObjMM img {
  outline: solid 1px white;
}
.detalle .metadata-mm,
.detalle .descarga-OBJ {
  background-color: var(--color-oscuro) !important;
  color: white;
}
.listObjMM-format {
  z-index: 9;
  right: 0;
  position: absolute;
  border-radius: 50% 0 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
}
.detalle .rtmp-items:first-of-type {
  padding-top: 20px;
  border-top: solid 1px var(--color-medio);
}
.detalle .rtmp-items:last-of-type {
  padding-bottom: 20px;
  border-bottom: none 1px var(--color-medio);
}
.detalle .hls-items:first-of-type {
  padding-top: 20px;
  border-top: solid 1px var(--color-medio);
}
.detalle .hls-items:last-of-type {
  padding-bottom: 20px;
  border-bottom: none 1px var(--color-medio);
}
.detalle h6.ia {
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 22px;
}
.detalle p.ia,
.detalle h2.ia button {
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.detalle p.ia {
  font-size: 18px;
  font-weight: 500;
}
/* Fin Detalle ****************************************************** */
/* Agenda ********************************************************** */
/* **************************************************************** */
/* Sobrescribir estilos para la AGENDA **************************** */
/* **************************************************************** */
body[data-page="PageAgenda"] .custom-checkbox .custom-control-input:checked ~ .custom-control-label,
body[data-page="PageAgenda"] .custom-radio .custom-control-input:checked ~ .custom-control-label {
  color: #7c96a2 !important;
}
body[data-page="PageAgenda"] .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before,
body[data-page="PageAgenda"] .custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #607d8b !important;
  border: solid 2px #7c96a2 !important;
}
body[data-page="PageAgenda"] .seguimiento_busqueda input {
  background-color: #fff !important;
}
body[data-page="PageAgenda"] #MenuPA {
  display: none;
}
body[data-page="PageAgenda"] .buscador {
  background-color: #607d8b !important;
}
body[data-page="PageAgenda"] .buscador input {
  /* Comento esta línea para que la cja de búsqueda quede con en el nuevo formato
    /*background-color: @color-base-agenda !important;*/
}
body[data-page="PageAgenda"] .busqueda-acciones {
  width: 120px !important;
}
body[data-page="PageAgenda"] .filtros-rapidos .nav_filters label.active:after {
  background-color: #607d8b !important;
}
body[data-page="PageAgenda"] #refinar,
body[data-page="PageAgenda"] #refinar-kk {
  border-top: solid 1px #212c31 !important;
  background-color: var(--filtrado-agenda-fondo);
}
body[data-page="PageAgenda"] #refinar h3,
body[data-page="PageAgenda"] #refinar-kk h3,
body[data-page="PageAgenda"] #refinar .cabecera,
body[data-page="PageAgenda"] #refinar-kk .cabecera,
body[data-page="PageAgenda"] #refinar .FiltradoFlecha,
body[data-page="PageAgenda"] #refinar-kk .FiltradoFlecha {
  color: white;
}
body[data-page="PageAgenda"] #refinar .custom-control-label,
body[data-page="PageAgenda"] #refinar-kk .custom-control-label {
  color: var(--filtrado-agenda-txt);
}
body[data-page="PageAgenda"] #refinar-kk div {
  color: #d5dee2 !important;
}
body[data-page="PageAgenda"] .ui-datepicker-month,
body[data-page="PageAgenda"] .ui-datepicker-year {
  color: #bbbbbb;
  border: solid 1px #607d8b !important;
}
body[data-page="PageAgenda"] .ui-state-default,
body[data-page="PageAgenda"] .ui-widget-content .ui-state-default,
body[data-page="PageAgenda"] .ui-widget-header .ui-state-default,
body[data-page="PageAgenda"] .ui-button,
body[data-page="PageAgenda"] html .ui-button.ui-state-disabled:hover,
body[data-page="PageAgenda"] html .ui-button.ui-state-disabled:active {
  border: 1px solid #212c31 !important;
  background: #212c31 !important;
  color: #99aeb8 !important;
}
body[data-page="PageAgenda"] .ui-state-active,
body[data-page="PageAgenda"] .ui-widget-content .ui-state-active,
body[data-page="PageAgenda"] .ui-widget-header .ui-state-active,
body[data-page="PageAgenda"] a.ui-button:active,
body[data-page="PageAgenda"] .ui-button:active,
body[data-page="PageAgenda"] .ui-button.ui-state-active:hover {
  border: 1px solid #607d8b !important;
}
body[data-page="PageAgenda"] .ui-datepicker-current-day.ui-state-active,
body[data-page="PageAgenda"] .ui-datepicker-today.ui-state-active {
  border: 1px solid #607d8b !important;
  background: #607d8b !important;
}
body[data-page="PageAgenda"] .ui-state-active {
  background: #607d8b !important;
  border: 1px solid #607d8b !important;
}
body[data-page="PageAgenda"] .ui-state-active a.ui-state-default {
  border: 1px solid #607d8b !important;
  color: white!important;
  background-color: transparent!important;
}
body[data-page="PageAgenda"] .ui-datepicker-current-day.ui-state-active a.ui-state-active,
body[data-page="PageAgenda"] .ui-datepicker-today.ui-state-active a.ui-state-active {
  border: 1px solid #607d8b !important;
  background: #153d52 !important;
}
body[data-page="PageAgenda"] .filtrado-wrapper .filtrado-button {
  background-color: var(--filtrado-agenda-btn);
  color: #fff;
}
body[data-page="PageAgenda"] .FiltradoFacet {
  border-bottom: solid 1px #212c31 !important;
}
body[data-page="PageAgenda"] .evento-fecha {
  background-color: #607d8b !important;
  color: white;
}
body[data-page="PageAgenda"] .eventoSinHora {
  background-color: #36474f !important;
  color: white;
}
body[data-page="PageAgenda"] .eventoSinHora .item-HT-titulo-agenda {
  color: #99aeb8;
}
body[data-page="PageAgenda"] .eventoSinHora .item-HT-guia-agenda {
  color: #7b96a3 !important;
}
body[data-page="PageAgenda"] .eventoSinHora .btn-icon {
  background: #36474f !important;
  color: white;
}
body[data-page="PageAgenda"] .eventoSinHora .btn-icon:hover {
  background: #99aeb8 !important;
}
body[data-page="PageAgenda"] .eventoSinHora .item-HT-lugar,
body[data-page="PageAgenda"] .eventoSinHora .item-HT-cobertura,
body[data-page="PageAgenda"] .eventoSinHora .item-HT-ambito {
  color: #99aeb8 !important;
}
body[data-page="PageAgenda"] .text-bluegrey {
  color: #607d8b !important;
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  body[data-page="PageAgenda"] .filtros-rapidos .nav_filters label:hover:after {
    background-color: #607d8b;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  body[data-page="PageAgenda"] .filtros-rapidos .nav_filters label:focus:after {
    background-color: #607d8b;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  body[data-page="PageAgenda"] .filtros-rapidos .nav_filters label.active:after {
    background-color: #607d8b;
  }
}
body[data-page="PageAgenda"] .seguimiento_busqueda input {
  background-color: #fff !important;
}
/* **************************************************************** */
/* Fin sobrescribir estilos para la AGENDA ************************ */
/* **************************************************************** */
/* Fin Agenda ****************************************************** */
/* Purrela ********************************************************** */
.contacto-new {
  background: url(../img/contacto/mundi_lines.png) no-repeat left center;
  background-size: contain;
}
.prueba {
  color: red;
}
.module-title {
  position: relative;
  margin-bottom: 50px;
  font-weight: 300;
  color: #5b5963;
}
.module-title span {
  font-size: 100px;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: -40px;
  z-index: 0;
  opacity: 0.05;
  font-weight: 700;
}
.item_prepago_multi {
  width: auto;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 0 12px 0 8px;
  color: white;
  height: 30px;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  margin-bottom: 10px;
  background-color: palevioletred;
}
.porencima {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 999;
  position: absolute;
  top: 0;
  bottom: 0;
  display: none;
}
.porencima span {
  font-size: 2em;
  vertical-align: middle;
  position: absolute;
  top: 20%;
  left: 10%;
  color: aliceblue;
}
.confirmwindow {
  border: none;
}
.subtitulo {
  color: #56a5cc !important;
  font-size: 0.9rem !important;
  font-weight: normal;
}
.popover {
  width: 300px;
}
@media only screen and (max-width: 529px) {
  .parallax-landing-H {
    height: 250px;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .parallax-landing-H {
    height: 340px;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .parallax-landing-H {
    height: 420px;
  }
}
/* Fin Purrela ****************************************************** */
/* **************************************************************** */
/* Footer ******************************* */
/* ------------------------------------------------ /*
  *  Pie
  /* ------------------------------------------------ */
#contacto {
  background-color: white;
}
#contacto .contacto-item div {
  padding: 0 8px;
  margin: 20px 0;
}
#contacto .contacto-item img {
  width: 100%;
}
#contacto .contacto-item h3 {
  font-size: 0.875rem;
  font-weight: bold;
  color: hsl(0, 0%, 30%);
  padding: 0 0 0 16px;
}
#contacto .contacto-item p {
  font-size: 0.75rem;
  padding: 2px 0 0 24px;
  margin: 0;
}
#mapa {
  background-color: #09181f;
}
@media only screen and (max-width: 529px) {
  #mapa .mapa-item {
    width: 90%;
    margin: auto;
    text-align: center;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  #mapa .mapa-item {
    width: 25%;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  #mapa .mapa-item {
    width: 14.28571%;
  }
}
#mapa ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#mapa ul li {
  padding: 2px 2px;
  margin: 0;
  font-size: 12px;
}
#mapa ul li b {
  font-weight: bold;
  color: white;
}
#mapa ul li a {
  color: white;
  font-size: 16px;
}
#mapa ul li ul {
  padding: 0 0 0 4px;
}
#mapa ul li ul li a {
  color: #e2e2e2;
  font-size: 12px;
  line-height: 16px;
  display: block;
  padding: 0 0 2px 4px;
}
#footer_legal ul {
  background-color: var(--menu-footer-fondo);
}
#footer_legal ul .nav-item a.nav-link {
  color: var(--menu-footer-nav-Link) !important;
}
#footer_legal ul .nav-item a.nav-link:hover {
  color: var(--menu-footer-nav-Link-hover) !important;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  #footer_legal ul .nav-item {
    text-align: center;
  }
}
#HelpBTN {
  width: auto;
  height: auto;
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: flex;
}
#HelpBTN i.fa {
  font-size: 20px !important;
}
/* Fin footer *************************** */
/* ************************************** */
/* Badge ********************************************************** */
.countea {
  position: absolute;
  display: block;
  top: 0px;
  text-align: center;
  font: italic 700 11px/16px "Segoe UI";
  height: 18px;
  right: 0;
  color: white;
  border: solid 1px;
  border-radius: 3px;
  padding: 0 4px;
  min-width: 18px;
  z-index: 0;
  -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08);
}
.countea.carro {
  background-color: #ffb22b !important;
}
.countea.favorito {
  background-color: #26c4d8;
}
.countea.avisos {
  background-color: #fa623f;
}
/* Fin Badge ****************************************************** */
/* fobot ********************************************************** */
.fobot_container {
  position: fixed;
  display: none;
  right: 20px;
  background-color: #f0f0f0;
  bottom: 50px;
  z-index: 999;
  padding: 1px;
  box-shadow: 4px 4px 16px #666;
}
.fobot_container .fobot {
  height: 460px;
  width: 318px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  .fobot_container .fobot {
    height: 520px;
    width: 600px;
  }
}
/* Fin fobot ****************************************************** */
/* introJS ********************************************************** */
.introJSclass p {
  margin: 2px 0;
  padding: 2px;
}
.introJSclass p.head {
  font-weight: bold;
}
.introJSclass p.list {
  padding: 0 0 0 4px;
}
.introJSclass p.list:first-of-type {
  margin: 6px inherit inherit;
}
.introJSclass p.list:last-of-type {
  margin: inherit inherit 6px;
}
/* Fin introJS ****************************************************** */
/* Arrow ********************************************************** */
/* Fin Arrow ****************************************************** */
/* Lectura de EFE Servicios de derecha a izquierda rtl-árabe ****** */
/*@import "less/page/rtl_arabe.less"; NO HAY ÁRABE EN EFESERVICOS AHORA */
/* Percentage_circle ******************** */
/* @import "less/less-utilities/percentage_circle.less"; SE GENERA EL GRÁFICO DE OTRA FORMA */
/* Owl carousel ************************ */
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #323232 !important;
}
.owl-carousel {
  /* Custom nav ***********************************/
  /* Fin custom nav *********************************************/
}
.owl-carousel .owl-nav {
  overflow: hidden;
  height: 0px;
}
.owl-carousel .nav-btn {
  height: 60px;
  position: absolute;
  width: 40px;
  cursor: pointer;
  top: 50% !important;
  transform: translateY(-50%);
}
.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled {
  pointer-events: none;
  opacity: 0.2;
}
.owl-carousel .prev-slide {
  left: 0px;
}
.owl-carousel .next-slide {
  right: 0px;
}
.owl-carousel .prev-slide,
.owl-carousel .next-slide {
  color: black;
  line-height: 60px;
  background-color: rgba(255, 255, 255, 0.94);
}
.owl-carousel .prev-slide:hover,
.owl-carousel .next-slide:hover {
  color: #0f4171;
}
.owl-carousel .prev-slide i:before,
.owl-carousel .next-slide i:before {
  font-size: 48px;
  font-weight: bold;
  line-height: 60px;
}
.owl-carousel-PortadaclienteBusquedas,
.owl-carousel-PortadaclienteProductos {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
  /* Custom nav ***********************************/
  /* Fin custom nav *********************************************/
}
.owl-carousel-PortadaclienteBusquedas .owl-stage-outer,
.owl-carousel-PortadaclienteProductos .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel-PortadaclienteBusquedas .owl-stage-outer .owl-stage,
.owl-carousel-PortadaclienteProductos .owl-stage-outer .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel-PortadaclienteBusquedas .owl-stage-outer .owl-stage::after,
.owl-carousel-PortadaclienteProductos .owl-stage-outer .owl-stage::after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel-PortadaclienteBusquedas .owl-wrapper,
.owl-carousel-PortadaclienteProductos .owl-wrapper,
.owl-carousel-PortadaclienteBusquedas .owl-item,
.owl-carousel-PortadaclienteProductos .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel-PortadaclienteBusquedas .owl-item,
.owl-carousel-PortadaclienteProductos .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel-PortadaclienteBusquedas .owl-item img,
.owl-carousel-PortadaclienteProductos .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel-PortadaclienteBusquedas .owl-nav,
.owl-carousel-PortadaclienteProductos .owl-nav {
  overflow: hidden;
  height: 0px;
}
.owl-carousel-PortadaclienteBusquedas .nav-btn,
.owl-carousel-PortadaclienteProductos .nav-btn {
  height: 24px;
  position: absolute;
  width: 22px;
  outline: solid 1px #d7d7d7;
  background-color: white;
  cursor: pointer;
  top: -62px !important;
}
.owl-carousel-PortadaclienteBusquedas .owl-prev.disabled,
.owl-carousel-PortadaclienteProductos .owl-prev.disabled,
.owl-carousel-PortadaclienteBusquedas .owl-next.disabled,
.owl-carousel-PortadaclienteProductos .owl-next.disabled {
  pointer-events: none;
  opacity: 0.2;
}
.owl-carousel-PortadaclienteBusquedas .prev-slide,
.owl-carousel-PortadaclienteProductos .prev-slide {
  right: 16px;
}
.owl-carousel-PortadaclienteBusquedas .next-slide,
.owl-carousel-PortadaclienteProductos .next-slide {
  right: -14px;
}
.owl-carousel-PortadaclienteBusquedas .prev-slide,
.owl-carousel-PortadaclienteProductos .prev-slide,
.owl-carousel-PortadaclienteBusquedas .next-slide,
.owl-carousel-PortadaclienteProductos .next-slide {
  color: black;
  line-height: 16px;
}
.owl-carousel-PortadaclienteBusquedas .prev-slide:hover,
.owl-carousel-PortadaclienteProductos .prev-slide:hover,
.owl-carousel-PortadaclienteBusquedas .next-slide:hover,
.owl-carousel-PortadaclienteProductos .next-slide:hover {
  color: #0f4171;
}
.owl-carousel-PortadaclienteBusquedas .prev-slide i:before,
.owl-carousel-PortadaclienteProductos .prev-slide i:before,
.owl-carousel-PortadaclienteBusquedas .next-slide i:before,
.owl-carousel-PortadaclienteProductos .next-slide i:before {
  font-size: 16px;
  line-height: 24px;
}
.owl-carousel-PortadaclienteBusquedas .owl-nav .disabled,
.owl-carousel-PortadaclienteProductos .owl-nav .disabled,
.owl-carousel-PortadaclienteBusquedas .owl-dots .disabled,
.owl-carousel-PortadaclienteProductos .owl-dots .disabled {
  display: none;
}
.owl-carousel-PortadaclienteBusquedas .owl-nav .owl-prev,
.owl-carousel-PortadaclienteProductos .owl-nav .owl-prev,
.owl-carousel-PortadaclienteBusquedas .owl-dots .owl-prev,
.owl-carousel-PortadaclienteProductos .owl-dots .owl-prev,
.owl-carousel-PortadaclienteBusquedas .owl-nav .owl-next,
.owl-carousel-PortadaclienteProductos .owl-nav .owl-next,
.owl-carousel-PortadaclienteBusquedas .owl-dots .owl-next,
.owl-carousel-PortadaclienteProductos .owl-dots .owl-next {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel-PortadaclienteBusquedas .owl-nav button.owl-prev,
.owl-carousel-PortadaclienteProductos .owl-nav button.owl-prev,
.owl-carousel-PortadaclienteBusquedas .owl-dots button.owl-prev,
.owl-carousel-PortadaclienteProductos .owl-dots button.owl-prev,
.owl-carousel-PortadaclienteBusquedas .owl-nav .owl-nav button.owl-next,
.owl-carousel-PortadaclienteProductos .owl-nav .owl-nav button.owl-next,
.owl-carousel-PortadaclienteBusquedas .owl-dots .owl-nav button.owl-next,
.owl-carousel-PortadaclienteProductos .owl-dots .owl-nav button.owl-next {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel-PortadaclienteBusquedas .owl-dot,
.owl-carousel-PortadaclienteProductos .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel-PortadaclienteBusquedas button.owl-dot,
.owl-carousel-PortadaclienteProductos button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel-PortadaclienteBusquedas.owl-loaded,
.owl-carousel-PortadaclienteProductos.owl-loaded {
  display: block;
}
.owl-carousel-PortadaclienteBusquedas.owl-loading,
.owl-carousel-PortadaclienteProductos.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel-PortadaclienteBusquedas.owl-hidden,
.owl-carousel-PortadaclienteProductos.owl-hidden {
  opacity: 0;
}
.owl-carousel-PortadaclienteBusquedas.owl-refresh .owl-item,
.owl-carousel-PortadaclienteProductos.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel-PortadaclienteBusquedas.owl-drag .owl-item,
.owl-carousel-PortadaclienteProductos.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel-PortadaclienteBusquedas.owl-grab,
.owl-carousel-PortadaclienteProductos.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel-PortadaclienteBusquedas.owl-rtl,
.owl-carousel-PortadaclienteProductos.owl-rtl {
  direction: rtl;
}
.owl-carousel-PortadaclienteBusquedas.owl-rtl .owl-item,
.owl-carousel-PortadaclienteProductos.owl-rtl .owl-item {
  float: right;
}
/* No Js */
.no-js .owl-carousel-PortadaclienteBusquedas,
.no-js .owl-carousel-PortadaclienteProductos {
  display: block;
}
/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel-PortadaclienteBusquedas .animated,
.owl-carousel-PortadaclienteProductos .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel-PortadaclienteBusquedas .owl-animated-in,
.owl-carousel-PortadaclienteProductos .owl-animated-in {
  z-index: 0;
}
.owl-carousel-PortadaclienteBusquedas .owl-animated-out,
.owl-carousel-PortadaclienteProductos .owl-animated-out {
  z-index: 1;
}
.owl-carousel-PortadaclienteBusquedas .fadeOut,
.owl-carousel-PortadaclienteProductos .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}
/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel-PortadaclienteBusquedas .owl-item,
.owl-carousel-PortadaclienteProductos .owl-item {
  /**
         This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
         calculation of the height of the owl-item that breaks page layouts
     */
}
.owl-carousel-PortadaclienteBusquedas .owl-item .owl-lazy,
.owl-carousel-PortadaclienteProductos .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel-PortadaclienteBusquedas .owl-item .owl-lazy[src^=""],
.owl-carousel-PortadaclienteProductos .owl-item .owl-lazy[src^=""],
.owl-carousel-PortadaclienteBusquedas .owl-item .owl-carousel-Portadacliente .owl-item .owl-lazy:not([src]),
.owl-carousel-PortadaclienteProductos .owl-item .owl-carousel-Portadacliente .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel-PortadaclienteBusquedas .owl-item img.owl-lazy,
.owl-carousel-PortadaclienteProductos .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel-PortadaclienteBusquedas .owl-video-wrapper,
.owl-carousel-PortadaclienteProductos .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel-PortadaclienteBusquedas .owl-video-play-icon,
.owl-carousel-PortadaclienteProductos .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel-PortadaclienteBusquedas .owl-video-play-icon:hover,
.owl-carousel-PortadaclienteProductos .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-carousel-PortadaclienteBusquedas .owl-video-playing .owl-video-tn,
.owl-carousel-PortadaclienteProductos .owl-video-playing .owl-video-tn,
.owl-carousel-PortadaclienteBusquedas .owl-video-playing .owl-video-play-icon,
.owl-carousel-PortadaclienteProductos .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel-PortadaclienteBusquedas .owl-video-tn,
.owl-carousel-PortadaclienteProductos .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel-PortadaclienteBusquedas .owl-video-frame,
.owl-carousel-PortadaclienteProductos .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
/** * Owl Carousel v2.3.4 * Copyright 2013-2018 David Deutsch * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE */
.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}
.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0!important;
  font: inherit;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
/** * Owl Carousel v2.3.4 * Copyright 2013-2018 David Deutsch * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE */
.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav {
  margin-top: 10px;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}
/* Fin Owl carousel ******************** */
#dropdownWrapper {
  white-space: nowrap;
}
.scroll-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}
.scroll-container {
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  flex: 1;
  padding: 10px 0;
}
/* Item basado en su contenido */
.item {
  display: inline-block;
  background-color: #ccc;
  margin: 0 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  white-space: nowrap;
}
/* Botones de scroll */
.scroll-btn {
  background-color: #444;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  z-index: 2;
  user-select: none;
}
/* Responsive */
@media (max-width: 768px) {
  .item {
    padding: 8px 16px;
    font-size: 14px;
  }
}
