#banner-flotante{
position: fixed;
bottom: 100px;
right: 0;
z-index: 99;
transition: 0.3s;
}
#banner-flotante:hover{
bottom: 115px;
} #boton-flotante{
position: fixed;
bottom: 15px;
z-index: 99;
right: 5px;
display:none;
}
#boton-flotante a{
background: #66b2e1;
padding: 10px;
color: white;
border: 2px solid white;
border-radius: 5px;
font-weight: bold;
text-transform: uppercase;
} @media (max-width: 1200px) {
#banner-flotante{
display:none !important;
}
#boton-flotante{
display:block !important;
}
}