.logistic-text {
    margin-top: 15em;
}
@media (max-width: 991px) {
    .logistic-text ,.auth-full-bg{
        display: none;
    }
}
.charges-total {
    background: #ed8600;
    padding: 30px;
    color: #fff;
}
.charges-total button{
background: #24292d;
border: #24292d;
}
.packages-loaded-number {
    font-weight: bold; /* Make the number bold */
}
.plus-btn,
.minus-btn {
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 5px;
    margin-right: 5px; /* Add margin-right */
}

.plus-btn {
    background-color: green;
    color: white;
}

.minus-btn {
    background-color: red;
    color: white;
    margin-left: 5px;
}

.table-bordered, .table-responsive, .table-container{
    white-space: nowrap;
}
 /* Center loader */
 .loader {
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #ed8600;
    width: 70px;
    height: 70px;
    animation: spin 2s linear infinite;
}
/* Spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.auth-full-bg.bg-danger.login {
    background-color: #da2227 !important;
}
.btn-primary{
    background-color: #da2227 !important;
    border: #da2227 !important;
}