/**************************BOTON STICKY DE WHATSAPP********************************/
.btn-wsp{
    position:fixed;
    bottom:8%;
    right:5%;
    border-radius:50px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    transition: all 300ms ease;
}
.btn-wsp img {
    width:60px;
    height:60px;
    transition: .2s ease-in-out 0s;  
}
.btn-wsp img:hover{
    cursor: pointer;
    transform: scale(1.5);        
}
/**************************EFECTO DE BOTONES********************************/

.btn{
    width: 100%; 
    font-size: 0.8em;      
}

.btn-agregar_dcatalogo{
    background-color: #D9D7D4;     
    color: #443635;
}
.btn-agregar_ddetalle{   
    background-color: #D0B787;     
    color: #382F2D;
}
.btn-agregar_dcatalogo:hover{
    transition: 0.5s ease-in-out;  
    border: #D9D7D4 solid 1px;          
    background-color: #443635;     
    color: #D9D7D4;
}
.btn-agregar_ddetalle:hover{
    transition: 0.5s ease-in-out; 
    border: #D0B787 solid 1px;       
    background-color: #382F2D;     
    color: #D0B787;
}  

@media only screen and (max-width: 749px) {
    .btn-wsp{
        bottom:2%;
    }    
}