.slider {
  position: relative;
  height: 350px;
  width: 100%;
  background: #fff;
  overflow: hidden;
}

.slider__wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translateX(100vw);
  top: 0%;
  left: 0;
  right: auto;
  overflow: hidden;
  transition: transform 450ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transform-origin: 0% 50%;
  transition-delay: 450ms;
  opacity: 0;
}

.slider__wrap--hacked {
  opacity: 1;
}

.slider__back {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: auto 100%;
  background-position: center;
  background-repeat: none;
  transition: filter 450ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.slider__inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0%;
  background-size: auto 133.3333%;
  background-position: center;
  background-repeat: none;
  transform: scale(0.75);
  transition: transform 450ms cubic-bezier(0.785, 0.135, 0.15, 0.86), box-shadow 450ms cubic-bezier(0.785, 0.135, 0.15, 0.86), opacity 450ms step-end;
  opacity: 0;
  box-shadow: 0 3vh 3vh rgba(0, 0, 0, 0);
  padding: 0;
  box-sizing: border-box;
}

.slider__inner .btn-all {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.slider__content {
  position: relative;
  top: 50%;
  width: auto;
  transform: translateY(-50%);
  color: white;
  font-family: "Heebo", sans-serif;
  opacity: 0;
  transition: opacity 450ms;
}

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

.slider__content a {
  cursor: pointer;
  position: relative;
  display: block;
  height: 100px;
  width: 100px;
}

.slider__content a.go-to-prev::after {
  right: auto;
  left: 45px;
}

.slider__content a.go-to-prev::before {
  right: auto;
  left: 25px;
  border: 0;
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  box-shadow: 0px 20px 20px 5px rgba(0, 0, 0, 0.7);
}

.slider__content a:before {
  content: "";
  border-top: 2px solid white;
  border-right: 2px solid white;
  display: block;
  width: 15px;
  height: 15px;
  transform: translateX(0) translateY(-50%) rotate(45deg);
  position: absolute;
  font-family: "Heebo", sans-serif;
  font-weight: 100;
  top: 50%;
  right: 25px;
  transition: transform 900ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  box-shadow: 20px 0px 20px 5px rgba(0, 0, 0, 0.7);
}

.slider__content a:hover:before {
  transform: translateX(2vh) translateY(-50%) rotate(45deg);
  transition: transform 1200ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.slider__slide {
  position: absolute;
  left: 0;
  height: calc(100% - 50px);
  width: 100%;
  transition: transform 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-delay: 600ms;
  pointer-events: none;
  z-index: 0;
}

.slider__slide--active {
  transform: translatex(0%);
  z-index: 2;
}

.slider__slide--active .slider__wrap {
  transform: translateX(0);
  transform-origin: 100% 50%;
  opacity: 1;
  -webkit-animation: none;
  animation: none;
}

.slider__slide--active .slider__back {
  filter: blur(1.5vh);
  transition: filter 900ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-delay: 900ms !important;
}

.slider__slide--active .slider__inner {
  transform: scale(0.95, 0.9);
  transform: scale(1);
  box-shadow: 0 1vh 6vh rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  opacity: 1;
  transition: transform 900ms cubic-bezier(0.785, 0.135, 0.15, 0.86), box-shadow 900ms cubic-bezier(0.785, 0.135, 0.15, 0.86), opacity 1ms step-end;
  transition-delay: 900ms;
}

.slider__slide--active .slider__content {
  opacity: 1;
  transition-delay: 1350ms;
}

.slider__slide:not(.slider__slide--active) .slider__wrap {
  -webkit-animation-name: hack;
  animation-name: hack;
  -webkit-animation-duration: 900ms;
  animation-duration: 900ms;
  -webkit-animation-delay: 450ms;
  animation-delay: 450ms;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

@-webkit-keyframes hack {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  50% {
    transform: translateX(-100vw);
    opacity: 1;
  }

  51% {
    transform: translateX(-100vw);
    opacity: 0;
  }

  52% {
    transform: translateX(100vw);
    opacity: 0;
  }

  100% {
    transform: translateX(100vw);
    opacity: 1;
  }
}

@keyframes hack {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  50% {
    transform: translateX(-100vw);
    opacity: 1;
  }

  51% {
    transform: translateX(-100vw);
    opacity: 0;
  }

  52% {
    transform: translateX(100vw);
    opacity: 0;
  }

  100% {
    transform: translateX(100vw);
    opacity: 1;
  }
}

body {
  font-family: "Tajawal", sans-serif;
}

.carousel-control-prev {
  left: auto;
  right: 0;
}

.carousel-control-next {
  left: 0;
  right: auto;
}

.container {
  max-width: 1304px;
  width: 100%;
}

.container-fluid {
  max-width: 1280px;
  width: 100%;
}

.container-full {
  max-width: 90%;
  margin: 0 auto;
  width: 100%;
}

iframe {
  width: 100% !important;
}

.mfp-iframe-scaler iframe {
  height: 100% !important;
}

.tooltip {
  position: relative;
  opacity: 1;
}

.tooltip .tooltiptext {
  visibility: hidden;
  background-color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 6px 10px;
  position: absolute;
  z-index: 9999;
  bottom: 20px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  font-size: 14px;
  transition: all ease-in-out 0.3s;
  opacity: 0;
  color: #888;
  font-weight: 600;
}

.tooltip .tooltiptext:hover {
  color: #EC5F5E;
}

.tooltip .tooltiptext::after {
  border: 7px solid transparent;
  border-bottom-color: #fff;
  border-left-color: #fff;
  position: absolute;
  top: 78%;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  content: "";
}

.tooltip .tooltiptext.active {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}

a {
  text-decoration: none;
  cursor: pointer;
}

.span-price {
  font-size: 16px;
}

.span-price strong {
  font-weight: 900;
  font-size: 23px;
}

.head-section {
  text-align: center;
  display: grid;
  justify-content: center;
}

.head-section h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 60px;
  margin: 0;
  font-family: "Tajawal", sans-serif;
  background-image: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.head-section h4 {
  font-size: 30px;
  font-weight: 600;
  margin: 0;
  font-family: "Tajawal", sans-serif;
  background-image: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.head-section p {
  font-family: "Tajawal", sans-serif;
  font-size: 22px;
  line-height: 45px;
  color: #191A1F;
  font-weight: 600;
  margin: 0;
}

.head-section p a {
  color: #EC5F5E;
  font-weight: 600;
}

.btn {
  background-color: #EC5F5E;
  background: linear-gradient(92.29deg, #EC5F5E 6.91%, #e34385 99.55%) padding-box, linear-gradient(92.29deg, #EC5F5E 6.91%, #e34385 99.55%) border-box;
  color: #fff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  border: 0;
  font-weight: 600;
  padding: 12px 50px;
  border-radius: 10px;
  transition: all ease-in-out 0.3s;
  width: max-content;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-size: 16px;
  gap: 5px;
  border: 3px solid transparent;
}

.btn span {
  position: relative;
  z-index: 10;
  font-family: "Tajawal", sans-serif;
}

.btn:hover,
.btn:focus {
  color: #EC5F5E;
  border-color: #EC5F5E;
  background-color: transparent;
  background-image: linear-gradient(45deg, rgba(244, 148, 44, 0) 0%, rgba(235, 92, 98, 0.2392156863) 100%);
}

.header {
  position: unset;
  z-index: 9999;
  top: 0;
  background-color: #fff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

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

.header .header-scroll .header-scroll-content .start-side {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header .header-scroll .header-scroll-content .start-side .cities-content {
  margin-right: 30px;
}

.header .header-scroll .header-scroll-content .start-side .cities-content .dropdown .btn {
  border: 0;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  box-shadow: none;
  padding: 12px 20px;
}

.header .header-scroll .header-scroll-content .start-side .cities-content .dropdown .btn:hover,
.header .header-scroll .header-scroll-content .start-side .cities-content .dropdown .btn:focus {
  box-shadow: none;
  outline: 0;
  border: 0;
  background: none;
}

.header .header-scroll .header-scroll-content .start-side .cities-content .dropdown .dropdown-menu {
  padding: 0;
  border: 0;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  max-height: 90vh;
  overflow-y: auto;
}

.header .header-scroll .header-scroll-content .start-side .cities-content .dropdown .dropdown-menu li .dropdown-item {
  color: #000;
  border-bottom: 1px solid rgba(235, 92, 98, 0.0784313725);
  transition: all ease-in-out 0.3s;
  padding: 5px 10px;
  font-size: 16px;
  color: #000;
  font-weight: 600;
}

.header .header-scroll .header-scroll-content .start-side .cities-content .dropdown .dropdown-menu li .dropdown-item:hover {
  background-color: rgba(235, 92, 98, 0.0784313725);
}

.header .header-scroll .header-scroll-content .start-side .cities-content .dropdown .dropdown-menu li:last-child .dropdown-item {
  border-color: transparent;
}

.header .header-scroll .header-scroll-content .end-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav {
  align-items: center;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .nav-item {
  padding: 0 15px;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .nav-item .nav-link {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  transition: all ease-in-out 0.3s;
  padding: 5px 10px;
  border: 0;
  position: relative;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .nav-item .nav-link span {
  font-family: "Tajawal", sans-serif;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .nav-item .nav-link:hover {
  color: #EC5F5E;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .nav-item .nav-link.phone {
  font-weight: 900;
  margin-right: 20px;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .nav-item .nav-link.phone span {
  text-decoration: underline;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .nav-item .nav-link.phone:hover {
  color: #000;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .nav-item .nav-link.login {
  margin: 0 auto;
  background: none;
  background-color: #fff;
  border: 3px solid #EC5F5E;
  transition: all ease-in-out 0.3s;
  box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 5px 15px;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .nav-item .nav-link.login span {
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  font-weight: 700;
  width: max-content;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .nav-item .nav-link.login:hover {
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  border-color: transparent;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .nav-item .nav-link.login:hover span {
  -webkit-text-fill-color: #fff;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .nav-item.nav-lang .dropdown .btn {
  border: 0;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  box-shadow: none;
  padding: 12px 20px;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .nav-item.nav-lang .dropdown .btn:hover,
.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .nav-item.nav-lang .dropdown .btn:focus {
  box-shadow: none;
  outline: 0;
  border: 0;
  background: none;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .nav-item.nav-lang .dropdown .dropdown-menu {
  padding: 0;
  border: 0;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  max-height: 250px;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .nav-item.nav-lang .dropdown .dropdown-menu li .dropdown-item {
  color: #000;
  border-bottom: 1px solid rgba(235, 92, 98, 0.0784313725);
  transition: all ease-in-out 0.3s;
  padding: 15px 10px;
  font-size: 16px;
  color: #000;
  font-weight: 600;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .nav-item.nav-lang .dropdown .dropdown-menu li .dropdown-item:hover {
  background-color: rgba(235, 92, 98, 0.0784313725);
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .nav-item.nav-lang .dropdown .dropdown-menu li:last-child .dropdown-item {
  border-color: transparent;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .nav-item:first-child {
  margin-right: 0;
  margin: 0 5rem;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .dropdown .btn {
  border: 0;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: none;
  box-shadow: none;
  padding: 12px 20px;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .dropdown .btn:hover,
.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .dropdown .btn:focus {
  box-shadow: none;
  outline: 0;
  border: 0;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .dropdown .btn img {
  border: 3px solid #fff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .dropdown .btn::after {
  display: none;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .dropdown .dropdown-menu {
  padding: 0;
  border: 0;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  min-width: max-content;
  top: 50px;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .dropdown .dropdown-menu li .dropdown-item {
  color: #000;
  border-bottom: 1px solid rgba(235, 92, 98, 0.0784313725);
  transition: all ease-in-out 0.3s;
  padding: 15px 30px;
  font-size: 16px;
  color: #000;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .dropdown .dropdown-menu li .dropdown-item:hover {
  background-color: rgba(235, 92, 98, 0.0784313725);
}

.header .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .dropdown .dropdown-menu li:last-child .dropdown-item {
  border-color: transparent;
}

.header .header-scroll .header-scroll-content .end-side .add-btn {
  margin-right: 0;
  margin-left: 40px;
}

.header .header-scroll .header-scroll-content .end-side .add-btn .btn {
  background: none;
  border: 3px solid transparent;
  transition: all ease-in-out 0.3s;
  box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.1019607843);
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  border-radius: 50px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.header .header-scroll .header-scroll-content .end-side .add-btn .btn span {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  width: max-content;
}

.header .header-scroll .header-scroll-content .end-side .add-btn .btn i {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.header .header-scroll .header-scroll-content .end-side .add-btn .btn:hover {
  border-color: #EC5F5E;
  background: linear-gradient(90.64deg, #FFFAFA 6.91%, #FFFAFC 99.55%);
}

.header .header-scroll .header-scroll-content .end-side .add-btn .btn:hover span,
.header .header-scroll .header-scroll-content .end-side .add-btn .btn:hover i {
  background: linear-gradient(180deg, #FFAC4D 0%, #EB5C62 30%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header.header-mob {
  left: 0;
  width: 100%;
  transition: all ease-in-out 0.3s;
  z-index: 999;
  padding: 10px 0 15px;
  display: none;
  box-shadow: none;
}

.header.header-mob .header-overlay .header-scroll-content .top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
}

.header.header-mob .header-overlay .header-scroll-content .top-header .nav-item .nav-link {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  transition: all ease-in-out 0.3s;
  padding: 0;
  border: 0;
  position: relative;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header.header-mob .header-overlay .header-scroll-content .top-header .nav-item .nav-link span {
  font-family: "Tajawal", sans-serif;
}

.header.header-mob .header-overlay .header-scroll-content .top-header .nav-item .nav-link:hover {
  color: #EC5F5E;
}

.header.header-mob .header-overlay .header-scroll-content .top-header .nav-item .dropdown .btn {
  border: 0;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: none;
  box-shadow: none;
  padding: 12px 20px;
}

.header.header-mob .header-overlay .header-scroll-content .top-header .nav-item .dropdown .btn:hover,
.header.header-mob .header-overlay .header-scroll-content .top-header .nav-item .dropdown .btn:focus {
  box-shadow: none;
  outline: 0;
  border: 0;
}

.header.header-mob .header-overlay .header-scroll-content .top-header .nav-item .dropdown .btn img {
  border: 3px solid #fff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.header.header-mob .header-overlay .header-scroll-content .top-header .nav-item .dropdown .btn::after {
  display: none;
}

.header.header-mob .header-overlay .header-scroll-content .top-header .nav-item .dropdown .dropdown-menu {
  padding: 0;
  border: 0;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  min-width: max-content;
  top: 50px;
}

.header.header-mob .header-overlay .header-scroll-content .top-header .nav-item .dropdown .dropdown-menu li .dropdown-item {
  color: #000;
  border-bottom: 1px solid rgba(235, 92, 98, 0.0784313725);
  transition: all ease-in-out 0.3s;
  padding: 15px 30px;
  font-size: 16px;
  color: #000;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.header.header-mob .header-overlay .header-scroll-content .top-header .nav-item .dropdown .dropdown-menu li .dropdown-item:hover {
  background-color: rgba(235, 92, 98, 0.0784313725);
}

.header.header-mob .header-overlay .header-scroll-content .top-header .nav-item .dropdown .dropdown-menu li:last-child .dropdown-item {
  border-color: transparent;
}

.header.header-mob .header-overlay .header-scroll-content .top-header .nav-item.nav-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-left: 5rem;
}

.header.header-mob .header-overlay .header-scroll-content .top-header .nav-item.nav-lang .nav-link {
  font-size: 14px;
}

.header.header-mob .header-overlay .header-scroll-content .top-header .nav-item.nav-lang .nav-link.disabled {
  color: rgba(0, 0, 0, 0.7);
}

.header.header-mob .header-overlay .header-scroll-content .top-header .nav-item.nav-lang .nav-link.disabled:hover {
  color: rgba(0, 0, 0, 0.7);
}

.header.header-mob .header-overlay .header-scroll-content .bottom-header .add-btn .btn {
  margin: 0 auto;
  padding: 6px 20px;
}

.header.headerPlan .header-scroll .header-scroll-content .start-side .logo {
  gap: 40px;
}

.header.headerPlan .header-scroll .header-scroll-content .start-side .logo .nav-link {
  padding: 20px;
  font-size: 20px;
  display: flex;
  align-items: center;
}

.header.headerPlan .header-scroll .header-scroll-content .end-side .navbar .navbar-nav .nav-item .nav-link {
  padding: 20px;
  font-size: 28px;
  display: flex;
  align-items: center;
}

.home .slider-parent {
  padding: 50px 0 100px;
  position: relative;
}

.home .slider-parent .slider_shadow {
  position: absolute;
  top: calc(100% - 50px);
  z-index: 99;
  left: 0;
  width: 100%;
}

.home .form-search {
  margin-bottom: 50px;
}

.home .form-search .form-content {
  padding: 32px 48px;
  border-radius: 24px;
  box-shadow: 0px 0px 6px 0px rgba(230, 42, 112, 0.3019607843);
}

.home .form-search .form-content form {
  row-gap: 20px;
}

.home .form-search .form-content form .form-group-item {
  position: relative;
}

.home .form-search .form-content form .form-group-item .form-group {
  position: relative;
  margin: 0;
}

.home .form-search .form-content form .form-group-item .form-group .form-control {
  border: 2px solid #E6E6E6;
  font-family: "Tajawal", sans-serif;
  font-size: 20px;
  font-weight: 600;
  transition: all ease-in-out 0.3s;
  height: 56px;
  border-radius: 12px;
  background-color: #fff;
}

.home .form-search .form-content form .form-group-item .form-group .form-control::placeholder {
  font-family: "Tajawal", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #888;
}

.home .form-search .form-content form .form-group-item .form-group .form-control:focus {
  border-color: #ffafaf;
  outline: 0;
  box-shadow: none;
}

.home .form-search .form-content form .form-group-item .search-result {
  background-color: #fff;
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  overflow-y: auto;
  border-radius: 6px;
  height: auto;
  width: 100%;
  opacity: 0;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  visibility: hidden;
  position: absolute;
  top: 100%;
  z-index: 9999;
  max-height: 250px;
  overflow-y: auto;
}

.home .form-search .form-content form .form-group-item .search-result ul {
  margin: 0;
  padding: 0;
}

.home .form-search .form-content form .form-group-item .search-result ul li.item {
  position: relative;
  margin-bottom: 0;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
}

.home .form-search .form-content form .form-group-item .search-result ul li.item .content-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: #000;
  font-size: 16px;
  position: relative;
  font-family: "Tajawal", sans-serif;
}

.home .form-search .form-content form .form-group-item .search-result ul li.item .content-item::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: transparent;
}

.home .form-search .form-content form .form-group-item .search-result ul li.item:hover {
  background-color: #f9f9f9;
}

.home .form-search .form-content form .form-group-item .search-result ul li.item:hover .content-item {
  color: #EC5F5E;
}

.home .form-search .form-content form .form-group-item .search-result ul li.item.active {
  display: none;
}

.home .form-search .form-content form .form-group-item .search-result ul li.item.active-item {
  display: inherit;
}

.home .form-search .form-content form .form-group-item .search-result.active {
  opacity: 1;
  visibility: visible;
}

.home .form-search .form-content form .form-btn .btn {
  position: relative;
  background: none;
  border-radius: 12px;
  color: #fff;
  width: 100%;
  border: 3px solid transparent;
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.0705882353);
  background: linear-gradient(90.64deg, #EC5F5E 6.91%, #E34385 99.55%);
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  height: 56px;
  font-size: 18px;
  font-weight: 700;
}

.home .form-search .form-content form .form-btn .btn:hover {
  background: #fff;
  border: 3px solid #EC5F5E;
}

.home .form-search .form-content form .form-btn .btn:hover span,
.home .form-search .form-content form .form-btn .btn:hover i {
  background-image: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.categories-sec .head-section {
  margin-bottom: 48px;
}

.categories-sec .categories-content .categories-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.categories-sec .categories-content .categories-wrapper .category {
  width: calc((100% - 210px) / 8);
}

.categories-sec .categories-content .categories-wrapper .category .category-item {
  text-align: center;
  transition: all ease-in-out 0.3s;
}

.categories-sec .categories-content .categories-wrapper .category .category-item .img-item {
  margin-bottom: 24px;
}

.categories-sec .categories-content .categories-wrapper .category .category-item .img-item img {
  width: 80px;
  background-color: #E6E6E6;
  border-radius: 50%;
}

.categories-sec .categories-content .categories-wrapper .category .category-item .item-title {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  height: 60px;
  ;
  text-align: center;
}

.categories-sec .categories-content .categories-wrapper .category .category-item:hover {
  transform: translateY(-20px);
}

.categories-sec .categories-content .categories-wrapper .category .category-item:hover .item-title {
  color: #EC5F5E;
}

.ads-items {
  padding: 50px 0;
}

.ads-items .ads-slider {
  margin-bottom: 48px;
}

.ads-items .ads-slider .row {
  row-gap: 48px;
}

.ads-items .ads-slider .item-content {
  background-color: #fff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1019607843);
  transition: all ease-in-out 0.3s;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.ads-items .ads-slider .item-content .head-item {
  overflow: hidden;
}

.ads-items .ads-slider .item-content .head-item img {
  transition: all ease-in-out 0.3s;
}

.ads-items .ads-slider .item-content .body-item {
  padding: 0;
  position: relative;
}

.ads-items .ads-slider .item-content .body-item .content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.ads-items .ads-slider .item-content .body-item .content p {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 700;
}

.ads-items .ads-slider .item-content .body-item .list-body {
  margin: 0;
  padding: 0;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body {
  padding: 0 12px;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.prof {
  padding: 0;
  position: absolute;
  top: 0;
  left: 15px;
  width: 50px;
  height: 50px;
  transform: translateY(-25px);
  border: 0;
  z-index: 99;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.prof a {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 50%;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.prof a img {
  width: 100%;
  height: 100%;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.prof span {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 5px;
  z-index: 99999;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.prof span.online {
  background-color: green;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.prof span.offline {
  background-color: #888;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.cat {
  padding: 12px 12px 16px;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.cat a {
  color: #656565;
  font-size: 18px;
  font-weight: 500;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.tit a {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.tit p {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #888;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.opt {
  margin-bottom: 20px;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.opt .icon-list {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.opt .icon-list:hover {
  color: #EC5F5E;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.feat {
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.feat .span-price {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.feat .span-price i {
  color: #B3B3B3;
  font-size: 18px;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.feat .span-price a.item-price-eye {
  color: #000;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.feat .span-price a.item-price-eye i {
  color: #292D32;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.feat .span-price a.item-price-eye:hover {
  -webkit-text-fill-color: #292D32;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.feat .span-price a.active i {
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.feat .span-price:hover i {
  background: linear-gradient(90.69deg, #ECA6A5 6.91%, #E39FBB 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.feat .span-price:hover a.item-price-eye i {
  -webkit-text-fill-color: #292D32;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.feat .span-price:first-child {
  margin-left: auto;
  max-width: 50%;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  overflow: hidden;
  white-space: nowrap;
  ;
}

.ads-items .ads-slider .item-content .body-item .list-body .item-body.feat .span-price:last-child {
  cursor: pointer;
}

.ads-items .ads-slider .item-content .side-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.ads-items .ads-slider .item-content .side-content .side-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.ads-items .ads-slider .item-content .side-content .side-list li {
  padding: 8px 16px 8px 16px;
  font-size: 16px;
  font-weight: 500;
}

.ads-items .ads-slider .item-content .side-content .side-list li.featured {
  color: #fff;
  background: linear-gradient(91.95deg, #EC5F5E 6.91%, #E34385 99.55%);
  border-radius: 0px 16px 0px 16px;
}

.side-content .side-list li.featured.vip {
  color: #fff;
  background: linear-gradient(91.95deg, #ffe9a9 6.91%, #ff9400 99.55%) !important;
  border-radius: 0px 16px 0px 16px;
}

.ads-items .ads-slider .item-content .side-content .side-list li.const {
  background-color: #EC5F5E;
  color: #fff;
  border-radius: 6px;
}

.ads-items .ads-slider .item-content:hover {
  box-shadow: 0 0 6px 0px #E62A70;
}

.ads-items.pop-items .head-section {
  margin-bottom: 48px;
}

.ads-items.pop-items .ads-slider .item-content .body-item {
  padding: 0;
  position: relative;
}

.ads-items .add-btn .btn {
  margin: 0 auto;
  background: none;
  background-color: #fff;
  border: 3px solid #EC5F5E;
  transition: all ease-in-out 0.3s;
  box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.1019607843);
}

.ads-items .add-btn .btn span {
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  font-weight: 700;
}

.ads-items .add-btn .btn:hover {
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  border-color: transparent;
}

.ads-items .add-btn .btn:hover span {
  -webkit-text-fill-color: #fff;
}

.banner img {
  border-radius: 6px;
}

.banner.last-banner {
  padding-bottom: 50px;
}

.cities {
  padding: 50px 0;
}

.cities .head-section {
  margin-bottom: 48px;
}

.cities .row {
  row-gap: 24px;
}

.cities .city {
  overflow: hidden;
  transition: all ease-in-out 0.3s;
  border-radius: 12px;
  position: relative;
  min-height: 200px;
  background-size: cover;
  border: 1px solid #ccc;
}

.cities .city img {
  border-radius: 12px;
  width: 100%;
  transition: all ease-in-out 0.3s;
}

.cities .city a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  width: max-content;
}

.cities .city .title h4 {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  color: #fff;
  transition: all ease-in-out 0.3s;
  text-shadow: 0px 0px 7px #000;
  padding: 8px 24px 8px 24px;
  border-radius: 24px;
}

.cities .city:hover img {
  /* transform: scale(1.5); */
}

.cities .city:hover .title h4 {
  transform: translateY(50px) scale(1.2);
}

.cities .add-btn .btn {
  margin: 0 auto;
  background: none;
  background-color: #fff;
  border: 3px solid #EC5F5E;
  transition: all ease-in-out 0.3s;
  box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.1019607843);
  margin-top: 48px;
}

.cities .add-btn .btn span {
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  font-weight: 700;
}

.cities .add-btn .btn:hover {
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  border-color: transparent;
}

.cities .add-btn .btn:hover span {
  -webkit-text-fill-color: #fff;
}

.join {
  padding: 50px 0;
}

.join .head-section {
  margin-bottom: 48px;
}

.join .join-top {
  padding: 28px 45px;
  background: linear-gradient(90.69deg, rgba(245, 233, 233, 0.3) 6.91%, rgba(242, 230, 235, 0.3) 99.55%);
  border-radius: 24px;
  box-shadow: 0 0 6px 0px rgba(230, 42, 112, 0.3019607843);
  margin-bottom: 32px;
}

.join .join-top .join-top-start .head-start h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  height: 60px;
  font-family: "Tajawal", sans-serif;
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin-bottom: 12px;
}

.join .join-top .join-top-start .body-start .list-body-start li {
  font-size: 17px;
  font-weight: 500;
  line-height: 33px;
  font-family: "Tajawal", sans-serif;
  color: #000;
  margin-bottom: 33px;
}

.join .join-top .join-top-start .body-start .list-body-start li:last-child {
  margin-bottom: 0;
}

.join .join-top .join-top-start .body-start .list-body-start li span {
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  color: #fff;
  border-radius: 50%;
  height: 36px;
  width: 36px;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  font-size: 24px;
  font-weight: 700;
  margin-left: 16px;
  font-family: "Tajawal", sans-serif;
}

.join .join-top .join-top-start .body-start .list-body-start li img {
  width: 32px;
  margin-left: 12px;
}

.join .join-top .join-top-start .body-start .join-btn .btn {
  background: none;
  border: 3px solid transparent;
  transition: all ease-in-out 0.3s;
  box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.1019607843);
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  border-radius: 50px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin-top: 32px;
}

.join .join-top .join-top-start .body-start .join-btn .btn span {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.join .join-top .join-top-start .body-start .join-btn .btn i {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.join .join-top .join-top-start .body-start .join-btn .btn:hover {
  border-color: #EC5F5E;
  background: linear-gradient(90.64deg, #FFFAFA 6.91%, #FFFAFC 99.55%);
}

.join .join-top .join-top-start .body-start .join-btn .btn:hover span,
.join .join-top .join-top-start .body-start .join-btn .btn:hover i {
  background: linear-gradient(180deg, #FFAC4D 0%, #EB5C62 30%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.join .join-top .join-top-end .list-top-end {
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 32px;
}

.join .join-top.join-bottom {
  display: inherit;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.articles {
  padding: 50px 0;
}

.articles .head-section {
  margin-bottom: 15px;
}

.articles .row {
  row-gap: 24px;
}

.articles .article {
  padding: 0;
}

.articles .article .head-article {
  position: relative;
}

.articles .article .head-article .img-article img {
  border-radius: 12px;
}

.articles .article .body-article {
  padding: 20px 0 0;
  margin-bottom: 0;
}

.articles .article .body-article .title h4 {
  color: #000;
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: "Tajawal", sans-serif;
  text-align: center;
}

.articles .add-btn .btn {
  margin: 0 auto;
}

.articles.inner-articles .article .body-article .title h4 {
  font-size: 18px;
}

.footer {
  background-color: #191a1f;
  padding-top: 50px;
}

.footer .footer-top .logo {
  padding-bottom: 15px;
  border-bottom: 1px solid #EC5F5E;
}

.footer .footer-top .row {
  row-gap: 30px;
}

.footer .footer-top .desc-foot {
  margin: 15px 0;
  margin-bottom: 50px;
}

.footer .footer-top .desc-foot p {
  color: #fff;
  font-weight: 500;
  line-height: 28px;
  text-align: justify;
  font-size: 17px;
  margin-bottom: 30px;
}

.footer .footer-top .desc-foot p span {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  font-family: "Tajawal", sans-serif;
  display: block;
  margin-bottom: 15px;
}

.footer .footer-top .list-links .head-list h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  padding: 15px 0;
  border-bottom: 1px solid #EC5F5E;
  padding-top: 59px;
}

.footer .footer-top .list-links .items-links {
  display: grid;
  row-gap: 3px;
  margin: 15px 0;
}

.footer .footer-top .list-links .items-links .item-list .link-list {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  transition: all ease-in-out 0.3s;
}

.footer .footer-top .list-links .items-links .item-list .link-list:hover {
  color: #EC5F5E;
}

.footer .footer-bottom .top-bottom h3 {
  font-weight: 600;
  color: #fff;
  font-size: 19px;
  margin-bottom: 30px;
  text-align: center;
}

.footer .footer-bottom .contact-way {
  text-align: center;
  margin-bottom: 30px;
}

.footer .footer-bottom .contact-way a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
}

.footer .footer-bottom .contact-way .icon {
  background-color: var(--bgColor);
  padding: 10px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  transition: all ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

.footer .footer-bottom .contact-way .icon i {
  color: #fff;
  transition: all ease-in-out 0.3s;
}

.footer .footer-bottom .contact-way .icon:hover {
  transform: scale(1.1);
}

.footer .footer-bottom .contact-way .icon:hover i {
  color: #000;
}

.footer .footer-bottom .contact-way p {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}

.footer .footer-bottom .middle-bottom {
  margin-bottom: 30px;
}

.footer .footer-bottom .middle-bottom .row {
  row-gap: 20px;
}

.footer .footer-bottom .foot-copyright {
  padding: 30px 0;
  background-color: #0e0f11;
}

.footer .footer-bottom .foot-copyright .row {
  row-gap: 30px;
  align-items: center;
}

.footer .footer-bottom .foot-copyright p {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .footer-bottom .foot-copyright p span {
  color: #EC5F5E;
  font-weight: 700;
}

.footer .footer-bottom .foot-copyright .list-links .apps-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: nowrap;
  margin: 0;
}

.footer .footer-bottom .foot-copyright .list-links .apps-links li {
  width: calc(45% - 15px);
}

.start-categories{
  margin-top: 32px;
}

.home .form-search .form-content {
  padding: 20px;
}

.footer .footer-bottom .foot-copyright .list-links .apps-links li a img {
  width: 100%;
}

.footer .footer-bottom .foot-copyright .list-links .social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: nowrap;
  margin: 0;
}

.footer .footer-bottom .foot-copyright .list-links .social-links li a {
  transition: all ease-in-out 0.3s;
}

.footer .footer-bottom .foot-copyright .list-links .social-links li a.link-social {
  border: 2px solid #fff;
  background-color: var(--bgColor);
  height: 46px;
  width: 46px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer .footer-bottom .foot-copyright .list-links .social-links li a:hover {
  transform: scale(1.1);
}

.breadcrumb-content .breadcrumb {
  margin-bottom: 24px;
}

.breadcrumb-content .breadcrumb .breadcrumb-item {
  font-weight: 500;
  color: #888;
  font-size: 15px;
}

.breadcrumb-content .breadcrumb .breadcrumb-item a {
  font-weight: 500;
  color: #888;
  font-size: 15px;
}

.breadcrumb-content .breadcrumb .breadcrumb-item.active {
  color: #000;
}

.breadcrumb-content .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f104";
  color: #888;
  padding-right: 0;
}

.login {
  padding: 50px 0;
}

.login .head-section {
  margin-bottom: 64px;
}

.login .login-side {
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 30px;
  height: 100%;
}

.login .login-side .side-overlay {
  width: 100%;
}

.login .login-side .side-overlay .middle-side .list-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.login .login-side .side-overlay .middle-side .list-social li a {
  display: inline-block;
  padding: 15px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  line-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
  background-color: #fff;
  transition: all ease-in-out 0.3s;
}

.login .login-side .side-overlay .middle-side .list-social li a.google {
  border-color: #EC5F5E;
}

.login .login-side .side-overlay .middle-side .list-social li a.google span {
  background-image: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.login .login-side .side-overlay .middle-side .list-social li a.google:hover {
  background: linear-gradient(90.69deg, #F2E6E6 6.91%, #F2E6EB 99.55%);
}

.login .login-side .side-overlay .middle-side .list-social li a.facebook {
  border-color: #0069FF;
}

.login .login-side .side-overlay .middle-side .list-social li a.facebook span {
  background-image: linear-gradient(90.69deg, #0069FF 6.91%, #0069FF 99.55%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.login .login-side .side-overlay .middle-side .list-social li a.facebook:hover {
  background: linear-gradient(0deg, #DFE9F7, #DFE9F7);
}

.login .login-side .side-overlay hr {
  width: 75%;
  margin: 0 auto;
  margin-top: 25px;
  margin-bottom: 25px;
  background-color: #E6E6E6;
  height: 1.65px;
}

.login .login-side .side-overlay .bottom-side .head-bottom {
  text-align: center;
}

.login .login-side .side-overlay .bottom-side .head-bottom h2 {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  color: #000;
}

.login .login-side .side-overlay .bottom-side .head-bottom p {
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 500;
  color: #000;
}

.login .login-side .side-overlay .bottom-side form .form-group {
  margin-bottom: 24px;
  position: relative;
}

.login .login-side .side-overlay .bottom-side form .form-group label {
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  left: 15px;
  color: #888;
  font-size: 20px;
}

.login .login-side .side-overlay .bottom-side form .form-group .form-control {
  box-shadow: none;
  outline: 0;
  border-radius: 12px;
  border: 2px solid #888;
  line-height: 28px;
  height: 65px;
  padding: 19px 16px;
  font-size: 18px;
  font-weight: 700;
  direction: rtl;
  color: #888;
}

.login .login-side .side-overlay .bottom-side form .form-group .form-control::placeholder {
  color: #888;
}

.login .login-side .side-overlay .bottom-side form .form-group .form-control:hover,
.login .login-side .side-overlay .bottom-side form .form-group .form-control:focus {
  border-color: #EC5F5E;
}

.login .login-side .side-overlay .bottom-side form .form-group .form-control:hover+label,
.login .login-side .side-overlay .bottom-side form .form-group .form-control:focus+label {
  background-image: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.login .login-side .side-overlay .bottom-side form .form-group [for=passwordLogin],
.login .login-side .side-overlay .bottom-side form .form-group [for=rePasswordLogin] {
  cursor: pointer;
}

.login .login-side .side-overlay .bottom-side form .form-group [type=checkbox]+label {
  position: inherit;
  top: auto;
  transform: none;
  left: auto;
}

.login .login-side .side-overlay .bottom-side form small a {
  margin-top: 16px;
  font-size: 20px;
  color: #000;
  font-weight: 600;
  display: inline-block;
}

.login .login-side .side-overlay .bottom-side form p {
  color: #191A1F;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 24px;
}

.login .login-side .side-overlay .bottom-side form .form-bottom .btn-form .btn {
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  padding-left: 0;
  padding-right: 0;
  border-radius: 12px;
  margin-bottom: 24px;
  padding: 23px 0;
  background: linear-gradient(90.64deg, #EC5F5E 6.91%, #E34385 99.55%);
  overflow: hidden;
  border: 0;
}

.login .login-side .side-overlay .bottom-side form .form-bottom .btn-form .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  padding: 3px;
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
}

.login .login-side .side-overlay .bottom-side form .form-bottom .btn-form .btn:hover {
  background: none;
  background-color: #fff;
}

.login .login-side .side-overlay .bottom-side form .form-bottom .btn-form .btn:hover span {
  background-image: linear-gradient(90.64deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.login .login-side .side-overlay .bottom-side form .form-bottom .btn-form .btn:hover::before {
  z-index: 10;
}

.login .login-side .side-overlay .bottom-side form .form-bottom .btn-form.btn-cancel .btn {
  background: none;
  background-color: #fff;
  border-color: transparent;
  margin-bottom: 0;
}

.login .login-side .side-overlay .bottom-side form .form-bottom .btn-form.btn-cancel .btn span {
  background-image: linear-gradient(90.64deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.login .login-side .side-overlay .bottom-side form .form-bottom .btn-form.btn-cancel .btn::before {
  z-index: 10;
}

.login .login-side .side-overlay .bottom-side form .form-bottom .btn-form.btn-cancel .btn:hover {
  background: linear-gradient(90.64deg, #EC5F5E 6.91%, #E34385 99.55%);
}

.login .login-side .side-overlay .bottom-side form .form-bottom .btn-form.btn-cancel .btn:hover span {
  background: none;
  -webkit-text-fill-color: #fff;
}

.login .login-side .side-overlay .bottom-side form .form-bottom .btn-form.btn-cancel .btn:hover::before {
  z-index: -1;
}

.login .login-side .side-overlay .bottom-side .foot-bottom p {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  color: #888;
  text-align: center;
}

.login .login-side .side-overlay .bottom-side .foot-bottom p a {
  font-weight: 700;
  background-image: linear-gradient(90.64deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.login .register-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login .register-side .register-overlay .top-side {
  margin-bottom: 20px;
}

.login .register-side .register-overlay .top-side .logo {
  margin-bottom: 48px;
}

.login .register-side .register-overlay .bottom-side {
  text-align: center;
}

.login .register-side .register-overlay .bottom-side h2 {
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 700;
  color: #000;
}

.login .register-side .register-overlay .bottom-side p {
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 500;
  color: #000;
}

.login .register-side .register-overlay .btn-form .btn {
  margin: 0 auto;
  width: 205px;
  padding-left: 0;
  padding-right: 0;
}

.modal.modal-forgot .modal-dialog {
  max-width: 750px;
  width: 100%;
}

.modal.modal-forgot .modal-content {
  text-align: center;
  padding: 32px;
}

.modal.modal-forgot .modal-body {
  margin-bottom: 32px;
  padding: 0 36px;
}

.modal.modal-forgot .modal-body .img-model {
  margin-bottom: 46px;
}

.modal.modal-forgot .modal-body .success-message {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  margin-bottom: 16px;
}

.modal.modal-forgot .modal-body .success-message p {
  font-weight: 600;
  color: #000;
  font-size: 30px;
  line-height: 40px;
  text-align: start;
  margin-bottom: 0;
}

.modal.modal-forgot .modal-body .success-message p span {
  font-size: 25px;
  font-weight: 500;
}

.modal.modal-forgot .modal-body .success-message h4 {
  background-image: linear-gradient(90.64deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.modal.modal-forgot .modal-body .success-message.success-message-reset p {
  font-size: 24px;
}

.modal.modal-forgot .modal-body .success-message:last-child {
  margin-bottom: 0;
}

.modal.modal-forgot .form-bottom .btn-form .btn {
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  padding-left: 0;
  padding-right: 0;
  border-radius: 12px;
  padding: 23px 0;
  background: linear-gradient(90.64deg, #EC5F5E 6.91%, #E34385 99.55%);
  overflow: hidden;
  border: 0;
  width: 100%;
  margin-bottom: 0;
}

.modal.modal-forgot .form-bottom .btn-form .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  padding: 3px;
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
}

.modal.modal-forgot .form-bottom .btn-form .btn:hover {
  background: none;
  background-color: #fff;
}

.modal.modal-forgot .form-bottom .btn-form .btn:hover span {
  background-image: linear-gradient(90.64deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal.modal-forgot .form-bottom .btn-form .btn:hover::before {
  z-index: 10;
}

.modal.modal-reset .modal-body .success-message {
  justify-content: center;
}

.categories {
  padding: 50px 0;
  background-color: #f7f7f7;
}

.categories .row {
  row-gap: 20px;
}

.categories .start-categories .top-start {
  background-color: #fff;
}

.categories .start-categories .top-start .start-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.categories .start-categories .top-start .start-content .text-start {
  padding: 20px 15px;
}

.categories .start-categories .top-start .start-content .text-start p {
  font-size: 22px;
  margin: 0;
}

.categories .start-categories .top-start .start-content .text-start p span {
  padding: 0;
  border-radius: 50%;
  background-color: #EC5F5E;
  color: #fff;
  display: inline-block;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 18px;
}

.categories .start-categories .top-start .start-content .icons-start {
  height: 100%;
}

.categories .start-categories .top-start .start-content .icons-start .list-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0;
}

.categories .start-categories .top-start .start-content .icons-start .list-icons .item-list {
  border: 1px solid #f7f7f7;
  color: #888;
  padding: 20px 25px;
  font-size: 19px;
  cursor: pointer;
}

.categories .start-categories .top-start .start-content .icons-start .list-icons .item-list.active,
.categories .start-categories .top-start .start-content .icons-start .list-icons .item-list:hover {
  color: #EC5F5E;
}

.categories .start-categories .top-start .select-cat {
  padding: 15px;
}

.categories .start-categories .top-start .select-cat select {
  height: 100%;
}

.categories .start-categories .top-start .select-cat .select2-container {
  max-width: 100%;
}

.categories .start-categories .top-start .select-cat .select2-container--default .select2-selection--single {
  min-height: 56px;
  border-color: #d2d7de;
  box-shadow: none;
  color: #546b7e;
  padding: 6px 10px;
  font-size: 20px;
}

.categories .start-categories .top-start .select-cat .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 42px;
}

.categories .start-categories .top-start .select-cat .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}

.categories .start-categories .bottom-start .category-item .item-content {
  background-color: #fff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.categories .start-categories .bottom-start .category-item .item-content .head-item {
  overflow: hidden;
}

.categories .start-categories .bottom-start .category-item .item-content .head-item img {
  transition: all ease-in-out 0.3s;
}

.categories .start-categories .bottom-start .category-item .item-content .body-item {
  padding: 0;
  position: relative;
}

.categories .start-categories .bottom-start .category-item .item-content .body-item .list-body {
  margin: 0;
  padding: 0;
}

.categories .start-categories .bottom-start .category-item .item-content .body-item .list-body .item-body {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 7px 15px;
}

.categories .start-categories .bottom-start .category-item .item-content .body-item .list-body .item-body:last-child {
  border: 0;
}

.categories .start-categories .bottom-start .category-item .item-content .body-item .list-body .item-body.cat a {
  color: #656565;
  font-size: 18px;
  font-weight: 500;
}

.categories .start-categories .bottom-start .category-item .item-content .body-item .list-body .item-body.tit a {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.categories .start-categories .bottom-start .category-item .item-content .body-item .list-body .item-body.tit p {
  margin-bottom: 15px;
  color: #888;
  font-size: 16px;
  font-weight: 400;
}

.categories .start-categories .bottom-start .category-item .item-content .body-item .list-body .item-body.opt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
}

.categories .start-categories .bottom-start .category-item .item-content .body-item .list-body .item-body.opt .icon-list {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}

.categories .start-categories .bottom-start .category-item .item-content .body-item .list-body .item-body.opt .icon-list::after {
  content: "";
  position: absolute;
  right: 0;
  top: -5px;
  height: calc(100% + 10px);
  width: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

.categories .start-categories .bottom-start .category-item .item-content .body-item .list-body .item-body.opt .icon-list:first-child {
  margin-left: auto;
  padding-right: 15px;
}

.categories .start-categories .bottom-start .category-item .item-content .body-item .list-body .item-body.opt .icon-list:first-child::after {
  display: none;
}

.categories .start-categories .bottom-start .category-item .item-content .body-item .list-body .item-body.opt .icon-list:hover {
  color: #EC5F5E;
}

.categories .start-categories .bottom-start .category-item .item-content .body-item .list-body .item-body.opt .icon-list.tooltip:hover {
  color: #888;
}

.categories .start-categories .bottom-start .category-item .item-content .body-item .list-body .item-body.opt .icon-list.tooltip i:hover {
  color: #EC5F5E;
}

.categories .start-categories .bottom-start .category-item .item-content .body-item .list-body .item-body.opt .icon-list.edit-icon {
  font-weight: 700;
  color: #EC5F5E;
}

.categories .start-categories .bottom-start .category-item .item-content .body-item .list-body .item-body.feat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #888;
  font-size: 14px;
}

.categories .start-categories .bottom-start .category-item .item-content:hover .head-item img {
  transform: scale(1.1);
}

.categories .start-categories .bottom-start .category-item .item-content .item-prof {
  padding: 0;
  position: absolute;
  top: 50%;
  top: -25px;
  left: 15px;
  width: 50px;
  height: 50px;
  border: 0;
}

.categories .start-categories .bottom-start .category-item .item-content .item-prof .list-prof .item-list {
  display: none;
}

.categories .start-categories .bottom-start .category-item .item-content .item-prof .list-prof .item-list a {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 50%;
}

.categories .start-categories .bottom-start .category-item .item-content .item-prof .list-prof .item-list a img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.categories .start-categories .bottom-start .category-item .item-content .item-prof .list-prof .item-list a span {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 5px;
  z-index: 99;
}

.categories .start-categories .bottom-start .category-item .item-content .item-prof .list-prof .item-list a span.online {
  background-color: green;
}

.categories .start-categories .bottom-start .category-item .item-content .item-prof .list-prof .item-list a span.offline {
  background-color: #888;
}

.categories .start-categories .bottom-start .category-item .item-content .item-prof .list-prof .item-list.item-img {
  display: block;
}

.categories .start-categories .bottom-start .category-item.category-item-list .item-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.categories .start-categories .bottom-start .category-item.category-item-list .item-content .head-item {
  max-width: 31%;
  width: 100%;
}

.categories .start-categories .bottom-start .category-item.category-item-list .item-content .body-item {
  max-width: 70%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.categories .start-categories .bottom-start .category-item.category-item-list .item-content .body-item .list-body {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.categories .start-categories .bottom-start .category-item.category-item-list .item-content .body-item .list-body .item-body {
  border: 0;
  padding: 7px 25px;
  padding-left: 0;
}

.categories .start-categories .bottom-start .category-item.category-item-list .item-content .body-item .list-body .item-body.tit {
  display: grid;
  row-gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
}

.categories .start-categories .bottom-start .category-item.category-item-list .item-content .body-item .list-body .item-body.tit .desc-cat {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipiss;
  color: #888;
  font-size: 16px;
}

.categories .start-categories .bottom-start .category-item.category-item-list .item-content .body-item .list-body .item-body.opt .icon-list:first-child {
  padding: 0;
}

.categories .start-categories .bottom-start .category-item.category-item-list .item-content .body-item .list-body .item-body.feat {
  display: none;
}

.categories .start-categories .bottom-start .category-item.category-item-list .item-content .item-prof {
  position: unset;
  width: auto;
  height: auto;
  max-width: 30%;
  width: 100%;
}

.categories .start-categories .bottom-start .category-item.category-item-list .item-content .item-prof .list-prof {
  display: grid;
  row-gap: 10px;
}

.categories .start-categories .bottom-start .category-item.category-item-list .item-content .item-prof .list-prof .item-list {
  text-align: center;
  display: block;
}

.categories .start-categories .bottom-start .category-item.category-item-list .item-content .item-prof .list-prof .item-list a {
  position: relative;
  height: max-content;
  width: max-content;
  display: inline-block;
  box-shadow: none;
  overflow: visible;
  border-radius: 0;
  background-color: transparent;
}

.categories .start-categories .bottom-start .category-item.category-item-list .item-content .item-prof .list-prof .item-list a img {
  background-color: #f7f7f7;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.categories .start-categories .bottom-start .category-item.category-item-list .item-content .item-prof .list-prof .item-list a span {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  position: absolute;
  bottom: -2px;
  left: 5px;
  z-index: 99;
}

.categories .start-categories .bottom-start .category-item.category-item-list .item-content .item-prof .list-prof .item-list a span.online {
  background-color: green;
}

.categories .start-categories .bottom-start .category-item.category-item-list .item-content .item-prof .list-prof .item-list a span.offline {
  background-color: #888;
}

.categories .start-categories .bottom-start .category-item.category-item-list .item-content .item-prof .list-prof .item-list.item-ads a {
  text-decoration: underline;
  font-size: 14px;
}

.categories .start-categories .bottom-start .category-item.category-item-list .item-content .item-prof .list-prof .item-list.item-contacts a {
  background-color: #cdcfd7;
  padding: 5px 15px;
  border-radius: 20px;
  color: #fff;
  font-size: 13px;
}

.categories .start-categories .bottom-start .category-item.category-item-list .item-content:hover .head-item img {
  transform: scale(1.1);
}

.categories .start-categories .bottom-start .loadMoreBtn .btn {
  width: 100%;
}

.categories .start-categories .bottom-start .row.active .col-xs-12 {
  max-width: 100%;
  width: 100%;
}

.categories .start-categories .bottom-start .row.active .loadMoreBtn {
  display: none;
}

.categories .side-categories {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}

.categories .side-categories .item-side .head-item h3 {
  padding: 30px 15px 15px;
  background-color: rgb(249, 249, 249);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  color: #222;
  font-size: 18px;
  font-weight: 700;
  line-height: 13px;
  text-transform: capitalize;
  margin: 0;
}

.categories .side-categories .item-side .body-item {
  padding: 30px;
  background-color: #fff;
}

.categories .side-categories .item-side .body-item .form-group-item {
  position: relative;
  margin-bottom: 15px;
}

.categories .side-categories .item-side .body-item .form-group-item .form-group {
  position: relative;
  margin: 0;
}

.categories .side-categories .item-side .body-item .form-group-item .form-group label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

.categories .side-categories .item-side .body-item .form-group-item .form-group .form-control {
  border: 0;
  border-bottom: 1px solid #eeeeee;
  font-family: "Tajawal", sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: all ease-in-out 0.3s;
  height: 100%;
  border-radius: 0;
  padding: 7px 15px;
}

.categories .side-categories .item-side .body-item .form-group-item .form-group .form-control::placeholder {
  font-family: "Tajawal", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.categories .side-categories .item-side .body-item .form-group-item .form-group .form-control:focus {
  border-color: #ffafaf;
  outline: 0;
  box-shadow: none;
}

.categories .side-categories .item-side .body-item .form-group-item .form-group input[type=checkbox] {
  display: none;
}

.categories .side-categories .item-side .body-item .form-group-item .form-group input[type=checkbox]~label {
  position: relative;
  font-size: 14px;
  padding-right: 30px;
  cursor: pointer;
  top: auto;
  left: auto;
  transform: none;
  color: #999;
}

.categories .side-categories .item-side .body-item .form-group-item .form-group input[type=checkbox]~label::before {
  background-color: var(--bgColor);
  content: "";
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border: 2px solid var(--borderColor);
}

.categories .side-categories .item-side .body-item .form-group-item .form-group input[type=checkbox]~label::after {
  content: "\f00c";
  color: var(--colorCheck);
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all ease-in-out 0.3s;
}

.categories .side-categories .item-side .body-item .form-group-item .form-group input[type=checkbox]~label span {
  position: absolute;
  top: -5px;
  left: -8px;
  font-size: 12px;
}

.categories .side-categories .item-side .body-item .form-group-item .form-group input[type=checkbox]:checked~label::before {
  border-color: var(--Color);
}

.categories .side-categories .item-side .body-item .form-group-item .form-group input[type=checkbox]:checked~label::after {
  opacity: 1;
}

.categories .side-categories .item-side .body-item .form-group-item .form-group .rangeValues {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  margin-bottom: 15px;
}

.categories .side-categories .item-side .body-item .form-group-item .form-group .rangeSlider {
  margin: 0 12px;
  border: 0;
  border-radius: 0;
  height: 8px;
  margin-bottom: 25px;
}

.categories .side-categories .item-side .body-item .form-group-item .form-group .rangeSlider .noUi-connects {
  background: #f5f4f5;
  border: 0;
  border-radius: 0;
}

.categories .side-categories .item-side .body-item .form-group-item .form-group .rangeSlider .noUi-connects .noUi-connect {
  background: #EC5F5E;
}

.categories .side-categories .item-side .body-item .form-group-item .form-group .rangeSlider .noUi-handle {
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  box-shadow: none;
  border: 10px solid #EC5F5E;
  top: 4px;
  transform: translateY(-50%);
  box-shadow: 4px 4px 9px 2px rgba(0, 0, 0, 0.18);
}

.categories .side-categories .item-side .body-item .form-group-item .form-group .rangeSlider .noUi-handle::after,
.categories .side-categories .item-side .body-item .form-group-item .form-group .rangeSlider .noUi-handle::before {
  display: none;
}

.categories .side-categories .item-side .body-item .form-group-item .search-result {
  background-color: #fff;
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  overflow-y: auto;
  border-radius: 6px;
  height: auto;
  width: 100%;
  opacity: 0;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  visibility: hidden;
  position: absolute;
  top: 100%;
  z-index: 99;
  max-height: 250px;
  overflow-y: auto;
}

.categories .side-categories .item-side .body-item .form-group-item .search-result ul {
  margin: 0;
  padding: 0;
}

.categories .side-categories .item-side .body-item .form-group-item .search-result ul li.item {
  position: relative;
  margin-bottom: 0;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
}

.categories .side-categories .item-side .body-item .form-group-item .search-result ul li.item .content-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: #000;
  font-size: 16px;
  position: relative;
  font-family: "Tajawal", sans-serif;
}

.categories .side-categories .item-side .body-item .form-group-item .search-result ul li.item .content-item::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: transparent;
}

.categories .side-categories .item-side .body-item .form-group-item .search-result ul li.item:hover {
  background-color: #f9f9f9;
}

.categories .side-categories .item-side .body-item .form-group-item .search-result ul li.item:hover .content-item {
  color: #EC5F5E;
}

.categories .side-categories .item-side .body-item .form-group-item .search-result ul li.item.active {
  display: none;
}

.categories .side-categories .item-side .body-item .form-group-item .search-result ul li.item.active-item {
  display: inherit;
}

.categories .side-categories .item-side .body-item .form-group-item .search-result.active {
  opacity: 1;
  visibility: visible;
}

.categories .side-categories .item-side .body-item .form-group-item:last-child {
  margin: 0;
}

.categories .side-categories .item-side .body-item .form-btn {
  margin-top: 15px;
}

.categories .side-categories .item-side .body-item .form-btn .btn {
  width: 100%;
}

.team {
  padding: 50px 0 0;
}

.team .head-section {
  margin-bottom: 30px;
}

.team .head-section.subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.team .head-section.subtitle h3 {
  font-size: 30px;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
}

.team .row {
  row-gap: 40px;
}

.team .team-content {
  padding: 50px 0;
  background-color: #f7f7f7;
}

.team .team-content .item-team {
  background-color: #fff;
  padding: 30px;
  border-radius: 50px;
  border: 2px solid #000;
  transition: all ease-in-out 0.3s;
  margin: 0 8px;
}

.team .team-content .item-team .item-content {
  text-align: center;
}

.team .team-content .item-team .item-content .img-item {
  margin-bottom: 24px;
}

.team .team-content .item-team .item-content .img-item img {
  border-radius: 50%;
}

.team .team-content .item-team .item-content .title-item {
  text-align: center;
  margin-bottom: 24px;
}

.team .team-content .item-team .item-content .title-item h3 {
  font-size: 23px;
  line-height: 23px;
  height: 46px;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.team .team-content .item-team .item-content .title-item p {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
  margin-bottom: 0;
}

.team .team-content .item-team .item-content .info-item {
  text-align: center;
}

.team .team-content .item-team .item-content .info-item .btn {
  max-width: max-content;
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto;
  margin-bottom: 20px;
  padding: 10px 20px;
}

.team .team-content .item-team .item-content .info-item .btn:last-child {
  margin-bottom: 0;
}

.team .team-content .item-team:hover {
  background-color: transparent;
  background-image: linear-gradient(45deg, rgba(244, 148, 44, 0) 0%, rgba(235, 92, 98, 0.2392156863) 100%);
}

.team .team-content .btn-team {
  margin-top: 30px;
}

.team .team-content .btn-team .btn {
  margin: 0 auto;
}

.team .team-content .btn-team .btn:last-child {
  margin-bottom: 0;
}

.about {
  padding: 50px 0 0;
}

.about .head-section {
  margin-bottom: 30px;
}

.about .head-section.subabout {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: start;
  height: 100%;
}

.about .head-section.subabout p {
  font-size: 28px;
  font-weight: 400;
  color: #000;
  text-transform: capitalize;
  line-height: 40px;
  text-align: justify;
  font-family: "Tajawal", sans-serif;
}

.about .head-section.subabout p a {
  color: #EC5F5E;
  font-weight: 600;
}

.about .head-section.subabout p strong {
  font-weight: 700;
}

.about .head-section h5 {
  color: #000;
  font-size: 25px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 46px;
  margin-bottom: 40px;
}

.about .img-section {
  margin-bottom: 30px;
}

.about .img-section img {
  transition: all ease-in-out 0.3s;
}

.about .img-section img:hover {
  transform: scale(1.1);
}

.about .img-section .btn-back {
  margin: 0;
  margin-right: auto;
}

.about .iframe-video {
  text-align: center;
  margin-bottom: 30px;
}

.about .iframe-video iframe {
  border-radius: 20px;
  border: 3px solid #EC5F5E;
}

.about .row {
  row-gap: 40px;
}

.about .row.no-gap {
  row-gap: 0;
}

.about .about-content {
  padding: 50px 0;
  background-color: #f7f7f7;
}

.about .about-content .text-about p {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  text-transform: capitalize;
  line-height: 50px;
  text-align: justify;
  font-family: "Tajawal", sans-serif;
}

.about .about-content .item-about {
  position: relative;
}

.about .about-content .item-about .img-position {
  position: absolute;
  top: -20px;
  right: -80px;
  width: 120px;
  z-index: 999;
}

.about .about-content .item-about .item-head h4 {
  color: #EC5F5E;
  font-size: 30px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 20px;
}

.about .about-content .item-about .img-item.right {
  text-align: start;
}

.about .about-content .item-about .img-item.left {
  text-align: end;
}

.about .about-content .item-about .img-item img {
  transition: all ease-in-out 0.3s;
  width: 100%;
  max-width: 265px;
  margin: 0;
  border-radius: 20px;
}

.about .about-content .item-about .img-item img:hover {
  transform: scale(1.1);
}

.about .about-content .content-text-about {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
}

.about .about-content .content-text-about p {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
  line-height: 50px;
  text-align: justify;
  font-family: "Tajawal", sans-serif;
}

.about .about-content .step {
  padding: 40px 15px;
  border-radius: 8px;
  border: 2px solid rgba(255, 130, 136, 0.3215686275);
  background-color: #fff;
  transition: all ease-in-out 0.3s;
}

.about .about-content .step .img-step {
  margin-bottom: 20px;
}

.about .about-content .step .img-step img {
  transition: all ease-in-out 0.3s;
  width: 100%;
  max-width: 75px;
}

.about .about-content .step .img-step img:hover {
  transform: scale(1.1);
}

.about .about-content .step .info-step {
  text-align: center;
}

.about .about-content .step .info-step h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: #000;
}

.about .about-content .step .info-step p {
  font-weight: 400;
  font-size: 17px;
  margin-bottom: 0;
  height: 78px;
  color: #000;
  font-family: "Tajawal", sans-serif;
  line-height: 26px;
}

.about .about-content .step:hover {
  border-color: rgba(255, 74, 95, 0.6588235294);
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.07);
}

.about .about-content .step.step-big {
  border-radius: 20px;
  padding: 20px;
  border-color: rgba(235, 92, 98, 0.4196078431);
  height: 100%;
}

.about .about-content .step.step-big .info-step h4 {
  font-size: 25px;
  margin-bottom: 30px;
}

.about .about-content .step.step-big .info-step p {
  font-weight: 600;
  font-size: 22px;
  line-height: 35px;
}

.about .about-content .step.step-big:hover {
  border-color: #EC5F5E;
}

.about .about-content .nums .info-nums {
  text-align: center;
}

.about .about-content .nums .info-nums h4 {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 10px;
  color: #EC5F5E;
}

.about .about-content .nums .info-nums p {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 0;
  color: #EC5F5E;
  font-family: "Tajawal", sans-serif;
  text-transform: uppercase;
  line-height: 18px;
}

.about .about-content .btn-about {
  margin-top: 30px;
}

.about .about-content .btn-about .btn {
  margin: 0 auto;
}

.about .about-content .btn-about .btn:last-child {
  margin-bottom: 0;
}

.about .about-content .item-faq {
  padding: 15px 0;
}

.about .about-content .item-faq .accordion {
  border-radius: 0;
}

.about .about-content .item-faq .accordion .accordion-item {
  border-radius: 0;
  border: 2px solid rgba(235, 92, 98, 0.1803921569);
  border-bottom: 0;
}

.about .about-content .item-faq .accordion .accordion-item .accordion-header .accordion-button {
  color: #EC5F5E;
  background-color: #fff;
  border-radius: 0;
  border: 0;
  outline: 0;
  font-size: 18px;
  font-weight: 600;
  padding: 20px;
  padding-right: 40px;
}

.about .about-content .item-faq .accordion .accordion-item .accordion-header .accordion-button::after {
  background: none;
  content: "\f107";
  margin: 0;
  font-weight: 900;
  position: absolute;
  top: 50%;
  transform: translate(50%, -50%);
  font-family: "Font Awesome 6 Free";
  right: 25px;
  color: #EC5F5E;
  font-size: 13px;
  text-align: center;
  line-height: 20px;
}

.about .about-content .item-faq .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
  outline: 0;
}

.about .about-content .item-faq .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  outline: 0;
  box-shadow: none;
  border-bottom: 2px solid rgba(235, 92, 98, 0.1803921569);
}

.about .about-content .item-faq .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f106";
}

.about .about-content .item-faq .accordion .accordion-item .accordion-body {
  background-color: #fff1f5;
  padding: 30px;
}

.about .about-content .item-faq .accordion .accordion-item .accordion-body p {
  font-family: "Tajawal", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
  line-height: 30px;
}

.about .about-content .item-faq .accordion .accordion-item .accordion-body p:last-child {
  margin-bottom: 0;
}

.about .about-content .item-faq .accordion .accordion-item:last-child {
  border-bottom: 2px solid rgba(235, 92, 98, 0.1803921569);
}

.about .about-content .head-text h3 {
  font-size: 30px;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
  text-align: center;
}

.about .about-content .head-text .icon {
  text-align: center;
  margin-bottom: 15px;
}

.about .about-content .head-text .icon i {
  font-size: 50px;
  color: #000;
  transition: all ease-in-out 0.3s;
}

.about .about-content .head-text .icon:hover i {
  transform: scale(1.1);
  color: #EC5F5E;
}

.about .about-content .contact .head-contact-items {
  margin-bottom: 40px;
}

.about .about-content .contact .head-contact-items img {
  transition: all ease-in-out 0.3s;
}

.about .about-content .contact .head-contact-items img:hover {
  transform: scale(0.9);
}

.about .about-content .contact .head-contact-items h3 {
  font-size: 30px;
  font-weight: 600;
  color: #EC5F5E;
  margin: 0;
  text-align: center;
}

.about .about-content .contact .contact-items {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.about .about-content .contact .contact-items .contact-item {
  width: calc(20% - 16px);
  background-color: transparent;
  border-radius: 50px;
  padding: 30px 10px;
  display: grid;
  text-align: center;
  row-gap: 20px;
  transition: all ease-in-out 0.3s;
}

.about .about-content .contact .contact-items .contact-item .icon {
  height: 100px;
  width: 100px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: var(--bgColor);
  color: #fff;
  font-size: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out 0.3s;
}

.about .about-content .contact .contact-items .contact-item .icon:hover {
  transform: scale(0.9);
}

.about .about-content .contact .contact-items .contact-item .head-item h4 {
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  color: #000;
  margin: 0;
}

.about .about-content .contact .contact-items .contact-item .body-item a {
  padding: 15px 30px;
  width: max-content;
  margin: 0 auto;
  direction: ltr;
}

.about .about-content .contact .contact-items .contact-item .body-item p {
  color: #000;
  font-family: "Tajawal", sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 40px;
  margin: 0;
}

.about .about-content .contact .contact-items .contact-item:hover {
  background-image: linear-gradient(45deg, rgba(244, 148, 44, 0) 0%, rgba(242, 41, 91, 0.2) 100%);
}

.about .about-content .contact .contact-items.contact-items-pages .contact-item {
  width: calc(25% - 15px);
}

.about .about-content .contact .contact-items.contact-items-apps .contact-item {
  width: calc(50% - 10px);
}

.about .about-content .contact .contact-form {
  max-width: 480px;
  margin: 20px auto;
  padding: 20px;
  border: 2px solid #d30a0b;
  border-radius: 20px;
}

.about .about-content .contact .contact-form p {
  padding: 10px;
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 28px;
}

.about .about-content .contact .contact-form p a {
  color: #EC5F5E;
  font-weight: 900;
}

.about .about-content .contact .contact-form .form-group {
  padding: 10px;
  margin: 0;
}

.about .about-content .contact .contact-form .form-group .form-control {
  font-size: 20px;
  color: #000;
  border: 1px solid #b9b9b9;
  border-radius: 15px;
  padding: 0 15px;
  height: 48px;
  font-family: "Tajawal", sans-serif;
  transition: all ease-in-out 0.3s;
}

.about .about-content .contact .contact-form .form-group .form-control:hover,
.about .about-content .contact .contact-form .form-group .form-control:focus {
  border-color: #EC5F5E;
  box-shadow: none;
  outline: 0;
}

.about .about-content .contact .contact-form .form-group .form-control::placeholder {
  color: #888;
  line-height: 48px;
}

.about .about-content .contact .contact-form .form-group textarea.form-control {
  height: auto;
  padding: 10px 15px;
}

.about .about-content .contact .contact-form .form-group .btn {
  width: max-content;
  margin: 0 auto;
}

.about .about-content .services .start-services {
  margin-bottom: 50px;
}

.about .about-content .services .start-services .services-text {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
}

.about .about-content .services .start-services .services-text .icon {
  height: 50px;
  width: 50px;
  border: 5px solid #EC5F5E;
  color: #EC5F5E;
  border-radius: 50%;
  font-weight: 900;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12.5px;
}

.about .about-content .services .start-services .services-text p {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  line-height: 48px;
  margin: 0;
  text-align: justify;
  font-family: "Tajawal", sans-serif;
}

.about .about-content .services .start-services .iframe-video {
  text-align: center;
}

.about .about-content .services .start-services .iframe-video iframe {
  border-radius: 20px;
  border: 3px solid #EC5F5E;
}

.about .about-content .services .start-services .pricingPlan {
  padding: 0 15px;
}

.about .about-content .services .bottom-services .services-text {
  text-align: center;
  justify-content: center;
}

.about .about-content .services .bottom-services .services-text h3 {
  font-size: 30px;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
}

.about .about-content .services .bottom-services .services-item {
  background-color: transparent;
  border-radius: 50px;
  padding: 50px;
  display: grid;
  text-align: center;
  row-gap: 50px;
  transition: all ease-in-out 0.3s;
  border: 3px solid #424242;
  margin: 20px 35px;
}

.about .about-content .services .bottom-services .services-item .icon {
  margin: 0 auto;
  color: #424242;
  font-size: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out 0.3s;
}

.about .about-content .services .bottom-services .services-item .icon:hover {
  transform: scale(1.1);
}

.about .about-content .services .bottom-services .services-item .head-item h4 {
  font-size: 35px;
  font-weight: 400;
  line-height: 35px;
  color: #000;
  margin: 0;
}

.about .about-content .services .bottom-services .services-item .body-item a {
  font-size: 20px;
  font-weight: 600;
  fill: #424242;
  color: #424242;
  background-color: rgba(255, 255, 255, 0.0117647059);
  border: 2px solid #424242;
  border-radius: 15px;
  padding: 15px 30px;
  transition: all ease-in-out 0.3s;
  display: block;
  width: max-content;
  margin: 0 auto;
}

.about .about-content .services .bottom-services .services-item .body-item a:hover {
  transform: scale(0.9);
  background-color: #424242;
  color: #fff;
}

.about .about-content .services .bottom-services .services-item:hover {
  background-color: #e7e6e6;
  border-color: #000;
}

.about .about-content .services .bottom-services .services-item.feat-item {
  background-color: #EC5F5E;
  border-color: #EC5F5E;
}

.about .about-content .services .bottom-services .services-item.feat-item .icon {
  color: #fff;
}

.about .about-content .services .bottom-services .services-item.feat-item .head-item h4 {
  color: #fff;
}

.about .about-content .services .bottom-services .services-item.feat-item .body-item a {
  color: #fff;
  border-color: #fff;
  background-color: #EC5F5E;
}

.about .about-content .services .bottom-services .services-item.feat-item .body-item a:hover {
  background-image: linear-gradient(225deg, #eb5c62 0%, #ff882d 100%);
}

.about .about-content .services .bottom-services .services-item.feat-item:hover {
  background-color: #ff8838;
  border-color: #ffb541;
}

.about .about-content .how-to-use {
  margin-top: 50px;
}

.about .about-content .how-to-use .how-text p {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  font-family: "Tajawal", sans-serif;
  margin-bottom: 50px;
  line-height: 40px;
  margin-top: 30px;
}

.about .about-content .how-to-use .how-text a {
  padding: 15px;
  width: max-content;
  margin: 0 auto;
  max-width: 100%;
}

.about .text-payment .head-text {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 30px;
}

.about .text-payment .head-text .num {
  margin-left: 15px;
  margin-right: 15px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  transition: all ease-in-out 0.3s;
  font-weight: 900;
  font-size: 30px;
  cursor: default;
  min-width: 50px;
}

.about .text-payment .head-text .num:hover {
  background-color: #EC5F5E;
}

.about .text-payment .head-text p {
  font-family: "Tajawal", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #000;
}

.about .text-payment .head-text p span {
  color: #EC5F5E;
  font-weight: 900;
  font-family: "Tajawal", sans-serif;
  font-size: 22px;
}

.about .text-payment .list-payment {
  margin-bottom: 50px;
}

.about .text-payment .list-payment li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.about .text-payment .list-payment li .num {
  background-color: transparent;
  color: #000;
  font-size: 20px;
  margin-left: 15px;
  margin-right: 15px;
  transition: all ease-in-out 0.3s;
  font-weight: 900;
  cursor: default;
}

.about .text-payment .list-payment li p {
  font-family: "Tajawal", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #000;
}

.about .text-payment .list-payment li p span {
  color: #EC5F5E;
  font-weight: 900;
  font-family: "Tajawal", sans-serif;
  font-size: 22px;
}

.about .text-payment .list-payment li:hover .num {
  color: #EC5F5E;
}

.about .img-payment {
  margin-bottom: 30px;
}

.about .img-payment img {
  max-width: 200px;
  transition: all ease-in-out 0.3s;
  margin-right: 10px;
}

.about .img-payment img:first-child {
  margin-right: 0;
}

.about .img-payment img:hover {
  transform: scale(1.1);
}

.about.privacy {
  padding: 20px 0;
  background-color: #f7f7f7;
}

.about.privacy .about-content-privacy {
  background-color: #fff;
  padding: 10px 25px;
  border-radius: 20px;
}

.about.privacy .about-content-privacy p {
  font-family: "Tajawal", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
  line-height: 40px;
  text-align: justify;
}

.about.privacy .about-content-privacy p a,
.about.privacy .about-content-privacy p span {
  /* color: #EC5F5E; */
}

.about.privacy .about-content-privacy .list-privacy {
  padding: 0;
  margin-bottom: 20px;
}

.about.privacy .about-content-privacy .list-privacy li {
  font-family: "Tajawal", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  line-height: 30px;
  padding-bottom: 10px;
  margin-right: 30px;
  margin-bottom: 10px;
  position: relative;
  text-align: justify;
}

.about.privacy .about-content-privacy .list-privacy li a,
.about.privacy .about-content-privacy .list-privacy li span {
  color: #EC5F5E;
}

.about.privacy .about-content-privacy .list-privacy li::marker {
  font-size: 30px;
  color: #EC5F5E;
}

.about.privacy .about-content-privacy .list-privacy li::after {
  bottom: 0;
  right: -30px;
  height: 1px;
  background-color: #ddd;
  position: absolute;
  content: "";
  width: calc(100% + 30px);
}

.about.privacy .about-content-privacy .list-privacy li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.about.privacy .about-content-privacy .list-privacy li:last-child::after {
  display: none;
}

.about.privacy .about-content-privacy .list-privacy.list-num li {
  list-style: decimal;
}

.about.privacy .about-content-privacy .list-privacy.list-disc li {
  list-style: disc;
}

.about.privacy .about-content-privacy h4 {
  font-size: 25px;
  font-weight: 600;
  color: #EC5F5E;
  margin-bottom: 20px;
  line-height: 50px;
}

.about.privacy.use .about-content-privacy .list-privacy li::after {
  display: none;
}

.about.privacy.use .about-content-privacy .list-privacy li::marker {
  color: #000;
  font-size: 20px;
}

.about .img-mob {
  display: none;
}

.video-about {
  padding: 30px 0;
  position: relative;
}

.video-about .head-section {
  margin-bottom: 30px;
}

.video-about .video-section {
  position: relative;
}

.video-about .video-section .img-cover {
  border-radius: 50px;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.11);
}

.video-about .video-section a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 100px;
}

.video-about .video-section .imgs .img-position {
  position: absolute;
  top: -20px;
  left: -80px;
  width: 160px;
  z-index: -1;
}

.video-about .video-section .imgs .img-position:last-child {
  top: auto;
  left: auto;
  bottom: -20px;
  right: -80px;
}

.profile {
  padding: 50px 0 0;
}

.profile .profile-content {
  padding: 40px;
  border-radius: 6px;
  border: 1px solid #cfd9e0;
}

.profile .profile-content .img-profile {
  padding: 20px;
  border: 1px solid #cfd9e0;
  border-radius: 6px;
  text-align: center;
}

.profile .profile-content .side-profile {
  display: grid;
  justify-content: flex-start;
  row-gap: 15px;
  position: relative;
}

.profile .profile-content .side-profile .head-side span {
  min-width: 76px;
  height: 32px;
  text-align: center;
  line-height: 29px;
  font-size: 12px;
  border: 2px solid #b7e5a6;
  padding: 0 10px;
  border-radius: 3px;
  color: #6fcc4e;
  text-transform: capitalize;
  display: inline-block;
  background: #f4fbf2;
  margin-bottom: 10px;
}

.profile .profile-content .side-profile .head-side span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6fcc4e;
  content: "";
  display: inline-block;
  margin-right: 0;
  margin-top: -2.5px;
  vertical-align: middle;
  margin-left: 7px;
}

.profile .profile-content .side-profile .head-side span.offline {
  color: #ef5d50;
  background: rgba(243, 30, 36, 0.1);
  border-color: #ef5d50;
}

.profile .profile-content .side-profile .head-side span.offline::before {
  background: #ef5d50;
}

.profile .profile-content .side-profile .head-side h3 {
  font-size: 30px;
  font-weight: 700;
  color: #222;
  text-transform: capitalize;
  margin-bottom: 0;
}

.profile .profile-content .side-profile .middle-side p {
  color: #546b7e;
  font-size: 15px;
  line-height: 18px;
  margin-bottom: 0;
}

.profile .profile-content .side-profile .foot-side {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.profile .profile-content .side-profile .foot-side .icon {
  border: 2px solid #cfd9e0;
  border-radius: 4px;
  padding: 10px;
  color: #909aa1;
}

.profile .profile-content .side-profile .foot-side .text-mail a {
  color: #546b7e;
  font-size: 13px;
  font-weight: 600;
}

.profile .profile-content .side-profile .foot-side .status-veraify {
  background: rgba(243, 30, 36, 0.1);
  color: #ef5d50;
  font-size: 12px;
  height: 28px;
  display: inline-block;
  padding: 0 9px;
  line-height: 28px;
}

.profile .profile-content .side-profile .foot-side .status-veraify.unveraified {
  color: #ef5d50;
  background: rgba(243, 30, 36, 0.1);
}

.profile .profile-content .side-profile .foot-side .status-veraify.veraified {
  color: #6fcc4e;
  background: #f4fbf2;
}

.profile .profile-content .side-profile .send-mail {
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #cfd9e0;
  border-radius: 4px;
}

.profile .profile-content .side-profile .send-mail .mail-content {
  display: flex;
  align-items: center;
}

.profile .profile-content .side-profile .send-mail .mail-content i {
  line-height: 54px;
  padding: 0 20px;
  color: #EC5F5E;
  font-size: 22px;
}

.profile .profile-content .side-profile .send-mail .mail-content a {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  line-height: 54px;
  padding: 0 20px;
  border-left: 2px solid #cfd9e0;
}

.listings {
  padding: 50px 0;
}

.listings .head-section {
  margin-bottom: 30px;
}

.listings .head-section.subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.listings .head-section.subtitle h3 {
  font-size: 30px;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
}

.listings .row {
  row-gap: 24px;
}

.listings .category-item .item-content {
  background-color: #fff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.listings .category-item .item-content .head-item {
  overflow: hidden;
}

.listings .category-item .item-content .head-item img {
  transition: all ease-in-out 0.3s;
}

.listings .category-item .item-content .body-item {
  padding: 0;
  position: relative;
}

.listings .category-item .item-content .body-item .list-body {
  margin: 0;
  padding: 0;
}

.listings .category-item .item-content .body-item .list-body .item-body {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 7px 15px;
}

.listings .category-item .item-content .body-item .list-body .item-body:last-child {
  border: 0;
}

.listings .category-item .item-content .body-item .list-body .item-body.cat a {
  color: #656565;
  font-size: 18px;
  font-weight: 500;
}

.listings .category-item .item-content .body-item .list-body .item-body.tit a {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.listings .category-item .item-content .body-item .list-body .item-body.tit p {
  margin-bottom: 15px;
  color: #888;
  font-size: 16px;
  font-weight: 400;
}

.listings .category-item .item-content .body-item .list-body .item-body.opt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
}

.listings .category-item .item-content .body-item .list-body .item-body.opt .icon-list {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}

.listings .category-item .item-content .body-item .list-body .item-body.opt .icon-list::after {
  content: "";
  position: absolute;
  right: 0;
  top: -5px;
  height: calc(100% + 10px);
  width: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

.listings .category-item .item-content .body-item .list-body .item-body.opt .icon-list:first-child {
  margin-left: auto;
  padding-right: 15px;
}

.listings .category-item .item-content .body-item .list-body .item-body.opt .icon-list:first-child::after {
  display: none;
}

.listings .category-item .item-content .body-item .list-body .item-body.opt .icon-list:hover {
  color: #EC5F5E;
}

.listings .category-item .item-content .body-item .list-body .item-body.opt .icon-list.tooltip:hover {
  color: #888;
}

.listings .category-item .item-content .body-item .list-body .item-body.opt .icon-list.tooltip i:hover {
  color: #EC5F5E;
}

.listings .category-item .item-content .body-item .list-body .item-body.opt .icon-list.edit-icon {
  font-weight: 700;
  color: #EC5F5E;
}

.listings .category-item .item-content .body-item .list-body .item-body.feat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #888;
  font-size: 14px;
}

.listings .category-item .item-content:hover .head-item img {
  transform: scale(1.1);
}

.listings .category-item .item-content .item-prof {
  padding: 0;
  position: absolute;
  top: 50%;
  top: -25px;
  left: 15px;
  width: 50px;
  height: 50px;
  border: 0;
}

.listings .category-item .item-content .item-prof .list-prof .item-list {
  display: none;
}

.listings .category-item .item-content .item-prof .list-prof .item-list a {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 50%;
}

.listings .category-item .item-content .item-prof .list-prof .item-list a img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.listings .category-item .item-content .item-prof .list-prof .item-list a span {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 5px;
  z-index: 99;
}

.listings .category-item .item-content .item-prof .list-prof .item-list a span.online {
  background-color: green;
}

.listings .category-item .item-content .item-prof .list-prof .item-list a span.offline {
  background-color: #888;
}

.listings .category-item .item-content .item-prof .list-prof .item-list.item-img {
  display: block;
}

.listings .loadMoreBtn .btn {
  font-size: 18px;
  width: 100%;
}

.article {
  padding: 50px 0;
}

.article .row {
  row-gap: 24px;
}

.article .start-article {
  background-color: #fff;
  border: 1px solid #eee;
  padding: 0 15px;
  margin-bottom: 30px;
}

.article .start-article .img-article {
  margin: 0 -15px;
  margin-bottom: 30px;
}

.article .start-article .top-article {
  margin-bottom: 30px;
}

.article .start-article .top-article .top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.article .start-article .top-article .top-content .title h3 {
  font-size: 30px;
  font-weight: 600;
  margin: 0;
  color: #000;
  line-height: 28px;
}

.article .start-article .top-article .top-content .end-content ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.article .start-article .top-article .top-content .end-content ul .item-content a {
  font-size: 21px;
  font-family: "Tajawal", sans-serif;
  color: #000;
  font-weight: 600;
  transition: all ease-in-out 0.3s;
}

.article .start-article .top-article .top-content .end-content ul .item-content a:hover {
  color: #EC5F5E;
}

.article .start-article .top-article .top-content .end-content ul .item-content.item-date .date-article {
  background-color: #EC5F5E;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  padding: 10px;
  text-align: center;
}

.article .start-article .top-article .top-content .end-content ul .item-content.item-date .date-article strong {
  font-size: 18px;
  font-weight: 600;
}

.article .start-article .body-article .start-body p {
  font-size: 14px;
  color: #888;
  line-height: 26px;
  margin-bottom: 30px;
}

.article .start-article .body-article .start-body p .start-text {
  float: right;
  line-height: 1;
  font-size: 50px;
  padding: 0 10px;
}

.article .start-article .body-article .item-body {
  margin-bottom: 30px;
}

.article .start-article .body-article .item-body h4 {
  font-size: 30px;
  color: #000;
  line-height: 1;
  margin-bottom: 15px;
  font-weight: 700;
}

.article .start-article .body-article .item-body p {
  font-size: 14px;
  color: #888;
  line-height: 26px;
  margin-bottom: 15px;
}

.article .body-article {
  margin-bottom: 30px;
}

.article .body-article .btn-prev .btn {
  margin: 0 auto;
}

.article .item-article {
  background-color: #fff;
  border: 1px solid #eee;
  padding: 20px;
  margin-bottom: 30px;
  margin-top: 30px;
  border-radius: 6px;
}

.article .item-article h4 {
  margin-bottom: 30px;
  font-weight: 700;
}

.article .item-article .rate-item {
  border: 1px solid #e4e4e4;
  padding: 10px;
  border-radius: 6px;
}

.article .item-article .rate-item .item-content .media {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 15px;
}

.article .item-article .rate-item .item-content .media .img-media img {
  border-radius: 50%;
}

.article .item-article .rate-item .item-content .media .body-media h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.article .item-article .rate-item .item-content .media .body-media h6 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  color: #000;
}

.article .item-article .rate-item .item-content .content-rate p {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
  color: #000;
}

.article .item-article .rate-form .form-group {
  position: relative;
  margin-bottom: 20px;
}

.article .item-article .rate-form .form-group .form-control {
  box-shadow: none;
  outline: 0;
  border-radius: 5px;
  border: 2px solid #e4e4e4;
  line-height: 26px;
  height: 60px;
  padding: 6px 10px;
  font-size: 13px;
}

.article .item-article .rate-form .form-group .form-control::placeholder {
  color: rgba(0, 0, 0, 0.7);
}

.article .item-article .rate-form .form-group .form-control:hover {
  border-color: #EC5F5E;
}

.article .item-article .rate-form .form-group .form-control:focus {
  border-color: #000;
}

.article .item-article .rate-form .form-group textarea.form-control {
  height: 150px;
}

.article .item-article .rate-form .form-group .btn {
  width: auto;
  padding: 12px 20px;
}

.article .item-article .rate-form .form-group.form-btns {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.article .side-article {
  margin-bottom: 30px;
}

.article .side-article .form-side {
  padding: 30px;
  background-color: #fff;
  border: 1px solid #eee;
}

.article .side-article .form-side .form-group {
  position: relative;
  margin: 0;
}

.article .side-article .form-side .form-group .form-control {
  border: 0;
  border: 1px solid #eee;
  font-family: "Tajawal", sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: all ease-in-out 0.3s;
  height: 40px;
  border-radius: 5px;
  padding: 5px 5px 5px 35px;
}

.article .side-article .form-side .form-group .form-control::placeholder {
  font-family: "Tajawal", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.article .side-article .form-side .form-group .form-control:focus {
  outline: 0;
  box-shadow: none;
}

.article .side-article .form-side .form-group .btn {
  background-color: #EC5F5E;
  color: #fff;
  border: 0;
  font-weight: 600;
  transition: all ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  border-radius: 5px;
  height: 30px;
  width: 30px;
}

.article .side-article .form-side .form-group .btn span {
  position: relative;
  z-index: 10;
}

.article .side-article .small-articles {
  padding: 30px;
  background-color: #fff;
  border: 1px solid #eee;
}

.article .side-article .small-articles .small-article {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 30px;
}

.article .side-article .small-articles .small-article:last-child {
  margin-bottom: 0;
}

.article .side-article .small-articles .small-article .content-small h5 {
  margin-bottom: 5px;
}

.article .side-article .small-articles .small-article .content-small h5 a {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: 28px;
}

.article .side-article .small-articles .small-article .content-small p {
  font-size: 14px;
  font-weight: 500;
  color: #888;
  line-height: 24px;
  margin-bottom: 0;
}

.article .side-article .ad-article {
  padding: 30px;
  background-color: #fff;
  border: 1px solid #eee;
}

.article .side-article .ad-article h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: 28px;
  margin-bottom: 15px;
}

.breadcumb-content nav .breadcrumb {
  margin-bottom: 0;
}

.breadcumb-content nav .breadcrumb .breadcrumb-item {
  color: #000;
  padding: 0;
}

.breadcumb-content nav .breadcrumb .breadcrumb-item::before {
  content: "\f053";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #888;
  font-size: 16px;
}

.breadcumb-content nav .breadcrumb .breadcrumb-item a {
  font-weight: 500;
  font-size: 16px;
  color: #888;
}

.breadcumb-content nav .breadcrumb .breadcrumb-item:first-child::before {
  display: none;
}

.product {
  padding: 50px 0;
}

.product .row {
  row-gap: 24px;
}

.product .start-product {
  background-color: #fff;
  margin-bottom: 30px;
}

.product .start-product .imgs {
  position: relative;
  margin-bottom: 32px;
}

.product .start-product .imgs .swiper-big {
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}

.product .start-product .imgs .swiper-big .swiper-button {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 40px;
  width: 40px;
  height: 40px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
  transition: all ease-in-out 0.3s;
}

.product .start-product .imgs .swiper-big .swiper-button::after {
  display: none;
}

.product .start-product .imgs .swiper-big .swiper-button.swiper-button-prev {
  display: none;
}

.product .start-product .imgs .swiper-big .swiper-pagination {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 10px 5px;
  width: max-content;
  border-radius: 8px;
  position: absolute;
  bottom: 16px;
  right: 16px;
  color: #fff;
}

.product .start-product .imgs .swiper-big .swiper-pagination img {
  margin-left: 10px;
}

.product .start-product .imgs .side-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 999;
}

.product .start-product .imgs .side-content .side-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.product .start-product .imgs .side-content .side-list li {
  padding: 8px 16px 8px 16px;
  font-size: 16px;
  font-weight: 500;
}

.product .start-product .imgs .side-content .side-list li.featured {
  color: #fff;
  background: linear-gradient(91.95deg, #EC5F5E 6.91%, #E34385 99.55%);
  border-radius: 0px 16px 0px 16px;
}

.product .start-product .imgs .side-content .side-list li.const {
  background-color: #EC5F5E;
  color: #fff;
  border-radius: 6px;
}

.product .start-product .texts {
  margin-bottom: 30px;
}

.product .start-product .texts .price-long {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product .start-product .texts .price-long .long-start h3 {
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 40px;
}

.product .start-product .texts .price-long .long-start h3 span {
  -webkit-text-fill-color: #000;
  font-weight: 600;
  font-size: 16px;
}

.product .start-product .texts .price-long .long-end .list-price-long {
  gap: 16px;
}

.product .start-product .texts .price-long .long-end .list-price-long .list-item-long a {
  padding: 12px;
}

.product .start-product .texts .price-long .long-end .list-price-long .list-item-long a i {
  color: #B3B3B3;
  font-size: 30px;
}

.product .start-product .texts .price-long .long-end .list-price-long .list-item-long a:hover i {
  background: linear-gradient(90.69deg, #ECA6A5 6.91%, #E39FBB 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product .start-product .texts .price-long .long-end .list-price-long .list-item-long a.active i {
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product .start-product .texts .title {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.product .start-product .texts .title h2 {
  font-size: 28px;
  line-height: 65px;
  margin-bottom: 0;
  font-weight: 600;
  color: #000;
}

.product .start-product .texts .title .feats .list-feats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.product .start-product .texts .title .feats .list-feats li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  position: relative;
  color: #000;
  font-size: 20px;
  font-weight: 500;
}

.product .start-product .texts .title .feats .list-feats li i {
  color: #656565;
  font-size: 20px;
}

.product .start-product .texts .title .feats .list-feats li::after {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  height: 100%;
  width: 1.5px;
  background-color: #6C757D;
}

.product .start-product .texts .title .feats .list-feats li:last-child::after {
  display: none;
}

.product .item-product {
  background-color: #fff;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 20px;
  margin-bottom: 32px;
  border-radius: 16px;
}

.product .item-product .title-details h4 {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.product .item-product .tables .table {
  margin-bottom: 32px;
}

.product .item-product .tables .table tr {
  border: 0;
  margin-bottom: 8px;
  border-radius: 8px;
}

.product .item-product .tables .table tr.tr-color {
  background: #FCF7F7;
}

.product .item-product .tables .table tr.tr-white {
  background: #fff;
}

.product .item-product .tables .table tr th {
  text-align: end;
  padding: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  border-radius: 8px;
  border: 0;
}

.product .item-product .tables .table tr td {
  text-align: start;
  padding: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  border-radius: 8px;
  border: 0;
}

.product .item-product .tables .table tr:last-child {
  margin-bottom: 0;
}

.product .item-product .desc-product p {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 30px;
  margin-bottom: 0;
}

.product .item-product .desc {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  line-height: 30px;
  margin-bottom: 12px;
}

.product .item-product .desc i {
  margin-left: 8px;
  color: #292D32;
}

.product .item-product .details-long {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product .item-product .details-long .long-start p {
  font-weight: 400;
  font-size: 18px;
  color: #000;
  margin-bottom: 0;
}

.product .item-product .details-long .long-end .list-price-long {
  gap: 40px;
  margin-bottom: 0;
}

.product .item-product .details-long .long-end .list-price-long .list-item-long a {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  position: relative;
}

.product .item-product .details-long .long-end .list-price-long .list-item-long a i {
  color: #292D32;
  margin-left: 8px;
}

.product .item-product .details-long .long-end .list-price-long .list-item-long a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  height: 100%;
  width: 1.5px;
  background-color: #6C757D;
}

.product .item-product .details-long .long-end .list-price-long .list-item-long:last-child a {
  color: #EC221F;
}

.product .item-product .details-long .long-end .list-price-long .list-item-long:last-child a i {
  color: #EC221F;
}

.product .item-product .details-long .long-end .list-price-long .list-item-long:last-child a::after {
  display: none;
}

.product .item-product:last-child {
  margin-bottom: 0;
}

.product .side-product {
  background-color: #fff;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 32px;
}

.product .side-product .title-details h4 {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.product .side-product .info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.product .side-product .info h4 {
  font-size: 22px;
  color: #000;
  line-height: 1;
  margin-bottom: 5px;
  font-weight: 700;
}

.product .side-product .info p {
  font-size: 14px;
  color: #888;
  line-height: 26px;
  margin-bottom: 5px;
}

.product .side-product .profile-link {
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
  color: #dc3545;
  margin-bottom: 20px;
  display: inline-block;
}

.product .side-product .profile-link i {
  margin-right: 4px;
}

.product .side-product .bottom-side .list-bottom {
  display: grid;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.product .side-product .bottom-side .list-bottom .list-item {
  width: 100%;
}

.product .side-product .bottom-side .list-bottom .list-item .list-link {
  background: var(--background);
  color: var(--color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 12px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  transition: all ease-in-out 0.3s;
}

.product .side-product .bottom-side .list-bottom .list-item .list-link i {
  color: var(--color);
  margin-left: auto;
  transition: all ease-in-out 0.3s;
}

.product .side-product .bottom-side .list-bottom .list-item .list-link span {
  margin-left: auto;
  transition: all ease-in-out 0.3s;
}

.product .side-product .bottom-side .list-bottom .list-item .list-link:hover {
  background: var(--backgroundh);
  color: var(--colorh);
}

.product .side-product .bottom-side .list-bottom .list-item .list-link:hover i {
  color: var(--colorh);
}

.product .side-product .side-content {
  position: relative;
  border: 2px dashed #FFB9B9;
  border-radius: 16px;
  padding: 24px;
  padding-right: 44px;
  margin-bottom: 56px;
  background: linear-gradient(90.69deg, rgba(245, 233, 233, 0.3) 6.91%, rgba(242, 230, 235, 0.3) 99.55%);
}

.product .side-product .side-content .sparks {
  position: absolute;
  top: -3px;
  right: -3px;
}

.product .side-product .side-content .list-head {
  margin-bottom: 0;
  display: grid;
  row-gap: 5px;
}

.product .side-product .side-content .list-head .item-head {
  color: #000;
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
  list-style: disc;
}

.product .side-product .side-content .list-head .item-head::marker {
  color: #000;
}

.product .side-categories {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}

.product .side-categories .item-side .head-item h3 {
  padding: 30px;
  background-color: rgb(249, 249, 249);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  color: #222;
  font-size: 18px;
  font-weight: 700;
  line-height: 13px;
  text-transform: capitalize;
  margin: 0;
}

.product .side-categories .item-side .body-item {
  padding: 30px;
  background-color: #fff;
}

.product .side-categories .item-side .body-item .form-group-item {
  position: relative;
  margin-bottom: 15px;
}

.product .side-categories .item-side .body-item .form-group-item .form-group {
  position: relative;
  margin: 0;
}

.product .side-categories .item-side .body-item .form-group-item .form-group label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

.product .side-categories .item-side .body-item .form-group-item .form-group .form-control {
  border: 0;
  border-bottom: 1px solid #eeeeee;
  font-family: "Tajawal", sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: all ease-in-out 0.3s;
  height: 100%;
  border-radius: 0;
  padding: 7px 15px;
}

.product .side-categories .item-side .body-item .form-group-item .form-group .form-control::placeholder {
  font-family: "Tajawal", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.product .side-categories .item-side .body-item .form-group-item .form-group .form-control:focus {
  border-color: #ffafaf;
  outline: 0;
  box-shadow: none;
}

.product .side-categories .item-side .body-item .form-group-item .form-group input[type=checkbox] {
  display: none;
}

.product .side-categories .item-side .body-item .form-group-item .form-group input[type=checkbox]~label {
  position: relative;
  font-size: 14px;
  padding-right: 30px;
  cursor: pointer;
  top: auto;
  left: auto;
  transform: none;
  color: #999;
}

.product .side-categories .item-side .body-item .form-group-item .form-group input[type=checkbox]~label::before {
  background-color: var(--bgColor);
  content: "";
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border: 2px solid var(--borderColor);
}

.product .side-categories .item-side .body-item .form-group-item .form-group input[type=checkbox]~label::after {
  content: "\f00c";
  color: var(--colorCheck);
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all ease-in-out 0.3s;
}

.product .side-categories .item-side .body-item .form-group-item .form-group input[type=checkbox]~label span {
  position: absolute;
  top: -5px;
  left: -8px;
  font-size: 12px;
}

.product .side-categories .item-side .body-item .form-group-item .form-group input[type=checkbox]:checked~label::before {
  border-color: var(--Color);
}

.product .side-categories .item-side .body-item .form-group-item .form-group input[type=checkbox]:checked~label::after {
  opacity: 1;
}

.product .side-categories .item-side .body-item .form-group-item .form-group .rangeValues {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  margin-bottom: 15px;
}

.product .side-categories .item-side .body-item .form-group-item .form-group .rangeSlider {
  margin: 0 12px;
  border: 0;
  border-radius: 0;
  height: 8px;
  margin-bottom: 25px;
}

.product .side-categories .item-side .body-item .form-group-item .form-group .rangeSlider .noUi-connects {
  background: #f5f4f5;
  border: 0;
  border-radius: 0;
}

.product .side-categories .item-side .body-item .form-group-item .form-group .rangeSlider .noUi-connects .noUi-connect {
  background: #EC5F5E;
}

.product .side-categories .item-side .body-item .form-group-item .form-group .rangeSlider .noUi-handle {
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  box-shadow: none;
  border: 10px solid #EC5F5E;
  top: 4px;
  transform: translateY(-50%);
  box-shadow: 4px 4px 9px 2px rgba(0, 0, 0, 0.18);
}

.product .side-categories .item-side .body-item .form-group-item .form-group .rangeSlider .noUi-handle::after,
.product .side-categories .item-side .body-item .form-group-item .form-group .rangeSlider .noUi-handle::before {
  display: none;
}

.product .side-categories .item-side .body-item .form-group-item .search-result {
  background-color: #fff;
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  overflow-y: auto;
  border-radius: 6px;
  height: auto;
  width: 100%;
  opacity: 0;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  visibility: hidden;
  position: absolute;
  top: 100%;
  z-index: 99;
  max-height: 250px;
  overflow-y: auto;
}

.product .side-categories .item-side .body-item .form-group-item .search-result ul {
  margin: 0;
  padding: 0;
}

.product .side-categories .item-side .body-item .form-group-item .search-result ul li.item {
  position: relative;
  margin-bottom: 0;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
}

.product .side-categories .item-side .body-item .form-group-item .search-result ul li.item .content-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: #000;
  font-size: 16px;
  position: relative;
  font-family: "Tajawal", sans-serif;
}

.product .side-categories .item-side .body-item .form-group-item .search-result ul li.item .content-item::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: transparent;
}

.product .side-categories .item-side .body-item .form-group-item .search-result ul li.item:hover {
  background-color: #f9f9f9;
}

.product .side-categories .item-side .body-item .form-group-item .search-result ul li.item:hover .content-item {
  color: #EC5F5E;
}

.product .side-categories .item-side .body-item .form-group-item .search-result ul li.item.active {
  display: none;
}

.product .side-categories .item-side .body-item .form-group-item .search-result ul li.item.active-item {
  display: inherit;
}

.product .side-categories .item-side .body-item .form-group-item .search-result.active {
  opacity: 1;
  visibility: visible;
}

.product .side-categories .item-side .body-item .form-group-item:last-child {
  margin: 0;
}

.product .side-categories .item-side .body-item .form-btn {
  margin-top: 15px;
}

.product .side-categories .item-side .body-item .form-btn .btn {
  width: 100%;
}

.product .side-item {
  background-color: #fff;
  border: 1px solid #eee;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 6px;
}

.product .side-item .title-item h4 {
  font-size: 22px;
  color: #000;
  line-height: 1;
  margin-bottom: 15px;
  font-weight: 700;
}

.product .side-item .list-items {
  margin: 0;
  padding: 0;
}

.product .side-item .list-items li.item {
  position: relative;
  margin-bottom: 0;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  border-bottom: 1px solid #cdcfd7;
}

.product .side-item .list-items li.item .content-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: #000;
  font-size: 16px;
  position: relative;
}

.product .side-item .list-items li.item .content-item::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: transparent;
}

.product .side-item .list-items li.item:hover {
  background-color: #f9f9f9;
}

.product .side-item .list-items li.item:hover .content-item {
  color: #EC5F5E;
}

.product .side-item .list-items li.item:last-child {
  border: 0;
}

.product .ad-product {
  padding: 30px;
  background-color: #fff;
  border: 1px solid #eee;
}

.product .ad-product h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: 28px;
  margin-bottom: 15px;
}

.products-product {
  padding: 0 0 50px;
}

.products-product .container-product {
  max-width: 1140px;
}

.products-product .head-products-product h3 {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.products-product .products-product-item {
  padding: 16px;
}

.products-product .products-product-item .item-content {
  background-color: #fff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1019607843);
  transition: all ease-in-out 0.3s;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.products-product .products-product-item .item-content .head-item {
  overflow: hidden;
}

.products-product .products-product-item .item-content .head-item img {
  transition: all ease-in-out 0.3s;
}

.products-product .products-product-item .item-content .body-item {
  padding: 0;
  position: relative;
}

.products-product .products-product-item .item-content .body-item .content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.products-product .products-product-item .item-content .body-item .content p {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 700;
}

.products-product .products-product-item .item-content .body-item .list-body {
  margin: 0;
  padding: 0;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body {
  padding: 0 12px;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.prof {
  padding: 0;
  position: absolute;
  top: 0;
  left: 15px;
  width: 50px;
  height: 50px;
  transform: translateY(-25px);
  border: 0;
  z-index: 99;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.prof a {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 50%;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.prof a img {
  width: 100%;
  height: 100%;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.prof span {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 5px;
  z-index: 99999;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.prof span.online {
  background-color: green;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.prof span.offline {
  background-color: #888;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.cat {
  padding: 12px 12px 16px;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.cat a {
  color: #656565;
  font-size: 18px;
  font-weight: 500;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.tit a {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.tit p {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #888;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.opt {
  margin-bottom: 20px;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.opt .icon-list {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.opt .icon-list img {
  width: 20px;
  display: inline-block;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.opt .icon-list:hover {
  color: #EC5F5E;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.feat {
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.feat .span-price {
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.feat .span-price i {
  color: #292D32;
  font-size: 18px;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.feat .span-price a.item-price-eye {
  color: #000;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.feat .span-price a.item-price-eye i {
  color: #292D32;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.feat .span-price a.item-price-eye:hover {
  -webkit-text-fill-color: #292D32;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.feat .span-price a.active i {
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.feat .span-price:hover i {
  background: linear-gradient(90.69deg, #ECA6A5 6.91%, #E39FBB 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.feat .span-price:hover a.item-price-eye i {
  -webkit-text-fill-color: #292D32;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.feat .span-price:first-child {
  margin-left: auto;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.products-product .products-product-item .item-content .body-item .list-body .item-body.feat .span-price:last-child {
  cursor: pointer;
}

.products-product .products-product-item .item-content .side-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.products-product .products-product-item .item-content .side-content .side-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.products-product .products-product-item .item-content .side-content .side-list li {
  padding: 8px 16px 8px 16px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.products-product .products-product-item .item-content .side-content .side-list li.featured {
  color: #fff;
  background: linear-gradient(91.95deg, #EC5F5E 6.91%, #E34385 99.55%);
  border-radius: 0px 16px 0px 16px;
}

.products-product .products-product-item .item-content .side-content .side-list li.const {
  background-color: #EC5F5E;
  color: #fff;
  border-radius: 6px;
}

.products-product .products-product-item .item-content:hover {
  box-shadow: 0 0 6px 0px #E62A70;
}

.products-product .owl-nav {
  position: absolute;
  top: 50%;
  left: -40px;
  right: -40px;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.products-product .owl-nav .owl-prev,
.products-product .owl-nav .owl-next {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 40px;
  width: 40px;
  height: 40px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
  transition: all ease-in-out 0.3s;
}

.products-product .owl-nav .owl-prev span,
.products-product .owl-nav .owl-next span {
  display: none;
}

.products-product .owl-nav .owl-prev::after,
.products-product .owl-nav .owl-next::after {
  content: "\f060";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.products-product .owl-nav .owl-prev::after {
  content: "\f061";
}

.products-product .pagination {
  gap: 8px;
  margin-bottom: 0;
  margin-top: 16px;
}

.products-product .pagination .page-item a {
  border: 1px solid transparent;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all ease-in-out 0.3s;
  background-color: transparent;
  font-weight: 700;
  font-size: 16px;
}

.products-product .pagination .page-item a:focus {
  outline: 0;
  box-shadow: none;
}

.products-product .pagination .page-item a:hover,
.products-product .pagination .page-item a.active {
  color: #EC5F5E;
  border-color: #EC5F5E;
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-color: transparent;
}

.profile-section .profile-content {
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  border-radius: 32px;
  padding: 56px;
  text-align: center;
}

.profile-section .profile-content .head-content {
  position: relative;
  overflow: hidden;
  margin-bottom: 36px;
}

.profile-section .profile-content .head-content .item-fly {
  position: absolute;
  top: 15px;
  left: 15px;
  transform: rotateZ(-45deg) translate(-75px, -50px);
  width: 270px;
}

.profile-section .profile-content .head-content .item-fly .fly-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  padding: 8px;
  background: linear-gradient(90deg, #FEB734 0%, #ED9101 47.94%, #DB6801 100%);
}

.profile-section .profile-content .head-content .img-profile {
  margin-bottom: 20px;
}

.profile-section .profile-content .head-content .img-profile img {
  border-radius: 36px;
  width: 100%;
}

.profile-section .profile-content .head-content .info-profile .title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 32px;
  color: #000;
}

.profile-section .profile-content .head-content .info-profile .list-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 16px;
  margin-bottom: 0;
}

.profile-section .profile-content .head-content .info-profile .list-info li {
  font-weight: 400;
  font-size: 18px;
  color: #000;
}

.profile-section .profile-content .head-content .info-profile .list-info li i {
  margin-left: 6px;
}

.profile-section .profile-content .bottom-content .list-bottom {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  margin: 0;
  width: auto;
  flex-wrap: wrap;
}

.profile-section .profile-content .bottom-content .list-bottom .list-item .list-link {
  background: var(--background);
  color: var(--color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  transition: all ease-in-out 0.3s;
}

.profile-section .profile-content .bottom-content .list-bottom .list-item .list-link i {
  color: var(--color);
  margin-left: auto;
  transition: all ease-in-out 0.3s;
}

.profile-section .profile-content .bottom-content .list-bottom .list-item .list-link span {
  margin-left: auto;
  transition: all ease-in-out 0.3s;
}

.profile-section .profile-content .bottom-content .list-bottom .list-item .list-link:hover {
  background: var(--backgroundh);
  color: var(--colorh);
}

.profile-section .profile-content .bottom-content .list-bottom .list-item .list-link:hover i {
  color: var(--colorh);
}

.profile-section.profile-public {
  margin: 50px 0;
}

.profile-section.profile-public .profile-content {
  background: linear-gradient(90.69deg, rgba(236, 95, 94, 0.05) 6.91%, rgba(227, 67, 133, 0.05) 99.55%);
  box-shadow: none;
}

.profile-section.profile-public .profile-content .head-content .info-profile .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile-section.profile-public .profile-content .head-content .info-profile .title a {
  font-weight: 500;
  color: #0069FF;
  font-size: 20px;
}

.pricingPlan {
  padding: 65px 0;
}

.pricingPlan .row {
  row-gap: 24px;
}

.pricingPlan .pricingPlan-id {
  margin-bottom: 40px;
}

.pricingPlan .pricingPlan-id .logo {
  margin-bottom: 48px;
}

.pricingPlan .pricingPlan-id .logo img {
  width: 200px;
}

.pricingPlan .pricingPlan-id .text-id h3 {
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 37px;
  font-size: 30px;
  color: #000;
}

.pricingPlan .pricingPlan-id .text-id p {
  margin-bottom: 0;
  font-weight: 500;
  line-height: 36px;
  font-size: 24px;
  color: #000;
}

.pricingPlan .pricingPlan-item {
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
}

.pricingPlan .pricingPlan-item .head-item {
  text-align: center;
  padding: 24px;
}

.pricingPlan .pricingPlan-item .head-item img {
  margin-bottom: 36px;
}

.pricingPlan .pricingPlan-item .head-item h4 {
  font-weight: 700;
  color: #000;
  font-size: 25px;
  margin-bottom: 12px;
  line-height: 25px;
}

.pricingPlan .pricingPlan-item .head-item p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 24px;
  line-height: 25px;
}

.pricingPlan .pricingPlan-item .body-item {
  padding: 24px;
}

.pricingPlan .pricingPlan-item .middle-item h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 32px;
  text-align: center;
  line-height: 50px;
}

.pricingPlan .pricingPlan-item .middle-item h2 span {
  display: inline-block;
  vertical-align: bottom;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 500;
  line-height: 25px;
}

.pricingPlan .pricingPlan-item .middle-item a {
  margin-bottom: 28px;
  display: block;
  transition: all ease-in-out 0.3s;
  padding: 24px 50px;
  border-radius: 12px;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  text-align: center;
}

.pricingPlan .pricingPlan-item .foot-item h6 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  line-height: 25px;
}

.pricingPlan .pricingPlan-item .foot-item .list-item {
  margin-bottom: 0;
  display: grid;
  gap: 12px;
}

.pricingPlan .pricingPlan-item .foot-item .list-item li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
}

.pricingPlan .pricingPlan-item.free .head-item h4 span {
  color: #703B12;
}

.pricingPlan .pricingPlan-item.free .body-item {
  background-color: #FAFAFA;
}

.pricingPlan .pricingPlan-item.free .middle-item a {
  background: linear-gradient(90deg, #F6F2EE 0%, #EDE4DE 100%);
  color: #703B12;
  border: 2px solid #FAFAFA;
}

.pricingPlan .pricingPlan-item.free .middle-item a:hover {
  border-color: #703B12;
  box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.1019607843);
}

.pricingPlan .pricingPlan-item.gold {
  border-color: #E5C100;
  position: relative;
  overflow: hidden;
}

.pricingPlan .pricingPlan-item.gold .head-item img {
  margin-bottom: 48px;
}

.pricingPlan .pricingPlan-item.gold .head-item h4 span {
  color: #E5C100;
}

.pricingPlan .pricingPlan-item.gold .head-item p {
  margin-bottom: 48px;
}

.pricingPlan .pricingPlan-item.gold .body-item {
  background-color: rgba(255, 180, 1, 0.1019607843);
}

.pricingPlan .pricingPlan-item.gold .middle-item a {
  background: linear-gradient(90deg, #F2CC00 0%, #F2B900 47.94%, #F2A900 100%);
  border: 2px solid rgba(255, 180, 1, 0.1019607843);
  color: #fff;
  margin-bottom: 58px;
}

.pricingPlan .pricingPlan-item.gold .middle-item a:hover {
  border-color: #CA5E01;
  color: #984701;
  box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.1019607843);
}

.pricingPlan .pricingPlan-item.gold .item-fly {
  position: absolute;
  top: 15px;
  left: 15px;
  transform: rotateZ(-45deg) translate(-75px, -50px);
  width: 270px;
}

.pricingPlan .pricingPlan-item.gold .item-fly .fly-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  padding: 8px;
  background: linear-gradient(90deg, #FEB734 0%, #ED9101 47.94%, #DB6801 100%);
}

.pricingPlan .pricingPlan-item.blat .head-item h4 span {
  color: #3D3A8F;
}

.pricingPlan .pricingPlan-item.blat .body-item {
  background-color: rgba(221, 227, 237, 0.2);
}

.pricingPlan .pricingPlan-item.blat .middle-item a {
  background: linear-gradient(90deg, #DFE3EC 0%, #E2E4E9 100%);
  color: #3D3A8F;
  border: 2px solid rgba(221, 227, 237, 0.2);
}

.pricingPlan .pricingPlan-item.blat .middle-item a:hover {
  border-color: #3D3A8F;
  box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.1019607843);
}

.goldenPlan-category {
  padding: 65px 0;
}

.goldenPlan-category .steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 64px;
}

.goldenPlan-category .steps .step {
  position: relative;
}

.goldenPlan-category .steps .step .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #E6E6E6;
  margin: 0 auto;
  margin-bottom: 24px;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.goldenPlan-category .steps .step .dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 50%;
}

.goldenPlan-category .steps .step h5 {
  color: #B3B3B3;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  margin-bottom: 0;
  width: max-content;
}

.goldenPlan-category .steps .step.active .dot {
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
}

.goldenPlan-category .steps .step.active .dot::after {
  background: rgba(255, 185, 185, 0.5019607843);
}

.goldenPlan-category .steps .step.active h5 {
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.goldenPlan-category .steps .step.reActive .dot {
  background: #FFB9B9;
}

.goldenPlan-category .steps .step.reActive h5 {
  background: linear-gradient(90.69deg, rgba(236, 95, 94, 0.8) 6.91%, rgba(227, 67, 133, 0.8) 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.goldenPlan-category .steps .line {
  height: 8px;
  border-radius: 8px;
  background-color: #E6E6E6;
  width: 100%;
  margin-top: 10px;
  transform: translateY(-50%);
}

.goldenPlan-category .steps .line.active {
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
}

.goldenPlan-category .head-section {
  display: block;
  text-align: start;
}

.goldenPlan-category .head-section h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #ea5b63;
  margin-bottom: 32px;
}

.goldenPlan-category .box-categories {
  padding: 32px;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1019607843);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 32px;
}

.goldenPlan-category .box-categories .head-box h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  color: #000;
  margin-bottom: 20px;
}

.goldenPlan-category .box-categories .head-box.head-box-category {
  position: relative;
  border: 2px dashed #FFB9B9;
  border-radius: 16px;
  padding: 24px;
  padding-right: 44px;
  margin-bottom: 56px;
  background: linear-gradient(90.69deg, rgba(245, 233, 233, 0.3) 6.91%, rgba(242, 230, 235, 0.3) 99.55%);
}

.goldenPlan-category .box-categories .head-box.head-box-category .sparks {
  position: absolute;
  top: -3px;
  right: -3px;
}

.goldenPlan-category .box-categories .head-box.head-box-category .list-head {
  margin-bottom: 0;
  display: grid;
  row-gap: 5px;
}

.goldenPlan-category .box-categories .head-box.head-box-category .list-head .item-head {
  color: #000;
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
  list-style: disc;
}

.goldenPlan-category .box-categories .head-box.head-box-category .list-head .item-head::marker {
  color: #EC5F5E;
}

.goldenPlan-category .box-categories .head-box.head-box-category.head-box-category-black {
  border-color: #191A1F;
  background: #F2F2F2;
  margin-bottom: 0;
}

.goldenPlan-category .box-categories .head-box.head-box-category.head-box-category-black .sparks {
  position: absolute;
  top: -3px;
  right: -3px;
}

.goldenPlan-category .box-categories .head-box.head-box-category.head-box-category-black .list-head .item-head {
  color: #191A1F;
}

.goldenPlan-category .box-categories .head-box.head-box-category.head-box-category-black .list-head .item-head::marker {
  color: #191A1F;
}

.goldenPlan-category .box-categories .middle-box h3 {
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 56px;
}

.goldenPlan-category .box-categories .middle-box h3.less-margin {
  margin-bottom: 20px;
}

.goldenPlan-category .box-categories .middle-box .middle-box-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 80px;
}

.goldenPlan-category .box-categories .middle-box .middle-box-content .item-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  position: relative;
  margin: 0 5px;
  width: 115px;
}

.goldenPlan-category .box-categories .middle-box .middle-box-content .item-content p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  background: #191A1F;
  border-radius: 16px 16px 0 0;
  padding: 4px 14px 18px 14px;
  position: absolute;
  top: -27px;
  display: none;
  margin: 0;
  left: 0px;
  right: 0px;
  z-index: 0;
  white-space: nowrap;
}

.goldenPlan-category .box-categories .middle-box .middle-box-content .item-content img {
  width: 100%;
  position: relative;
  z-index: 9;
}

.goldenPlan-category .box-categories .middle-box .middle-box-content .item-content .drop-zone {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1.5px dashed #8F8E8E;
  border-radius: 16px;
  cursor: pointer;
  z-index: 10;
}

.goldenPlan-category .box-categories .middle-box .middle-box-content .item-content .drop-zone .inputFile {
  opacity: 0;
  width: 100%;
  height: 100%;
}

.goldenPlan-category .box-categories .middle-box .middle-box-content .item-content .drop-zone .dropdown {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 100;
  display: none;
}

.goldenPlan-category .box-categories .middle-box .middle-box-content .item-content .drop-zone .dropdown .dropdown-toggle {
  border: 0;
  outline: 0;
  box-shadow: none;
  padding: 5px;
  border-radius: 50%;
  background-color: #fff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.1019607843);
}

.goldenPlan-category .box-categories .middle-box .middle-box-content .item-content .drop-zone .dropdown .dropdown-toggle i {
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 21px;
}

.goldenPlan-category .box-categories .middle-box .middle-box-content .item-content .drop-zone .dropdown .dropdown-toggle::after {
  display: none;
}

.goldenPlan-category .box-categories .middle-box .middle-box-content .item-content .drop-zone .dropdown .dropdown-menu {
  padding: 0;
  border: 0;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  min-width: max-content;
}

.goldenPlan-category .box-categories .middle-box .middle-box-content .item-content .drop-zone .dropdown .dropdown-menu li {
  position: relative;
  cursor: pointer;
}

.goldenPlan-category .box-categories .middle-box .middle-box-content .item-content .drop-zone .dropdown .dropdown-menu li .inputFile {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  opacity: 0;
  width: 100%;
  height: 100%;
}

.goldenPlan-category .box-categories .middle-box .middle-box-content .item-content .drop-zone .dropdown .dropdown-menu li .dropdown-item {
  color: #000;
  border-bottom: 1px solid rgba(235, 92, 98, 0.0784313725);
  transition: all ease-in-out 0.3s;
  padding: 8px 12px;
  font-size: 16px;
  color: #000;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  cursor: pointer;
}

.goldenPlan-category .box-categories .middle-box .middle-box-content .item-content .drop-zone .dropdown .dropdown-menu li .dropdown-item:hover {
  background-color: rgba(235, 92, 98, 0.0784313725);
}

.goldenPlan-category .box-categories .middle-box .middle-box-content .item-content .drop-zone .dropdown .dropdown-menu li:last-child .dropdown-item {
  border-color: transparent;
}

.goldenPlan-category .box-categories .middle-box .middle-box-content .item-content.active {
  border: 1px solid #EC5F5E;
  background: #F9ECEC;
  padding: 12px;
  border-radius: 16px;
}

.goldenPlan-category .box-categories .middle-box .middle-box-content .item-content.active .drop-zone {
  border: 0;
  border-radius: 0;
}

.goldenPlan-category .box-categories .middle-box .middle-box-content .item-content.active .drop-zone .dropdown {
  display: block;
}

.goldenPlan-category .box-categories .middle-box .middle-box-content div:first-child .item-content p {
  display: block;
}

.goldenPlan-category .box-categories .middle-box .middle-box-content .item-content:first-child::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  content: "";
  border-radius: 16px;
  z-index: 0;
}

.goldenPlan-category .box-categories .middle-box .middle-box-content .item-content:first-child.active::after {
  background: #F9ECEC;
}

.goldenPlan-category .box-categories .middle-box .middle-box-content .item-content.item-content-small {
  width: auto;
}

.goldenPlan-category .box-categories .middle-box .middle-box-content .item-content.item-content-small p {
  padding: 4px 8px 18px 8px;
  font-size: 13px;
}

.goldenPlan-category .box-categories .middle-box:last-child .middle-box-content {
  margin-bottom: 0;
}

.goldenPlan-category .box-categories .bottom-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  column-gap: 42px;
  /* height: 350px; */
  overflow: hidden;
  overflow-y: auto;
}

.goldenPlan-category .box-categories .bottom-box::-webkit-scrollbar {
  width: 6px;
  background-color: #B8B8B8;
  border-radius: 16px;
  text-align: right;
  right: 0;
  left: auto;
  justify-content: right;
  position: absolute;
}

.goldenPlan-category .box-categories .bottom-box::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}

.goldenPlan-category .box-categories .bottom-box::-webkit-scrollbar-thumb {
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  border-radius: 16px;
  width: 10px;
}

.goldenPlan-category .box-categories .bottom-box .category {
  width: calc((100% - 252px) / 7);
  padding: 15px;
}

.goldenPlan-category .box-categories .bottom-box .category .category-item {
  text-align: center;
  transition: all ease-in-out 0.3s;
}

.goldenPlan-category .box-categories .bottom-box .category .category-item .img-item {
  margin-bottom: 24px;
}

.goldenPlan-category .box-categories .bottom-box .category .category-item .img-item img {
  width: 80px;
  background-color: #E6E6E6;
  border-radius: 50%;
}

.goldenPlan-category .box-categories .bottom-box .category .category-item .item-title {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  height: 60px;
  text-align: center;
}

.goldenPlan-category .box-categories .bottom-box .category .category-item:hover .item-title {
  color: #EC5F5E;
}

.goldenPlan-category .box-categories .bottom-box.bottom-box-category {
  height: auto;
}

.goldenPlan-category .box-categories .bottom-box.bottom-box-category .btn-submit {
  width: 100%;
}

.goldenPlan-category .box-categories .bottom-box.bottom-box-category .btn-submit .btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  background: linear-gradient(90.64deg, #EC5F5E 6.91%, #E34385 99.55%);
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.0705882353);
  border-radius: 12px;
}

.goldenPlan-category .box-categories .bottom-box.bottom-box-category .btn-submit .btn span {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.goldenPlan-category .box-categories .bottom-box.bottom-box-category .btn-submit .btn span.arrow {
  width: auto;
  margin-right: auto;
  background-color: #fff;
  color: #E34385;
  padding: 9px 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out 0.3s;
}

.goldenPlan-category .box-categories .bottom-box.bottom-box-category .btn-submit .btn:hover {
  background: none;
  background-color: #fff;
  padding: 13px;
}

.goldenPlan-category .box-categories .bottom-box.bottom-box-category .btn-submit .btn:hover span {
  background-image: linear-gradient(90.64deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.goldenPlan-category .box-categories .bottom-box.bottom-box-category .btn-submit .btn:hover span.arrow {
  background: linear-gradient(90.64deg, #EC5F5E 6.91%, #E34385 99.55%);
}

.goldenPlan-category .box-categories .bottom-box.bottom-box-category .btn-submit .btn:hover span.arrow i {
  background-image: linear-gradient(90.64deg, #fff 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.goldenPlan-category .box-categories.col-start {
  margin-bottom: 24px;
  padding: 24px;
}

.goldenPlan-category .box-categories.col-start .middle-box .middle-box-content {
  gap: 0;
  row-gap: 24px;
}

.goldenPlan-category .box-categories.col-start .head-box-cat h3 {
  margin-bottom: 0;
  line-height: 36px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.goldenPlan-category .box-categories.col-start .head-box-cat p {
  margin-bottom: 20px;
  line-height: 28px;
  font-size: 18px;
  font-weight: 400;
  color: #656565;
}

.goldenPlan-category .box-categories.col-start:last-child {
  margin-bottom: 24px;
}

.goldenPlan-category .box-categories.col-content {
  box-shadow: none;
  border: 0;
  padding: 0;
}

.goldenPlan-category .middle-box-color {
  background: linear-gradient(90.69deg, rgba(249, 236, 236, 0.4) 6.91%, rgba(249, 236, 241, 0.4) 99.55%);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 48px;
}

.goldenPlan-category .middle-box-color h2 {
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}

.goldenPlan-category .middle-box-color a {
  background: linear-gradient(90.64deg, #EC5F5E 6.91%, #E34385 99.55%);
  border: 3px solid transparent;
  border-radius: 64px;
  padding: 16px 56px;
  display: inline-block;
  width: 100%;
  transition: all ease-in-out 0.3s;
}

.goldenPlan-category .middle-box-color a span {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
}

.goldenPlan-category .middle-box-color a:hover {
  background: #fff;
  border-color: #EC5F5E;
}

.goldenPlan-category .middle-box-color a:hover span {
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.goldenPlan-category .col-content .head-item {
  padding: 20px 48px;
  border-radius: 16px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

.goldenPlan-category .col-content .head-item .row {
  row-gap: 24px;
  align-items: center;
}

.goldenPlan-category .col-content .head-item .start-head-item h3 {
  margin-bottom: 0;
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

.goldenPlan-category .col-content .head-item .middle-head-item .media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.goldenPlan-category .col-content .head-item .middle-head-item .media h5 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #000;
}

.goldenPlan-category .col-content .head-item .end-head-item {
  text-align: end;
}

.float-end {
  float: inline-end;
}

.goldenPlan-category .col-content .head-item .end-head-item a {
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
  color: #dc3545;
}

.goldenPlan-category .col-content .body-item {
  padding: 20px 48px;
  border-radius: 16px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

.goldenPlan-category .col-content .body-item .head-body h3 {
  margin-bottom: 8px;
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

.goldenPlan-category .col-content .body-item .head-box-category {
  position: relative;
  border: 2px dashed #FFB9B9;
  border-radius: 16px;
  padding: 20px 24px;
  padding-right: 44px;
  margin-bottom: 48px;
  background: linear-gradient(90.69deg, rgba(245, 233, 233, 0.3) 6.91%, rgba(242, 230, 235, 0.3) 99.55%);
}

.goldenPlan-category .col-content .body-item .head-box-category .sparks {
  position: absolute;
  top: -3px;
  right: -3px;
}

.goldenPlan-category .col-content .body-item .head-box-category .list-head {
  margin-bottom: 0;
  display: grid;
  row-gap: 5px;
}

.goldenPlan-category .col-content .body-item .head-box-category .list-head .item-head {
  color: #000;
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
  list-style: disc;
}

.goldenPlan-category .col-content .body-item .head-box-category .list-head .item-head::marker {
  color: #EC5F5E;
}

.goldenPlan-category .col-content .body-item .item-field {
  margin-bottom: 20px;
}

.goldenPlan-category .col-content .body-item .item-field h4 {
  margin-bottom: 8px;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 36px;
}

.goldenPlan-category .col-content .body-item .item-field .form-control {
  border: 1px solid #656565;
  border-radius: 12px;
  padding: 16px;
  padding-left: 60px;
  font-weight: 500;
  font-size: 18px;
  direction: rtl;
  margin-bottom: 8px;
}

.goldenPlan-category .col-content .body-item .item-field .form-control::placeholder {
  color: #B5B5B5;
}

.goldenPlan-category .col-content .body-item .item-field .form-control[type=text]~label,
.goldenPlan-category .col-content .body-item .item-field .form-control[type=email]~label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 16px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 2px solid #888888;
  height: 100%;
}

.goldenPlan-category .col-content .body-item .item-field .form-control:focus {
  border-color: #EC5F5E;
  outline: 0;
  box-shadow: none;
}

.goldenPlan-category .col-content .body-item .item-field textarea {
  height: 155px;
}

.goldenPlan-category .col-content .body-item .item-field p {
  text-align: end;
  margin-bottom: 0;
  color: #656565;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.goldenPlan-category .col-content .body-item .item-field .item-field-content-flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.goldenPlan-category .col-content .body-item .item-field .item-field-content-flex .item-flex input {
  display: none;
}

.goldenPlan-category .col-content .body-item .item-field .item-field-content-flex .item-flex input~label {
  padding: 10px 16px;
  padding-right: 52px;
  padding-left: 5px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  color: #1E1E1E;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  position: relative;
  cursor: pointer;
}

.goldenPlan-category .col-content .body-item .item-field .item-field-content-flex .item-flex input~label::after {
  content: "";
  border: 2px solid #656565;
  border-radius: 6px;
  height: 24px;
  width: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
}

.goldenPlan-category .col-content .body-item .item-field .item-field-content-flex .item-flex input~label::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  border-radius: 6px;
  height: 24px;
  width: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background-image: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  color: #fff;
  opacity: 0;
  transition: all ease-in-out 0.3s;
}

.goldenPlan-category .col-content .body-item .item-field .item-field-content-flex .item-flex input:checked~label::before {
  opacity: 1;
}

.goldenPlan-category .col-content .body-item .item-field .item-field-content {
  position: relative;
}

.goldenPlan-category .col-content .body-item .item-field .item-field-content.item-field-icon .form-control~label {
  border: 0;
}

.goldenPlan-category .col-content .body-item .item-field .item-field-content.item-field-icon .form-control:hover,
.goldenPlan-category .col-content .body-item .item-field .item-field-content.item-field-icon .form-control:focus {
  border-color: #EC5F5E;
}

.goldenPlan-category .col-content .body-item .item-field .item-field-content.item-field-icon .form-control:hover~label,
.goldenPlan-category .col-content .body-item .item-field .item-field-content.item-field-icon .form-control:focus~label {
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.goldenPlan-category .col-content .body-item .item-field:last-child {
  margin-bottom: 0;
}

.goldenPlan-category .col-content .body-item:last-child {
  margin-bottom: 48px;
}

.addAd {
  background-color: #f7f7f7;
  padding: 50px 0;
}

.addAd .head-section {
  text-align: start;
  display: unset;
}

.addAd .head-section h2 {
  padding: 0 50px;
  font-weight: 700;
  color: #191A1F;
  font-size: 35px;
  line-height: 70px;
  margin-bottom: 50px;
}

.addAd .head-section h2 strong {
  font-weight: 700;
}

.addAd .head-section .bottom-head {
  border-color: rgb(225, 237, 251) rgb(225, 237, 251) rgb(225, 237, 251) rgb(72, 120, 174);
  background: rgb(225, 237, 251);
  padding: 15px 20px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-left: 5px solid #EC5F5E;
  border-radius: 4px;
  background-color: transparent;
  background-image: linear-gradient(45deg, rgba(244, 148, 44, 0) 0%, rgba(235, 92, 98, 0.2392156863) 100%);
}

.addAd .head-section .bottom-head p {
  color: #EC5F5E;
  font-size: 18px;
  line-height: 24px;
  margin: 0;
}

.addAd .head-section .bottom-head p a {
  color: #EC5F5E;
}

.addAd .item-section {
  border: 1px solid #d2d7de;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 4px;
}

.addAd .item-section .head-item {
  background: #fff;
  padding: 28px 40px;
  border-bottom: 1px solid #d2d7de;
  border-radius: 4px 4px 0px 0px;
}

.addAd .item-section .head-item h4 {
  color: #222;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.addAd .item-section .body-item {
  padding: 60px;
}

.addAd .item-section .body-item .bottom-label {
  background: #fff;
  padding: 15px 20px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border: 1px solid #EAEFF5;
  border-left-width: 5px;
  border-radius: 4px;
}

.addAd .item-section .body-item .bottom-label p {
  color: #546b7e;
  font-size: 18px;
  line-height: 24px;
  margin: 0;
}

.addAd .item-section .body-item .form-group {
  margin-bottom: 26px;
  position: relative;
}

.addAd .item-section .body-item .form-group .row {
  row-gap: 15px;
}

.addAd .item-section .body-item .form-group label {
  font-size: 14px;
  font-weight: bold;
  color: #222;
  margin-bottom: 14px;
  line-height: 26px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.addAd .item-section .body-item .form-group label span {
  color: #EB6752;
  margin-right: 10px;
  font-size: 16px;
}

.addAd .item-section .body-item .form-group label .tooltip {
  padding: 0;
  opacity: 1;
  margin-right: 5px;
  position: relative;
}

.addAd .item-section .body-item .form-group label .tooltip .tooltiptext {
  visibility: hidden;
  width: max-content;
  position: absolute;
  bottom: 165%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  margin-bottom: 0;
  border: 1px solid #d2d7de;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.addAd .item-section .body-item .form-group label .tooltip .tooltiptext span {
  position: relative;
  z-index: 99999;
  padding: 9px 14px;
  color: #000;
  display: inline-block;
  margin-right: 0;
  background-color: #fff;
  border-radius: 6px;
  text-align: center;
}

.addAd .item-section .body-item .form-group label .tooltip .tooltiptext::after {
  content: "";
  border: 10px solid #fff;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(45deg);
  z-index: -5;
}

.addAd .item-section .body-item .form-group label .tooltip .tooltiptext::before {
  content: "";
  border: 10px solid rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(0%, -50%) rotateZ(45deg);
  z-index: -10;
}

.addAd .item-section .body-item .form-group label .tooltip i {
  color: #0967d2;
  font-size: 16px;
}

.addAd .item-section .body-item .form-group label .tooltip:hover .tooltiptext {
  visibility: visible;
}

.addAd .item-section .body-item .form-group .selected-options .selected-items {
  position: absolute;
  top: 40px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px;
  gap: 8px;
  border: 1px solid #d2d7de;
  z-index: 0;
  background: #fff;
  min-width: 150px;
  border-left: 0;
}

.addAd .item-section .body-item .form-group .selected-options .selected-items .selected-item {
  padding: 5px 10px;
  border: 1px solid #ccd5e3;
  background-color: #eff2f7;
  border-radius: 1px;
  line-height: 18px;
  font-size: 18px;
  position: relative;
  padding-right: 20px;
  color: #888888;
}

.addAd .item-section .body-item .form-group .selected-options .selected-items .selected-item i {
  position: absolute;
  top: 50%;
  right: 10.5px;
  transform: translate(50%, -50%);
  font-size: 13px;
  cursor: pointer;
}

.addAd .item-section .body-item .form-group .form-control {
  min-height: 56px;
  border-color: #d2d7de;
  box-shadow: none;
  color: #546b7e;
  padding: 6px 25px;
  font-size: 14px;
  direction: rtl;
}

.addAd .item-section .body-item .form-group .form-control.form-select-op {
  opacity: 1;
}

.addAd .item-section .body-item .form-group .select2-container {
  width: 100% !important;
}

.addAd .item-section .body-item .form-group .select2-container--default .select2-selection--single {
  min-height: 56px;
  border-color: #d2d7de;
  box-shadow: none;
  color: #546b7e;
  padding: 6px 25px;
  font-size: 20px;
}

.addAd .item-section .body-item .form-group .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 42px;
}

.addAd .item-section .body-item .form-group .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}

.addAd .item-section .body-item .form-group #drop-zone {
  border: 3px dashed #d2d7de;
  padding: 20px;
  text-align: center;
  min-height: 330px;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 20px;
}

.addAd .item-section .body-item .form-group #drop-zone.highlight {
  border-color: #fff;
}

.addAd .item-section .body-item .form-group #drop-zone .file-upload-container .avatars {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  column-gap: 9px;
  margin-bottom: 30px;
}

.addAd .item-section .body-item .form-group #drop-zone .file-upload-container .avatars .img-content {
  position: relative;
  text-align: start;
  padding: 5px;
  border: 2px dashed #d2d7de;
  border-radius: 6px;
  overflow: hidden;
}

.addAd .item-section .body-item .form-group #drop-zone .file-upload-container .avatars .img-content img {
  max-width: 130px;
  width: auto;
  margin-bottom: 10px;
  display: block;
  height: auto;
}

.addAd .item-section .body-item .form-group #drop-zone .file-upload-container .avatars .img-content i {
  cursor: pointer;
  margin: 0;
  color: #546b7e;
  font-size: 20px;
  padding: 0 5px;
}

.addAd .item-section .body-item .form-group #drop-zone .file-upload-container .videos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  column-gap: 9px;
  margin-bottom: 30px;
}

.addAd .item-section .body-item .form-group #drop-zone .file-upload-container .videos .img-content,
.addAd .item-section .body-item .form-group #drop-zone .file-upload-container .videos .video-content {
  position: relative;
  text-align: start;
  padding: 5px;
  border: 2px dashed #d2d7de;
  border-radius: 6px;
  overflow: hidden;
}

.addAd .item-section .body-item .form-group #drop-zone .file-upload-container .videos .img-content video,
.addAd .item-section .body-item .form-group #drop-zone .file-upload-container .videos .video-content video {
  max-width: 130px;
  width: auto;
  margin-bottom: 10px;
  display: block;
  height: auto;
}

.addAd .item-section .body-item .form-group #drop-zone .file-upload-container .videos .img-content i,
.addAd .item-section .body-item .form-group #drop-zone .file-upload-container .videos .video-content i {
  cursor: pointer;
  margin: 0;
  color: #546b7e;
  font-size: 20px;
  padding: 0 5px;
}

.addAd .item-section .body-item .form-group #drop-zone .file-upload-container i {
  font-size: 100px;
  color: #ccc;
  margin-bottom: 10px;
}

.addAd .item-section .body-item .form-group #drop-zone .file-upload-container .drag-tip {
  text-align: center;
  color: #000;
  margin-bottom: 10px;
  font-size: 20px;
}

.addAd .item-section .body-item .form-group #drop-zone .file-upload-container span {
  text-align: center;
  color: #000;
  margin-bottom: 10px;
  font-size: 18px;
  display: inline-block;
}

.addAd .item-section .body-item .form-group #drop-zone .file-upload-container #file-element,
.addAd .item-section .body-item .form-group #drop-zone .file-upload-container #file-element-videos,
.addAd .item-section .body-item .form-group #drop-zone .file-upload-container #file-element-images {
  display: none;
}

.addAd .item-section .body-item .form-group #drop-zone .file-upload-container label {
  width: max-content;
  margin: 0 auto;
  min-width: 100px;
  font-size: 14px;
  font-weight: bold;
  border: 2px solid #222;
  background-color: #fff;
  color: #222;
  padding: 10px 30px;
  cursor: pointer;
  border-radius: 5px;
}

.addAd .item-section .body-item .form-group #drop-zone:last-child {
  margin-bottom: 0;
}

.addAd .item-section .body-item .form-group .form-check {
  border: 1px solid #d2d7de;
  padding: 15px;
}

.addAd .item-section .body-item .form-group .form-check input {
  display: none;
}

.addAd .item-section .body-item .form-group .form-check input~label {
  cursor: pointer;
  font-size: 14px;
  color: #546b7e;
  font-weight: 500;
  margin: 0;
  padding-right: 30px;
  position: relative;
}

.addAd .item-section .body-item .form-group .form-check input~label::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  border: 2px solid #546b7e;
  transition: all ease-in-out 0.3s;
}

.addAd .item-section .body-item .form-group .form-check input~label::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  opacity: 0;
  color: #EC5F5E;
  transition: all ease-in-out 0.3s;
}

.addAd .item-section .body-item .form-group .form-check input:checked~label {
  color: #EC5F5E;
}

.addAd .item-section .body-item .form-group .form-check input:checked~label::before {
  border-color: #EC5F5E;
}

.addAd .item-section .body-item .form-group .form-check input:checked~label::after {
  opacity: 1;
}

.addAd .item-section .body-item .form-group:last-child {
  margin-bottom: 0;
}

.addAd .item-section .body-item .item-select-content {
  display: none;
}

.addAd .item-section .body-item .item-select-content.active {
  display: block;
}

.dashboard {
  padding: 50px 0;
}

.dashboard .start-side {
  border-radius: 16px;
  border: 1px solid #eee;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  padding: 16px;
}

.dashboard .start-side .head-side {
  padding-bottom: 16px;
  border-bottom: 1px solid #E6E6E6;
  margin-bottom: 28px;
}

.dashboard .start-side .head-side .media {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.dashboard .start-side .head-side .media .img-profile {
  border-radius: 50%;
}

.dashboard .start-side .head-side .media .img-profile img {
  width: 32px;
}

.dashboard .start-side .head-side .media .body-media h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
  color: #000;
}

.dashboard .start-side .content-side .content-item-side {
  margin-bottom: 28px;
}

.dashboard .start-side .content-side .content-item-side h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000;
}

.dashboard .start-side .content-side .content-item-side ul {
  margin-bottom: 0;
}

.dashboard .start-side .content-side .content-item-side ul li {
  margin-bottom: 16px;
}

.dashboard .start-side .content-side .content-item-side ul li .nav-link {
  padding: 8px 16px;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border-radius: 8px;
  width: 100%;
  border: 0;
  background-color: transparent;
}

.dashboard .start-side .content-side .content-item-side ul li .nav-link span,
.dashboard .start-side .content-side .content-item-side ul li .nav-link i {
  color: #B3B3B3;
  transition: all ease-in-out 0.3s;
}

.dashboard .start-side .content-side .content-item-side ul li .nav-link.active,
.dashboard .start-side .content-side .content-item-side ul li .nav-link:hover {
  background: linear-gradient(90.69deg, rgba(245, 233, 233, 0.7) 6.91%, rgba(242, 230, 235, 0.7) 99.55%);
}

.dashboard .start-side .content-side .content-item-side ul li .nav-link.active span,
.dashboard .start-side .content-side .content-item-side ul li .nav-link.active i,
.dashboard .start-side .content-side .content-item-side ul li .nav-link:hover span,
.dashboard .start-side .content-side .content-item-side ul li .nav-link:hover i {
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dashboard .start-side .content-side .content-item-side ul li .nav-link .num-ad {
  background-color: #FAE1FA;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  padding: 6px 12px;
  margin-right: auto;
}

.dashboard .start-side .content-side .content-item-side ul li:last-child {
  margin-bottom: 0;
}

.dashboard .start-side .content-side .content-item-side:last-child {
  margin-bottom: 0;
}

.dashboard .start-side .content-side .accordion .accordion-item {
  border: 0;
  border-radius: 0;
  margin-bottom: 10px;
}

.dashboard .start-side .content-side .accordion .accordion-item .accordion-button {
  border: 0;
  border-radius: 6px;
  background-color: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 15px 22px;
  font-weight: 700;
  font-size: 14px;
  color: #222;
  transition: all ease-in-out 0.3s;
}

.dashboard .start-side .content-side .accordion .accordion-item .accordion-button span {
  background-color: #EC5F5E;
  color: #fff;
  padding: 0px 5px;
  border-radius: 3px;
}

.dashboard .start-side .content-side .accordion .accordion-item .accordion-button::after {
  margin-left: -15px;
  background: none;
  content: "\f107";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
}

.dashboard .start-side .content-side .accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: #222;
  color: #fff;
}

.dashboard .start-side .content-side .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  transform: rotateX(180deg);
}

.dashboard .start-side .content-side .accordion .accordion-item .accordion-button:hover,
.dashboard .start-side .content-side .accordion .accordion-item .accordion-button.active {
  background-color: #222;
  color: #fff;
}

.dashboard .start-side .content-side .accordion .accordion-item .accordion-button.accordion-btn::after {
  display: none;
}

.dashboard .start-side .content-side .accordion .accordion-item .accordion-body {
  padding-left: 0;
  padding-right: 0;
}

.dashboard .start-side .content-side .accordion .accordion-item .accordion-body .list-body .nav-link {
  color: #546b7e;
  padding: 5px 0;
  border-radius: 0;
  border: 0;
  border-right: 6px solid transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 10px;
  background: none;
  font-size: 18px;
  font-weight: 600;
  transition: all ease-in-out 0.3s;
  margin-bottom: 5px;
  line-height: 24px;
}

.dashboard .start-side .content-side .accordion .accordion-item .accordion-body .list-body .nav-link:last-child {
  margin-bottom: 0;
}

.dashboard .start-side .content-side .accordion .accordion-item .accordion-body .list-body .nav-link::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #e7e7e7;
  border-radius: 50%;
}

.dashboard .start-side .content-side .accordion .accordion-item .accordion-body .list-body .nav-link:hover,
.dashboard .start-side .content-side .accordion .accordion-item .accordion-body .list-body .nav-link.active {
  border-color: #222;
  text-decoration: underline;
  color: #EC5F5E;
}

.dashboard .start-side .content-side .accordion .accordion-item .accordion-body .list-body .nav-link:hover::before,
.dashboard .start-side .content-side .accordion .accordion-item .accordion-body .list-body .nav-link.active::before {
  background-color: #EC5F5E;
}

.dashboard .start-wide {
  border-radius: 16px;
  border: 1px solid #eee;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  padding: 16px;
}

.dashboard .start-wide .item-top {
  background: var(--bgColor);
  padding: 16px;
  border-radius: 12px;
  position: relative;
  width: calc((100% - 64px) / 5);
}

.dashboard .start-wide .item-top img {
  position: absolute;
  top: 12px;
  left: 12px;
  opacity: 0.3;
}

.dashboard .start-wide .item-top .num {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

.dashboard .start-wide .item-top .title-item {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.dashboard .end-side .tab-content .row {
  row-gap: 24px;
}

.dashboard .end-side .tab-content .products .item-content {
  background-color: #fff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1019607843);
  transition: all ease-in-out 0.3s;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.dashboard .end-side .tab-content .products .item-content .head-item {
  overflow: hidden;
}

.dashboard .end-side .tab-content .products .item-content .head-item img {
  transition: all ease-in-out 0.3s;
}

.dashboard .end-side .tab-content .products .item-content .body-item {
  padding: 0;
  position: relative;
}

.dashboard .end-side .tab-content .products .item-content .body-item .content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.dashboard .end-side .tab-content .products .item-content .body-item .content p {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 700;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body {
  margin: 0;
  padding: 0;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body {
  padding: 0 12px;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.prof {
  padding: 0;
  position: absolute;
  top: 0;
  left: 15px;
  width: 50px;
  height: 50px;
  transform: translateY(-25px);
  border: 0;
  z-index: 99;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.prof a {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 50%;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.prof a img {
  width: 100%;
  height: 100%;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.prof span {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 5px;
  z-index: 99999;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.prof span.online {
  background-color: green;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.prof span.offline {
  background-color: #888;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.cat {
  padding: 12px 12px 16px;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.cat a {
  color: #656565;
  font-size: 18px;
  font-weight: 500;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.tit a {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.tit p {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #888;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.opt {
  margin-bottom: 20px;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.opt .icon-list {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.opt .icon-list img {
  width: 20px;
  display: inline-block;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.opt .icon-list:hover {
  color: #EC5F5E;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.feat {
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.feat .span-price {
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.feat .span-price i {
  color: #B3B3B3;
  font-size: 18px;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.feat .span-price a.item-price-eye {
  color: #000;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.feat .span-price a.item-price-eye i {
  color: #292D32;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.feat .span-price a.item-price-eye:hover {
  -webkit-text-fill-color: #292D32;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.feat .span-price a.item-price-wait {
  color: #EC5F5E;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.feat .span-price a.item-price-wait span {
  background-image: linear-gradient(180deg, #FFAC4D 0%, #EB5C62 30%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.feat .span-price a.item-price-wait i {
  background-image: linear-gradient(180deg, #FFAC4D 0%, #EB5C62 30%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.feat .span-price a.active i {
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.feat .span-price:hover i {
  background: linear-gradient(90.69deg, #ECA6A5 6.91%, #E39FBB 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.feat .span-price:hover a.item-price-eye i {
  -webkit-text-fill-color: #292D32;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.feat .span-price:first-child {
  margin-left: auto;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.feat .span-price:last-child {
  cursor: pointer;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.feat .span-price.span-expire {
  -webkit-text-fill-color: #000;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.feat .span-price.span-expire .item-price-expire {
  -webkit-text-fill-color: #EC221F;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.feat .span-price.span-expire .item-price-expire i {
  -webkit-text-fill-color: #EC221F;
}

.dashboard .end-side .tab-content .products .item-content .side-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.dashboard .end-side .tab-content .products .item-content .side-content .side-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.dashboard .end-side .tab-content .products .item-content .side-content .side-list li {
  padding: 8px 16px 8px 16px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.dashboard .end-side .tab-content .products .item-content .side-content .side-list li.featured {
  color: #fff;
  background: linear-gradient(91.95deg, #EC5F5E 6.91%, #E34385 99.55%);
  border-radius: 0px 16px 0px 16px;
}

.dashboard .end-side .tab-content .products .item-content .side-content .side-list li.const {
  background-color: #EC5F5E;
  color: #fff;
  border-radius: 6px;
}

.dashboard .end-side .tab-content .products .item-content .list-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.dashboard .end-side .tab-content .products .item-content .list-hover .list-content {
  display: grid;
  align-self: center;
  gap: 20px;
}

.dashboard .end-side .tab-content .products .item-content .list-hover .list-content .item-list a {
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  background-color: transparent;
  color: #fff;
  line-height: 24px;
  transition: all ease-in-out 0.3s;
}

.dashboard .end-side .tab-content .products .item-content .list-hover .list-content .item-list.item-view a {
  background: linear-gradient(90.64deg, #EC5F5E 6.91%, #E34385 99.55%);
  color: #fff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
}

.dashboard .end-side .tab-content .products .item-content .list-hover .list-content .item-list.item-edit a {
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border: 3px solid #EC5F5E;
  padding: 13px;
}

.dashboard .end-side .tab-content .products .item-content .list-hover .list-content .item-list.item-edit a span {
  background-image: linear-gradient(90.64deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dashboard .end-side .tab-content .products .item-content .list-hover .list-content .item-list.item-edit a:hover {
  background: linear-gradient(90.64deg, #EC5F5E 6.91%, #E34385 99.55%);
  border-color: transparent;
}

.dashboard .end-side .tab-content .products .item-content .list-hover .list-content .item-list.item-edit a:hover span {
  -webkit-text-fill-color: #fff;
}

.dashboard .end-side .tab-content .products .item-content .list-hover .list-content .item-list.item-delete a {
  font-size: 18px;
}

.dashboard .end-side .tab-content .products .item-content .list-hover .list-content .item-list.item-delete a:hover {
  background-color: #000;
  color: #fff;
}

.dashboard .end-side .tab-content .products .item-content .list-hover .list-content .item-list:first-child a {
  background: linear-gradient(90.64deg, #EC5F5E 6.91%, #E34385 99.55%);
  color: #fff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
}

.dashboard .end-side .tab-content .products .item-content .list-hover .list-content .item-list:first-child a span {
  -webkit-text-fill-color: #fff;
}

.dashboard .end-side .tab-content .products .item-content .list-hover .list-content .item-list:first-child a:hover {
  background: linear-gradient(90.64deg, #EC5F5E 6.91%, #E34385 99.55%);
  border-color: transparent;
}

.dashboard .end-side .tab-content .products .item-content .list-hover .list-content .item-list:first-child a:hover span {
  -webkit-text-fill-color: #fff;
}

.dashboard .end-side .tab-content .products .item-content:hover .list-hover {
  opacity: 1;
  visibility: visible;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side {
  border-radius: 16px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
}

.dashboard .end-side .tab-content .editInfo .editInfo-side .head-item {
  padding: 32px;
  text-align: center;
  border-bottom: 1px solid #E6E6E6;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side .head-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side form .form-top {
  padding: 24px;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side form .form-bottom {
  padding: 24px;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side form .form-bottom .form-group {
  display: grid;
  align-self: center;
  gap: 16px;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side form .form-bottom .form-group button {
  display: block;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(90.64deg, #EC5F5E 6.91%, #E34385 99.55%);
  padding: 19px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  border: 0;
  outline: 0;
  border-radius: 12px;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side form .form-bottom .form-group button span {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  background-image: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
}

.dashboard .end-side .tab-content .editInfo .editInfo-side form .form-bottom .form-group button.cancel-changes {
  padding: 16px;
  border: 3px solid #EC5F5E;
  background: #fff;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side form .form-bottom .form-group button.cancel-changes span {
  -webkit-text-fill-color: transparent;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side form .form-group {
  margin-bottom: 24px;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side form .form-group h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  line-height: 36px;
  margin-bottom: 8px;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side form .form-group p {
  font-size: 18px;
  font-weight: 600;
  color: #656565;
  line-height: 30px;
  margin-bottom: 24px;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side form .form-group .upload-img {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 16px;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side form .form-group .upload-img .img-profile {
  width: 200px;
  height: auto;
  border-radius: 16px;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side form .form-group .upload-img #file-img {
  display: none;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side form .form-group .upload-img .upload-content {
  display: grid;
  align-items: center;
  gap: 16px;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side form .form-group .upload-img .upload-content .icon {
  height: 50px;
  width: 50px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  color: #292D32;
  border-radius: 50%;
  font-size: 24px;
  text-align: center;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side form .form-group .upload-img .upload-content .icon.icon-trash {
  color: #EC221F;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side form .form-group .form-group-content {
  position: relative;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side form .form-group .form-group-content .form-control {
  border: 2px solid #888888;
  border-radius: 12px;
  padding: 16px;
  padding-left: 60px;
  font-weight: 500;
  font-size: 18px;
  direction: rtl;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side form .form-group .form-group-content .form-control::placeholder {
  color: #B5B5B5;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side form .form-group .form-group-content .form-control~label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 16px;
  color: #888888;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side form .form-group .form-group-content .form-control:focus {
  border-color: #EC5F5E;
  outline: 0;
  box-shadow: none;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side form .form-group .form-group-content .form-control:focus~label {
  background-image: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side form .form-group:last-child {
  margin-bottom: 0;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side .body-item {
  padding: 24px;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side .body-item .desc {
  color: #C00F0C;
  font-weight: 500;
  font-size: 24px;
  line-height: 40px;
  margin-bottom: 32px;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side .body-item button {
  display: block;
  font-size: 22px;
  font-weight: 700;
  background: #EC221F;
  padding: 19px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  border: 0;
  outline: 0;
  border-radius: 12px;
  width: 100%;
}

.dashboard .end-side .tab-content .editInfo .editInfo-side .body-item button span {
  color: #fff;
}

.pay {
  padding: 50px 0;
}

.pay .head-section {
  margin-bottom: 50px;
}

.pay .credit-info {
  padding: 20px;
  border: 1px solid #d2d7de;
  border-radius: 6px;
}

.pay .credit-info .row {
  row-gap: 0;
}

.pay .credit-info-content .half-input-table label {
  font-size: 14px;
  font-weight: bold;
  color: #222;
  margin-bottom: 5px;
  line-height: 26px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.pay .credit-info-content .half-input-table .select2-container {
  width: 100% !important;
}

.pay .credit-info-content .half-input-table .select2-container--default .select2-selection--single {
  min-height: 56px;
  border-color: #d2d7de;
  box-shadow: none;
  color: #546b7e;
  padding: 6px 25px;
  font-size: 20px;
}

.pay .credit-info-content .half-input-table .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 42px;
}

.pay .credit-info-content .half-input-table .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}

.pay .credit-info-content .half-input-table .form-control {
  min-height: 56px;
  border-color: #d2d7de;
  box-shadow: none;
  color: #546b7e;
  padding: 6px 25px;
  font-size: 14px;
  direction: rtl;
}

.pay .credit-info-content .half-input-table #card-images {
  margin-bottom: 20px;
  background-color: #f7f7f7;
  background-color: transparent;
  background-image: linear-gradient(45deg, rgba(244, 148, 44, 0) 0%, rgba(235, 92, 98, 0.2392156863) 100%);
}

.pay .credit-info-content .half-input-table #card-images img {
  display: none;
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  padding: 20px;
}

.pay .credit-info-content .form-group {
  margin-bottom: 20px;
}

.pay .credit-info-content .form-group label {
  font-size: 14px;
  font-weight: bold;
  color: #222;
  margin-bottom: 5px;
  line-height: 26px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.pay .credit-info-content .form-group .form-control {
  min-height: 56px;
  border-color: #d2d7de;
  box-shadow: none;
  color: #546b7e;
  padding: 6px 25px;
  font-size: 14px;
  direction: rtl;
}

.pay .credit-info-content .form-group .btn {
  margin: 0 auto;
}

.modal {
  z-index: 99999;
}

.modal .btn-close:focus {
  box-shadow: none;
  outline: 0;
}

.modal form .form-group {
  position: relative;
  margin-bottom: 20px;
}

.modal form .form-group .form-control {
  box-shadow: none;
  outline: 0;
  border-radius: 5px;
  border: 2px solid #e4e4e4;
  line-height: 26px;
  height: 60px;
  padding: 6px 10px;
  font-size: 13px;
}

.modal form .form-group .form-control::placeholder {
  color: rgba(0, 0, 0, 0.7);
}

.modal form .form-group .form-control:hover {
  border-color: #EC5F5E;
}

.modal form .form-group .form-control:focus {
  border-color: #000;
}

.modal form .form-group textarea.form-control {
  height: 150px;
}

.modal form .form-group .btn {
  width: auto;
  padding: 12px 20px;
}

.modal form .form-group.form-btns {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.modal form .form-group:last-child {
  margin-bottom: 0;
}

.modal .modal-body.body-forms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.modal .modal-body.body-forms .btn {
  position: relative;
}

.modal .modal-body.body-forms .btn span {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.modal .modal-body.body-forms .btn:hover span {
  color: #EC5F5E;
}

.modal .modal-footer .btn {
  background: none;
  background-color: #222;
  color: #fff;
  padding: 6px 10px;
  font-size: 13px;
}

.modal .modal-footer .btn:hover,
.modal .modal-footer .btn:focus {
  border-color: #222;
  color: #222;
  background-color: #fff;
}

.modal .model-payment {
  max-width: 60%;
}




.ads-bdy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ads-bdy .btn {
  position: relative;
}

.ads-bdy .form-btns .btn span {
  position: absolute !important;
  top: 15px !important;
  left: 15px !important;
  color: #fff !important;
  font-size: 24px !important;
  font-weight: 700 !important;
}

.ads-bdy .btn:hover span {
  color: #EC5F5E !important;
}

.ads-bdy .modal-footer .btn {
  background: none;
  background-color: #222;
  color: #fff;
  padding: 6px 10px;
  font-size: 13px;
}

.ads-bdy .body-forms .btn:hover span {
  color: rgb(236, 95, 94) !important;
}

.home-carousel .owl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 9999;
}

.home-carousel .owl-nav .owl-next,
.home-carousel .owl-nav .owl-prev {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.3) !important;
  color: #fff;
  position: unset;
  opacity: 1;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.home-carousel .owl-nav .owl-next i,
.home-carousel .owl-nav .owl-prev i {
  color: #fff;
  font-size: 20px;
}

.home-carousel .owl-nav .owl-next:hover,
.home-carousel .owl-nav .owl-prev:hover {
  color: #fff;
}

.home-carousel .owl-nav .owl-next {
  left: 15px;
  right: auto;
}

.ad_detail {
  height: 120px;
}

.dashboard .end-side .tab-content .products .item-content .body-item .list-body .item-body.tit a {
  height: 50px;
}

.add-to-favorite {
  color: #B3B3B3;
}

.add-to-favorite:hover {
  color: #E39FBB;
}

.red {
  color: #ea576b !important;
}

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






























#drop-zone {
  border: 3px dashed #d2d7de;
  padding: 20px;
  text-align: center;
  min-height: 330px;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 20px;
}

#drop-zone.highlight {
  border-color: #fff;
}

#drop-zone .file-upload-container .avatars {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  column-gap: 9px;
  margin-bottom: 30px;
}

#drop-zone .file-upload-container .avatars .img-content {
  position: relative;
  text-align: start;
  padding: 5px;
  border: 2px dashed #d2d7de;
  border-radius: 6px;
  overflow: hidden;
}

#drop-zone .file-upload-container .avatars .img-content img {
  max-width: 130px;
  width: auto;
  margin-bottom: 10px;
  display: block;
  height: auto;
}

#drop-zone .file-upload-container .avatars .img-content i {
  cursor: pointer;
  margin: 0;
  color: #546b7e;
  font-size: 20px;
  padding: 0 5px;
}

#drop-zone .file-upload-container .videos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  column-gap: 9px;
  margin-bottom: 30px;
}

#drop-zone .file-upload-container .videos .img-content,
#drop-zone .file-upload-container .videos .video-content {
  position: relative;
  text-align: start;
  padding: 5px;
  border: 2px dashed #d2d7de;
  border-radius: 6px;
  overflow: hidden;
}

#drop-zone .file-upload-container .videos .img-content video,
#drop-zone .file-upload-container .videos .video-content video {
  max-width: 130px;
  width: auto;
  margin-bottom: 10px;
  display: block;
  height: auto;
}

#drop-zone .file-upload-container .videos .img-content i,
#drop-zone .file-upload-container .videos .video-content i {
  cursor: pointer;
  margin: 0;
  color: #546b7e;
  font-size: 20px;
  padding: 0 5px;
}

#drop-zone .file-upload-container i {
  font-size: 100px;
  color: #ccc;
  margin-bottom: 10px;
}

#drop-zone .file-upload-container .drag-tip {
  text-align: center;
  color: #000;
  margin-bottom: 10px;
  font-size: 20px;
}

#drop-zone .file-upload-container span {
  text-align: center;
  color: #000;
  margin-bottom: 10px;
  font-size: 18px;
  display: inline-block;
}

#drop-zone .file-upload-container #file-element,
#drop-zone .file-upload-container #file-element-videos,
#drop-zone .file-upload-container #file-element-images {
  display: none;
}

#drop-zone .file-upload-container label {
  width: max-content;
  margin: 0 auto;
  min-width: 100px;
  font-size: 14px;
  font-weight: bold;
  border: 2px solid #222;
  background-color: #fff;
  color: #222;
  padding: 10px 30px;
  cursor: pointer;
  border-radius: 5px;
}

#drop-zone:last-child {
  margin-bottom: 0;
}

#phone {
  direction: ltr;
  text-align: right;
}

.hideNum {
  direction: ltr;
}

.iti__country-list {
  max-width: 200px;
  text-align: left;
  direction: ltr;
}

.iti {
  width: 100%;
}

.iti__arrow {
  margin-right: 6px !important;
  width: 0;
  height: 0;
  border-left: 5px solid transparent !important;
  border-right: 5px solid transparent !important;
  border-top: 9px solid #555 !important;
}

.mobile-nav {
  background: #e34385;
  position: fixed;
  bottom: 0;
  height: 65px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  z-index: 9999999;
}


.mobile-nav a {
  font-weight: bold;
  color: #fff;
}

.bloc-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}


.bloc-icon img {
  width: 30px;
}


.circle-list {
  counter-reset: my-counter;
  list-style: none;
  padding-right: 0;
}

.circle-list li {
  counter-increment: my-counter;
  position: relative;
  margin: 10px 0;
  padding-right: 50px;
  line-height: 20px;
}

.circle-list li::before {
  content: counter(my-counter);
  position: absolute;
  right: 0;
  top: 0;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;    
  background: linear-gradient(90.69deg, #EC5F5E 6.91%, #E34385 99.55%);
  color: white;
  text-align: center;
  font-weight: bold;  
  font-size: 24px;
  font-weight: 700;
}


.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  position: relative;
  padding-right: 42px; /* space for the bullet image */
}

.custom-list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background-image: url('/assets/img/icons/star.png'); /* Replace with your image path */
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (min-width: 991px) {
  .mobile-nav {
    display: none;
  }
}

