label.error {
    color: red;
    font-style: italic;
}

.bigFont {
    font-size: 3em;
    margin-bottom: 10px;
}

.toWhatsApp {
    position: fixed;
    bottom: 80px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    /* WhatsApp green color */
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
    z-index: 1000;
}

.bx {
    font-size: 24px;
}

.toTop:hover,
.toWhatsApp:hover {
    background-color: #128C7E;
    /* Darker green on hover */
}

.messageBox {
    position: fixed;
    width: 350px;
    height: auto;
}

.centeredmsg {
    position: fixed !important;
    top: 45%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
    z-index: 1;
}

.centerCloseBtn {
    position: relative !important;
    left: 50%;
    margin-top: 30px;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
    z-index: 2;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5
}

.close:focus,
.close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .75
}

button.close {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none
}

.smIconRed {
    color: #D01A1E;
}

.text-small {
    font-size: 0.8em;
    /* Ajusta el tamaño según necesites */
}


/* Show two logos per row in mobile */

@media (max-width: 768px) {
    .d-flex.align-items-center.justify-content-center {
        flex: 0 0 50%;
        /* Makes each item take up 50% of the container's width */
        max-width: 50%;
        /* Ensures the item does not exceed 50% of the container's width */
        margin-top: 5px;
        /* Adjust the top margin as needed */
        padding: 0 10px;
        /* Adjust padding for mobile devices */
    }
}