/* Cursor de espera */
.waiting-cursor {
    cursor: wait;
}
    .custom-modal-overlay {
        display: none; /* Oculto por defecto */
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0,0,0,0.5);
    }
    .custom-modal-content {
        background-color: #fff;
        width: 100%;
        position: fixed;
bottom:0;}
    .custom-close-modal {
        position: absolute;
        right: 10px;
        top: 5px;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
    }
.custom-modal-variations {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

/* Estilos para dispositivos con menos de 1200px */
@media only screen and (max-width: 1199px) {
    .size-selection-buttons {
        display: none;
    }
    .mobile-add-to-cart-button {
        display: block;
    }
    .custom-modal-content {
        padding: 5%;
    }
}

/* Estilos para dispositivos con más de 1200px */
@media only screen and (min-width: 1200px) {
.custom-modal-variations a.mi-clase-enlace-variacion.add_to_cart_button.ajax_add_to_cart {
    width: 60px !important;
    font-size: 12px !important;
    height: 40px !important;
    padding: 2px 0 0 0 !important;
    margin-right: 5px;
}
    .custom-modal-content {
        padding: 2%;
    }
    .size-selection-buttons {
        display: block;
    }
    .mobile-add-to-cart-button,
    .custom-modal-overlay {
        display: none;
    }
}