/* ini: Preloader */
    
#preloader {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color: #fff; /* cor do background que vai ocupar o body */
    z-index:5000; /* z-index para jogar para frente e sobrepor tudo */
}
#preloader .inner {
    position: absolute;
    top: 50%; /* centralizar a parte interna do preload (onde fica a animação)*/
    left: 50%;
    transform: translate(-50%, -50%);  
}
.bolas > div {
  display: inline-block;  
  width: 60px;
  height: 60px;
  border-radius: 5px;
  margin: 15px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: animarBola;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  text-align: center;
  vertical-align: middle;
  color: #795548;
   
}
.bolas > div:nth-child(1) {
    animation-duration:1s ;
    animation-delay: 0;
}
.bolas > div:nth-child(2) {
    animation-duration: 1s ;
    animation-delay: 0.12s;
}
.bolas > div:nth-child(3) {
    animation-duration: 1s  ;
    animation-delay: 0.24s;
}
.bolas > div:nth-child(4) {
    animation-duration: 1s  ;
    animation-delay: 0.38s;
}

@keyframes animarBola {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    16% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0.7;
    }
    33% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1; 
     } 
}
/* end: Preloader */

.navigation:hover{
    text-decoration: underline;
    text-decoration-color: #6c757d!important;
}

.multi-truncate{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-facebook{
    background-color: #3b5998;
    color: white;
}

.btn-google-plus{
    background-color: #db4a39;
    color: white;
}

#description-product {
    font-size: 1rem;
    line-height: 1.5;
}


#description-product #description-collapse.collapse:not(.show) {
    display: block;
    height: 10rem;
    overflow: hidden;
}

#description-product #cdescription-collapse.collapsing {
    height: 3rem;
}

#description-product a.collapsed::after {
    content: 'Ver Mais';
}

#description-product a:not(.collapsed)::after {
    content: 'Ver Menos';
}

.slider{
    margin-top: -40px;
}

@media (max-width: 575.98px) {

    .slider{
        margin-top: -51px;
    }

    .img-product-list{
        background-repeat: no-repeat; 
        background-position: center center; 
        background-size: cover; 
        width: 100%; 
        height: 300px
    }

}

@media (min-width: 576px) and (max-width: 767.98px) {

    .img-product-list{
        background-repeat: no-repeat; 
        background-position: center center; 
        background-size: cover; 
        width: 100%; 
        height: 300px
    }

}

@media (min-width: 768px) and (max-width: 991.98px) {

    .img-product-list{
        background-repeat: no-repeat; 
        background-position: center center; 
        background-size: cover; 
        width: 100%; 
        height: 300px
    }
    
}

@media (min-width: 992px) and (max-width: 1199.98px) { 

    .img-product-list{
        background-repeat: no-repeat; 
        background-position: center center; 
        background-size: cover; 
        width: 100%; 
        height: 255px
    }

}

@media (min-width: 1200px) {

    .img-product-list{
        background-repeat: no-repeat; 
        background-position: center center; 
        background-size: cover; 
        width: 100%; 
        height: 255px
    }

}

.whatsapp{
    position: fixed; 
    top: 85%; 
    left: 1%; 
    padding: 10px; 
    z-index: 10000000
}