/* Accordion */
.accordion-group{
    background: white;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
    border-radius: .25rem;
    overflow: hidden;
    margin: 0 !important;
}

.accordion{
    background: white;
}

.accordion-focus{
    border: none;
}

.accordion .accordion-title{
    transition: 500ms;
}

.accordion-focus .accordion-title{
    background: rgba(0,0,0,.125);
    color: var(--bg-color);
}

.accordion .accordion-body{
    height: 0;
    transition: 500ms;
    position: relative;
    overflow: hidden;
}

.accordion-focus .accordion-body{
    height: auto;
    width: 100%;
}

.accordion-focus:last-of-type .accordion-body{
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

.accordion .accordion-body .body-information{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 20;
    color: transparent;
    transition: 500ms;
    text-shadow: 0px 0px 20px #FFFFFF;
}

.accordion-body .body-information{
    color: var(--bg-color);
}

.accordion-body .list{
    list-style: none;
    padding: 0;
}

.accordion-body .list li{
    border-bottom: 2px solid rgba(0,0,0,.125);
    transition: 500ms;
}

.accordion-body .list .active{
    position: relative;
    overflow: hidden;
}

.accordion-body .list .active,
.accordion-body .list li:hover{
    background: rgba(0,0,0,.125);
    border-bottom: 2px solid transparent;
}

.accordion-body .list .active:hover{
    background: rgba(255, 0, 0, 0.125);
}

.accordion-body .list a{
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
    color: black;
    padding: 1rem;
    width: 100%;
    height: 100%;
    display: inline-block;
}

.accordion-body .list .active i{
    position: absolute;
    top: 0;
    bottom: 0;
    right: -20px;
    transition: 500ms;
    font-style: normal;
    font-size: 2rem;
    display: flex;
    align-items: center;
    border-radius: 50%;
}

.accordion-body .list .active:hover i{
    right: 20px;
}

/* Sacar espacios del body */
html, body { 
    overflow-x: hidden !important;
}

.jumbotron.card{
   width: 8rem;
   height: 13.2rem;
   object-fit: cover;
}

.jumbotron.card h2{
    color: #222222 !important;
}

/* Productos */
.productos .card{
    color: #162e44;
    position: relative;
    background: transparent;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
}

.productos .card > div{
    background-color: white;
    border-radius: .25rem;
    position: relative;
    min-height: 100%;
}

.productos .card > div img{
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
}
    
.productos .card a{
    background-color: #01B3A7;
    color: white;
}

.productos .card-footer{
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    border-top: none;
    background-color: #fff;
}


/* Aclaracion */
.aclaracion{
    background-color: white;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
    border-radius: .25rem;
}

/* Modal */
.modal-header button{
   position: absolute;
   right: 1rem;
   font-size: 2rem;
   outline: none;
}

.modal-body i{
    color: #4285F4 !important;
}
.modal-body .md-form:last-of-type i{
    font-size: 1.7rem;
}

.modal-footer .btn{
    background-color: #01B3A7;
    color: #fff;
}

.modal-dialog textarea{
    padding-left: 1rem !important;
}

.modal-dialog textarea::placeholder{
    padding-right: 0;
}

.modal-dialog textarea:focus{
    border-bottom: none !important;
}

.modalEnviar{
    margin-top: 0;
}

.listaAclaracion{
    position: relative;
    left: 0;
    right: 0;
    bottom: 0
}

.listaAclaracion{
    height: 70px;
}

.listaAclaracion ul{
    margin: 0;
    padding: 0; 
    list-style: none;
    left: 0;
}


.listaAclaracion ul li{
    display: inline-flex;
    font-family: 'Darker Grotesque', sans-serif;
    border-bottom: 2px solid transparent;
    color: #000;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-bottom-color 50ms linear 0s;
}

.listaAclaracion ul li:hover{
    transition: 200ms;
    border-bottom: 2px solid #162E44;
    cursor: pointer;
}

#filtros{
    background-color: #162E44;
    color: #fff;
}

#filtros li{
    border: none;
    color: #fff;
}

#filtros li a{
    color: #fff;
}

/* MD */
@media(min-width: 768px){
    /* Productos */
    .productos .card-img-top{
        height: 12rem;
        object-fit: contain;
    }

    .listaAclaracion{
        position: relative;
        left: 0;
        right: 0;
        bottom: 0
    }

    .listaAclaracion{
        height: 50px;
    }

    .listaAclaracion ul{
        margin: 0;
        padding: 0; 
        list-style: none;
        left: 0;
    }


    .listaAclaracion ul li{
        display: inline-flex;
        font-family: 'Darker Grotesque', sans-serif;
        border-bottom: 2px solid transparent;
        color: #000;
        font-size: 1rem;
        font-weight: bold;
        text-decoration: none;
        text-transform: uppercase;
        transition: border-bottom-color 50ms linear 0s;
    }

    .listaAclaracion ul li:hover{
        transition: 200ms;
        border-bottom: 2px solid #162E44;
        cursor: pointer;
    }
}

/* LG */
@media(min-width: 1024px){
    /* Jumbotron */
    .jumbotron.card a:hover{
        font-weight: bold !important;
        transition: .5s;
    }

    /* Productos */
    .productos .card{
        box-shadow: none;
    }

    .productos .card > div{
        overflow: hidden;
        box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
    }
    
    .productos .card span{
        position: absolute;
        transition: .5s;
        transform: translateX(0);
        transform: translateY(0);
    }
    
    .productos .card .top-line{
        top: 0;
        left: -100%;
        width: 100%;
        height: 5px;
        background-color: #162e44;
    }
    
    .productos .card:hover .top-line{
        transform: translateX(100%);
    }
    
    .productos .card .right-line{
        right: 0;
        bottom: 100%;
        width: 5px;
        height: 100%;
        background-color: #162e44;
    }
    
    .productos .card:hover .right-line{
        transform: translateY(100%);
    }
    
    .productos .card .bottom-line{
        bottom: 0;
        right: -100%;
        width: 100%;
        height: 5px;
        background-color: #162e44;
    }
    
    .productos .card:hover .bottom-line{
        transform: translateX(-100%);
    }
    
    .productos .card .left-line{
        left: 0;
        top: 100%;
        width: 5px;
        height: 100%;
        background-color: #162e44;
    }
    
    .productos .card:hover .left-line{
        transform: translateY(-100%);
    }
  
    .productos .row::after {
      content: "";
      flex: auto;
    }

    .productos .card a:hover{
        font-weight: bold !important;
        transition: .5s;
        background-color: rgb(40, 169, 192);
    }

    .parrafoJunto p{
        font-size: 1rem;
    }
    
}