body{
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #FDFDFD !important;
    font-family: 'Poppins', sans-serif !important;
    box-sizing: border-box;
    color: #333;
    
}

.header{
    flex-basis: auto;

}

.main{
    flex: 1;
    padding: 0 5px;
  
}

.main-dashboard{
    flex: 1;
    padding: 0;
}

.footer{
    /* layout handled by footer.css */
}

.icono-whatsapp{
    position: fixed;
    width: 55px;
    height: 55px;
    line-height: 55px;
    bottom: 30px;
    right: 30px;
    background: #0df053;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0,0.3);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.icono-whatsapp:hover{
    text-decoration: none;
    color: #0df053;
    background-color: #fff;
}



.icono-flechaArriba{ 
    position: fixed; 
    width: 55px; 
    height: 55px; 
    line-height: 55px; 
    bottom: 100px; 
    right: 30px; 
    background: #BB8683; 
    color: #fff; 
    border-radius: 50px; 
    text-align: center; 
    font-size: 30px; 
    box-shadow: 0px 1px 10px rgba(0, 0, 0,0.3); 
    z-index: 100; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    display: none; 
} 
 
 
.icono{ 
    margin-top: 12px; 
} 
.icono-flechaArriba:hover{ 
    text-decoration: none; 
    color: #BB8683; 
    background-color: #fff; 
} 
 
 
 
 
@media screen and (min-width: 992px){ 
    .header{
        flex-basis: auto;
        padding: 0 51px;
    }
 
    .icono-whatsapp{ 
        right: 30px; 
    } 
    .icono-flechaArriba{ 
        right: 30px; 
    } 
    .main{ 
        flex: 1; 
        padding: 0 51px; 
    } 
 
    .main-dashboard{ 
        flex: 1; 
        padding: 0; 
    } 
}