
/* ============================================
   FLOATING WHATSAPP BUTTON - BOTTOM POSITION
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 50px;           /* Bottom button */
    left: 25px;
    background: #25d366;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    z-index: 9999;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: all .3s ease;
    /* Fix centering issues */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 28px;
    line-height: 1;
}

.whatsapp-float:hover {
    background: #20b358;
    color: #fff;
    transform: scale(1.05);
}

/* ============================================
   FLOATING CART BUTTON - TOP POSITION
   ============================================ */
.floating-cart-btn {
    position: fixed;
    bottom: 50px;          /* Above WhatsApp button */
    right: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color, #b5824e) 0%, var(--primary-light, #d4a574) 100%);
    color: var(--white-color, #fff);
    border: none;
    box-shadow: 0 4px 20px rgba(181, 130, 78, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cart-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-light, #d4a574) 0%, var(--primary-color, #b5824e) 100%);
    box-shadow: 0 6px 25px rgba(181, 130, 78, 0.5);
}

.floating-cart-btn i {
    font-size: 24px;
    line-height: 1;
}

.floating-cart-btn .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: var(--white-color, #fff);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}


/* ============================================
   RTL SUPPORT - Arabic
   ============================================ */
    html[dir="rtl"] .whatsapp-float {
        left: auto;      
        right: 25px;     
    }

    html[dir="rtl"] .floating-cart-btn {
        right: auto;     
        left: 25px;     
    }

    html[dir="rtl"] .floating-cart-btn .cart-count {
        left: -5px;      
        right: auto;     
    }

/* ============================================
   2. CART SIDEBAR
   ============================================ */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: var(--white-color, #fff);
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    font-family: var(--font-family);
}

.cart-sidebar.open {
    right: 0;
}

/* RTL Support for Sidebar */
html[dir="rtl"] .cart-sidebar {
    right: auto;
    left: -490px;
}

html[dir="rtl"] .cart-sidebar.open {
    right: auto;
    left: 0;
}

/* Sidebar Header */
.cart-sidebar-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(181, 130, 78, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--light-bg, #f9f7f4) 0%, #fff 100%);
}

.cart-sidebar-header h5 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-text, #333);
    position: relative;
    padding-left: 15px;
}

.cart-sidebar-header h5:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--primary-color, #b5824e);
    border-radius: 2px;
}

html[dir="rtl"] .cart-sidebar-header h5 {
    padding-left: 0;
    padding-right: 15px;
}

html[dir="rtl"] .cart-sidebar-header h5:before {
    left: auto;
    right: 0;
}

/* Close Button */
.close-cart-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(181, 130, 78, 0.1);
    border: none;
    color: var(--primary-color, #b5824e);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart-btn i {
    font-size: 18px;
}

.close-cart-btn:hover {
    background: var(--primary-color, #b5824e);
    color: white;
    transform: rotate(90deg);
}

.close-cart-btn:focus {
    outline: none;
    box-shadow: none;
}

/* Sidebar Body */
.cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px;
}

/* Custom Scrollbar */
.cart-sidebar-body::-webkit-scrollbar {
    width: 5px;
}

.cart-sidebar-body::-webkit-scrollbar-track {
    background: var(--light-bg, #f9f7f4);
    border-radius: 10px;
}

.cart-sidebar-body::-webkit-scrollbar-thumb {
    background: var(--primary-color, #b5824e);
    border-radius: 10px;
}

/* Sidebar Footer */
.cart-sidebar-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(181, 130, 78, 0.2);
    background: linear-gradient(135deg, #fff 0%, var(--light-bg, #f9f7f4) 100%);
}

/* Cart Items */
.cart-item {
    transition: all 0.3s ease;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 12px;
    background: var(--white-color, #fff);
    border: 1px solid rgba(181, 130, 78, 0.1);
    position: relative;
}

.cart-item:hover {
    background: linear-gradient(135deg, #fff 0%, var(--light-bg, #f9f7f4) 100%);
    border-color: rgba(181, 130, 78, 0.3);
    box-shadow: 0 5px 15px rgba(181, 130, 78, 0.1);
    transform: translateX(-5px);
}

html[dir="rtl"] .cart-item:hover {
    transform: translateX(5px);
}

.cart-item h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-text, #333);
}

.cart-item .text-muted {
    font-size: 12px;
    color: var(--primary-color, #b5824e);
    font-weight: 500;
    background: rgba(181, 130, 78, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
}

/* Cart Item Quantity Controls */
.cart-item .btn-group {
    background: var(--light-bg, #f9f7f4);
    border-radius: 20px;
    overflow: hidden;
}

.cart-item .btn-group .btn-outline-secondary {
    border: none;
    background: transparent;
    color: var(--dark-text, #333);
    padding: 5px 12px;
    transition: all 0.2s;
}

.cart-item .btn-group .btn-outline-secondary:hover {
    background: var(--primary-color, #b5824e);
    color: white;
}

.cart-item .btn-group .quantity-display {
    background: transparent;
    color: var(--dark-text, #333);
    font-weight: 600;
    min-width: 40px;
}

.cart-item .btn-danger {
    background: transparent;
    border: 1px solid #dc3545;
    color: #dc3545;
    transition: all 0.2s;
}

.cart-item .btn-danger:hover {
    background: #dc3545;
    color: white;
    transform: scale(1.05);
}

/* ============================================
   3. PRICING OPTION CARDS (Multiple Pricing)
   ============================================ */
.pricing-option-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(181, 130, 78, 0.2);
    margin-bottom: 15px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white-color, #fff);
}

.pricing-option-card:hover {
    box-shadow: 0 8px 25px rgba(181, 130, 78, 0.15);
    border-color: var(--primary-color, #b5824e);
    transform: translateY(-2px);
}

.pricing-option-card .card-body {
    padding: 18px 22px;
}

.pricing-option-card h6 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--dark-text, #333);
}

/* Price Tag */
.price-tag {
    font-weight: 800;
    color: var(--primary-color, #b5824e);
    font-family: var(--font-family);
    font-size: 22px;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--primary-color, #b5824e) 0%, var(--primary-light, #d4a574) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-tag small {
    font-size: 13px;
    font-weight: 500;
    -webkit-text-fill-color: var(--primary-color, #b5824e);
}

/* ============================================
   4. SINGLE PRICING STYLES
   ============================================ */
.single-pricing-wrapper {
    margin-bottom: 20px;
}

.single-pricing-wrapper .bg-light {
    background: linear-gradient(135deg, var(--light-bg, #f9f7f4) 0%, #fff 100%);
    border: 1px solid rgba(181, 130, 78, 0.2);
    border-radius: 20px;
    padding: 20px 25px;
}

.price-tag-single {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color, #b5824e);
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary-color, #b5824e) 0%, var(--primary-light, #d4a574) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.single-pricing-wrapper .text-muted {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Single Pricing Button */
.btn-cart-single {
    background: linear-gradient(135deg, var(--primary-color, #b5824e) 0%, var(--primary-light, #d4a574) 100%);
    color: var(--white-color, #fff);
    border: none;
    padding: 12px 32px;
    border-radius: 40px;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    font-family: var(--font-family);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(181, 130, 78, 0.3);
}

.btn-cart-single:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(181, 130, 78, 0.4);
    background: linear-gradient(135deg, var(--primary-light, #d4a574) 0%, var(--primary-color, #b5824e) 100%);
    color: white;
}

.btn-cart-single:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-cart-single i {
    font-size: 16px;
}

/* ============================================
   5. QUANTITY SELECTOR
   ============================================ */
.quantity-selector {
    background: var(--light-bg, #f9f7f4);
    border-radius: 30px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(181, 130, 78, 0.2);
    flex-shrink: 0;
}

.quantity-selector .btn-qty {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
    border: none;
    color: var(--dark-text, #333);
}

.quantity-selector .btn-qty:hover {
    background-color: var(--primary-color, #b5824e);
    color: white;
}

.quantity-selector .btn-qty:hover i {
    color: white;
}

.quantity-selector .btn-qty i {
    font-size: 14px;
    color: var(--dark-text, #333);
    transition: all 0.2s;
}

.quantity-selector .qty-input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    padding: 0;
    color: var(--dark-text, #333);
}

.quantity-selector .qty-input:focus {
    outline: none;
    box-shadow: none;
}

/* Small Quantity Selector */
.quantity-selector-small {
    background: var(--light-bg, #f9f7f4);
    border-radius: 25px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(181, 130, 78, 0.2);
    flex-shrink: 0;
}

.quantity-selector-small .btn-qty-small {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    border: none;
    color: var(--dark-text, #333);
}

.quantity-selector-small .btn-qty-small:hover {
    background-color: var(--primary-color, #b5824e);
    color: white;
}

.quantity-selector-small .btn-qty-small i {
    font-size: 12px;
    color: var(--dark-text, #333);
}

.quantity-selector-small .btn-qty-small:hover i {
    color: white;
}

.quantity-selector-small .qty-input-small {
    width: 42px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    padding: 0;
    color: var(--dark-text, #333);
}

/* ============================================
   6. CART BUTTONS
   ============================================ */
.btn-cart {
    background: linear-gradient(135deg, var(--primary-color, #b5824e) 0%, var(--primary-light, #d4a574) 100%);
    color: var(--white-color, #fff);
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    font-family: var(--font-family);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    text-decoration: none;
    width: auto !important;
    max-width: fit-content;
    box-shadow: 0 2px 8px rgba(181, 130, 78, 0.3);
}

.btn-cart:hover {
    background: linear-gradient(135deg, var(--primary-light, #d4a574) 0%, var(--primary-color, #b5824e) 100%);
    color: var(--white-color, #fff);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(181, 130, 78, 0.4);
    text-decoration: none;
}

.btn-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-cart i {
    font-size: 14px;
}

/* Select Options Button */
.select-options-btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   7. MODAL STYLES
   ============================================ */
.modal {
    --bs-modal-width: 500px;
    --bs-modal-bg: var(--white-color, #fff);
    --bs-modal-border-radius: 20px;
    z-index: 1060 !important;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal-backdrop {
    z-index: 1055 !important;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
    transition: transform 0.3s ease-out;
}

.modal.fade .modal-dialog {
    transform: translateY(-20px);
}

.modal.show .modal-dialog {
    transform: none;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    border-radius: var(--bs-modal-border-radius);
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Modal Header */
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--primary-color, #b5824e) 0%, var(--primary-light, #d4a574) 100%);
    color: #fff;
    border: none;
}

.modal-header .modal-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-header .btn-close {
    background: rgba(255, 255, 255, 0.2) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border-radius: 50%;
    opacity: 1;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.modal-header .btn-close:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Modal Body */
.modal-body {
    padding: 25px;
    max-height: 65vh;
    overflow-y: auto;
}

.modal-body::-webkit-scrollbar {
    width: 5px;
}

.modal-body::-webkit-scrollbar-track {
    background: var(--light-bg, #f9f7f4);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-color, #b5824e);
    border-radius: 10px;
}

/* Modal Footer */
.modal-footer {
    padding: 15px 25px;
    background: var(--light-bg, #f9f7f4);
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.modal-footer .btn-secondary {
    background: #6c757d;
    border: none;
    padding: 8px 25px;
    border-radius: 30px;
    font-family: var(--font-family);
    font-weight: 500;
    transition: all 0.3s ease;
}

.modal-footer .btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Modal Pricing Cards */
.modal .pricing-option-card {
    border: 1px solid rgba(181, 130, 78, 0.15);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.25s ease;
    background: #fff;
}

.modal .pricing-option-card:hover {
    border-color: var(--primary-color, #b5824e);
    box-shadow: 0 5px 15px rgba(181, 130, 78, 0.1);
    transform: translateY(-2px);
}

.modal .price-tag {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color, #b5824e);
}

/* Responsive Modal */
@media (min-width: 576px) {
    .modal-dialog {
        max-width: var(--bs-modal-width);
        margin: 1.75rem auto;
    }
}

/* ============================================
   8. TOAST NOTIFICATION
   ============================================ */
.cart-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 320px;
    animation: slideInRight 0.3s ease;
    background: linear-gradient(135deg, #fff 0%, var(--light-bg, #f9f7f4) 100%);
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    font-family: var(--font-family);
    color: var(--dark-text, #333);
    border-left: 4px solid var(--primary-color, #b5824e);
}

.cart-toast.alert-success {
    border-left-color: #28a745;
}

.cart-toast.alert-danger {
    border-left-color: #dc3545;
}

.cart-toast.alert-warning {
    border-left-color: #ffc107;
}

/* RTL Toast */
html[dir="rtl"] .cart-toast {
    right: auto;
    left: 20px;
    border-left: none;
    border-right: 4px solid var(--primary-color, #b5824e);
    animation: slideInLeft 0.3s ease;
}

/* ============================================
   9. PROCEED CHECKOUT & CLEAR CART BUTTONS
   ============================================ */
.proceed-checkout {
    background: linear-gradient(135deg, var(--primary-color, #b5824e) 0%, var(--primary-light, #d4a574) 100%);
    border: none;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.proceed-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(181, 130, 78, 0.4);
    background: linear-gradient(135deg, var(--primary-light, #d4a574) 0%, var(--primary-color, #b5824e) 100%);
}

.clear-cart {
    border: 1px solid var(--primary-color, #b5824e);
    background: transparent;
    color: var(--primary-color, #b5824e);
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.clear-cart:hover {
    background: var(--primary-color, #b5824e);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   10. EMPTY CART STYLES
   ============================================ */
.cart-sidebar-body .text-center.py-5 i {
    background: linear-gradient(135deg, var(--primary-color, #b5824e) 0%, var(--primary-light, #d4a574) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-sidebar-body .text-center.py-5 p {
    color: var(--light-text, #777);
    font-size: 14px;
    text-align: center;
}

/* ============================================
   11. RESPONSIVE STYLES
   ============================================ */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-sidebar-header h5 {
        font-size: 18px;
    }
    
    .cart-sidebar-body {
        padding: 15px 20px;
    }
    
    .cart-sidebar-footer {
        padding: 15px 20px;
    }
    
    .cart-item {
        padding: 12px;
    }
    
    .pricing-option-card .card-body {
        padding: 12px 15px;
    }
    
    .price-tag {
        font-size: 18px;
    }
    
    .price-tag-single {
        font-size: 28px;
    }
    
    .btn-cart {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .btn-cart-single {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .single-pricing-wrapper .bg-light {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    /* Cart button on top (mobile) */
    .floating-cart-btn {
        bottom: 50px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .floating-cart-btn i {
        font-size: 20px;
    }
    
    /* WhatsApp button on bottom (mobile) */
    .whatsapp-float {
        bottom: 50px;
        left: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
    
    /* RTL mobile */
    html[dir="rtl"] .floating-cart-btn {
        right: auto;
        left: 15px; /* Cart moves to left in RTL */
    }

    html[dir="rtl"] .whatsapp-float {
        left: auto;
        right: 15px; /* WhatsApp moves to right in RTL */
    }
    
    .cart-toast {
        min-width: 280px;
        font-size: 13px;
        top: 10px;
        right: 10px;
    }
    
    .pricing-option-card h6 {
        font-size: 14px;
    }
    
    .price-tag {
        font-size: 16px;
    }
    
    .price-tag-single {
        font-size: 24px;
    }
    
    .btn-cart-single {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    .btn-cart-single i {
        font-size: 13px;
    }
    
    .single-pricing-wrapper .bg-light {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header .modal-title {
        font-size: 18px;
    }
    
    .modal-body {
        padding: 15px;
    }
}

/* ============================================
   12. ANIMATIONS
   ============================================ */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   13. UTILITY CLASSES
   ============================================ */
.d-none {
    display: none !important;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}