html {
    height: max-content;
    max-height: max-content;
    position: relative;
}

body {
    font-family: "SST-ARABIC-ROMAN" !important;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    padding-top: 153px;
    height: max-content;
    max-height: max-content;
}


.overflow {

    overflow: hidden;
}

:root {
    --main-color: #2D8E36;
    --main-hover: #E13612;


}

.chat-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 0;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 3px 6px #66A61B80;
    color: #fff;
    font-size: 30px;
    background-color: var(--main-color);
    position: fixed;
    z-index: 9999;
    bottom: 10px;
    inset-inline-start: 10px;
    text-decoration: none;
    transition: 0.5s;
}

.chat-btn:hover {
    color: #fff;
    text-decoration: none;
}

.chat-btn i {
    width: 30px;
    height: 33px;
    align-items: flex-end;
    display: flex;

}

.chat-btn::after {
    display: flex;
    background-color: var(--main-color);
    opacity: 0.102;
    border-radius: 300px;
    height: 58px;
    width: 58px;
    animation: pulsate 2s ease-out;
    animation-iteration-count: infinite;
    opacity: 0;
    content: "";
    z-index: -1;
    margin: auto;
    position: absolute;
    top: 0;
    left: -5px;
    right: -5px;
    bottom: 0;
}

.chat-btn:focus {
    border: 0;
    outline: none;
}

@keyframes pulsate {
    0% {
        transform: scale(0.1, 0.1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

img {
    image-rendering: -webkit-optimize-contrast;
}

/*style scroll bar*/
/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--main-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--main-hover);
}

/*preloader*/
.preloader {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.progress {
    position: fixed;
    z-index: 99999;
    top: 0;
    width: 100%;
    height: 5px;
    background-color: #f7f7f7;
    background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
    background-repeat: repeat-x;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
    overflow: hidden;
}

.progress-bar {
    animation: progress 6s ease infinite;
    padding: 1px;
    color: rgba(255, 255, 255, 100);
    background-image: linear-gradient(135deg,
    var(--main-hover),
    var(--main-color));
    /* border-radius: 4px 4px 4px 4px; */
}

html[dir="ltr"] .progress-bar {
    background-image: linear-gradient(135deg,
    var(--main-color),
    var(--main-hover));
}

@keyframes progress {
    from {
        width: 0;
        color: rgba(255, 255, 255, 0);
    }

    to {
        width: 100%;
        color: rgba(255, 255, 255, 1);
    }
}

/*preloader*/
/*                          header section                     */
/*                          dropdown                            */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    /* display: none; */
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: #fff;
    color: var(--sec-color);
    text-align: center;
    min-width: 120px;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.11);
    border-radius: unset;
    z-index: 300;
    top: 38px;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 0;
    transition: all 0.3s ease-in-out;
}

.dropdown-content::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
    opacity: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: var(--sec-color);
    padding: 5px 15px;
    text-decoration: none;
    display: block;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.dropdown-content a:hover {
    color: var(--main-hover);
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    /* display: block; */
    visibility: visible;
    opacity: 1;
}


.language-anchor {
    font-size: 14px;
    color: #4B5256;
    text-decoration: none;
    transition: 0.5s;
}

.language-anchor:hover {
    color: var(--main-hover);
    text-decoration: none;
}

.menu-item-has-children a::after {
    content: "";
    font-family: "Line Awesome Free";
    font-size: 10px;

    font-weight: 700;
}

.sub-menu a::after {
    content: "";

}

/*                          dropdown                            */
/*top header*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.top-header {
    padding: 0 30px;
}

.navigation-bar {
    background-color: var(--main-color);
    padding: 15px 30px;

}


.top-header a {
    text-decoration: none;
}

.show-icons {
    display: flex;
    align-items: center;
}

.show-icons .menu-bars {
    display: none;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 14px;
    transition: all 0.3s ease-in-out;
}

.big-menu li a {
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;

}

.notification-icon {
    position: relative;
    width: 40px;
    height: 40px;
    margin-inline-end: 10px;
}

.notification-no {
    font-size: 9px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: absolute;
    top: -4px;
    background-color: var(--main-hover);
    width: 16px;
    height: 16px;
    padding: 3px;
    border-radius: 50%;
    inset-inline-start: 0;
}

.top-header-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.top-header-list li {
    display: flex;
    align-items: center;
    margin: 0 !important;
    flex-wrap: nowrap;
}

.top-header-list li:not(:last-child) {
    margin-inline-end: 30px !important;
}

.top-header-list li a {
    text-decoration: none;

    color: #000;
    font-size: 14px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.top-header-list-text {
    transition: 0.5s;
}

.top-header-list li a:hover {
    color: var(--main-hover);
}

.top-header-list-icon {
    font-size: 24px;
    color: #000;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-color: #EEEEEE;
    border-radius: 50%;
    margin-inline-end: 10px;
    transition: 0.5s;
}

.top-header-list li a:hover .top-header-list-icon {
    background-color: var(--main-color);
    color: #fff;
}

.big-menu li a:hover {
    color: #fff;
    opacity: 0.7;
    text-decoration: none;
}

.sub-menu li a {
    color: #000 !important;
    transition: 0.5s;
}

.big-menu li:not(:first-child) {
    margin: 0 12.5px;
}

.big-menu li:first-child {
    margin-inline-end: 12.5px;
}

.sub-menu li:first-child {
    margin-inline-end: 0;
}

.sub-menu li a:hover {
    color: var(--main-hover) !important;
}

.big-menu {
    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;

}


.menu-item-has-children {
    position: relative;
}

@media (min-width: 992px) {

    .menu-item-has-children:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        z-index: 99;
    }

    .menu-item-has-children:hover a {
        color: #fff;
        opacity: 0.7;
    }
}

.sub-menu {
    border-radius: 5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 8px);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    width: max-content;
    min-width: 180px;
    list-style: none;
    max-width: 138px;
    background-color: #fff;
    color: var(--main-color);
    display: flex;
    justify-content: space-between;
    text-align: center;
    border: none;
    padding: 5px 0;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}


.sub-menu::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
    opacity: 1;
}

.sub-menu li:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 132px;
    background-color: rgba(255, 255, 255, 0.102);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.sub-menu li:last-child:after {
    width: 0;
}

.sub-menu li {
    margin: 0;
    padding: 5px 0;
    position: relative;
}

.sub-menu li a {
    color: #fff;
    text-decoration: none;
    line-height: 18px;
    display: block;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 0 15px;
    transition: all 0.3s ease-in-out;
}


.menu-item-has-children a.active::after {
    transform: rotate(180deg);
}

@media (max-width: 991px) {

    .title-bar-with-button .my-acc-title {
        margin: 0;
        flex-wrap: wrap;
        width: 230px;
    }

    .total-section {
        margin-inline-start: 0 !important;
    }

    .w-360 {
        width: 100%;
    }

    .order-table {
        padding: 30px 20px !important;
    }

    .my-acc-title .wait-order {
        margin-inline-start: 0 !important;
        margin-top: 15px;
    }

    .order-title-bar {
        align-items: flex-start !important;
    }

    .w-847 {
        width: 100% !important;
    }

    .table-head th {
        padding: 1px 2rem;
        white-space: nowrap;
    }

    .my-account-table-div {
        width: 100%;
        overflow-x: scroll;
    }

    .my-account-table-div::-webkit-scrollbar {
        height: 5px;
    }

    .sub-menu {
        align-items: start;
        padding: 0;
        width: unset;
        margin-inline-start: 13px;
    }

    .sub-menu::before {
        display: none;
    }

    .sub-menu {
        min-width: unset;
        z-index: 99;
        padding: 0;
        height: unset;
        justify-content: flex-start;
        max-width: 100%;
    }

    .sub-menu li a {
        line-height: 20px;
        padding: 0 5px;
        color: var(--main-color);
    }

    .sub-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transition: none;
        box-shadow: none;
        border-radius: none;
    }

    html[dir="rtl"] .sub-menu {
        box-shadow: none;
    }

    .sub-menu {
        left: 0;
        right: 0;
        transform: translateX(0);
        background-color: transparent;
    }

    html[dir="rtl"] .sub-menu,
    html[dir="ltr"] .sub-menu {
        left: 0;
        right: 0;
        transform: translateX(0);
    }


    .sub-menu li a {
        text-align: start;
        font-size: 16px;
        color: #000;
    }

    .sub-menu li a:hover,
    .sub-menu li:hover > a {
        color: var(--main-hover);
    }


}


.fixed-nav {
    background-color: #fff;
    margin-top: -150px;
    transition: all 0.3s ease-in-out;
}

.fixed-nav .nav-header {
    padding: 10px 0;
}

.fixed-header {
    position: fixed;
    top: 0;
}

.fixed-header .fixed-nav {
    margin: 0;
}

.nav-header .img-logo img {
    width: 99px;

    transition: all 0.3s ease-in-out;
}


.nav-header figure {
    margin: 0;
}

/* .open-bars::after {
  content: "ïƒ‰";
  font-family: "line Awesome Free";
  font-weight: 900;
  color: var(--black-color);
}
.close-bars::after {
  content: "ï€";
  font-family: "line Awesome Free";
  font-weight: 900;
  color: var(--black-color);
} */
.hidden {
    display: none;
}

.search-section {
    width: 602px;

    position: relative;

}

.search-input {
    position: relative;
    background-color: #F1F1F1;
    max-width: 100%;
    width: 100%;
    height: 48px;
    padding: 0 20px;
    padding-inline-start: 54px;

    font-size: 14px;
    color: #9B9B9B;

    border-radius: 50px;

    border: 2px solid transparent;
    outline: none;
    transition: all 0.3s ease-in-out;
}


.search-input:focus {
    outline: none;
    border: 2px solid var(--main-color);

}


.search-input::placeholder {
    color: #9B9B9B;
    font-size: 14px;
}

.search-button {
    position: absolute;
    top: 50%;
    inset-inline-start: 20px;
    outline: none;
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #9B9B9B;
    background-color: transparent;
    border: none;
    font-size: 24px;
    padding: 0;
    transition: 0.5s;
}

.search-button:hover {
    color: var(--main-color);
}

.search-button:focus {
    outline: none;
}

html[dir="rtl"] .search-button {
    transform: scaleX(-1) translateY(-50%);
}

.show-icons {
    display: flex;
    align-items: center;
}


.close-bars::after {
    content: "ï€";
    font-family: "line Awesome Free";
    font-weight: 900;
    color: var(--main-hover);
}

@media (max-width: 991px) {
    body {
        padding-top: 125px;
        position: relative;
    }

    .my-account-list-content {
        width: 100%;
    }

    .my-modal-btns {
        display: flex;
        gap: 15px;
        margin-top: 15px;
    }

    .notification-icon {
        width: 30px;
        height: 30px;
    }

    .table-record td {
        max-width: 100% !important;
        white-space: nowrap !important;
    }

    .table-head th {
        max-width: 100% !important;
        white-space: nowrap !important;
    }

    .top-header {
        padding: 0 20px;
        min-height: 122px;
        position: relative;
    }

    .nav-header .img-logo img {
        max-width: 70px;
    }

    .nav-header {
        padding: 10px 0;
        position: relative;

    }

    .search-section {
        position: absolute;
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;

        transition: all 0.3s ease-in-out;
        margin: 0;
    }

    html[dir="rtl"] .search-button {
        transform: translateY(-50%) scaleX(-1);
    }

    .top-header-list-text {
        display: none;
    }

    .top-header-list-icon {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .top-header-list li:not(:last-child) {
        margin-inline-end: 15px !important;
    }

    .top-header-list li {
        width: 30px;
    }

    .search-button {
        font-size: 18px;
    }

    .search-input {
        height: 42px;
    }

    .top-header-list {
        margin-inline-end: 30px;
    }

    .show-icons {
        position: absolute;
        font-size: 18px;
        background-color: transparent;
        border: none;
        display: flex;
        color: var(--main-color);
        transition: all 0.3s ease-in-out;
        top: 25px;
        inset-inline-end: 20px;
    }

    .show-icons .menu-bars {
        position: relative;
        z-index: 9;
        display: flex;
        transition: all 0.3s ease-in-out;
        color: var(--main-color);
        text-decoration: none;
    }

    .show-icon {
        display: block;
    }

    .hide-icon {
        display: none;
    }

    .show-icons .menu-bars .bar {
        color: #000;
    }

    .show-icons .menu-bars .times {
        color: var(--main-color);
        text-decoration: none;
    }

    .navigation-bar {
        padding: 0;
    }

    .big-menu li:first-child {
        margin-inline-end: 0;
        margin-bottom: 17px;
    }

    .big-menu li:not(:first-child) {
        margin: 0;
        margin-bottom: 17px;
    }

    .menu-item-has-children a:hover {
        color: var(--main-hover) !important;
    }

    .sub-menu li:not(:last-child) {
        margin-bottom: 5px;
    }

    .sub-menu {
        margin-top: 5px;
    }

    .sub-menu li a {
        font-size: 16px !important;
        font-family: "SST-ARABIC-ROMAN" !important;
    }

    .counter-div {
        width: auto !important;
    }

    .navgition .language-anchor {
        position: absolute;
        top: 5%;
    }

    .main-slider .swiper-pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        bottom: 30px !important;
    }

    .category-img {
        width: 100% !important;
        flex-shrink: 0;
        aspect-ratio: 1 / 1;
        object-fit: contain;
    }

    .category-block {
        width: 100px !important;
        height: 100px !important;

    }

    .category-title {
        font-size: 14px;
    }

    .category-figure {
        width: 70px !important;
        padding: 5px !important;
        height: 70px !important;
    }

    .offers {
        padding: 0 0 50px !important;
    }


}

.dropdown .add-to {
    cursor: pointer;
}

.top-header .add-to {
    color: var(--main-color);
    font-size: 24px;
    font-weight: 400;

    transition: all 0.3s ease-in-out;
}

/*                          header section                     */
/*           swiper section                     */
.main-slider {
    position: relative;
    overflow: hidden;

}

.main,
.swiper-cont {
    position: relative;
}

.main .pro-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;


    width: 100%;
    max-height: 550px;
}

.main .pro-img img {
    width: 100%;
    object-fit: fill;
    max-height: 550px;
}


.main-slider .swiper-btn {
    position: absolute;
    z-index: 1;
    top: 50%;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    background-color: #00000080;
    border-radius: 50%;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (min-width: 1320px) {
    .main-slider .swiper-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.main-slider .swiper-btn:hover {
    color: #fff;
    background-color: var(--main-hover);
}

.main-slider .swiper-btn i {
    z-index: 2;
    color: #fff;
}

.main-slider .swiper-btn.swiper-btn-next {
    left: 40px;
}

.main-slider .swiper-btn.swiper-btn-prev {
    right: 40px;
}

.main-slider .swiper-pagination {
    position: relative;
    width: 100%;
    bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.main-slider .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #00000080;
    opacity: 1;
    margin: 0 3px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    outline: none !important;
}


.main-slider .swiper-pagination .swiper-pagination-bullet:hover {
    background-color: var(--main-hover);
}

.main-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--main-hover);
    opacity: 1;
}

/*                          main-slider                             */
/*                       categories-section                             */

.categories-section {
    padding: 50px 0;
}

.categories-slider {
    position: relative;
}

.category-block {
    background-color: #EFF6F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 138px;
    height: 138px;
    overflow: hidden;
    transition: 0.5s;
    margin-bottom: 15px;
}

.category-img {
    transition: 0.5s;
}

.category-block:hover .category-img {
    transform: scale(1.05);
}

.category-title {
    color: #000;
    font-size: 16px;
    margin: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    transition: 0.5s;
    text-transform: capitalize;
}

.cat-block {
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.cat-block:hover {
    text-decoration: none;
}

.cat-block:hover .category-title {
    text-decoration: none;
    color: var(--main-hover);
}

.categories {
    position: relative;
}

.categories-slider .swiper-btn {
    position: absolute;
    z-index: 1;
    top: 74px;
    width: 16px;
    height: 16px;
    background-color: transparent;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    color: #000;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.category-figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 25px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
}

@media (min-width: 1320px) {
    .categories-slider .swiper-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.categories-slider .swiper-btn i {
    z-index: 2;
}

.categories-slider .swiper-btn.swiper-btn-next {
    left: -42px;
}

.categories-slider .swiper-btn.swiper-btn-prev {
    right: -42px;
}

.categories-slider .swiper-pagination {
    position: relative;
    width: 100%;
    bottom: auto;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    bottom: -15px;

}

@media (max-width: 1320px) {
    .categories-slider .swiper-pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.categories-slider .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: rgb(0, 0, 0);
    opacity: 0.5;
    margin: 0 3px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    outline: none !important;
    border-radius: 50%;
}

.categories-slider .swiper-pagination .swiper-pagination-bullet:hover {
    background-color: var(--main-hover);
}

.categories-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--main-hover);
    opacity: 1;
}

.categories-slider .swiper-btn:hover {
    color: var(--main-hover);
}


/*                       categories-section                             */
/*                      banner-section                      */

.banner-section {
    width: 100%;
    overflow: hidden;
    transition: 0.5s;
}

.banner-img {
    transition: 0.5s;
}

.banner-section:hover .banner-img {
    transform: scale(1.05);
}

.banner-section-div {
    padding: 0 0 54px;
}


/*                     banner-section                      */
/*                      offers-section                      */
.offers {
    padding: 0 0 145px;
}

.big-title {
    font-size: 24px;
    color: #000;
    font-family: "SST-ARABIC-BOLD";
    display: flex;
    text-align: center;
    justify-content: center;
    margin: 0 0 31px;
    text-transform: capitalize;
}

.offers-slider {
    position: relative;
    margin-bottom: 49px;
}

.similars-slider {
    position: relative;
}

.offer-block {
    border: 1px solid #EBEBEB;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    position: relative;

    background-color: #fff;
}

.offer-figure {
    width: 100%;
    overflow: hidden;
    transition: 0.5s;
    margin-bottom: 12px;
}

.offer-img {
    transition: 0.5s;
}

.offer-figure:hover .offer-img {
    transform: scale(1.05);
}

.discount {
    font-size: 10px;
    color: #E13612;
    font-family: "SST-ARABIC-BOLD";
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
    background-color: #FCEAE6;
    border-radius: 3px;
    width: 27px;
    height: 26px;
    line-height: 1;
    position: absolute;
    top: 4px;
    text-align: center;
    inset-inline-start: 6px;
    z-index: 9;
}

.favourite-btn {
    padding: 0;
    border: 0;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4B5256;
    font-size: 16px;
    background-color: #fff;
    width: 28px;
    height: 28px;
    box-shadow: 0px 3px 6px #00000029;
    position: absolute;
    top: 5px;
    inset-inline-end: 5px;
    border-radius: 50%;
    transition: 0.5s;
    z-index: 9;
}

.favourite-btn:hover {
    color: #fff;
    background-color: var(--main-hover);
}

.favourite-btn:focus {
    outline: none;
    color: #fff;
    background-color: var(--main-hover);
}

.product-name {
    font-size: 15px;
    color: #000;
    text-align: start;
    margin-bottom: 12px;
    transition: 0.5s;
    display: block;
    height: 42px;
    overflow: hidden;
}

.product-name:hover {
    color: var(--main-hover);
    text-decoration: none;
}

.offer-block:hover .product-name {
    color: var(--main-hover);
}

.product-text {
    padding: 10px;

}

.price {
    color: var(--main-hover);
    font-size: 16px;
    font-family: "SST-ARABIC-BOLD";
    margin: 0 0 3px;
    display: block;
}

.old-price {
    color: #949494;
    font-size: 12px;

    margin: 0 0 9px;
    display: block;
}

.counter-div {
    display: flex;
    align-items: center;
    border: 1px solid #E3E3E3;
    border-radius: 31px;
    margin-inline-end: 8px;
    width: 109px;
    justify-content: space-between;
    height: 30px;
}

.plus {
    font-size: 15px;
    color: #4B5256;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #E3E3E3;
    width: 23px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.5s;
    margin-inline-start: 8px;

}

.plus:hover {
    background-color: var(--main-hover);
    color: #fff;
}

.cart-input {
    background-color: transparent;
    border: 0;
    outline: none;
    color: #4B5256;
    font-size: 14px;
    width: 45px;
    text-align: center;
}

.minus {
    font-size: 15px;
    color: #4B5256;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #E3E3E3;
    width: 23px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    margin-inline-end: 8px;
    transition: 0.5s;
}

.minus:hover {
    background-color: var(--main-hover);
    color: #fff;
}

.cart-counter-section {
    display: flex;
    align-items: center;
}

.cart-icon {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    border-radius: 50%;
    transition: 0.5s;
    color: #fff;
    border: 0;
    outline: none;
    font-size: 20px;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.cart-icon:hover {
    background-color: var(--main-hover);
    color: #fff;
}

.cart-icon:focus {
    background-color: var(--main-hover);
    color: #fff;
    outline: none;
    border: 0;
}

.offers-slider .swiper-btn {
    position: absolute;
    z-index: 1;
    top: 150px;
    width: 16px;
    height: 16px;
    background-color: transparent;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    color: #000;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (min-width: 1320px) {
    .offers-slider .swiper-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.offers-slider .swiper-btn i {
    z-index: 2;
}

.offers-slider .swiper-btn.swiper-btn-next {
    left: -42px;
}

.offers-slider .swiper-btn.swiper-btn-prev {
    right: -42px;
}

.offers-slider .swiper-pagination {
    position: relative;
    width: 100%;
    bottom: auto;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    bottom: -15px;

}

@media (max-width: 1320px) {
    .offers-slider .swiper-pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.offers-slider .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: rgb(0, 0, 0);
    opacity: 0.5;
    margin: 0 3px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    outline: none !important;
    border-radius: 50%;
}

.offers-slider .swiper-pagination .swiper-pagination-bullet:hover {
    background-color: var(--main-hover);
}

.offers-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--main-hover);
    opacity: 1;
}

.offers-slider .swiper-btn:hover {
    color: var(--main-hover);
}

.more-link {
    background-color: var(--main-hover);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 43px;
    border-radius: 31px;
    transition: 0.5s;
    margin: 0 auto;
    text-decoration: none;
    font-size: 14px;
    font-family: "SST-ARABIC-BOLD";

}

.more-link:hover {
    background-color: var(--main-color);
    color: #fff;
    text-decoration: none;
}

.similars-slider .swiper-btn {
    position: absolute;
    z-index: 1;
    top: 150px;
    width: 16px;
    height: 16px;
    background-color: transparent;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    color: #000;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (min-width: 1320px) {
    .similars-slider .swiper-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.similars-slider .swiper-btn i {
    z-index: 2;
}

.similars-slider .swiper-btn.swiper-btn-next {
    left: -42px;
}

.similars-slider .swiper-btn.swiper-btn-prev {
    right: -42px;
}

.similars-slider .swiper-pagination {
    position: relative;
    width: 100%;
    bottom: auto;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    bottom: -15px;

}

@media (max-width: 1320px) {
    .similars-slider .swiper-pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.similars-slider .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: rgb(0, 0, 0);
    opacity: 0.5;
    margin: 0 3px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    outline: none !important;
    border-radius: 50%;
}

.similars-slider .swiper-pagination .swiper-pagination-bullet:hover {
    background-color: var(--main-hover);
}

.similars-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--main-hover);
    opacity: 1;
}

.similars-slider .swiper-btn:hover {
    color: var(--main-hover);
}


/*                      offers-section                      */
/*                              brands-section                    */

.brands-section {
    padding: 0px 0 80px;
}

.brand-figure {
    width: 100%;
    max-width: 120px;
    height: 100%;
    max-height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
}

.brands-slider {
    position: relative;
}

.brands-slider .swiper-wrapper {
    align-items: center;
}

.brands-slider .swiper-btn {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-color: transparent;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    color: #000;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (min-width: 1320px) {
    .brands-slider .swiper-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.brands-slider .swiper-btn i {
    z-index: 2;
}

.brands-slider .swiper-btn.swiper-btn-next {
    left: -42px;
}

.brands-slider .swiper-btn.swiper-btn-prev {
    right: -42px;
}

.brands-slider .swiper-pagination {
    position: relative;
    width: 100%;
    bottom: auto;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    bottom: -15px;

}

@media (max-width: 1320px) {
    .brands-slider .swiper-pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        bottom: -30px;

    }
}

.brands-slider .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: rgb(0, 0, 0);
    opacity: 0.5;
    margin: 0 3px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    outline: none !important;
    border-radius: 50%;
}

.brands-slider .swiper-pagination .swiper-pagination-bullet:hover {
    background-color: var(--main-hover);
}

.brands-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--main-hover);
    opacity: 1;
}

.brands-slider .swiper-btn:hover {
    color: var(--main-hover);
}


/*                              brands-section                    */


/*                                   footer                            */
footer {
    padding: 50px 0 17px;
    position: relative;
    background-color: var(--main-color);
}

.footer-logo {
    margin-bottom: 20px;
}


.nav-foot-cont {
    text-align: start;
}

.nav-foot-header {
    text-transform: capitalize;
    white-space: nowrap;
    font-size: 14px;
    color: #fff;
    margin-bottom: 24px;
    margin-top: 0;
    text-align: start;
    font-family: "SST-ARABIC-BOLD";
}

@media (min-width: 991px) {

    .nav-wrap {
        display: flex;
        flex-direction: column;
        max-height: 120px;
        flex-wrap: wrap;
    }


}

.nav-foot li:not(:last-child) {
    margin-bottom: 18px;
}

.nav-foot-link {
    color: #B4EBB9;
    font-size: 14px;
    text-transform: capitalize;
    display: inline-flex;
    text-decoration: none !important;
    transition: all 0.3s ease-in-out;
}

.nav-foot-li .nav-foot-link:hover {

    color: #fff;
}

.social-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.social-list li:not(:last-child) {
    margin-inline-end: 5px;
}

.social-list li a {
    width: 32px;
    height: 32px;
    background-color: #379D41;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: 0.5s;
    border-radius: 50%;
    text-decoration: none;
}

.social-list li a:hover {
    color: var(--main-color);
    background-color: #fff;
    text-decoration: none;
}

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

.contact-list li:not(:last-child) {
    margin-bottom: 11px;
}

.contact-list li {
    display: flex;
    align-items: center;
}

.contact-list li a {

    color: #B4EBB9;
    font-size: 14px;
    text-decoration: none;
    transition: 0.5s;
}

.contact-list li a:hover {
    color: #fff;
}

.contact-icon {
    font-size: 18px;
    color: #fff;
    margin-inline-end: 11px;
}


.copy-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    padding-top: 50px;
}

.copy-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    /* align-items: center; */
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 12px;

    color: #fff;
    text-align: center;
}

.payment-list {

    display: flex;
    justify-content: center;
}

.payment-list img {
    max-width: 80%;
}

.tasawk-logo {
    margin-inline-start: 6px;
}

.design-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.design-text .taswak-img {
    max-width: 100%;
    margin-inline-start: 5px;
    image-rendering: -webkit-optimize-contrast;
}

/*                             footer accordion                 */
.footer-accordion.nav-foot-header {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-accordion {
    cursor: pointer;
    width: 100%;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-panel {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-out;
    padding: 0 15px;
}

.footer-accordion:after {
    content: "";
    font-family: "Line Awesome Free";
    font-weight: 700;
    font-size: 13px;
    transition: all 0.5s ease-out;
}

.footer-accordion.active:after {
    transform: rotate(180deg);
}

html[dir="rtl"] .footer-accordion.active:after {
    transform: rotate(-180deg);
}

/*                             footer accordion                 */

@media (max-width: 767px) {
    .text p {
        font-size: 17px;
    }

    .text a {
        font-size: 17px;
    }

    footer {
        /* margin-top: 30px; */
        padding: 50px 0 40px;
        background-attachment: fixed;
    }

    .social {
        justify-content: center;
        margin-bottom: 0px;
    }

    .nav-foot-cont {
        text-align: start;
        margin-bottom: 20px;
    }

    .nav-foot-header {
        text-align: center;
    }

    .nav-foot li {
        /* margin: 0 0 10px; */
    }

    .copy-flex {
        padding-top: 30px;
        justify-content: center;
        flex-direction: column;
    }

    .copy-right {
        margin-bottom: 5px;
    }
}

/*                                   footer                            */

/*                  breadcrumb                        */
.breadcrumb-sec {
    position: relative;
    background-color: #fff;
    display: flex;
    align-items: center;

    padding: 40px 0 50px;

}

.mb-0 {
    margin-bottom: 0 !important;
}

ol.breadcrumb {
    background-color: transparent;
    border: none;
    border-radius: 0;
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;

    z-index: 2;
}

ol.breadcrumb li a,
ol.breadcrumb li span,
ol.breadcrumb li {

    font-size: 14px;
    color: #A1A1A1;
    text-decoration: none;
}

ol.breadcrumb li:not(.active):after {
    content: "/";
    padding: 0;
    padding-inline-start: 5px;
    padding-inline-end: 9px;
}

.breadcrumb > li + li:before {
    padding: 0;

    content: "";
}

@media (max-width: 991px) {


    .footer-logo-col {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .back-link {
        margin: 0 auto 50px !important;
    }
}

/*                  breadcrumb                               */


/*        login                  */
.p-0 {
    padding-top: 0 !important;
}

.body-bg {
    position: relative;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.login-text {
    background-color: #fff;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.login-text-content {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 315px;
}

.login-img-logo {
    margin: 0 0 40px;
}

.login-logo {
    width: 150px;

    transition: all 0.3s ease-in-out;
}

.login-img {
    height: 100%;
    width: 100%;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.login-image {
    width: 100%;
    display: block;
    min-height: 100%;
    min-width: 100%;

    height: 100%;
    object-fit: fill;
}

.form-title {
    color: #000;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    font-family: "SST-ARABIC-BOLD";
    margin: 0 0 12px;

}

.form-text {
    color: #000;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 14px;

    margin: 0 auto 117px;

}

.register-link {
    color: var(--main-hover);
    text-decoration: none;
    transition: 0.5s;
    margin-inline-start: 3px;
    background-color: transparent;
    border: 0;
    outline: none;
    padding: 0;
}

.register-link:hover {
    text-decoration: none;
    color: var(--main-color);
    background-color: transparent;
}

.register-link:focus {
    outline: none;
    background-color: transparent;
    color: var(--main-color);
}

.register-link.active {
    background-color: transparent;
    color: var(--main-color);
    outline: none;
    border: 0;
    box-shadow: none;
}

.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
    background-color: transparent;
    color: var(--main-color);
    outline: none;
    border: 0;
    box-shadow: none;
}

.form-input-1 {
    width: 315px;
    height: 48px;
    border-radius: 50px;
    background-color: #F1F1F1;
    display: flex;
    align-items: center;
    padding: 0 55px;
    border: 2px solid transparent;
    outline: none;
    transition: 0.5s;
    color: #9B9B9B;
    font-size: 14px;
}

.form-input-1::placeholder {
    color: #9B9B9B;
    font-size: 14px;
}

.form-input-1:focus {
    border: 2px solid var(--main-color);
    outline: none;

}

.form-input-1:not(:last-child) {
    margin-bottom: 10px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.flag-section {
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-end: 13px;
    color: #4B5256;
    font-size: 14px;
    font-family: "SST-ARABIC-MEDIUM";
}

.flag {
    margin-inline-start: 6px;
}

.form-input-div {
    position: relative;
}

.form-icon {
    position: absolute;
    color: #9093A3;
    font-size: 24px;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: 20px;
}

.password-icon {
    position: absolute;
    color: #9093A3;
    font-size: 24px;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-end: 20px;
}

.forget-password-link {
    font-size: 14px;
    color: #000;
    margin: 23px auto 20px;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    text-decoration: none;
}

.forget-password-link:hover {
    color: var(--main-hover);
    text-decoration: none;
}

.submit-btn {
    width: 315px;
    height: 48px;
    border: 0;
    border-radius: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    outline: none;
    padding: 0;
    transition: 0.5s;
    font-size: 16px;
    text-decoration: none;
    background-color: var(--main-hover);
    margin: 0;
    font-family: "SST-ARABIC-BOLD";
}

.submit-btn:hover {
    color: #fff;
    background-color: var(--main-color);
    border: 0;
    text-decoration: none;

}

.submit-btn:focus {
    outline: none;
}

.form-1 {
    margin-bottom: 20px;
}


.body-bg .copy-right {
    display: flex;
    justify-content: center;
    text-align: center;
    color: #9B9B9B;
    font-size: 12px;


}

/*             login               */

/*         forget-password              */
.mb-14 {
    margin-bottom: 14px;
}

.form-note {
    color: #4B5256;
    font-size: 14px;
    width: 300px;
    margin: 0 auto 31px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px;
}

.back-link {
    margin: 0 auto 209px;
    display: flex;
    justify-content: center;
    text-align: start;
    transition: 0.5s;
    color: #A7A7A7;
    font-size: 12px;
    align-items: flex-end;
    text-decoration: none;
}

.back-link i {
    color: #A7A7A7;
    font-size: 14px;
    margin-inline-end: 3px;
    transition: 0.5s;
}

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

.back-link:hover {
    color: var(--main-hover);
    text-decoration: none;
}

/*                 forget password            */

/*                password  verefication          */
.verification-code-list {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: flex;
    direction: ltr;
    justify-content: center;
}

.verification-code-list input:not(:last-child) {
    margin-inline-end: 21px;
}

.verification-no {
    border: 2px solid #E9E9E9;
    border-radius: 10px;
    outline: none;
    width: 47px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-hover);
    font-size: 25px;
    transition: 0.5s;
    padding-inline-start: 15px;
}

.verification-no::placeholder {
    color: #9B9B9B;
    font-size: 25px;
}

.verification-no:focus {
    border: 2px solid var(--main-hover);
    outline: none;
}

.timer {
    color: #9B9B9B;
    font-size: 14px;
    font-family: "SST-ARABIC-MEDIUM";
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
}


/*                  password  verefication         */


/*                         register                */
.register-top-header {
    padding: 16px 0 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.m-0 {
    margin: 0;
}

.register-content {
    width: 651px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.register-form {
    width: 100%;
}

.form-record {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 21px;
    margin-bottom: 14px;
}

.input-block {
    width: 315px;
}

.form-label {
    text-align: start;
    text-transform: capitalize;
    color: #000;
    font-size: 14px;
    font-family: "SST-ARABIC-MEDIUM";
    margin: 0 0 10px;
    margin-inline-start: 22px;
}

.register-form .form-input-1 {
    padding-inline-start: 27px;
    margin-bottom: 0;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: none;
}

.register-form-icon {
    font-size: 14px;
    color: #9093A3;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-end: 26px;
}

.m-auto {
    margin: 0 auto 30px;
}

.mb-87 {
    margin-bottom: 87px;
}

.register-content .copy-right {
    display: flex;
    justify-content: center;
    text-align: center;
    color: #9B9B9B;
    font-size: 12px;


}

.terms-modal {
    background: rgba(0, 0, 0, 0.5);
}

.terms-modal-dialog {
    border-radius: 10px;
}

.terms-modal-header {
    border: 0;
    padding: 12px;
}

.close-modal-icon {
    font-size: 22px;
    color: #9093A3;
    opacity: 1;
}

.terms-modal-header .close {
    margin: 0;
    opacity: 1;
}

.terms-title {
    text-align: start;
    text-transform: capitalize;
    color: #000;
    font-size: 16px;
    margin: 0 0 23px;
    font-family: "SST-ARABIC-BOLD";
}

.terms-text {
    color: #000;
    font-size: 14px;
    text-align: start;
    margin-bottom: 30px;
}

.terms-modal-body {
    padding: 0 36px 36px;
}

/*                        register                      */


/*                 register-verefication                           */
.register-top-header-2 {
    padding: 16px 0 62px;
    display: flex;
    justify-content: center;
}

.w-100 {
    width: 100% !important;
}

.resend-link {
    font-size: 14px;
    display: flex;
    color: #9B9B9B;
    justify-content: center;
    text-decoration: none;
    transition: 0.5s;
    margin: 0 auto 31px;
}

.resend-link:hover {
    text-decoration: none;
    color: var(--main-hover);
}

.check-icon {
    color: var(--main-color);
    font-size: 100px;
    margin: 0 auto 17px;
    display: flex;
    justify-content: center;
}

.fs-16 {
    font-size: 16px !important;
}

.mb-17 {
    margin-bottom: 17px !important;
}

.mb-270 {
    margin-bottom: 270px;
}


/*                 register-verefication                           */

/*                        category page                               */
.category-content {
    display: flex;
    padding: 0 0 80px;

}

.filter-toggle {
    color: var(--main-color);

    font-size: 24px;
    cursor: pointer;
    display: none;
}

.filter-section {
    background-color: #F6F6F6;
    padding: 27px 0 23px;
    padding-inline-start: 25px;
    padding-inline-end: 22px;
    position: sticky;
    width: 262px;
    max-height: 730px;
    top: 0;
}

.filter-title-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 26px;
}

.filter-title {
    color: var(--main-color);
    font-size: 18px;
    font-family: "SST-ARABIC-BOLD";
    margin: 0;
    text-align: start;
    text-transform: capitalize;
}

.refresh-filter-btn {
    background-color: transparent;
    outline: none;
    border: 0;
    padding: 0;
}

.refresh-icon {
    color: #9E9E9E;
    font-size: 22px;
    background-color: transparent;
    outline: none;
    border: 0;
    padding: 0;
    transition: 0.5s;
}

.refresh-icon:hover {
    color: var(--main-hover);
}

.refresh-filter-btn:focus {
    border: 0;
    outline: none;
}

.fitler-form {
    width: 100%;
}

.filter-label {
    color: #000;
    font-size: 16px;
    font-family: "SST-ARABIC-MEDIUM";
    text-align: start;
    text-transform: capitalize;
    margin: 0 0 15px;

}

.checkbox-div .form-group {
    display: flex;
    margin-bottom: 12px;
}

.checkbox-label {
    font-size: 16px;
    color: #000;
    margin: 0;
    margin-inline-start: 12px;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 0;

    outline: none;


}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: none;
}

.checkbox-input {
    width: 20px;
    height: 20px;
    border: 1px solid #D6D6D6;
    border-radius: 3px;
    background-color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    display: flex;
    outline: none;
    flex-shrink: 0;
}

.checkbox-input:checked:after {
    content: "";
    font-family: "Line Awesome Free";
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
    color: #fff;
    display: flex;
    background-color: var(--main-color);
    width: 20px;
    height: 20px;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--main-color);
    outline: none;
}

.checkbox-input:checked:focus {
    outline: none;
    border: 1px solid var(--main-color);
}

.checkbox-div {
    overflow-y: scroll;
    max-height: 160px;
    margin-bottom: 40px;
}

.checkbox-div::-webkit-scrollbar-thumb {

    border: 2px solid transparent;
    background-color: #A8A8A8;
    background-clip: content-box;

}

.checkbox-div::-webkit-scrollbar-thumb:hover {
    background-color: var(--main-color);
}

.checkbox-div::-webkit-scrollbar-track {
    background-color: #0000001A;
    border: 2px solid transparent;
    background-clip: content-box;
}

.irs {
    position: relative;
    display: block;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.irs-line {
    position: relative;
    display: block;
    overflow: hidden;
    outline: none !important;
}

.irs-line-left,
.irs-line-mid,
.irs-line-right {
    position: absolute;
    display: block;
    top: 0;
}

.irs-line-left {
    left: 0;
    width: 11%;
}

.irs-line-mid {
    left: 9%;
    width: 82%;
}

.irs-line-right {
    right: 0;
    width: 11%;
}

.filter-times {
    display: none;
}

.irs-bar {
    position: absolute;
    display: block;
    left: 0;
    width: 0;
}

.irs-bar-edge {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
}

.irs-shadow {
    position: absolute;
    display: none;
    left: 0;
    width: 0;
}

.irs-slider {
    position: absolute;
    display: block;
    cursor: default;
    z-index: 1;
}

.irs-slider.type_last {
    z-index: 2;
}

.irs-min {
    position: absolute;
    display: block;
    left: 0;
    cursor: default;
}

.irs-max {
    position: absolute;
    display: block;
    right: 0;
    cursor: default;
}

.irs-from,
.irs-to,
.irs-single {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    cursor: default;
    white-space: nowrap;
}

.irs-grid {
    position: absolute;
    display: none;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
}

.irs-with-grid .irs-grid {
    display: block;
}

.irs-grid-pol {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 8px;
    background: #000;
}

.irs-grid-pol.small {
    height: 4px;
}

.irs-grid-text {
    position: absolute;
    bottom: 0;
    left: 0;
    white-space: nowrap;
    text-align: center;
    font-size: 9px;
    line-height: 9px;
    padding: 0 3px;
    color: #000;
}

.irs-disable-mask {
    position: absolute;
    display: block;
    top: 0;
    left: -1%;
    width: 102%;
    height: 100%;
    cursor: default;
    background: rgba(0, 0, 0, 0);
    z-index: 2;
}

.lt-ie9 .irs-disable-mask {
    background: #000;
    filter: alpha(opacity=0);
    cursor: not-allowed;
}

.irs-disabled {
    opacity: 0.4;
}

.irs-hidden-input {
    position: absolute !important;
    display: block !important;
    top: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
    z-index: -9999 !important;
    background: none !important;
    border-style: solid !important;
    border-color: transparent !important;
}

/* Ion.RangeSlider, Simple Skin
// css version 2.0.3
// Â© Denis Ineshin, 2014    https://github.com/IonDen
// Â© guybowden, 2014        https://github.com/guybowden
// ===================================================================================================================*/

/* =====================================================================================================================
// Skin details */

.irs {
    height: 55px;
}

.irs-with-grid {
    height: 75px;
}

.irs-line {
    height: 5px;
    top: 33px;
    background: #0000001A;

    border: 0;
    border-radius: 0;
    -moz-border-radius: 0;
}

.irs-line-left {
    height: 8px;
}

.irs-line-mid {
    height: 8px;
}

.irs-line-right {
    height: 8px;
}

.irs-bar {
    height: 5px;
    top: 33px;

    background: var(--main-color);

}

.irs-bar-edge {
    height: 10px;
    top: 33px;
    width: 14px;
    border: 1px solid #8c131c;
    border-right: 0;
    background: #8c131c;
    background: linear-gradient(to top, #8c131c 0%, #c1131c 100%);
    /* W3C */
    border-radius: 16px 0 0 16px;
    -moz-border-radius: 16px 0 0 16px;
}

.irs-shadow {
    height: 2px;
    top: 38px;
    background: #000;
    opacity: 0.3;
    border-radius: 5px;
    -moz-border-radius: 5px;
}

.lt-ie9 .irs-shadow {
    filter: alpha(opacity=30);
}

.irs-slider {
    top: 25px;
    width: 15px;
    height: 15px;
    border: 0;
    background: #fff;

    border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0px 3px 6px #00000029;
    cursor: pointer;
}

.irs-slider.state_hover,
.irs-slider:hover {
    background: #fff;
}

.irs-min,
.irs-max {
    display: none;

}

.lt-ie9 .irs-min,
.lt-ie9 .irs-max {
    background: #ccc;
}

.irs-from,
.irs-to {
    color: #000;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.irs-single {
    display: none;
}

.irs-from:after {
    content: " ر.س ";
    margin-inline-start: 3px;
}

.irs-to:after {
    content: " ر.س ";
    margin-inline-start: 3px;
}

html[dir="ltr"] .irs-from:after {
    content: " SAR";
}

html[dir="ltr"] .irs-to:after {
    content: " SAR";
}

.range-slider {
    margin-bottom: 20px;
}

.filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: var(--main-hover);
    transition: 0.5s;
    padding: 0;
    outline: none;
    border: 0;
    font-size: 14px;
    width: 215px;
    height: 40px;
    font-family: "SST-ARABIC-BOLD";
    border-radius: 31px;
}

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

.filter-btn:focus {
    outline: none;
    border: 0;
}

.products-grid {
    margin-inline-start: 20px;
    width: 100%;

}

.products-grid-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 34px;
}

.bold-title {
    color: #000;
    font-size: 24px;
    font-family: "SST-ARABIC-BOLD";
    text-transform: capitalize;
    text-align: start;
    margin: 10px 0;
}

.products-no {
    display: flex;
    text-align: start;
    font-size: 18px;
    color: #6D6D6D;
}

.products-grid-title-bar .form-input-div {
    width: 216px;
}

.products-grid-title-bar .form-input-1 {
    width: 216px;
    padding: 0 22px;
    margin-bottom: 0;
}

.products-grid-title-bar .register-form-icon {
    inset-inline-end: 22px;
}

.products-grid-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 21px 16px;
    margin-bottom: 30px;
}

.products-grid-content .counter-div {
    width: 141px;
}

.show-more-link {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-hover);
    text-decoration: none;
    transition: 0.5s;
    border: 2px solid var(--main-hover);
    font-size: 14px;
    font-family: "SST-ARABIC-BOLD";
    width: 140px;
    height: 43px;
    border-radius: 31px;
}

.show-more-link:hover {
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
    color: #fff;
    text-decoration: none;
}


/*                       category page                             */

/*                     offers page                                  */
.offers-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 31px 25px;

}

.offers-grid .offer-block {
    width: 168px;
}

.mb-80 {
    margin-bottom: 80px;
}

/*                     offers page                                   */

/*                     product details page                                   */
.pb-63 {
    padding-bottom: 63px;
}

.product-details-content {
    display: flex;
    padding: 0 0 60px;
}

.product-slider {
    width: 358px;

    margin-inline-end: 40px;

}

.product-slider .main {
    border: 2px solid #EBEBEB;
    border-radius: 10px;
}

.product-slider .swiper-pagination {
    display: none;
}

.product-slider .swiper-btn.swiper-btn-prev {
    right: 17px;
}

.product-slider .swiper-btn.swiper-btn-next {
    left: 17px;
}

.product-details {
    width: 100%;
}

.product-tags {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    margin: 11px 0 0px;
}

.product-tags li {
    font-size: 12px;
    color: var(--main-color);
    font-family: "SST-ARABIC-MEDIUM";
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: 5px 11px;
    background-color: rgba(45, 142, 54, 0.1);
    border-radius: 11px;
    height: 21px;
}

.product-tags li:not(:last-child) {
    margin-inline-end: 3px;
}

.product-tags-bar {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.product-tags-bar .favourite-btn {
    font-size: 28px;
    width: 50px;
    height: 50px;
    position: relative;
}

.ff-m {
    font-family: "SST-ARABIC-MEDIUM";
}

.mb-21 {
    margin-bottom: 21px;
}

.product-textt {
    color: #000;
    font-size: 16px;
    text-align: start;
    margin: 0 0 31px;
    line-height: 1.67;
}

.product-info {
    display: flex;
    align-items: center;
    width: 223px;
    justify-content: space-between;
    margin-bottom: 13px;
}

html[dir="ltr"] .product-info {
    width: 300px;
}

.product-info-label {
    color: #000;
    font-size: 16px;
    font-family: "SST-ARABIC-MEDIUM";
    text-align: start;
    text-transform: capitalize;
    margin: 0;
}

.product-status {
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-family: "SST-ARABIC-BOLD";
    height: 21px;
    background-color: #46C85C;
    border-radius: 11px;
    padding: 0 10px;
}

.product-status i {
    font-size: 15px;
    color: #fff;
    margin-inline-end: 2px;
}

.product-info-answer {
    font-family: "SST-ARABIC-ROMAN";
    display: flex;
    justify-content: flex-start;
    text-align: start;
    width: 57px;
}

.share-list {
    list-style: none;
    margin: 36px 0 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.share {
    color: #8A8A8A;
    font-size: 16px;
    font-family: "SST-ARABIC-MEDIUM";
    margin-inline-end: 11px !important;
}

.share-list li a {
    width: 32px;
    height: 32px;
    background-color: #E6E6E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.5s;
    color: #8A8A8A;
    font-size: 16px;
}

.share-list li a i {
    color: #8A8A8A;
    font-size: 16px;
    transition: 0.5s;
}

.share-list li:not(:last-child) {
    margin-inline-end: 5px;
}

.share-list li a:hover {
    background-color: var(--main-color);
    color: #fff;
    text-decoration: none;
}

.share-list li a:hover i {
    color: #fff;
}

.add-cart-div {
    position: fixed;
    background-color: #fff;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 21px 0;
    z-index: 88;
}

.add-cart-div-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pro-price {
    display: flex;
    align-items: center;
}

.pro-price .price {
    font-size: 24px;
    margin: 0;
    margin-inline-end: 10px;
}

.pro-price .old-price {
    font-size: 24px;
    margin: 0;
    margin-inline-end: 20px;
}

.pro-price .discount {
    position: relative;
    font-size: 13px;
    border-radius: 3px;
    height: 25px;
    padding: 0 7px;
    margin: 0;
    width: auto;
    font-family: "SST-ARABIC-MEDIUM";
    top: 0;
}

.pro-cart {
    display: flex;
    align-items: center;
}

.pro-cart .counter-div {
    width: 180px;
    height: 50px;
    border: 2px solid #E3E3E3;
    margin: 0;
    margin-inline-end: 8px;
}

.pro-cart .cart-input {
    font-size: 24px;
}

.pro-cart .plus {
    width: 38px;
    height: 38px;
    font-size: 25px;
}

.pro-cart .minus {
    width: 38px;
    height: 38px;
    font-size: 25px;
}

.pro-cart .cart-icon {
    width: 190px;
    height: 50px;
    border-radius: 25px;
    font-size: 18px;
    font-family: "SST-ARABIC-BOLD";
}

.pro-cart .cart-icon i {
    margin-inline-end: 2px;
    font-size: 28px;
}

.suggested-products {
    background-color: #F4F9F4;
    padding: 64px 0 68px;
}

.white-bg {
    background-color: #fff;
}

/*                     product details page                                   */

/*                        cart page                           */
.cart-content {
    display: flex;
    padding: 0 0 70px;
}

.address-section {
    width: 749px;
    background-color: #F8F8F8;
    padding: 33px 30px 42px;
    height: 100%;
}

.block-section-title {
    color: #000;
    font-size: 18px;
    font-family: "SST-ARABIC-BOLD";
    margin: 0 0 16px;
    text-transform: capitalize;
    text-align: start;
    display: flex;
    align-items: center;
}

.address-tabs {
    border: 0;
    margin-bottom: 22px;
}

.address-tabs > li > a {
    padding: 0;
    margin: 0;
    display: flex;
    width: 329px;
    height: 70px;
    border: 2px solid #ECECEC;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    color: #9B9B9B;
    font-size: 16px;
    font-family: "SST-ARABIC-MEDIUM";
    transition: 0.5s;
    text-transform: capitalize;
    text-decoration: none;
    background-color: #fff;
}

.address-tabs > li.active > a,
.address-tabs > li.active > a:hover,
.address-tabs > li.active > a:focus {
    border: 2px solid var(--main-color);
    color: var(--main-color);
    font-size: 16px;
    font-family: "SST-ARABIC-MEDIUM";
    background-color: #fff;
}

.address-tabs > li > a i {
    font-size: 30px;
    margin-inline-end: 10px;
}

.address-tabs > li:not(:last-child) {
    margin-inline-end: 30px;
}

.nav-tabs > li > a:hover {
    border: 2px solid var(--main-color);
    background-color: #fff;
}

.address-content .form-record {
    margin-bottom: 22px;
    gap: 30px;
}

.address-content .input-block {
    width: 330px;
}

.address-label {
    font-size: 14px;
    color: #000;
    font-family: "SST-ARABIC-MEDIUM";
    margin: 0 0 10px;
    margin-inline-start: 22px;
    text-transform: capitalize;
    text-align: start;
}

.address-content .form-input-1 {
    width: 330px;
    background-color: #fff;
    border: 1px solid #ECECEC;
    padding: 0 24px;
}

.address-content .form-input-1:focus {
    border: 1px solid var(--main-color);
}

.address-block {
    width: 100%;
    height: 55px;
    border-radius: 28px;
    background-color: #ECECEC;
    position: relative;
    display: flex;
    align-items: center;
    padding-inline-start: 20px;
    margin-bottom: 10px;
}

.address-type-radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    top: 0;
    inset-inline-end: 0;
}

.checkmark-2 {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E1E1E1;
    position: relative;
}

.address-type-radio:checked ~ .checkmark-2::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #E13612;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.address-type {
    font-size: 14px;
    color: #4B5256;
    display: flex;
    text-align: start;
    margin-inline-start: 15px;
}

.cart-section {
    margin-inline-start: 31px;

}

.total-section {
    margin-inline-start: 31px;

}

.cart-title {
    color: #000;
    text-align: start;
    font-size: 24px;
    font-family: "SST-ARABIC-BOLD";
    text-transform: capitalize;
    text-align: start;
    margin: 5px 0 19px;

}

.total-title {
    color: #000;
    text-align: start;
    font-size: 24px;
    font-family: "SST-ARABIC-BOLD";
    text-transform: capitalize;
    text-align: start;
    margin: 5px 0 19px;

}

.cart-block {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
    display: flex;
    padding: 20px 0;
}

.cart-pro-img {
    width: 63px;
    height: 63px;
}

.cart-pro-details {
    margin-inline-start: 20px;
    width: 277px;
}

.pro-name-bar {
    display: flex;
    margin-bottom: 13px;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.cart-pro-details .product-name {
    font-size: 14px;
    height: auto;
    margin: 0;
    display: flex;

}

.delete-product {
    border: 0;
    outline: none;
    padding: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    font-size: 20px;
    color: #ABABAB;
}

.delete-product:hover {
    color: var(--main-hover);
}

.delete-product:focus {
    border: 0;
    outline: none;
    color: var(--main-hover);
}

.cart-det {
    display: flex;
    text-align: start;
    color: #A5A5A5;
    font-size: 13px;
    margin-bottom: 5px;
}

.cart-no-div {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    align-items: center;
}

.w-103 {
    width: 103px;
    margin-inline-end: 0;
}

.w-103 .plus {
    margin-inline-start: 4px;
}

.w-103 .minus {
    margin-inline-end: 4px;
}

.cart-no-div .price {
    font-size: 14px;
    margin: 0;
}

.total-cart {
    padding: 54px 0 0;
}

.total-record {
    display: grid;

    align-items: center;
    margin-bottom: 18px;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.total-label {
    color: #000;
    font-size: 14px;
    text-align: start;
    display: flex;
}

.total-answer {
    color: #000;
    font-size: 14px;
    font-family: "SST-ARABIC-BOLD";
    display: flex;
    text-align: start;
}

.mt-35 {
    margin-top: 35px;
}

.fs-24 {
    font-size: 24px;
}

.mt-13 {
    margin-top: 13px;
}

.cart-btns {
    margin-top: 20px;
    display: flex;

}

.modal-btns {
    margin-top: 20px;
    display: flex;

}

.cart-btn {
    width: 175px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 28px;
    text-decoration: none;
    transition: 0.5s;
    font-size: 18px;
    font-family: "SST-ARABIC-BOLD";
}

html[dir="ltr"] .cart-btn {
    font-size: 16px;
}

.continue-btn {
    background-color: var(--main-color);
    margin-inline-end: 10px;
}

.continue-btn:hover {
    background-color: var(--main-hover);
    text-decoration: none;
    color: #fff;
}

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

.pay-btn:hover {
    background-color: var(--main-color);
    text-decoration: none;
    color: #fff;
}

/*                        cart page                         */

/*                           checkout page                        */
.checkout-label {
    font-size: 16px;
    color: #000;
    font-family: "SST-ARABIC-BOLD";
    text-align: start;
    margin: 34px 0 18px;
}

.checkout-answer {
    color: #000;
    font-size: 14px;
    text-align: start;
    margin: 0 0 11px;
}

.checkout-note {
    color: var(--main-hover);
    font-size: 14px;
    display: flex;
    text-align: start;
    margin: 0;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.checkout-address .address-section {
    height: max-content;
}

.discount-input-block {
    position: relative;
}

.discount-input-block input {
    padding-inline-start: 27px;
}

.apply-btn {
    background-color: var(--main-color);
    border: 0;
    outline: none;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    font-size: 14px;
    font-family: "SST-ARABIC-BOLD";
    width: 90px;
    height: 36px;
    border-radius: 50px;
    inset-inline-end: 7px;
    transition: 0.5s;
}

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

.apply-btn:focus {
    background-color: var(--main-hover);
    outline: none;
    border: 0;
}

.address-section .price {
    font-size: 18px;
    margin: 0;
    margin-inline-start: 10px;
}

.bb {
    border-bottom: 2px solid #ECECEC;
    padding-bottom: 19px;

}

.pt-32 {
    padding-top: 32px;
}


/*                            checkout page                           */

/*                         order success page                       */
.order-success {
    padding: 60px 0 90px;
}

.order-no {
    display: flex;
    justify-content: center;
    text-align: center;
    color: #000;
    font-size: 16px;
    margin: 0 0 10px;
}

.order-no-answer {
    color: var(--main-hover);
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0 0 19px;
    font-size: 20px;
    font-family: "SST-ARABIC-MEDIUM";
}

.order-success .pay-btn {
    margin-inline-end: 10px;
}

.order-success .continue-btn {
    margin-inline-end: 0;
}

.order-success .cart-btns {
    margin-top: 0;
}

.order-success .cart-btn {
    width: 179px;
    height: 48px;
    font-size: 16px;
}

/*                           order success page                               */

/*                               edit user page                                     */
.my-account-section {
    display: flex;
    padding: 0 0 40px;
}

.my-account-list {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-inline-end: 30px;
    width: 262px;
    padding: 25px 20px;
    background-color: #F9F9F9;
    height: 100%;
}

.my-account-list li a {
    width: 100%;
    text-transform: capitalize;

    font-size: 16px;
    color: #000;
    display: flex;
    align-items: center;
    transition: 0.5s;
}

.my-account-list li button {
    width: 100%;
    text-transform: capitalize;
    background-color: transparent;
    border: 0;
    outline: none;
    font-size: 16px;
    color: #000;
    display: flex;
    align-items: center;
    transition: 0.5s;
    padding: 0;
    white-space: nowrap;
}

.my-account-list li button:focus {
    outline: none;
    border: 0;

}

.my-account-list li a:hover {
    color: var(--main-hover);
    text-decoration: none;
}

.my-account-list li a:hover i {
    color: var(--main-hover);
}

.my-account-list li:not(:last-child) {
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    padding-bottom: 18px;
}

.my-account-list li a i {
    color: #C5C5C5;
    font-size: 24px;
    margin-inline-end: 11px;
    transition: 0.5s;
}

.my-account-list li button i {
    color: #C5C5C5;
    font-size: 24px;
    margin-inline-end: 11px;
    transition: 0.5s;
}

.my-account-list li a.active {
    color: var(--main-hover);
}

.my-account-list li a.active i {
    color: var(--main-hover);
}

.my-account-list li button.pale-link {
    color: #8B8B8B;
}

.my-account-list li button.pale-link:hover {
    color: var(--main-hover);
}


.my-acc-title {
    color: #000;
    font-size: 20px;
    font-family: "SST-ARABIC-BOLD";
    margin: 10px 0 40px;
    text-align: start;
    text-transform: capitalize;
}

.w-262 {
    width: 262px;
}

.my-acc-label {
    color: #000;
    font-size: 14px;
    font-family: "SST-ARABIC-MEDIUM";
    margin-inline-start: 22px;
    text-align: start;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.my-acc-form .form-input-1 {
    padding: 0 22px;
}

.my-acc-form .submit-btn {
    width: 200px;
    margin-top: 26px;
}

.my-acc-form .password-icon {
    font-size: 16px;
}

.my-account-list-content .favourite-btn {
    background-color: var(--main-hover);
    color: #fff;
}

/*                               edit user page                                     */

/*                           address book page                               */
.title-bar-with-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.button-in-title-bar {
    background-color: var(--main-hover);
    color: #fff;
    width: 126px;
    height: 36px;
    border-radius: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    text-decoration: none;
    font-size: 14px;
    font-family: "SST-ARABIC-BOLD";
    border: 0;
    outline: none;
}

.button-in-title-bar:hover {
    background-color: var(--main-color);
    color: #fff;
    text-decoration: none;
}

.button-in-title-bar:focus {
    outline: none;
    border: 0;
    color: #fff;
}

.title-bar-with-button .my-acc-title {
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.w-847 {
    width: 847px;
}

.my-account-table {
    width: 100%;
}

.table-head {
    width: 100%;
    height: 65px;
    background: #F8F8F8;
}

.table-head th {
    padding: 0 30px;
    color: #000;
    font-size: 14px;
    font-family: "SST-ARABIC-MEDIUM";
    text-transform: capitalize;
    max-width: 100px;
    white-space: wrap;
}


.edit-btn {
    padding: 0;
    display: flex;
    align-items: center;
    background-color: transparent;
    border: 0;
    outline: none;
    color: #878787;
    font-size: 20px;
    transition: 0.5s;
}

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

.edit-btn:focus {
    outline: none;
    border: 0;
    color: var(--main-hover);
}

.table-record {
    height: 65px;
    background-color: #fff;
    border-bottom: 1px solid #ECECEC;
}

.table-record td {
    padding: 0 30px;
    font-size: 14px;
    color: #000;
    max-width: 100px;
}


.table-btn {
    padding: 0 10px !important;
}

/*                          address book page                           */

/*                             notifications page                       */
.notification-block {
    margin-bottom: 7px;
    padding: 20px 20px 30px;
    border: 1.5px solid #EBEBEB;
    border-radius: 5px;
    display: flex;

}

.not-img {
    margin-inline-end: 18px;
    display: flex;
    flex-shrink: 0;
    height: 100%;
}

.notification-text {
    margin-top: 5px;
}

.not-paragraph {
    color: #000;
    font-size: 14px;
    text-align: start;
    line-height: 1.76;
    margin: 0 0 18px;
}

.not-date {
    color: #A1A1A1;
    font-size: 12px;
    text-align: start;
    display: flex;
    margin: 0;
}

.gray-bg {
    background-color: #F3F3F3;
}

/*                             notifications page                       */

/*                                   wallet page                           */
.wallet-modal-btns {
    display: flex;
    align-items: center;
}

.my-modal-btns {
    display: flex;
    align-items: center;
    gap: 5px;
}

.wallet-modal-btns .button-in-title-bar {
    margin-inline-end: 5px;
}

.cash-back-link {
    margin-inline-end: 0 !important;
    background-color: var(--main-color);
}

.cash-back-link:hover {
    background-color: var(--main-hover);
}

.charge-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.charge-info-block {
    display: flex;
    align-items: center;
    border: 2px solid #EAF2F5;
    width: 262px;
    padding: 20px;
}

.charge-icon {
    color: var(--main-color);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
    background-color: rgba(45, 142, 54, 0.15);
    margin-inline-end: 16px;
}

.charge-amount {
    color: #000;
    font-size: 24px;
    font-family: "SST-ARABIC-BOLD";
    display: flex;
    align-items: center;
    margin: 0 0 7px;

}

.currency {
    color: #000;
    font-size: 16px;
    font-family: "SST-ARABIC-BOLD";
    display: flex;
    margin: 0;
    margin-inline-start: 7px;
}

.charge-note {
    display: flex;
    margin: 0;
    color: #787878;
    font-size: 14px;
}

.my-account-tabs {
    margin: 0 0 20px;
    border: 0;
}

.my-account-tabs > li > a {
    padding: 0;
    margin: 0;
    color: #000;
    font-size: 13px;
    font-family: "SST-ARABIC-MEDIUM";
    background-color: #EBEBEB;
    border-radius: 50px;
    height: 41px;
    width: 116px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline-end: 5px;
    border: 0;
    transition: 0.5s;
}

.my-account-tabs > li > a:hover {
    border: 0;
    background-color: var(--main-color);
    color: #fff;
}

.my-account-tabs > li.active > a,
.my-account-tabs > li.active > a:hover,
.my-account-tabs > li.active > a:focus {
    border: 0;
    background-color: var(--main-color);
    color: #fff;
}

.w-116 {
    width: 116px;
    padding: 20px 0 !important;
}

.table-record td span {
    display: block;
}

.p-20 {
    padding: 20px 16px !important;
}

.my-modal {
    background-color: rgba(0, 0, 0, 0.5);
}

.my-modal-dialog {
    width: 375px;
    border-radius: 10px;
}

.my-modal-header {
    padding: 0;
    border: 0;
}

.my-modal-header .close {
    margin: 0;
    font-size: 22px;
    color: #9093A3;
    padding: 12px 0 5px;
    padding-inline-end: 12px;
    opacity: 1;
    width: auto;
}

.my-modal-header .close i {
    margin-inline-end: 0;
}

.modal-title {
    color: #000;
    text-align: center;
    text-transform: capitalize;
    font-size: 16px;
    font-family: "SST-ARABIC-BOLD";
    margin: 0 0 25px;
}

.my-modal .modal-body {
    padding: 0 30px;
}

.my-modal .address-block {
    height: 48px;
}

.my-modal .submit-btn {
    height: 55px;
    margin-bottom: 37px;
    font-size: 18px;
    margin-top: 15px;
    width: 100%;
}

html[dir="ltr"] .my-modal .submit-btn {
    font-size: 16px;
}

.textarea {
    height: 80px;
    border-radius: 24px;
    padding: 20px;
}

.table-record td {
    padding: 10px;
}

.table-head th {
    padding: 10px;
}

.sign-out-note {
    text-align: center;
    display: flex;
    justify-content: center;
    font-size: 16px;
    color: #000;
    margin: 0 0 25px;
}

.mb-22 {
    margin-bottom: 22px;
}

.sign-out-yes {
    height: 48px !important;
    background-color: var(--main-color) !important;
    font-size: 16px !important;
    color: #fff !important;
    margin-bottom: 10px !important;
}

.sign-out-yes:hover {
    background-color: var(--main-hover) !important;
}

.sign-out-no {
    height: 48px !important;
    background-color: var(--main-hover) !important;
    font-size: 16px !important;
    color: #fff !important;
    margin-top: 0 !important;

}

.sign-out-no:hover {
    background-color: var(--main-color) !important;
}

/*                                      wallet page                             */

/*                                      my-orders page                             */
.my-orders-tabs li a {
    width: 90px;
}

.wait-order {
    color: #F5A623;
    font-size: 12px;
    font-family: "SST-ARABIC-BOLD";
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: rgba(245, 166, 35, 0.2);
    padding: 0 15px;
    height: 24px;
    border-radius: 12px;
    flex-shrink: 0;
    width: max-content;
}

.map-modal-btn-2 {
    background-color: transparent;
    border: 0;
    outline: none;
    display: flex;
    align-items: center;
    padding: 0;
}

.map-modal-btn-2:hover {
    color: var(--main-hover);
}

.map-modal-btn-2:hover i {
    background-color: var(--main-color);
    color: #fff;
}

.map-modal-btn-2:focus {
    border: 0;
    outline: none;
}

.accordion .accordion__title:has(input:checked) {
    color: var(--main-color);
    border-bottom: 0;
    padding-bottom: 22px;
}

.accordion .accordion__title {
    display: block;
    border-top: 1px solid rgb(230, 230, 230);
    border-bottom: 1px solid rgb(230, 230, 230);
    font-size: 18px;
    font-family: "SST-ARABIC-MEDIUM";
    padding: 30px 0;
    color: #000;
    display: flex;
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
    padding-inline-end: 20px;
}

.accordion .accordion__title input {
    appearance: none;
}

.accordion .accordion__title:has(input:checked) .faq-number {
    color: var(--main-color);
}

.faq-number {
    font-size: 18px;
    color: rgb(179, 179, 179);
    display: flex;
    margin-inline-end: 24px;
}

.accordion .accordion__title:has(input:checked):after {

    content: "";
    font-family: "Line Awesome Free";
    font-size: 24px;

    position: absolute;
    inset-inline-end: 0;
    color: var(--main-color);
}

.accordion .accordion__title:after {
    content: "";
    font-family: "Line Awesome Free";
    font-size: 24px;

    position: absolute;
    inset-inline-end: 0;
    color: rgb(179, 179, 179);
}

.accordion .accordion__title:has(input:checked) + .accordion__text {
    max-height: 200px;
}

.accordion .accordion__text {
    overflow: hidden;
    max-height: 0;
    transition: all .5s ease-in-out;
}

.faq-answer {
    padding: 0;
    padding-inline-start: 47px;
    color: #000;
    font-size: 16px;

    line-height: 2;
    text-align: justify;
    padding-bottom: 15px;
}

.download {
    color: #E13612;
    font-size: 14px;
    background-color: transparent;
    transition: 0.5s;
    border: 0;
    outline: none;
    padding: 0;
}

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

.download:focus {
    outline: none;
    border: 0;
    color: var(--main-color);
}

.show-order-link {
    font-size: 20px;
    color: #9A9A9A;
    transition: 0.5s;
}

.show-order-link i {
    font-size: 20px;

}

.under-progress-order {
    color: #34B7EA;
    background-color: rgba(52, 183, 234, 0.2);
}

.show-order-link:hover {
    color: var(--main-color);
}

.finished-order {
    color: rgba(0, 215, 135, 1);
    background-color: rgba(0, 215, 135, 0.2);
}

.delivering-order {
    color: rgba(102, 103, 167, 1);
    background-color: rgba(102, 103, 167, 0.2);
}

.cancel-order {
    color: rgba(237, 29, 36, 1);
    background-color: rgba(237, 29, 36, 0.2);
}

.problem-order {
    color: rgba(155, 155, 155, 1);
    background-color: rgba(155, 155, 155, 0.2);
}

.return-order-btn {
    background-color: transparent;
    border: 0;
    outline: none;
    padding: 0;
}

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

.return-order-btn:focus {
    border: 0;
    outline: none;
    color: var(--main-color);
}

.recieved-order {
    color: rgba(102, 166, 27, 1);
    background-color: rgba(102, 166, 27, 0.2);
}

.my-acc-title .wait-order {
    margin-inline-start: 15px;
}

.print-bill-link {
    background-color: #66A61B;
}

.print-bill-link:hover {
    background-color: var(--main-hover);
}

.order-date {
    color: #4B5256;
    font-size: 14px;
    display: flex;
    margin: 17px 0 0;
}

.order-table {
    background-color: #F8F8F8;
    padding: 30px;
}

.order-table .table-head {
    height: auto;
    border-bottom: 1px solid #D5D5D5;

}

.order-table .table-head th {
    padding-bottom: 23px;

}

.order-table .table-record {
    background-color: #F8F8F8;
}

.w-360 {
    width: 360px;
}

.total-order-info {
    display: flex;
    justify-content: flex-end;
}

.mt-54 {
    margin-top: 54px;
}

.f-medium {
    font-family: "SST-ARABIC-MEDIUM";
}

.f-roman {
    font-family: "SST-ARABIC-ROMAN";
}

.map-link {
    color: var(--main-hover);
    text-decoration: none;
    transition: 0.5s;
}

.map-link:hover {
    color: var(--main-color);
    text-decoration: none;
}


.total-order-info-2 .total-record {
    justify-content: unset;
}

.popup-order-btns-div {
    display: flex;
}

.problem-btn {
    color: #A2A2A2;
    font-size: 16px;
    font-family: "SST-ARABIC-BOLD";
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    outline: none;
    border-radius: 31px;
    background-color: #EEEEEE;
    width: 178px;
    height: 48px;
    transition: 0.5s;
    margin-inline-end: 10px;
}

.problem-btn:hover {
    background-color: var(--main-hover);
    color: #fff;
}

.problem-btn:focus {
    background-color: var(--main-hover);
    color: #fff;
    outline: none;
    border: 0;
}

.cancel-btn {
    color: #A2A2A2;
    font-size: 16px;
    font-family: "SST-ARABIC-BOLD";
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    outline: none;
    border-radius: 31px;
    background-color: #EEEEEE;
    width: 178px;
    height: 48px;
    transition: 0.5s;

}

.cancel-btn:hover {
    background-color: var(--main-hover);
    color: #fff;
}

.cancel-btn:focus {
    background-color: var(--main-hover);
    color: #fff;
    outline: none;
    border: 0;
}

.small-modal .address-block {
    height: auto;
    background-color: transparent;
    padding-inline-start: 0;
}

.small-modal .address-type-radio:checked ~ .checkmark-2::before {
    background-color: var(--main-color);
}

.small-modal .submit-btn {
    width: 154px;
    margin-top: 0;
}

.small-modal .sign-out-yes {
    margin-bottom: 0;
    margin-inline-end: 6px;
}

.address-block label {
    margin: 0;
}

.extra-order-paragraph {
    text-align: start;
    font-size: 14px;
    color: #000;
    margin: 0;
}

.mb-13 {
    margin-bottom: 13px !important;
}

.small-modal .textarea {
    height: 100px;
    width: 100%;
    background-color: #F1F1F1;
    border-radius: 24px;
    padding: 17px 25px;
    border: 1px solid transparent;
    transition: 0.5s;
    outline: none;
    font-size: 14px;
    color: #9B9B9B;
}

.small-modal .textarea:focus {
    border: 1px solid var(--main-color);
    outline: none;
}

.map-modal-btn {
    background: transparent;
    border: 0;
    outline: none;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-end: 0;
}

.rating-btn {
    background-color: var(--main-color);
    margin-inline-end: 5px;
}

.rating-order-div {
    display: flex;
}

.rating-list {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 21px;
    gap: 3px;
    cursor: pointer;
}

.star {
    font-size: 36px;
    color: #C5C5C5;
}

.star:hover {
    color: #F5A61D;
}

.star.selected {
    color: #F5A61D;
}


.mb-19 {
    margin-bottom: 19px;
}

.fs-24 {
    justify-content: flex-start;
}

.fs-24 li i {
    font-size: 24px;

}

.fs-18 i {
    font-size: 18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #E9E9E9;
}

.return-label {
    color: #000;
    font-size: 14px;
    font-family: "SST-ARABIC-MEDIUM";
    text-align: start;
    text-transform: capitalize;
    margin: 38px 0 10px;
}

.upload__btn {
    height: 48px;
    width: 100%;
    background-color: #F1F1F1;
    border: 0;
    border-radius: 50px;
    outline: none;

    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 14px;
    color: #9B9B9B;

    padding: 0 22px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.label-text {
    width: 100%;
    overflow: hidden;
}

.upload-images {
    width: 87px;
    height: 36px;
    border-radius: 50px;
    background-color: var(--main-color) !important;
    color: #fff;
    font-size: 12px;
    font-family: "SST-ARABIC-MEDIUM";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-end: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.upload__inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.upload__img-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
}

.upload__img-box {
    width: 80px;
}

.img-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100%;
}

.upload__img-close {
    width: 20px;
    height: 20px;
    background-color: var(--main-hover);
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    cursor: pointer;
}

.upload__img-close:after {
    content: "";
    font-size: 16px;
    color: #fff;
    font-family: "Line Awesome Free";
    font-weight: 700;
}

.product-number {
    color: #9F9F9F;
    font-size: 14px;
    display: flex;
    margin-inline-end: 5px;
}

.fs-14 {
    font-size: 14px;
}

.b-0 {
    border: 0;
}

/*                                      my-orders  page                             */

/*                            contact us page                                           */
.contact-info-title {
    color: #000;
    font-size: 16px;
    font-family: "SST-ARABIC-BOLD";
    text-align: start;
    text-transform: capitalize;
    margin: 0 0 18px;
}

.m-start-0 {
    margin-inline-start: 0;
}

.mb-54 {
    margin-bottom: 54px;
}

.contact-info-list {
    display: flex;
    align-items: center;
    gap: 60px;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 40px;
}

.contact-info-list li a {
    color: #000;
    font-size: 16px;
    text-decoration: none;
    transition: 0.5s;
    display: flex;
    align-items: center;
}

.contact-info-list li a:hover {
    color: var(--main-color);
}

.contact-icon-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #E8F2DD;
    font-size: 20px;
    color: #66A61B;
    margin-inline-end: 15px;
}

.map-section {
    width: 100%;
    margin-bottom: 62px;
    position: relative;
}

.map-img {
    width: 100%;
}

.map-indicator {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-note {
    text-align: start;
    color: #000;
    font-size: 16px;
    font-family: "SST-ARABIC-BOLD";
    margin: 0 0 33px;
}

.contact-form {
    width: 100%;
    margin-bottom: 100px;
}

.contact-form .form-record {
    gap: 30px;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.contact-form .form-input-1 {
    width: 260px;
    padding: 0 22px;
}

.contact-form .input-block {
    width: 260px;
}

.contact-textarea {
    width: 100%;
    height: 100px;
    border-radius: 24px;
    background-color: #F1F1F1;
    padding: 22px;
    border: 2px solid transparent;
    transition: 0.5s;
    outline: none;
}

.contact-textarea:focus {
    border: 2px solid var(--main-color);
    outline: none;
}

.msg-block {
    width: 100%;
}

.send-btn-div {
    display: flex;
    justify-content: flex-end;
}

.send-btn-div .submit-btn {
    width: 158px;

}

.paragraph-text {
    color: #000;
    text-align: start;
    font-size: 16px;
    line-height: 1.768;
    margin: 0 0 30px;
}

.text-block-section {
    padding-bottom: 80px;
}

.about-section {
    padding: 96px 0 100px;
    display: flex;
    gap: 33px;
}

.about-paragraph {
    max-width: 552px;
}

.about-img {
    max-width: 553px;

}

.about-img img {
    width: 100%;
}

.mt-0 {
    margin-top: 0;
}

/*                            contact us page                                           */

/*                                    media query                                    */
/*                    menu in phone size                      */

@media (max-width: 991px) {
    .breadcrumb-sec {
        padding: 20px 0 30px;
    }

    .accordion .accordion__title:has(input:checked) {
        padding-bottom: 15px;
    }

    .accordion .accordion__title {
        font-size: 16px;
        padding-inline-end: 20px;
    }

    .faq-number {
        margin-inline-end: 15px;
    }

    .faq-answer {
        padding-inline-start: 36px;
        padding-inline-end: 36px;
    }

    .accordion .accordion__title:has(input:checked) + .accordion__text {
        max-height: 350px;
    }

    .total-record {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .total-order-info .total-record {
        justify-content: space-between;

        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .total-order-info .total-record .total-answer {
        justify-content: flex-end;
    }

    .not-img {
        display: none;
    }

    .notification-text {
        margin-top: 0;
    }

    .w-292 {
        width: 215px;
    }

    .total-order-info-2 .total-record {
        gap: 15px;
    }

    .filter-toggle {
        display: flex;
        color: var(--main-color);
        font-size: 18px;
        font-family: "SST-ARABIC-BOLD";
        margin: 0;
        align-items: center;
        text-align: start;
        text-transform: capitalize;
        margin-bottom: 10px;
    }

    .filter-bars {
        margin-inline-end: 5px;
    }

    .filter-title .hide-icon {
        display: flex;
        margin-inline-end: 3px;
    }

    .filter-title {
        display: flex;
    }

    .filter-times {
        margin-inline-end: 5px;
    }

    .contact-info-list {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
    }

    .contact-info-list li a {
        width: 100%;
    }

    .chat-btn {
        inset-inline-end: 10px;
        inset-inline-start: auto;
    }

    .map-indicator {
        width: 30px;
    }

    .contact-form .input-block {
        margin-bottom: 15px;
    }

    .send-btn-div {
        margin-top: 20px;
        justify-content: center;
    }

    .recieved-order-title-bar {
        flex-wrap: wrap;
    }

    .rating-order-div {
        margin-top: 15px;
    }

    .filter-section {
        position: absolute;
        width: 100%;

        background: #F6F6F6;
        top: 225px;
        inset-inline-start: -110%;
        transition: 0.5s;
        z-index: 9;
        height: 100%;
    }

    .checkbox-div {
        margin-bottom: 15px;
    }

    .filter-title-div {
        margin-bottom: 15px;
    }

    .products-title-sec {
        display: flex;
        justify-content: start;

        align-items: flex-start;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .range-slider {
        margin-bottom: 7px;
    }

    .filter-section.active {
        inset-inline-start: 0;
        max-height: 100%;
        height: 100%;
        width: 262px;
        top: 0;
        z-index: 999;
    }

    .category-content {
        flex-wrap: wrap;
    }

    .products-grid {
        margin-inline-start: 0;
    }

    .products-grid-title-bar {
        flex-wrap: wrap;
    }

    .products-grid-content {
        grid-gap: 15px 10px;
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }

    .about-section {
        padding: 30px 0 50px;

        flex-wrap: wrap;
    }

    .about-img {
        order: -1;
        max-width: 100%;
    }

    .about-paragraph {
        max-width: 100%;
    }

    .products-grid-content .offer-block {
        width: 160px;
    }

    .products-grid-content .counter-div {
        margin-inline-end: 3px;
    }

    .my-account-tabs > li > a {
        width: 105px;
    }

    html[dir="ltr"] .my-modal .submit-btn {
        font-size: 14px;
    }

    .social-list {
        margin-bottom: 20px;
    }

    .payment-list {
        order: -1;
        margin-bottom: 10px;
    }

    .body-bg {
        display: flex;
        flex-wrap: wrap;
    }

    .p-0 {
        padding-top: 30px;
    }

    .form-text {
        margin: 0 auto 50px;
    }

    .body-bg .copy-right {
        margin-bottom: 30px;
    }

    .register-content {
        width: 100%;
    }

    .register-top-header .form-text {
        margin: 0;
    }

    .form-record {
        flex-wrap: wrap;
        gap: 0px !important;
        margin-bottom: 0 !important;
    }

    .input-block {
        width: 100% !important;
    }

    .form-input-1 {
        width: 100% !important;
    }

    .mb-87 {
        margin: 0 0 87px !important;
        display: block;
    }

    .register-form .form-input-1 {
        margin-bottom: 15px;
    }

    .product-details-content {
        flex-wrap: wrap;
    }

    .product-slider {
        width: 100%;
        margin-bottom: 30px;
        margin-inline-end: 0;
    }

    .product-slider .swiper-btn {
        display: flex;
    }

    .add-cart-div-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pro-price {
        margin-bottom: 20px;
    }

    .address-content .input-block {
        margin-bottom: 15px;
    }

    .address-content .form-input-1 {
        margin-bottom: 0;
    }

    .checkout-address {
        width: 100%;
    }

    .my-account-section {
        flex-wrap: wrap;
    }

    .my-account-list {
        margin-inline-end: 0;
        display: flex;
        width: 100%;
        overflow-x: scroll;
        padding: 20px;
        margin-bottom: 20px;
    }

    .my-account-list li:not(:last-child) {
        border-bottom: 0;
        margin: 0;
        padding: 0;
        margin-inline-end: 15px;
    }

    .my-account-list::-webkit-scrollbar {
        height: 5px;
    }

    .my-account-list li a {
        white-space: nowrap;
    }

    .my-acc-form .input-block {
        margin-bottom: 15px;
    }

    .my-acc-form .form-input-1 {
        margin-bottom: 0;
    }

    .my-acc-form .submit-btn {
        width: 100%;
    }

    .navgition {
        display: block;
        position: fixed;
        padding: 30px 20px;
        padding-top: 0;
        left: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        clip-path: circle(10.9% at 16% 16%);
        background-color: rgba(255, 255, 255, 0.99);
        transition: 0.4s;
        z-index: 8;
        overflow-y: auto;
        transition: all 0.3s ease-in-out;
    }

    html[dir="ltr"] .navgition {
        clip-path: circle(11.2% at 86% 14%);
    }

    .reset-left {
        left: 0;
        top: 0;
        clip-path: circle(139.6% at 9% 15%);
        visibility: visible;
        opacity: 1;

    }

    html[dir="ltr"] .reset-left {
        clip-path: circle(121.2% at 86% 14%);
    }

    .big-menu {
        display: block;

        text-align: start;
        align-items: center;
        padding: 90px 20px 20px;
        margin-inline-start: 0;

    }

    .big-menu li {
        margin: 0;
    }


    .big-menu li a {
        display: flex;
        color: #000;
        align-items: center;
        font-family: "SST-ARABIC-BOLD";
        font-size: 18px;
        position: relative;
        width: 100%;
        justify-content: space-between;
    }

    .cart-content {
        flex-wrap: wrap;
    }

    .address-section {
        width: 100%;
        padding: 20px;
        margin-bottom: 40px;
    }

    .cart-section {
        margin-inline-start: 0;
        width: 100%;
    }

    .address-tabs > li.active > a,
    .address-tabs > li.active > a:hover,
    .address-tabs > li.active > a:focus {
        font-size: 12px;
    }

    .address-tabs > li > a {
        font-size: 12px;
        height: 53px;
        width: 145px;
    }

    .address-tabs > li > a i {
        font-size: 20px;
        margin-inline-end: 5px;
    }

    .address-tabs > li:not(:last-child) {
        margin-inline-end: 5px;
    }

    .cart-pro-details {
        width: 250px;
        margin-inline-start: 15px;
    }

    .cart-btns {
        flex-wrap: wrap;
    }


    .cart-btn {
        width: 100% !important;
    }

    .continue-btn {
        margin-inline-end: 0;
        margin-bottom: 15px;
    }

    .order-success .pay-btn {
        margin-inline-end: 0;
        margin-bottom: 15px;
    }

    .order-success .cart-btns {
        width: 100%;
    }

    .charge-info {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .wallet-modal-btns .button-in-title-bar {
        width: 100%;
        margin-top: 10px;
    }

    .wallet-modal-btns {
        width: 100%;
    }

    .wallet-title-bar {
        flex-wrap: wrap;

    }

    .my-modal-dialog {
        width: auto;
    }

    /*                    menu in phone size                      */
}

/*                                    media query                                    */


/*                                 arrow-top                           */
.arrow-top {
    position: fixed;
    bottom: 90px;
    inset-inline-start: 15px;
    display: none;
    z-index: 10;
    text-decoration: none !important;
}

.arrow-top i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.15);
    font-size: 20px;
    color: #808080;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.arrow-top i:hover {
    background-color: var(--main-hover);
    color: #fff;
}

@media (max-width: 767px) {
    .arrow-top {
        bottom: 10px;
        inset-inline-start: 10px;
    }

    .footer-first-record {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 40px;
        align-items: flex-start;
    }

    .serv-record {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }

    .re-extra-margin {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 10px;
    }

    .serv-block {
        margin-bottom: 23px;
    }

}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1170px;
    }
}

@media (max-width: 767px) {

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        padding-left: 20px;
        padding-right: 20px;
    }
}


@media (min-width: 992px) and (max-width: 1199px) {

    .top-header-list li:not(:last-child) {
        margin-inline-end: 15px !important;
    }

    .top-header-list-text {
        display: none;
    }

    .contact-form .form-input-1 {
        width: 205px;
    }

    .search-section {
        width: 500px;
    }

    .big-menu li a {
        font-size: 12px;
    }

    .big-menu li:first-child {
        margin-inline-end: 5px;
    }

    .big-menu li:not(:first-child) {
        margin: 0 5px;
    }

    .products-grid-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .offers-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .address-tabs > li.active > a,
    .address-tabs > li.active > a:hover,
    .address-tabs > li.active > a:focus {
        font-size: 14px;
    }

    .address-tabs > li > a {
        font-size: 14px;
        width: 229px;
        height: 70px
    }

    .address-tabs > li > a i {
        font-size: 25px;
    }

    .address-section {
        width: 560px;
    }

    .address-content .form-record {
        flex-wrap: wrap;
    }

    .address-content .input-block {
        width: 100%;
    }

    .address-content .form-input-1 {
        width: 100%;
        margin-bottom: 0;
    }

    .my-acc-form .form-record {
        flex-wrap: wrap;
    }

    .w-262 {
        width: 100%;
    }

    .charge-info {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
}


@media only screen and (max-width: 994px) and (min-width: 768px) {

    .payment-list {
        order: 0;
        margin-bottom: 0;
    }

    .my-acc-title .wait-order {
        margin-inline-start: 15px !important;
        margin-top: 0;
    }

    .about-img {
        order: 2;
    }

    .about-section {
        flex-wrap: nowrap;
    }

    .about-paragraph {
        max-width: 500px;
    }

    .footer-logo-col {
        align-items: flex-start;
    }

    .body-bg {
        display: grid;
    }

    .p-0 {
        padding-top: 0;
    }

    .login-text {
        padding-top: 30px;
    }

    .form-record {
        flex-wrap: nowrap;
        gap: 20px !important;
    }

    .my-acc-form .submit-btn {
        width: 200px;
    }

    .product-details-content {
        flex-wrap: nowrap;
    }

    .product-slider {
        width: 358px;
        margin-inline-end: 40px;
        margin-bottom: 0;
    }

    .add-cart-div-content {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .pro-price {
        margin-bottom: 0;
    }

    .address-tabs > li.active > a,
    .address-tabs > li.active > a:hover,
    .address-tabs > li.active > a:focus {
        font-size: 16px;
    }

    .address-tabs > li > a {
        font-size: 16px;
        width: 329px;
        height: 70px
    }

    .address-tabs > li > a i {
        font-size: 30px;
    }

    .cart-section {
        width: 100%;
    }

    .my-modal-dialog {
        width: 375px;
    }

    .wallet-modal-btns {
        width: auto;
    }

    .wallet-modal-btns .button-in-title-bar {
        width: 126px;
        margin-top: 0;
    }

    .nav-foot-header {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .nav-wrap {
        display: flex;
        flex-direction: column;
        max-height: 140px;
        flex-wrap: wrap;
    }


    .nav-foot-link {
        font-size: 14px;
    }

}


@media (min-width: 1200px) and (max-width: 1400px) {
    .big-menu li a {
        font-size: 14px;
    }

    .big-menu li:not(:first-child) {
        margin: 0 10px;
    }

    .big-menu li:first-child {
        margin-inline-end: 10px;
    }

    .search-section {
        width: 500px;
    }
}
