/*********************************************************
  // 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 */
/* translate */
* {
  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: #279492;
}

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

input {
  font-size: 15px;
}
html[lang=en] input {
  direction: ltr;
}
html[lang=ar] input {
  direction: rtl;
}
input::-moz-placeholder {
  color: #279492;
  font-size: 13px;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
input::placeholder {
  color: #279492;
  font-size: 13px;
  transition: all 0.3s ease;
}
input:focus::-moz-placeholder {
  opacity: 0;
}
input:focus::placeholder {
  opacity: 0;
}

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

textarea {
  resize: none;
}

i {
  line-height: initial;
}

p {
  color: #606E7D;
  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: #279492;
}

.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;
  display: flex;
  align-items: center;
}

/* owl carousel*/
@media (min-width: 1720px) {
  .container {
    max-width: 1418px;
  }
}
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999999;
  background-color: white;
  overflow: hidden;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.loader-container img {
  max-width: 470px;
  max-height: 470px;
  -o-object-fit: cover;
     object-fit: cover;
}
@keyframes progress-bar {
  0% {
    left: -105px;
  }
  100% {
    left: 30px;
  }
}
.loader-container #loader {
  max-width: 140px;
  position: relative;
  margin: 0 auto;
}
.loader-container #loader #logo {
  width: 100px;
  margin: 0 auto;
  padding-bottom: 35px;
}
.loader-container #loader #logo img {
  max-width: 100%;
}
.loader-container #loader #progressbar {
  background-color: #f0f0f0;
  height: 3px;
  border-radius: 30px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  overflow: hidden;
  width: 110px;
}
.loader-container #loader #progressbar::before {
  width: 40px;
  position: relative;
  left: -100px;
  background-color: #279492;
  content: " ";
  display: block;
  height: 3px;
  border-radius: 30px;
  animation: 1.2s progress-bar 0.5s infinite alternate ease-in-out;
}

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

.bg-transparent {
  background-color: transparent;
}

@media screen and (max-width: 576px) {
  .w-xxs-100 {
    min-width: 170px !important;
  }
}
@media screen and (max-width: 425px) {
  .w-xxs-100 {
    min-width: 145px !important;
  }
}
@media screen and (max-width: 360px) {
  .w-xxs-100 {
    width: 100% !important;
  }
}

@media screen and (max-width: 576px) {
  .w-sm-100 {
    min-width: 220px !important;
  }
}

.shadow {
  box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.shadow-0 {
  box-shadow: none !important;
}

.main-shadow {
  box-shadow: 0 0 5px 0 rgba(39, 36, 36, 0.1);
}

.shadow-sm {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 992px) {
  .shadow-lg-0 {
    box-shadow: unset;
  }
}

@media screen and (max-width: 576px) {
  .shadow-sm-0 {
    box-shadow: unset;
  }
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 18px 15px;
}
@media screen and (max-width: 510px) {
  .grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 18px 15px;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px 20px;
}
@media screen and (max-width: 768px) {
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 24px 20px;
  }
}
@media screen and (max-width: 510px) {
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 18px 15px;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 36px 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(435px, 1fr));
  gap: 48px 40px;
}
@media screen and (max-width: 992px) {
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px 20px;
  }
}
@media screen and (max-width: 576px) {
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
    gap: 24px 20px;
  }
}
.grid-2.g-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px 20px;
}

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

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

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

html[lang=en] .pl-25 {
  padding-right: 25px !important;
}
html[lang=ar] .pl-25 {
  padding-left: 25px !important;
}

html[lang=en] .ml-25 {
  margin-right: 25px !important;
}
html[lang=ar] .ml-25 {
  margin-left: 25px !important;
}

@media screen and (min-width: 425px) {
  .mx-xs-0 {
    margin-left: unset !important;
    margin-right: unset !important;
  }
}

.owl-nav .owl-prev, .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff !important;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 24px !important;
}
@media screen and (max-width: 992px) {
  .owl-nav .owl-prev, .owl-nav .owl-next {
    display: none;
  }
}
.owl-nav .owl-prev {
  right: 25px;
}
.owl-nav .owl-next {
  left: 25px;
}

.owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
}
.owl-dots .owl-dot {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: rgba(39, 34, 101, 0.24) !important;
  transition: all 0.3s ease;
}
.owl-dots .owl-dot.active {
  background-color: #279492 !important;
}

.dropdown-m-container {
  position: relative;
}
.dropdown-m-container .dropdown-m {
  position: absolute;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 5px 0 rgba(39, 36, 36, 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: #279492;
}
.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: #060042;
  font-size: 15px;
  margin: 2px;
  transition: all 0.3s ease;
}
.dropdown-m-container .dropdown-m .drop-link:hover {
  color: #060042;
}
.dropdown-m-container .dropdown-m .drop-text {
  display: block;
  padding: 10px 10px;
  text-align: center;
  color: #060042;
  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;
}

/********************* Tabs *********************/
.nav-pills {
  border: none !important;
  justify-content: center;
  gap: 12px;
}
@media screen and (max-width: 425px) {
  .nav-pills {
    gap: 7px;
  }
}
.nav-pills .nav-link {
  transition: all 0.3s ease;
  background-color: #fff;
  color: #272424;
  font-size: 14px;
  border-radius: 5px;
  min-height: 44px;
  min-width: 130px;
}
.nav-pills .nav-link.active {
  background-color: #279492;
  color: #fff;
}

.tabs {
  display: flex;
  align-items: center;
  gap: 5px;
}
.tabs .tab {
  background-color: transparent;
  font-size: 15px;
  color: #272424;
  padding: 10px 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.tabs .tab:hover {
  color: #279492;
}
.tabs .tab.active {
  background-color: #279492;
  color: #fff;
}

/********************* 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 #279492;
  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 #F0F2F7;
}
.steps .step-item .progress-label {
  font-size: 15px;
  margin-top: 14px;
  color: #060042;
  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(39, 148, 146, 0.2);
  background-color: #279492;
  border: none;
}
.steps .step-item.active .progress-label {
  font-family: fontDemi;
  color: #272424;
}

/********************* breadcrumb *********************/
.breadcrumb-con {
  display: flex;
  align-items: center;
  gap: 4px;
}
.breadcrumb-con .breadcrumb-m {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: #279492;
}
.breadcrumb-con .breadcrumb-m.active {
  color: #279492;
}
.breadcrumb-con .breadcrumb-m i {
  font-size: 11px;
}

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

/********************* Titles *********************/
.big-title {
  font-size: 23px;
  color: #060042;
  font-family: fontDemi;
}
@media screen and (max-width: 576px) {
  .big-title {
    font-size: 20px;
  }
}
.big-title.sm {
  font-size: 17px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.section-title {
  color: #279492;
  font-size: 19px;
  font-family: fontDemi;
}
@media screen and (max-width: 425px) {
  .section-title {
    font-size: 17px;
  }
}

.card-title {
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
  font-family: fontDemi;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-title .icon {
  font-size: 18px;
  color: #279492;
}
.card-title .icon .img {
  max-width: 13px;
}

.card-padding {
  padding: 20px;
}

.card-px {
  padding: 12px 20px;
}

.main-link {
  font-size: 15px;
  cursor: pointer;
  color: #272424;
  text-decoration: underline;
}

.main-item {
  display: flex;
  gap: 5px;
  margin-bottom: 12px;
  min-height: 23px;
}
.main-item:last-child {
  margin-bottom: 0;
}
.main-item .item-img {
  max-width: 12px;
  max-height: 16px;
}
.main-item .item-text {
  font-size: 13px;
  color: #989898;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 425px) {
  .main-item .item-text {
    white-space: wrap;
    overflow: unset;
  }
}

.copy-item {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 45px;
  background-color: #EEEEEE;
  min-height: 34px;
}
html[lang=en] .copy-item {
  padding: 4px 4px 4px 12px;
}
html[lang=ar] .copy-item {
  padding: 4px 12px 4px 4px;
}
.copy-item.pd {
  padding: 4px 12px !important;
}
.copy-item .ic1 {
  width: 14px;
  height: 14px;
}
.copy-item .copy-num {
  font-size: 11px;
  color: #606E7D;
}
.copy-item .circle {
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #D9D9D9;
  cursor: pointer;
}
.copy-item .circle .ic2 {
  max-width: 16px;
  max-height: 16px;
}

.price-con {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.price {
  font-size: 17px;
  color: #279492;
  font-family: fontDemi;
}

.not-price {
  font-size: 17px;
  color: #EC2F2F;
  font-family: fontDemi;
  text-decoration: line-through;
}

/********************* Buttons *********************/
.up::before, .up::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  background-color: #fff;
  transition: 0.6s ease-in-out;
}
.up::before {
  top: -2em;
  left: -2em;
}
.up::after {
  left: calc(100% + 2em);
  top: calc(100% + 2em);
}
.up:hover {
  color: #279492;
}
.up:hover::before, .up:hover::after {
  height: 450px;
  width: 450px;
}
.up:active {
  transform: scale(0.9);
}

.bell:hover .ic {
  animation: bellRing 0.9s both;
}

/* bell ringing animation keyframes*/
@keyframes bellRing {
  0%, 100% {
    transform-origin: top;
  }
  15% {
    transform: rotateZ(10deg);
  }
  30% {
    transform: rotateZ(-10deg);
  }
  45% {
    transform: rotateZ(5deg);
  }
  60% {
    transform: rotateZ(-5deg);
  }
  75% {
    transform: rotateZ(2deg);
  }
}
.button:active {
  transform: scale(0.8);
}

.main-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  min-width: 160px;
  background-color: #279492;
  border: 1px solid #279492;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  height: 44px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  padding: 10px 12px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 576px) {
  .main-btn {
    height: 45px;
    font-size: 15px;
  }
}
@media screen and (max-width: 576px) {
  .main-btn {
    min-width: 132px;
  }
}
.main-btn.light {
  background-color: #F0F0F4;
  color: #279492;
  border-color: #F0F0F4;
}
.main-btn.red {
  background-color: #EC2F2F;
  color: #fff;
  border-color: #EC2F2F;
}
.main-btn.white {
  background-color: #fff;
  color: #272424;
  border-color: #272424;
}
.main-btn.white:hover {
  background-color: #272424;
  color: #fff;
}
.main-btn.transparent {
  background-color: #fff;
  color: #272424;
  border-color: #279492;
}
.main-btn.transparent:hover {
  background-color: #279492;
  color: #fff;
}
.main-btn.sm {
  min-width: 120px;
  font-size: 14px;
  height: 44px;
}
.main-btn.xs {
  width: 80px;
  font-size: 13px;
  height: 32px;
}
.main-btn.md {
  min-width: 190px;
  height: 46px;
  font-size: 16px;
}
.main-btn.lg {
  width: 210px;
  font-size: 16px;
  height: 46px;
}
@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 .ic {
  max-width: 15px;
  max-height: 13px;
}

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

.sm-btn {
  background-color: #3DB9B4;
  font-size: 15px;
  border: none;
  outline: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sm-btn .ic {
  max-width: 15px;
  max-height: 15px;
}

.call-btn {
  padding: 7px 15px;
  background-color: #F8F8F8;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.call-btn .ic {
  max-width: 18px;
  max-height: 18px;
  font-size: 13px;
  color: #FFB72B;
}
.call-btn .text {
  font-size: 14px;
  color: #272424;
}

.search-container {
  display: flex;
  /*align-items: center;*/
  gap: 10px;
}
.search-container .main-input {
  flex-grow: 1;
}
.search-container .main-input .input-me {
  border: none;
  border-radius: 9px;
  min-height: 48px !important;
  margin-bottom:20px;
}
.search-container .main-input .input-me:focus {
  background-color: #fff;
}

.filter-btn {
  width: 48px;
  height: 48px;
  border-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.filter-btn .ic {
  max-width: 22px;
  max-height: 17px;
}

/********************* Colors *********************/
.c-black {
  color: #272424 !important;
}

.c-white {
  color: #fff !important;
}

.c-black2 {
  color: #000;
}

.c-main {
  color: #279492 !important;
}

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

.bg-main {
  background-color: #279492;
}

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

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

.bg-smain {
  background-color: #d8e8ef;
}

.c-yellow {
  color: #ffce2b;
}

.c-text {
  color: #8D8D8D;
}

.c-text2 {
  color: #848688;
}

.c-dark {
  color: #434343;
}

/********************* Classes *********************/
.bb {
  border-bottom: 1px solid rgba(39, 36, 36, 0.1);
}

.bl {
  border-left: 1px solid rgba(39, 36, 36, 0.1);
}

.w-100 {
  width: 100%;
}

.w-space-normal {
  white-space: normal !important;
}

.cu-pointer {
  cursor: pointer;
}

.not-pointer {
  cursor: auto !important;
}

.form-style {
  background-color: #fff;
  border-radius: 20px;
}

.form-padding {
  padding: 40px 35px;
}
@media screen and (max-width: 425px) {
  .form-padding {
    padding: 30px 20px;
  }
}

.form-head {
  font-size: 15px;
  color: #279492;
  margin-bottom: 10px;
  text-align: center;
  font-family: fontDemi;
}

.form-info {
  font-size: 15px;
  color: #272424;
  margin-bottom: 25px;
  text-align: center;
}

.form-pass {
  text-align: end;
}
.form-pass .link {
  color: #272424;
  font-size: 15px;
}

.info {
  font-size: 14px;
  line-height: 1.7;
}

.main-bb {
  border-bottom: 1px solid rgba(39, 36, 36, 0.2) !important;
}

.lh-base {
  line-height: 1.7 !important;
}

.lh-5 {
  line-height: 1.5 !important;
}

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

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

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

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

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

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

.side-user-open {
  max-width: 34px;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 992px) {
  .side-user-open {
    display: block;
  }
}

.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: #EC2F2F;
  font-size: 12px;
  padding: 0;
}
html[lang=en] .remove-append {
  right: -7px;
}
html[lang=ar] .remove-append {
  left: -7px;
}

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

.main-border-b {
  border-bottom: 1px solid #279492;
}

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

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

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

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

.sec-pt {
  padding-top: 30px;
}

.sec-pb {
  padding-bottom: 30px;
}

.rounded-3 {
  border-radius: 0.6rem !important;
}

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

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

.name-text {
  font-size: 13px;
  color: #8A8A8A;
  font-family: fontReg;
}

.main-img {
  border-radius: 50%;
  width: 52px;
  height: 52px;
  border: 3px solid #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.main-img.lg {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

.main-imgs {
  display: flex;
  align-items: center;
}
html[lang=en] .main-imgs .main-img:not(:last-child) {
  margin-right: -8px;
}
html[lang=ar] .main-imgs .main-img:not(:last-child) {
  margin-left: -8px;
}

.desc {
  font-size: 14px;
  color: #272424;
  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;
}
.desc.lg {
  font-size: 18px;
  line-height: 1.7;
}
@media screen and (max-width: 425px) {
  .desc.lg {
    font-size: 16px;
  }
}

.filter-tabs {
  display: flex;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #060042;
}
@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: #060042;
  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: #272424;
  border: 1px solid #272424;
  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: #060042;
  border-color: #060042;
}
@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;
  }
}

.height-full {
  height: 100%;
}

.stars {
  display: flex;
  align-items: center;
  gap: 4px;
}
.stars .star {
  font-size: 17px;
  color: #f7f7ff;
}
.stars.lg {
  gap: 5px;
}
.stars.lg .star {
  font-size: 19px;
}

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

.main-label {
  margin-bottom: 12px;
  font-size: 15px;
  color: #272424;
  display: flex;
  align-items: center;
  gap: 5px;
}
.main-label .hint {
  color: #060042;
  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: 12px;
  padding: 0 12px;
  outline: none;
  border: none;
  font-size: 14px;
  color: #060042;
  transition: all 0.3s ease;
  border: 1px solid #E5E5E5;
  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: 14px;
  color: #272424;
  cursor: pointer;
}
.main-input .input-me::-moz-placeholder {
  font-size: 13px;
  color: #279492;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-input .input-me::placeholder {
  font-size: 13px;
  color: #279492;
  transition: all 0.3s ease;
}
.main-input .input-me:focus {
  background-color: #f7f7ff;
}
.main-input .input-me:focus::-moz-placeholder {
  opacity: 0;
}
.main-input .input-me:focus::placeholder {
  opacity: 0;
}
.main-input .input-me.text-area {
  height: 145px;
  padding: 12px;
}
.main-input .input-me.text-area.sm {
  height: 90px;
}
.main-input .input-me.text-area.lg {
  height: 230px;
}
.main-input .input-me.form {
  background-color: #F9F9F9;
  border: none;
  border-radius: 10px;
}
.main-input .main-icon {
  position: absolute;
  top: 23px;
  transform: translateY(-50%);
  color: #3BAEAA;
  font-size: 15px;
  cursor: pointer;
  pointer-events: none;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  max-width: 18px;
}
html[lang=en] .main-input .main-icon {
  right: 14px;
}
html[lang=ar] .main-input .main-icon {
  left: 14px;
}
.main-input .main-icon.ic {
  max-width: 12px;
  cursor: pointer;
}
.main-input .main-icon.search-ic {
  pointer-events: auto;
}
.main-input .main-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-210deg);
  width: 30px;
  height: 2px;
  border-radius: 10px;
  background-color: #279492;
  opacity: 0;
  transition: all 0.3s ease;
}
.main-input .main-icon.show::after {
  opacity: 1;
}
.main-input .sec-icon {
  position: absolute;
  top: 0;
  background-color: #279492;
  font-size: 15px;
  border: none;
  outline: none;
  width: 50px;
  height: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}
html[lang=en] .main-input .sec-icon {
  right: 0;
}
html[lang=ar] .main-input .sec-icon {
  left: 0;
}

/********************* 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 {
  cursor: pointer;
  min-height: 48px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  outline: none;
  font-size: 13px;
  color: #060042;
  border: 1px solid #E5E5E5;
}
@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 {
    min-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: #279492;
  font-size: 14px;
  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: #279492;
  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;
}
.select.lg ~ .select2 .select2-selection--single, .select.lg ~ .select2 .select2-selection--multiple, .select-multi.lg ~ .select2 .select2-selection--single, .select-multi.lg ~ .select2 .select2-selection--multiple, .select-color.lg ~ .select2 .select2-selection--single, .select-color.lg ~ .select2 .select2-selection--multiple {
  min-width: 95px;
}

.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;
  border-radius: 8px !important;
  box-shadow: 0 0 5px 0 rgba(39, 36, 36, 0.1);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #F0F2F7;
  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: #060042;
  font-size: 14px;
  padding: 0 !important;
  margin: 0 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  border-radius: 50% !important;
  width: 14px !important;
  height: 14px !important;
  padding: 0 !important;
  margin: 0 !important;
  background-color: #279492 !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__option {
  text-align: center;
  padding: 12px;
  color: #272424;
  font-size: 15px;
  border-bottom: 1px solid rgba(39, 148, 146, 0.3);
}
.select2-results__option:last-child {
  border-bottom: none;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: transparent;
  color: #279492;
  font-size: 15px;
  transition: all 0.3s ease;
}
.select2-container--default .select2-results__option--selected {
  background-color: transparent;
}
.select2-container--default .select2-results__option--disabled {
  color: #272424;
  font-size: 15px;
  opacity: 0.8;
}

.select2-results__options {
  max-height: 220px !important;
}

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

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

.select2-results__options::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: rgba(39, 148, 146, 0.5);
}

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

.flatpickr-day.selected {
  background-color: #279492;
  border-color: #279492;
}
.flatpickr-day.selected:hover {
  background-color: #279492;
  border-color: #279492;
}

.check-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.check-item .check-box {
  margin-bottom: 0;
}

.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;
  background-color: #DCDBDB;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
}
.check-box .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: 12px;
  color: #fff;
  opacity: 0;
  transition: all 0.3s ease;
}
.check-box .check:hover {
  background-color: #606E7D;
}
.check-box.form-check-m .check {
  width: 22px;
  height: 22px;
  border-radius: 4px;
}
.check-box input:checked + .check {
  background-color: #279492;
  border-color: #279492;
}
.check-box input:checked + .check::after {
  opacity: 1;
}
.check-box .check-text {
  font-size: 16px;
  cursor: pointer;
  color: #434343;
}
.check-box.form-check-m input:checked + .check {
  background-color: #060042;
}
.check-box.form-check-m input:checked + .check::after {
  color: #fff;
}
.check-box .check-anchor {
  cursor: pointer;
  color: #272424;
  font-size: 15px;
  line-height: 1.6;
}
.check-box .check-anchor a {
  color: #272424;
  text-decoration: underline;
  transition: all 0.3s ease;
  font-family: fontDemi;
}
.check-box .check-anchor a:hover {
  color: #060042;
}

.radio-box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.radio-box:last-child {
  margin-bottom: 0;
}
.radio-box .input-radio {
  width: 18px;
  height: 18px;
  accent-color: #7a8c7b;
  cursor: pointer;
  transition: all 0.3s ease;
}
.radio-box .label-radio {
  font-size: 16px;
  color: #272424;
  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.radio-imgs {
  align-items: center;
  gap: 6px;
}
.radio-box.radio-imgs .label-radio {
  font-size: 14px;
}

.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: #272424;
}
@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: 80px;
    height: 80px;
  }
}
.user-img .profile-img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 3px solid #fff;
  outline: 1px solid #279492;
}
.user-img .profile-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.user-img .user-camera {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #279492;
  border: 1px solid #fff;
  outline: 1px solid #279492;
}
html[lang=en] .user-img .user-camera {
  right: -12px;
}
html[lang=ar] .user-img .user-camera {
  left: -12px;
}
.user-img .user-camera img {
  max-width: 14px;
  max-height: 15px;
}

.hidden-input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}

.file-con {
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #060042;
  padding: 8px 12px;
  font-size: 14px;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  background-color: #F0F2F7;
  position: relative;
}
.file-con .close {
  color: #272424;
}

.hidden-img {
  position: relative;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  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: 15px;
  color: #EC2F2F;
  color: #fff;
  background-color: transparent;
  font-size: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
html[lang=en] .remove-img {
  right: 15px;
}
html[lang=ar] .remove-img {
  left: 15px;
}
.remove-img img {
  width: 24px;
  height: 24px;
}

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

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

.edit-pass {
  font-size: 16px;
  color: #279492;
  position: absolute;
  top: 14px;
  cursor: pointer;
  text-decoration: underline;
}
html[lang=en] .edit-pass {
  right: 14px;
}
html[lang=ar] .edit-pass {
  left: 14px;
}
@media screen and (max-width: 576px) {
  .edit-pass {
    position: unset;
    margin: 15px;
    display: block;
  }
}

/********************* Code Modal *********************/
.code-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;

}
html[lang="en"] .code-container {
    flex-direction:row;
}
.code-container .code {
  border-radius: 10px;
  font-size: 15px;
  height: 54px;
  width: 60px;
  border: 1px solid #279492;
  margin: 2%;
  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: #279492;
  border-color: #279492;
  color: #fff;
}

/********************* 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: #F0F2F7;
}

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

.modal-dialog {
  min-width: 560px;
}
.modal-dialog.lg {
  min-width: 640px;
}
.modal-dialog.lg .modal-content {
  border-radius: 12px;
  padding: 40px 90px 45px;
}
.modal-dialog.lg .modal-content .modal-body {
  padding: 0;
}
@media screen and (max-width: 992px) {
  .modal-dialog.lg .modal-content {
    padding: 40px 50px;
  }
}
@media screen and (max-width: 576px) {
  .modal-dialog.lg .modal-content {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 375px) {
  .modal-dialog.lg .modal-content {
    padding: 40px 15px;
  }
}
@media (max-width: 768px) {
  .modal-dialog {
    margin: auto;
    min-width: calc(100% - 20px) !important;
  }
}
.modal-dialog .close-btn {
  position: absolute;
  top: 15px;
  background-color: transparent;
  padding: 0;
  line-height: 1;
  color: #060042;
  font-size: 24px;
  cursor: pointer;
}
html[lang=en] .modal-dialog .close-btn {
  right: 18px;
}
html[lang=ar] .modal-dialog .close-btn {
  left: 18px;
}
.modal-dialog .print-modal {
  background-color: transparent;
  font-size: 17px;
  color: #272424;
  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: #272424;
  padding: 0;
}
.modal-dialog .head-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-dialog .head-btns .close-modal {
  color: #272424;
}
.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: none;
  margin-bottom: 25px;
  position: relative;
  flex: 1 1 auto;
  padding: 0px 20px 0;
  width: 100%;
}
.modal-dialog .modal-content .modal-header .modal-title {
  font-size: 17px;
  font-family: fontDemi;
  color: #272424;
  margin-bottom: 0;
}
.modal-dialog .modal-content .modal-header .modal-img {
  max-width: 90px;
  max-height: 110px;
  margin: auto;
}
.modal-dialog .modal-content .modal-header .modal-img.lg {
  width: 190px;
  height: 85px;
}
@media screen and (max-width: 576px) {
  .modal-dialog .modal-content .modal-header .modal-img {
    max-width: 65px;
    max-height: 95px;
  }
}
.modal-dialog .modal-content .modal-body {
  width: 100%;
  padding: 0 80px;
}
.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-title {
  font-size: 16px;
  color: #000;
  text-align: center;
  font-family: fontDemi;
  margin-bottom: 18px;
}
.modal-dialog .modal-content .modal-body .modal-text {
  font-size: 15px;
  color: #000;
  text-align: center;
  font-family: fontDemi;
  margin-bottom: 20px;
}
.modal-dialog .modal-content .modal-body .items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.modal-dialog .modal-content .modal-body .items .modal-item {
  background-color: transparent;
  width: 100%;
  border: 1px solid #279492;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  height: 50px;
  padding: 0px 12px;
}
.modal-dialog .modal-content .modal-body .items .modal-item .img {
  max-width: 18px;
  max-height: 18px;
}
.modal-dialog .modal-content .modal-body .items .modal-item .text {
  font-size: 15px;
  color: #279492;
}
.modal-dialog .modal-content .modal-body .items .modal-item .input-modal {
  width: 100%;
  height: 100%;
}
.modal-dialog .modal-content .modal-body .items .modal-item .input-modal::-moz-placeholder {
  font-family: fontReg;
}
.modal-dialog .modal-content .modal-body .items .modal-item .input-modal::placeholder {
  font-family: fontReg;
}
.modal-dialog .modal-content .modal-body .modal-img-body {
  width: 180px;
  height: 160px;
  display: block;
}
.modal-dialog .modal-content .modal-footer {
  margin-top: 20px;
  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 * {
  margin: 0;
}
.modal-dialog .modal-content .modal-footer .main-btn {
  margin: 0;
  min-width: 190px;
}
.modal-dialog .modal-content .modal-footer .social-ic .ic {
  max-width: 45px;
  max-height: 45px;
}
.modal-dialog .modal-content .login-btn {
  min-height: 50px;
  border-radius: 10px;
}

.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 #272424;
  color: #272424;
  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: #272424;
  color: #fff;
}
.faq-collapse.active .faq-open i {
  transform: rotateX(180deg);
}
.faq-collapse .faq-content {
  padding: 15px 20px;
  color: #272424;
  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 0 5px 0 rgba(39, 36, 36, 0.1);
  padding: 10px 8px;
  border-radius: 15px;
  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;
}
html[lang=en] .dropdown-menu.left {
  inset: 50px 0% auto auto;
}
html[lang=ar] .dropdown-menu.left {
  inset: 50px auto auto 0%;
}
html[lang=en] .dropdown-menu.left.show {
  inset: 28px 0% auto auto !important;
}
html[lang=ar] .dropdown-menu.left.show {
  inset: 28px auto auto 0% !important;
}
.dropdown-menu.drop-lang {
  min-width: 120px;
}
.dropdown-menu.drop-lang .lang-item {
  display: block;
  padding: 8px;
  font-size: 16px;
  color: #272424;
  transition: all 0.3s ease;
  border-radius: 5px;
}
.dropdown-menu.drop-lang .lang-item:hover {
  color: #060042;
  background-color: #FAFAFA;
}
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;
}
.dropdown-menu .drop-item {
  display: block;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  color: #272424;
  width: 100%;
  transition: all 0.3s ease;
}
.dropdown-menu .drop-item:hover {
  color: #279492;
}
.dropdown-menu.lg {
  min-width: 160px !important;
}
.dropdown-menu.xl {
  min-width: 190px !important;
}

.dropdown-toggle {
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 5px;
}
.dropdown-toggle.border-drop {
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 6px;
  height: 44px;
}
.dropdown-toggle .drop-text {
  font-size: 14px;
  color: #fff;
}
.dropdown-toggle .drop-ic {
  max-width: 32px;
  max-height: 18px;
  font-size: 14px;
  color: #fff;
}
.dropdown-toggle .drop-ic2 {
  max-width: 10px;
  max-height: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.profile-drop .profile-img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.profile-drop .profile-name {
  font-size: 15px;
}
@media screen and (max-width: 425px) {
  .profile-drop .profile-name {
    display: none;
  }
}

.flag-item {
  display: flex !important;
  align-items: center;
  gap: 5px;
}
.flag-item .drop-flag {
  max-width: 22px;
  max-height: 18px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
}
.flag-item .profile-ic {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  border: 1px solid #F3F3F3;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.flag-item .profile-ic .ic {
  max-width: 16px;
  max-height: 16px;
}
.flag-item .profile-ic.red {
  background-color: #EC2F2F;
  border-color: #EC2F2F;
}
.flag-item .flag-text {
  font-size: 14px;
  color: #272424;
  transition: all 0.3s ease;
}
.flag-item:hover .flag-text, .flag-item.active .flag-text {
  color: #279492;
}

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

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

.pagination-con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.pagination-con .res-con {
  font-size: 15px;
  color: #272424;
}
@media screen and (max-width: 425px) {
  .pagination-con {
    flex-direction: column;
  }
}

.pagination {
  gap: 5px;
  direction: ltr;
}
@media screen and (max-width: 576px) {
  .pagination {
    gap: 2px;
  }
}
.pagination .page-item .page-link {
  border: none;
  color: #279492;
  margin: 0 !important;
  padding: 0;
  font-size: 14px;
  height: 100%;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #F3F3F3;
  background-color: #fff;
}
@media screen and (max-width: 576px) {
  .pagination .page-item .page-link {
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
}
.pagination .page-item .page-link.ic {
  background-color: #F3F3F3;
  color: #279492;
  font-size: 13px;
}
.pagination .page-item .page-link.dots {
  background-color: transparent !important;
  border-color: transparent !important;
  color: #279492 !important;
}
.pagination .page-item .page-link.active {
  color: #fff;
  background-color: #279492;
}
.pagination .page-item .page-link:hover, .pagination .page-item .page-link:focus {
  background-color: #279492;
  color: #fff;
}
.pagination .page-item .page-link:hover .ic, .pagination .page-item .page-link:focus .ic {
  color: #fff;
  border-color: #fff;
}
.pagination .page-item .page-link:focus {
  box-shadow: none;
}
html[lang=en] .pagination .page-item:last-child .page-link {
  border-right: 0;
}
html[lang=ar] .pagination .page-item:last-child .page-link {
  border-left: 0;
}

.flatpickr-calendar {
  margin: auto;
  box-shadow: none;
  border: 1px solid #E7E6E4;
  border-radius: 12px;
  width: 420px;
}
@media screen and (max-width: 576px) {
  .flatpickr-calendar {
    width: 350px;
  }
}
@media screen and (max-width: 375px) {
  .flatpickr-calendar {
    width: 280px;
  }
}
.flatpickr-calendar .flatpickr-innerContainer {
  display: block;
}
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer {
  width: calc(100% - 5px);
}
@media screen and (max-width: 375px) {
  .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer {
    width: calc(100% - 5px);
  }
}
.flatpickr-calendar .flatpickr-days {
  width: 100%;
}
.flatpickr-calendar .dayContainer {
  min-width: 100%;
  height: 310px;
}
@media screen and (max-width: 576px) {
  .flatpickr-calendar .dayContainer {
    height: 335px;
  }
}
.flatpickr-calendar .flatpickr-day {
  margin: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  max-width: 48px;
  line-height: initial;
}
@media screen and (max-width: 576px) {
  .flatpickr-calendar .flatpickr-day {
    border-radius: 50%;
    width: 42px;
    height: 42px;
    max-width: 42px;
  }
}
.flatpickr-calendar .flatpickr-disabled, .flatpickr-calendar .flatpickr-disabled:hover {
  background-color: #f2f2f3;
  color: #1a1a1b;
}

.number-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid #F2F2F2;
  width: 180px;
  height: 48px;
  padding: 15px;
}
.number-input input {
  color: #272424;
  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: 14px;
  cursor: pointer;
  color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.number-input .btn-num.plus {
  background-color: #279492;
}
.number-input .btn-num.minus {
  background-color: #EC2F2F;
}

.page-header {
  padding: 12px 0;
  background-color: #279492;
}
.page-header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 375px) {
  .page-header .header-content .buttons {
    gap: 8px 5px;
  }
}

.page-navbar {
  padding: 10px 0;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 888;
  background-color: #fff;
  transition: all 0.3s ease;
}
@media screen and (max-width: 992px) {
  .page-navbar {
    position: unset;
    padding: 12px 0;
  }
}
.page-navbar .navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-navbar .navbar-content .logo .logo-img {
  max-width: 85px;
  max-height: 90px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 576px) {
  .page-navbar .navbar-content .logo .logo-img {
    max-width: 65px;
    max-height: 80px;
  }
}
.page-navbar .navbar-content .links {
  display: flex;
  align-items: center;
  gap: 45px;
  transition: all 0.8s cubic-bezier(0.68, -0.3, 0.265, 1.3);
}
@media screen and (max-width: 1200px) {
  .page-navbar .navbar-content .links {
    gap: 35px;
  }
}
@media screen and (max-width: 992px) {
  .page-navbar .navbar-content .links {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 280px;
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
    box-shadow: 0 3px 16px rgba(133, 133, 133, 0.05);
    z-index: 2000;
    padding: 30px 20px;
    gap: 8px;
    overflow-y: auto;
    overflow-x: clip;
  }
  html[lang=en] .page-navbar .navbar-content .links {
    left: 0;
  }
  html[lang=ar] .page-navbar .navbar-content .links {
    right: 0;
  }
  html[lang=en] .page-navbar .navbar-content .links {
    transform: translateX(-150%);
  }
  html[lang=ar] .page-navbar .navbar-content .links {
    transform: translateX(150%);
  }
  .page-navbar .navbar-content .links.active {
    transform: translateX(0) !important;
  }
  .page-navbar .navbar-content .links::-webkit-scrollbar {
    width: 5px;
  }
  .page-navbar .navbar-content .links::-webkit-scrollbar-track {
    background: transparent;
  }
  .page-navbar .navbar-content .links::-webkit-scrollbar-thumb {
    border-radius: 25px;
    background-color: #279492;
  }
}
.page-navbar .navbar-content .links .link {
  color: #272424;
  font-size: 16px;
}
@media screen and (max-width: 992px) {
  .page-navbar .navbar-content .links .link {
    padding: 12px;
    border-radius: 5px;
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }
  .page-navbar .navbar-content .links .link::before {
    position: absolute;
    content: "";
    top: 0;
    width: 0px;
    height: 100%;
    background-color: #f9f9f9;
    transition: all 0.4s ease;
    z-index: -1;
  }
  html[lang=en] .page-navbar .navbar-content .links .link::before {
    left: 0;
  }
  html[lang=ar] .page-navbar .navbar-content .links .link::before {
    right: 0;
  }
  .page-navbar .navbar-content .links .link::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 50%;
    background-color: #279492;
    border-radius: 8px;
    transition: all 0.4s ease;
    z-index: 1;
  }
  html[lang=en] .page-navbar .navbar-content .links .link::after {
    left: 0;
  }
  html[lang=ar] .page-navbar .navbar-content .links .link::after {
    right: 0;
  }
  .page-navbar .navbar-content .links .link:hover, .page-navbar .navbar-content .links .link.active {
    color: #279492 !important;
    background-color: transparent !important;
  }
  .page-navbar .navbar-content .links .link:hover::before, .page-navbar .navbar-content .links .link.active::before {
    width: 100%;
  }
  .page-navbar .navbar-content .links .link:hover::after, .page-navbar .navbar-content .links .link.active::after {
    height: 98%;
  }
  html[lang=en] .page-navbar .navbar-content .links .link:hover::after, html[lang=en] .page-navbar .navbar-content .links .link.active::after {
    left: 99%;
  }
  html[lang=ar] .page-navbar .navbar-content .links .link:hover::after, html[lang=ar] .page-navbar .navbar-content .links .link.active::after {
    right: 99%;
  }
}
.page-navbar .navbar-content .links .link.active, .page-navbar .navbar-content .links .link:hover {
  color: #279492;
}
.page-navbar .navbar-content .links .logo {
  display: none;
  max-width: 80px;
  max-height: 90px;
}
.page-navbar .navbar-content .links .logo img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .page-navbar .navbar-content .links .logo {
    display: block;
    margin: 0 auto 25px;
  }
}
.page-navbar .navbar-content .nav-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .page-navbar .navbar-content .nav-icons {
    gap: 8px;
  }
}
@media screen and (max-width: 425px) {
  .page-navbar .navbar-content .nav-icons {
    gap: 8px;
  }
}
.page-navbar .navbar-content .nav-icons .nav-ic {
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #dbeded;
  cursor: pointer;
  position: relative;
}

.page-navbar .navbar-content .count {
    position: absolute;
    top: -5px;
    border-radius: 50%;
  width: 19px;
  height: 19px;
    display:flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #fff;
    background-color: #EC2F2F;
  border: 1px solid #fff;
    padding: 4px;
  }
  
  html[lang=en] .page-navbar .navbar-content .count {
  left: -4px;
}
html[lang=ar] .page-navbar .navbar-content .count {
  right: -4px;
}

/*.page-navbar .navbar-content .nav-icons .nav-ic::after {*/
/*    content: attr(data-attr);*/
/*  position: absolute;*/
/*  border-radius: 50%;*/
/*  width: 17px;*/
/*  height: 16px;*/
/*  top: -5px;*/
/*  background-color: #EC2F2F;*/
/*  border: 1px solid #fff;*/
/*}*/
/*.page-navbar .navbar-content .nav-icons .nav-ic.bell::after {*/
/*  content: attr(data-attr);*/
/*  position: absolute;*/
/*  border-radius: 50%;*/
/*  width: 20px;*/
/*  height: 20px;*/
/*  top: -5px;*/
/*  background-color: #EC2F2F;*/
/*  border: 1px solid #fff;*/
/*}*/
html[lang=en] .page-navbar .navbar-content .nav-icons .nav-ic::after {
  left: -2px;
}
html[lang=ar] .page-navbar .navbar-content .nav-icons .nav-ic::after {
  right: -2px;
}
.page-navbar .navbar-content .nav-icons .nav-ic .ic {
  max-width: 20px;
  max-height: 20px;
  font-size: 18px;
  color: #279492;
}
.page-navbar .navbar-content .nav-icons .side-open {
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .page-navbar .navbar-content .nav-icons .side-open {
    display: flex;
  }
}
.page-navbar.scroll {
  top: -1px;
  padding: 7px;
  box-shadow: 0 0 5px 0 rgba(39, 36, 36, 0.1);
}
.page-navbar.scroll .navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-navbar.scroll .navbar-content .logo .logo-img {
  max-width: 65px;
  max-height: 80px;
}

.footer {
  padding: 40px 0;
  background-color: #fff;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: -1.5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #E6C145;
  width: 400px;
  height: 3px;
  border-radius: 10px;
}
@media screen and (max-width: 576px) {
  .footer::before {
    width: calc(100% - 100px);
  }
}
.footer .foot-content .footer-head {
  margin-bottom: 30px;
  font-size: 17px;
  color: #279492;
  width: -moz-fit-content;
  width: fit-content;
  font-family: fontDemi;
}

.footer .foot-content p{
    font-size: 15px !important;
    line-height: 1.8;
}

@media screen and (max-width: 425px) {
  .footer .foot-content .footer-head {
    font-size: 15px;
  }
}
.footer .foot-content .foot-logo {
  max-width: 80px;
  max-height: 90px;
}
@media screen and (max-width: 576px) {
  .footer .foot-content .foot-logo {
    max-width: 65px;
    max-height: 85px;
  }
}
.footer .foot-content .footer-info {
  font-size: 15px;
  color: #279492;
  line-height: 1.6;
  margin-top: 20px;
}
.footer .foot-content .footer-links .link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  width: -moz-fit-content;
  width: fit-content;
  color: #272424;
  transition: all 0.3s ease;
  font-size: 15px;
  cursor: pointer;
  background-color: transparent;
}
.footer .foot-content .footer-links .link:hover {
  color: #279492;
}
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 .ic {
  max-width: 17px;
  max-height: 17px;
}
.footer .foot-content .footer-links .link .ic.app-link {
  max-width: 220px;
  height: 55px;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .footer .foot-content .footer-links .link {
    font-size: 15px;
  }
}
.footer .foot-content .foot-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer .foot-content .foot-social .social-icon {
  border-radius: 50%;
  width: 37px;
  height: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #279492;
}
.footer .foot-content .foot-social .social-icon .social-ic {
  transition: all 0.3s ease;
  max-width: 18px;
  max-height: 20px;
}
.footer .foot-content .foot-social .social-icon:hover .social-ic {
  transform: rotate(360deg);
}

.copy-right {
  background-color: #279492;
  padding: 10px 0;
}
.copy-right .copy-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 576px) {
  .copy-right .copy-content {
    justify-content: center;
  }
}
.copy-right .copy-content .text {
  font-size: 14px;
  color: #fff;
}
.copy-right .copy-content .text .link {
  text-decoration: underline;
  color: #fff;
}

.home-sec .home-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 520px;
}
@media screen and (max-width: 992px) {
  .home-sec .home-img {
    height: 400px;
  }
}
@media screen and (max-width: 576px) {
  .home-sec .home-img {
    height: 200px;
  }
}

.card-round .catego-con {
  border-radius: 10px !important;
  overflow: hidden;
  border-color: #F0F2F7 !important;
}
.card-round .catego-con .catego-img {
  max-width: 100% !important;
  max-height: 100% !important;
}

.danger {
  padding: 10px;
  background-color: rgba(255, 0, 0, 0.2);
  border-radius: 3px;
  font-size: 14px;
}
.danger p {
  color: red;
  margin: 0;
}

.chat-bg {
  background-color: #279492;
}
.chat-bg i, .chat-bg span {
  color: white !important;
}

.call-icon i {
  color: green !important;
}

.categories-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.categories-item .catego-con {
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid lightgray;
}
.categories-item .catego-con .catego-img {
  max-width: 55px;
  max-height: 55px;
}
.categories-item .catego-name {
  font-size: 15px;
  color: #272424;
  text-align:center;
}

.categories-item-sm {
  padding: 8px 12px;
  background-color: #fff;
  border: 1px solid #F0F2F7;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 155px;
}
.categories-item-sm .catego-img {
  max-width: 26px;
  max-height: 26px;
}
.categories-item-sm .catego-name {
  font-size: 14px;
  color: #272424;
}

.halls-sec {
  background-color: #fff;
}

.cards-container .main-card {
  box-shadow: 0 0 5px 0 rgba(39, 36, 36, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: block;
  background-color: #fff;
}
.cards-container .main-card .img {
  overflow: hidden;
  height: 180px;
}
@media screen and (max-width: 576px) {
  .cards-container .main-card .img {
    height: 150px;
  }
}
@media screen and (max-width: 425px) {
  .cards-container .main-card .img {
    height: 140px;
  }
}
@media screen and (max-width: 375px) {
  .cards-container .main-card .img {
    height: 130px;
  }
}
.cards-container .main-card .img .card-img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.cards-container .main-card .card-content {
  position: relative;
  padding: 15px 12px;
}
.cards-container .main-card .card-content .card-name {
  color: #272424;
  font-size: 16px;
  margin-bottom: 14px;
  font-family: fontDemi;
}
@media screen and (max-width: 425px) {
  .cards-container .main-card .card-content .card-name {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.cards-container .main-card:hover .card-img {
  transform: scale(1.1);
}
.cards-container.material-cards .main-card {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .cards-container.material-cards .main-card {
    display: block;
  }
}
.cards-container.material-cards .main-card .img {
  width: 80px;
  height: 100%;
  min-height: 100px;
  flex-grow: 1;
  flex-shrink: 0;
}
@media screen and (max-width: 576px) {
  .cards-container.material-cards .main-card .img {
    height: 150px;
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .cards-container.material-cards .main-card .img {
    height: 140px;
  }
}
@media screen and (max-width: 375px) {
  .cards-container.material-cards .main-card .img {
    height: 130px;
  }
}
.cards-container.material-cards .main-card .img .card-img {
  border-radius: 0;
}
.cards-container.material-cards .main-card .img.sm {
  height: 180px;
}
.cards-container.material-cards .main-card .card-content {
  flex-grow: 1;
  padding: 10px 12px;
}
.cards-container.material-cards .main-card .card-content .main-item .item-text {
  white-space: wrap;
  overflow: unset;
  text-overflow: ellipsis;
}
.cards-container.material-cards .main-card:hover {
  transform: translateY(-7px);
}
.cards-container.material-cards .main-card:hover .card-img {
  transform: unset;
}
.cards-container .product-card {
  display: block;
  padding: 15px 15px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.05);
  display: block;
  width: 100%;
}
.cards-container .product-card .img {
  height: 180px;
}
.cards-container .product-card .img .product-img {
  display: block;
  max-width: 130px;
  max-height: 180px;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.cards-container .product-card .content {
  margin-top: 15px;
}
.cards-container .product-card .content .product-name {
  font-size: 15px;
  line-height: 1.5;
  color: #272424;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 45px;
}
.cards-container .product-card .content .price {
  font-size: 17px;
  height: 22px;
}
.cards-container .product-card:hover .img .product-img {
  transform: scale(1.1);
}

.banner-img {
  width: 100%;
  height: 238px;
}
@media screen and (max-width: 768px) {
  .banner-img {
    -o-object-fit: contain;
       object-fit: contain;
    height: 100px;
  }
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .about-container {
    gap: 40px;
  }
}
.about-container .info {
  font-size: 16px;
  color: #272424;
  line-height: 1.8;
}
.about-container .about-logo-con {
  position: relative;
  width: 280px;
  height: 280px;
}
@media screen and (max-width: 992px) {
  .about-container .about-logo-con {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
  }
}
@media screen and (max-width: 375px) {
  .about-container .about-logo-con {
    width: 230px;
    height: 230px;
  }
}
.about-container .about-logo-con::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid #E6C145;
  top: -20px;
  z-index: 5;
}
html[lang=en] .about-container .about-logo-con::after {
  right: -20px;
}
html[lang=ar] .about-container .about-logo-con::after {
  left: -20px;
}
.about-container .about-logo-con .about-img {
  width: 280px !important;
  height: 280px !important;
  height: 100%;
  border-radius: 50%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 375px) {
  .about-container .about-logo-con .about-img {
    width: 230px !important;
    height: 230px !important;
  }
}
.about-container .about-logo-con .about-logo {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  z-index: 6;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: bounceUp 3s infinite;
  background-color: #279492;
}
html[lang=en] .about-container .about-logo-con .about-logo {
  left: -40px;
}
html[lang=ar] .about-container .about-logo-con .about-logo {
  right: -40px;
}
@media screen and (max-width: 375px) {
  .about-container .about-logo-con .about-logo {
    border-radius: 50%;
    width: 80px;
    height: 80px;
  }
  html[lang=en] .about-container .about-logo-con .about-logo {
    left: -30px;
  }
  html[lang=ar] .about-container .about-logo-con .about-logo {
    right: -30px;
  }
}
.about-container .about-logo-con .about-logo .about-logo-img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 50px;
  max-height: 60px;
}
@media screen and (max-width: 375px) {
  .about-container .about-logo-con .about-logo .about-logo-img {
    max-width: 40px;
    max-height: 50px;
  }
}

@keyframes bounceUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
  100% {
    transform: translateY(0px);
  }
}
.order-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}
.order-item .position-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
@media screen and (max-width: 425px) {
  .order-item {
    align-items: start;
    padding: 12px 10px;
    gap: 8px;
  }
}
.order-item .order-img {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #e6e9ef;
  flex-shrink: 0;
}
@media screen and (max-width: 425px) {
  .order-item .order-img {
    width: 68px;
    height: 68px;
  }
}
.order-item .order-img .img {
  max-width: 55px;
}
@media screen and (max-width: 425px) {
  .order-item .order-img .img {
    max-width: 40px;
  }
}
.order-item .left {
  width: 100%;
}
.order-item .left .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}
@media screen and (max-width: 425px) {
  .order-item .left .top {
    margin-bottom: 15px;
  }
}
.order-item .left .top .order-name {
  font-size: 17px;
  color: #272424;
  font-family: fontDemi;
}
@media screen and (max-width: 425px) {
  .order-item .left .top .order-name {
    font-size: 15px;
  }
}
.order-item .left .top .order-date {
  font-size: 13px;
  color: #606E7D;
}
.order-item .left .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media screen and (max-width: 992px) {
  .order-item .left .bottom {
    flex-wrap: wrap;
  }
}
.order-item .left .bottom .icon {
  font-size: 15px;
  color: #606E7D;
}
@media screen and (max-width: 576px) {
  .order-item .left .bottom .icon {
    display: none;
  }
}
.order-item .copy-item {
  position: relative;
  z-index: 10;
}
.order-item.full .order-img {
  -o-object-fit: cover;
     object-fit: cover;
}
.order-item.full .left .top {
  margin-bottom: 8px;
}
@media screen and (max-width: 405px) {
  .order-item.detailes {
    flex-direction: column;
    align-items: start;
  }
}

.done-sec .done-img {
  max-width: 340px;
  max-height: 340px;
  margin-bottom: 25px;
}
@media screen and (max-width: 576px) {
  .done-sec .done-img {
    max-height: 235px;
    max-width: 220px;
  }
}
.done-sec .title {
  font-size: 24px;
  color: #272424;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: fontDemi;
}
@media screen and (max-width: 576px) {
  .done-sec .title {
    font-size: 20px;
  }
}
.done-sec .title .title-ic {
  max-width: 24px;
}
@media screen and (max-width: 576px) {
  .done-sec .title .title-ic {
    max-width: 20px;
  }
}
.done-sec .info {
  margin-bottom: 25px;
  line-height: 1.6;
}
@media screen and (max-width: 576px) {
  .done-sec .info {
    font-size: 15px;
  }
}

.slider-img {
  height: 340px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 425px) {
  .slider-img {
    height: 250px;
  }
}

.product-slider .owl-stage-outer {
  height: 370px;
  border-radius: 8px;
  background-color: #fff;
  /*padding: 20px;*/
}
.product-slider .pro-img {
  /*max-width: 240px;*/
  /*max-height: 300px;*/
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  height: 370px;
  width: 100%;
  border-radius: 8px;
  /*object-fit: cover;*/
}

.card-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 425px) {
  .card-socials {
    gap: 12px;
  }
}
.card-socials .card-social .img {
  border-radius: 50%;
  width: 42px;
  height: 42px;
}
@media screen and (max-width: 425px) {
  .card-socials .card-social .img {
    border-radius: 50%;
    width: 36px;
    height: 36px;
  }
}

.course-page-img {
  height: 240px;
  width: 520px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .course-page-img {
    width: 100%;
    height: 210px;
  }
}
.course-page-img .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.course-page-img .video {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  z-index: 5;
}
.course-page-img .video .ic {
  max-width: 20px;
  font-size: 22px;
  color: #279492;
}

/************* Start payment Section *************/
.payment-items {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.payment-item .payment-input {
  display: none;
}

.payment-item .payment-input:checked + .payment-label {
  background-color: #fff;
  border-color: #279492;
}

.payment-item .payment-input:checked + .payment-label .circle {
  background-color: #279492;
}

.payment-item .payment-input:checked + .payment-label .circle::after {
  opacity: 1;
}

.payment-item .payment-input:checked + .payment-label {
  background-color: #fff;
  border-color: #279492;
}

.payment-item .payment-label {
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F7F7FF;
  cursor: pointer;
  border-radius: 6px;
  width: 300px;
  border: 1px solid transparent;
  transition: all 0.4s ease;
}

.payment-item .payment-label .right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.payment-item .payment-label .right .payment-img {
  width: 28px;
  height: 25px;
}

.payment-item .payment-label .right .name {
  color: #3B3B3B;
  font-size: 16px;
  margin-bottom: 3px;
  display: block;
}

.payment-item .payment-label .right .text {
  color: #989898;
  font-size: 12px;
}

.payment-item .payment-label .circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #279492;
  cursor: pointer;
  position: relative;
  transition: all 0.4s ease;
}

.payment-item .payment-label .circle::after {
  content: "";
  height: 6px;
  width: 12px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%) rotate(-45deg);
  transform-origin: center center;
  opacity: 0;
  transition: all 0.3s ease;
}
/*-------------------------*/
.phone-input{
    position:relative;
}
.country-code-input{
    position: absolute;
    width:70px; 
    left:0; 
    top:40%;
}
html[lang='en'] .country-code-input {
    left:unset;
    right:0;
}

@media screen and (max-width: 425px) {
  .payment-item {
    width: 100%;
  }
  .payment-item .payment-label {
    padding: 18px 14px;
    width: 100%;
  }
  .payment-item .payment-label .right .name {
    font-size: 15px;
  }
}
.offers-cards .offers-img {
  border-radius: 8px;
  height: 240px;
  width: 100%;
}
@media screen and (max-width: 425px) {
  .offers-cards .offers-img {
    height: 180px;
  }
}

/************* Start App Section *************/
.app-section {
  overflow: hidden;
  background-color: #279492;
}
.app-section .app-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 992px) {
  .app-section .app-right {
    align-items: center;
    gap: 25px;
  }
}
@media screen and (max-width: 576px) {
  .app-section .app-right {
    gap: 20px;
  }
}
.app-section .app-right .app-title {
  font-size: 26px;
  font-family: fontDemi;
  color: #fff;
}
@media screen and (max-width: 576px) {
  .app-section .app-right .app-title {
    font-size: 22px;
  }
}
.app-section .app-right .app-desc {
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
  font-family: fontReg;
}
@media screen and (max-width: 576px) {
  .app-section .app-right .app-desc {
    font-size: 15px;
  }
}
.app-section .app-right .app-btns {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}
.app-section .app-right .app-btns .app-btn {
  transition: all 0.3s ease;
}
.app-section .app-right .app-btns .app-btn img {
  width: 170px;
  height: 55px;
}
@media screen and (max-width: 576px) {
  .app-section .app-right .app-btns .app-btn img {
    width: 140px;
    height: 48px;
  }
}
.app-section .app-right .app-btns .app-btn:hover {
  transform: translateY(-5px);
}
.app-section .app-left .animated-imgs img {
  width: 150px;
  height: 320px;
  position: absolute;
  transition: all 1s ease-in-out;
  z-index: 2;
}
html[lang=en] .app-section .app-left .animated-imgs img {
  transform: rotate(19deg);
}
html[lang=ar] .app-section .app-left .animated-imgs img {
  transform: rotate(-19deg);
}
.app-section .app-left .animated-imgs img:first-child {
  top: -110px;
}
html[lang=en] .app-section .app-left .animated-imgs img:first-child {
  left: 78px;
}
html[lang=ar] .app-section .app-left .animated-imgs img:first-child {
  right: 78px;
}
@media screen and (max-width: 1400px) {
  html[lang=en] .app-section .app-left .animated-imgs img:first-child {
    left: 30px;
  }
  html[lang=ar] .app-section .app-left .animated-imgs img:first-child {
    right: 30px;
  }
}
.app-section .app-left .animated-imgs img:nth-child(2) {
  top: 215px;
}
html[lang=en] .app-section .app-left .animated-imgs img:nth-child(2) {
  left: -35px;
}
html[lang=ar] .app-section .app-left .animated-imgs img:nth-child(2) {
  right: -35px;
}
@media screen and (max-width: 1400px) {
  html[lang=en] .app-section .app-left .animated-imgs img:nth-child(2) {
    left: -83px;
  }
  html[lang=ar] .app-section .app-left .animated-imgs img:nth-child(2) {
    right: -83px;
  }
}
.app-section .app-left .animated-imgs img:nth-child(3) {
  top: -185px;
  right: 290px;
}
html[lang=en] .app-section .app-left .animated-imgs img:nth-child(3) {
  left: 290px;
}
html[lang=ar] .app-section .app-left .animated-imgs img:nth-child(3) {
  right: 290px;
}
@media screen and (max-width: 1400px) {
  html[lang=en] .app-section .app-left .animated-imgs img:nth-child(3) {
    left: 225px;
  }
  html[lang=ar] .app-section .app-left .animated-imgs img:nth-child(3) {
    right: 225px;
  }
}
.app-section .app-left .animated-imgs img:nth-child(4) {
  top: 135px;
}
html[lang=en] .app-section .app-left .animated-imgs img:nth-child(4) {
  left: 178px;
}
html[lang=ar] .app-section .app-left .animated-imgs img:nth-child(4) {
  right: 178px;
}
@media screen and (max-width: 1400px) {
  html[lang=en] .app-section .app-left .animated-imgs img:nth-child(4) {
    left: 115px;
  }
  html[lang=ar] .app-section .app-left .animated-imgs img:nth-child(4) {
    right: 115px;
  }
}
.app-section .app-left .animated-imgs img:nth-child(5) {
  top: -70px;
}
html[lang=en] .app-section .app-left .animated-imgs img:nth-child(5) {
  right: 46px;
}
html[lang=ar] .app-section .app-left .animated-imgs img:nth-child(5) {
  left: 46px;
}
@media screen and (max-width: 1400px) {
  html[lang=en] .app-section .app-left .animated-imgs img:nth-child(5) {
    right: 44px;
  }
  html[lang=ar] .app-section .app-left .animated-imgs img:nth-child(5) {
    left: 44px;
  }
}
@media screen and (max-width: 1200px) {
  .app-section .app-left .animated-imgs img:nth-child(5) {
    z-index: 1;
  }
  html[lang=en] .app-section .app-left .animated-imgs img:nth-child(5) {
    right: -44px;
  }
  html[lang=ar] .app-section .app-left .animated-imgs img:nth-child(5) {
    left: -44px;
  }
}

.product_radio{
    transition: all .3s ease;
     font-size: 15px;
}

.product_radio:has(input:checked)  {
  background-color: #279492;
  color: #fff;
}

#chatModal .modal-body, #chatModal .modal-content{
    padding: 0 !important;
}

#chatModal .close-modal{
    display: none !important;
}


.jssocials-share-link{
  position: relative;
}

.jssocials-share{
    margin: 5px !important;
}

.jssocials-share-link .jssocials-share-logo{
  /*opacity: 0;*/
  position: relative;
  width: 30px;
}
.jssocials-share-link .jssocials-share-logo:before{
    display:none;
}

.jssocials-share-link .jssocials-share-logo::after{
  content: '';
    position: absolute;
    top: 50%;
    right: 3px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    z-index: 56;
    background-size: cover;
}

.jssocials-share-link .fa-twitter::after{
    background-image: url(https://img.icons8.com/?size=100&id=8824&format=png&color=ffffff); 
}

.jssocials-share-link .fa-whatsapp::after{
  background-image: url(https://img.icons8.com/?size=100&id=16733&format=png&color=ffffff);
}
.jssocials-share-link .fa-at::after{
  background-image: url(https://img.icons8.com/?size=100&id=vuBZHdDl29U9&format=png&color=ffffff); 
}

.jssocials-share-link .fa-pinterest::after{
  background-image: url(https://img.icons8.com/?size=100&id=11101&format=png&color=ffffff); 
}

.jssocials-share-link .fa-facebook::after{
    background-image: url(https://img.icons8.com/?size=100&id=118467&format=png&color=ffffff);
}

.jssocials-share-link .fa-linkedin::after{
    background-image: url(https://img.icons8.com/?size=100&id=8808&format=png&color=ffffff);
}

.jssocials-share-link .fa-google::after{
    background-image: url(https://img.icons8.com/?size=100&id=17950&format=png&color=ffffff);
}

.jssocials-share-link .fa-stumbleupon::after{
    background-image: url(https://img.icons8.com/?size=100&id=12511&format=png&color=ffffff);
}



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