/* QBIEZ Custom Styles */

/* Embedded Image Styles */
.embedded_image {
    text-align: center;
}

.embedded_image img {
    width: 80% !important;
    display: inline-block;
}

.hidden {
    display: none;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-desktop {
        display: none;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    left: 20px;
    bottom: 40px;
    z-index: 1000;
}

/* Form Control Extra Small */
.form-control-xs {
    height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

/* WhatsApp Floating Button */
.floating {
    right: auto;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: #022147;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bubble-flow 4s linear infinite;
}

/* WhatsApp Icon */
.bi-whatsapp {
    margin: 0;
}

/* Bounce Animation */
@keyframes bounce {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

/* Bubble Flow Animation */
@keyframes bubble-flow {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

