/* CONTENEDOR */

.floating-buttons {
    position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* BOTONES */

.floating-btn {
    display: block;

    transition: all .3s ease;
}

.floating-btn img {
    display: block;

    width: 100%;
    height: auto;
}

.floating-btn:hover {
    transform: scale(1.05);
}

/* BOTÓN ENCUESTA */

#btn-encuesta {
    opacity: 0;
    visibility: hidden;

    transition: all .4s ease;
}

#btn-encuesta.visible {
    opacity: 1;
    visibility: visible;
}

/* MÓVIL */

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

    .floating-buttons {
        right: -80px;
    }

    .floating-btn img {
        width: 60%;
    }
}