/*================================================
1. Mixins Css
=================================================*/

.top-bar .top-bar-left p a {
    background-size: 88% 2px;
}

.top-bar .search-area .form-inner button {
    border-left: unset;
    border-right: 1px solid var(--primary-color1);
}

.banner1-slider {
    position: relative;
}

.swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.swiper-pagination-bullet {
    background: #fff;
    /* لون النقاط */
    opacity: 0.6;
    transition: 0.3s;
}

.product-card-img {
    position: relative;
    width: 100%;
    height: 300px;
    /* ارتفاع ثابت */
    overflow: hidden;
    /* لقص الصور الزائدة */
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* لتغطية المساحة مع الحفاظ على التناسب */
    transition: transform 0.3s ease;
    /* تأثير حركي اختياري */
}

.view-wishlist-btn {
    border: 1px solid rgba(0, 0, 0, 0.2);
    /* حد أسود شفاف */
    border-radius: 6px;
    /* اختياري: حواف دائرية خفيفة */
    padding: 6px 10px;
    /* اختياري: مساحة داخلية */
    background-color: transparent;
    /* لو الخلفية شفافة */
}

.color-list,
.size-list {
    display: flex;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
}


/* تنسيقات عامة */

.quantity-color-area {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.quantity-color {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* تنسيقات عداد الكمية */

.quantity-counter {
    display: flex;
    align-items: center;
    gap: 5px;
}

.quantity__input {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 5px;
}


/* تنسيقات الألوان */

.color-list {
    display: flex;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    display: block;
}

.color-radio:checked+.color-option {
    border-color: #000;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #000;
}


/* تنسيقات المقاسات */

.size-list {
    display: flex;
    gap: 10px;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.size-option {
    padding: 8px 15px;
    border: 1px solid #ddd;
    cursor: pointer;
    border-radius: 4px;
    display: block;
}

.size-radio:checked+.size-option {
    background-color: #f0f0f0;
    border-color: #000;
    font-weight: bold;
}

.color-option:hover,
.color-option.selected {
    border-color: #000;
}

.size-option {
    padding: 5px 10px;
    border: 1px solid #ddd;
    cursor: pointer;
    border-radius: 4px;
}

.size-option:hover,
.size-option.selected {
    background-color: #f0f0f0;
    border-color: #000;
}

.add-to-wishlist.active i {
    color: red;
}


/* إذا كنت تستخدم صور متعددة (hover effect) */

.product-card-img.double-img .img1 {
    position: absolute;
    top: 0;
    left: 0;
}

.range-slider {
    position: relative;
    width: 100%;
    height: 40px;
}

.range-slider input[type=range] {
    position: absolute;
    left: 0;
    top: 15px;
    pointer-events: none;
    /* لا يمكن التفاعل مع الشرائح من الخلف */
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: #ddd;
    outline: none;
    margin: 0;
    padding: 0;
}


/* المدى الأمامي للحدود */

.range-slider input[type=range]::-webkit-slider-thumb {
    pointer-events: auto;
    position: relative;
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    border: none;
    margin-top: -8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.range-slider input[type=range]:focus::-webkit-slider-thumb {
    background: #0056b3;
}


/* أنماط Firefox */

.range-slider input[type=range]::-moz-range-thumb {
    pointer-events: auto;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.quantity-counter {
    display: flex;
    align-items: center;
    gap: 5px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    padding: 0;
}

.search-results-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 300px;
    overflow-y: auto;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
    z-index: 1050;
    /* قيمه عاليه تكفي لتكون فوق كل العناصر */
}

.menu-list li a {
    font-size: 17px !important;
    /* تكبير الخط */
    padding: 8px 12px;
    display: inline-block;
    transition: all 0.3s ease;
}

.menu-list li.active a {
    font-weight: bold;
}

.order-details-box h5 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #343a40;
    padding-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.order-details-box p,
.order-details-box td,
.order-details-box th {
    font-size: 1rem;
    color: #343a40;
}

.order-details-box table {
    border-collapse: separate !important;
    border-spacing: 0 1em !important;
}

.order-details-box table thead tr th {
    background-color: #f8f9fa !important;
    border-bottom: none !important;
    padding: 1rem !important;
}

.order-details-box table tbody tr {
    background: #fefefe;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
    border-radius: 12px;
}

.order-details-box table tbody tr td {
    padding: 1rem !important;
    vertical-align: middle !important;
}

.order-details-box table tfoot tr td {
    font-weight: 700;
    font-size: 1.1rem;
    color: #212529;
    padding: 1rem !important;
    border-top: 2px solid #343a40 !important;
}


/* طبقة تعتيم */

.order-tracking-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.8);
    /* لون أبيض شفاف */
    z-index: 2;
}


/* اجعل المحتوى فوق الطبقة */

.order-tracking-section>* {
    position: relative;
    z-index: 3;
}

.order-table td,
.order-table th {
    font-size: 14px;
    white-space: nowrap;
    /* تمنع التكسير في الكلمات */
    padding: 10px;
}

.order-table th:nth-child(2),
.order-table td:nth-child(2) {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lang-switcher-float {
    position: fixed;
    top: 30%;
    left: 30px;
    z-index: 99999;
}

.lang-btn {
    background-color: #111;
    color: #fff;
    font-size: 24px;
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    transition: background 0.3s;
}

.lang-btn:hover {
    background-color: #333;
}

.lang-option {
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: 0.4s ease;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}


/* أماكن اللغات حول الأيقونة */

.lang-switcher-float.active .lang-ar {
    transform: translate(30px, -7px);
    opacity: 1;
    pointer-events: all;
}


/* السعر */

.price {
    font-size: 16px;
    margin-top: 5px;
}

.price .old-price {
    color: #888;
    text-decoration: line-through;
    margin-right: 8px;
    font-size: 14px;
}

.price .new-price {
    color: #28a745;
    font-weight: 700;
    font-size: 16px;
}


/* بادج الخصم */

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #dc3545;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
}


/* بادج الجديد */

.new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #007bff;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
}

.loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-with-loader {
    position: relative;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-loading .btn-text {
    opacity: 0.7;
}


/* Rating Stars */

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    margin-left: 5px;
}

.rating-input input:checked~label,
.rating-input label:hover,
.rating-input label:hover~label {
    color: #ffc107;
}

.rating-input input:checked+label:hover,
.rating-input input:checked~label:hover,
.rating-input label:hover~input:checked~label,
.rating-input input:checked~label:hover~label {
    color: #ffc107;
}

.lang-switcher-float.active .lang-he {
    transform: translate(-30px, -100px);
    opacity: 1;
    pointer-events: all;
}

.order-table th:nth-child(1),
.order-table td:nth-child(1) {
    max-width: 130px;
}


/* عناصر النتائج */

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    gap: 12px;
    border-bottom: 1px solid #eee;
    color: #333;
    text-decoration: none;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-result-item:hover {
    background-color: #f0f8ff;
    /* لون هادئ متناسق مع التصميم */
}

.search-result-item img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
}


/* معلومات المنتج */

.result-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result-info .title {
    font-weight: 600;
    color: #222;
}

.result-info .price {
    font-weight: 700;
    color: #28a745;
    margin-top: 4px;
}

.category-card-img {
    width: 100%;
    height: 220px;
    /* أو أي ارتفاع مناسب */
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    background-color: #f9f9f9;
}

.category-card-img img.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.quantity-btn:hover {
    background: #e0e0e0;
}

.quantity-input {
    width: 50px;
    text-align: center;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.range-slider input[type=range]:focus::-moz-range-thumb {
    background: #0056b3;
}

.view-wishlist-btn {
    border: 1px solid rgba(0, 0, 0, 0.2);
    /* حد أسود شفاف */
    border-radius: 6px;
    /* اختياري: حواف دائرية خفيفة */
    padding: 6px 10px;
    /* اختياري: مساحة داخلية */
    background-color: transparent;
    /* لو الخلفية شفافة */
}

.view-product-btn {
    border: 1px solid rgba(0, 0, 0, 0.2);
    /* حد أسود شفاف */
    border-radius: 6px;
    /* اختياري: حواف دائرية خفيفة */
    padding: 6px 10px;
    /* اختياري: مساحة داخلية */
    background-color: transparent;
    /* لو الخلفية شفافة */
}

.product-card-img.double-img .img2 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-img.double-img:hover .img2 {
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #ff4081;
    /* لون النقطة النشطة */
    opacity: 1;
}

.banner-fixed-img {
    width: 100%;
    height: 80vh;
    /* الافتراضي للشاشات الكبيرة */
    object-fit: cover;
    display: block;
}


/* ✅ شاشات صغيرة جدًا (جوالات أقل من 576px) */

@media (max-width: 575.98px) {
    .banner-fixed-img {
        height: 40vh;
    }
}


/* ✅ شاشات جوالات متوسطة (576px إلى 767px) */

@media (min-width: 576px) and (max-width: 767.98px) {
    .banner-fixed-img {
        height: 50vh;
    }
}


/* ✅ شاشات تابلت (768px إلى 991px) */

@media (min-width: 768px) and (max-width: 991.98px) {
    .banner-fixed-img {
        height: 60vh;
    }
}


/* ✅ شاشات لابتوب متوسطة (992px إلى 1199px) */

@media (min-width: 992px) and (max-width: 1199.98px) {
    .banner-fixed-img {
        height: 70vh;
    }
}


/* ✅ شاشات ديسكتوب كبيرة (1200px وأكثر) */

@media (min-width: 1200px) {
    .banner-fixed-img {
        height: 80vh;
    }
}

.top-bar .search-area .form-inner button i {
    transform: rotate(90deg);
}

header .category-dropdown .category-menu ul li.category-has-child i {
    right: unset;
    left: 10px;
    transform: rotate(180deg);
}

header .category-dropdown .category-menu ul li.category-has-child .sub-menu {
    left: -207px;
    right: unset;
}

header .main-menu>ul>li.menu-item-has-children::after {
    left: -15px;
    right: unset;
}

header .main-menu>ul>li.menu-item-has-children.for-dropdown .drop-down::before {
    left: -15px;
    right: unset;
}

header .main-menu>ul>li:last-child {
    margin-right: 38px;
}

@media (max-width: 991px) {
    header .main-menu>ul>li:last-child {
        margin-right: 0;
    }
}

header .main-menu>ul>li:first-child {
    margin-right: 0px;
}

header .nav-right::after {
    left: unset;
    right: -40px;
}

@media (max-width: 1199px) {
    header .nav-right::after {
        display: none;
        visibility: hidden;
    }
}

header .nav-right .dropdown .cart-menu {
    right: unset;
    left: 0;
}

header .nav-right .user-login .modal .modal-content .modal-body .login-registration-form .form-inner i {
    right: unset;
    left: 20px;
    bottom: 16px;
}

@media (max-width: 1199px) {
    header .nav-right {
        padding-left: 0;
    }
}

@media (max-width: 991px) {
    header .nav-right .user-login {
        padding-left: 20px;
    }
}

header .main-menu>ul>li.menu-item-has-children .mega-menu2 .megamenu-wrap {
    display: flex;
}

header .main-menu>ul>li.menu-item-has-children .mega-menu2 .megamenu-wrap .menu-row .menu-single-item a svg {
    transform: rotate(180deg);
}

header .main-menu>ul>li.menu-item-has-children .mega-menu2 .megamenu-wrap .menu-row .menu-single-item {
    padding-right: unset;
    padding-left: 120px;
}

@media (max-width: 991px) {
    header .main-menu>ul>li.menu-item-has-children .mega-menu2 .megamenu-wrap .menu-row .menu-single-item {
        padding-left: 0;
    }
}

header .main-menu>ul>li.menu-item-has-children .mega-menu {
    padding-right: 10px;
    padding-left: 0px;
}

header .main-menu>ul>li.menu-item-has-children .mega-menu2 .megamenu-wrap .all-product svg {
    transform: rotate(180deg);
}

header .main-menu>ul>li.menu-item-has-children .mega-menu .megamenu-wrap::after {
    left: unset;
    right: 55%;
}

header .main-menu>ul>li ul.sub-menu>li .sub-menu {
    left: unset;
    right: 218px;
}

header .main-menu>ul>li ul.sub-menu>li>a {
    text-align: start;
}

header .main-menu>ul>li ul.sub-menu>li .dropdown-icon {
    left: 16px;
    right: unset;
    transform: rotate(180deg);
}

@media (max-width: 991px) {
    header .main-menu {
        left: unset;
        right: 0px;
        border-left: 1px solid #eee;
        border-right: unset;
        transform: translateX(100%);
    }
    header .main-menu ul li a {
        text-align: start;
    }
    header .main-menu>ul>li i {
        right: unset;
        left: 0;
    }
    header .main-menu>ul>li ul.sub-menu>li .dropdown-icon {
        right: unset;
        left: 0;
    }
}

.banner-section .banner-wrapper .banner-left {
    padding: 190px 10% 130px 30px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .banner-section .banner-wrapper .banner-left {
        padding-left: 30px;
        padding-right: 8%;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .banner-section .banner-wrapper .banner-left {
        padding-right: 65px;
        padding-left: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .banner-section .banner-wrapper .banner-left {
        padding: 190px 50px 130px 20px;
    }
}

.banner-section .banner-wrapper .banner-left .banner-content .discount {
    left: unset;
    right: -53px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .banner-section .banner-wrapper .banner-left .banner-content .discount {
        left: -35px;
    }
}

.banner-section .banner-wrapper .banner-left .banner-content .discount img {
    transform: rotate(51deg);
}

.banner-section .banner-wrapper .banner-left .banner-content .discount p {
    transform: rotate(27deg);
    right: 22px;
    left: unset;
}

@media (max-width: 576px) {
    .banner-section .banner-wrapper .banner-left .banner-content .discount {
        transform: rotate(-26deg);
        left: unset;
        right: -10px;
    }
}

.banner-section .banner-wrapper .banner-right-wrapper .banner-right-img::after {
    right: 0;
    left: unset;
    background: linear-gradient(342deg, rgba(252, 247, 238, 0.54) 2.73%, rgba(252, 247, 238, 0.511018) 9.17%, rgba(252, 247, 238, 0) 15.47%);
}

.choose-product-section .choose-product-card .choose-product-card-content.style-2 {
    left: 30px;
    right: unset;
}

.choose-product-section .choose-product-card .choose-product-card-content {
    left: unset;
    right: 30px;
}

.section-title2 .all-product svg {
    transform: rotate(180deg);
}

.section-title2 h3::after {
    left: unset;
    right: 0;
}

.product-card .product-card-img>a .batch {
    left: unset;
    right: 0;
}

.product-card .product-card-img .view-and-favorite-area {
    right: unset;
    left: 7px;
}

.slider-btn i {
    transform: rotate(180deg);
}

.exclusive-product-section .slider-btn i {
    transform: translateY(-50%) rotate(0);
}

.exclusive-product-section .exclusive-product-right .product-right-content .star-bg {
    right: unset;
    left: 15px;
}

.special-offer-section .special-offer-wrapper .slick-wrapper {
    direction: ltr;
}

.special-offer-section .special-offer-wrapper .product-card.style-4 {
    direction: rtl;
}

.special-offer-section .special-offer-wrapper .special-offer-left {
    border-right: none;
    border-left: 1px solid var(--primary-color1);
}

.special-offer-section .special-offer-wrapper .slick-wrapper {
    padding-left: 12px;
    padding-right: unset;
}

.special-offer-section .special-offer-wrapper .slick-wrapper::before {
    content: "";
    position: absolute;
    width: 98.6%;
    left: unset;
    right: 0;
    height: 1px;
    background-color: var(--primary-color1);
    top: 50%;
    transform: translateY(-50%);
}

.special-offer-section .special-offer-wrapper .slick-wrapper .slick-next {
    right: unset;
    left: 0px;
    transform: rotate(180deg);
}

.special-offer-section .special-offer-wrapper .slick-wrapper .slick-prev {
    left: 65px;
    right: unset;
    transform: rotate(180deg);
}

.makeup-section .makeup-content {
    padding-right: 40px;
    padding-left: unset;
}

.article-card .blog-date {
    left: unset;
    right: 0;
}

.article-card .article-card-content .tag ul li::before {
    right: -8px;
    left: unset;
}

.newsletter-section .newsletter-banner .newsletter-content .from-inner {
    flex-direction: row-reverse;
}

.section-title.style-3 h3::after {
    left: unset;
    right: 0;
}

.banner-2-section .banner-2-right .swiper-pagination2 {
    left: 20px;
    right: unset;
}

.section-title3 .view-all svg {
    transform: rotate(180deg);
}

.section-title3 .slider-btn2 i {
    transform: rotate(180deg);
}

.footer-section.style-2 .footer-top .footer-widget .from-inner {
    flex-direction: row-reverse;
}

.breadcrumb-section .breadcrumb-item+.breadcrumb-item::before {
    float: right;
    padding-left: 0.5rem;
    padding-right: unset;
    content: "\f284";
}

.gift-section .gift-wrapper .gift-card-content::before {
    left: unset;
    right: -40px;
}

.brands-section .brands-section-title p::before {
    right: -40px;
    left: unset;
}

.brands-section .brands-section-title p {
    margin-left: unset;
    margin-right: 40px;
    display: inline-block;
}

.category-section .category-section-title p::before {
    right: -60px;
    left: unset;
}

.category-section .category-section-title p {
    margin-left: unset;
    margin-right: 60px;
    display: inline-block;
}

.shop-pagination .pagination-list li .shop-pagi-btn i {
    transform: rotate(180deg);
}

.sidebar-area .shop-widget .search-box button i {
    transform: rotate(90deg);
}

.sidebar-area .shop-widget .shop-item li {
    padding-right: 25px;
    padding-left: 0;
}

.sidebar-area .shop-widget .shop-item li::before {
    left: unset;
    right: 0;
}

.shop-columns-title-section .filter-selector .selector .nice-select::after {
    left: 28px;
    right: unset;
}

.blog-details-section .blog-author-meta .blog-meta .meta ul li::before {
    right: -20px;
    left: unset;
}

.blog-details-section .blog-author-meta .blog-meta .meta ul li {
    margin-right: 0;
    margin-left: 40px;
}

.blog-details-section .blog-author-meta .blog-meta .meta ul li:last-child {
    margin-right: 0;
    margin-left: 0;
}

.blog-details-section .blog-author-meta .blog-meta .tag {
    margin-left: 40px;
    margin-right: 0;
}

.blog-details-section .blog-author-meta .blog-meta .tag ul li::before {
    left: unset;
    right: -8px;
}

.blog-details-section .blog-details-navigation .single-navigation .nav-icon svg {
    transform: rotate(180deg);
}

.shop-columns-title-section .filter-selector .selector.two {
    padding-right: unset;
    padding-left: 15px;
}

.shop-columns-title-section .filter-selector .selector {
    margin-right: unset;
    margin-left: 20px;
}

.shop-columns-title-section .filter-selector .selector.two .nice-select::after {
    right: unset;
    left: 0;
}

.nice-select.open .list .option {
    text-align: start;
}

.sidebar-area.style-2 .filter-divider::after {
    right: unset;
    left: 0;
}

.product-card .product-card-img .view-and-favorite-area>ul {
    transform-origin: left;
}

.filter-top .selector .nice-select::after {
    right: unset;
    left: 28px;
}

.filter-top .price-filter-dropdown .price-selector {
    padding-left: 25px;
    padding-right: 25px;
}

.filter-top .price-filter-dropdown .price-selector::after {
    right: unset;
    left: 28px;
}

.form-wrapper .form-inner i {
    right: unset;
    left: 20px;
}

.form-wrapper .nice-select::after {
    right: unset;
    left: 20px;
}

.dashboard-section .nav .nav-link svg {
    margin-left: 10px;
    margin-right: 0px;
}

.table-title-area .nice-select {
    padding-left: 55px;
    padding-right: 25px;
}

.table-title-area .nice-select::after {
    right: unset;
    left: 28px;
}

.checkout-section .form-wrap .form-inner .nice-select {
    text-align: start !important;
}

.checkout-section .form-wrap .form-inner .nice-select::after {
    right: unset;
    left: 28px;
}

.checkout-section .payment-methods .payment-list li .checked {
    left: unset;
    right: -25px;
}

.checkout-section .payment-methods .payment-list li {
    margin-left: 0;
    margin-right: 25px;
}

.form-check {
    padding-right: 0;
}

.checkout-section .payment-methods .payment-form-bottom input[type=checkbox],
.checkout-section .payment-methods .payment-form-bottom .form-inner textarea[type=checkbox],
.form-inner .checkout-section .payment-methods .payment-form-bottom textarea[type=checkbox],
.checkout-section .payment-methods .payment-form-bottom .comment-section .contact-form textarea[type=checkbox],
.comment-section .contact-form .checkout-section .payment-methods .payment-form-bottom textarea[type=checkbox] {
    margin-left: 10px;
    margin-right: 2px;
}

.shop-details-description.style-2 .shop-details-description-tab {
    border-left: unset;
    border-right: 1px solid var(--primary-color1);
    padding-right: 30px;
    padding-left: 0;
}

.shop-details-top-section .shop-details-img.style-2 .exclusive-slider .slider-btn i {
    transform: rotate(0);
}

.product-full-width-section .slider-btn .pt-full-prev-btn i {
    transform: rotate(0);
}

.page-load-modal .modal .modal-dialog .modal-content .modal-body .popup-wrapper {
    gap: 0;
}

.page-load-modal .modal .modal-dialog .modal-content .modal-body .popup-wrapper .popup-content {
    /* padding-right: 35px; */
    padding: 30px;
}

.page-load-modal .modal .modal-dialog .modal-content .modal-body .popup-wrapper .popup-content .from-inner {
    flex-direction: row-reverse;
}

.banner-2-section .banner-2-right .banner-2-right-img-bg .banner-2-right-content {
    padding: 185px 40px 187px 40px;
}

@media (max-width: 1499px) {
    .banner-2-section .banner-2-right .banner-2-right-img-bg .banner-2-right-content {
        padding: 130px 40px 167px 40px;
    }
}

@media (max-width: 1399px) {
    .banner-2-section .banner-2-right .banner-2-right-img-bg .banner-2-right-content {
        padding: 185px 40px 187px 40px;
    }
}

@media (max-width: 767px) {
    .banner-2-section .banner-2-right .banner-2-right-img-bg .banner-2-right-content {
        padding: 100px 20px 80px;
    }
}

.banner-2-section .banner-2-right .banner-2-right-img-bg .banner-2-right-content {
    max-width: 540px;
}

.brand-section .section-title3 {
    border-right: unset;
    border-left: 1px solid var(--primary-color1);
}

.brand-section .brand-divider::after {
    right: unset;
    left: 0;
}

.testimonial-section .testimonial-card::after {
    bottom: -21px;
}

.shop-pagination .pagination-list li:first-child {
    margin-left: 30px;
    margin-right: 0;
}

.shop-pagination .pagination-list li {
    margin-left: 20px;
    margin-right: 0px;
}

header .category-dropdown .category-menu>ul>li.category-has-child .sub-menu li a {
    text-align: start;
}


/*# sourceMappingURL=style-rtl.css.map */