/* Variables */
:root {
    --main-color: #182045;
    --secondary-color: #c79b07;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --main-font: "Cairo", sans-serif;
    --secondary-font: "Sora", sans-serif;
    --main-height: 100vh;
    --main-padding-top: 100px;
    --main-padding-bottom: 100px;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Body */

body {
    font-family: var(--main-font);
    background-color: #fff;
    color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Start Navbar Style */
.nav-item {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--main-color);
}

.nav-link.active {
    color: var(--secondary-color) !important;
}

.btn-gradient {
    background: linear-gradient(to top, #957507 0%, #ecb90e 100%);
    color: var(--light-color);
    border: none;
}

.btn-gradient:hover {
    opacity: 0.9;
    color: var(--light-color) !important;
}

.btn-login,
.btn-register {
    padding: 10px 24px;
    font-size: 1.3rem;
    font-weight: 500;
    border-radius: 5px;
}

.btn-register {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-register:hover {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.navbar-toggler:focus {
    box-shadow: unset;
}

/* End Navbar Style */

/* Start Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 715px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to left,
        rgba(199, 155, 7, 1) 0%,
        rgba(199, 155, 7, 0.63) 25%,
        rgba(199, 155, 7, 0.44) 38%,
        rgba(199, 155, 7, 0.25) 50%,
        rgba(199, 155, 7, 0.13) 75%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: right;
    padding: 0 5%;
    color: #fff;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
}

.hero-title span {
    color: var(--main-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    text-align: right;
}

.hero-section .btn {
    padding: 10px 24px;
    font-size: 1.3rem;
    font-weight: 500;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .hero-section {
        height: 500px;
    }

    .hero-title {
        font-size: 1.8rem;
        text-align: right;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        padding: 0 10px;
    }

    .hero-section .btn {
        font-size: 1.1rem;
        padding: 8px 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 400px;
    }

    .hero-title {
        font-size: 1.5rem;
        text-align: right;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-section .btn {
        font-size: 1rem;
        padding: 6px 16px;
    }
}

/* End Hero Section */

/* Start Auction Section */
.auction-title {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--main-color);
}

.auction-image-wrapper {
    width: 100%;
    height: 426px;
    overflow: hidden;
    border-radius: 8px;
}

.auction-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auction-details p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--main-color);
}

.time-box {
    background: #fff;
    border: 1px solid var(--secondary-color);
    border-radius: 15px;
    padding: 8px 28px;
    text-align: center;
}

.time-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--main-color);
    display: block;
}

.time-label {
    font-size: 1rem;
    color: var(--main-color);
    font-weight: 400;
}

.time-separator {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0d1b2a;
    display: flex;
    align-items: center;
}

.auction-info span {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(24, 32, 69, 0.5);
    margin-right: 4rem;
}

.auction-value {
    font-size: 1.3rem !important;
    font-weight: 400 !important;
    color: var(--main-color) !important;
    margin-left: 4rem;
    margin-right: 0 !important;
}

.auction-details a {
    padding: 10px 24px;
    font-size: 1.3rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .auction-image-wrapper {
        height: 300px;
    }

    .time-value {
        font-size: 1.8rem;
    }

    /* .time-label {
        font-size: 0.8rem;
    } */

    .auction-details {
        margin-top: 0 !important;
    }

    .time-box {
        padding: 4px 15px;
    }

    .auction-info {
        margin-top: 0 !important;
    }

    .auction-section {
        padding: 0 !important;
    }
}

@media (max-width: 480px) {
    .auction-image-wrapper {
        height: 220px;
    }

    .time-value {
        font-size: 1.2rem;
    }

    .time-label {
        font-size: 0.8rem;
    }
}

/* End Auction Section */

/* Start Categories Section */
.categories-section .section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--main-color);
}

.btn-all {
    color: #af2b27;
    border: none;
    background-color: transparent;
    font-size: 1.3rem;
    font-weight: 400;
}

.btn-all:hover {
    color: #af2b27;
}

.category-card img {
    width: 100%;
    height: 124px;
    /* ارتفاع ثابت عشان الشكل يبقى موحد */
    object-fit: cover;
    border-radius: 15px;
    /* رديوس بسيط */
    transition: transform 0.3s ease;
}

.category-card img:hover {
    transform: scale(1.05);
    /* انيميشن بسيط عند الهوفر */
}

.category-name {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--main-color);
}

/* End Categories Section */

/* Start AuctionsSlider Section */
.auction-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.auction-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.auction-card h6 {
    font-size: 1.1rem;
    color: #000;
    font-weight: 500;
}

.auction-card .auc-img {
    object-fit: cover;
    width: 100%;
    height: 169px;
    border-radius: 15px;
}

.auction-card img.flag-img {
    width: 36px;
    height: 24px;
    object-fit: contain;
    border-radius: 2px;
}

.auc-num {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--main-color);
}

.title-auc {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(24, 32, 69, 0.7);
}

.count-auc {
    font-family: "Cambay", sans-serif !important;
    font-size: 1.3rem !important;
    font-weight: 400 !important;
    color: #af2b27 !important;
}

.count-auc span {
    font-family: var(--main-font);
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(24, 32, 69, 0.5);
}

.btn-price {
    background-color: var(--secondary-color);
    border-radius: 5px;
    padding: 2px 12px;
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
}

.btn-price:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.custom-swiper-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
}

/* .swiper-button-next {
    right: 92% !important;
}

.swiper-button-prev {
    right: 7% !important;
} */

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none !important;
}

.auction-slider {
    position: relative;
    overflow: visible;
}

.custom-swiper-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 90px) !important;
    right: auto;
}

.swiper-button-next {
    right: var(--swiper-navigation-sides-offset, 90px) !important;
    left: auto;
}

html[dir="ltr"] .swiper-button-prev img,
html[dir="ltr"] .swiper-button-next img {
    transform: rotate(180deg);
}

html[dir="rtl"] .swiper-button-prev img,
html[dir="rtl"] .swiper-button-next img {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .swiper-button-prev {
        left: var(--swiper-navigation-sides-offset, 5px) !important;
        right: auto;
    }

    .swiper-button-next {
        right: var(--swiper-navigation-sides-offset, 5px) !important;
        left: auto;
    }
}

/* End AuctionsSlider Section */

/* Start Top Auctions Section */
.top-auction .custom-card {
    padding: 40px !important;
    border-radius: 15px !important;
    background-color: rgba(24, 32, 69, 0.05);
}

.top-auction .custom-card h5 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--main-color);
}

.top-auction .custom-card h6 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--main-color);
    text-decoration: underline;
}

.top-auction .custom-card p {
    font-size: 1.5rem;
    font-weight: 600;
}

.top-auction .custom-card .btn-gradient {
    padding: 10px 24px;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--main-color);
}

.crown-icon {
    width: 40px;
    height: 40px;
}

.topauction-img {
    width: 192px;
    height: 239px;
    object-fit: cover;
    border: 1px solid var(--main-color);
    border-radius: 30px;
}

.side-ad-img {
    height: 444px;
    width: auto;
    object-fit: cover;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .topauction-img {
        width: 120px;
        height: 150px;
        margin-bottom: 1rem;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block;
    }

    .custom-card .d-flex.align-items-center.mb-3:nth-of-type(2) {
        flex-direction: column;
        text-align: center;
    }

    .custom-card .d-flex.align-items-center.mb-3:nth-of-type(2) > div {
        margin-top: 10px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .custom-card .btn-gradient {
        width: 100% !important;
    }

    .side-ad-img {
        height: auto;
        max-height: 300px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .crown-icon {
        width: 28px;
        height: 28px;
    }

    .top-auction .custom-card h5 {
        font-size: 1.2rem;
    }
}

/* End Top Auctions Section */

/* Start How Participate Section */
.first-step,
.second-step,
.third-step {
    padding: 40px;
    border-radius: 5px;
}

.first-step,
.third-step {
    background-color: rgba(199, 155, 7, 0.2);
}

.second-step {
    background-color: rgba(175, 43, 39, 0.2);
}

.step-number,
.step-number-red {
    padding: 6px 16px;
    background-color: rgba(199, 155, 7, 0.25);
    border-radius: 100px;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-number-red {
    background-color: #af2b27;
    color: #fff;
}

.first-step h5,
.third-step h5,
.second-step h5 {
    font-size: 1.5rem;
    color: var(--main-color);
    font-weight: 600;
}

.first-step p,
.third-step p,
.second-step p {
    font-size: 1.3rem;
    color: var(--main-color);
    font-weight: 400;
}

.title-participate h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--main-color);
}

/* End How Participate Section */

/* Start Statics Section */
.statics {
    background-color: rgba(243, 244, 246, 1);
}

.stat-number {
    font-family: "Changa", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--main-color);
}

.statics p {
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(24, 32, 69, 0.5);
}

/* End Statics Section */

/* Start Footer Section */
footer {
    background-color: var(--main-color);
    padding: 48px 120px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
}

.footer-list .list-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #a0a0a0;
    margin-bottom: 12px;
    position: relative;
    padding-right: 15px;
}

.footer-list .list-title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

@media (max-width: 768px) {
    footer {
        padding: 32px 16px;
    }

    footer .row:first-child {
        text-align: center;
    }

    footer .row:first-child .col-md-6 {
        display: none;
    }

    footer .row:first-child .col-md-3 {
        margin-bottom: 1rem;
    }

    footer .d-flex.justify-content-center.justify-content-md-end {
        justify-content: center !important;
    }

    .footer-list {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-list:last-child {
        margin-bottom: 0;
    }

    .footer-list .list-title {
        padding-right: 0;
    }

    .footer-list .list-title::after {
        display: none;
    }
}

/* End Footer Section */

/* Route About Us */
.about-hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.about-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 32, 69, 0.55);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 10%;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.about-hero-title span {
    color: var(--secondary-color);
}

.about-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 800px;
}

.our-story {
    padding: 48px 56px;
    border-radius: 15px;
    background-color: rgba(24, 32, 69, 0.05);
}

.our-story h3,
.our-values h3 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--main-color);
}

.our-story p {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--main-color);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--main-color);
}

.feature-text {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(24, 32, 69, 0.5);
}

/* End About Us Route */

/* End Contact Us Route */
.contact-info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--main-color);
}

.contact-info {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--main-color);
}

.form-contact {
    background-color: rgba(24, 32, 69, 0.05);
    padding: 32px;
    border-radius: 5px;
}

.form-contact input {
    padding: 12px 16px;
    border-radius: 5px;
    text-align: right;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.02);
    box-shadow: unset !important;
    border-color: transparent !important;
}

.form-contact textarea {
    box-shadow: unset !important;
    border-color: transparent !important;
}

.form-contact .btn-gradient,
.form-login .btn-gradient {
    padding: 10px 24px;
    font-size: 1.3rem !important;
    font-weight: 500 !important;
    color: var(--main-color) !important;
}

/* End Contact Us Route */

/* Start Terms Route */
.terms h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--main-color);
}

.terms-info {
    padding: 24px 40px;
    border: 1px solid rgba(24, 32, 69, 0.25);
    border-radius: 5px;
}

.terms-info h4 {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--main-color);
}

.terms-info p {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--main-color);
}

.terms-list {
    list-style-type: square;
    padding-right: 1.2rem;
    color: var(--main-color);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
}

.terms-list li {
    margin-bottom: 0.5rem;
}

/* End Terms Route */

/* Start Login Form Style */
.form-login,
.form-signup {
    padding: 32px 48px;
    border-radius: 15px;
    background-color: rgba(24, 32, 69, 0.05);
    max-width: 715px;
}

.form-login h4,
.form-signup h4 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--main-color);
}

.form-login p,
.form-signup p {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(24, 32, 69, 0.5);
}

.form-login input {
    padding: 12px 16px !important;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.02);
}

.form-login input:focus,
.form-login select:focus {
    box-shadow: unset !important;
    border: 1px solid var(--secondary-color);
}

.iti {
    width: 100% !important;
}

#phone {
    padding-right: 110px !important;
    direction: ltr;
}

#password {
    text-align: right !important;
}

[dir="rtl"] #phone {
    padding-right: 110px !important;
    padding-left: 10px !important;
    text-align: right !important;
}

.iti__selected-flag {
    background: rgba(199, 155, 7, 0.15) !important;
    width: 95px !important;
    height: 35px !important;
    padding: 4px 8px !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
    margin: 2px;
    box-sizing: border-box !important;
    margin-top: 0.5rem;
}

.iti__flag {
    transform: scale(1.2);
    border-radius: 3px;
}

.iti__arrow {
    margin-left: 6px;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
    right: 0 !important;
    left: auto !important;
}

.text-warning {
    color: var(--secondary-color) !important;
    font-size: 1.1rem;
    font-weight: 400;
}

.forget {
    color: #000;
}

@media (max-width: 576px) {
    .iti__selected-flag {
        width: 90px !important;
        height: 30px !important;
        padding: 3px 6px !important;
    }

    .iti__flag {
        transform: scale(1);
    }

    .iti__country-list {
        left: 30px !important;
    }

    .form-login {
        margin: 0 0.8rem;
    }
}

@media (max-width: 400px) {
    .iti__selected-flag {
        width: 90px !important;
        height: 28px !important;
        font-size: 12px;
    }
}

/* End Login Form Style */

/* Start Login Signup Style */
.form-signup {
    background-color: transparent !important;
    box-shadow: unset !important;
}

.choose-btn {
    padding: 16px 40px;
    border: 1px solid rgba(24, 32, 69, 0.08);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08);
    background-color: #fff;
    border-radius: 6px;
    transition: all 0.35s ease-in-out;
    position: relative;
    overflow: hidden;
}

.choose-btn:hover {
    border: 1px solid var(--secondary-color);
    background-color: rgba(199, 155, 7, 0.15);
    box-shadow: 0 8px 20px rgba(199, 155, 7, 0.35);
    transform: translateY(-4px) scale(1.02);
}

.choose-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(199, 155, 7, 0.2),
        transparent
    );
    transition: all 0.5s;
}

.choose-btn:hover::after {
    left: 100%;
}

.choose-btn h5,
.re-account {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--main-color);
}

.choose-btn p {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(24, 32, 69, 0.5);
}

/* End Login Signup Style */

/* Start Style Categories Route */

/* Start Categories Page */
.main-category h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--main-color);
}

.main-category .card-category {
    border-radius: 15px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.12);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: pointer;
}

.main-category .card-category:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.main-category .card-category .card-img-top {
    height: 238px;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transition: filter 0.3s ease;
}

.main-category .card-category:hover .card-img-top {
    filter: brightness(0.9);
}

.main-category .card-category .card-body {
    padding: 16px;
}

.main-category .card-category .card-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--main-color);
}

.main-category .card-category .auction-count {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--main-color);
}

/* End Categories Page */

/* Start Auctions Page */
.filter-box {
    padding: 24px;
    background-color: rgba(24, 32, 69, 0.08);
    border-radius: 5px;
}

.filter-box .search input,
.filter-box .choose-category {
    padding: 10px 24px;
    border-radius: 15px;
    background-color: #fff;
    border: none;
    box-shadow: unset !important;
}

.filter-box input:focus,
.accordion-button:focus {
    border: none !important;
    outline: none !important;
    box-shadow: unset !important;
}

.filter-box .search-btn {
    background-color: #fff;
    border-radius: 15px;
}

.accordion-button::after {
    display: none !important;
}

.accordion-item,
.filter-box .choose-category {
    border-radius: 15px !important;
}

.form-check-input[type="radio"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;

    width: 18px;
    height: 18px;
    border: 1px solid var(--main-color);
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    cursor: pointer;

    background-image: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.form-check-input[type="radio"]:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.form-check-input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.form-check label {
    font-size: 1rem;
    font-weight: 400;
    color: var(--main-color);
}

.title-search {
    font-size: 1.1rem;
    font-weight: 400 !important;
    color: var(--main-color);
}

#priceSlider {
    height: 10px;
    margin: 30px 0;
}

#priceSlider .noUi-connect {
    background: var(--secondary-color);
    border-radius: 10px;
}

#priceSlider .noUi-handle {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #fff;
    border: 6px solid var(--secondary-color);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: grab;
}

#priceSlider .noUi-handle:active {
    cursor: grabbing;
}

.noUi-handle:after,
.noUi-handle:before {
    display: none !important;
}

.noUi-tooltip {
    border: none !important;
    background-color: transparent !important;
}

/* .filter-box #collapseCategory {
    max-height: 305px;
    overflow-y: auto;
    overflow-x: hidden;
} */

.simplebar-track.simplebar-vertical {
    right: auto !important;
    left: 0 !important;
    background: rgba(24, 32, 69, 0.15);
    width: 8px;
}

.simplebar-scrollbar::before {
    background-color: var(--secondary-color) !important;
    border-radius: 0 !important;
    opacity: 1 !important;
}

.form-check-input[type="checkbox"] {
    border-radius: 2 !important;
    width: 1.1em;
    height: 1.1em;
    cursor: pointer;
}

.form-check-input[type="checkbox"]:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* End Auctions Page */

/* End Style Categories Route */

/* Start Style Profile (phase 5) Route */
.profile-info {
    height: 100vh;
    background-color: rgba(24, 32, 69, 0.05);
    padding: 30px 40px;
}

.stars i {
    font-size: 1.5rem !important;
}

.stars .fa-solid.fa-star,
.stars .fa-solid.fa-star-half-stroke,
.stars .fa-regular.fa-star {
    color: rgba(254, 165, 0, 1);
}

.rate {
    font-size: 2rem;
    font-weight: bold;
    color: rgba(254, 165, 0, 1);
}

.profile-info h4,
.location span {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--main-color);
}

.profile-info .btn-submit .btn-gradient {
    padding: 8px 24px;
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff !important;
}

.auction-info-filter {
    border-radius: 15px;
    border: 1px solid rgba(24, 32, 69, 0.25);
    overflow: hidden;
    padding: 0 !important;
}

.filter-btn {
    background: #fff;
    border: none;
    border-right: 1px solid rgba(24, 32, 69, 0.25);
    padding: 16px 24px;
    font-size: 1.5rem;
    font-weight: 600;
    transition: 0.3s;
    color: #000;
    border-bottom: 1px solid rgba(24, 32, 69, 0.25);
}

.filter-btn:last-child {
    border-right: 1px solid rgba(24, 32, 69, 0.25);
}

.filter-btn.active {
    background: #f8f9fa;
}

.filter-btn:hover {
    background: #f1f1f1;
}

.auction-card {
    overflow: hidden;
}

.auction-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.6);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 5;
}

.overlay-text {
    background: rgba(175, 43, 39, 1);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 6px 12px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.win-user {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--main-color);
}

.btn-back {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--main-color);
    border: none !important;
    outline: none !important;
}

.btn-back:hover {
    color: var(--main-color);
}

.list-group-forms {
    list-style-type: none;
}

.list-group-item-forms {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    padding: 16px 32px;
    border-radius: 15px;
    background-color: rgba(24, 32, 69, 0.05);
    border: none !important;
    width: 300px;
}

.list-group-item-forms button {
    outline: none !important;
    box-shadow: unset !important;
    border-color: transparent !important;
}

.profile-forms .form-login {
    max-width: 100%;
}

.profile-forms h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--main-color);
}

.profile-forms .form-login .btn-gradient {
    font-size: 1.3rem;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .profile-forms .form-login .btn-gradient {
        width: 100% !important;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .profile-info .text-center img {
        width: 90px;
        height: 90px;
    }

    .stars i {
        font-size: 1rem !important;
    }

    .rate {
        font-size: 1.5rem !important;
    }

    .location span {
        font-size: 0.8rem !important;
    }

    .location img {
        width: 16px !important;
    }

    .location {
        margin: 0 !important;
        height: 60px;
    }

    .profile-info .btn-submit .btn-gradient {
        padding: 5px !important;
        width: 100% !important;
        font-size: 0.8rem;
    }

    .auction-card h6 {
        font-size: 0.8rem;
    }

    .auction-card img.flag-img {
        width: 24px;
        height: 15px;
    }

    .auction-card .auc-img {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .filter-btn {
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .filter-btn {
        padding: 10px;
    }
}

/* End Style Profile (phase 5) Route */

/* Start Style Upload (phase 6) Route */

.step-bar {
    text-align: center;
    border-radius: 8px;
    background-color: rgba(199, 155, 7, 0.2);
    color: #fff;
    font-weight: bold;
    transition: all 0.3s ease;
    height: 10px;
}

.step-bar.active {
    background-color: rgba(199, 155, 7, 1);
}

.flex-fill h6 {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(24, 32, 69, 0.4);
}

.upload-box {
    background-color: #f8f9fa;
    transition: 0.3s;
    height: 384px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 0 !important;
}

.upload-placeholder {
    z-index: 1;
}

.image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 2;
    height: 100%;
}

.uploaded-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.change-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    cursor: pointer;
    transition: 0.3s;
}

.image-wrapper:hover .change-overlay {
    opacity: 1;
}

.border-dashed {
    border-style: dashed !important;
}

.cursor-pointer {
    cursor: pointer;
}

.details-form h5 {
    font-size: 2rem;
    font-weight: 500;
    color: #000;
}

.details-form input,
.details-form select,
.details-form textarea {
    padding: 16px;
    border-radius: 5px;
    background-color: rgba(24, 32, 69, 0.05);
    border: none !important;
    outline: none !important;
    box-shadow: unset !important;
    transition: all 0.5s;
}

.details-form input:focus,
.details-form textarea:focus {
    background-color: rgba(24, 32, 69, 0.05) !important;
}

.details-form .nextStep {
    padding: 10px 24px;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--main-color);
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
    appearance: none;
}

input[type="datetime-local"]::-webkit-clear-button {
    display: none;
    -webkit-appearance: none;
    appearance: none;
}

#endTimeInput {
    padding-right: 28px !important;
}

.details-form .iti--allow-dropdown .iti__flag-container {
    right: auto !important;
    left: 0 !important;
}

.details-form .iti__selected-flag {
    background-color: transparent !important;
}

.details-form .iti__country-list {
    text-align: right !important;
}

.ticket-alert {
    background-color: rgba(24, 32, 69, 1);
    padding: 14px 16px;
}

.ticket-alert h4 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
}

/* End Style Upload (phase 6) Route */

/* If You User (header Style) */
.notif-panel {
    position: absolute;
    top: 100%;
    right: -300%;
    width: 340px;
    max-width: 90vw;
    max-height: 400px;
    background: #fff;
    border-radius: 10px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
}

.notif-list {
    flex-grow: 1;
    overflow: auto;
}

.notif-list::-webkit-scrollbar {
    display: none;
}

@media (max-width: 400px) {
    .notif-panel {
        width: 95vw;
        right: 5px;
    }
}

.notif-item:hover {
    background-color: #f8f9fa;
    cursor: pointer;
}

.nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 500;
}

.nav-tabs .nav-link.active {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    background: transparent;
}

.send-notif {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--main-color);
}

.message-content,
.notif-content {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--main-color);
    position: relative;
}

.message-content::after {
    content: "";
    position: absolute;
    background-color: rgba(221, 222, 225, 1);
    height: 70%;
    width: 2%;
    right: -4%;
    top: 25%;
    border-radius: 5px;
}

.time-notif {
    color: rgba(165, 172, 184, 1);
    font-size: 0.8rem;
    font-weight: 400;
}

/* Start Chat Style */

.chat-box {
    position: fixed;
    bottom: 0;
    right: 20px;
    width: 345px;
    height: 380px;
    background: #fff;
    border-radius: 15px 15px 0 0;
    border: 1px solid rgba(24, 32, 69, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
}

.chat-header {
    background: rgba(24, 32, 69, 0.05);
    padding: 8px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-username {
    font-size: 1.3rem;
    font-weight: 500;
    color: #000;
}

.chat-close {
    border: none;
    background: none;
    font-size: 2rem;
    cursor: pointer;
    color: rgba(24, 32, 69, 0.25);
}

.chat-body {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    background: #fff;
}

.message {
    width: fit-content;
    padding: 8px;
    margin: 6px 0;
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 400;
    color: var(--main-color);
}

.sent {
    background: rgba(24, 32, 69, 0.04);
    align-self: flex-start;
    border-radius: 12px 12px 0 12px;
}

.received {
    background: rgba(24, 32, 69, 0.15);
    align-self: flex-end;
    border-radius: 12px 12px 12px 0;
}

.chat-footer {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-top: 1px solid #ddd;
    background: rgba(24, 32, 69, 0.05);
}

.chat-input {
    flex: 1;
    border: none;
    outline: none;
    /* padding: 8px; */
    font-size: 1rem;
    background-color: transparent;
}

.chat-send {
    border: none;
    background: none;
    cursor: pointer;
    padding: 4px;
    /* color: #555; */
}

/* End Chat Style */

/* Youssef */
.pagination .active > .page-link,
.page-link.active {
    color: #000 !important;
    background-color: var(--secondary-color) !important;
    border-color: var(--main-color) !important;
}

.pagination .page-link {
    color: var(--main-color) !important;
    border-color: var(--main-color) !important;
    border-radius: 0px !important;
}

#input-min,
#input-max {
    padding: 0.15rem 0.15rem !important;
}

.applayFilter {
    background-color: var(--main-color);
    color: #f7f7f7;
}

.resetFilter {
    background-color: var(--secondary-color);
    color: #f7f7f7;
}

.applayFilter:hover {
    background-color: var(--secondary-color);
    border-color: var(--main-color);
    color: var(--main-color);
}

.resetFilter:hover {
    background-color: var(--main-color);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

/* Tickets Styles Ezz */
/* .tickets {
    background-color: rgba(27, 29, 26, 1);
} */

.our-packages {
    padding-bottom: var(--main-padding-bottom);
}

.our-packages .toggle-btn {
    background-color: var(--secondary-color);
    color: var(--font-color);
    padding: 4px 24px;
    min-width: 120px;
    transition: all 0.3s ease;
    font-size: 20px;
}

.our-packages .toggle-btn.active {
    background-color: var(--main-color);
    color: var(--secondary-color);
}

.our-packages .custom-card {
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid transparent;
}

.our-packages .custom-card:hover {
    border: 1px solid var(--main-color);
}

.image-wrapper {
    position: relative;
}

.price {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background-color: var(--main-color);
    color: var(--secondary-color);
    font-family: var(--title-font);
    font-weight: bold;
    font-size: 16px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    text-align: center;
    line-height: 1.2;
    border: 1px solid var(--secondary-color);
}

.price .old-price {
    text-decoration: line-through;
    text-decoration-color: #222;
    font-size: 14px;
    opacity: 0.8;
}

.price .new-price {
    font-size: 18px;
    color: #fff;
}

.our-packages .custom-card img {
    width: 100%;
    height: 256px;
    object-fit: cover;
}

.our-packages .custom-card-body {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    background-color: var(--main-color);
}

.our-packages .custom-card-list {
    max-height: 270px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--main-color) transparent;
}

.our-packages .custom-card-list::-webkit-scrollbar {
    width: 6px;
}

.our-packages .custom-card-list::-webkit-scrollbar-track {
    background: transparent;
}

.our-packages .custom-card-list::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}

.our-packages .custom-card-title {
    font-family: var(--title-font);
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.our-packages .custom-card-list {
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: left;
}

.our-packages .custom-card-list li {
    font-family: var(--title-font);
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 400;
    text-align: center !important;
}

.our-packages .btn-join {
    color: var(--secondary-color);
    font-family: var(--title-font);
    font-size: 1.5rem;
    background: linear-gradient(178deg, var(--main-color), rgba(26, 29, 26, 1));
    font-weight: 500;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
    margin-top: auto;
    border: 1px solid var(--secondary-color);
}

.our-packages .btn-join:hover {
    background: linear-gradient(178deg, #c79b073b, rgba(26, 29, 26, 1));
    color: var(--light-color);
}

.our-packages .swiper-slide {
    display: flex;
    justify-content: center;
    height: auto;
}

.our-packages .swiper-slide .custom-card {
    width: 100%;
    max-width: 360px;
    height: 100%;
}

.packages-swiper .swiper-button-next,
.packages-swiper .swiper-button-prev {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.packages-swiper .swiper-button-next {
    right: 10px !important;
    left: auto !important;
}

.packages-swiper .swiper-button-prev {
    left: 10px !important;
    right: auto !important;
}

.absolute {
    background-color: rgb(200 157 13);
    color: white;
}

#app {
    z-index: 100;
    position: relative;
}
