.img-modal-producto{
    width: 100px;
    height: 75px;
    border: 1px solid #333399;
    margin: 5px;
    cursor: pointer;
}

.titulo-producto-modal{
    color: #333399;
    font-size: 25px;
}

.precio-producto-modal{
    color: #F65005;
    font-size: 25px;
    font-weight: 800;
}

.icon-plus{
    font-size: 30px;
    cursor: pointer;
    color: #333399;
}

.icon-minus{
    font-size: 30px;
    cursor: pointer;
    color: #333399;
}

.input-cantidad{
    text-align: right;
    max-width: 30px;
}

.carrito{
    color: #333399;
    position: absolute;
    cursor: pointer;
    margin-top: -60px;
    margin-left: 97%;
}

@media (max-width:996px) {
    .carrito{
    margin-left: 96%;
}    
}
@media (max-width:798px) {
    .carrito{
    margin-left: 90%;
}    
}

.carrito:hover{
    color: #F65005;
}

.suma-carrito{
    position:absolute;
    font-size: 12px;
    margin-left: -8px;
    margin-top: -5px;
}

/* PANTALLA DE CARGA DE PRODUCTOS */
#tablaProductos {
    position: relative;
    min-height: 300px;
}

.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.65);
    z-index: 20;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    opacity: 1;
    visibility: visible;
}

.loader-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-overlay .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.35rem;
}

.loader-overlay p {
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #0d6efd;
    text-shadow: 0 0 8px rgba(13, 110, 253, 0.2);
}

.loader-overlay .bi-cpu {
    animation: pulse 1.6s infinite ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.7;
    }
}