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

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

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

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

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

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

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

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

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

textarea {
  resize: none;
}

i {
  line-height: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* owl carousel*/
.container {
  padding: 0 30px;
}
@media screen and (max-width: 576px) {
  .container {
    padding: 0 12px;
  }
}

.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);
  }
}
.search {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
}
.search .search-select-container {
  width: 130px;
  height: 42px;
  position: relative;
}
@media screen and (max-width: 425px) {
  .search .search-select-container {
    width: 110px;
  }
}
.search .search-input {
  width: 280px;
  height: 42px;
  border: 1px solid #D5D5D5;
  transition: all 0.3s ease;
  padding: 0 12px;
  font-size: 14px;
  color: #161616;
}
@media screen and (max-width: 576px) {
  .search .search-input {
    width: 250px;
  }
}
@media screen and (max-width: 425px) {
  .search .search-input {
    width: 220px;
  }
}
@media screen and (max-width: 375px) {
  .search .search-input {
    width: 175px;
  }
}
html[lang=en] .search .search-input {
  border-radius: 0 45px 45px 0;
}
html[lang=ar] .search .search-input {
  border-radius: 45px 0 0 45px;
}
.search .search-input:focus {
  border-color: #1D71B8;
}
.search .search-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 48px;
  border: 1px solid #161616;
  background-color: #161616;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
  transition: all 0.3s ease;
}
html[lang=en] .search .search-btn {
  right: 0;
}
html[lang=ar] .search .search-btn {
  left: 0;
}
.search .search-btn img {
  max-width: 28px;
}
.search .search-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  padding: 0;
  font-size: 13px;
  color: #a7a4a4;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
html[lang=en] .search .search-icon {
  right: 12px;
}
html[lang=ar] .search .search-icon {
  left: 12px;
}
.search .search-icon:hover {
  color: #2D2E83;
}

.overlay-m {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
}
@media screen and (max-width: 992px) {
  .overlay-m {
    z-index: 888;
  }
}

.main-title {
  font-size: 18px;
  color: #161616;
  font-family: fontDemi;
}

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

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

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

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

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

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

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

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

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

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

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

.nav {
  gap: 12px;
}
@media screen and (max-width: 576px) {
  .nav {
    gap: 8px;
  }
}
.nav.nav-mb {
  margin-bottom: 0 !important;
}
.nav.border-m {
  border-bottom: 1px solid #D5D5D5;
}
.nav.nav-pills .nav-link {
  min-width: 120px;
  background-color: #F5F5F5;
  color: #707070;
  font-size: 14px;
  border-radius: 5px;
  font-family: fontMed;
  padding: 10px 15px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  .nav.nav-pills .nav-link {
    min-width: auto;
  }
}
@media screen and (max-width: 576px) {
  .nav.nav-pills .nav-link {
    font-size: 13px;
    padding: 10px 10px;
  }
}
.nav.nav-pills .nav-link.sm {
  min-width: 120px;
}
.nav.nav-pills .nav-link.active, .nav.nav-pills .nav-link:hover {
  background-color: #1D71B8;
  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 {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.steps .step-item {
  min-width: 145px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 576px) {
  .steps .step-item {
    min-width: 105px;
  }
}
@media screen and (max-width: 425px) {
  .steps .step-item {
    min-width: 95px;
  }
}
@media screen and (max-width: 375px) {
  .steps .step-item {
    min-width: 82px;
  }
}
.steps .step-item + .step-item:after {
  content: "";
  position: absolute;
  top: 9px;
  width: 100%;
  border: 1px dashed #1D71B8;
  z-index: -10;
}
html[lang=en] .steps .step-item + .step-item:after {
  left: 0;
}
html[lang=ar] .steps .step-item + .step-item:after {
  right: 0;
}
html[lang=en] .steps .step-item + .step-item:after {
  transform: translateX(-50%);
}
html[lang=ar] .steps .step-item + .step-item:after {
  transform: translateX(50%);
}
.steps .step-item .progress-count {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  background: #1D71B8;
}
.steps .step-item .progress-count:before {
  content: "";
  height: 5px;
  width: 10px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%) rotate(-45deg);
  transform-origin: center center;
}
.steps .step-item .progress-label {
  font-size: 14px;
  font-family: fontDemi;
  color: #202020;
  margin-top: 8px;
}
@media screen and (max-width: 576px) {
  .steps .step-item .progress-label {
    font-size: 13px;
  }
}
@media screen and (max-width: 425px) {
  .steps .step-item .progress-label {
    font-size: 12px;
  }
}
.steps .step-item.current-item ~ .step-item:after {
  border-color: #F5F5F5;
}
.steps .step-item.current-item ~ .step-item .progress-count {
  background-color: #fff;
  border: 1px solid #D5D5D5;
}
.steps .step-item.current-item ~ .step-item .progress-count:before {
  display: none;
}
.steps .step-item.current-item ~ .step-item .progress-label {
  color: #6c757d;
  font-family: fontMed;
}
.steps .step-item.current-item .progress-count {
  border: 3px solid #fff;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}
.steps .step-item.current-item .progress-count:before {
  display: none;
}

.login-section {
  background-color: #fff;
  min-height: calc(100vh - 94px);
}

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

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

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

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

.main-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 140px;
  background-color: #2D2E83;
  border: 1px solid #2D2E83;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  height: 44px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .main-btn {
    height: 45px;
    font-size: 15px;
  }
}
@media screen and (max-width: 425px) {
  .main-btn {
    width: 132px;
  }
}
.main-btn.red {
  background-color: #EB2222;
  color: #fff;
  border-color: #EB2222;
}
.main-btn.transparent-red {
  background-color: transparent;
  color: #EB2222;
  border-color: #EB2222;
}
.main-btn.transparent-red:hover {
  background-color: #EB2222;
  color: #fff;
}
.main-btn.dark {
  background-color: #161616;
  color: #fff;
  border-color: #161616;
  border-radius: 5px;
}
.main-btn.blue {
  background-color: #1D71B8;
  border-color: #1D71B8;
}
.main-btn.light {
  background-color: #f7f7f7;
  color: #1D71B8;
  border: none;
  height: 42px !important;
  font-size: 13px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 12px;
}
.main-btn.light:hover {
  background-color: #F7FAFC;
  color: blue2;
}
.main-btn.white {
  background-color: #fff;
  color: #1D71B8;
  border: none;
}
.main-btn.white:hover {
  background-color: #1D71B8;
  color: #fff;
}
.main-btn.transparent {
  background-color: #fff;
  color: #1D71B8;
  border-color: #1D71B8;
}
.main-btn.transparent:hover {
  background-color: #1D71B8;
  color: #fff;
}
.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: 170px;
  height: 50px;
}
@media screen and (max-width: 425px) {
  .main-btn.md {
    width: 155px;
    height: 48px;
  }
}
.main-btn.lg {
  width: 160px;
  padding: 0 25px;
  font-size: 16px;
  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;
    border-radius: 5px;
  }
}
@media screen and (max-width: 375px) {
  .main-btn.lg {
    width: 120px;
    height: 45px;
  }
}
.main-btn.xl {
  width: 200px;
  height: 50px;
  font-size: 16px;
  border-radius: 8px;
}
@media screen and (max-width: 576px) {
  .main-btn.xl {
    width: -moz-fit-content;
    width: fit-content;
    height: 48px;
    font-size: 16px;
    border-radius: 8px;
    padding: 0 25px;
  }
}
@media screen and (max-width: 425px) {
  .main-btn.xl {
    font-size: 15px;
    border-radius: 5px;
  }
}
.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;
}
.main-btn img {
  max-width: 14px;
  max-height: 18px;
}

.sm-btn {
  width: 42px;
  height: 42px;
  border-radius: 5px;
  border: 1px solid #1D71B8;
  color: #1D71B8;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 425px) {
  .sm-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}
.sm-btn .sm-btn-img {
  max-width: 18px;
  max-height: 18px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 425px) {
  .sm-btn .sm-btn-img {
    max-width: 16px;
    max-height: 16px;
  }
}
.sm-btn.sm {
  width: 37px;
  height: 37px;
}
.sm-btn.blue {
  background-color: #2D2E83;
  color: #fff;
}
.sm-btn.blue2 {
  background-color: #1D71B8;
  color: #fff;
}
.sm-btn.red {
  border-color: #EB2222;
  color: #EB2222;
}
.sm-btn.red:hover, .sm-btn.red.active {
  background-color: #EB2222;
  color: #fff;
}
.sm-btn.light {
  border-color: transparent;
  cursor: auto;
  background-color: #F7FAFC;
}
.sm-btn.light:hover, .sm-btn.light.active {
  background-color: #F7FAFC;
  color: #1D71B8;
}
.sm-btn.light:hover img, .sm-btn.light.active img {
  filter: unset;
}
.sm-btn.transparent {
  background-color: transparent;
  color: #1D71B8;
  cursor: auto;
}

.coupon-btn {
  width: 32px;
  height: 32px;
  background-color: #F7FAFC;
  cursor: pointer;
  border-radius: 4px;
  color: #1D71B8;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
}
.coupon-btn.blue {
  color: #2D2E83;
  background-color: #F0F0F6;
}
.coupon-btn.red {
  color: #EB2222;
  background-color: #FEEDED;
}
.coupon-btn i {
  font-size: 12px;
}

.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.lg {
    gap: 10px;
  }
}
.buttons-m .main-btn {
  flex-shrink: 0;
}

html[lang=en] .main-padding-right {
  padding-left: 270px;
}
html[lang=ar] .main-padding-right {
  padding-right: 270px;
}
@media screen and (max-width: 1200px) {
  html[lang=en] .main-padding-right {
    padding-left: 200px !important;
  }
  html[lang=ar] .main-padding-right {
    padding-right: 200px !important;
  }
}
@media screen and (max-width: 992px) {
  html[lang=en] .main-padding-right {
    padding-left: 0px !important;
  }
  html[lang=ar] .main-padding-right {
    padding-right: 0px !important;
  }
}

.c-blue {
  color: #1D71B8 !important;
}

.c-red {
  color: #EB2222 !important;
}

.c-black {
  color: #202020;
}

.c-ligth {
  color: #707070;
}

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

.px-6 {
  padding-right: 130px;
  padding-left: 130px;
}
@media screen and (max-width: 1200px) {
  .px-6 {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 992px) {
  .px-6 {
    padding-right: 20px;
    padding-left: 20px;
  }
}

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

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

.w-100 {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .w-md-100 {
    width: 100%;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.action-btn {
  font-size: 16px;
  color: #1D71B8;
  text-decoration: underline;
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
}
.action-btn.delete-city {
  color: #EB2222;
}

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

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

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

.main-card-title {
  font-size: 16px;
  font-family: fontDemi;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #353333;
  border-bottom: 4px solid #FAFAFA;
  margin-bottom: 0;
  flex-wrap: wrap;
  gap: 12px;
  height: 76px;
}
.main-card-title.lg {
  height: auto;
  padding: 20px;
}
@media screen and (max-width: 992px) {
  .main-card-title {
    padding: 15px 20px;
    height: auto;
  }
}
@media screen and (max-width: 576px) {
  .main-card-title {
    padding: 15px 12px !important;
    min-height: 58px;
  }
}
.main-card-title .main-btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 15px;
  height: 38px;
  border-radius: 4px;
  font-size: 14px;
  flex-shrink: 0;
}

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

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

.chart-padding {
  padding: 20px 30px;
}
@media screen and (max-width: 576px) {
  .chart-padding {
    padding: 20px 15px;
  }
}

.open-side {
  cursor: pointer;
  visibility: hidden;
  font-size: 20px;
  border-radius: 8px;
}
@media screen and (max-width: 992px) {
  .open-side {
    visibility: visible;
  }
}

.show-text {
  display: none;
}

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

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

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

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

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

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

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

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

.disabled {
  background-color: #F7FAFC !important;
  color: #1D71B8 !important;
  pointer-events: none;
  border: none;
}

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

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

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

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

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

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

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

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

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

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

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

.input-g {
  margin-bottom: 20px;
  display: block;
}
.input-g .main-label {
  margin-bottom: 10px;
  font-size: 16px;
  font-family: fontDemi;
  color: #161616;
  display: flex;
  align-items: center;
  gap: 10px;
}
.input-g .main-label .label-hint {
  color: #161616;
  font-family: fontMed;
  font-size: 15px;
}
@media screen and (max-width: 576px) {
  .input-g .main-label {
    font-size: 15px;
  }
}
.input-g .main-input {
  position: relative;
}
.input-g .main-input .input-me {
  width: 100%;
  min-height: 48px;
  border-radius: 5px;
  padding: 0 12px;
  outline: none;
  border: none;
  font-size: 14px;
  color: #161616;
  transition: all 0.3s ease;
  border: 1px solid #D5D5D5;
}
@media screen and (max-width: 425px) {
  .input-g .main-input .input-me {
    min-height: 44px;
  }
}
.input-g .main-input .input-me.photo-input {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #adabab;
  cursor: pointer;
}
.input-g .main-input .input-me::-moz-placeholder {
  font-size: 13px;
  color: #adabab;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: fontMed;
}
.input-g .main-input .input-me::placeholder {
  font-size: 13px;
  color: #adabab;
  transition: all 0.3s ease;
  font-family: fontMed;
}
@media screen and (max-width: 425px) {
  .input-g .main-input .input-me::-moz-placeholder {
    font-size: 12px;
  }
  .input-g .main-input .input-me::placeholder {
    font-size: 12px;
  }
}
.input-g .main-input .input-me:focus {
  border-color: #1D71B8;
}
.input-g .main-input .input-me:focus::-moz-placeholder {
  opacity: 0;
}
.input-g .main-input .input-me:focus::placeholder {
  opacity: 0;
}
.input-g .main-input .input-me.phone {
  width: calc(100% - 120px);
  padding: 0 12px !important;
}
.input-g .main-input .input-me.text-area {
  height: 145px;
  padding: 12px;
}
.input-g .main-input .input-me.text-area-lg {
  height: 298px;
  padding: 12px;
}
@media screen and (max-width: 992px) {
  .input-g .main-input .input-me.text-area-lg {
    height: 200px;
  }
}
@media screen and (max-width: 425px) {
  .input-g .main-input .input-me.text-area-lg {
    height: 160px;
  }
}
.input-g .main-input .input-me.text-area-sm {
  height: 90px;
  padding: 12px;
}
.input-g .main-input .input-me.text-area-sm2 {
  height: 70px;
  padding: 12px;
}
.input-g .main-input .main-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #b1b0b0;
  font-size: 14px;
  cursor: pointer;
  pointer-events: none;
}
html[lang=en] .input-g .main-input .main-icon {
  right: 14px;
}
html[lang=ar] .input-g .main-input .main-icon {
  left: 14px;
}
.input-g .main-input .main-icon.blue {
  color: #1D71B8;
}
.input-g .main-input .main-icon.search-ic {
  pointer-events: auto;
}

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

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

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

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

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

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

.select2-selection__clear {
  display: none;
}

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

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

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

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

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

.select2-results__options::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: #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;
}

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

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

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

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

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

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

.check-box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.check-box:last-child {
  margin-bottom: 0;
}
.check-box.form-check-m {
  gap: 6px;
  margin-bottom: 0px;
}
.check-box input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
}
.check-box .check {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid #D5D5D5;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
}
.check-box .check:hover {
  background-color: #F7FAFC;
}
.check-box.form-check-m .check {
  width: 22px;
  height: 22px;
  border-radius: 4px;
}
.check-box input:checked + .check {
  background-color: transparent;
  border-color: #1D71B8;
}
.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: #1D71B8;
}
.check-box .check-text {
  font-size: 15px;
  cursor: pointer;
}
.check-box.form-check-m input:checked + .check {
  background-color: #1D71B8;
}
.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: #1D71B8;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.check-box .check-anchor a:hover {
  color: #2D2E83;
}

.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: #1D71B8;
  cursor: pointer;
}
.radio-box .label-radio {
  font-size: 15px;
  color: #202020;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
}
.radio-box .label-radio .radio-img {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  -o-object-fit: cover;
     object-fit: cover;
}
.radio-box .label-radio.ca-auto {
  cursor: auto;
}
.radio-box .label-radio.ca-blue {
  color: #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: 8px;
  gap: 22px;
  color: #1D71B8;
  font-family: fontDemi;
  font-size: 14px;
}
.radio-box .bottom {
  font-size: 13px;
  color: #6c757d;
}

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

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

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

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

.user-img {
  position: relative;
  border-radius: 50%;
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 425px) {
  .user-img {
    border-radius: 50%;
    width: 90px;
    height: 90px;
  }
}
.user-img .profile-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
}
.user-img .profile-img::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 6px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.user-img .profile-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.user-img .user-camera {
  position: absolute;
  bottom: -6px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #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 {
  display: none;
}

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

.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: #EB2222;
  color: #fff;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
html[lang=en] .remove-img {
  right: -5px;
}
html[lang=ar] .remove-img {
  left: -5px;
}

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

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

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

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

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

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

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

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

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

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

.dropdown-menu {
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.68, -0.3, 0.265, 2.1);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 6px;
  min-width: 165px;
  transform: translate3d(0px, 0px, 0px);
  border: none;
}
html[lang=en] .dropdown-menu {
  inset: 65px auto auto 0;
}
html[lang=ar] .dropdown-menu {
  inset: 65px 0 auto auto;
}
.dropdown-menu.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0px, 0px, 0px) !important;
}
html[lang=en] .dropdown-menu.show {
  inset: 45px auto auto 0 !important;
}
html[lang=ar] .dropdown-menu.show {
  inset: 45px 0 auto auto !important;
}
.dropdown-menu.drop-lang {
  min-width: 120px;
}
html[lang=en] .dropdown-menu.drop-lang {
  inset: 50px 0 auto auto;
}
html[lang=ar] .dropdown-menu.drop-lang {
  inset: 50px auto auto 0;
}
.dropdown-menu.drop-lang.show {
  transform: translate3d(0px, 0px, 0px) !important;
}
html[lang=en] .dropdown-menu.drop-lang.show {
  inset: 30px 0 auto auto !important;
}
html[lang=ar] .dropdown-menu.drop-lang.show {
  inset: 30px auto auto 0 !important;
}
.dropdown-menu .lang-item {
  display: block;
  text-align: center;
  padding: 9px 0;
  font-size: 15px;
  color: #161616;
  border-bottom: 1px solid #D5D5D5;
  transition: all 0.3s ease;
  font-family: fontMed;
}
.dropdown-menu .lang-item:last-of-type {
  border-bottom: none;
}
.dropdown-menu .lang-item:hover {
  color: #707070;
}

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

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

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

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

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

.navbar-m {
  padding: 14px 0;
  box-shadow: 0 3px 16px rgba(133, 133, 133, 0.05);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 4;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .navbar-m {
    padding: 10px 0;
  }
}
.navbar-m .navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.navbar-m .navbar-content .title {
  font-size: 18px;
  color: #161616;
  font-family: fontDemi;
}
@media screen and (max-width: 576px) {
  .navbar-m .navbar-content .title {
    font-size: 16px;
    order: 2;
  }
}
@media screen and (max-width: 425px) {
  .navbar-m .navbar-content .title {
    font-size: 15px;
  }
}
.navbar-m .navbar-content .logo {
  width: 135px;
  height: 65px;
}
@media screen and (max-width: 992px) {
  .navbar-m .navbar-content .logo {
    width: 105px;
    height: 50px;
  }
}
@media screen and (max-width: 576px) {
  .navbar-m .navbar-content .logo {
    order: 1;
  }
}
@media screen and (max-width: 425px) {
  .navbar-m .navbar-content .logo {
    width: 90px;
    height: 40px;
  }
}
.navbar-m .navbar-content .left-sec {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 576px) {
  .navbar-m .navbar-content .left-sec {
    order: 3;
  }
}
.navbar-m .navbar-content .not-link {
  max-width: 20px;
  max-height: 20px;
}
.navbar-m .navbar-content .head-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #202020;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar-m .navbar-content .head-lang .lang {
  font-size: 14px;
}
.navbar-m .navbar-content .head-lang i {
  font-size: 11px;
}
.navbar-m .navbar-content .head-lang:hover {
  color: #1D71B8;
}

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

.nav-type {
  border-bottom: 2px solid #E7E7E7;
  width: 100%;
}

.nav-type .nav-link {
  color: gray;
  cursor: pointer;
  font-size: 15px;
}

.nav-type .nav-link.active {
  color: #ab7d63;
}

.auction-item {
  display: flex;
  gap: 20px;
  width: 100%;
  align-items: center;
  margin-bottom: 20px;
  background-color: white;
}

.auctions-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
  align-items: stretch;
}

.auction-item .card-top,
.auction-item .card-bottom {
  display: flex;
  gap: 5px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.auction-item .card-top p,
.auction-item .card-bottom p {
  font-size: 14px;
}

.auction-item .card-top p span,
.auction-item .card-bottom p span {
  color: black;
}

.auction-item .card-top {
  border-bottom: 1px solid #E7E7E7;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.auction-item .card-top .mazad-name {
  font-size: 16px;
  color: black;
  font-weight: 500;
}

.auction-item .card-bottom .auction-type {
  font-size: 14px;
  color: #ab7d63;
  background-color: rgba(171, 125, 99, 0.5);
  padding: 5px 20px;
  border-radius: 20px;
}

.auction-item .auction-img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
  object-fit: cover;
}

.auction-item:hover .auction-type,
.auction-item:hover .auction-type * {
  background-color: #a67855;
  color: #fff !important;
  transition: all 0.3s ease;
}

.result {
  padding: 15px;
  border-radius: 5px;
  margin-top: 10px;
}

.result p {
  text-align: center;
  font-size: 20px;
}

.result.success {
  background-color: rgba(171, 125, 99, 0.5);
  color: #ab7d63;
}

.result.fail {
  background-color: rgba(235, 34, 34, 0.5);
  color: #EB2222;
}

.auction-details img {
  width: 500px;
  height: 500px;
  margin: auto;
}

@media screen and (max-width: 576px) {
  .auction-details img {
    width: 100%;
    height: 100%;
  }
}
.auction-details .left {
  flex-grow: 1;
}

.auction-details .left .input {
  background-color: lightgray;
  padding: 13px;
  width: 100%;
  border-radius: 3px;
  font-size: 14px;
  color: gray;
}

.pay-deposit {
  background-color: #a67855;
  color: #fff !important;
  transition: all 0.3s ease;
  border: 1px solid #a67855;
}
.pay-deposit:hover {
  background-color: #fff !important;
  transition: all 0.3s ease;
  border: 1px solid #a67855;
  color: #a67855 !important;
}/*# sourceMappingURL=mazad.css.map */