

:root {

    /* Colors: */
    --unnamed-color-666666: #666666;
    --unnamed-color-707070: #707070;
    --unnamed-color-e74424: #E74424;
    --unnamed-color-999999: #999999;
    --unnamed-color-dddddd: #DDDDDD;
    --unnamed-color-cccccc: #CCCCCC;
    --unnamed-color-333333: #333333;
    --unnamed-color-ffffff: #FFFFFF;
    }

/* GENERAL */
body, html{
    font-size: 16px;
    background-color:#FFF;
    font-family: 'Source Sans Pro', sans-serif;
}

a{
    color: black;
    /* font-weight: 600; */
    color: #E74424;
    outline: none;
    text-decoration: none;
}

a:hover{
    color: #E74424;
    cursor: pointer;
    text-decoration: none;
}

ol{
    margin-left: 20px;
}

ul {
    margin-left: 20px;
}

/* li::before{
    color: #0D5084;
} */

.container li{
    margin: 10px 0;
}

.container ul li{
    /* list-style: disc; */
}

h2{
    text-align: left;
    font: normal normal normal 2rem/2.875rem 'Source Sans Pro';
    letter-spacing: 0px;
    color: #333333;
    text-transform: uppercase;
}
h2.titulo-seccion {
    padding-top: 5.6rem;
    margin-bottom: 2rem;
}

h2.titulo-resultados,
h2.titulo-resultados-extra {
    text-transform: none;
    padding-top: 1rem;
    margin-bottom: 0;
}

h3{
    text-align: left;
    font: normal normal bold 1.25rem/1.75rem 'Source Sans Pro';
    letter-spacing: 0px;
    color: #333333;
    text-transform: uppercase;
}

h4{
    color: #0D5084;
    text-transform: uppercase;
    margin-top: 25px;
}

@media (min-width: 1440px) {
    .container {
        max-width: 1240px !important;
    }
}
@media (min-width: 1640px) {
    .container {
        max-width: 1440px !important;
    }
}
@media (min-width: 1840px) {
    .container {
        max-width: 1640px !important;
    }
}
@media (min-width: 2040px) {
    .container {
        max-width: 1840px  !important;
    }
}




header {
    background-color: #fff; 
      height:216px;
    color: black;
    text-align: center; /* Centered text */
    position: fixed; /* Fixed position - sit on top of the page */
    top: 0;
    width: 100%; /* Full width */
    transition: 0.2s; /* Add a transition effect (when scrolling - and font size is decreased) */
    z-index: 99;
    box-shadow: rgba(255, 255, 255, 0.6) 0px 2px, rgba(255, 255, 255, 0.4) 0px 4px, rgba(255, 255, 255, 0.2) 0px 6px, rgba(255, 255, 255, 0.1) 0px 8px, rgba(255, 255, 255, 0.05) 0px 10px;
  }

header.scrolled{
    height:158px;
}

header .logo{
    display: inline-block;
    margin-top: 20px;
    width: 100%;
    max-width: 320px;
    float: left;
}
header .logo img{
    display: inline-block;
    width: 100%;
}

main{
    padding-top: 216px;
}

.bloque-contenido {
    padding-top: 15rem;
}

a.ico-header{
    color: var(--unnamed-color-333333);
    text-align: right;
    font: normal normal 300 1.5rem/1.8rem 'Font Awesome 5 Pro';
    letter-spacing: 0px;
    color: #333333;
    opacity: 1;
    margin-top: 2.5rem;
    -webkit-transition: margin 0.4s linear;
       -moz-transition: margin 0.4s linear;
        -ms-transition: margin 0.4s linear;
         -o-transition: margin 0.4s linear;
            transition: margin 0.4s linear;
    display: inline-block;
}
a.ico-header:hover{

    color: #333333;
}
a.ico-header:last-child {
    padding-left:24px;
}
a.ico-header svg {
    width: 1.5rem!important;
    height: 1.5rem!important;
}
header .content-lang{
    position: relative;
    display: inline-block;
    margin: 0;
    /* width: 4rem; */
    text-align: right;
}
header .content-lang:hover>ul{
    display: block;
}
header .content-lang .dropdown-menu-lang{
    list-style: none;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border: 1px solid #CCCCCC;
    border-radius: 1rem;
    padding:0.5rem 1rem;
    margin: 0;
    right: -1rem;
    left:inherit;
    min-width: 2rem!important;
}
header .content-lang .dropdown-menu-lang li {
    /* width: 2rem; */
    list-style: none;
    text-align: center;
}

header.scrolled a.ico-header{
    margin-top: 69px;

    -webkit-transition: margin 0.4s linear;
       -moz-transition: margin 0.4s linear;
        -ms-transition: margin 0.4s linear;
         -o-transition: margin 0.4s linear;
            transition: margin 0.4s linear;
}

header nav{
    color: var(--unnamed-color-333333);
    text-align: center;
    font: normal normal normal 1rem/1.375rem 'Source Sans Pro';
    letter-spacing: 0.8px;
    color: #333333;
    height:90px;
    -webkit-transition: height 0.4s linear;
       -moz-transition: height 0.4s linear;
        -ms-transition: height 0.4s linear;
         -o-transition: height 0.4s linear;
            transition: height 0.4s linear;
}
header.scrolled nav{
    height:0;
    -webkit-transition: height 0.4s linear;
       -moz-transition: height 0.4s linear;
        -ms-transition: height 0.4s linear;
         -o-transition: height 0.4s linear;
            transition: height 0.4s linear;
}
header nav a{
    padding: 60px 4px 4px 4px;
    border-bottom: 3px solid #fff;
    color:#333333;
}
header nav a:hover,
header nav a.selected {
    border-bottom: 3px solid #E74424;
    color: #333333;
}

header .buscador{
    position: relative;
    height: 70px;
    /* UI Properties */
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    border: 1px solid var(--unnamed-color-333333);
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #333333;
    border-radius: 50px;
    margin-top: 20px;
    padding: 0 35px;
    -webkit-transition: margin 0.4s linear;
       -moz-transition: margin 0.4s linear;
        -ms-transition: margin 0.4s linear;
         -o-transition: margin 0.4s linear;
            transition: margin 0.4s linear;
}
header.scrolled .buscador{
    margin-top: 52px;
    height: 3.625rem;
    -webkit-transition: margin 0.4s linear;
       -moz-transition: margin 0.4s linear;
        -ms-transition: margin 0.4s linear;
         -o-transition: margin 0.4s linear;
            transition: margin 0.4s linear;
}
header.scrolled .column{
    height: 2.2rem;
}
header.scrolled .md-form label.form-label{
    display: none;

}
header.scrolled.donde-sin-valor #donde,
header.scrolled.que-sin-valor #que,
header.scrolled.donde-bodega-sin-valor #donde-bodega,
header.scrolled.donde-zona-sin-valor #donde-zona,
header.scrolled.cuando-sin-valor #cuando {
    display: none;
}
header.scrolled.donde-sin-valor .md-form label.form-label.label-donde,
header.scrolled.que-sin-valor .md-form label.form-label.label-que,
header.scrolled.donde-bodega-sin-valor .md-form label.form-label.label-donde-bodega,
header.scrolled.donde-zona-sin-valor .md-form label.form-label.label-donde-zona,
header.scrolled.cuando-sin-valor .md-form label.form-label.label-cuando {
    text-align: center;
    display: inline-block;
    width: 100%;
    font: normal normal normal 1.25rem/2.25rem 'Source Sans Pro';
}
header.scrolled .md-form input[type="text"]:not(.browser-default){
padding-top: 0;
}

header .btn-buscador{
    background: #E74424 0% 0% no-repeat padding-box;
    border-radius: 50%;
    color:#fff;
    position: absolute;
    top: 7px;
    right:8px;
    line-height: 55px;
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
}
header.scrolled .btn-buscador{
    top: 0.3rem;
    right: 0.4rem;
    line-height: 2.8rem;
    width: 2.8rem;
    height: 2.8rem;
}

header .md-form {
    position: relative;
}
header .md-form input[type="text"]:not(.browser-default) {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    background-color: transparent;
    border: 0;
    /* border-bottom: 1px solid #ced4da; */
    border-radius: 0;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    padding-top: 20px;
    height:30px;
    font: normal normal bold 1.25rem/1.75rem 'Source Sans Pro';
    letter-spacing: 0px;
    color: #333333;
    /* -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out; */
}
/* .md-form input[type="text"]:not(.browser-default):focus:not([readonly]){
    border-bottom: 1px solid #4285f4;
    -webkit-box-shadow: 0 1px 0 0 #4285f4;
    box-shadow: 0 1px 0 0 #4285f4;
} */
header .md-form input[type="text"]:not(.browser-default):focus:not([readonly])+label.form-label,
.label-focus {
   
    -webkit-transform: translateY(-1px) scale(0.9)!important;
    transform: translateY(-1px) scale(0.9)!important;
    font: normal normal normal 0.875rem/1.5rem Source Sans Pro!important;
    letter-spacing: 0px!important;
    color: #E74424!important;
}

header .md-form>label.form-label {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
header .md-form label.form-label {
    font: normal normal normal 1.25rem/1.75rem 'Source Sans Pro';
    letter-spacing: 0px;
    color: #333333;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1rem;
    cursor: text;
    -webkit-transition: color .1s ease-out,-webkit-transform .1s ease-out,font-size .1s ease-out;
    transition: color .1s ease-out,-webkit-transform .1s ease-out,font-size .1s ease-out;
    transition: transform .1s ease-out,color .1s ease-out,font-size .1s ease-out;
    transition: transform .1s ease-out,color .1s ease-out,-webkit-transform .1s ease-out,font-size .1s ease-out;
    -webkit-transform: translateY(12px);
    transform: translateY(0px);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
}
header .md-form input[type="text"]:not(.browser-default)+label.form-label::after {
    position: absolute;
    top: 65px;
    display: block;
    content: "";
    opacity: 0;
    -webkit-transition: .1s opacity ease-out,0.1s color ease-out;
    transition: .1s opacity ease-out,0.1s color ease-out;
}
header .md-form:focus+label.form-label {

}
header input::placeholder {
    font: normal normal normal 0.875rem/1.25rem 'Source Sans Pro';
    letter-spacing: 0px;
    color: #8B8C88!important;
}
header input:focus::placeholder {
    color: transparent!important;
}
header .column{
    margin-top: 10px;
    height: 48px;
}
header .col-border{
    border-left: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
}
header .dropdown-menu {
    margin-top: 0;
}
header .dropdown-menu-que {
    list-style: none;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border: 1px solid #CCCCCC;
    border-radius: 25px;
    padding:1.5rem 2rem;
    width: 115%;
    margin-left: -0.5rem;
    top: 4.5rem;
    min-width: 20rem;
}
header .dropdown-menu-que li{
    display: inline-block;
    width: 48%;
}
header .dropdown-menu-que li.li-separador {
    width: 100%;
    margin: 0;
} 
header .dropdown-menu-que li.li-separador hr {
    margin: 0.5rem 0;
}
header .dropdown-menu-que input[type=checkbox],
header .dropdown-menu-que input[type=radio]{
    display: inline-block;
    margin-right: 0.5rem;
    cursor: pointer;
}
header .btn-clear-filter {
    position: absolute;
    bottom: 0.2rem;
    right: -0.2rem;
    color: #333333;
    padding-left:0.2rem;
    background:#fff;
}
header .btn-clear-donde-bodega,
header .btn-clear-donde-zona {
    right: 3.5rem;
}
header.scrolled .btn-clear-filter{
}

.dropdown-menu-donde,
.dropdown-menu-donde-bodega,
.dropdown-menu-donde-zona {
    text-align: left;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border: 1px solid #CCCCCC;
    border-radius: 25px;
    padding:1.5rem 2rem;
    width: 32rem;
    left: -2.5rem!important;
    top: 4.7rem!important;
    list-style: none;
    z-index: 99;
}
.dropdown-menu-donde li,
.dropdown-menu-donde-bodega li,
.dropdown-menu-donde-zona li{
    list-style: none;
}
.dropdown-menu-donde li p,
.dropdown-menu-donde-bodega li p,
.dropdown-menu-donde-zona li p{
    text-align: left;
    font: normal normal bold 1rem/1.375rem 'Source Sans Pro';
    letter-spacing: 0px;
    color: #333333;
    text-transform: uppercase;
}
.dropdown-menu-donde li span,
.dropdown-menu-donde-bodega li span,
.dropdown-menu-donde-zona li span {
    cursor:pointer;
}
.twitter-typeahead .tt-menu{
    text-align: left;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border: 1px solid #CCCCCC;
    border-radius: 25px;
    padding:1.5rem 2rem;
    width: 32rem;
    left: -2.5rem!important;
    top: 4.7rem!important;
    z-index: 999;
}
.twitter-typeahead .tt-menu .tt-suggestion {
    cursor: pointer;
    border-bottom: 1px solid #DDDDDD;
    padding:0.5rem 0;
}
.twitter-typeahead .tt-menu .tt-suggestion:last-child{
    border:none;
}
.twitter-typeahead .tt-menu .tt-suggestion::before,
.dropdown-menu-donde li span:before,
.dropdown-menu-donde-bodega li span:before,
.dropdown-menu-donde-zona li span:before,
.ver-todos::before {
    content:'\f3c5';
    background: #DDDDDD 0% 0% no-repeat padding-box;
    font: normal normal 900 1rem/1.75rem 'Font Awesome 5 Pro';
    border-radius: 50%;
    width: 1.75rem;
    height: 1.75rem;
    display: inline-block;
    margin-right: 0.3rem;
    text-align: center;
}
.dropdown-menu-donde li span.cerca:before,
.dropdown-menu-donde-bodega li span.cerca:before,
.dropdown-menu-donde-zona li span.cerca:before {
    content:'\f124';
}
.dropdown-menu-donde hr,
.dropdown-menu-donde-bodega hr,
.dropdown-menu-donde-zona hr{
    border-top:1px solid #999999;
}
.ver-todos::before{
    content:'\f002';
}
.ver-todos{
    cursor: pointer;
    padding-top: 0.5rem;
    border-top:1px solid #999999;
}
/* FIN CABECERA */

/* CATEGORIA */
.bloque-categorias {
    padding-top: 255px;
    /*padding-bottom: 90px;*/
}
.btn-categoria {
    background: #fff 0% 0% no-repeat padding-box;
    border-radius: 10px;
    text-align: center;
    width: 8.375rem;
    height: 9.375rem;
    padding-top: 1rem;
    display: inline-block;
    vertical-align: middle;
    align-items: center;
    margin: 0.5rem  0.5rem;
}
.btn-categoria svg{
    font: normal normal 300 12rem/5.375rem 'Font Awesome 5 Pro';
    letter-spacing: 0px;
    color: #FFFFFF;
    height: 4.5rem;
    width: auto!important;
}
.btn-categoria img{
    height: 4.5rem;
    width: auto!important;
}
.btn-categoria span{
    font: normal normal 600 1.2rem/2.18rem 'Source Sans Pro';
    letter-spacing: 0px;
    color: #000;
    line-height: 1;
    width: 100%;
    display: inline-block;
    text-transform: lowercase;
    margin-top: 10px;
}
.btn-categoria span span{
    color:#E74424;
    width: auto;
    margin: 0;
}
.daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: #E74424!important;
    border-color: transparent;
    color: #fff;
}
/* FIN CATEGORIA */



/* carousel */

.carousel-home {
    width: 100%;
  }
  .carousel-indicators{
      display: none;
  }
  
  .carousel-home .slide-box {
    display: flex;
    /* justify-content: space-between; */
  }
  
  @media  (max-width: 767.98px) {
    .carousel-home .slide-box .item-slide {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
  }
  
  @media (min-width: 768px) and (max-width: 991.98px) {
    /* .carousel-home .slide-box .item-slide {
      -ms-flex: 0 0 33.3333%;
      flex: 0 0 33.3333%;
      max-width: 33.3333%;
    } */
    .carousel-home .slide-box .item-slide {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
  }
  
  @media (min-width: 992px)
  {
    .carousel-home .slide-box .item-slide {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }
  }

  .carousel-home .slide-box .item-slide {
      padding-right: 1rem;
  }
  .item-actividad {
      padding:2.5rem 0;
  }
  .item-bodega {
      padding:2.5rem 0 0;
  }
  .carousel-home .slide-box .item-slide img,
  .item-actividad img,
  .item-bodega img {
      border-radius: 20px;
      width: 100%;
      max-height: 275px;
  }
  .carousel-home .slide-box .item-slide h3,
  .item-actividad h3 {
    text-align: left;
    font: normal normal bold 1.25rem/1.75rem 'Source Sans Pro';
    letter-spacing: 0px;
    color: #333333;
    margin-top: 1.5rem;
    text-transform: uppercase;
  }
  .carousel-home .slide-box .item-slide .link-item,
  .item-actividad .link-item {
      position: relative;
      display: inline-block;
      width: 100%;
  }
  .carousel-home .slide-box .item-slide .link-item.link-img-actividad,
  .item-actividad .link-item-img {
      padding-top: 69%;
  }
  .carousel-home .slide-box .item-slide .link-item.link-img-actividad img,
  .item-actividad .link-item-img img,
  .item-actividad img {
      position: absolute;
      top:0;
      bottom: 0;
      left: 0;
      right: 0;
      width: 100%;
      height: 100%;
  }
  .carousel-home .slide-box .item-slide .puntuacion,
  .item-actividad .puntuacion{
    background: #333333BE 0% 0% no-repeat padding-box;
    border-radius: 20px 0px;
    position: absolute;
    text-align: right;
    bottom: 0;
    right: 0;
    margin: 0;
    padding:0.2rem 0.6rem;
  }
  .carousel-home .slide-box .item-slide .puntuacion span,
  .item-actividad .puntuacion span {
    text-align: right;
    font: normal normal bold 1rem/1.375rem 'Source Sans Pro';
    letter-spacing: 0px;
    color: #FFFFFF;
  }
  .carousel-home .slide-box .item-slide .puntuacion span.votos,
  .item-actividad .puntuacion span.votos {
    text-align: right;
    font: normal normal normal 1rem/1.375rem 'Source Sans Pro';
    letter-spacing: 0px;
    color: #FFFFFF;
  }
  .carousel-home .slide-box .item-slide p.bodega-dorigen,
  .item-actividad p.bodega-dorigen,
  p.bodega-dorigen{
    font: normal normal normal 1rem/1.375rem 'Source Sans Pro';
    letter-spacing: 0px;
    color: #E74424;
  }
  .carousel-home .slide-box .item-slide p.bodega-dorigen .separador,
  .item-actividad p.bodega-dorigen .separador,
  p.bodega-dorigen .separador {
      border-left:1px solid #333333;
      margin-left: 2px;
      height: 1rem;
      line-height: 1rem;
  }
  .carousel-home .slide-box .item-slide p.direccion,
  .item-actividad p.direccion{
    color: #333333;
    font: normal normal normal 1rem/1.375rem 'Source Sans Pro';
    letter-spacing: 0px;
  }
  .carousel-home .slide-box .item-slide p.direccion svg,
  .item-actividad p.direccion svg {
      margin-right: 5px;
  }
  .carousel-home .slide-box .item-slide p.horario,
  .item-actividad p.horario{
    font: normal normal normal 1rem/1.375rem 'Source Sans Pro';
    color: #333333;
  }
  .carousel-home .slide-box .item-slide p.horario svg,
  .item-actividad p.horario svg {
      margin-right: 5px;
  }
  .carousel-home .slide-box .item-slide p.precio,
  .item-actividad p.precio{
    font: normal normal normal 1.5rem/2rem 'Source Sans Pro';
    letter-spacing: 0px;
    color: #333333;
  }
  
  .carousel-home .carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: .5rem;

  }
  .carousel-home .carousel-control .ico svg {
    width: 1.25rem;
    height: 1.5rem;
  }
  /* .carousel-home .carousel-control .ico:before{

    font: normal normal 300 12rem/5.375rem 'Font Awesome 5 Pro';
    content: '\f105';
  } */
  .carousel-home .carousel-control .ico {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border: 1px solid #DDDDDD;
    width: 55px;
    height: 55px;
    line-height: 4rem;
    border-radius: 50%;
    color: #333333;
    margin-top: 8rem;
  }
  .carousel-home .carousel-control-next, 
  .carousel-home .carousel-control-prev {
      width: auto;
      opacity: 1!important;
      align-items: unset;
  }
  .carousel-home .carousel-control-next{
      right: -20px;
  }
  .carousel-home .carousel-control-prev{
      left: -20px;
  }

  .item-slide.activas .link-item .content-activas .bg-img{
    position: absolute;
    top: -7px;
    left: 12px;
    height: 8px;
    background: transparent;
  }
  .carousel-home .item-slide .content-activas,
  .item-bodega .content-activas{
      border:6px solid #E74424;
      border-radius: 20px;
      width: 100%;
      height: 275px;
      text-align: center;
      align-items: center;
      vertical-align: middle;
      position: relative;
  }
  .carousel-home .item-slide .content-img,
  .item-bodega .content-img{
      position: absolute;
      top:2rem;
      height: 100px;
      vertical-align: middle;
      align-items: center;
      width: 100%;
  }
  .carousel-home .item-slide .content-activas img,
  .item-bodega .content-activas img{
      display: inline-block;
      max-height: 100px;
      width: auto;
  }
  .carousel-home .item-slide .content-activas h3,
  .item-bodega .content-activas h3{
    text-align: center;
    font: normal normal bold 1.875rem/2.25rem 'Source Sans Pro';
    letter-spacing: 0px;
    color: #E74424;
    position: absolute;
    bottom:4.5rem;
    left: 0;
    right: 0;
  }
  .carousel-home .item-slide .content-activas p.activa-num-actividades,
  .item-bodega .content-activas p.activa-num-actividades{
    text-align: center;
    font: normal normal normal 1.5rem/2.25rem 'Source Sans Pro';
    letter-spacing: 0px;
    color: #000;
    bottom:1.5rem;
    left: 0;
    right: 0;
    position: absolute;
    text-transform: lowercase;
  }

  .carousel-home .slide-box .item-slide.vinos{
    text-align: center;
  }
  .carousel-home .slide-box .item-slide.vinos h3{
    text-align: center;
    font-size: 1rem;
    margin-bottom: 0;
  }
  .carousel-home .slide-box .item-slide .content-img-vinos img{
      width: auto;
  }

/* fin carousel */

/* dorigen detalle */
.variedades p{
    margin-bottom: 2rem;
}
#accordionVariedades {
    border-bottom:1px solid #ddd;
}
#accordionVariedades .card {
    border:none;
    border-radius: 0;
    /*border-top:1px solid #ddd;*/
}
#accordionVariedades h5 {
    border-top:1px solid #ddd;
    padding-left:.5rem;
    font: normal normal normal 1rem/1.375rem 'Source Sans Pro';
}
#accordionVariedades h5 button {
    box-shadow: none;
    color: #333333;
    text-transform: uppercase;
    text-decoration: none;
}
#accordionVariedades h5 button:after {
    content: "\f106";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 400;
    float: right;
    color: #333333;
}
#accordionVariedades h5 button.collapsed:after {
    content: "\f107";
}
#accordionVariedades .card-body {
    padding-top: .5rem;
}
/* fin dorigen detalle */

/* novedades */
.bloque-novedades .novedad{
    padding-top: 100%;
    position: relative;
}
.bloque-novedades a {
    position: absolute;
    display: inline-block;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
}
.bloque-novedades img{
    width: 100%;
    height: 100%;
    display: inline-block;
}
.bloque-novedades h3{
    position: absolute;
    bottom:4.5rem;
    left:0;
    right:0;
    text-align: left;
    font: normal normal bold 2.25rem/3.188rem 'Source Sans Pro';
    letter-spacing: 0px;
    color: #FFFFFF;
    padding: 0 2.8rem;
    text-transform: none;
}
.bloque-novedades p{
    position: absolute;
    left:0;
    right:0;
    text-align: left;
    padding: 0 2.8rem;
    margin:0;
    bottom:3.6rem;
    font: normal normal normal 1rem/1.375rem 'Source Sans Pro';
    letter-spacing: 0px;
    color: #FFFFFF;
}
.bloque-novedades p.dorigen {
    bottom:2.2rem;
}
.img-red{
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    background: #E74424 0% 0% no-repeat padding-box;
    mix-blend-mode: multiply;
}
/* fin novedades */



/* resultados ACTIVIDAD */

.bloque-filtros {
    padding-top: 255px;
    /*padding-bottom: 90px;*/
}

.btn-filtros {
    border: 1px solid #333333;
    border-radius: 100px;
    height: 3.125rem;
    width: 13.5rem;
    line-height: 3.125rem;
    padding:0 2rem;
    text-align: left;
    font: normal normal normal 1.25rem/1.75rem 'Source Sans Pro';
    letter-spacing: 0px;
    color: #333333;
    text-transform: uppercase;
    background-color: #fff;
}
.btn-filtros svg {

    display: inline-block;
    float: right;
    height: 1.6rem;
}
.btn-filtros.btn-precio svg {
    height: 1.6rem;
    width: 0.7rem;
}
.btn-filtros.btn-distancia {
    padding:0 1.5rem;
    margin-left: 1rem;
}
.btn-filtros.btn-distancia svg {
    height: 1.7rem;
    width: 1rem;
}
.btn-filtros.btn-ordenar {
    padding:0 1.5rem;
    margin-left: 1rem;
}
.btn-filtros.btn-ordenar svg {
    height: 1.8rem;
    width: 1.8rem;
}
.dropdown-menu-filtros{
    left: inherit;
    top:3.5rem;
    width: 13.5rem;
    text-align: left;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border: 1px solid #CCCCCC;
    border-radius: 25px;
    padding:1rem 2rem;
}
.dropdown-menu-filtrar {
    right: 14rem;
}
.dropdown-menu-precio {
    right: 29.5rem;
    width: 18rem;
    padding:2.5rem 2rem 1.5rem;
}
.dropdown-menu-precio li,
.dropdown-menu-distancia li {
    position: relative;
}
.dropdown-menu-precio li span.label-range,
.dropdown-menu-distancia li span.label-range  {
    position: absolute;
    top: -1.2rem;
}
.dropdown-menu-precio li span.label-range:last-child,
.dropdown-menu-distancia li span.label-range:last-child {
    right:0;
}
.dropdown-menu-precio li input.custom-range,
.dropdown-menu-distancia li input.custom-range {
    width: 100%;
    cursor: pointer;
}
.dropdown-menu-precio li input#filtro-precio,
.dropdown-menu-distancia li input#filtro-distancia{
    float: right;
}
.dropdown-menu-precio li button,
.dropdown-menu-distancia li button {
    border-radius: 50px;
    color:#fff;
    background-color: #E74424;
    border:none;
    box-shadow: none;
    float: right;
    padding:0.5rem 1.5rem;
    margin-top: 1rem;
}
.dropdown-menu-distancia {
    right: 14.5rem;
    width: 18rem;
    padding:2.5rem 2rem 1.5rem;
}

.dropdown-menu-ordenar {
    right: 0;
}

.custom-range::-webkit-slider-thumb {
    background: #E74424;
  }
  
  .custom-range::-moz-range-thumb {
    background: #E74424;
  }
  .custom-range::-moz-range-thumb:active {
    background: #E74424;
  }
  
  .custom-range::-ms-thumb {
    background: #E74424;
  }
  .custom-range:focus::-ms-thumb{
    background: #E74424;
  }
  .custom-range:focus::-moz-range-track{
    background: #E74424;
  }
  -webkit-slider-thumb:active {
    background-color: #E74424;
}
-webkit-slider-thumb,
.custom-range:focus::-webkit-slider-thumb, 
.custom-range:focus::-moz-range-thumb,
.custom-range:focus::-ms-thumb {
    box-shadow: #E74424;
}
.custom-range:focus {
  outline: 0;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(253, 13, 33, 0.25);
  background: #E74424;
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(253, 13, 33, 0.25);
  background: #E74424;
}
.custom-range::-moz-focus-outer {
  border: 0;
}
/* FIN resultados ACTIVIDAD */





/* ACTIVIDAD */
.custom-breadcrumb {
    font: normal normal normal 1rem/2.875rem 'Source Sans Pro';
    background: #fff;
}
    .custom-breadcrumb a{
        letter-spacing: 0px;
        color: #333333;
        cursor: pointer;
        display: inline-block;
    }
    .custom-breadcrumb a:hover{
        color: #E74424;
    }
    .custom-breadcrumb span{
        color: #999999;
        display: inline-block;
    }
    .custom-breadcrumb svg{
        color: #333333;
        display: inline-block;
        margin:0 0.5rem;
    }
.tipo-item {

    font: normal normal bold 1.5rem/2.875rem 'Source Sans Pro';
    color: #E74424;
    text-transform: uppercase;
}
h1.titulo-detalle {
    font: normal normal bold 2rem/2.875rem 'Source Sans Pro';
    color: #333333;
    text-transform: uppercase;
}
.bloque-contenido p.bodega-dorigen .separador{
    border-color: #E74424;
}
.img-bodega-actividad {
    float: right;
    display: inline-block;
    /* width: 12.5rem; */
    width: auto;
    max-width: 100%;
    max-height: 5.5rem;
}

.bloque-contenido .bloque-descripcion {

    margin-top: 2rem;
}
.bloque-contenido .bloque-descripcion h2{
    font: normal normal normal 1.5rem/2.875rem 'Source Sans Pro';
    color: #333333;
    text-transform: uppercase;
    margin: 1rem 0;
}
.bloque-contenido .bloque-descripcion div.texto{
    font: normal normal normal 1rem/1.375rem 'Source Sans Pro';
    color: #333333;
    margin-bottom: 3rem;
}
.bloque-reserva {
    background: #f7f7f7;
    padding:2rem 2.5rem 2.5rem;
    margin-top: 1.5rem;
}
    .bloque-reserva .titulo-precio {
        font: normal normal normal 2rem/2.875rem 'Source Sans Pro';
        color: #333333;
        margin: 0;
    }
    .bloque-reserva p {
        font: normal normal normal 1rem/1.5rem 'Source Sans Pro';
        color: #333333;
    }
    .bloque-reserva p.titulo {
        font-weight: bold;
        text-transform: uppercase;
        margin: 0;
    }
    .bloque-reserva p.puntuacion {
        font-weight: bold;
        margin-bottom: 1.5rem;
    }
        .bloque-reserva p.puntuacion svg {
            color: #E74424;
        }
        .bloque-reserva p.puntuacion span.votos {
            font-weight: normal;
        }
    .bloque-reserva .btn-reservar{
        background: #E74424 0% 0% no-repeat padding-box;
        border-radius: 100px;
        font: normal normal normal 1.25rem/1.75rem 'Source Sans Pro';
        color: #FFFFFF;
        text-transform: uppercase;
        width: 100%;
        height: 3.125rem;
        line-height: 3.125rem;
        border:none;
        box-shadow: none;
        margin-top: 2rem;
    }
    .bloque-reserva .btn-reservar.disabled{
        opacity: 0.5;
        cursor: default;
    }

    .calendario {
        margin: 0 -0.6rem;
    }
    .calendario .datepicker{
        width: 100%;
        padding:0;
    }
    .calendario .datepicker table{
        width: 100%;
    }
    /* .calendario .datepicker table tr td {
        border-top: 2px solid transparent;
        border-bottom: 2px solid transparent;
    } */
    .calendario .datepicker table tr td{
        cursor: default!important;
    }
    .calendario .datepicker table tr td.activeClass{
            color: #1DAF34!important;
            cursor: pointer!important;
    }
        .calendario .datepicker table tr td.new{
            color: #333333;
            opacity: 0.25;
        }
        .calendario .datepicker table th{
            font-weight: normal;
        }
        .calendario .datepicker .next,
        .calendario .datepicker .prev {
            color:#E74424;
        }
        .calendario .datepicker table tr td.active.active,
        .calendario .datepicker table tr td.active:hover, 
        .calendario .datepicker table tr td.active:hover.active {
            background-color: transparent;
            border: none;
            color: #333;
            background-image: none;
        }
        .calendario .datepicker table tr td.activeClass.active.active,
        .calendario .datepicker table tr td.activeClass.active:hover, 
        .calendario .datepicker table tr td.activeClass.active:hover.active {
            background-color: transparent;
            outline: 2px solid #44BC57;
            border-radius: 0;
            background-image: none;
    
        }
    
    .horarios {
        margin-top: 1rem;
    }
        .horarios .btn-horario {
            background:transparent;
            border:2px solid #f7f7f7;
            box-shadow: none;
            color: #44BC57;
            margin-top: 0.2rem;
        }
        .horarios .btn-horario.selected {
            border:2px solid #44BC57;
        }
        .horarios .col-border {
            border-right: 1px solid #333;
        }
h4.titulo-recomendados{
    font: normal normal normal 2rem/2.875rem 'Source Sans Pro';
    color: #333333;
    text-transform: uppercase;
    margin: 4rem 0 2rem 0;
}
#map{
    width: 100%;
    height: 31.25rem;
}
#map.map-bodega{
    height: 23rem;;
}
.ol-marker{
    height: 42px !important;
}

.rrss-ico {
    width: 32px;
    height: 32px;
    display: inline-block;
    margin-right: 0.6rem;
}
    .rrss-ico img{
        display: inline-block;
        width: 100%;
    }
.bloque-resultados{
    margin-bottom: 3rem;
}

.col-100{
    width: 100%;
}
.bloque-contenido .col-100 {
    padding: 0 15px 0 15px;
    /*margin-left: 1rem;*/
}
.img-bodega-bodega,
.img-bodega-dorigen {
    width: 100%;
}
.bloque-fotos {
    position: relative;
}
    .bloque-foto {
        border-radius: 1rem;
        max-height: 22rem;
        overflow: hidden;
    }
    .bloque-fotos .bloque-height-50 .bloque-foto {
        max-height: 100%;
    }

    .bloque-fotos .col-40 {
        width: 39%;
        padding-right: 1%;
        display: inline-block;
        /* width:100%;
        flex: 0 0 39%;
        max-width: 39%;
        width: 100%;
        padding-left: 15px; */
        /* padding-right: 15px; */
        height: 100%;
    }
    .bloque-fotos .col-40 img {
        height: 100%;
    }
    .bloque-fotos .col-40 .bloque-foto{
        max-height: 100%;
        height: 100%;
    }
    .bloque-fotos .col-20 {
        width: 21%;
        height: 100%;
        position: relative;
        display: inline-block;
        float:right;
    }
    .bloque-fotos .bloque-height-50{
        height: 48%;
        position: absolute;
        width: 100%;
        bottom: 0;
    }
    .bloque-fotos .col-20 .bloque-height-50:first-child{
        margin-bottom: 2%;
        margin-top: 0;
        top:0;
    }

    .bloque-fotos .bloque-height-50 img {
        /* position: absolute; */
        height: 100%;
    }
    .bloque-fotos img {
        width: 100%;
        display: inline-block;
        border-radius: 1rem;
    }
    .bloque-fotos .btn-fotos{
        position: absolute;
        bottom: 1rem;
        right: 3rem;
        padding:.5rem 1rem;
        border-radius: 3rem;
        font-size: 1rem;
        text-transform: uppercase;
        box-shadow: none;
        border: 1px solid #333333;
        background: #fff;
    }
        .bloque-fotos .btn-fotos svg {
            margin-right: 1rem;
        }

#modalFotos img{
    width: 100%;
    margin-bottom: 1rem;   
    border-radius: 1rem; 
}
#modalReserva .close,
#modalFotos .close {
    position: absolute;
    right: -1rem;
    top: -1rem;
    background: #E74424;
    color:#fff;
    border-radius: 100%;
    opacity: 1;
    width: 2rem;
    height: 2rem;
    line-height: 1rem;
}

.btn-prereserva{
    background: #E74424 0% 0% no-repeat padding-box;
    border-radius: 100px;
    font: normal normal normal 1rem/1.5rem 'Source Sans Pro';
    color: #FFFFFF;
    text-transform: uppercase;
    height: 2.5rem;
    border:none;
    box-shadow: none;
    margin-top: 1rem;
}
.remitente-1 {
    font-weight: bold;
}
.separador-comentarios {
    background: #E74424;
    color:#FFFFFF;
    padding:.5rem;
    margin-top: 2rem;
    text-align: center;

}


/* FIN ACTIVIDAD */

/* FOOTER */
footer{
    padding: 20px 0 50px;
    background-color: #fff;
    margin-top: 40px;
    font: normal normal normal 1rem/1.375rem 'Source Sans Pro';
    letter-spacing: 0px;
    color: #333333;
}
    footer .links{
        font: normal normal normal 1rem/1.375rem 'Source Sans Pro';
        letter-spacing: 0px;
        color: #E74424;
    }

        footer .links a{
            color: #E74424;
            padding:0 5px;
        }

    footer .social{
        text-align: right;
        font: normal normal normal 1.5rem/1.813rem Font Awesome 5 Brands;
        letter-spacing: 0px;
        color: #333333;
    }
    footer .social a {
        padding:0 5px;
        margin: 0 5px;
        color: #333333;
    }
    footer .social a:hover {
        color: #E74424;
    }


.img-extract{
    width: 300px;
}

.home-form-modal .modal-content {
    padding: 15px 10px;
}

    .home-form-modal .modal-content button#clients_save {
        margin-top: 15px;;
    }