

/* Pequeño tag estático de "DTO PRODUCTO" */
.x-dto-producto {
    height: fit-content;
    font-size: var(--fs-xxs);
    background-color: var(--black);
    color: var(--white);
    padding: 3px 18px;
    border-radius: 99em;
    text-transform: uppercase;
}



.x-big-links {
    a {
        font-size: var(--fs-sm);
        color: var(--black);
        text-decoration: underline;
        text-underline-offset: 5px;
        line-height: 1.2em;

        &:hover {
            color: var(--secondary);
        }
    }

}

/* MODAL */

.uabb-modal-parent-wrapper {
    .uabb-modal {
        .uabb-content {
            width: 80vw;
            .uabb-modal-close {
                top: 25px;
                right: 25px;
                left: auto;
                background-color: #F3EFE4B2;
                border-radius: 99em;
                padding: 10px;
                transition: var(--transition);

                &:hover {
                    background-color: #f3efe4;
                }

                .uabb-close-icon {
                    font-size: 18px;
                }
            }
        }
    }
}