

.table-products-cart{
    width: 100%;
}

.table-products-cart tr{
    height: 45px !important;
}

.table-products-cart th{
    background-color: var(--nic-white);
    color: var(--nic-black);
    height: 45px !important;
}

.table-summary{
    width: 100%;
}

#loading-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.spinner{
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--nic-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pay-method {
    min-height: 140px;
    max-height: 1100px;
    border: 1px solid #B9B9B9;
    border-radius: 3px;
    background-color: #FFFFFF;
    padding: 40px 40px 10px 40px;
    margin-bottom: 35px;
    transition: 0.3s ease-in-out;
}

.bg-primary {
    background-color: var(--nic-blue) !important;
}

.btn-cart{
    height: 54px !important;
    background-color: var(--nic-blue);
    width: 100%;
}