/*********************************************************
  // 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");
}
@font-face {
  font-family: fontBold;
  src: url("../fonts/ArbFONTS-URW-DIN-Arabic-Bold.ttf");
}
@font-face {
  font-family: fontPrima;
  src: url("../../fonts/prima_serif_roman_bt.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: #505052;
}

body {
  font-family: fontMed;
  overflow-x: hidden;
  background-color: #eeece6;
}
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: #505052;
}

textarea {
  resize: none;
}

i {
  line-height: initial;
}

p {
  color: #5e5e5e;
  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;
}
a:hover {
  color: #c49e58;
}

.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;
  }
}
.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 #1d71b8;
  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;
}

.main-search {
  width: 100%;
  height: 48px;
  background-color: #fff;
  position: absolute;
  bottom: 250px;
  right: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.3, 0.265, 1.3);
  z-index: 25;
}
.main-search.active {
  bottom: -46px;
}
@media screen and (max-width: 992px) {
  .main-search {
    bottom: unset;
    top: -250px;
  }
  .main-search.active {
    top: 143px;
  }
}
.main-search .main-search-con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.main-search input {
  height: 100%;
  width: 100%;
  background-color: transparent;
}
.main-search input::-moz-placeholder {
  color: #adabab;
  font-size: 13px;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-search input::placeholder {
  color: #adabab;
  font-size: 13px;
  transition: all 0.3s ease;
}
.main-search input:focus::-moz-placeholder {
  opacity: 0;
}
.main-search input:focus::placeholder {
  opacity: 0;
}
.main-search .search-ic {
  font-size: 15px;
  color: #202020;
  cursor: pointer;
}

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

.big-title {
  font-size: 36px;
  background-color: #505052;
  padding: 24px;
  width: 440px;
  text-align: center;
  border-radius: 10px;
  margin: auto;
  margin-bottom: 40px;
  font-family: fontPrima;
  font-weight: bold;
}
.big-title .text-color {
  background: -webkit-linear-gradient(#a26f2d, #faea9c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 576px) {
  .big-title {
    font-size: 32px;
    padding: 22px;
    width: 350px;
    border-radius: 8px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 425px) {
  .big-title {
    font-size: 26px;
    padding: 20px;
    width: 320px;
  }
}
@media screen and (max-width: 375px) {
  .big-title {
    width: 100%;
  }
}

.main-title {
  margin-bottom: 25px;
  font-size: 17px;
  font-family: fontBold;
}
@media screen and (max-width: 425px) {
  .main-title {
    margin-bottom: 20px;
  }
}

.section-title {
  margin-bottom: 20px;
  font-size: 17px;
  color: #202020;
  font-family: fontDemi;
}

.page-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 45px;
}
@media screen and (max-width: 425px) {
  .page-title {
    margin-bottom: 30px;
  }
}

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

.d-flex-c {
  display: flex;
  align-items: center;
}

.d-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.search-table-con {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 576px) {
  .search-table-con {
    gap: 12px;
  }
}
@media screen and (max-width: 425px) {
  .search-table-con {
    flex-wrap: wrap;
  }
}
.search-table-con .search-table {
  position: relative;
}
@media screen and (max-width: 425px) {
  .search-table-con .search-table {
    width: 100%;
  }
}
.search-table-con .search-table .search-input {
  width: 400px;
}
@media screen and (max-width: 768px) {
  .search-table-con .search-table .search-input {
    width: 320px;
  }
}
@media screen and (max-width: 576px) {
  .search-table-con .search-table .search-input {
    width: 270px;
  }
}
@media screen and (max-width: 425px) {
  .search-table-con .search-table .search-input {
    width: 100%;
  }
}
.search-table-con .search-table .search-select {
  width: 140px;
}
@media screen and (max-width: 425px) {
  .search-table-con .search-table .search-select {
    width: 100%;
  }
}
.search-table-con .search-table .search-style {
  padding: 6px 12px;
  min-height: 40px;
  border: 1px solid #202020;
  background-color: #fff;
  border-radius: 5px;
}
.search-table-con .search-table .search-style::-moz-placeholder {
  font-size: 13px;
  color: #202020;
}
.search-table-con .search-table .search-style::placeholder {
  font-size: 13px;
  color: #202020;
}
.search-table-con .search-table .search-submit {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  padding: 0;
  color: #202020;
  font-size: 13px;
  cursor: pointer;
}
html[lang="en"] .search-table-con .search-table .search-submit {
  right: 12px;
}
html[lang="ar"] .search-table-con .search-table .search-submit {
  left: 12px;
}

.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: #2d2e83;
}
.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: #5e5e5e;
  font-size: 15px;
  margin: 2px;
  transition: all 0.3s ease;
}
.dropdown-m-container .dropdown-m .drop-link:hover {
  color: #505052;
}
.dropdown-m-container .dropdown-m .drop-text {
  display: block;
  padding: 10px 10px;
  text-align: center;
  color: #5e5e5e;
  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: 7px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.owl-dots .owl-dot {
  border-radius: 50%;
  width: 7px;
  height: 7px;
  background-color: #d5d5d5 !important;
}
.owl-dots .owl-dot.active {
  background-color: #202020 !important;
}

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

/********************* Tabs *********************/
.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 #d9d9d9;
}
.nav.nav-pills .nav-link {
  min-width: 160px;
  color: #202020;
  border: 1px solid #505052;
  font-size: 14px;
  border-radius: 5px;
  font-family: fontMed;
  padding: 12px 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: #505052;
  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: #1d71b8;
}

/********************* steps *********************/
.steps {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.steps .step-item {
  min-width: 180px;
  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 #f5f5f5;
  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: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  background-color: #fff;
  border: 2px solid #d9d9d9;
}
.steps .step-item .progress-label {
  font-size: 15px;
  margin-top: 14px;
  color: #5e5e5e;
  font-family: fontMed;
}
@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.active .progress-count {
  outline: 3px solid rgba(196, 158, 88, 0.2);
  background-color: #c49e58;
  border: none;
}
.steps .step-item.active .progress-label {
  font-family: fontDemi;
  color: #202020;
}

/********************* breadcrumb *********************/
.breadcrumb-section {
  background-color: #fff;
  padding: 14px 0;
}
.breadcrumb-section .breadcrumb-m {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}
.breadcrumb-section .breadcrumb-m .breadcrumb-m-link {
  color: #5e5e5e;
}
.breadcrumb-section .breadcrumb-m .breadcrumb-m-link.active {
  color: #202020;
}
.breadcrumb-section .breadcrumb-m i {
  color: #202020;
}
html[lang="en"] .breadcrumb-section .breadcrumb-m i {
  transform: rotateY(-180deg);
}

.iti {
  width: 100%;
}
.iti .iti__selected-flag {
  width: 100px;
  justify-content: center;
  min-height: 48px;
  border-radius: 5px;
  font-size: 14px;
  color: #5e5e5e;
  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;
}

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

.main-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 160px;
  background-color: #505052;
  border: 1px solid #505052;
  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: #cc0000;
  color: #fff;
  border-color: #cc0000;
}
.main-btn.transparent-red {
  background-color: transparent;
  color: #cc0000;
  border-color: #cc0000;
}
.main-btn.transparent-red:hover {
  background-color: #cc0000;
  color: #fff;
}
.main-btn.dark {
  background-color: #505052;
  color: #fff;
  border-color: #505052;
  border-radius: 5px;
}
.main-btn.blue {
  background-color: #1d71b8;
  border-color: #1d71b8;
}
.main-btn.white {
  background-color: #fff;
  color: #202020;
  border-color: #202020;
}
.main-btn.white:hover {
  background-color: #202020;
  color: #fff;
}
.main-btn.transparent {
  background-color: #fff;
  color: #505052;
  border-color: #505052;
}
.main-btn.transparent:hover {
  background-color: #505052;
  color: #fff;
}
.main-btn.linear {
  background: -webkit-linear-gradient(#a26f2d, #faea9c);
  border: none;
}
.main-btn.sm {
  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: 190px;
  height: 46px;
}
.main-btn.lg {
  width: 200px;
  font-size: 17px;
  height: 50px;
  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: #1d71b8;
}

.sm-btn {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #505052;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
@media screen and (max-width: 425px) {
  .sm-btn {
    border-radius: 50%;
    width: 46px;
    height: 46px;
    font-size: 15px;
  }
}
.sm-btn .sm-btn-img {
  max-width: 19px;
  max-height: 19px;
}
.sm-btn i.yellow {
  color: #c49e58;
}

.mobile-btn {
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (max-width: 425px) {
  .mobile-btn {
    gap: 4px;
  }
}
.mobile-btn span {
  background-color: #202020;
  width: 15px;
  height: 3px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.mobile-btn span:nth-child(1) {
  width: 23px;
}
.mobile-btn span:nth-child(3) {
  width: 23px;
}
.mobile-btn i {
  font-size: 18px;
  color: #202020;
}
@media screen and (max-width: 425px) {
  .mobile-btn i {
    font-size: 16px;
  }
}
.mobile-btn img {
  max-width: 22px;
  max-height: 22px;
}
.mobile-btn.white span {
  background-color: #fff !important;
}

.img-btn {
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}
.img-btn .img_ic {
  max-width: 23px;
  max-height: 21px;
}

.buttons-m {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.buttons-m.lg {
  gap: 10px 23px;
}
@media screen and (max-width: 576px) {
  .buttons-m .main-btn {
    width: -moz-fit-content;
    width: fit-content;
    min-width: 150px;
    padding: 0 12px;
  }
}

/********************* Classes *********************/
.c-blue {
  color: #1d71b8 !important;
}

.c-black {
  color: #202020;
}

.c-ligth {
  color: #5e5e5e;
}

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

.bg_light {
  background-color: #f5f5f5 !important;
}

.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-19 {
  font-size: 19px;
}

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

.fs-24 {
  font-size: 24px !important;
}
@media screen and (max-width: 425px) {
  .fs-24 {
    font-size: 18px !important;
  }
}

.lh {
  line-height: 1.7;
}

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

.ff-b {
  font-family: fontBold !important;
}

.remove-append {
  position: absolute;
  bottom: 14px;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #cc0000;
  font-size: 12px;
  padding: 0;
}
html[lang="en"] .remove-append {
  right: -7px;
}
html[lang="ar"] .remove-append {
  left: -7px;
}

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

.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: 35px;
  }
}

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

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

.px-7 {
  padding-left: 4.5rem !important;
  padding-right: 4.5rem !important;
}
@media screen and (max-width: 768px) {
  .px-7 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
}
@media screen and (max-width: 576px) {
  .px-7 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}
@media screen and (max-width: 425px) {
  .px-7 {
    padding-left: 2.2rem !important;
    padding-right: 2.2rem !important;
  }
}

.section-style {
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #d9d9d9;
  background-color: #fff;
}

.main-text {
  font-size: 15px;
  line-height: 1.9;
  color: #5e5e5e;
  font-family: fontReg;
}

.sec-text {
  font-size: 15px;
  color: #202020;
  display: flex;
  gap: 7px;
}

.store-img-m {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  position: relative;
  z-index: 2;
  display: block;
}
.store-img-m img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.store-img-m.story img {
  border: 3px solid #fff;
}
.store-img-m.story::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 105%;
  height: 105%;
  background: -webkit-linear-gradient(#a26f2d, #faea9c);
  z-index: -2;
  border-radius: 50%;
}
.store-img-m.lg {
  border-radius: 50%;
  width: 120px;
  height: 120px;
}
.store-img-m.lg.story img {
  border: 4px solid #fff;
}
.store-img-m.lg.story::after {
  width: 107%;
  height: 107%;
}
@media screen and (max-width: 576px) {
  .store-img-m.lg {
    border-radius: 50%;
    width: 80px;
    height: 80px;
  }
  .store-img-m.lg.story img {
    border: 3px solid #fff;
  }
  .store-img-m.lg.story::after {
    width: 104%;
    height: 104%;
  }
}

.store-img-squer {
  width: 160px;
  height: 155px;
  border-radius: 12px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 425px) {
  .store-img-squer {
    border-radius: 50%;
    width: 110px;
    height: 110px;
  }
}

.story-img {
  width: 350px;
  height: 200px;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 576px) {
  .story-img {
    width: 260px;
    height: 170px;
  }
}
@media screen and (max-width: 425px) {
  .story-img {
    width: 220px;
    height: 130px;
  }
}

.img-container {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.main-img {
  width: 125px;
  height: 135px;
  -o-object-fit: cover;
  object-fit: cover;
}

.flag-img {
  width: 25px;
  height: 18px;
  border-radius: 2px;
}

.flex-card {
  display: flex;
  gap: 30px;
}
@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: 390px;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 992px) {
  .flex-1 {
    width: 100%;
  }
}

.flex-3 {
  width: calc(100% - 390px);
  overflow: hidden;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 992px) {
  .flex-3 {
    width: 100%;
  }
}

.user-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.user-stars i {
  font-size: 12px;
  color: #fecc2f;
}

.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: 22px;
}
@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 #89877e;
  margin-bottom: 0;
}
@media screen and (max-width: 576px) {
  .main-card-title {
    padding: 0 12px;
    min-height: 58px;
  }
}

.desc {
  font-size: 14px;
  color: #5e5e5e;
  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;
}

.filter-tabs {
  display: flex;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #505052;
}
@media screen and (max-width: 576px) {
  .filter-tabs {
    order: 3;
  }
}
.filter-tabs .filter-tab {
  background-color: #fff;
  font-size: 14px;
  cursor: pointer;
  min-width: 95px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.filter-tabs .filter-tab.active {
  background-color: #505052;
  color: #fff;
}

.tabs-m {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 576px) {
  .tabs-m {
    gap: 10px;
  }
}
.tabs-m .tab-m {
  min-width: 190px;
  min-height: 46px;
  cursor: pointer;
  font-size: 15px;
  color: #202020;
  border: 1px solid #202020;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  transition: all 0.3s ease;
}
.tabs-m .tab-m.active {
  color: #fff;
  background-color: #505052;
  border-color: #505052;
}
@media screen and (max-width: 768px) {
  .tabs-m .tab-m {
    min-width: 150px;
    min-height: 44px;
  }
}
@media screen and (max-width: 576px) {
  .tabs-m .tab-m {
    min-width: 130px;
    min-height: 44px;
  }
}
@media screen and (max-width: 425px) {
  .tabs-m .tab-m {
    min-width: -moz-fit-content;
    min-width: fit-content;
    padding: 0 16px;
    border-radius: 5px;
    font-size: 14px;
  }
}

.main-anchor {
  color: #202020;
  font-size: 15px;
  text-decoration: underline;
  cursor: pointer;
  background-color: transparent;
  padding: 0;
}
.main-anchor.edit {
  color: #505052;
}

.pr-old {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price {
  font-size: 17px;
  color: #c49e58 !important;
}
.price.lg {
  font-size: 18px;
}
@media screen and (max-width: 425px) {
  .price {
    font-size: 14px;
  }
}

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

.discount {
  font-size: 16px;
  color: #cc0000;
}

.form-title {
  font-size: 16px;
  text-align: center;
  margin-bottom: 15px;
  color: #202020;
  font-family: fontDemi;
}

.button-code {
  background-color: transparent;
  font-size: 16px;
  color: #202020;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  cursor: pointer;
  margin-top: 15px;
  text-decoration: underline;
}

.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 {
  font-size: 16px;
  color: #5e5e5e;
  display: flex;
}

.height-full {
  height: 100%;
}

.remove-product {
  position: absolute;
  top: 16px;
  cursor: pointer;
  color: #202020;
  font-size: 18px;
}
html[lang="en"] .remove-product {
  right: 15px;
}
html[lang="ar"] .remove-product {
  left: 15px;
}

.delete-filter {
  font-size: 16px;
  color: #cc0000;
  font-family: fontDemi;
  background-color: transparent;
  padding: 0;
  display: block;
  margin: 15px auto 0;
}

.star {
  display: flex;
  gap: 5px;
  color: #000000;
  font-size: 14px;
  font-family: fontDemi;
}
.star i {
  color: #fecc2f;
  font-size: 16px;
}

/********************* Inputs *********************/
.input-g {
  margin-bottom: 22px;
  display: block;
}

.main-label {
  margin-bottom: 10px;
  font-size: 16px;
  color: #202020;
  display: flex;
  align-items: center;
  gap: 5px;
}
.main-label .label-hint {
  color: #505052;
  font-family: fontReg;
  font-size: 14px;
}
@media screen and (max-width: 576px) {
  .main-label {
    font-size: 15px;
  }
}
@media screen and (max-width: 425px) {
  .main-label {
    font-family: fontMed;
    font-size: 15px;
  }
}

.main-input {
  position: relative;
}
.main-input .input-me {
  width: 100%;
  min-height: 48px;
  border-radius: 5px;
  padding: 0 12px;
  outline: none;
  border: none;
  font-size: 14px;
  color: #505052;
  transition: all 0.3s ease;
  border: 1px solid #d9d9d9;
  background-color: #fff;
}
@media screen and (max-width: 425px) {
  .main-input .input-me {
    min-height: 44px;
  }
}
.main-input .input-me.photo-input {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #adabab;
  cursor: pointer;
}
.main-input .input-me::-moz-placeholder {
  font-size: 13px;
  color: #adabab;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-input .input-me::placeholder {
  font-size: 13px;
  color: #adabab;
  transition: all 0.3s ease;
}
@media screen and (max-width: 425px) {
  .main-input .input-me::-moz-placeholder {
    font-size: 12px;
  }
  .main-input .input-me::placeholder {
    font-size: 12px;
  }
}
.main-input .input-me:focus {
  border-color: #505052;
}
.main-input .input-me:focus::-moz-placeholder {
  opacity: 0;
}
.main-input .input-me:focus::placeholder {
  opacity: 0;
}
.main-input .input-me.phone {
  width: calc(100% - 120px);
  padding: 0 12px !important;
}
.main-input .input-me.text-area {
  height: 145px;
  padding: 12px;
}
.main-input .input-me.text-area-lg {
  height: 298px;
  padding: 12px;
}
@media screen and (max-width: 992px) {
  .main-input .input-me.text-area-lg {
    height: 200px;
  }
}
@media screen and (max-width: 425px) {
  .main-input .input-me.text-area-lg {
    height: 160px;
  }
}
.main-input .input-me.text-area-sm {
  height: 90px;
  padding: 12px;
}
.main-input .input-me.text-area-sm2 {
  height: 70px;
  padding: 12px;
}
.main-input .main-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #505052;
  font-size: 14px;
  cursor: pointer;
  pointer-events: none;
}
html[lang="en"] .main-input .main-icon {
  right: 14px;
}
html[lang="ar"] .main-input .main-icon {
  left: 14px;
}
.main-input .main-icon.yellow {
  color: #c49e58;
}
.main-input .main-icon.search-ic {
  pointer-events: auto;
}

/********************* Select Two *********************/
.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: #505052;
  border: 1px solid #d9d9d9;
}
@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: "\f107";
  font-family: "Font Awesome 5 Free";
  display: flex;
  font-size: 13px;
  color: #505052;
  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-dropdown {
  z-index: 1100;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  background-color: #f5f5f5;
  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: #505052;
  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: #cc0000 !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-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #e5e5e5;
  color: #202020;
}

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

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

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

.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;
}

.number-input {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px;
  background-color: #fff;
}
.number-input input {
  color: #202020;
  font-size: 16px;
  width: 40px;
  text-align: center;
}
@media screen and (max-width: 425px) {
  .number-input input {
    font-size: 15px;
  }
}
.number-input .btn-num {
  font-size: 16px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
@media screen and (max-width: 425px) {
  .number-input .btn-num {
    font-size: 15px;
  }
}
.number-input .btn-num.plus {
  background-color: #a26f2d;
  color: #fff;
}
.number-input .btn-num.minus {
  background-color: #d9d9d9;
  color: #5e5e5e;
}

.add-cart {
  padding: 0 15px;
  min-width: 150px;
  height: 42px;
  border: 1px solid #202020;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #c49e58;
  background-color: #202020;
}

.forget-container {
  text-align: end;
}
.forget-container .forget-anchor {
  background: none;
  font-size: 14px;
  color: #505052;
  text-decoration: underline;
}
.forget-container .forget-anchor:hover {
  color: #c49e58;
}
.forget-container span {
  color: #1d71b8;
  margin: 0 2px;
  font-size: 12px;
}

.not-account-link {
  font-size: 15px;
  color: #505052;
}
.not-account-link .not-link {
  color: #1d71b8;
}
.not-account-link:hover {
  color: #505052;
}

.check-box {
  display: flex;
  align-items: center;
  gap: 10px;
  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 #202020;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
}
.check-box .check:hover {
  background-color: #e5e5e5;
}
.check-box.form-check-m .check {
  width: 22px;
  height: 22px;
  border-radius: 4px;
}
.check-box input:checked + .check {
  background-color: transparent;
  border-color: #202020;
}
.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: #202020;
}
.check-box .check-text {
  font-size: 15px;
  cursor: pointer;
}
.check-box.form-check-m input:checked + .check {
  background-color: #505052;
}
.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: #202020;
  text-decoration: underline;
  transition: all 0.3s ease;
  font-family: fontDemi;
}
.check-box .check-anchor a:hover {
  color: #505052;
}

.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: #505052;
  cursor: pointer;
}
.radio-box .label-radio {
  font-size: 16px;
  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: #1d71b8;
  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: 12px;
  gap: 22px;
  color: #c49e58;
  font-family: fontDemi;
  font-size: 16px;
}
.radio-box .bottom {
  font-size: 14px;
  color: #6c757d;
}

.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: #ffc107;
  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: #cc0000;
}
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: #1d71b8;
}
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 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-img .label-img {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px dashed #d9d9d9;
  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;
}

.photo-con {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.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: #cc0000;
  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 #d9d9d9;
  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: #d9d9d9;
}

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

.modal-dialog {
  min-width: 560px;
}
.modal-dialog.lg {
  min-width: 600px;
}
@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: #505052;
  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: #202020;
  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 #d9d9d9;
  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: #202020;
  margin-bottom: 0;
}
.modal-dialog .modal-content .modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 0;
  width: 100%;
  padding: 0 30px;
}
.modal-dialog .modal-content .modal-body.center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 28px;
}
@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;
}

.modal-img-p {
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
  object-fit: cover;
}

/********************* Accordion *********************/
/********************* Start FAQ section *********************/
.faq-collapse {
  margin-bottom: 15px;
  font-family: fontReg;
}
.faq-collapse .faq-open {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background-color: #fff;
  border: 1px solid #202020;
  color: #202020;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.faq-collapse .faq-open i {
  transition: all 0.3s ease;
}
@media screen and (max-width: 425px) {
  .faq-collapse .faq-open {
    font-size: 15px;
    padding: 12px;
  }
}
.faq-collapse.active .faq-open {
  background-color: #202020;
  color: #fff;
}
.faq-collapse.active .faq-open i {
  transform: rotateX(180deg);
}
.faq-collapse .faq-content {
  padding: 15px 20px;
  color: #202020;
  font-size: 15px;
  line-height: 1.7;
  display: none;
  font-family: fontReg;
}
@media screen and (max-width: 425px) {
  .faq-collapse .faq-content {
    font-size: 14px;
    padding: 12px 15px;
  }
}

/********************* dropdown *********************/
.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: 4px;
  min-width: 220px;
  transform: translate3d(0px, 0px, 0px);
  border: none;
}
html[lang="en"] .dropdown-menu {
  inset: 50px auto auto 0%;
}
html[lang="ar"] .dropdown-menu {
  inset: 50px 0% auto auto;
}
.dropdown-menu.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0px, 0px, 0px) !important;
}
html[lang="en"] .dropdown-menu.show {
  inset: 28px auto auto 0% !important;
}
html[lang="ar"] .dropdown-menu.show {
  inset: 28px 0% auto auto !important;
}
.dropdown-menu.left {
  min-width: 190px;
}
html[lang="en"] .dropdown-menu.left {
  inset: 60px 0% auto auto;
}
html[lang="ar"] .dropdown-menu.left {
  inset: 60px auto auto 0%;
}
html[lang="en"] .dropdown-menu.left.show {
  inset: 35px 0% auto auto !important;
}
html[lang="ar"] .dropdown-menu.left.show {
  inset: 35px auto auto 0% !important;
}
.dropdown-menu.left .drop-item {
  display: block;
  padding: 10px;
  text-align: center;
  font-size: 15px;
  border-bottom: 1px solid #d9d9d9;
  color: #202020;
}
.dropdown-menu.left .drop-item:last-child {
  border-bottom: none;
}
.dropdown-menu.left .drop-item.red {
  color: #cc0000;
}
.dropdown-menu.drop-lang {
  min-width: 120px;
}
.dropdown-menu.drop-lang .lang-item {
  display: block;
  padding: 3px 0;
  font-size: 16px;
  color: #202020;
  transition: all 0.3s ease;
}
.dropdown-menu.drop-lang .lang-item:hover {
  color: #5e5e5e;
}
html[lang="en"] .dropdown-menu.drop-filter.show {
  inset: 45px 0% auto auto !important;
}
html[lang="ar"] .dropdown-menu.drop-filter.show {
  inset: 45px auto auto 0% !important;
}

.check-filter {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #d9d9d9;
}
.check-filter:last-child {
  border-bottom: none;
}
.check-filter .input-rad {
  accent-color: #5e5e5e;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.check-filter .filter-item {
  font-size: 14px;
  cursor: pointer;
  color: #202020;
}

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

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

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

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

.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1020;
}
@media screen and (max-width: 992px) {
  .main-header {
    position: unset;
  }
}

.header-m .header-top {
  padding: 6px 0;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .header-m .header-top {
    padding: 10px 0;
  }
}
.header-m .header-top .mobile-text {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  .header-m .header-top .mobile-text {
    display: none !important;
  }
}
.header-m .header-top .mobile-ic {
  font-size: 18px !important;
  cursor: pointer;
  color: #505052;
}
@media screen and (min-width: 768px) {
  .header-m .header-top .mobile-ic {
    display: none;
  }
}
.header-m .header-top .head-top-con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 576px) {
  .header-m .header-top .head-top-con {
    gap: 12px;
  }
}
.header-m .header-top .head-top-con .head-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.header-m .header-top .head-top-con .head-info .line {
  width: 1px;
  height: 20px;
  background-color: #e5e5e5;
}
@media screen and (max-width: 768px) {
  .header-m .header-top .head-top-con .head-info .line {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header-m .header-top .head-top-con .head-info {
    gap: 16px;
  }
}
.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;
  background-color: transparent;
  padding: 0;
}
.header-m .header-top .head-top-con .head-lang .lang {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-m .header-top .head-top-con .head-lang .lang img {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}
.header-m .header-top .head-top-con .head-lang i {
  font-size: 11px;
}
.header-m .header-top .head-top-con .head-lang:hover {
  color: #505052;
}
.header-m .header-top .head-top-con .country-btn {
  padding: 4px;
  border-radius: 4px;
  border: 1px solid #f5f5f5;
}
.header-m .header-top .drop-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #202020;
  margin-bottom: 10px;
}
.header-m .header-top .drop-item:last-child {
  margin-bottom: 0;
}
.header-m .header-top .drop-item .text {
  line-height: 1.6;
  font-size: 15px;
}
.header-m .header-top .drop-item i {
  font-size: 16px;
}
.header-m .head-down {
  padding: 15px 0;
  background-color: #505052;
}
@media screen and (max-width: 992px) {
  .header-m .head-down {
    padding: 10px 0;
  }
}
.header-m .head-down .head-down-con {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-m .head-down .head-down-con .head-links-logo {
  display: flex;
  align-items: center;
  gap: 35px;
}
@media screen and (max-width: 1200px) {
  .header-m .head-down .head-down-con .head-links-logo {
    gap: 15px;
  }
}
.header-m .head-down .head-down-con .head-links-logo .open-sidebar {
  display: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .header-m .head-down .head-down-con .head-links-logo .open-sidebar {
    display: flex;
  }
}
.header-m .head-down .head-down-con .head-links-logo .header-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 1200px) {
  .header-m .head-down .head-down-con .head-links-logo .header-links {
    gap: 10px;
  }
}
.header-m .head-down .head-down-con .head-links-logo .header-links .head-link {
  color: #fff;
  font-size: 14px;
  font-family: fontReg;
  transition: all 0.3s ease;
}
.header-m
  .head-down
  .head-down-con
  .head-links-logo
  .header-links
  .head-link:hover {
  color: #c49e58;
}
@media screen and (max-width: 992px) {
  .header-m
    .head-down
    .head-down-con
    .head-links-logo
    .header-links
    .head-link {
    padding: 12px;
    border-radius: 5px;
    display: block;
    width: 100%;
    color: #202020;
    font-family: fontMed;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }
  .header-m
    .head-down
    .head-down-con
    .head-links-logo
    .header-links
    .head-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"]
    .header-m
    .head-down
    .head-down-con
    .head-links-logo
    .header-links
    .head-link::before {
    left: 0;
  }
  html[lang="ar"]
    .header-m
    .head-down
    .head-down-con
    .head-links-logo
    .header-links
    .head-link::before {
    right: 0;
  }
  .header-m
    .head-down
    .head-down-con
    .head-links-logo
    .header-links
    .head-link::after {
    display: none;
  }
  .header-m
    .head-down
    .head-down-con
    .head-links-logo
    .header-links
    .head-link:hover,
  .header-m
    .head-down
    .head-down-con
    .head-links-logo
    .header-links
    .head-link.active {
    color: #a26f2d;
  }
  .header-m
    .head-down
    .head-down-con
    .head-links-logo
    .header-links
    .head-link:hover::before,
  .header-m
    .head-down
    .head-down-con
    .head-links-logo
    .header-links
    .head-link.active::before {
    width: 100%;
  }
  .header-m
    .head-down
    .head-down-con
    .head-links-logo
    .header-links
    .head-link:hover::after,
  .header-m
    .head-down
    .head-down-con
    .head-links-logo
    .header-links
    .head-link.active::after {
    height: 98%;
  }
  html[lang="en"]
    .header-m
    .head-down
    .head-down-con
    .head-links-logo
    .header-links
    .head-link:hover::after,
  html[lang="en"]
    .header-m
    .head-down
    .head-down-con
    .head-links-logo
    .header-links
    .head-link.active::after {
    left: 99%;
  }
  html[lang="ar"]
    .header-m
    .head-down
    .head-down-con
    .head-links-logo
    .header-links
    .head-link:hover::after,
  html[lang="ar"]
    .header-m
    .head-down
    .head-down-con
    .head-links-logo
    .header-links
    .head-link.active::after {
    right: 99%;
  }
}
@media screen and (max-width: 992px) {
  .header-m .head-down .head-down-con .head-links-logo .header-links {
    position: fixed;
    top: 0;
    z-index: 555;
    background: #fff;
    width: 280px;
    height: 100%;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    padding: 80px 20px;
    transition: all 0.8s cubic-bezier(0.68, -0.3, 0.265, 1.3);
    z-index: 1050;
    gap: 8px;
    overflow-y: auto;
    overflow-x: clip;
  }
  html[lang="en"]
    .header-m
    .head-down
    .head-down-con
    .head-links-logo
    .header-links {
    left: 0;
  }
  html[lang="ar"]
    .header-m
    .head-down
    .head-down-con
    .head-links-logo
    .header-links {
    right: 0;
  }
  html[lang="en"]
    .header-m
    .head-down
    .head-down-con
    .head-links-logo
    .header-links {
    transform: translateX(-150%);
  }
  html[lang="ar"]
    .header-m
    .head-down
    .head-down-con
    .head-links-logo
    .header-links {
    transform: translateX(150%);
  }
  .header-m .head-down .head-down-con .head-links-logo .header-links.active {
    transform: translateX(0) !important;
  }
  .header-m
    .head-down
    .head-down-con
    .head-links-logo
    .header-links::-webkit-scrollbar {
    width: 5px;
  }
  .header-m
    .head-down
    .head-down-con
    .head-links-logo
    .header-links::-webkit-scrollbar-track {
    background: transparent;
  }
  .header-m
    .head-down
    .head-down-con
    .head-links-logo
    .header-links::-webkit-scrollbar-thumb {
    border-radius: 25px;
    background-color: #1d71b8;
  }
}
.header-m .head-down .head-down-con .head-links-logo .header-links .logo {
  display: none;
}
@media screen and (max-width: 992px) {
  .header-m .head-down .head-down-con .head-links-logo .header-links .logo {
    display: block;
    width: auto;
    height: auto;
    margin: 0 auto 40px;
    width: 200px;
    height: 58px;
  }
  .header-m .head-down .head-down-con .head-links-logo .header-links .logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.header-m .head-down .head-down-con .head-links-logo .logo img {
  width: 200px;
  height: 58px;
}
@media screen and (max-width: 1200px) {
  .header-m .head-down .head-down-con .head-links-logo .logo img {
    width: 160px;
    height: 52px;
  }
}
@media screen and (max-width: 576px) {
  .header-m .head-down .head-down-con .head-links-logo .logo img {
    width: 140px;
    height: 50px;
  }
}
@media screen and (max-width: 425px) {
  .header-m .head-down .head-down-con .head-links-logo .logo img {
    width: 120px;
    height: 47px;
  }
}
@media screen and (max-width: 992px) {
  .header-m .head-down .head-down-con .head-links-logo {
    gap: 10px;
  }
}
.header-m .head-down .head-down-con .links-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .header-m .head-down .head-down-con .links-icons {
    gap: 8px;
  }
}
.header-m .head-down .head-down-con .links-icons .link {
  cursor: pointer;
}
.header-m .head-down .head-down-con .links-icons .link img {
  max-width: 24px;
  max-height: 20px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header-m .head-down .head-down-con .links-icons .link img {
    max-width: 20px;
    max-height: 18px;
  }
}

.navbar-m {
  background-color: #f5f5f5;
  transition: all 0.3s ease;
}
@media screen and (max-width: 992px) {
  .navbar-m {
    padding: 8px 0;
  }
}
.navbar-m .navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.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 .links {
  display: flex;
  align-items: center;
  transition: all 0.8s cubic-bezier(0.68, -0.3, 0.265, 1.3);
}
@media screen and (max-width: 992px) {
  .navbar-m .navbar-content .links {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 310px;
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
    box-shadow: 0 3px 16px rgba(133, 133, 133, 0.05);
    z-index: 1050;
    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: #a26f2d;
  }
}
@media screen and (max-width: 425px) {
  .navbar-m .navbar-content .links {
    padding: 80px 12px 20px;
    width: 280px;
  }
}
.navbar-m .navbar-content .links .link {
  font-size: 14px;
  color: #161616;
  transition: all 0.3s ease;
  padding: 12px 14px;
  position: unset !important;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .navbar-m .navbar-content .links .link {
    padding: 12px;
    border-radius: 5px;
    display: block;
    width: 100%;
    flex-shrink: 0;
  }
  .navbar-m .navbar-content .links .link:hover,
  .navbar-m .navbar-content .links .link.active,
  .navbar-m .navbar-content .links .link.active-m {
    background-color: #a26f2d;
    color: #fff;
    transform: skew(0) !important;
  }
  .navbar-m .navbar-content .links .link.open-menu {
    position: relative !important;
  }
}
.navbar-m .navbar-content .links .link:hover,
.navbar-m .navbar-content .links .link.active {
  background-color: #a26f2d;
  transform: skew(-10deg);
}
.navbar-m .navbar-content .links .link.open-menu:hover {
  transform: unset !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: 200px;
    height: 58px;
  }
  .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;
  }
}
.navbar-m .navbar-content .mega-menu {
  position: absolute;
  top: 80px;
  width: 100%;
  height: 400px;
  background-color: #fff;
  z-index: 29;
  opacity: 0;
  pointer-events: none;
  transition: all 0.7s cubic-bezier(0.68, -0.3, 0.265, 1.8);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}
html[lang="en"] .navbar-m .navbar-content .mega-menu {
  left: 0;
}
html[lang="ar"] .navbar-m .navbar-content .mega-menu {
  right: 0;
}
@media screen and (max-width: 992px) {
  .navbar-m .navbar-content .mega-menu {
    height: auto;
    opacity: 1;
    pointer-events: auto;
    display: none;
    padding: 5px 0 10px;
  }
}
.navbar-m .navbar-content .mega-menu.show {
  opacity: 1;
  top: 100%;
  pointer-events: auto;
}
@media screen and (max-width: 992px) {
  .navbar-m .navbar-content .mega-menu.show {
    display: block;
    top: 115%;
    border-radius: 5px;
  }
}
html[lang="en"] .navbar-m .navbar-content .mega-menu .border-m {
  border-right: 1px solid #d9d9d9;
}
html[lang="ar"] .navbar-m .navbar-content .mega-menu .border-m {
  border-left: 1px solid #d9d9d9;
}
@media screen and (max-width: 992px) {
  .navbar-m .navbar-content .mega-menu .border-m {
    border: none !important;
  }
}
.navbar-m .navbar-content .mega-menu .menu-section {
  padding: 20px;
}
@media screen and (max-width: 425px) {
  .navbar-m .navbar-content .mega-menu .menu-section {
    padding: 20px 12px 0;
  }
}
.navbar-m .navbar-content .mega-menu .menu-section .menu-title {
  font-size: 16px;
  color: #202020;
  font-family: fontBold;
  margin-bottom: 25px;
}
@media screen and (max-width: 425px) {
  .navbar-m .navbar-content .mega-menu .menu-section .menu-title {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
.navbar-m .navbar-content .mega-menu .menu-section .menu-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.navbar-m .navbar-content .mega-menu .menu-section .menu-brand .menu-brand-img {
  width: 30px;
  height: 30px;
  border-radius: 2px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 992px) {
  .navbar-m
    .navbar-content
    .mega-menu
    .menu-section
    .menu-brand
    .menu-brand-img {
    width: 24px;
    height: 24px;
  }
}
.navbar-m
  .navbar-content
  .mega-menu
  .menu-section
  .menu-brand
  .menu-brand-name {
  font-size: 14px;
  color: #202020;
  font-family: fontDemi;
}
.navbar-m .navbar-content .mega-menu .menu-section .menu-img {
  width: 100%;
  height: 300px;
  margin-bottom: 15px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 576px) {
  .navbar-m .navbar-content .mega-menu .menu-section .menu-img {
    height: 130px;
    border-radius: 5px;
  }
}

.footer {
  padding: 40px 0;
  background-color: #f5f5f5;
}
.footer .footer-logo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .footer .footer-logo {
    gap: 15px;
  }
}
@media screen and (max-width: 425px) {
  .footer .footer-logo {
    margin-bottom: 30px;
  }
}
.footer .footer-logo .footer-title {
  font-size: 24px;
  color: #202020;
  font-family: fontDemi;
}
@media screen and (max-width: 576px) {
  .footer .footer-logo .footer-title {
    font-size: 20px;
  }
}
.footer .footer-logo .footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 576px) {
  .footer .footer-logo .footer-social {
    gap: 10px;
  }
}
.footer .footer-logo .footer-social .social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  background-color: #fff;
}
@media screen and (max-width: 576px) {
  .footer .footer-logo .footer-social .social-icon {
    border-radius: 50%;
    width: 44px;
    height: 44px;
  }
}
@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: 20px;
  max-height: 20px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 425px) {
  .footer .footer-logo .footer-social .social-icon img {
    max-width: 17px;
    max-height: 17px;
  }
}
.footer .footer-logo .footer-social .social-icon:hover {
  border-color: #c49e58;
  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: #202020;
  transition: all 0.3s ease;
  font-size: 16px;
}
.footer .foot-content .footer-links .link:hover {
  color: #c49e58;
}
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;
}
.footer .foot-content .footer-links .link img.app-link {
  max-width: 220px;
  height: 55px;
  border-radius: 5px;
}
.footer .foot-content .footer-links .link.text {
  width: 240px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer .foot-content .footer-links .link.text:hover {
  color: #202020;
  transform: translateX(0) !important;
}
@media screen and (max-width: 576px) {
  .footer .foot-content .footer-links .link {
    font-size: 15px;
  }
}
.copy-right {
  padding: 10px;
  border-top: 1px solid #fff;
  position: relative;
  z-index: 5;
  background-color: #f5f5f5;
}
.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: #1d71b8;
}

.home-section {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .home-section {
    padding: 20px 10px;
  }
}
.home-section .home-item {
  color: #202020;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-section .home-item.lg {
  height: 420px !important;
}
.home-section .home-item.md {
  height: 370px;
}
@media screen and (max-width: 992px) {
  .home-section .home-item {
    height: 400px;
  }
}
@media screen and (max-width: 425px) {
  .home-section .home-item {
    height: 300px;
  }
}
.home-section .home-item .home-img {
  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;
}
.home-section .home-item .home-content .home-title {
  color: #202020;
  margin-bottom: 8px;
  text-align: center;
}
.home-section .home-item .home-content .home-title .text {
  font-size: 20px;
  background-color: #202020;
  color: #c49e58;
  padding: 5px 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.home-section .home-item .home-content .home-title .text .text-color {
  background: -webkit-linear-gradient(#a26f2d, #faea9c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 992px) {
  .home-section .home-item .home-content .home-title .text {
    font-size: 16px;
  }
}
.home-section .home-item .home-content .home-title .title {
  font-family: fontDemi;
  font-size: 26px;
  margin-top: 15px;
}
@media screen and (max-width: 992px) {
  .home-section .home-item .home-content .home-title .title {
    font-size: 22px;
  }
}
.home-section .home-item .home-content .home-desc {
  line-height: 1.6;
  font-size: 24px;
  color: #202020;
  text-align: center;
  margin-bottom: 20px;
}
@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;
  }
}
.home-section .home-item .home-content .anchor {
  font-size: 22px;
  text-decoration: underline;
  color: #202020;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .home-section .owl-item {
    border-radius: 12px;
    overflow: hidden;
  }
}

.welcome-img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 42px 35px;
}
.cards-container.sm {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px 25px;
}
.cards-container.lg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 42px 35px;
}

.store-card {
  position: relative;
}
.store-card a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.store-card .img-con {
  position: relative;
  margin-bottom: 15px;
  height: 240px;
  border-radius: 10px;
  overflow: hidden;
}
.store-card .img-con .store-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.store-card .img-con .flag-con {
  position: absolute;
  bottom: 20px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
}
html[lang="en"] .store-card .img-con .flag-con {
  left: 20px;
}
html[lang="ar"] .store-card .img-con .flag-con {
  right: 20px;
}
.store-card .img-con .flag-con .flag-img {
  border-radius: 50%;
  width: 42px;
  height: 42px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease;
  cursor: pointer;
}
.store-card .img-con .flag-con .flag-text {
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  opacity: 0;
}
.store-card .img-con .flag-con.active .flag-img {
  border-radius: 4px;
  width: 40px;
  height: 30px;
}
.store-card .img-con .flag-con.active .flag-text {
  opacity: 1;
}
.store-card .img-con .close-con {
  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;
  z-index: 2;
}
.store-card .img-con .close-con .text {
  font-size: 26px;
  color: #fff;
}
.store-card .content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.store-card .content .text {
  font-size: 20px;
  color: #202020;
  font-family: fontBold;
}
.store-card .content .stor-star {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #202020;
  font-size: 16px;
}
.store-card .content .stor-star i {
  color: #ffc107;
}

.categories {
  background-color: #e5e5e5;
}
.categories .categories-items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}
.categories .categories-items.lg {
  gap: 25px 40px;
}

.categories-carousel .owl-stage-outer {
  padding: 5px 0;
}
.categories-carousel .categories-item {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.categories-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.categories-item .cat-img-con {
  border-radius: 50%;
  width: 90px;
  height: 90px;
  position: relative;
  z-index: 2;
}
.categories-item .categories-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.categories-item .categories-name {
  font-size: 16px;
  color: #202020;
}
@media screen and (max-width: 425px) {
  .categories-item .categories-name {
    font-size: 15px;
  }
}
.categories-item.lg .cat-img-con {
  border-radius: 50%;
  width: 220px;
  height: 220px;
}
@media screen and (max-width: 576px) {
  .categories-item.lg .cat-img-con {
    border-radius: 50%;
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 425px) {
  .categories-item.lg .cat-img-con {
    border-radius: 50%;
    width: 120px;
    height: 120px;
  }
}
.categories-item.lg .categories-name {
  font-size: 18px;
  font-family: fontDemi;
}
@media screen and (max-width: 425px) {
  .categories-item.lg .categories-name {
    font-style: 16px;
  }
}
.categories-item.story .cat-img-con .categories-img {
  border: 3px solid #fff;
}
.categories-item.story .cat-img-con::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 105%;
  height: 105%;
  background: -webkit-linear-gradient(#a26f2d, #faea9c);
  z-index: -2;
  border-radius: 50%;
}

.filter-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-container .filter-btn {
  background-color: #fff;
  font-size: 14px;
  color: #202020;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #202020;
  min-width: 120px;
}
.filter-container .filter-btn img {
  max-width: 15px;
}

.categories-card .img {
  position: relative;
  height: 300px;
  margin-bottom: 10px;
  overflow: hidden;
}
.categories-card .img.sm {
  height: 230px;
}
.categories-card .img .card-img-m {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.categories-card .img .heart {
  position: absolute;
  top: 13px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  color: #c49e58;
  cursor: pointer;
}
html[lang="en"] .categories-card .img .heart {
  right: 13px;
}
html[lang="ar"] .categories-card .img .heart {
  left: 13px;
}
.categories-card .img .categories-btns {
  background-color: #fff;
  padding: 20px;
  border-top-right-radius: 18px;
  border-top-left-radius: 18px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  transform: translateY(100%);
}
.categories-card .img .categories-btns .anchor-more {
  font-size: 15px;
  color: #202020;
}
.categories-card .img:hover .categories-btns {
  transform: translateY(0);
}
.categories-card .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.categories-card .title .title-text {
  font-size: 18px;
  color: #202020;
  font-family: fontDemi;
}
@media screen and (max-width: 425px) {
  .categories-card .title .title-text {
    font-style: 16px;
  }
}
.categories-card .categories-info {
  font-size: 15px;
  color: #5e5e5e;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notifications-item {
  display: block;
  padding: 13px 15px;
  font-size: 15px;
  color: #202020 !important;
  border-radius: 7px;
  margin-bottom: 15px;
  background-color: rgba(196, 158, 88, 0.3);
}
.notifications-item:last-child {
  margin-bottom: 0;
}

.wallet-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
.wallet-content .wallet-img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(196, 158, 88, 0.2);
  border: 1px solid #d9d9d9;
}
.wallet-content .wallet-img .img {
  font-size: 30px;
  color: #c49e58;
  max-width: 70px;
  max-height: 75px;
}

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

.invoices-table {
  width: 100%;
  white-space: nowrap;
}
.invoices-table thead {
  border-bottom: 1px solid #d9d9d9;
}
.invoices-table thead th {
  padding: 20px 10px 15px;
  text-align: center;
  font-size: 16px;
  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 #d9d9d9;
}
.invoices-table tbody tr td {
  font-size: 16px;
  color: #262626;
  padding: 15px 10px;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 425px) {
  .invoices-table tbody tr td {
    font-size: 14px;
    padding: 15px 12px;
  }
}

.conversation-item {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid #d9d9d9;
}
.conversation-item:last-child {
  border-bottom: none;
}
.conversation-item .conversation-text {
  font-size: 14px;
  color: #202020;
  margin-top: 10px;
  font-family: fontReg;
  line-height: 1.6;
}

.user-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.user-top .user-img {
  border-radius: 50%;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.user-top .user-img.sm {
  border-radius: 50%;
  width: 42px;
  height: 42px;
}
.user-top .user-con {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.user-top .user-con .user-name {
  font-size: 16px;
  color: #202020;
}
.user-top .user-con .user-time {
  font-size: 14px;
  color: #202020;
  font-family: fontReg;
}

.store-con {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
@media screen and (max-width: 425px) {
  .store-con {
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.store-con .store-right {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 22px;
}
@media screen and (max-width: 576px) {
  .store-con .store-right {
    gap: 15px;
  }
}
@media screen and (max-width: 425px) {
  .store-con .store-right {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
.store-con .store-right .store-text .sec-text {
  margin-top: 12px;
}
@media screen and (max-width: 425px) {
  .store-con .store-right .store-text .sec-text {
    justify-content: center;
    text-align: center;
  }
}
@media screen and (max-width: 425px) {
  .store-con .store-right .main-btn {
    margin: auto;
  }
}
.store-con .store-right .store-top {
  display: flex;
  align-items: center;
  gap: 15px;
}
.store-con .store-right .store-top .store-name {
  font-size: 17px;
  font-family: fontBold;
}
@media screen and (max-width: 425px) {
  .store-con .store-right .store-top {
    justify-content: center;
  }
}
.store-con.vert {
  display: block;
}
.store-con.vert .store-right {
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.grid-boxs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px 25px;
}
@media screen and (max-width: 375px) {
  .grid-boxs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px 25px;
  }
}

.link-box {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 160px;
  width: 100%;
}
@media screen and (max-width: 425px) {
  .link-box {
    height: 140px;
  }
}
.link-box .box-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease;
}
.link-box .box-con {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-family: fontDemi;
  font-size: 19px;
}
@media screen and (max-width: 576px) {
  .link-box .box-con {
    font-size: 16px;
  }
}
.link-box:hover .box-img {
  transform: scale(1.14) rotate(-2deg);
}

.code-inputs .main-input {
  position: relative;
}
.code-inputs .main-input .input-me {
  min-height: 44px !important;
}
.code-inputs .main-input .main-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 36px;
  width: 100px;
  font-size: 13px;
}
html[lang="en"] .code-inputs .main-input .main-btn {
  right: 5px;
}
html[lang="ar"] .code-inputs .main-input .main-btn {
  left: 5px;
}
.code-inputs.lg .main-input .input-me {
  min-height: 48px !important;
}
.code-inputs.lg .main-input .main-btn {
  height: 48px;
}

.order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.order-item:last-child {
  margin-bottom: 0;
}
.order-item .sec-text {
  font-size: 16px;
  font-family: fontDemi;
}
@media screen and (max-width: 425px) {
  .order-item .sec-text {
    font-style: 15px;
  }
}
.order-item .price {
  font-family: fontDemi;
}

.filter-bar {
  position: fixed;
  top: 0;
  width: 380px;
  background-color: #fff;
  padding: 35px;
  height: 100%;
  z-index: 1040;
  transform: translateX(-105%);
  transition: all 0.7s cubic-bezier(0.55, -0.3, 0.265, 1.5);
  overflow: auto;
}
html[lang="en"] .filter-bar {
  left: 0;
}
html[lang="ar"] .filter-bar {
  right: 0;
}
html[lang="en"] .filter-bar {
  transform: translateX(-105%);
}
html[lang="ar"] .filter-bar {
  transform: translateX(105%);
}
.filter-bar.active {
  transform: translateX(0) !important;
}
@media screen and (max-width: 576px) {
  .filter-bar {
    width: 300px;
    padding: 35px 25px;
  }
}
.filter-bar::-webkit-scrollbar {
  width: 4px;
}
.filter-bar::-webkit-scrollbar-track {
  background: transparent;
}
.filter-bar::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: #505052;
}
.filter-bar .filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.filter-bar .filter-head .title {
  font-size: 18px;
  color: #202020;
  font-family: fontDemi;
}
.filter-bar .filter-head .close-filter {
  cursor: pointer;
  font-size: 18px;
  color: #202020;
}
.filter-bar .filter-coll-container {
  padding: 0 20px;
}
@media screen and (max-width: 576px) {
  .filter-bar .filter-coll-container {
    padding: 0;
  }
}
.filter-bar .filter-collapse {
  display: block;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d9d9d9;
}
.filter-bar .filter-collapse .filter-coll-open {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-family: fontDemi;
  color: #202020;
  cursor: pointer;
  margin-bottom: 8px;
}
.filter-bar .filter-collapse .filter-coll-open i {
  transition: all 0.3s ease;
}
.filter-bar .filter-collapse .filter-coll-content {
  padding: 12px 0;
}
.filter-bar .filter-collapse.active .filter-coll-open i {
  transform: rotateX(180deg);
}

.product-detailes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-detailes .product-head {
  font-size: 19px;
  font-family: fontBold;
}

.carsouel {
  height: 530px;
}
.carsouel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}

.oute-owl-product {
  display: flex;
  gap: 10px;
  flex-direction: row-reverse;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .oute-owl-product {
    flex-direction: column;
  }
}

.owl-product {
  border: 1px solid #eee;
  overflow: hidden;
}
.owl-product .owl-dots {
  display: none;
}

.owl-product .item {
  width: 100%;
  height: 530px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .owl-product .item {
    height: 350px;
  }
}

.owl-product img,
.navigation-img-wrapper > div img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: 100%;
  background: #fff;
  border-radius: 6px;
}

.navigation-img-wrapper {
  display: flex;
  gap: 10px;
  overflow: auto;
  flex-direction: column;
  flex-shrink: 0;
  max-height: 530px;
}
.navigation-img-wrapper > div {
  border: 1px solid transparent;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s linear 0s;
  width: 100px;
  height: 100px;
  overflow: hidden;
  min-height: 80px;
  flex-shrink: 0;
  padding: 3px;
  border-radius: 6px;
}
.navigation-img-wrapper > div.active {
  border-color: #202020;
  background-color: #fff;
}
@media screen and (max-width: 576px) {
  .navigation-img-wrapper > div {
    width: 100px;
    height: 90px;
  }
}
@media screen and (max-width: 576px) {
  .navigation-img-wrapper {
    flex-direction: row;
  }
}
.navigation-img-wrapper::-webkit-scrollbar {
  width: 6px;
}
.navigation-img-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.navigation-img-wrapper::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: transparent;
} /*# sourceMappingURL=main.css.map */

/*============================ Start story_modal ============================*/
.cu_pointer {
  cursor: pointer;
  }
  
  .story_modal .modal-content {
  overflow: hidden;
  padding: 0 !important;
  position: relative;
  border-radius: 15px;
  }
  .story_modal .modal-content .close-modal {
  position: absolute;
  top: 20px;
  background-color: transparent;
  color: #fff;
  z-index: 10;
  cursor: pointer;
  }
  html[lang=en] .story_modal .modal-content .close-modal {
  left: 20px;
  }
  html[lang=ar] .story_modal .modal-content .close-modal {
  right: 20px;
  }
  .story_modal .story_img, .story_modal .slider-wrapper video, .story_modal .slider-wrapper img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  }
  
  .story_modal .tempo-bar {
      background-color: #a26f2d !important;
      height: 5px !important;
      position: absolute;
        bottom: 0;
        right: 0;
  }
  
  .story_modal .slider-controls {
      position: absolute;
        bottom: 25px;
        left: 50%;
        transform:translateX(-50%);
         display:flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      z-index: 90;
  }
  
  .story_modal .slider-controls li {
      width:9px;
      height:9px;
      border-radius: 50%;
      background-color: #fff;
      cursor: pointer;
  }
  
  .story_modal .slider-controls li.active {
      background-color: #a26f2d;
  }
  .story_modal .story_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 45px 25px;
  color: #fff;
  }
  .story_modal .story_content .text {
  color: #fff;
  font-size: 15px;
  line-height: 2.3;
  text-align: center;
  font-family: fontReg;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding-inline-end: 15px;
  }
  
  .story_modal .story_content .text::-webkit-scrollbar {
  width: 4px;
  }
  .story_modal .story_content .text::-webkit-scrollbar-track {
  background: transparent;
  }
  .story_modal .story_content .text::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0.5);
  }
  .story_modal .story_content .title {
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  }
  .story_modal .owl-dots {
  background-color: transparent;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  }
  
  /*============================ End story_modal ============================*/