/*********************************************************
  // global color variables
**********************************************************/
/*********************************************************
  // Font variables
**********************************************************/
/*********************************************************
  // spacing variables
**********************************************************/
/*********************************************************
  // screens
**********************************************************/
/* Main properties that control the layout direction are:
-----------------------------------------------
- Direction (LTR/RTL)
- Float (left/right)
- Margin
- Padding
- Absolute position (left/right)
- Background position (left/right)
- Border
- Border radious
- Note: "Think about flexbox properties"
*/
/* Clearfix */
/* Direction */
/* Float */
/* Margin */
/* Padding */
/* Left And Right For Absolute Position */
/* Border */
/* d-f-center */
/* d-f-between */
/* Circle */
/* Overlay */
/* Grid */
* {
  border: 0;
  margin: 0;
  outline: 0;
  line-height: initial;
  box-sizing: border-box;
}

@font-face {
  font-family: fontDemi;
  src: url("../fonts/ArbFONTS-URW-DIN-Arabic-Demi.ttf");
}
@font-face {
  font-family: fontReg;
  src: url("../fonts/ArbFONTS-URW-DIN-Arabic-Light.ttf");
}
@font-face {
  font-family: fontMed;
  src: url("../fonts/ArbFONTS-URW-DIN-Arabic-Medium.ttf");
}
html {
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 6px;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: #5b5349;
}

body {
  font-family: fontMed;
  overflow-x: hidden;
}
html[lang=en] body {
  direction: ltr;
  text-align: left;
}
html[lang=ar] body {
  direction: rtl;
  text-align: right;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

html[lang=en] input {
  direction: ltr;
}
html[lang=ar] input {
  direction: rtl;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 13px;
  color: #161616;
}

textarea {
  resize: none;
}

i {
  line-height: initial;
}

p {
  color: #707070;
  margin: 0;
  font-size: 1em;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus::placeholder {
  color: transparent;
}

*::-moz-placeholder {
  color: #adabab;
  font-size: 13px;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

*::placeholder {
  color: #adabab;
  font-size: 13px;
  transition: all 0.3s ease;
}

form {
  padding: 0;
}
html[lang=en] form {
  text-align: left;
}
html[lang=ar] form {
  text-align: right;
}

a {
  text-decoration: none;
  color: inherit;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
}

.owl-carousel {
  touch-action: manipulation;
}

ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

button,
input[type=submit] {
  cursor: pointer;
}

button,
a {
  transition: all 0.3s ease;
}

select:focus,
button:focus,
input:focus {
  outline: 0;
}

/* owl carousel*/
.owl-carousel .owl-stage, .owl-carousel.owl-drag .owl-item {
  touch-action: auto;
}

/* owl carousel*/
@media (min-width: 1720px) {
  .container {
    max-width: 1418px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1370px;
  }
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999999;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: hidden;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.loader img {
  max-width: 470px;
  max-height: 470px;
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes logoeffect2 {
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.load {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  margin: 110px auto 0;
  border: solid 4px #5b5349;
  border-radius: 50%;
  border-right-color: transparent;
  border-bottom-color: transparent;
  transition: all 0.4s ease-in;
  animation-name: rotate;
  animation-duration: 0.9s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  z-index: 10;
  display: none;
}
.load.lg {
  margin: 200px auto 0;
}

.load-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9;
  display: none;
}

.search {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
}
.search .search-select-container {
  width: 130px;
  height: 42px;
  position: relative;
}
@media screen and (max-width: 425px) {
  .search .search-select-container {
    width: 110px;
  }
}
.search .search-input {
  width: 320px;
  height: 42px;
  border: 1px solid #D5D5D5;
  transition: all 0.3s ease;
  padding: 0 12px;
  font-size: 14px;
  color: #161616;
  border-radius: 50px 0 0 50px;
}

html[lang=en] .search .search-input {
  border-radius: 0 50px 50px 0;
}

@media screen and (max-width: 576px) {
  .search .search-input {
    width: 260px;
  }
}
@media screen and (max-width: 425px) {
  .search .search-input {
    width: 220px;
  }
}
@media screen and (max-width: 375px) {
  .search .search-input {
    width: 175px;
  }
}

.search .search-input:focus {
  border-color: #5b5349;
}
.search .search-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 48px;
  border: 1px solid #161616;
  background-color: #161616;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
  transition: all 0.3s ease;
}
html[lang=en] .search .search-btn {
  right: 0;
}
html[lang=ar] .search .search-btn {
  left: 0;
}
.search .search-btn img {
  max-width: 28px;
}
.search .search-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  padding: 0;
  font-size: 13px;
  color: #a7a4a4;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
html[lang=en] .search .search-icon {
  right: 12px;
}
html[lang=ar] .search .search-icon {
  left: 12px;
}
.search .search-icon:hover {
  color: #5b5349;
}

.overlay-m {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 888;
}

.main-title {
  margin-bottom: 30px;
}
@media screen and (max-width: 425px) {
  .main-title {
    margin-bottom: 20px;
  }
}
.main-title .main-tit-text {
  font-size: 22px;
  color: #202020;
  margin-bottom: 15px;
  font-family: fontDemi;
}
@media screen and (max-width: 768px) {
  .main-title .main-tit-text {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 425px) {
  .main-title .main-tit-text {
    font-size: 20px;
  }
}
.main-title .main-tit-text.lg {
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .main-title .main-tit-text.lg {
    font-size: 18px;
  }
}
.main-title .all-anchor {
  font-size: 18px;
  text-decoration: underline;
  color: #5b5349;
  transition: all 0.3s ease;
}
.main-title .all-anchor:hover {
  color: #161616;
}
@media screen and (max-width: 768px) {
  .main-title .all-anchor {
    font-size: 16px;
  }
}
.main-title .anchor {
  font-size: 16px;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 5px;
  color: #5b5349;
  transition: all 0.3s ease;
}
@media screen and (max-width: 425px) {
  .main-title .anchor {
    font-size: 14px;
  }
}
.main-title .anchor:hover {
  color: #5b5349;
}
html[lang=en] .main-title .anchor i {
  transform: rotateY(180deg);
}
@media screen and (max-width: 768px) {
  .main-title.media {
    flex-wrap: wrap;
    justify-content: center;
  }
  .main-title.media .main-tit-text {
    font-size: 17px;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 35px;
  font-size: 23px;
  color: #161616;
}
.section-title.tshadow {
  text-shadow: 0 2px 2px rgba(22, 22, 22, 0.1);
  margin-bottom: 22px;
}
@media screen and (max-width: 576px) {
  .section-title.tshadow {
    text-shadow: none;
  }
}
@media screen and (max-width: 576px) {
  .section-title {
    font-size: 19px;
    margin-bottom: 18px;
  }
}

.page-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #D5D5D5;
  margin-bottom: 45px;
}
@media screen and (max-width: 425px) {
  .page-title {
    margin-bottom: 30px;
  }
}
.page-title .title {
  font-size: 20px;
  color: #505050;
  font-family: fontDemi;
}
@media screen and (max-width: 425px) {
  .page-title .title {
    font-size: 17px;
  }
}
@media screen and (max-width: 576px) {
  .page-title .main-btn.sm2 {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 14px;
    padding: 0 10px;
    height: 38px;
  }
}

.center-title {
  text-align: center;
  font-size: 20px;
  font-family: fontDemi;
  color: #6c757d;
  margin-bottom: 35px;
}

.section-heading {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 425px) {
  .section-heading {
    flex-direction: column-reverse;
    align-items: unset;
    gap: 10px;
  }
}

.filter-select {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
}
html[lang=en] .filter-select {
  margin-left: auto;
}
html[lang=ar] .filter-select {
  margin-right: auto;
}
.filter-select .label-filter {
  font-size: 16px;
  font-family: fontDemi;
  color: #202020;
}
@media screen and (max-width: 425px) {
  .filter-select .label-filter {
    font-size: 15px;
  }
}

.filter-search {
  width: 350px;
}
@media screen and (max-width: 768px) {
  .filter-search {
    width: 280px;
  }
}
@media screen and (max-width: 576px) {
  .filter-search {
    width: 220px;
  }
}
@media screen and (max-width: 425px) {
  .filter-search {
    width: 100%;
  }
}
.filter-search.input-g {
  margin-bottom: 0;
}
.filter-search .input-me {
  min-height: 42px !important;
}
.filter-search .main-icon {
  background-color: transparent;
}
html[lang=en] .filter-search .main-icon {
  right: 8px !important;
}
html[lang=ar] .filter-search .main-icon {
  left: 8px !important;
}

.open-side-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #5b5349;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.open-side-icon img {
  width: 30px;
  height: 30px;
}
.open-side-icon:hover {
  transform: translateY(-4px);
}

.dropdown-m-container {
  position: relative;
}
.dropdown-m-container .dropdown-m {
  position: absolute;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  padding: 10px;
  top: 80px;
  z-index: -1;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.68, -0.3, 0.265, 2.1);
  width: 200px;
  max-height: 300px;
  overflow-y: auto;
}
html[lang=en] .dropdown-m-container .dropdown-m {
  right: 0;
}
html[lang=ar] .dropdown-m-container .dropdown-m {
  left: 0;
}
@media screen and (max-width: 425px) {
  html[lang=en] .dropdown-m-container .dropdown-m {
    right: 50%;
  }
  html[lang=ar] .dropdown-m-container .dropdown-m {
    left: 50%;
  }
  html[lang=en] .dropdown-m-container .dropdown-m {
    transform: translateX(50%);
  }
  html[lang=ar] .dropdown-m-container .dropdown-m {
    transform: translateX(-50%);
  }
}
.dropdown-m-container .dropdown-m::-webkit-scrollbar {
  width: 3px;
}
.dropdown-m-container .dropdown-m::-webkit-scrollbar-track {
  background: transparent;
}
.dropdown-m-container .dropdown-m::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: #5b5349;
}
.dropdown-m-container .dropdown-m.active-drop {
  opacity: 1;
  top: 45px;
  z-index: 55;
  pointer-events: auto;
}
.dropdown-m-container .dropdown-m.user-drop {
  width: 150px;
}
.dropdown-m-container .dropdown-m.not-drop {
  width: 240px;
}
.dropdown-m-container .dropdown-m .drop-link {
  display: block;
  padding: 6px 0;
  text-align: center;
  color: #707070;
  font-size: 15px;
  margin: 2px;
  transition: all 0.3s ease;
}
.dropdown-m-container .dropdown-m .drop-link:hover {
  color: #161616;
}
.dropdown-m-container .dropdown-m .drop-text {
  display: block;
  padding: 10px 10px;
  text-align: center;
  color: #707070;
  font-size: 14px;
  line-height: 1.6;
  height: 62.9px;
  border-bottom: 1px solid #f0f0f0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dropdown-m-container .dropdown-m .drop-text:last-of-type {
  border-bottom: none;
}
.dropdown-m-container .dropdown-m .more-anchor {
  display: block;
  margin-top: 8px;
  text-align: center;
  color: #0d6efd;
  text-decoration: underline !important;
}

.rate-icons {
  display: flex;
  align-items: center;
  gap: 1px;
  margin-bottom: 6px;
}
.rate-icons i {
  font-size: 13px;
  color: #FFC107;
}
.rate-icons.lg {
  margin-bottom: 20px;
}
.rate-icons.lg i {
  font-size: 15px;
}

.owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: absolute !important;
  bottom: 20px;
  left: 0;
  width: 100%;
  z-index: 3;
}
.owl-dots .owl-dot {
  width: 18px;
  height: 8px;
  border-radius: 10px;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .owl-dots .owl-dot {
    height: 7px;
    width: 15px;
  }
}
.owl-dots .owl-dot.active {
  width: 35px;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .owl-dots .owl-dot.active {
    width: 30px;
  }
}

.owl-nav .owl-prev, .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff !important;
  border: 2px solid #fff !important;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.owl-nav .owl-prev:hover, .owl-nav .owl-next:hover {
  background-color: #5b5349 !important;
}
@media screen and (max-width: 992px) {
  .owl-nav .owl-prev, .owl-nav .owl-next {
    display: none;
  }
}
.owl-nav .owl-prev {
  right: 7%;
}
.owl-nav .owl-next {
  left: 7%;
}

.nav {
  gap: 12px;
}
@media screen and (max-width: 576px) {
  .nav {
    gap: 8px;
  }
}
.nav.nav-mb {
  margin-bottom: 0 !important;
}
.nav.border-m {
  border-bottom: 1px solid #D5D5D5;
}
.nav.nav-pills .nav-link {
  min-width: 120px;
  background-color: #F5F5F5;
  color: #707070;
  font-size: 14px;
  border-radius: 5px;
  font-family: fontMed;
  padding: 10px 15px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  .nav.nav-pills .nav-link {
    min-width: auto;
  }
}
@media screen and (max-width: 576px) {
  .nav.nav-pills .nav-link {
    font-size: 13px;
    padding: 10px 10px;
  }
}
.nav.nav-pills .nav-link.sm {
  min-width: 120px;
}
.nav.nav-pills .nav-link.active, .nav.nav-pills .nav-link:hover {
  background-color: #5b5349;
  color: #fff;
}

.nav.nav-pills .nav-link.color-none {
  min-width: auto;
  background-color: transparent;
  font-size: 16px;
  border-radius: 0;
  padding: 5px;
}
@media screen and (max-width: 425px) {
  .nav.nav-pills .nav-link.color-none {
    font-size: 14px;
  }
}
.nav.nav-pills .nav-link.color-none.active, .nav.nav-pills .nav-link.color-none:hover {
  background-color: transparent;
  color: #5b5349;
}

.steps {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.steps .step-item {
  min-width: 145px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 576px) {
  .steps .step-item {
    min-width: 105px;
  }
}
@media screen and (max-width: 425px) {
  .steps .step-item {
    min-width: 95px;
  }
}
@media screen and (max-width: 375px) {
  .steps .step-item {
    min-width: 82px;
  }
}
.steps .step-item + .step-item:after {
  content: "";
  position: absolute;
  top: 9px;
  width: 100%;
  border: 1px dashed #5b5349;
  z-index: -10;
}
html[lang=en] .steps .step-item + .step-item:after {
  left: 0;
}
html[lang=ar] .steps .step-item + .step-item:after {
  right: 0;
}
html[lang=en] .steps .step-item + .step-item:after {
  transform: translateX(-50%);
}
html[lang=ar] .steps .step-item + .step-item:after {
  transform: translateX(50%);
}
.steps .step-item .progress-count {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  background: #5b5349;
}
.steps .step-item .progress-count:before {
  content: "";
  height: 5px;
  width: 10px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%) rotate(-45deg);
  transform-origin: center center;
}
.steps .step-item .progress-label {
  font-size: 14px;
  font-family: fontDemi;
  color: #202020;
  margin-top: 8px;
}
@media screen and (max-width: 576px) {
  .steps .step-item .progress-label {
    font-size: 13px;
  }
}
@media screen and (max-width: 425px) {
  .steps .step-item .progress-label {
    font-size: 12px;
  }
}
.steps .step-item.current-item ~ .step-item:after {
  border-color: #F5F5F5;
}
.steps .step-item.current-item ~ .step-item .progress-count {
  background-color: #fff;
  border: 1px solid #D5D5D5;
}
.steps .step-item.current-item ~ .step-item .progress-count:before {
  display: none;
}
.steps .step-item.current-item ~ .step-item .progress-label {
  color: #6c757d;
  font-family: fontMed;
}
.steps .step-item.current-item .progress-count {
  border: 3px solid #fff;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}
.steps .step-item.current-item .progress-count:before {
  display: none;
}

/********************* Tabs *********************/
.tabs-container-m {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin-bottom: 40px;
}
@media screen and (max-width: 576px) {
  .tabs-container-m {
    gap: 10px;
  }
}
.tabs-container-m .tab-m {
  min-width: 240px;
  min-height: 50px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #161616;
  color: #161616;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  .tabs-container-m .tab-m {
    min-width: 160px;
    min-height: 46px;
    font-size: 15px;
  }
}
@media screen and (max-width: 375px) {
  .tabs-container-m .tab-m {
    min-width: 140px;
    min-height: 46px;
    font-size: 15px;
  }
}
.tabs-container-m .tab-m.active-tab {
  background-color: #161616;
  color: #fff;
}

.iti {
  width: 100%;
}
.iti .iti__selected-flag {
  width: 100px;
  justify-content: center;
  min-height: 48px;
  border-radius: 5px;
  font-size: 14px;
  color: #707070;
  transition: all 0.3s ease;
  border: 1px solid #D5D5D5;
  background-color: transparent !important;
}
@media screen and (max-width: 425px) {
  .iti .iti__selected-flag {
    min-height: 44px;
  }
}
.iti .iti__selected-flag .iti__selected-dial-code {
  margin: 8px;
}
html[lang=en] .iti .iti__country-list {
  right: 0;
}
html[lang=ar] .iti .iti__country-list {
  left: 0;
}

html[lang=en] .iti--allow-dropdown .iti__flag-container, html[lang=en] .iti--separate-dial-code .iti__flag-container {
  right: 0 !important;
  left: unset;
}
html[lang=ar] .iti--allow-dropdown .iti__flag-container, html[lang=ar] .iti--separate-dial-code .iti__flag-container {
  left: 0;
  right: unset !important;
}

.iti__country{
    display: flex;
    align-items: center;
    color: #202020;
    direction: ltr;
    gap: 6px
}

html[lang=ar] .iti__country{
    flex-direction: row-reverse;
}

html[lang=en] .iti__country{
    flex-direction: row;
}

.up:hover,
.up:focus {
  box-shadow: inset 0 -4.25em 0 0 #fff;
  color: #5b5349 !important;
  /* transform: translateY(-4px); */
}

.main-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 140px;
  background-color: #5b5349;
  border: 1px solid #5b5349;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  height: 44px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .main-btn {
    height: 45px;
    font-size: 15px;
  }
}
@media screen and (max-width: 425px) {
  .main-btn {
    width: 132px;
  }
}
.main-btn.red {
  background-color: #EB2222;
  color: #fff;
  border-color: #EB2222;
}
.main-btn.transparent-red {
  background-color: transparent;
  color: #EB2222;
  border-color: #EB2222;
}
.main-btn.transparent-red:hover {
  background-color: #EB2222;
  color: #fff;
}

.main-btn.btn_filter {
  background-color: #F5F5F5 !important;
  color: #ab7d63 !important;
  border-color: transparent !important;
}
.main-btn.btn_filter:hover {
  background-color: #5b5349 !important;
  color: #fff !important;
}

.main-btn.btn_filter.active {
  background-color: #5b5349 !important;
  color: #fff !important;
}

.main-btn.dark {
  background-color: #161616;
  color: #fff;
  border-color: #161616;
  border-radius: 5px;
}
.main-btn.blue {
  background-color: #5b5349;
  border-color: #5b5349;
}
.main-btn.white {
  background-color: #fff;
  color: #5b5349;
  border: none;
}
.main-btn.white:hover {
  background-color: #5b5349;
  color: #fff;
}
.main-btn.transparent {
  background-color: #fff;
  color: #ab7d63;
  border-color: #ab7d63;
}
.main-btn.transparent:hover {
  background-color: #ab7d63;
  color: #fff;
}
.main-btn.sm {
  min-width: 115px;
  font-size: 14px;
  height: 36px;
}
.main-btn.sm2 {
  font-size: 15px;
  height: 40px;
}
.main-btn.sm3 {
  width: 105px;
  font-size: 15px;
  height: 40px;
  border-radius: 10px;
}
.main-btn.xsm {
  width: 80px;
  font-size: 13px;
  height: 32px;
}
.main-btn.md {
  width: 170px;
  height: 50px;
}
@media screen and (max-width: 425px) {
  .main-btn.md {
    width: 155px;
    height: 48px;
  }
}
.main-btn.lg {
  width: 180px;
  font-size: 17px;
  height: 52px;
  border-radius: 8px;
}
@media screen and (max-width: 576px) {
  .main-btn.lg {
    font-size: 16px;
    width: 140px;
    height: 48px;
  }
}
@media screen and (max-width: 425px) {
  .main-btn.lg {
    font-size: 15px;
    width: 130px;
    height: 47px;
  }
}
@media screen and (max-width: 375px) {
  .main-btn.lg {
    width: 120px;
    height: 45px;
  }
}
.main-btn.xl {
  width: 250px;
  height: 54px;
  font-size: 18px;
  border-radius: 8px;
}
@media screen and (max-width: 576px) {
  .main-btn.xl {
    width: 200px;
    height: 48px;
    font-size: 16px;
    border-radius: 8px;
  }
}
.main-btn.title-btn {
  min-width: 140px;
  font-size: 13px;
  height: 38px;
  border-radius: 4px;
}
.main-btn .btn-ic {
  max-width: 18px;
  max-height: 19px;
  font-size: 13px;
  color: #5b5349;
}

.sm-btn {
  width: 42px;
  height: 42px;
  border-radius: 5px;
  border: 1px solid #5b5349;
  color: #5b5349;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 425px) {
  .sm-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}
.sm-btn .sm-btn-img {
  max-width: 18px;
  max-height: 18px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 425px) {
  .sm-btn .sm-btn-img {
    max-width: 16px;
    max-height: 16px;
  }
}
.sm-btn.blue {
  background-color: #5b5349;
  color: #fff;
  cursor: auto;
}
.sm-btn.red {
  border-color: #EB2222;
  color: #EB2222;
}
.sm-btn.red:hover, .sm-btn.red.active {
  background-color: #EB2222;
  color: #fff;
}
.sm-btn.light {
  border-color: transparent;
  cursor: auto;
  background-color: #F7FAFC;
}
.sm-btn.light:hover, .sm-btn.light.active {
  background-color: #F7FAFC;
  color: #5b5349;
}
.sm-btn.light:hover img, .sm-btn.light.active img {
  filter: unset;
}
.sm-btn:hover, .sm-btn.active {
  background-color: #5b5349;
  color: #fff !important;
}
.active_red {
  background-color: red;
  color: #fff !important;
}
.sm-btn:hover img, .sm-btn.active img {
  filter: grayscale(100%) brightness(450%) sepia(100%) hue-rotate(956deg) saturate(1000%) contrast(0.8);
}

.buttons-m {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.buttons-m.lg {
  gap: 10px 23px;
}

.navbar-m .buttons-m .main-btn > i{display: none;}

@media screen and (max-width: 767.98px) {
    .navbar-m .buttons-m .main-btn > span{
        display: none;
    }
    
    .navbar-m .buttons-m .main-btn > i{display: block;}
    
    .navbar-m .buttons-m .main-btn{
        width: 40px !important;
        height: 40px;
        min-width: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px !important;
    }
    
}





.c-blue {
  color: #5b5349 !important;
}

.c-black {
  color: #202020;
}

.c-ligth {
  color: #707070;
}

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

.mazad-value {
  padding: 0 12px;
  background-color: #F7FAFC;
  border-radius: 4px;
  font-size: 15px;
  color: #5b5349;
  font-family: fontDemi;
  display: flex;
  align-items: center;
  height: 48px;
}
@media screen and (max-width: 425px) {
  .mazad-value {
    height: 44px;
  }
}

.red-text {
  color: #EB2222;
  font-size: 15px;
}
.red-text.lg {
  font-size: 18px;
  font-family: fontDemi;
}

.w-100 {
  width: 100%;
}

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

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

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

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

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

.fs-22 {
  font-size: 26px;
}

.ff-d {
  font-family: fontDemi;
}

.ff-m{
  font-family: fontMed !important;
  font-weight: 500;
}

.main-border {
  border: 1px solid #D5D5D5;
}

.main-padding {
  padding: 48px 0;
}
@media screen and (max-width: 425px) {
  .main-padding {
    padding: 35px 0;
  }
}

.main-pt {
  padding-top: 48px;
}
@media screen and (max-width: 425px) {
  .main-pt {
    padding-top: 38px;
  }
}

.main-pb {
  padding-bottom: 48px;
}
@media screen and (max-width: 425px) {
  .main-pb {
    padding-bottom: 38px;
  }
}

.sec-padding {
  padding: 25px 0;
}

.section-style {
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.flex-card {
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 992px) {
  .flex-card {
    flex-direction: column;
  }
}
@media screen and (max-width: 992px) {
  .flex-card.stor-wrap {
    flex-direction: column-reverse;
  }
}

.flex-1 {
  width: 366px;
}
@media screen and (max-width: 992px) {
  .flex-1 {
    width: 100%;
  }
}

.flex-3 {
  width: calc(100% - 366px);
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .flex-3 {
    width: 100%;
  }
}

.bg-light {
  background-color: #FAFAFA;
}

.card-style {
  background-color: #fff;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.card-style a.anchor {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.card-padding {
  padding: 23px;
}
@media screen and (max-width: 576px) {
  .card-padding {
    padding: 20px 15px;
  }
}
@media screen and (max-width: 576px) {
  .card-padding {
    padding: 14px 12px;
  }
}

.main-card-title {
  font-size: 16px;
  font-family: fontDemi;
  min-height: 65px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #202020;
  border-bottom: 1px solid #E7E7E7;
  margin-bottom: 0;
}
@media screen and (max-width: 576px) {
  .main-card-title {
    padding: 0 12px;
    min-height: 58px;
  }
}

.main-form-title {
  font-size: 18px;
  color: #6c757d;
  border-bottom: 1px solid #D5D5D5;
  padding: 20px;
}

.desc {
  font-size: 14px;
  color: #707070;
  line-height: 1.9;
}
@media screen and (max-width: 425px) {
  .desc {
    font-size: 13px;
    line-height: 1.6;
  }
}
.desc.sm {
  font-size: 12px;
  line-height: 1.4;
}

.show-text {
  display: none;
}

.price {
  font-size: 16px;
  color: #5b5349;
  font-family: fontDemi;
}
.price.lg {
  font-size: 18px;
}
@media screen and (max-width: 425px) {
  .price {
    font-size: 14px;
  }
}

.old-price {
  font-size: 16px;
  color: #707070;
  text-decoration: line-through;
  line-height: 1.7;
}

.star {
  position: absolute;
  top: 12px;
  background-color: #fff;
  font-size: 12px;
  padding: 2px 5px;
  border-radius: 3px;
  color: #202020;
  z-index: 3;
}
html[lang=en] .star {
  left: 10px;
}
html[lang=ar] .star {
  right: 10px;
}
.star i {
  color: #FCB91D;
}

.white-type {
  position: absolute;
  top: 12px;
  background-color: #fff;
  font-size: 12px;
  padding: 2px 12px;
  border-radius: 3px;
  color: #5b5349;
  z-index: 3;
}
html[lang=en] .white-type {
  left: 10px;
}
html[lang=ar] .white-type {
  right: 10px;
}
.white-type.lg {
  padding: 5px 20px;
  font-size: 15px;
  border-radius: 4px;
}
html[lang=en] .white-type.lg {
  left: 24px;
}
html[lang=ar] .white-type.lg {
  right: 24px;
}

.type-p {
  position: absolute;
  top: 10px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
html[lang=en] .type-p {
  right: 0px;
}
html[lang=ar] .type-p {
  left: 0px;
}
.type-p .text {
  padding: 0 11px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #fff;
  background-color: #5b5349;
}
.type-p .transparent {
  display: block;
  height: 100%;
  border-style: solid;
}
html[lang=en] .type-p .transparent {
  border-width: 14px 0px 14px 8px;
  border-color: #5b5349 #5b5349 #5b5349 transparent;
}
html[lang=ar] .type-p .transparent {
  border-width: 14px 8px 14px 0;
  border-color: #5b5349 transparent #5b5349 #5b5349;
}
.type-p.red .text {
  background-color: #EB2222;
}
html[lang=en] .type-p.red .transparent {
  border-color: #EB2222 #EB2222 #EB2222 transparent;
}
html[lang=ar] .type-p.red .transparent {
  border-color: #EB2222 transparent #EB2222 #EB2222;
}
.type-p.lg {
  position: absolute;
  top: 12px;
  height: 35px;
}
.type-p.lg .text {
  font-size: 14px;
}
html[lang=en] .type-p.lg .transparent {
  border-width: 16px 0px 16px 10px;
}
html[lang=ar] .type-p.lg .transparent {
  border-width: 16px 10px 16px 0;
}

.live-p {
  position: absolute;
  top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  gap: 4px;
  border-radius: 4px;
  background-color: #EB2222;
  font-size: 12px;
  font-family: fontReg;
  color: #fff;
  padding: 3px 8px;
}
html[lang=en] .live-p {
  left: 10px;
}
html[lang=ar] .live-p {
  right: 10px;
}
.live-p .dot {
  border-radius: 50%;
  width: 4px;
  height: 4px;
  background-color: #fff;
}
.live-p.lg {
  font-size: 14px;
  padding: 4px 12px;
}

.form-style {
  border: 1px solid #D5D5D5;
  padding: 60px 40px;
}
@media screen and (max-width: 576px) {
  .form-style {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 425px) {
  .form-style {
    padding: 30px 15px;
  }
}
.form-style.sm {
  padding: 40px 30px;
}
@media screen and (max-width: 425px) {
  .form-style.sm {
    padding: 20px 15px;
  }
}
@media screen and (max-width: 425px) {
  .form-style .main-btn {
    width: 140px;
    height: 46px;
    font-size: 14px;
  }
}

.form-img {
  display: block;
  width: 390px;
  height: 340px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 576px) {
  .form-img {
    width: 330px;
    height: 300px;
  }
}
@media screen and (max-width: 425px) {
  .form-img {
    width: calc(100% - 30px);
    height: 280px;
  }
}
@media screen and (max-width: 375px) {
  .form-img {
    width: calc(100% - 30px);
    height: 200px;
  }
}

.card-dir {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: calc(100% - 65px);
}
.card-dir .main-btn {
  flex-shrink: 0;
}

.main-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px 15px;
}

.main-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-item-first {
  color: #6c757d;
  font-size: 15px;
}
@media screen and (max-width: 425px) {
  .main-item-first {
    font-size: 13px;
  }
}

.main-item-secound {
  color: #202020;
  font-size: 15px;
  font-family: fontDemi;
}
@media screen and (max-width: 425px) {
  .main-item-secound {
    font-size: 13px;
  }
}

.light-span {
  padding: 6px 9px;
  background-color: #F7FAFC;
  color: #5b5349;
  border-radius: 5px;
  font-size: 14px;
}
@media screen and (max-width: 425px) {
  .light-span {
    font-size: 13px;
  }
}
.light-span.lg {
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 44px;
  padding: 8px 15px;
  font-size: 15px;
}
@media screen and (max-width: 425px) {
  .light-span.lg {
    font-size: 14px;
  }
}

.form-heading {
  margin-bottom: 46px;
}
@media screen and (max-width: 425px) {
  .form-heading {
    margin-bottom: 30px;
  }
}
.form-heading .form-title {
  font-size: 19px;
  font-family: fontDemi;
  margin-bottom: 15px;
  color: #505050;
  text-align: center;
}
@media screen and (max-width: 425px) {
  .form-heading .form-title {
    font-size: 17px;
  }
}
.form-heading .form-text {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.7;
  text-align: center;
  width: 440px;
  margin: auto;
}
@media screen and (max-width: 576px) {
  .form-heading .form-text {
    width: auto;
  }
}
@media screen and (max-width: 425px) {
  .form-heading .form-text {
    font-size: 13px;
  }
}

.form-btns {
  display: flex;
  gap: 10px;
}

.new-badge {
  display: inline-block;
  height: 10px;
  border-radius: 50%;
}
html[lang=en] .new-badge {
  margin-right: 3px;
}
html[lang=ar] .new-badge {
  margin-left: 3px;
}

.height-full {
  height: 100%;
}
.height-full .center {
  height: calc(100% - 65px);
  display: flex;
  align-items: center;
}

.done-img {
  width: 220px;
  height: 220px;
  margin: auto;
  display: block;
}

.input-g {
  margin-bottom: 20px;
  display: block;
}
.input-g .main-label {
  margin-bottom: 10px;
  font-size: 16px;
  font-family: fontDemi;
  color: #161616;
  display: flex;
  align-items: center;
  gap: 10px;
}
.input-g .main-label .label-hint {
  color: #161616;
  font-family: fontMed;
  font-size: 15px;
}
@media screen and (max-width: 576px) {
  .input-g .main-label {
    font-size: 15px;
  }
}
@media screen and (max-width: 425px) {
  .input-g .main-label {
    font-family: fontMed;
    font-size: 15px;
  }
}
.input-g .main-input {
  position: relative;
}
.input-g .main-input .input-me {
  width: 100%;
  min-height: 48px;
  border-radius: 5px;
  padding: 0 12px;
  outline: none;
  border: none;
  font-size: 14px;
  color: #161616;
  transition: all 0.3s ease;
  border: 1px solid #D5D5D5;
}
@media screen and (max-width: 425px) {
  .input-g .main-input .input-me {
    min-height: 44px;
  }
}
.input-g .main-input .input-me.photo-input {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #adabab;
  cursor: pointer;
}
.input-g .main-input .input-me::-moz-placeholder {
  font-size: 13px;
  color: #adabab;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.input-g .main-input .input-me::placeholder {
  font-size: 13px;
  color: #adabab;
  transition: all 0.3s ease;
}
.input-g .main-input select.input-me {
  font-size: 13px;
  color: #adabab;
  transition: all 0.3s ease;
}

.input-g .main-input select.input-me option {
  font-size: 14px;
    color: #161616;
}
@media screen and (max-width: 425px) {
  .input-g .main-input .input-me::-moz-placeholder {
    font-size: 12px;
  }
  .input-g .main-input .input-me::placeholder {
    font-size: 12px;
  }
}
.input-g .main-input .input-me:focus {
  border-color: #5b5349;
}
.input-g .main-input .input-me:focus::-moz-placeholder {
  opacity: 0;
}
.input-g .main-input .input-me:focus::placeholder {
  opacity: 0;
}
.input-g .main-input .input-me.phone {
  width: calc(100% - 120px);
  padding: 0 12px !important;
}
.input-g .main-input .input-me.text-area {
  height: 145px;
  padding: 12px;
}
.input-g .main-input .input-me.text-area-lg {
  height: 298px;
  padding: 12px;
}
@media screen and (max-width: 992px) {
  .input-g .main-input .input-me.text-area-lg {
    height: 200px;
  }
}
@media screen and (max-width: 425px) {
  .input-g .main-input .input-me.text-area-lg {
    height: 160px;
  }
}
.input-g .main-input .input-me.text-area-sm {
  height: 90px;
  padding: 12px;
}
.input-g .main-input .input-me.text-area-sm2 {
  height: 70px;
  padding: 12px;
}
.input-g .main-input .main-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #b1b0b0;
  font-size: 14px;
  cursor: pointer;
  /* pointer-events: none; */
}
html[lang=en] .input-g .main-input .main-icon {
  right: 14px;
}
html[lang=ar] .input-g .main-input .main-icon {
  left: 14px;
}
.input-g .main-input .main-icon.blue {
  color: #5b5349;
}
.input-g .main-input .main-icon.search-ic {
  pointer-events: auto;
}

.select-search ~ .select2-container--custom-option-select-me {
  width: 100% !important;
}
.select-search ~ .select2-container--custom-option-select-me .select2-selection--single {
  height: 42px;
  border-color: transparent;
  background-color: #5b5349;
  display: flex;
  align-items: center;
}
html[lang=en] .select-search ~ .select2-container--custom-option-select-me .select2-selection--single {
  padding-left: 18px;
}
html[lang=ar] .select-search ~ .select2-container--custom-option-select-me .select2-selection--single {
  padding-right: 18px;
}
html[lang=en] .select-search ~ .select2-container--custom-option-select-me .select2-selection--single {
  border-radius: 45px 0 0 45px;
}
html[lang=ar] .select-search ~ .select2-container--custom-option-select-me .select2-selection--single {
  border-radius: 0 45px 45px 0;
}
.select-search ~ .select2-container--custom-option-select-me .select2-selection--single .select2-selection__rendered {
  color: #fff;
  font-size: 14px;
}
.select-search ~ .select2-container--custom-option-select-me .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  border: 0;
}
html[lang=en] .select-search ~ .select2-container--custom-option-select-me .select2-selection--single .select2-selection__arrow {
  right: 20px;
}
html[lang=ar] .select-search ~ .select2-container--custom-option-select-me .select2-selection--single .select2-selection__arrow {
  left: 20px;
}
.select-search ~ .select2-container--custom-option-select-me .select2-selection--single .select2-selection__arrow::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  display: flex;
  font-size: 13px;
  color: #fff;
  font-weight: 900;
  align-items: center;
  justify-content: center;
}
@media (max-width: 425px) {
  .select-search ~ .select2-container--custom-option-select-me .select2-selection--single {
    padding: 10px 5px;
  }
}
.select-search ~ .select2-container--custom-option-select-me .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--custom-option-select-me .select2-dropdown {
  background-color: white;
  border: 1px solid #D5D5D5 !important;
  border-radius: 8px !important;
  overflow: hidden;
  margin-top: 10px;
}
.select2-container--custom-option-select-me .select2-dropdown .select2-results__options {
  padding: 8px;
}
.select2-container--custom-option-select-me .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: transparent;
  color: #5b5349;
}
.select2-container--custom-option-select-me .select2-dropdown .select2-results__option.select2-results__option--selectable {
  font-size: 15px;
}
.select2-container--custom-option-select-me .select2-dropdown .select2-results__option {
  text-align: center;
  background-color: transparent;
  border-bottom: 1px solid #D5D5D5;
  padding: 8px 0;
  color: #707070;
  font-size: 14px;
}
.select2-container--custom-option-select-me .select2-dropdown .select2-results__option:last-of-type {
  border: none;
}

.select-filter ~ .select2-container--filter-m {
  width: 80px !important;
}
.select-filter ~ .select2-container--filter-m .select2-selection--single {
  height: auto;
  border-color: transparent;
  background-color: transparent;
  border-radius: none;
  display: flex;
  align-items: center;
}
html[lang=en] .select-filter ~ .select2-container--filter-m .select2-selection--single {
  padding-left: 8px;
}
html[lang=ar] .select-filter ~ .select2-container--filter-m .select2-selection--single {
  padding-right: 8px;
}
.select-filter ~ .select2-container--filter-m .select2-selection--single .select2-selection__rendered {
  color: #707070;
  font-size: 15px;
  padding: 0 !important;
}
@media screen and (max-width: 425px) {
  .select-filter ~ .select2-container--filter-m .select2-selection--single .select2-selection__rendered {
    font-size: 14px;
  }
}
.select-filter ~ .select2-container--filter-m .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  border: 0;
}
html[lang=en] .select-filter ~ .select2-container--filter-m .select2-selection--single .select2-selection__arrow {
  right: 12px;
}
html[lang=ar] .select-filter ~ .select2-container--filter-m .select2-selection--single .select2-selection__arrow {
  left: 12px;
}
.select-filter ~ .select2-container--filter-m .select2-selection--single .select2-selection__arrow::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  display: flex;
  font-size: 14px;
  color: #707070;
  font-weight: 900;
  align-items: center;
  justify-content: center;
}
@media (max-width: 425px) {
  .select-filter ~ .select2-container--filter-m .select2-selection--single {
    padding: 10px 5px;
  }
}
.select-filter ~ .select2-container--filter-m .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--filter-m .select2-dropdown {
  width: 150px !important;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1) !important;
  background-color: white;
  border-radius: 8px !important;
  overflow: hidden;
  border: none;
  margin-top: 10px;
}
.select2-container--filter-m .select2-dropdown .select2-results__options {
  padding: 8px 20px;
}
.select2-container--filter-m .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: transparent;
  color: #5b5349;
}
.select2-container--filter-m .select2-dropdown .select2-results__option.select2-results__option--selectable {
  font-size: 15px;
}
.select2-container--filter-m .select2-dropdown .select2-results__option {
  background-color: transparent;
  padding: 8px 0;
  color: #707070;
  font-size: 14px;
}

.select ~ .select2, .select-multi ~ .select2, .select-color ~ .select2 {
  width: 100% !important;
}
.select ~ .select2 .select2-selection--single, .select ~ .select2 .select2-selection--multiple, .select-multi ~ .select2 .select2-selection--single, .select-multi ~ .select2 .select2-selection--multiple, .select-color ~ .select2 .select2-selection--single, .select-color ~ .select2 .select2-selection--multiple {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  outline: none;
  font-size: 14px;
  color: #161616;
  border: 1px solid #D5D5D5;
}
@media (max-width: 425px) {
  .select ~ .select2 .select2-selection--single, .select ~ .select2 .select2-selection--multiple, .select-multi ~ .select2 .select2-selection--single, .select-multi ~ .select2 .select2-selection--multiple, .select-color ~ .select2 .select2-selection--single, .select-color ~ .select2 .select2-selection--multiple {
    height: 44px;
  }
}
.select ~ .select2 .select2-selection--single .select2-selection__rendered, .select ~ .select2 .select2-selection--multiple .select2-selection__rendered, .select-multi ~ .select2 .select2-selection--single .select2-selection__rendered, .select-multi ~ .select2 .select2-selection--multiple .select2-selection__rendered, .select-color ~ .select2 .select2-selection--single .select2-selection__rendered, .select-color ~ .select2 .select2-selection--multiple .select2-selection__rendered {
  color: #adabab;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px auto;
}
.select ~ .select2 .select2-selection--single .select2-selection__arrow, .select ~ .select2 .select2-selection--multiple .select2-selection__arrow, .select-multi ~ .select2 .select2-selection--single .select2-selection__arrow, .select-multi ~ .select2 .select2-selection--multiple .select2-selection__arrow, .select-color ~ .select2 .select2-selection--single .select2-selection__arrow, .select-color ~ .select2 .select2-selection--multiple .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  border: 0;
}
html[lang=en] .select ~ .select2 .select2-selection--single .select2-selection__arrow, html[lang=en] .select ~ .select2 .select2-selection--multiple .select2-selection__arrow, html[lang=en] .select-multi ~ .select2 .select2-selection--single .select2-selection__arrow, html[lang=en] .select-multi ~ .select2 .select2-selection--multiple .select2-selection__arrow, html[lang=en] .select-color ~ .select2 .select2-selection--single .select2-selection__arrow, html[lang=en] .select-color ~ .select2 .select2-selection--multiple .select2-selection__arrow {
  right: 12px;
}
html[lang=ar] .select ~ .select2 .select2-selection--single .select2-selection__arrow, html[lang=ar] .select ~ .select2 .select2-selection--multiple .select2-selection__arrow, html[lang=ar] .select-multi ~ .select2 .select2-selection--single .select2-selection__arrow, html[lang=ar] .select-multi ~ .select2 .select2-selection--multiple .select2-selection__arrow, html[lang=ar] .select-color ~ .select2 .select2-selection--single .select2-selection__arrow, html[lang=ar] .select-color ~ .select2 .select2-selection--multiple .select2-selection__arrow {
  left: 12px;
}
.select ~ .select2 .select2-selection--single .select2-selection__arrow::after, .select ~ .select2 .select2-selection--multiple .select2-selection__arrow::after, .select-multi ~ .select2 .select2-selection--single .select2-selection__arrow::after, .select-multi ~ .select2 .select2-selection--multiple .select2-selection__arrow::after, .select-color ~ .select2 .select2-selection--single .select2-selection__arrow::after, .select-color ~ .select2 .select2-selection--multiple .select2-selection__arrow::after {
  content: "\f0dd";
  font-family: "Font Awesome 5 Free";
  display: flex;
  font-size: 13px;
  color: #b3abb3;
  font-weight: 900;
  align-items: center;
  justify-content: center;
}
@media (max-width: 425px) {
  .select ~ .select2 .select2-selection--single, .select ~ .select2 .select2-selection--multiple, .select-multi ~ .select2 .select2-selection--single, .select-multi ~ .select2 .select2-selection--multiple, .select-color ~ .select2 .select2-selection--single, .select-color ~ .select2 .select2-selection--multiple {
    padding: 10px 5px;
  }
}
.select ~ .select2 .select2-selection--single .select2-selection__arrow b, .select-multi ~ .select2 .select2-selection--single .select2-selection__arrow b, .select-color ~ .select2 .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container .select2-search--inline .select2-search__field {
  font-family: fontMed;
  padding: 0 8px;
}
.select2-container .select2-search--inline .select2-search__field::-moz-placeholder {
  color: #adabab;
  font-size: 13px;
}
.select2-container .select2-search--inline .select2-search__field::placeholder {
  color: #adabab;
  font-size: 13px;
}

.select2-selection__clear {
  display: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #F7FAFC;
  border: none;
  border-radius: 2px;
  margin: 0 !important;
  padding: 9px 25px !important;
  position: relative;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  color: #5b5349;
  font-size: 14px;
  padding: 0 !important;
  margin: 0 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  border-radius: 50% !important;
  width: 12px !important;
  height: 12px !important;
  padding: 0 !important;
  margin: 0 !important;
  background-color: #EB2222 !important;
  color: #fff !important;
  font-size: 12px;
  border: none !important;
  top: 3px !important;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
html[lang=en] .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  right: 4px !important;
}
html[lang=ar] .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  left: 4px !important;
}

.select2-results__options::-webkit-scrollbar {
  width: 4px;
}

.select2-results__options::-webkit-scrollbar-track {
  background: #D5D5D5;
}

.select2-results__options::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: #5b5349;
}

.dropdown-select-2 {
  max-width: 185px;
  width: 185px;
  overflow-x: hidden !important;
}
@media (max-width: 425px) {
  .dropdown-select-2 {
    max-width: 160px;
    width: 160px;
  }
}
.dropdown-select-2 li {
  word-wrap: break-word;
  font-size: 14px;
}

.buttons-container {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.number-input {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid #707070;
  border-radius: 5px;
  width: 100px;
  height: 42px;
}
@media screen and (max-width: 425px) {
  .number-input {
    height: 40px;
  }
}
.number-input input {
  color: #707070;
  font-size: 16px;
  width: 25px;
  text-align: center;
}
@media screen and (max-width: 425px) {
  .number-input input {
    font-size: 15px;
  }
}
.number-input .btn-num {
  font-size: 16px;
  color: #5b5349;
  cursor: pointer;
}
@media screen and (max-width: 425px) {
  .number-input .btn-num {
    font-size: 15px;
  }
}

.add-to-cart {
  padding: 0 15px;
  height: 42px;
  border: 1px solid #ab7d63;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #ab7d63;
  background-color: transparent;
}
@media screen and (max-width: 425px) {
  .add-to-cart {
    height: 40px;
    font-size: 14px;
  }
}
.add-to-cart:hover {
  background-color: #ab7d63;
  color: #fff;
}

.btn-outline-primary{
  padding: 0 15px;
  height: 42px;
  border: 1px solid #5b5349 !important;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #5b5349;
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: #5b5349;
  color: #fff;
}


.forget-container {
  text-align: end;
}
.forget-container .forget-anchor {
  background: none;
  font-size: 12px;
  color: #5b5349;
  text-decoration: underline;
}
.forget-container .forget-anchor:hover {
  color: #5b5349;
}
.forget-container span {
  color: #5b5349;
  margin: 0 2px;
  font-size: 12px;
}

.not-account-link {
  font-size: 15px;
  color: #161616;
}
.not-account-link .not-link {
  color: #5b5349;
}
.not-account-link:hover {
  color: #161616;
}

.button-footer {
  background-color: transparent;
  display: block;
}

.check-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.check-box:last-child {
  margin-bottom: 0;
}
.check-box.form-check-m {
  gap: 6px;
  margin-bottom: 0px;
}
.check-box input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
}
.check-box .check {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid #D5D5D5;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
}
.check-box .check:hover {
  background-color: #F7FAFC;
}
.check-box.form-check-m .check {
  width: 22px;
  height: 22px;
  border-radius: 4px;
}
.check-box input:checked + .check {
  background-color: transparent;
  border-color: #5b5349;
}
.check-box input:checked + .check::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  color: #5b5349;
}
.check-box .check-text {
  font-size: 15px;
  cursor: pointer;
}
.check-box.form-check-m input:checked + .check {
  background-color: #5b5349;
}
.check-box.form-check-m input:checked + .check::after {
  color: #fff;
}
.check-box .check-anchor {
  cursor: pointer;
  color: #202020;
  font-size: 15px;
  line-height: 1.6;
}
.check-box .check-anchor a {
  color: #5b5349;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.check-box .check-anchor a:hover {
  color: #5b5349;
}

.radio-box {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.radio-box:last-child {
  margin-bottom: 0;
}
.radio-box .input-radio {
  width: 18px;
  height: 18px;
  accent-color: #5b5349;
  cursor: pointer;
}
.radio-box .label-radio {
  font-size: 15px;
  color: #202020;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
}
.radio-box .label-radio .radio-img {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  -o-object-fit: cover;
     object-fit: cover;
}
.radio-box .label-radio.ca-auto {
  cursor: auto;
}
.radio-box .label-radio.ca-blue {
  color: #5b5349;
  gap: 8px;
}
.radio-box.radio-imgs {
  align-items: center;
  gap: 6px;
}
.radio-box.radio-imgs .label-radio {
  font-size: 14px;
}
.radio-box .top {
  line-height: 1;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  gap: 22px;
  color: #5b5349;
  font-family: fontDemi;
  font-size: 14px;
}
.radio-box .bottom {
  font-size: 13px;
  color: #6c757d;
}

.numbers-check {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.number-check .number-radio {
  display: none;
}
.number-check .number-radio:checked + .label-num {
  background-color: #5b5349;
  color: #fff;
}
.number-check .label-num {
  width: 42px;
  height: 42px;
  border: 1px solid #5b5349;
  border-radius: 4px;
  color: #5b5349;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: fontDemi;
}

.switch-con {
  line-height: 0;
}
.switch-con .switch {
  width: 52px;
  height: 28px;
  cursor: pointer;
  position: relative;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.switch-con .switch::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  background-color: #2ac43f;
  transition: all 0.3s ease;
}
html[lang=en] .switch-con .switch::after {
  left: 4px;
}
html[lang=ar] .switch-con .switch::after {
  right: 4px;
}
.switch-con input:checked + .switch::after {
  background-color: #EB2222;
}
html[lang=en] .switch-con input:checked + .switch::after {
  transform: translateX(100%) translateY(-50%);
}
html[lang=ar] .switch-con input:checked + .switch::after {
  transform: translateX(-100%) translateY(-50%);
}

.user-photo-con {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 18px;
}
.user-photo-con .user-text {
  font-size: 16px;
  color: #202020;
}
@media screen and (max-width: 425px) {
  .user-photo-con .user-text {
    font-size: 14px;
  }
}

.user-img {
  position: relative;
  border-radius: 50%;
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 425px) {
  .user-img {
    border-radius: 50%;
    width: 90px;
    height: 90px;
  }
}
.user-img .profile-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
}
.user-img .profile-img::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 6px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.user-img .profile-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.user-img .user-camera {
  position: absolute;
  bottom: -6px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #5b5349;
}
html[lang=en] .user-img .user-camera {
  left: 6px;
}
html[lang=ar] .user-img .user-camera {
  right: 6px;
}
.user-img .user-camera img {
  max-width: 16px;
  max-height: 16px;
}

.hidden-input {
  display: none;
}

.upload-img .label-img {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px dashed #D5D5D5;
  cursor: pointer;
  overflow: hidden;
}
.upload-img .label-img.lg {
  width: 110px;
  height: 110px;
  border-radius: 8px;
}
.upload-img .label-img img {
  max-width: 30px;
}
.upload-img .label-img img.wid {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hidden-img {
  position: relative;
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  margin-top: 8px;
}
.hidden-img img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hidden-img.lg {
  width: 100px;
  height: 100px;
}
.hidden-img.lg img {
  border-radius: 5px;
}
.hidden-img a {
  position: absolute;
  top: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.remove-img {
  position: absolute;
  top: -5px;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  background-color: #EB2222;
  color: #fff;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
html[lang=en] .remove-img {
  right: -5px;
}
html[lang=ar] .remove-img {
  left: -5px;
}

.img-upload-show {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.img-upload-show.active {
  justify-content: flex-start;
}

/********************* Code Modal *********************/
.code-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.code-container .code {
  border-radius: 5px;
  font-size: 15px;
  height: 54px;
  width: 54px;
  border: 1px solid #D5D5D5;
  margin: 1%;
  text-align: center;
  font-weight: 300;
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
  transition: all 0.3s ease;
}
@media screen and (max-width: 425px) {
  .code-container .code {
    width: 50px;
    height: 50px;
  }
}
.code-container .code:focus {
  background-color: #FAFAFA;
  border-color: #FAFAFA;
}

/********************* Rating Modal *********************/
.rating-star {
  align-items: flex-start !important;
  margin-bottom: 22px;
}

.js-wc-star-rating .js-wc-rating-value, .js-wc-star-rating .js-wc-label {
  display: none;
}
.js-wc-star-rating i {
  font-size: 26px !important;
  cursor: pointer;
}

/********************* Bootstrap Modal *********************/
.modal::-webkit-scrollbar {
  width: 4px;
}

.modal::-webkit-scrollbar-track {
  background: #D5D5D5;
}

.modal::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: #5b5349;
}

.modal-dialog {
  min-width: 560px;
}
.modal-dialog.lg {
  min-width: 620px;
}
@media (max-width: 768px) {
  .modal-dialog {
    margin: auto;
    min-width: calc(100% - 20px) !important;
  }
}
.modal-dialog .close-model-btn {
  position: absolute;
  top: 15px;
  background-color: transparent;
  padding: 0;
  line-height: 1;
  color: #161616;
  font-size: 24px;
  cursor: pointer;
}
html[lang=en] .modal-dialog .close-model-btn {
  right: 18px;
}
html[lang=ar] .modal-dialog .close-model-btn {
  left: 18px;
}
.modal-dialog .print-modal {
  background-color: transparent;
  font-size: 17px;
  color: #202020;
  padding: 0;
  cursor: pointer;
}
.modal-dialog .print-modal .print-icon {
  max-width: 27px;
  max-height: 32px;
}
.modal-dialog .close-modal {
  background-color: transparent;
  font-size: 16px;
  color: #5b5349;
  padding: 0;
}
.modal-dialog .head-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-dialog .head-btns .close-modal {
  color: #202020;
}
.modal-dialog .modal-content {
  padding: 40px 0px 45px;
  align-items: center;
  border-radius: 8px;
}
.modal-dialog .modal-content.print {
  padding: 30px 0px 30px;
}
@media (max-width: 576px) {
  .modal-dialog .modal-content {
    width: calc(100% - 15px);
    margin: 15px auto;
  }
}
.modal-dialog .modal-content .content-model-me {
  width: 100%;
}
.modal-dialog .modal-content .modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: start !important;
  gap: 10px;
  border-bottom: 1px solid #D5D5D5;
  margin-bottom: 25px;
  position: relative;
  flex: 1 1 auto;
  padding: 0px 20px 15px;
  width: 100%;
}
.modal-dialog .modal-content .modal-header .modal-title {
  font-size: 17px;
  font-family: fontDemi;
  color: #505050;
  margin-bottom: 0;
}
.modal-dialog .modal-content .modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 28px;
  padding: 0 30px;
}
@media screen and (max-width: 425px) {
  .modal-dialog .modal-content .modal-body {
    padding: 0 20px;
  }
}
.modal-dialog .modal-content .modal-body .modal-img {
  width: 80px;
  height: 72px;
}
.modal-dialog .modal-content .modal-body .modal-img.lg {
  width: 190px;
  height: 85px;
}
.modal-dialog .modal-content .modal-body .modal-text {
  font-size: 18px;
  font-family: fontDemi;
  color: #6c757d;
}
.modal-dialog .modal-content .modal-body .modal-text .color {
  color: #FFC107;
}
.modal-dialog .modal-content .modal-footer {
  margin-top: 30px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  justify-content: center;
  padding: 0;
  border-top: none;
  gap: 15px;
}
.modal-dialog .modal-content .modal-footer .main-btn {
  margin: 0;
}

/********************* Tabs *********************/
.tabs-container-m {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin-bottom: 40px;
}
@media screen and (max-width: 576px) {
  .tabs-container-m {
    gap: 10px;
  }
}
.tabs-container-m .tab-m {
  min-width: 240px;
  min-height: 50px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #161616;
  color: #161616;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  .tabs-container-m .tab-m {
    min-width: 160px;
    min-height: 46px;
    font-size: 15px;
  }
}
@media screen and (max-width: 375px) {
  .tabs-container-m .tab-m {
    min-width: 140px;
    min-height: 46px;
    font-size: 15px;
  }
}
.tabs-container-m .tab-m.active-tab {
  background-color: #161616;
  color: #fff;
}

/********************* Accordion *********************/
.accordion-item {
  margin-bottom: 15px;
  border: none;
}
.accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-item .accordion-button {
  background-color: #FAFAFA;
  padding: 11px 8px;
  font-size: 16px;
  border-radius: 3px;
  font-family: fontDemi;
  color: #5b5349 !important;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 425px) {
  .accordion-item .accordion-button {
    font-size: 15px;
  }
}
.accordion-item .accordion-button::after {
  background-image: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 800;
}
html[lang=en] .accordion-item .accordion-button::after {
  margin-left: auto;
  margin-right: unset;
}
html[lang=ar] .accordion-item .accordion-button::after {
  margin-right: auto;
  margin-left: unset;
}
.accordion-item .accordion-button:not(.collapsed) {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}
.accordion-item .accordion-body {
  padding: 1rem 0.5rem;
}
.accordion-item .accordion-body .link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #302F2F;
  font-size: 15px;
  padding: 4px 0;
  margin-bottom: 3px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: none;
  width: 100%;
}
@media screen and (max-width: 425px) {
  .accordion-item .accordion-body .link {
    font-size: 14px;
  }
}
html[lang=en] .accordion-item .accordion-body .link i {
  transform: rotateY(180deg);
}
.accordion-item .accordion-body .link:last-of-type {
  margin-bottom: 0;
}
.accordion-item .accordion-body .link.active {
  color: #5b5349;
}
.accordion-item .accordion-body .link:hover {
  color: #5b5349;
}

.dropdown-menu {
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.68, -0.3, 0.265, 2.1);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 6px;
  min-width: 180px;
  transform: translate3d(0px, 0px, 0px);
  border: none;
}
html[lang=en] .dropdown-menu {
  inset: 20px auto auto 112%;
}
html[lang=ar] .dropdown-menu {
  inset: 20px 112% auto auto;
}
@media (max-width: 576px) {
  html[lang=en] .dropdown-menu {
    inset: 50px auto auto 40px;
  }
  html[lang=ar] .dropdown-menu {
    inset: 50px 40px auto auto;
  }
}
.dropdown-menu.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0px, 0px, 0px) !important;
}
html[lang=en] .dropdown-menu.show {
  inset: 0px auto auto 112% !important;
}
html[lang=ar] .dropdown-menu.show {
  inset: 0px 112% auto auto !important;
}
@media (max-width: 576px) {
  html[lang=en] .dropdown-menu.show {
    inset: 30px auto auto 40px !important;
  }
  html[lang=ar] .dropdown-menu.show {
    inset: 30px 40px auto auto !important;
  }
}
.dropdown-menu.drop-lang {
  min-width: 120px;
}
html[lang=en] .dropdown-menu.drop-lang {
  inset: 50px 0% auto auto;
}
html[lang=ar] .dropdown-menu.drop-lang {
  inset: 50px auto auto 0%;
}
.dropdown-menu.drop-lang .lang-item {
  display: block;
  padding: 3px 0;
  font-size: 16px;
  color: #5b5349;
  transition: all 0.3s ease;
}
.dropdown-menu.drop-lang .lang-item:hover {
  color: #707070;
}
html[lang=en] .dropdown-menu.drop-lang.show {
  inset: 28px 0% auto auto !important;
}
html[lang=ar] .dropdown-menu.drop-lang.show {
  inset: 28px auto auto 0% !important;
}

.dropdown-toggle {
  background-color: transparent;
}

.dropdown-toggle::after {
  display: none !important;
}

.accordion-collapse .dropdown-menu {
  display: none;
}

.accordion-collapse.show .dropdown-menu {
  display: block;
}

/********************* pagenation *********************/
.product-pagenation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 35px;
}
.product-pagenation .pagenation-text {
  font-size: 19px;
  font-family: fontDemi;
  color: #202020;
}
@media screen and (max-width: 425px) {
  .product-pagenation .pagenation-text {
    font-size: 17px;
  }
}
.product-pagenation .pagenation-text .numbers {
  font-size: 18px;
  color: #707070;
  font-family: fontMed;
}
html[lang=en] .product-pagenation .pagenation-text .numbers {
  margin-left: 15px;
}
html[lang=ar] .product-pagenation .pagenation-text .numbers {
  margin-right: 15px;
}
@media screen and (max-width: 425px) {
  .product-pagenation .pagenation-text .numbers {
    font-size: 15px;
  }
}
.product-pagenation .pagination-me {
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-pagenation .pagination-me .page-link {
  border: none;
  font-size: 20px;
  border-radius: 4px;
  color: #6c757d;
  padding: 0.225rem 0.75rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
@media screen and (max-width: 425px) {
  .product-pagenation .pagination-me .page-link {
    font-size: 17px;
    padding: 0.185rem 0.5rem;
  }
}
.product-pagenation .pagination-me .page-link i {
  font-size: 15px;
}
html[lang=en] .product-pagenation .pagination-me .page-link i {
  transform: rotateY(180deg);
}
.product-pagenation .pagination-me .page-link:focus {
  box-shadow: none;
  background-color: transparent;
  border-color: #5b5349;
}
.product-pagenation .pagination-me .page-item.active .page-link {
  border-color: #5b5349;
  color: #5b5349;
  background-color: transparent;
}

.header-m {
  background: #fff;
  position: relative;
  z-index: 21;
}
.header-m .header-top {
  padding: 10px 0;
  background-color: #F5F5F5;
}
.header-m .header-top .head-top-con {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-m .header-top .head-top-con .head-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 425px) {
  .header-m .header-top .head-top-con .head-info {
    gap: 10px;
  }
}
.header-m .header-top .head-top-con .head-info .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #707070;
}
@media screen and (max-width: 425px) {
  .header-m .header-top .head-top-con .head-info .item {
    font-size: 12px;
    gap: 4px;
  }
}
.header-m .header-top .head-top-con .head-info .item .img {
  max-width: 14px;
  max-height: 12px;
  font-size: 10px;
  color: #707070;
}
.header-m .header-top .head-top-con .head-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #202020;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header-m .header-top .head-top-con .head-lang .lang {
  font-size: 14px;
}
.header-m .header-top .head-top-con .head-lang i {
  font-size: 11px;
}
.header-m .header-top .head-top-con .head-lang:hover {
  color: #5b5349;
}
.header-m .head-down {
  padding: 7px 0;
}
@media screen and (max-width: 992px) {
  .header-m .head-down {
    padding: 5px 0;
  }
}
.header-m .head-down .head-down-con {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-m .head-down .head-down-con .logo {
  width: 75px;
  border-radius: 10px;
  
}
@media screen and (max-width: 992px) {
  .header-m .head-down .head-down-con .logo {
    width: 60px;
    
  }
}
@media screen and (max-width: 425px) {
  .header-m .head-down .head-down-con .logo {
    width: 55px;
  }
}
.header-m .head-down .head-down-con > .search {
  transition: all 0.8s cubic-bezier(0.68, -0.3, 0.265, 1.3);
}
@media screen and (max-width: 992px) {
  .header-m .head-down .head-down-con > .search {
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: 500px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    border-radius: 8px;
  }
  .header-m .head-down .head-down-con > .search.active {
    top: 20px;
  }
}
@media screen and (max-width: 576px) {
  .header-m .head-down .head-down-con > .search {
    width: calc(100% - 30px);
    height: 120px;
  }
}
.header-m .head-down .head-down-con .contact-container {
  display: flex;
  align-items: center;
  gap: 35px;
}
.header-m .head-down .head-down-con .contact-container .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.header-m .head-down .head-down-con .contact-container .contact-item .ic {
  max-width: 12px;
}
.header-m .head-down .head-down-con .contact-container .contact-item .contact-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.header-m .head-down .head-down-con .contact-container .contact-item .contact-info .contact-name {
  font-size: 15px;
  color: #202020;
}
.header-m .head-down .head-down-con .contact-container .contact-item .contact-info .contact-text {
  font-size: 14px;
  color: #707070;
}
@media screen and (max-width: 1200px) {
  .header-m .head-down .head-down-con .contact-container {
    display: none;
  }
}
.header-m .head-down .head-down-con .links-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 425px) {
  .header-m .head-down .head-down-con .links-icons {
    gap: 5px;
  }
}
.header-m .head-down .head-down-con .links-icons .link img {
  max-width: 20px;
  max-height: 18px;
  transition: all 0.3s ease;
}
.header-m .head-down .head-down-con .links-icons .link .number {
  font-size: 15px;
  color: #161616;
  transition: all 0.3s ease;
}
.header-m .head-down .head-down-con .links-icons .link:hover .number {
  color: #5b5349;
}

.navbar-m {
  padding: 8px 0;
  border-top: 1px solid #D5D5D5;
  box-shadow: 0 3px 16px rgba(133, 133, 133, 0.05);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 20;
  transition: all 0.3s ease;
}
.navbar-m.big {
  padding: 12px 0;
  border-top: none;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 992px) {
  .navbar-m {
    position: unset;
  }
}
.navbar-m .navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-m .navbar-content .mobile-buttons {
  display: none;
}
@media screen and (max-width: 992px) {
  .navbar-m .navbar-content .mobile-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
@media screen and (max-width: 425px) {
  .navbar-m .navbar-content .mobile-buttons {
    gap: 5px;
  }
}
.navbar-m .navbar-content .mobile-buttons .mobile-btn {
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (max-width: 425px) {
  .navbar-m .navbar-content .mobile-buttons .mobile-btn {
    gap: 4px;
  }
}
.navbar-m .navbar-content .mobile-buttons .mobile-btn span {
  background-color: #5b5349;
  width: 15px;
  height: 3px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.navbar-m .navbar-content .mobile-buttons .mobile-btn span:nth-child(1) {
  width: 23px;
}
.navbar-m .navbar-content .mobile-buttons .mobile-btn span:nth-child(3) {
  width: 23px;
}
.navbar-m .navbar-content .mobile-buttons .mobile-btn i {
  font-size: 18px;
  color: #5b5349;
}
@media screen and (max-width: 425px) {
  .navbar-m .navbar-content .mobile-buttons .mobile-btn i {
    font-size: 16px;
  }
}
.navbar-m .navbar-content .mobile-buttons .mobile-btn img {
  max-width: 22px;
  max-height: 22px;
}
.navbar-m .navbar-content .links {
  display: flex;
  align-items: center;
  transition: all 0.8s cubic-bezier(0.68, -0.3, 0.265, 1.3);
  gap: 18px;
}
@media screen and (max-width: 992px) {
  .navbar-m .navbar-content .links {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 280px;
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
    box-shadow: 0 3px 16px rgba(133, 133, 133, 0.05);
    z-index: 1000;
    padding: 80px 20px;
    gap: 8px;
    overflow-y: auto;
    overflow-x: clip;
  }
  html[lang=en] .navbar-m .navbar-content .links {
    left: 0;
  }
  html[lang=ar] .navbar-m .navbar-content .links {
    right: 0;
  }
  html[lang=en] .navbar-m .navbar-content .links {
    transform: translateX(-150%);
  }
  html[lang=ar] .navbar-m .navbar-content .links {
    transform: translateX(150%);
  }
  .navbar-m .navbar-content .links.active {
    transform: translateX(0) !important;
  }
  .navbar-m .navbar-content .links::-webkit-scrollbar {
    width: 5px;
  }
  .navbar-m .navbar-content .links::-webkit-scrollbar-track {
    background: transparent;
  }
  .navbar-m .navbar-content .links::-webkit-scrollbar-thumb {
    border-radius: 25px;
    background-color: #5b5349;
  }
}
.navbar-m .navbar-content .links .link {
  font-size: 15px;
  font-family: fontDemi;
  color: #161616;
  transition: all 0.3s ease;
}
@media screen and (max-width: 992px) {
  .navbar-m .navbar-content .links .link {
    padding: 12px;
    border-radius: 5px;
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }
  .navbar-m .navbar-content .links .link::before {
    position: absolute;
    content: "";
    top: 0;
    width: 0px;
    height: 100%;
    background-color: #f9f9f9;
    transition: all 0.4s ease;
    z-index: -1;
  }
  html[lang=en] .navbar-m .navbar-content .links .link::before {
    left: 0;
  }
  html[lang=ar] .navbar-m .navbar-content .links .link::before {
    right: 0;
  }
  .navbar-m .navbar-content .links .link::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 50%;
    background-color: #5b5349;
    border-radius: 8px;
    transition: all 0.4s ease;
    z-index: 1;
  }
  html[lang=en] .navbar-m .navbar-content .links .link::after {
    left: 0;
  }
  html[lang=ar] .navbar-m .navbar-content .links .link::after {
    right: 0;
  }
  .navbar-m .navbar-content .links .link:hover, .active {
    color: #5b5349 !important;
  }
  .navbar-m .navbar-content .links .link:hover::before, .navbar-m .navbar-content .links .link.active::before {
    width: 100%;
  }
  .navbar-m .navbar-content .links .link:hover::after, .navbar-m .navbar-content .links .link.active::after {
    height: 98%;
  }
  html[lang=en] .navbar-m .navbar-content .links .link:hover::after, html[lang=en] .navbar-m .navbar-content .links .link.active::after {
    left: 99%;
  }
  html[lang=ar] .navbar-m .navbar-content .links .link:hover::after, html[lang=ar] .navbar-m .navbar-content .links .link.active::after {
    right: 99%;
  }
}
.navbar-m .navbar-content .links .link:hover {
  color: #5b5349;
}
.activeNav {
  color: #5b5349 !important;
}

.active {
  color: white !important;
}
.navbar-m .navbar-content .links .logo {
  display: none;
}
@media screen and (max-width: 992px) {
  .navbar-m .navbar-content .links .logo {
    display: block;
    width: auto;
    height: auto;
    margin: 0 auto 40px;
    width: 130px;
    height: 60px;
  }
  .navbar-m .navbar-content .links .logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.navbar-m .navbar-content .links .close {
  display: none;
}
@media screen and (max-width: 992px) {
  .navbar-m .navbar-content .links .close {
    display: block;
    max-width: 31px;
    max-height: 31px;
    position: absolute;
    top: 12px;
    cursor: pointer;
  }
  html[lang=en] .navbar-m .navbar-content .links .close {
    right: 12px;
  }
  html[lang=ar] .navbar-m .navbar-content .links .close {
    left: 12px;
  }
}
@media screen and (max-width: 425px) {
  .navbar-m .navbar-content .links .close {
    max-width: 28px;
    max-height: 28px;
  }
}
html[lang=en] .navbar-m .navbar-content .buttons-m {
  margin-left: auto;
}
html[lang=ar] .navbar-m .navbar-content .buttons-m {
  margin-right: auto;
}
@media screen and (max-width: 425px) {
  .navbar-m .navbar-content .buttons-m .main-btn {
    width: 100px;
    font-size: 13px;
  }
}

.footer {
  padding: 40px 0;
  background-color: #fff;
  box-shadow: 0 3px 16px rgba(133, 133, 133, 0.05);
}
.footer .footer-logo {
  text-align: center;
}
.footer .footer-logo .foot-logo-img {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 20px;
}
.footer .footer-logo .foot-logo-img img {
  max-width: 125px;
  border-radius: 10px;
}
@media screen and (max-width: 425px) {
  .footer .footer-logo .foot-logo-img img {
    max-width: 110px;
  }
}
.footer .footer-logo .footer-info {
  color: #161616;
  font-size: 15px;
  line-height: 1.8;
  margin: auto;
}
@media screen and (max-width: 576px) {
  .footer .footer-logo .footer-info {
    font-size: 14px;
    width: 350px;
  }
}
@media screen and (max-width: 425px) {
  .footer .footer-logo .footer-info {
    width: auto;
  }
}
.footer .footer-logo .footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.footer .footer-logo .footer-social .social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
@media screen and (max-width: 425px) {
  .footer .footer-logo .footer-social .social-icon {
    border-radius: 50%;
    width: 38px;
    height: 38px;
  }
}
.footer .footer-logo .footer-social .social-icon img {
  max-width: 16px;
  max-height: 16px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 425px) {
  .footer .footer-logo .footer-social .social-icon img {
    max-width: 14px;
    max-height: 14px;
  }
}
.footer .footer-logo .footer-social .social-icon:hover {
  border-color: #5b5349;
  box-shadow: none;
}
.footer .footer-logo .footer-social .social-icon:hover img {
  transform: rotate(360deg);
}
.footer .foot-content .footer-head {
  margin-bottom: 25px;
  font-size: 17px;
  color: #202020;
  font-weight: 600;
}
@media screen and (max-width: 576px) {
  .footer .foot-content .footer-head {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 425px) {
  .footer .foot-content .footer-head {
    font-size: 16px;
  }
}
.footer .foot-content .footer-links .link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  width: -moz-fit-content;
  width: fit-content;
  color: #161616;
  transition: all 0.3s ease;
  font-size: 16px;
}
.footer .foot-content .footer-links .link:hover {
  color: #5b5349;
}
html[lang=en] .footer .foot-content .footer-links .link:hover {
  transform: translateX(5px);
}
html[lang=ar] .footer .foot-content .footer-links .link:hover {
  transform: translateX(-5px);
}
.footer .foot-content .footer-links .link img {
  max-width: 13px;
}
@media screen and (max-width: 576px) {
  .footer .foot-content .footer-links .link {
    font-size: 15px;
  }
}
.copy-right {
  padding: 10px;
  border-top: 1px solid #D5D5D5;
  position: relative;
  z-index: 5;
  background-color: #fff;
}
.copy-right .down-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .copy-right .down-footer {
    flex-direction: column;
    gap: 12px;
  }
}
.copy-right .down-footer .right-spe {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
}
.copy-right .down-footer .right-spe .footer-new-img {
  max-width: 70px;
  margin-bottom: 12px;
}
.copy-right .down-footer .right-spe .links-spe {
  display: flex;
  gap: 6px;
  align-items: center;
}
.copy-right .down-footer .right-spe .links-spe a {
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.copy-right .down-footer .right-spe .links-spe a:hover {
  color: #5b5349;
}

.home-section {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .home-section {
    padding: 0px 10px;
  }
}
.home-section .home-item {
  /*padding: 60px 0;*/
  color: #fff;
  height: 520px;
  position: relative;
}
/*@media screen and (max-width: 992px) {*/
/*  .home-section .home-item {*/
/*    padding: 150px 0;*/
/*  }*/
/*}*/
/*@media screen and (max-width: 768px) {*/
/*  .home-section .home-item {*/
/*    padding: 90px 0;*/
/*  }*/
/*}*/
.home-section .home-item::after {
  /*content: "";*/
  /*position: absolute;*/
  /*top: 0;*/
  /*left: 0;*/
  /*right: 0;*/
  /*bottom: 0;*/
  /*background-color: rgba(0, 0, 0, 0.5);*/
  /*z-index: -1;*/
}
.home-section .home-item .home-img {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
  /*position: absolute;*/
  /*top: 0;*/
  /*left: 0;*/
  /*right: 0;*/
  /*bottom: 0;*/
  /*background-color: none;*/
  /*z-index: -1;*/
  /*width: 100%;*/
  /*height: 100%;*/
  /*-o-object-fit: cover;*/
  object-fit: cover;
  object-position: center;
}

.home-section .home-item .info_{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    padding: 50px 0;
}


@media screen and (max-width: 767.98px) {
    .home-section .home-item .info_{
      padding: 20px 0;
        
    }
}

.home-section .home-item .home-logo{
  width: 80px;
  height: 80px;
  border-radius: 50% !important;
  object-fit: cover;
  border: 2px solid #ab7d63;
}
.home-section .home-item .home-content{
  display: flex;
  align-items: center;
  gap: 18px;
}

.home-section .home-item .home-content .title {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
  /*text-align: center;*/
}
.home-section .home-item .home-content .home-title .text {
  font-size: 20px;
}
@media screen and (max-width: 992px) {
  .home-section .home-item .home-content .home-title .text {
    font-size: 18px;
  }
}
.home-section .home-item .home-content .home-title .title {
  font-family: fontDemi;
  font-size: 35px;
  margin-top: 10px;
}
@media screen and (max-width: 992px) {
  .home-section .home-item .home-content .home-title .title {
    font-size: 24px;
  }
}
.home-section .home-item .home-content .home-desc {
  line-height: 1.9;
  font-size: 18px;
  color: #fff;
  /*text-align: center;*/
  /*font-family: fontReg;*/
}
@media screen and (max-width: 992px) {
  .home-section .home-item .home-content .home-desc {
    font-size: 17px;
  }
}
@media screen and (max-width: 768px) {
  .home-section .home-item .home-content .home-desc {
    font-size: 16px;
    /*margin-bottom: 20px;*/
  }
}
@media screen and (max-width: 768px) {
  .home-section .owl-item {
    border-radius: 12px;
    overflow: hidden;
  }
}
.home-section .owl-dots {
  bottom: 20px;
}
.home-section .owl-dots .owl-dot {
  background-color: #fff !important;
}

.discount-sec .discount-item {
  position: relative;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .discount-sec .discount-item {
    height: 240px;
    border-radius: 15px;
  }
}
@media screen and (max-width: 768px) {
  .discount-sec .discount-item {
    height: 210px;
    border-radius: 10px;
  }
}
.discount-sec .discount-item .disc-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.discount-sec .discount-item .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 28px;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.discount-sec .discount-item .content .disc-head {
  font-size: 26px;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .discount-sec .discount-item .content .disc-head {
    font-size: 23px;
  }
}
@media screen and (max-width: 576px) {
  .discount-sec .discount-item .content .disc-head {
    font-size: 20px;
  }
}
.discount-sec .discount-item:hover .content {
  opacity: 1;
  pointer-events: auto;
}

.side-filter-cards {
  display: flex;
  gap: 32px;
  position: relative;
  align-items: flex-start;
}

@media screen and (max-width: 991px) {
  .side-filter-cards {
    gap: 0;
  }
}

.side-filter-cards .filter-side {
  width: 235px;
  transition: all 0.8s cubic-bezier(0.68, -0.3, 0.265, 1.3);
}
@media screen and (max-width: 992px) {
  .side-filter-cards .filter-side {
    position: fixed;
    top: 0;
    z-index: 3300;
    background: #fff;
    height: 100%;
    width: 285px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  html[lang=en] .side-filter-cards .filter-side {
    transform: translateX(-150%);
  }
  html[lang=ar] .side-filter-cards .filter-side {
    transform: translateX(150%);
  }
  html[lang=en] .side-filter-cards .filter-side {
    left: 0;
  }
  html[lang=ar] .side-filter-cards .filter-side {
    right: 0;
  }
}
.side-filter-cards .filter-side .accordion {
  width: 100%;
}
@media screen and (max-width: 992px) {
  .side-filter-cards .filter-side .accordion {
    overflow-y: auto;
    overflow-x: clip;
    height: 98%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .side-filter-cards .filter-side .accordion::-webkit-scrollbar {
    width: 4px;
  }
  .side-filter-cards .filter-side .accordion::-webkit-scrollbar-track {
    background: transparent;
  }
  .side-filter-cards .filter-side .accordion::-webkit-scrollbar-thumb {
    border-radius: 25px;
    background-color: #5b5349;
  }
}
.side-filter-cards .filter-cards {
  width: calc(100% - 235px);
  transition: all 0.8s cubic-bezier(0.68, -0.3, 0.265, 1.3);
}
@media screen and (max-width: 992px) {
  .side-filter-cards .filter-cards {
    width: 100%;
  }
}
.side-filter-cards.open-side .filter-side {
  transform: translateX(0) !important;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(234px, 1fr));
  gap: 30px 20px;
  position: relative;
  /* padding-bottom: 150px; */
}
@media screen and (max-width: 576px) {
  .cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 18px 12px;
  }
}
.cards-container .card-m {
  position: relative;
  transition: all 0.6s cubic-bezier(0.68, -0.3, 0.265, 2.1);
}
.cards-container .card-m .card-head {
  border-radius: 8px;
  height: 230px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 576px) {
  .cards-container .card-m .card-head {
    height: 210px;
  }
}
@media screen and (max-width: 425px) {
  .cards-container .card-m .card-head {
    height: 180px;
  }
}
.cards-container .card-m .card-head .card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.cards-container .card-m .card-head .play-v {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 13px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  z-index: 13;
}
.cards-container .card-m .card-m-body .card-content {
  background-color: #fff;
  transform: translateY(-4px);
  overflow: hidden;
  border: 1px solid #F5F5F5;
  border-top: none;
  margin-bottom: 12px;
  border-radius: 0 0 15px 15px;
  padding: 15px 7px;
  transition: all 0.3s ease;
}
.cards-container .card-m .card-m-body .card-content .card-title-con {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.cards-container .card-m .card-m-body .card-content .card-title {
  margin-bottom: 13px;
  font-size: 17px;
  font-family: fontDemi;
  color: #202020;
  /*height: 25px;*/
  /*line-height: 1.6;*/
  /*display: -webkit-box;*/
  /*-webkit-line-clamp: 1;*/
  /*-webkit-box-orient: vertical;*/
  /*overflow: hidden;*/
}
.cards-container .card-m .card-m-body .card-content .card-title.lg {
  -webkit-line-clamp: 2;
  height: 52px;
  font-size: 16px;
}
@media screen and (max-width: 576px) {
  .cards-container .card-m .card-m-body .card-content .card-title.lg {
    width: auto;
    font-size: 14px;
    height: auto;
  }
}
@media screen and (max-width: 425px) {
  .cards-container .card-m .card-m-body .card-content .card-title {
    height: auto !important;
    font-size: 14px;
  }
}
.cards-container .card-m .card-m-body .card-content .card-items .card-item {
  height: 23px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 576px) {
  .cards-container .card-m .card-m-body .card-content .card-items .card-item {
    height: auto;
    margin-bottom: 6px;
    gap: 6px;
  }
}
.cards-container .card-m .card-m-body .card-content .card-items .card-item:last-of-type {
  margin-bottom: 0;
}
.cards-container .card-m .card-m-body .card-content .card-items .card-item .text {
  font-size: 14px;
  color: #707070;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 576px) {
  .cards-container .card-m .card-m-body .card-content .card-items .card-item .text {
    font-size: 13px;
  }
}
.cards-container .card-m .card-m-body .card-content .card-items .card-item img {
  max-width: 20px;
  max-height: 20px;
}
@media screen and (max-width: 576px) {
  .cards-container .card-m .card-m-body .card-content .card-items .card-item img {
    max-width: 17px;
    max-height: 17px;
  }
}
.cards-container .card-m .card-m-body .card-content .card-info-con {
  margin-top: 8px;
}
.cards-container .card-m .card-m-body .card-content .card-info-con .card-info {
  display: flex;
  gap: 7px;
  padding: 10px 0;
  border-bottom: 1px solid #D5D5D5;
  min-height: 64px;
}
.cards-container .card-m .card-m-body .card-content .card-info-con .card-info:last-of-type {
  padding: 8px 0 0;
  border-bottom: none;
}
.cards-container .card-m .card-m-body .card-content .card-info-con .card-info .card-info-i {
  text-align: center;
  flex: 1;
  position: relative;
}
html[lang=en] .cards-container .card-m .card-m-body .card-content .card-info-con .card-info .card-info-i:first-child {
  padding-right: 8px;
}
html[lang=ar] .cards-container .card-m .card-m-body .card-content .card-info-con .card-info .card-info-i:first-child {
  padding-left: 8px;
}
.cards-container .card-m .card-m-body .card-content .card-info-con .card-info .card-info-i:first-child::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: #D5D5D5;
}
html[lang=en] .cards-container .card-m .card-m-body .card-content .card-info-con .card-info .card-info-i:first-child::after {
  right: 0;
}
html[lang=ar] .cards-container .card-m .card-m-body .card-content .card-info-con .card-info .card-info-i:first-child::after {
  left: 0;
}
.cards-container .card-m .card-m-body .card-content .card-info-con .card-info .card-info-i .info-head {
  font-size: 13px;
  color: #707070;
  margin-bottom: 3px;
  display: block;
  line-height: 1.4;
}
.cards-container .card-m .card-m-body .card-content .card-info-con .card-info .card-info-i .info-date {
  font-size: 14px;
  color: #202020;
  font-family: fontDemi;
  line-height: 1.4;
}
.cards-container .card-m .card-m-body .card-content .card-info-con .card-info .line {
  width: 2px;
  background-color: #D5D5D5;
  height: 24px;
}
.cards-container .card-m .card-m-body .main-btn {
  width: 100%;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 425px) {
  .cards-container .card-m .card-m-body .main-btn {
    opacity: 1;
    pointer-events: auto;
    border-radius: 5px;
    font-size: 14px;
    height: 43px;
  }
}
.cards-container .card-m:hover .card-head {
  border: none;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.cards-container .card-m:hover .card-head .card-img {
  transform: scale(1.2);
}
.cards-container .card-m:hover .card-head .card-img.not-scale {
  transform: scale(1);
}
.cards-container .card-m:hover .card-m-body .card-content {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.cards-container .card-m:hover .card-m-body .main-btn {
  opacity: 1;
  pointer-events: auto;
}
.cards-container.verticale {
  /*display: flex;*/
  /*flex-direction: column;*/
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
}

@media screen and (max-width: 500px) {
  .cards-container.verticale{
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 7px;
  }
}

.cards-container.verticale .card-m {
  display: flex;
  align-items: stretch;
  gap: 12px;
  border: 1px solid #F5F5F5;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cards-container.verticale .card-m {
    gap: 4px;
  }
}
.cards-container.verticale .card-m .card-head {
  height: 260px;
  width: 220px;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .cards-container.verticale .card-m .card-head {
    width: 200px;
  }
}
@media screen and (max-width: 576px) {
  .cards-container.verticale .card-m .card-head {
    width: 175px;
  }
}
@media screen and (max-width: 425px) {
  .cards-container.verticale .card-m .card-head {
    width: 145px;
  }
}
@media screen and (max-width: 375px) {
  .cards-container.verticale .card-m .card-head {
    width: 120px;
  }
}
.cards-container.verticale .card-m .card-m-body {
  padding: 0 0 10px;
  flex-grow: 1;
}
@media screen and (max-width: 576px) {
  .cards-container.verticale .card-m .card-m-body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 0;
    padding: 3px;
  }
}
.cards-container.verticale .card-m .card-m-body .card-title.lg {
  width: 230px;
}
@media screen and (max-width: 768px) {
  .cards-container.verticale .card-m .card-m-body .card-title.lg {
    width: auto;
    height: auto;
  }
}
@media screen and (max-width: 576px) {
  .cards-container.verticale .card-m .card-m-body .card-title.lg {
    width: auto;
    font-size: 14px;
    height: auto;
  }
}
.cards-container.verticale .card-m .card-m-body .card-content {
  transform: translateY(0px);
  border: none;
  border-radius: 0;
  padding: 15px;
  background-color: transparent;
}
@media screen and (max-width: 576px) {
  .cards-container.verticale .card-m .card-m-body .card-content {
    padding: 0;
    margin-bottom: 0;
  }
}
.cards-container.verticale .card-m .card-m-body .main-btn {
  width: 210px;
  border-radius: 6px;
}

.cards-container.verticale .card-m .card-m-body .card-content .card-items .card-item .text{
  white-space: wrap;
}

}
@media screen and (max-width: 768px) {
  .cards-container.verticale .card-m .card-m-body .main-btn {
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 30px;
  }
}
@media screen and (max-width: 576px) {
  .cards-container.verticale .card-m .card-m-body .main-btn {
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 12px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0 !important;
    pointer-events: auto !important;
    z-index: 10;
  }
}
.cards-container.verticale .card-m:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.cards-container.verticale .card-m:hover .card-head {
  box-shadow: none;
}
.cards-container.verticale .card-m:hover .card-m-body .card-content {
  box-shadow: none;
}

.download-sec {
  background-color: #FAFAFA;
}
@media screen and (max-width: 768px) {
  .download-sec {
    padding: 50px 0;
  }
}
.download-sec .download-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .download-sec .download-content {
    justify-content: center;
  }
}
.download-sec .download-content .rigth-sec .download-title {
  font-size: 24px;
  margin-bottom: 35px;
  color: #202020;
  font-family: fontDemi;
}
@media screen and (max-width: 768px) {
  .download-sec .download-content .rigth-sec .download-title {
    text-align: center;
  }
}
@media screen and (max-width: 425px) {
  .download-sec .download-content .rigth-sec .download-title {
    font-size: 20px;
  }
}
.download-sec .download-content .rigth-sec .download-links {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 425px) {
  .download-sec .download-content .rigth-sec .download-links {
    gap: 10px;
  }
}
.download-sec .download-content .rigth-sec .download-links .down-link {
  background-color: #fff;
  border: 1px solid #5b5349;
  width: 165px;
  height: 58px;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 425px) {
  .download-sec .download-content .rigth-sec .download-links .down-link {
    width: 150px;
  }
}
@media screen and (max-width: 375px) {
  .download-sec .download-content .rigth-sec .download-links .down-link {
    width: 145px;
  }
}
.download-sec .download-content .rigth-sec .download-links .down-link:hover {
  transform: translateY(-6px);
}
.download-sec .download-content .rigth-sec .download-links .down-link .img {
  max-width: 25px;
  max-height: 25px;
}
.download-sec .download-content .rigth-sec .download-links .down-link .down-info .text {
  font-size: 13px;
  color: #7b7b7b;
  margin-bottom: 6px;
}
.download-sec .download-content .rigth-sec .download-links .down-link .down-info .name {
  font-size: 15px;
  color: #202020;
  font-weight: 600;
}
.download-sec .download-content .rigth-sec .download-links .down-link.blue {
  background-color: #ab7d63;
  border-color: #ab7d63;
}
.download-sec .download-content .rigth-sec .download-links .down-link.blue .down-info .text {
  color: #fff;
}
.download-sec .download-content .rigth-sec .download-links .down-link.blue .down-info .name {
  color: #fff;
}
.download-sec .download-content .left-sec .market-img {
  max-width: 100%;
  max-height: 100%;
  height: 340px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
@media screen and (max-width: 992px) {
  .download-sec .download-content .left-sec .market-img {
    width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .download-sec .download-content .left-sec {
    display: none;
  }
}

.Company-Slider {
  background-color: #FAFAFA;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  .Company-Slider {
    padding: 0px 0;
  }
}
.Company-Slider .company-item {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 992px) {
  .Company-Slider .company-item {
    padding: 55px 0;
  }
}
.Company-Slider .company-item .right-sec .market-img {
  max-width: 100%;
  max-height: 100%;
  height: 360px;
  width: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
@media screen and (max-width: 992px) {
  .Company-Slider .company-item .right-sec {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 1;
  }
  .Company-Slider .company-item .right-sec .market-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.Company-Slider .company-item .left-sec {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .Company-Slider .company-item .left-sec {
    gap: 20px;
  }
}
@media screen and (max-width: 425px) {
  .Company-Slider .company-item .left-sec {
    gap: 15px;
  }
}
.Company-Slider .company-item .left-sec .company-title {
  font-size: 26px;
  color: #202020;
  font-family: fontDemi;
}
@media screen and (max-width: 768px) {
  .Company-Slider .company-item .left-sec .company-title {
    font-size: 23px;
  }
}
@media screen and (max-width: 425px) {
  .Company-Slider .company-item .left-sec .company-title {
    font-size: 20px;
  }
}
.Company-Slider .company-item .left-sec .company-info {
  font-size: 17px;
  color: #707070;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .Company-Slider .company-item .left-sec .company-info {
    font-size: 16px;
  }
}
@media screen and (max-width: 425px) {
  .Company-Slider .company-item .left-sec .company-info {
    font-size: 14px;
  }
}
.Company-Slider .owl-dots {
  bottom: 0;
}
@media screen and (max-width: 992px) {
  .Company-Slider .owl-dots {
    bottom: 12px;
  }
}
.Company-Slider .owl-dots .owl-dot {
  background-color: #5b5349 !important;
}

.cond-text .form-text {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 10px;
}
.cond-text .form-text:last-of-type {
  margin-bottom: 0;
}

.rating-items {
  max-height: 425px;
  overflow: auto;
}
@media screen and (max-width: 576px) {
  .rating-items {
    max-height: -moz-fit-content;
    max-height: fit-content;
    overflow: unset;
  }
}
.rating-items::-webkit-scrollbar {
  width: 3px;
}
.rating-items::-webkit-scrollbar-track {
  background: transparent;
}
.rating-items::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: #4c9cdd;
}

.rate-item {
  border-bottom: 2px solid #E7E7E7;
}
.rate-item:last-child {
  border-bottom: none;
}
.rate-item .rate-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.rate-item .rate-head .rate-img {
  border-radius: 50%;
  width: 46px;
  height: 46px;
  -o-object-fit: cover;
     object-fit: cover;
}
.rate-item .rate-head .user-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.rate-item .rate-head .user-info .rate-name {
  font-size: 15px;
  color: #202020;
  font-family: fontDemi;
}
.rate-item .rate-head .user-info .rate-date {
  font-size: 14px;
  color: #707070;
}
.rate-item .rate-text {
  font-size: 13px;
  line-height: 1.7;
  color: #707070;
}
.rate-item .requests-done {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rate-item .requests-done img {
  max-height: 16px;
}
.rate-item .requests-done .text {
  font-size: 16px;
  color: #202020;
  font-family: fontDemi;
}

.stor-content {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 768px) {
  .stor-content {
    flex-direction: column;
    gap: 15px;
  }
}
.stor-content .store-img {
  width: 140px;
  height: 110px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid #FAFAFA;
}
@media screen and (max-width: 576px) {
  .stor-content .store-img {
    width: 100px;
    height: 90px;
  }
}
@media screen and (max-width: 425px) {
  .stor-content .store-img {
    width: 90px;
    height: 80px;
  }
}
.stor-content .stor-info .store-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .stor-content .stor-info .store-head {
    justify-content: center;
  }
}
.stor-content .stor-info .store-head .stor-title {
  font-size: 19px;
  font-family: fontDemi;
  color: #202020;
}
.stor-content .stor-info .store-head .stor-star {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #5b5349;
  font-size: 16px;
}
.stor-content .stor-info .store-head .stor-star i {
  color: #FFC107;
}
.stor-content .stor-info .stor-items {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .stor-content .stor-info .stor-items {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .stor-content .stor-info .desc {
    text-align: center;
  }
}
.stor-content.vert {
  flex-direction: column;
  gap: 10px;
}
.stor-content.vert .store-img {
  width: 150px;
  height: 110px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid #FAFAFA;
}
.stor-content.vert .stor-info {
  padding-bottom: 12px;
  border-bottom: 1px solid #FAFAFA;
  width: 100%;
}
.stor-content.vert .stor-info .store-head {
  justify-content: center;
  margin-bottom: 8px;
}
.stor-content.vert .stor-info .stor-items {
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}
.stor-content.vert .stor-info .desc {
  text-align: center;
}
.stor-content.vert .stor-info .price {
  font-size: 15px;
  color: #5b5349;
  margin-top: 8px;
  text-align: center;
}
.stor-content.vert .store-buttons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 15px;
}
@media screen and (max-width: 375px) {
  .stor-content.vert .store-buttons {
    gap: 3px;
  }
}
.stor-content.vert .store-buttons .store-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  cursor: pointer;
  background-color: transparent;
  outline: none;
}
@media screen and (max-width: 375px) {
  .stor-content.vert .store-buttons .store-btn {
    font-size: 14px;
    gap: 3px;
  }
}
.stor-content.vert .store-buttons .store-btn .ic {
  font-size: 14px;
}
@media screen and (max-width: 375px) {
  .stor-content.vert .store-buttons .store-btn .ic {
    font-size: 11px;
  }
}
.stor-content.vert .store-buttons .store-btn.blue {
  color: #5b5349;
}
.stor-content.vert .store-buttons .store-btn.red {
  color: #EB2222;
}

.stor-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.stor-item .text {
  font-size: 14px;
  color: #707070;
  /*white-space: nowrap;*/
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 425px) {
  .stor-item .text {
    font-size: 13px;
  }
}
.stor-item img {
  max-width: 20px;
  max-height: 16px;
}

.product-carousel .owl-stage-outer {
  border-radius: 10px;
}

.pro-slide-img {
  width: 100%;
  height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.pro-slide-img.md {
  height: 695px;
}
.pro-slide-img.lg {
  height: 734px;
}
@media screen and (max-width: 992px) {
  .pro-slide-img.lg {
    height: 420px !important;
  }
}
@media screen and (max-width: 992px) {
  .pro-slide-img {
    height: 340px !important;
  }
}

.dots-imgs {
  margin-top: 20px;
}
.dots-imgs .owl-dot {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.dots-imgs .owl-dot .dot-img {
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 992px) {
  .dots-imgs .owl-dot .dot-img {
    height: 115px;
  }
}
@media screen and (max-width: 576px) {
  .dots-imgs .owl-dot .dot-img {
    height: 100px;
  }
}
.dots-imgs .owl-dot::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: transparent;
  transition: all 0.5s ease;
  z-index: 2;
}
.dots-imgs .owl-dot::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 5px;
  bottom: 5px;
  right: 5px;
  border: 3px solid #fff;
  transition: all 0.5s ease;
  opacity: 0;
  border-radius: 10px;
  z-index: 3;
}
.dots-imgs .current .owl-dot::after {
  background-color: rgba(0, 0, 0, 0.2);
}
.dots-imgs .current .owl-dot::before {
  opacity: 1;
}

.product-content .product-name {
  font-size: 18px;
  margin-bottom: 15px;
  color: #202020;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 425px) {
  .product-content .product-name {
    font-size: 16px;
  }
}
.product-content .product-items .product-item {
  margin-bottom: 18px;
}
.product-content .product-items .product-item .product-item-top {
  font-size: 16px;
  color: #777777;
  margin-bottom: 8px;
}
@media screen and (max-width: 425px) {
  .product-content .product-items .product-item .product-item-top {
    font-size: 15px;
  }
}
.product-content .product-items .product-item .product-item-bottom {
  font-size: 15px;
  color: #202020;
}
@media screen and (max-width: 425px) {
  .product-content .product-items .product-item .product-item-bottom {
    font-size: 14px;
  }
}
.product-content .product-items .product-item .pr-ic {
  max-height: 15px;
}
.product-content .numbers-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.product-content .numbers-form .number-item {
  display: flex;
  align-items: center;
  gap: 3px;
}
.product-content .numbers-form .number-item .first {
  font-size: 15px;
  color: #7b7b7b;
}
.product-content .numbers-form .number-item .two {
  font-size: 15px;
  color: #202020;
}

.store-carousel .owl-stage-outer {
  border-radius: 8px;
}
.store-carousel .store-slide-img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media screen and (max-width: 576px) {
  .store-carousel .store-slide-img {
    height: 220px;
    border-radius: 10px;
  }
}
.store-carousel .owl-dots {
  margin-top: 25px;
  position: unset !important;
}
@media screen and (max-width: 576px) {
  .store-carousel .owl-dots {
    position: absolute !important;
    margin-top: 0;
  }
}
.store-carousel .owl-dots .owl-dot {
  background-color: #5b5349 !important;
  opacity: 0.6;
}
@media screen and (max-width: 576px) {
  .store-carousel .owl-dots .owl-dot {
    background-color: #fff !important;
  }
}
.store-carousel .owl-dots .owl-dot.active {
  opacity: 1;
}

.pr-old {
  display: flex;
  align-items: center;
  gap: 10px !important;
}
.pr-old .price {
  font-size: 16px;
  color: #5b5349;
  font-family: fontDemi;
  line-height: 1.7;
}
@media screen and (max-width: 425px) {
  .pr-old .price {
    font-size: 14px;
  }
}
.pr-old .old-price {
  font-size: 16px;
  color: #707070;
  text-decoration: line-through;
  line-height: 1.7;
}
@media screen and (max-width: 425px) {
  .pr-old .old-price {
    font-size: 14px;
  }
}

.code-inputs .main-input {
  display: flex;
  align-items: center;
  gap: 10px;
}
.code-inputs .main-input .input-me {
  min-height: 42px !important;
}
.code-inputs .main-input .main-btn {
  height: 42px;
  border-radius: 5px;
}
.code-inputs.lg .main-input .input-me {
  min-height: 48px !important;
}
.code-inputs.lg .main-input .main-btn {
  height: 48px;
}

.pro-buy-item {
  border-bottom: 1px solid #E7E7E7;
}
.pro-buy-item:last-of-type {
  border-bottom: none;
}
.pro-buy-item .pro-buy-top {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  .pro-buy-item .pro-buy-top {
    gap: 15px;
  }
}
@media screen and (max-width: 425px) {
  .pro-buy-item .pro-buy-top {
    gap: 10px;
    align-items: center;
  }
}
.pro-buy-item .pro-buy-top .img {
  width: 155px;
  height: 110px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .pro-buy-item .pro-buy-top .img {
    width: 160px;
    height: 100px;
  }
}
.pro-buy-item .pro-buy-top .img .buy-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.pro-buy-item .pro-buy-top .pro-buy-content {
  flex: 1;
}
@media screen and (max-width: 425px) {
  .pro-buy-item .pro-buy-top .pro-buy-content {
    width: 100%;
    flex: auto;
  }
}
.pro-buy-item .pro-buy-top .pro-buy-content .pro-buy-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  width: 100%;
}
.pro-buy-item .pro-buy-top .pro-buy-content .pro-buy-head .title {
  font-size: 15px;
  font-family: fontDemi;
  width: 230px;
}
@media screen and (max-width: 576px) {
  .pro-buy-item .pro-buy-top .pro-buy-content .pro-buy-head .title {
    width: auto;
  }
}
@media screen and (max-width: 425px) {
  .pro-buy-item .pro-buy-top .pro-buy-content .pro-buy-head .title {
    font-size: 14px;
  }
}
.pro-buy-item .pro-buy-top .pro-buy-content .pro-buy-head .title.lg {
  font-size: 16px;
  font-family: fontDemi;
}
.pro-buy-item .pro-buy-top .pro-buy-content .pro-buy-head .sm-btn {
  flex-shrink: 0;
}
.pro-buy-item .pro-buy-top .pro-buy-content .pro-buy-head .pro-icon {
  color: #5b5349;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .pro-buy-item .pro-buy-top .pro-buy-content .pro-buy-head .pro-icon {
    display: none;
  }
}
.pro-buy-item .pro-buy-top .pro-buy-content .buy-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
}
.pro-buy-item .pro-buy-top .pro-buy-content .buy-buttons .buy-btn {
  padding: 0;
  font-size: 14px;
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  background-color: transparent;
  outline: none;
}
.pro-buy-item .pro-buy-top .pro-buy-content .buy-buttons .buy-btn.blue .ic {
  color: #5b5349;
}
.pro-buy-item .pro-buy-top .pro-buy-content .buy-buttons .buy-btn.red .ic {
  color: #EB2222;
}
.pro-buy-item .pro-buy-down {
  font-size: 13px;
  margin-top: 15px;
  color: #6c757d;
  width: 350px;
  line-height: 1.7;
}
@media screen and (max-width: 425px) {
  .pro-buy-item .pro-buy-down {
    width: 100%;
  }
}
.pro-buy-item:hover .buy-img {
  transform: rotate(-3deg) scale(1.1);
}

.summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background-color: #fff;
  padding: 24px 22px;
}
.summary-item:nth-child(even) {
  padding: 15px 22px;
  background-color: #FAFAFA;
}
.summary-item .first {
  color: #6c757d;
  font-size: 15px;
}
.summary-item .second {
  color: #5b5349;
  font-family: fontDemi;
  font-size: 14px;
}
.summary-item.total .first {
  font-family: fontDemi;
  color: #202020;
}

.done-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}
.done-section .done-img {
  width: 205px;
  height: 105px;
}
@media screen and (max-width: 425px) {
  .done-section .done-img {
    width: 175px;
    height: 86px;
  }
}
@media screen and (max-width: 375px) {
  .done-section .done-img {
    width: 165px;
    height: 80px;
  }
}
.done-section .done-text {
  font-size: 20px;
  color: #6c757d;
  font-family: fontDemi;
}

.side-bar {
  width: calc(100% - 50px);
}
@media screen and (max-width: 992px) {
  .side-bar {
    width: 100%;
  }
}

.side-links-con {
  transition: all 0.8s cubic-bezier(0.68, -0.3, 0.265, 1.3);
}
@media screen and (max-width: 992px) {
  .side-links-con {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    overflow-y: clip;
    margin-bottom: 30px;
    padding-bottom: 10px;
  }
  .side-links-con::-webkit-scrollbar {
    height: 3px;
  }
  .side-links-con::-webkit-scrollbar-track {
    background-color: transparent;
  }
  .side-links-con::-webkit-scrollbar-thumb {
    border-radius: 25px;
    background: #f0f0f0;
  }
}

.accordion-con {
  transition: all 0.8s cubic-bezier(0.68, -0.3, 0.265, 1.3);
}
@media screen and (max-width: 992px) {
  .accordion-con {
    position: fixed;
    top: 0;
    width: 290px;
    padding: 20px;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    overflow-y: auto;
    overflow-x: clip;
  }
  html[lang=en] .accordion-con {
    left: 0;
  }
  html[lang=ar] .accordion-con {
    right: 0;
  }
  html[lang=en] .accordion-con {
    transform: translateX(-150%);
  }
  html[lang=ar] .accordion-con {
    transform: translateX(150%);
  }
  .accordion-con::-webkit-scrollbar {
    width: 4px;
  }
  .accordion-con::-webkit-scrollbar-track {
    background: transparent;
  }
  .accordion-con::-webkit-scrollbar-thumb {
    border-radius: 25px;
    background-color: #5b5349;
  }
  .accordion-con.open {
    transform: translateX(0) !important;
  }
}

.side-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 992px) {
  .side-links {
    flex-direction: row;
    align-items: center;
    border-radius: 4px;
    overflow: unset;
    flex-shrink: 0;
    box-shadow: none;
    margin-bottom: 0 !important;
  }
}
.side-links .side-link {
  padding: 13px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #939393;
  font-size: 15px;
  position: relative;
  transition: all 0.3s ease;
}
@media screen and (max-width: 992px) {
  .side-links .side-link {
    padding: 10px 15px;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 14px;
    display: block;
    width: fit-content;
    flex-shrink: 0;
    border-radius: 39px;
    overflow: hidden;
  }
}
html[lang=en] .side-links .side-link i {
  margin-left: auto;
  transform: rotateY(180deg);
}
html[lang=ar] .side-links .side-link i {
  margin-right: auto;
}
@media screen and (max-width: 992px) {
  .side-links .side-link i {
    display: none;
  }
}
.side-links .side-link.active {
  background-color: #F7FAFC;
  color: #5b5349 !important;
}
.side-links .side-link::after {
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
  width: 0;
  transition: all 0.3s ease;
  background-color: #F7FAFC;
  z-index: -1;
}
html[lang=en] .side-links .side-link::after {
  left: 0;
}
html[lang=ar] .side-links .side-link::after {
  right: 0;
}
.side-links .side-link:hover {
  color: #5b5349;
}
.side-links .side-link:hover::after {
  width: 100%;
}
.side-links .side-link.red {
  color: #EB2222;
}
.side-links .side-link.red:hover {
  color: #fff;
}
.side-links .side-link.red:hover::after {
  background-color: #EB2222;
}
.side-links .side-link.center {
  justify-content: center;
}

.package-input {
  display: none;
}
.package-input:checked + .package {
  background-color: #F7FAFC;
  border-color: #F7FAFC;
}

.package {
  transition: all 0.3s ease;
  cursor: pointer;
}
.package .package-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.package .package-head .title-m {
  font-size: 19px;
  font-family: fontDemi;
  color: #505050;
}
.package .package-content .package-span {
  font-size: 14px;
  color: #6c757d;
}
.package .package-content .desc {
  margin-top: 8px;
}

.img-order-con {
  width: 110px;
  height: 110px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #F5F5F5;
  flex-shrink: 0;
}
@media screen and (max-width: 576px) {
  .img-order-con {
    width: 90px;
    height: 90px;
  }
}
.img-order-con .order-img {
  width: 68px;
  height: 36px;
}
@media screen and (max-width: 576px) {
  .img-order-con .order-img {
    width: 60px;
    height: 28px;
  }
}
.img-order-con.lg {
  width: 145px;
  height: 120px;
  border-width: 2px;
}
@media screen and (max-width: 576px) {
  .img-order-con.lg {
    width: 120px;
    height: 100px;
  }
}
.img-order-con.lg .order-img {
  width: 75px;
  height: 42px;
}
@media screen and (max-width: 576px) {
  .img-order-con.lg .order-img {
    width: 60px;
    height: 32px;
  }
}

.order-item {
  padding: 7px;
  border: 1px solid #D5D5D5;
  border-radius: 8px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.order-item:last-of-type {
  margin-bottom: 0;
}
.order-item .left-sec {
  padding: 0px 22px;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .order-item .left-sec {
    padding: 0 10px;
  }
}
.order-item .left-sec .left-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px 4px;
  flex-wrap: wrap;
  padding: 12px 0;
  border-bottom: 1px solid #F5F5F5;
}
.order-item .left-sec .left-item:last-child {
  border-bottom: none;
}
.order-item:hover {
  box-shadow: 0 3px 16px rgba(133, 133, 133, 0.05);
  border-color: transparent;
}

.order-vert .img-order-con {
  margin: 0 auto 18px;
}
.order-vert .items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid #D5D5D5;
}
.order-vert .order-footer {
  text-align: center;
  padding: 16px 0 20px;
}

.logo-black {
  display: block;
  width: 200px;
  height: 78px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 10px auto 20px;
}
@media screen and (max-width: 576px) {
  .logo-black {
    width: 130px;
    height: 65px;
    margin: 5px auto 10px;
  }
}

.invoice-item {
  border-bottom: 1px solid #D5D5D5;
}
.invoice-item:last-of-type {
  border-bottom: 0;
}
.invoice-item .text-item {
  font-size: 16px;
  color: #707070;
  display: flex;
  gap: 5px;
}
@media screen and (max-width: 576px) {
  .invoice-item .text-item {
    font-size: 15px;
  }
}
@media screen and (max-width: 425px) {
  .invoice-item .text-item {
    font-size: 14px;
  }
}

.code-img {
  width: 80px;
  height: 80px;
  margin: 10px auto 0;
  display: block;
}
@media screen and (max-width: 425px) {
  .code-img {
    width: 60px;
    height: 60px;
  }
}

@media print {
  body .header-m, body .navbar-m, body .bg-light, body .cart-buttons-con, body .footer, body .copy-right {
    visibility: hidden;
    display: none;
    height: 0;
  }
  body .logo-black {
    height: 50px;
    width: 120px;
    margin-bottom: 10px;
  }
  body .modal.show {
    position: relative;
  }
  body .modal.show .head-btns {
    display: none;
  }
  body .modal.show .modal-dialog {
    width: 100vw;
    max-width: none;
    margin: 0 auto;
  }
  body .modal.show .modal-dialog .modal-content {
    height: 100%;
    border: 0;
  }
  body .modal.show .modal-dialog .modal-body {
    overflow-y: visible;
    gap: 10px;
  }
  body .modal.show .modal-dialog .modal-body .row {
    --bs-gutter-y: 0.5rem;
  }
  body .modal.show .modal-dialog .modal-footer {
    visibility: hidden;
    display: none;
  }
  body .modal-backdrop {
    visibility: hidden;
    display: none;
  }
  body .modal-dialog {
    page-break-after: always;
  }
}
.invoice-img {
  width: 60px;
  height: 60px;
  border-radius: 5px;
}

.profile-content {
  display: flex;
  align-items: center;
  gap: 15px;
}
.profile-content .profile-photo {
  border-radius: 50%;
  width: 74px;
  height: 74px;
  flex-shrink: 0;
  border: 4px solid #FAFAFA;
}
.profile-content .user-info .user-name {
  font-size: 17px;
  font-family: fontDemi;
  margin-bottom: 10px;
  color: #202020;
  display: flex;
  align-items: center;
  gap: 12px;
}
.profile-content .user-info .user-name .user-star {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  background-color: #FAFAFA;
  padding: 6px;
  border-radius: 3px;
  color: #202020;
}
.profile-content .user-info .user-name .user-star i {
  color: #FCB91D;
}

.mazad-inv-item {
  padding: 14px 25px;
}
.mazad-inv-item:nth-child(even) {
  background-color: #FAFAFA;
}
.mazad-inv-item .mazad-inner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 16px;
  font-family: fontDemi;
}
.mazad-inv-item .mazad-inner-item:last-child {
  margin-bottom: 0;
}
.mazad-inv-item .mazad-inner-item .first-maz {
  color: #202020;
}
.mazad-inv-item .mazad-inner-item .sec-maz {
  color: #5b5349;
}

.chat-img {
  z-index: 2;
  overflow: hidden;
  border-radius: 10px;
}
.chat-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
  z-index: 1;
}

.chat-container {
  position: absolute;
  bottom: 10px;
  width: calc(100% - 25px);
  z-index: 4;
  height: 280px;
  padding-bottom: 70px;
  overflow: auto;
}
html[lang=en] .chat-container {
  left: 50%;
}
html[lang=ar] .chat-container {
  right: 50%;
}
html[lang=en] .chat-container {
  transform: translateX(-50%);
}
html[lang=ar] .chat-container {
  transform: translateX(50%);
}
.chat-container::-webkit-scrollbar {
  width: 0px;
}
.chat-container::-webkit-scrollbar-track {
  background: transparent;
}
.chat-container::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: #5b5349;
}
.chat-container .chat-box {
  padding: 10px 14px;
  border: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
}
.chat-container .chat-box .chat-img {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  border: 3px solid #fff;
  flex-shrink: 0;
}
.chat-container .chat-box .chat-text {
  font-size: 15px;
  color: #fff;
}

.chat-form {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 96%;
  z-index: 10;
}
.chat-form .chat-input {
  width: 100%;
  height: 50px;
  padding: 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.chat-form .chat-input::-moz-placeholder {
  color: #6c757d;
  font-size: 13px;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.chat-form .chat-input::placeholder {
  color: #6c757d;
  font-size: 13px;
  transition: all 0.3s ease;
}
.chat-form .chat-input:focus {
  border-color: #5b5349;
}
.chat-form .chat-input:focus::-moz-placeholder {
  opacity: 0;
}
.chat-form .chat-input:focus::placeholder {
  opacity: 0;
}
.chat-form .chat-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 90px;
  height: 40px;
  font-size: 14px;
  border-radius: 4px;
}
html[lang=en] .chat-form .chat-btn {
  right: 5px;
}
html[lang=ar] .chat-form .chat-btn {
  left: 5px;
}

.not-item {
  border: 1px solid #D5D5D5;
  display: block;
  padding: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.not-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 576px) {
  .not-item {
    padding: 18px 15px;
  }
}
@media screen and (max-width: 425px) {
  .not-item {
    padding: 15px 12px;
  }
}
.not-item .not-text {
  color: #202020;
  font-size: 16px;
  font-family: fontDemi;
  transition: all 0.3s ease;
}
@media screen and (max-width: 425px) {
  .not-item .not-text {
    font-size: 15px;
  }
}
.not-item:hover {
  background-color: #F7FAFC;
}
.not-item:hover .not-text {
  color: #5b5349;
}

.contact-title {
  font-size: 20px;
  color: #202020;
  font-family: fontDemi;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 425px) {
  .contact-title {
    font-size: 18px;
  }
}

.contact-items{
  display: inline-block;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-us-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #F9F7F9;
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 5px;

}
@media screen and (max-width: 425px) {
  .contact-us-item {
    gap: 10px;
  }
}
/*.contact-us-item .img {*/
/*  max-width: 22px;*/
/*  max-height: 22px;*/
/*}*/

.contact-us-item .img img {
  max-width: 24px;
  max-height: 24px;
}
.contact-us-item .text {
  font-size: 17px;
  color: #202020;
}
@media screen and (max-width: 425px) {
  .contact-us-item .text {
    font-size: 16px;
  }
}

.wallet-price {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  font-family: fontDemi;
  margin-bottom: 25px;
}
.wallet-price .title {
  font-size: 36px;
  color: #202020;
}
@media screen and (max-width: 576px) {
  .wallet-price .title {
    font-size: 30px;
  }
}
@media screen and (max-width: 425px) {
  .wallet-price .title {
    font-size: 26px;
  }
}
@media screen and (max-width: 375px) {
  .wallet-price .title {
    font-size: 22px;
  }
}
.wallet-price .currency {
  font-size: 18px;
  color: #6c757d;
}
@media screen and (max-width: 425px) {
  .wallet-price .currency {
    font-size: 16px;
  }
}

.rating-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}
.rating-content .rating-head {
  font-size: 42px;
  color: #202020;
  font-family: fontDemi;
}
@media screen and (max-width: 576px) {
  .rating-content .rating-head {
    font-size: 36px;
  }
}
@media screen and (max-width: 425px) {
  .rating-content .rating-head {
    font-size: 28px;
  }
}
.rating-content .icons {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 26px;
  color: #b1b0b0;
}
@media screen and (max-width: 425px) {
  .rating-content .icons {
    font-size: 22px;
  }
}
.rating-content .icons .color {
  color: #FCB91D;
}
.rating-content .rating-text {
  font-size: 20px;
  color: #6c757d;
}
@media screen and (max-width: 425px) {
  .rating-content .rating-text {
    font-size: 18px;
  }
}

.conversation-item {
  border-bottom: 2px solid #E7E7E7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: start;
  gap: 8px;
  flex-wrap: wrap;
  cursor: pointer;
}
.conversation-item:last-child {
  border-bottom: none;
}
.conversation-item .conversation-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.conversation-item .conversation-right .conversation-img {
  border-radius: 50%;
  width: 46px;
  height: 46px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.conversation-item .conversation-right .conversation-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.conversation-item .conversation-right .conversation-info .conversation-name {
  font-size: 15px;
  color: #202020;
  font-family: fontDemi;
}
@media screen and (max-width: 425px) {
  .conversation-item .conversation-right .conversation-info .conversation-name {
    font-size: 14px;
  }
}
.conversation-item .conversation-right .conversation-info .conversation-text {
  font-size: 14px;
  color: #707070;
}
@media screen and (max-width: 425px) {
  .conversation-item .conversation-right .conversation-info .conversation-text {
    font-size: 13px;
  }
}
.conversation-item .conversation-left .conversation-date {
  font-size: 15px;
  color: #6c757d;
}
@media screen and (max-width: 425px) {
  .conversation-item .conversation-left .conversation-date {
    font-size: 13px;
  }
}

.address-item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.address-item:last-child {
  margin-bottom: 0;
}
.address-item .address-name {
  font-size: 16px;
  font-family: fontDemi;
  margin-bottom: 14px;
}
.address-item .address-left {
  display: flex;
  gap: 8px;
}

.invoices {
  overflow-x: auto;
}
.invoices::-webkit-scrollbar {
  height: 4px;
}
.invoices::-webkit-scrollbar-track {
  background: transparent;
}
.invoices::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: #5b5349;
}

.invoices-table {
  width: 100%;
  white-space: nowrap;
}
.invoices-table thead {
  border-bottom: 1px solid #D5D5D5;
}
.invoices-table thead th {
  padding: 30px 10px 20px;
  text-align: center;
  font-size: 18px;
  color: #6c757d;
  font-weight: 500;
}
@media screen and (max-width: 425px) {
  .invoices-table thead th {
    font-size: 15px;
    padding: 15px 12px;
  }
}
.invoices-table tbody tr {
  border-bottom: 1px solid #E7E7E7;
}
.invoices-table tbody tr td {
  font-size: 17px;
  color: #262626;
  padding: 20px 10px;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 425px) {
  .invoices-table tbody tr td {
    font-size: 14px;
    padding: 15px 12px;
  }
}

.store-containter {
  border-bottom: 1px solid #D5D5D5;
  margin-bottom: 22px;
}

.stor-modal {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.stor-modal .img-s {
  width: 85px;
  height: 65px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #FAFAFA;
  flex-shrink: 0;
}
.stor-modal .left .name {
  font-size: 17px;
  font-family: fontDemi;
  margin-bottom: 7px;
}
@media screen and (max-width: 425px) {
  .stor-modal .left .name {
    font-size: 15px;
  }
}
.stor-modal .left .js-wc-star-rating i {
  font-size: 20px !important;
}

.product-m-containter {
  border: 1px solid #E7E7E7;
  border-radius: 6px;
}

.no-data{
  width: 100%;
  margin: auto;
  /* position: absolute; */
  top: 0;
  right: 0;
  text-align: center;
}

.no-data img{
  max-width: 400px;
  height: 260px;
}

.pagination{
  /* position: absolute;
  bottom: 0;
  right: 0; */

}

.flex.justify-between{
  /* font-size: 10px; */
  /* background-color: #161616; */
  display: flex;
  align-items: center ;
}

.pagination .border{
  border: 1px solid #5b5349 !important;
}
.price-slider {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-top: 17px;
}

@media (min-width: 768px) {
  .price-slider {
    padding-top: 8px;
  }
}

.price-slider:before {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: 0;
  color: #39c9a9;
  content: attr(data-currency);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#slider-range {
  width: 90%;
  margin-bottom: 30px;
  border: none;
  background: #f7f7f7;
  height: 3px;
  margin-left: 8px;
  margin-right: 8px;
}

@media (min-width: 768px) {
  #slider-range {
    width: 100%;
  }
}

.ui-slider-horizontal .ui-slider-range {
  background: #5b5349 !important;
}

.ui-slider-handle {
  border-radius: 50%;
  outline: none;
  top: -7px !important;
  width: 16px;
  height: 16px;
}


.slider-price {
  position: relative;
  display: inline-block;
  padding: 0px 8px;
  width: 100px;
  background-color: #e2f7f2;
  line-height: 28px;
  text-align: right;
}

.slider-price:before {
  position: absolute;
  top: 50%;
  left: 10px;
  font-size: 12px;
  margin-top: 0;
  color: var(--main);
  content: attr(data-currency);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.show-all {
  position: relative;
  padding-left: 25px;
  color: #39c9a9;
  cursor: pointer;
  line-height: 28px;
}

.show-all:after,
.show-all:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  margin-top: -1px;
  color: #39c9a9;
  width: 10px;
  border-bottom: 1px solid;
}

.show-all:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.selector.open ul {
  max-height: none;
}

.show-all:after {
  display: none;
}

.price-slider {
  width: 220px;
}
.nav.nav-pills .nav-link.active,
.nav.nav-pills .nav-link:hover {
  color: white !important;
}
.slide-down-animation {
  animation: slideDown .5s;
}
.slide-down-fast-animation {
  animation: slideDownFast .5s;
}

.slide-up-animation {
  animation: slideUp .5s;
}

@keyframes slideDown {
  from {
    transform: translateY(-200px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDownFast {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(-200px);
    opacity: 0;
  }
}

/*# sourceMappingURL=main.css.map */

form .code-container {
  direction: ltr !important;
}

   /* update style by ramadan  */

   #profile-counter {
     display: flex !important;
     background: #f55;
     color: #fff;
     padding: 1px 5px;
     position: absolute;
     border-radius: 50%;
     width: 15px;
     height: 15px;
     font-size: 10px;
     align-items: center;
     justify-content: center;
     top: -3px;
     left: -3px;
   }



.slider_merchant_logo{
  width: 75px !important;
  height: 75px !important;
}







.categories-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.categories-item .catego-con {
  border-radius: 50%;
  width: 110px;
  height: 110px;
  background-color: #fff;
  overflow: hidden;
  border: 1px solid #F0F2F7;
  /*padding: 18px;*/
}
.categories-item .catego-con .catego-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.categories-item .catego-name {
  font-size: 15px;
  color: #272424;
}

html[lang=en] .marquee {
  direction: ltr;
}

html[lang=ar] .marquee {
  direction: ltr;
}