/*your custom css goes here*/
a {
    text-decoration: none !important;
}

.loading-text {
    font-size: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.loading-text .dots span {
    font-size: 15px;
    font-weight: bold;
    animation: blink 1.5s infinite;
}

.loading-text .dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-text .dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.loading-text .dots span:nth-child(3) {
    animation-delay: 0.6s;
}

@media (min-width: 1500px) {

    .container,
    .container-xxl {
        max-width: 1700px !important;
    }

}

@media (min-width: 992px) {

    .container,
    .container-xxl {
        max-width: 1350px;
    }

}

.noti-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 12px;
    width: 12px;
    font-size: 10px;
    font-weight: 500;
    line-height: unset;
}

#search-content {
    overflow: scroll;
    max-height: 500px;
}

.btn-soft-danger-base {
    background-color: #e2000026;
    color: #e20000;
}

.btn-danger-base,
.btn-soft-danger-base:hover,
.btn-outline-danger-base:hover {
    background-color: #e20000;
    border-color: #e20000;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #ffffff !important;
    color: #000000 !important;
}

.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:active {
    color: black !important;
    background-color: #f8f9fa !important;
    border-radius: 5px !important;
}

#registration-modal .modal-dialog {
    width: 370px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@media (max-width: 767.98px) {
    .fixed-mobile {
        position: fixed !important;
    }

    .front-header-search form {
        width: 95% !important;
    }

    #registration-modal .modal-dialog {
        /* width: 500px; */
        margin: 0 auto;
    }
}

@media (min-width: 991px) {
    .front-header-search {
        position: relative !important;
    }
}

.border-button {
    border: 1px solid #ddd;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
}

.border-button:hover {
    border-color: #aaa;
    background-color: #f8f8f8;
}

.cross-mark {
    cursor: pointer;
    font-size: larger;
}

/* Checkout Css */

.checkout-page .container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
}

.checkout-page .checkout-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.checkout-page .section {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.checkout-page .back-btn {
    display: inline-block;
    margin-bottom: 20px;
    padding: 6px 10px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.checkout-page .back-btn:hover {
    background: #2980b9;
}

.checkout-page h2 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 24px;
}

.checkout-page .form-group {
    margin-bottom: 20px;
}

.checkout-page label {
    display: block;
    margin-bottom: 5px;
    color: #34495e;
    font-weight: 500;
}

.checkout-page input,
.checkout-page select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.checkout-page input:focus,
.checkout-page select:focus {
    outline: none;
    border-color: #3498db;
}

.checkout-page .error {
    border-color: #e74c3c;
}

.checkout-page .product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.checkout-page .discount-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #e74c3c;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.checkout-page .quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-page .quantity-controls button {
    padding: 5px 10px;
    background: #ecf0f1;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.checkout-page .coupon-section {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.checkout-page .coupon-section input {
    flex: 1;
    margin: 0;
}

.checkout-page .coupon-section button {
    padding: 12px 20px;
    background: #2ecc71;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.checkout-page .coupon-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #f39c12;
    color: white;
    padding: 4px 8px;
    border-radius: 50%;
    font-size: 12px;
}

.checkout-page .price-details {
    margin: 25px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
}

.checkout-page .price-row {
    display: flex;
    justify-content: space-between;
    margin: 12px 0;
    font-size: 16px;
}

.checkout-page .price-row.wallet {
    background: #dff0d8;
    padding: 10px;
    border-radius: 4px;
    font-weight: 600;
    color: #3c763d;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-page .wallet-input {
    width: 80px;
    padding: 5px;
    font-size: 14px;
}

.payment-methods .form-group {
    margin-bottom: 0;
}

.checkout-page .terms {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-page .pay-now {
    width: 100%;
    padding: 15px;
    background: #1e3a8a;
    /* Dark blue */
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.checkout-page .pay-now:hover {
    background: #172554;
    /* Slightly darker blue on hover */
}

.checkout-page #fetchCurrentLocationLoadingBtn {
    width: 110px;
    height: 34px;
    margin: 0px;
    float: right;
}

.checkout-page #fetchCurrentLocationBtn {
    margin: 0px;
    float: right;
}

@media (max-width: 768px) {
    .checkout-page .checkout-wrapper {
        grid-template-columns: 1fr;
    }

    .checkout-page .pay-now {
        position: sticky;
        bottom: 20px;
    }

    .checkout-page .product-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
@media (min-width: 1200px) and (max-width: 1499px) {
    .front-header-search {
        width: 560px!important;
    }
}