/*=============================================
CATEGORIAS
=============================================*/

.container-portafolio-img {
    width: 100%;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 14px;
    background: white;
    padding: 10px 14px;
    border-radius: 50%;
    opacity: .5;
}


.contenedor {
    border-radius: 5px;
    height: 110px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.contenedor>img {
    position: relative;
    width: 100%;
}

.cover {
    background: rgba(36, 34, 34, 0.5);
    display: flex;
    height: 100%;
    justify-content: center;
    position: absolute;
    top: 0;
    width: 100%;
    transition: all .3s ease;
    /* cursor: pointer; */
}

.contenedor:hover .cover {
    background: rgba(255, 255, 255, 0.5);
}

#titulo-cover i {
    background: transparent;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    position: relative;
    text-align: center;
    top: 40%;
}

.cover:hover #titulo-cover i {
    color: rgb(0, 0, 0);
}

/*=============================================
VITRINA PRODUCTOS
=============================================*/

.paquetes {
    border-left: 5px solid red;
    border-right: 5px solid red;
}

.tipo-paquete {
    position: relative;
}

.tipo-paquete h2 small {
    background: #fff;
    margin-right: 20px;
    padding-right: 20px;
    position: sticky;
    z-index: 99;
}


.tipo-paquete hr {
    border-color: #8495B4;
    position: absolute;
    top: 17px;
    left: 3%;
    width: 96%;
    opacity: 0.3;
}

.tituloDestacado {
    padding-left: 0;
    padding-right: 0;
}

.tituloDestacado h2 {
    margin-top: -5px;
}

.tituloDestacado button span {
    margin-left: 5px;
}

.grid {
    width: 100%;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.listarProductos{ padding: 0;}

.productos,
.producto-item {
    padding: 0;
    margin-top: 10px;
}
.more-sell,
.producto-item {
    padding: 0;
    margin-top: -8px;
}
.productos div.contenedor-producto {
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px solid #bbb;    
    width: calc((100% - 0px)/1);
    flex: none;
    height: 400px;
    /*evitar que los hijos crezcan*/
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: relative;
    transition: all 0.8s ease-in;
    overflow: hidden;
}

.productos div.borde:hover {
    background: #fff;
    -webkit-box-shadow: 0px 5px 16px 1px rgba(171, 169, 171, 1);
    -moz-box-shadow: 0px 5px 16px 1px rgba(171, 169, 171, 1);
    box-shadow: 0px 5px 16px 1px rgba(171, 169, 171, 1);
    border-radius: 5px;
    transition: all 0.8s ease-in;
}

.productos .ver {
    opacity: 1;
    transition: all 0.8s ease-in;
    border: 1px solid #aaa;
}

.productos figure {
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
}

.productos h4 small {
    color: #555;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.productos h4 small a {
    color: red;
}

.productos div.precio {
    margin-top: -5px;
}

.contenedor-producto .paquete {
    margin: -28px 0 10px 0;
}

.contenedor-producto .paquete small {
    background: #fff;
    border-radius: 30px;
    border: 1px solid #ddd;
    color: #333;
    padding: 5px 10px;
}

.productos .ver {
    padding: 5px 10px;
}

.label-warning {
    background-color: #f59104;
    border-radius: 5px;
    padding: 4px 10px;
    color: #a70101;
}

.label-success {
    background-color: orangered;
    border-radius: 5px;
    padding: 4px 10px;
    color: #fff;
}

.label {
    font-weight: normal;
}

.oferta,
.text-muted strong {
    border-radius: 10px;
    color: #333;
    font-size: 15px;
    text-decoration: line-through;
}

.precioOferta,
.preciosinoferta {
    color: red;
    font-size: 1.2rem;
}

.bred-c {
    background: #eee;
    border-left: 5px solid grey;
    border-right: 5px solid grey;
}

.info-producto-footer {
    background: #fff;
    padding: 15px;
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
}

.descuento {
    border-radius: 5px 0 0 5px;
    padding: 4px 10px;
    position: absolute;
    right: 0;
    font-size: 100%;
    top: 10px;
    z-index: 1;
}


.more-adult, .more-kids,
.less-adult, .less-kids {
    background: #aaa;
    border: 1px solid #aaa;
    cursor: pointer;
    width: 40px;
}

.amount-adult, .amount-kids {
    border: 1px solid #aaa;
    width: 40px;
}

.more-adult:hover, .more-kids:hover,
.less-adult:hover, .less-kids:hover {
    background: #ccc;
} 

.less-adult, .less-kids{
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.more-adult, .more-kids{
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.day {margin: 15px 0;}

.nuevo {
    border-radius: 0 5px 5px 0;
    position: absolute;
    left: 0;
    padding: 4px 10px;
    top: 10px;
    z-index: 1;
}

.servicios-item {
    display: inline-flex;
    margin-right: 5px;
}

strong {
    font-weight: 300;
}

.btn-success-view-product:hover,
.btn-success-view-product:focus {
    box-shadow: inset 0 -3.25em 0 0 var(--hover);
}

.btn-success-view-product {
    --color: #7303c0;
    --hover: #7303c0;
}

.btn-success-view-product {
    color: var(--color);
    -webkit-transition: 0.25s;
    transition: 0.25s;
    background: none;
    border: 1px solid #7303c0;
    font: inherit;
    height: 35px;
}

.btn-success-view-product:hover,
.btn-success-view-product:focus {
    border-color: var(--hover);
    color: #fff;
}

.h1 .small,
.h1 small,
.h2 .small,
.h2 small,
.h3 .small,
.h3 small,
.h4 .small,
.h4 small,
.h5 .small,
.h5 small,
.h6 .small,
.h6 small,
h1 .small,
h1 small,
h2 .small,
h2 small,
h3 .small,
h3 small,
h4 .small,
h4 small,
h5 .small,
h5 small,
h6 .small,
h6 small {
    font-weight: 400;
    line-height: 1;
    color: #7303c0;
}

.loading {
    color: white;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(36, 34, 34, 0.5);
    z-index: 999;
}


/*=============================================
MEDIA QUERIES
=============================================*/

@media (min-width: 576px) {   
    .day{
        margin-top: 0;
        border-left: 1px solid #cccccc;
    }
    
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {  
    .day{margin-top: 15px; border: none;}
    .productos div.contenedor-producto {
        width: calc((100% - 50px)/2);
        margin-bottom: 4%;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
   .day{margin-top: 0; border-left: 1px solid #cccccc;}
   .productos div.contenedor-producto {
        width: calc((100% - 50px)/3);
        margin-bottom: 4%;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {  
    .productos div.precio {
        margin-top: -10px;
    }
    .tipo-paquete hr {
        top: 21px;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) { 
   
}


