@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Roboto:ital,wght@0,900;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500&display=swap");
@font-face {
  font-family: "Droid Arabic Kufi";
  src: url("../../fonts/DroidArabicKufi-Bold.woff2") format("woff2"), url("../../fonts/DroidArabicKufi-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Droid Arabic Kufi";
  src: url("../../fonts/DroidArabicKufi.woff2") format("woff2"), url("../../fonts/DroidArabicKufi.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  		This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  		calculation of the height of the owl-item that breaks page layouts
  	 */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

* {
  margin: 0;
  padding: 0;
}
*:focus {
  outline: 0;
}

p {
  margin: 0;
}

ul {
  list-style: none;
}

ol,
ul,
h1,
h2,
h3,
h5,
h4,
h6 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none !important;
}

.container {
  max-width: 1560px;
  width: 88%;
}

body {
  font-family: "Quicksand", sans-serif;
  text-align: left;
  direction: ltr;
  background: #FBFCFE;
}

html {
  /*scroll-behavior: smooth;*/
}

nav {
  padding: 10px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
}
nav .nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .nav-item .nav-logo {
  height: 40px;
  overflow: hidden;
}
nav .nav-item .nav-logo img {
  width: 100px;
  height: 45px;
}

.second-nav.inner-nav {
  min-height: 150px !important;
}
.second-nav .over-lay {
  min-height: 150px !important;
}
.second-nav .title-second {
  margin-top: 30px;
}

.burg {
  display: none;
}
.burg img {
  width: 25px;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.nav-links ul {
  display: flex;
  align-items: center;
}
.nav-links ul li {
  margin: 0 10px;
}
.nav-links ul li a {
  color: #fff;
  font-weight: 600;
}

header {
  background: url(../../img/top-Banner.jpeg);
  height: 700px;
  background-size: cover;
  background-position: top center;
  position: relative;
}
header .over-lay {
  width: 100%;
  height: 100%;
  background: #00000036;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .over-lay .content {
  width: 60%;
}
header .over-lay .content h2 {
  color: #fff;
}
header .over-lay .content h2 span {
  background: #41A6DF;
}
header .over-lay .content p {
  color: #fff;
}

.categories {
  background: #fff;
  padding: 15px;
  border-radius: 20px;
  margin: 50px 0 20px 0;
}
.categories ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.categories ul li {
  width: 120px;
}
.categories ul li a {
  width: 100%;
  text-align: center;
  display: block;
}
.categories ul li a img {
  width: 30px;
  height: 30px;
}
.categories ul li a h6 {
  margin-top: 5px;
  color: #545b62;
  font-weight: bold;
}
.categories ul li a span {
  font-size: 13px;
  color: #AFACAC;
}

.item-photo {
  width: 40px;
  height: 40px;
  display: block;
}
.item-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  object-fit: cover;
}

.docegy-cover {
  background: #000;
}

.slider {
  margin-top: 20px;
  margin-bottom: 20px;
}

.slider .owl-next {
  outline: 0;
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}

.slider .owl-next i {
  color: #fff;
}

.slider .owl-next:hover {
  background: transparent !important;
}

.slider .owl-prev {
  outline: 0;
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}

.slider .owl-prev i {
  color: #fff;
}

.slider .owl-prev:hover {
  background: transparent !important;
}

.slid-it {
  width: 165px;
  height: 165px;
  margin: 0 auto;
  padding: 5px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.slid-it:hover {
  border: 2px solid #ffffffa1;
}

.slid-it .slid-ic {
  height: 150px;
  width: 150px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
}

.slid-it .slid-ic span {
  display: flex;
  justify-content: center;
  transition: all 0.5s;
}

.slid-it .slid-ic span svg {
  width: 50px;
  fill: #fff;
  transition: all 0.5s;
}

.slid-it .slid-ic h6 {
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  margin-top: 10px;
  transition: all 0.5s;
}

.slid-it .slid-ic:hover {
  background: #fff;
}

.slid-it .slid-ic:hover span svg {
  fill: #41A6DF;
}

.slid-it .slid-ic:hover h6 {
  color: #41A6DF;
}

.form-search {
  padding: 15px 0px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.3);
  margin-top: 30px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.form-search .select2-container--default .select2-selection--single {
  height: 45px;
  border-radius: 10px;
}
.form-search .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 45px;
  color: #6c757d;
  text-transform: capitalize;
}
.form-search .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 10px;
  right: 2px;
  width: 20px;
}
.form-search .select2-container {
  width: 100% !important;
}

.form-search .select-container {
  width: calc(100% / 4);
  display: flex;
}

.form-search-item {
  position: relative;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  width: calc(100% / 4);
}

.form-search-item span {
  display: block;
  padding: 20px 25px;
}

@media (max-width: 575px) {
  .form-search-item span {
    padding: 20px 15px;
  }
}
.form-search-item span img {
  width: 15px;
}

.form-search-item input,
.form-search-item select {
  height: 100%;
  flex-grow: 1;
  border: 0;
  border-radius: 8px;
  outline: 0;
  color: #777;
  -webkit-appearance: none;
  appearance: none;
}

.form-search-item .search-filter-input {
  height: auto;
  padding: 10px;
  height: 45px;
  border-radius: 10px;
  text-transform: capitalize;
}

.form-search-item .search-filter-input:focus {
  box-shadow: none;
}

/*start  side menu*/
.side-menu {
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0000007d;
  z-index: 5;
  opacity: 0;
  transition: all 1s;
  /* width */
  /* Track */
  /* Handle */
}
.side-menu ::-webkit-scrollbar {
  width: 10px;
}
.side-menu ::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.side-menu ::-webkit-scrollbar-thumb {
  background: #41A6DF;
}

.menu-show {
  visibility: visible;
  opacity: 1;
}
.menu-show .menu-content {
  margin-left: 0;
}

.menu-content {
  width: 410px;
  height: 100%;
  overflow-y: auto;
  background: #F3F3F3;
  margin-left: -100%;
  transition: all 0.5s;
}

.top-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.top-menu .logo {
  width: 30px;
}
.top-menu .closes {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.user-menu {
  border-bottom: 2px solid #F9F9FC;
  padding-bottom: 10px;
}
.user-menu h5 {
  text-transform: capitalize;
  font-weight: 600;
}
.user-menu span {
  font-size: 0.9rem;
}

.user-photo {
  margin: 0px auto 15px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  display: none;
}
.menu-content-head {
  background: #fff;
  padding: 10px;
  box-shadow: 0 0 3px 0px #00000045;
}
.menu-content-head ul {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10px;
}
.menu-content-head ul li {
  cursor: pointer;
}
.menu-content-head ul li .tap-menu {
  margin: auto;
  width: 40px;
  height: 40px;
  background: #41A6DF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}
.menu-content-head ul li .tap-menu img {
  width: 25px;
  height: 25px;
  filter: invert(1);
}
.menu-content-head ul li span {
  display: block;
  margin-top: 5px;
  font-size: 0.9rem;
  text-transform: capitalize;
}

.title-cat {
  color: #7E859B;
  text-transform: capitalize;
}

.menu-content-body {
  background: #fff;
  margin-top: 8px;
  padding: 10px 10px 0px 10px;
  box-shadow: 0 0 3px 0px #00000045;
}
.menu-content-body ul li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

.menu-content-footer {
  background: #fff;
  margin-top: 8px;
  box-shadow: 0 0 3px 0px #00000045;
}

.item-foot {
  display: flex;
}
.item-foot .item-f {
  width: 50%;
  flex-grow: 1;
  padding: 10px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
}
.item-foot .item-f a {
  color: #222;
  font-size: 0.9rem;
  margin: 0 8px;
}
.item-foot .item-f span {
  width: 30px;
  height: 30px;
  background: #41A6DF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.item-foot .item-f span img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

/*start  side menu*/
.body-cards {
  margin: 40px 0;
}

.normal-ads {
  margin: 20px 0;
}

.normal-card {
  border-radius: 10px;
  box-shadow: 0 0 4px 1px #00000029;
  background: #545b620d;
  padding: 15px;
  margin-bottom: 20px;
  cursor: pointer;
  display: flex;
}
.normal-card .img-card {
  width: 200px;
  max-height: 120px;
  overflow: hidden;
  border-radius: 10px;
}
.normal-card .img-card img {
  border-radius: 10px;
  height: 120px;
  object-fit: cover;
}

.normal-info {
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.card-body-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cbi-img {
  display: flex;
  align-items: center;
}
.cbi-img span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
}
.cbi-img span img {
  height: 100%;
}
.cbi-img p {
  font-weight: 600;
  padding: 0 10px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.get-item {
  background: #41A6DF;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 13px;
}
.get-item:hover {
  color: #fff;
}

.card-info.modet {
  padding: 0 0 10px 0;
}

.remove-list {
  background: #dc3545;
}

/* start footer*/
.footer-top {
  padding: 40px 0;
  background: #222222;
}

.foot-logo img {
  margin-bottom: 20px;
}
.foot-logo p {
  color: #888888;
  font-weight: 600;
  margin-bottom: 20px;
}
.foot-logo ul {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.foot-logo ul li {
  width: 50px;
}
.foot-logo ul li span {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  cursor: pointer;
}
.foot-logo ul li span:hover {
  background: #41A6DF;
}
.foot-logo ul li span img {
  width: 20px;
  height: 20px;
  margin: 4px 0;
}
.foot-logo .policy a {
  color: #888888;
  text-decoration: underline !important;
}

.foot-link h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}
.foot-link ul li {
  margin-bottom: 10px;
}
.foot-link ul li a {
  color: #888888;
  font-size: 0.9rem;
}

.contact-us h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}
.contact-us ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.contact-us ul li .icon-mail {
  width: 40px;
  height: 40px;
  background: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.contact-us ul li span {
  color: #888888;
  margin: 0 5px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: #111111;
}
.footer-bottom h6 {
  color: #888888;
  font-weight: 400;
  font-size: 13px;
}
.footer-bottom ul {
  display: flex;
  align-items: center;
}
.footer-bottom ul li {
  margin: 0 8px;
  width: 60px;
  height: 30px;
  background: #222222;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}
.footer-bottom ul li img {
  width: 40px;
}

/* end footer*/
/*start login*/
.p-login {
  display: flex;
  height: 100vh;
}
.p-login h1 {
  margin-top: 100px;
  font-size: 45px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  color: #222222;
}
.p-login h1 span {
  background: #41A6DF;
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
}

.img-login  {
  width: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-login a img {
  width: 90%;
}

.content-login {
  background: #fff;
  width: 50%;
  min-width: 50%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-input {
  width: 400px;
  text-align: center;
}
.login-input h1 {
  display: none;
  margin-top: 100px;
  font-size: 45px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  color: #222222;
}
.login-input h1 span {
  background: #41A6DF;
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
}
.login-input h3 {
  text-align: center;
  margin-bottom: 10px;
  color: #222222;
}
.login-input h2 {
  text-align: center;
  margin-bottom: 10px;
  color: #222222;
}
.login-input > span {
  display: inline-block;
  text-align: center;
  color: #888888;
  margin-bottom: 30px;
}
.login-input > span a {
  color: #41A6DF;
  font-weight: 600;
}

.e-fild {
  margin-bottom: 20px;
}
.e-fild input,
.e-fild textarea {
  height: 40px;
  width: 100%;
  outline: 0;
  border: 0;
  background: #F3F3F3;
  padding: 10px;
  border-radius: 4px;
}
.e-fild input::-webkit-input-placeholder,
.e-fild textarea::-webkit-input-placeholder {
  /* Edge */
  color: #888888;
  font-weight: 500;
}
.e-fild input:-ms-input-placeholder,
.e-fild textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #888888;
  font-weight: 500;
}
.e-fild input::placeholder,
.e-fild textarea::placeholder {
  color: #888888;
  font-weight: 500;
}
.e-fild textarea {
  height: 120px !important;
}

.sad-face {
  margin: 10px 0;
  text-align: center;
}
.sad-face img {
  width: 80px;
  height: 80px;
  margin: auto;
}

.forget-m {
  display: flex;
}
.forget-m a {
  color: #41A6DF;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 10px;
}

.b-login {
  display: flex;
  justify-content: center;
}

.b-sub {
  padding: 10px 39px;
  border-radius: 20px;
  border: 0;
  font-size: 20px;
  background: #41A6DF;
  color: #fff;
  outline: 0;
  cursor: pointer;
  transition: all 0.3s;
}

.b-verify {
  padding: 10px 39px;
  border-radius: 20px;
  font-size: 20px;
  color: #000000;
  background-color: #ffc107;
  border: 1px solid #ffeeba;
  outline: 0;
  cursor: pointer;
  transition: all 0.3s;
}

.b-sub:active {
  transform: scale(0.95);
}

.fild-number {
  position: relative;
}
.fild-number select {
  position: absolute;
  width: 70px;
  top: 5px;
  background: #41A6DF;
  left: 10px;
  height: 30px;
}
.fild-number input {
  padding-left: 100px;
}

/*end login*/
.inner-nav {
  height: auto;
  min-height: 220px;
}
.inner-nav .over-lay {
  min-height: 220px;
  height: auto;
}

.filter {
  margin-top: 20px;
  box-shadow: 0 0 4px 1px #00000029;
  border-radius: 5px;
  overflow: hidden;
}
.filter .head-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background: #41A6DF;
}
.filter .head-filter h4 {
  color: #fff;
  text-transform: capitalize;
}
.filter .filter-body {
  padding: 10px;
  background: #fff;
}

.body-posts {
  padding: 20px 0;
}

.item-filter h5 {
  color: #222222;
  margin-bottom: 10px;
  text-transform: capitalize;
  font-weight: bold;
  font-size: 17px;
}
.item-filter .checkbox-list li .custom-check {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.item-filter .checkbox-list li .custom-check span {
  margin: 0 12px;
  color: #888888;
  text-transform: capitalize;
  font-weight: 500;
}
.item-filter .checkbox-list li .custom-check input {
  position: relative;
  display: flex;
  visibility: hidden;
}
.item-filter .checkbox-list li .custom-check input::before {
  content: " ";
  display: block;
  width: 15px;
  height: 15px;
  border: 2px solid #888888;
  background: #fff;
  position: absolute;
  cursor: pointer;
  visibility: visible;
  z-index: 2;
  transition: all 0.2s;
}
.item-filter .checkbox-list li .custom-check input::after {
  content: " ";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  z-index: 5;
  visibility: visible;
  background: url(../../img/right-check.svg);
  background-size: contain;
  opacity: 0;
  top: 2px;
  left: 3px;
  transition: all 0.2s;
}
.item-filter .checkbox-list li .custom-check input:checked::before {
  border: 2px solid #41A6DF;
}
.item-filter .checkbox-list li .custom-check input:checked::after {
  opacity: 1;
}

.item-slider-r {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.item-slider-r input {
  background-color: #F3F3F3;
  font-size: 14px;
  line-height: 38px;
  color: #222222;
  font-weight: 600;
  border: 1px solid #E4E2E2;
  width: 65px;
  text-align: center;
  height: 35px;
}
.item-slider-r input:-webkit-inner-spin-button {
  display: none;
}

.item-slider-r input[type=number]::-webkit-inner-spin-button,
.item-slider-r input[type=number]::-webkit-outer-spin-button {
  display: none;
}

.ui-widget.ui-widget-content {
  border: 0;
  margin-bottom: 20px;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -7px;
  border-radius: 50%;
  background: #41A6DF;
  cursor: pointer;
}

.footer-button {
  margin-bottom: 10px;
}
.footer-button button {
  width: 100%;
  border: 0;
  background: #41A6DF;
  height: 40px;
  color: #fff;
  text-align: center;
  display: block;
  text-transform: capitalize;
  font-weight: 600;
  transition: all 0.5s;
}
.footer-button button:active {
  transform: scale(0.95);
}

.subscription-packages {
  margin: 40px 0;
}

.dit {
  margin-top: 20px;
}
.dit h5 {
  text-transform: capitalize;
  margin-bottom: 10px;
  padding-left: 4px;
  border-left: 4px solid #41A6DF;
  font-weight: 600;
}
.dit p {
  margin-bottom: 20px;
}
.dit ul {
  list-style: disc;
  padding: 0 15px;
}
.dit ul li {
  font-weight: 600;
  color: #888888;
}
.dit ul li::marker {
  color: #41A6DF;
}

.contact-img {
  margin-top: 40px;
}

/* start section price box */
.owl-packages {
  position: relative;
}
.owl-packages .item {
  margin: 0 10px;
}
.owl-packages .owl-prev {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}
.owl-packages .owl-prev:hover {
  background: transparent !important;
}
.owl-packages .owl-prev img {
  width: 30px;
}
.owl-packages .owl-next {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}
.owl-packages .owl-next:hover {
  background: transparent !important;
}
.owl-packages .owl-next img {
  width: 30px;
}

.price-box .card {
  max-width: 450px;
  height: auto;
  border-radius: 15px;
  position: relative;
  padding: 40px 20px;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
  margin: 30px auto;
}

.price-box .card:hover {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.price-box .item-one:nth-child(1) .card,
.price-box .item-one:nth-child(1) .card .title span {
  background: linear-gradient(-45deg, #41A6DF, #41A6DF);
}

.price-box .item-tow .card,
.price-box .item-tow .card .title span {
  background: linear-gradient(-45deg, #00bcd4, #00bcd4);
}

.price-box .item-one:nth-child(3) .card,
.price-box .item-one:nth-child(3) .card .title span {
  background: linear-gradient(-45deg, #41A6DF, #41A6DF);
}

.price-box .card:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
  -webkit-transform: skewY(-5deg) scale(1.5);
  transform: skewY(-5deg) scale(1.5);
}

.price-box .card .title span {
  color: #fff;
  display: flex;
  margin: auto;
  justify-content: center;
  align-items: center;
  font-size: 60px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  line-height: 100px;
  text-align: center;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.price-box .card .title h2 {
  position: relative;
  font-family: "Raleway", sans-serif;
  margin: 20px 0 0;
  color: #fff;
  font-size: 28px;
  z-index: 2;
}

.price-box .card .price {
  position: relative;
  z-index: 2;
}

.price-box .card .price h4 {
  margin: 0;
  padding: 20px 0;
  color: #fff;
  font-size: 60px;
}

.price-box .card .option {
  position: relative;
  z-index: 2;
}

.price-box .card .option ul {
  margin: 0;
  padding: 0;
}

.price-box .card .option ul li {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: 16px;
}

.price-box .card a {
  position: relative;
  z-index: 2;
  font-weight: 600;
  background: #fff;
  color: #000;
  width: 150px;
  height: 40px;
  display: block;
  text-align: center;
  line-height: 40px;
  margin: 20px auto 0;
  border-radius: 40px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.price-box .card a:hover {
  background-color: #F93D66;
  color: #fff;
}

/* end section price box */
.dit {
  margin-bottom: 20px;
}
.dit p {
  font-size: 15px;
  font-weight: 600;
  color: #888888;
}

.end-date {
  font-weight: 600;
  color: #6c757d;
  font-size: 13px;
}
.end-date img {
  width: 15px;
  height: 15px;
}
.end-date span {
  margin: 0 5px;
}

/*start card-requests*/
.pending-requests {
  margin-bottom: 20px;
}

.card-requests {
  width: 250px;
  margin: 0 10px;
  margin-bottom: 20px;
}
.card-requests .rate-fot {
  justify-content: center;
  padding-top: 0 !important;
}
.card-requests .item-sl {
  background: #41A6DF !important;
}

.card-requests-body {
  border-radius: 10px 10px 0 0;
  padding: 20px 10px 20px 10px;
  background: #fff;
  text-align: center;
}
.card-requests-body h6 {
  margin: 10px 0 5px 0;
  color: #3A3B43;
}
.card-requests-body span {
  color: #B9C8DD;
  font-weight: 300;
}

.price-money {
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-money img {
  width: 25px !important;
  height: 25px;
}
.price-money span {
  padding: 0 8px;
  color: #41A6DF !important;
  font-weight: bold;
}

.s-Pending {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
.s-Pending span {
  font-weight: 500;
  padding: 5px 25px;
  color: #E4B340 !important;
  background: #FDF7EB;
  border-radius: 20px;
  font-size: 13px;
  text-transform: uppercase;
}

.basket {
  width: 100px;
  height: 100px;
  margin: auto;
  background: #D9F5F3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.basket img {
  width: 50px;
  height: 50px;
}

.card-requests-footer {
  display: flex;
}
.card-requests-footer button {
  color: #fff;
  font-weight: 600;
  border: 0;
  width: 50%;
  background: #41A6DF;
  height: 40px;
  transition: all 0.2s;
  cursor: pointer;
}
.card-requests-footer button:focus {
  outline: 0;
}
.card-requests-footer button:active {
  transform: scale(1.05);
}
.card-requests-footer button:nth-child(1) {
  border-radius: 0 0 0 10px;
}
.card-requests-footer button:nth-child(2) {
  border-radius: 0 0 10px 0;
}

/*start top-products*/
.item-top-products {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 25px 10px 20px 10px;
  text-align: center;
}
.item-top-products p {
  margin: 10px 0;
  text-align: center;
  color: #3A3B43;
  font-weight: 500;
  text-transform: capitalize;
  font-weight: bold;
}
.item-top-products span {
  color: #B9C8DD;
  font-weight: 100px;
  text-transform: capitalize;
  font-size: 13px;
}

.product-img2 {
  margin: auto;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 0 5px 0px #E7E7F2;
}
.product-img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r-star {
  background: #FFE6B3;
  display: flex;
  align-items: center;
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  left: 0;
  padding: 5px 10px;
  border-radius: 0 5px 5px 0;
}
.r-star span {
  padding: 0 5px;
  color: #E99D01;
  font-weight: bold;
}

/* end top-products*/
.hide-star .card-post-head::before {
  display: none !important;
}

.modal-header {
  padding: 10px;
}
.modal-header span img {
  width: 15px;
}
.modal-header h5 {
  font-size: 16px;
  font-weight: 600;
  color: #888;
  text-transform: capitalize;
}

.item-breadcrumb {
  margin: 30px 0;
}
.item-breadcrumb ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.item-breadcrumb ul li {
  margin-right: 20px;
  text-transform: capitalize;
  position: relative;
  color: #222222;
  font-weight: 600;
  font-size: 13px;
}
.item-breadcrumb ul li a {
  color: inherit;
}
.item-breadcrumb ul li::after {
  content: ">";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -15px;
}

.item-breadcrumb ul li:last-child {
  color: #888888;
}
.item-breadcrumb ul li:last-child::after {
  display: none;
}

.load-more {
  display: flex;
  justify-content: center;
  margin: 30px 0 20px 0;
}
.load-more button {
  border-radius: 10px;
  background: #000;
  color: #fff;
  padding: 7px 20px;
  border: 0;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.load-more button:hover {
  background: #FA354C;
  color: #fff;
}
.load-more nav {
 position: static !important;,
}

.title-h h4 {
  font-size: 23px;
  font-weight: 600;
  color: #222;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  text-transform: capitalize;
}
.title-h h4::after {
  content: " ";
  display: flex;
  width: 100%;
  height: 18px;
  background: #41a6df26;
  position: absolute;
  z-index: -1;
  top: 15px;
}

.title-h h4::after {
  z-index: 4;
}

.add-post-button button {
  width: 100%;
  height: 40px;
  border: 0;
  background: #41A6DF;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.add-post-button button svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin: 0 5px;
}
.add-post-button button span {
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
}
.add-post-button button:active {
  transform: scale(0.95);
}

.card-post {
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 20px;
  cursor: pointer;
  box-shadow: 0 0 4px 1px #00000029;
  background: #545b620d;
}
.card-post .card-post-head {
  position: relative;
}
.card-post .card-post-head img {
  border-radius: 15px;
  height: 160px;
  object-fit: cover;
  width: 100%;
}
.card-post .card-post-head::before {
  content: " ";
  background-image: url(../../img/star.svg);
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: 10px;
  top: 10px;
  filter: sepia(1);
  opacity: 0.5;
}

.card-info {
  padding: 10px 0;
}
.card-info h4 {
  font-size: 18px;
  font-weight: 600;
}

.card-foot {
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-foot .price {
  color: #dc3545;
  font-weight: 700;
  font-size: 14px;
}
.card-foot ul {
  display: flex;
  align-items: center;
}
.card-foot ul li {
  display: flex;
  align-items: center;
  margin-left: 15px;
}
.card-foot ul li span {
  width: 20px;
  height: 20px;
  background: #6c757d42;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.card-foot ul li span img {
  width: 10px;
  height: 10px;
}
.card-foot ul li p {
  margin: 0 5px;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  color: #6c757d;
}

.link-profile svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}

.login {
  border: 1px solid #fff;
  padding: 5px 10px;
  color: #fff !important;
  min-width: 100px;
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.5s;
}
.login a {
  color: #fff;
}
.login.active {
  background: #41A6DF;
  color: #fff;
  border: 1px solid #41A6DF;
}
.login:active {
  transform: scaleY(0.8);
}

button,
a {
  transition: all 0.5s;
  cursor: pointer;
}
button:focus,
a:focus {
  outline: 0;
}
@media (max-width: 1250px) {
  header .over-lay .content {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .item-trash ul {
    margin-top: 20px;
  }

  header .over-lay .content {
    width: 85%;
  }

  .slider-baner .owl-next {
    right: 10px;
  }

  .slider-baner .owl-prev {
    left: 10px;
  }

  .content {
    padding-top: 50px;
  }

  header {
    height: auto;
  }

  .img-login {
    display: none;
  }

  .content-login {
    width: 100%;
  }

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

  .add-to-rate .item-web {
    display: none;
  }

  .add-to-rate .call-web {
    display: none;
  }

  .add-to-rate .mop-show {
    display: flex !important;
  }

  .steps ul li::after {
    display: none !important;
  }

  .summary {
    margin-top: 20px;
  }

  .billing {
    margin-bottom: 20px;
  }

  .arrivals-body {
    margin: 30px 0;
  }

  .body-order {
    margin-bottom: 20px;
  }

  .content-myorder .item-cm {
    margin-bottom: 15px !important;
  }

  .cm-button button {
    max-width: 300px;
  }

  .res-fl {
    flex-direction: column-reverse;
  }
}
@media (max-width: 776px) {
  .order-summary {
    margin-bottom: 40px;
  }

  .os-item-img {
    flex-direction: column;
  }

  .os-text .information {
    margin: 10px 0 !important;
  }

  .os-text {
    padding: 5px 0 !important;
  }

  .login-input {
    width: 100%;
    padding: 0 15px;
  }

  .burg {
    display: flex;
  }

  .nav-login,
.nav-links {
    display: none;
  }

  header .over-lay .content h2 {
    font-size: 20px;
    text-align: center;
  }

  .slider-baner .owl-nav button {
    width: 30px;
    height: 30px;
  }

  nav .nav-item .nav-logo img {
    width: 30px;
  }

  .burg img {
    width: 20px;
  }

  .form-search {
    flex-direction: column;
    padding: 10px;
  }

  .form-search-item {
    width: 100%;
    margin-bottom: 10px;
  }

  .form-search .select-container {
    width: 100%;
    margin-bottom: 10px;
  }

  .normal-card {
    flex-direction: column;
  }

  .img-card {
    margin: auto;
  }

  .normal-info {
    padding: 0;
  }

  .card-info.modet {
    padding: 10px 0;
  }

  .rate-share ul li span {
    display: none;
  }
}
@media (max-width: 500px) {
  .card-info h4 {
    font-size: 16px;
  }

  .owl-carousel .owl-item img {
    min-height: 200px;
  }

  .header .over-lay .content {
    width: 95%;
  }

  .menu-content {
    width: 100%;
  }

  .container {
    width: 98%;
  }

  .footer-bottom {
    flex-direction: column;
  }
  .footer-bottom h6 {
    margin-bottom: 10px;
  }
}
/* width */
::-webkit-scrollbar {
  width: 7px;
  border-radius: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #41A6DF;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

@keyframes mymove1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0px);
  }
}
.gallery {
  display: flex;
  height: 300px;
  overflow: hidden;
}
.gallery .gallery-show {
  flex-grow: 1;
  background: #fff;
  height: 100%;
  overflow: hidden;
}
.gallery .gallery-nav {
  height: 100%;
  width: 100px;
  padding: 10px;
}

.item-nav {
  overflow: hidden;
  margin-bottom: 10px;
  cursor: pointer;
  border: 2px solid #fff;
  padding: 2px;
  height: calc(100% / 3 - 10px);
}

.select {
  border: 2px solid #41A6DF;
}

.show-item {
  padding: 10px;
}
.show-item .prod-img {
  text-align: center;
}
.show-item .prod-img img {
  width: 220px;
  border-radius: 5px;
}

.prod-dis {
  display: flex;
  flex-direction: row-reverse;
}
.prod-dis span {
  background: #fff3b2;
  border-radius: 20px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-dis span svg {
  width: 13px;
  height: 13px;
}

.main-slider .item {
  padding: 5px 10px;
}

.product-info h4 {
  color: #222;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.s-title {
  color: #888888;
  display: block;
  margin-bottom: 10px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 700;
}

.price-top {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.price-top .p-red {
  font-weight: 600;
  color: #41A6DF !important;
  font-size: 1.3rem;
}
.price-top .old-p {
  font-weight: 600;
  color: #888888;
  margin: 0 8px;
  font-size: 1rem;
  text-decoration: line-through;
}

.prod-rate {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.prod-rate ul {
  display: flex;
}
.prod-rate ul li {
  margin: 0 2px;
}
.prod-rate ul li svg {
  width: 15px;
  height: 15px;
  fill: #888888;
}
.prod-rate ul li.active svg {
  fill: #41A6DF;
}

.reat-count {
  color: #222;
  font-weight: 600;
  margin: 0 5px;
}

.reat-t {
  color: #888888;
  margin: 0 10px;
}

.availabl {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  border-bottom: 1px solid #888888;
  padding-bottom: 10px;
}
.availabl .nor-av {
  color: #888888;
  font-weight: 500;
}
.availabl .gr-av {
  margin: 0 5px;
  color: #00B12A;
  font-weight: bold;
}

.sold-out {
  color: #DC0707 !important;
}

.rate-discra {
  margin-bottom: 10px;
  border-bottom: 1px solid #888888;
  padding-bottom: 10px;
}
.rate-discra h6 {
  font-weight: 600;
  color: #222;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.rate-discra p {
  color: #888888;
  font-size: 0.9rem;
}

.rate-color h6 {
  font-weight: 600;
  color: #222;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.color-span-reat {
  margin-bottom: 10px;
  border-bottom: 1px solid #888888;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}
.color-span-reat span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: block;
  margin: 0 5px;
}

.rate-fot {
  padding-top: 10px;
  display: flex;
  align-items: center;
}
.rate-fot .quantity {
  padding-top: 0 !important;
}

.item-sl {
  background: #e91e63 !important;
  cursor: default !important;
}

.post-date {
  display: flex;
  align-items: center;
  padding-top: 5px;
}
.post-date img {
  width: 15px;
  height: 15px;
}
.post-date span {
  font-weight: 600;
  padding: 0 10px;
  color: #888888;
}

.add-to-rate {
  display: flex;
  flex-wrap: wrap;
}
.add-to-rate button,
.add-to-rate a,
.add-to-rate .item-sl {
  margin-bottom: 5px;
  background: #41A6DF;
  border: 0;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.add-to-rate button img,
.add-to-rate a img,
.add-to-rate .item-sl img {
  width: 20px;
  filter: invert(1);
}
.add-to-rate button span,
.add-to-rate a span,
.add-to-rate .item-sl span {
  margin: 0 5px;
  font-weight: 600;
  color: #fff;
}

.rate-share {
  margin-top: 20px;
}
.rate-share ul {
  display: flex;
  align-items: center;
}
.rate-share ul li {
  cursor: pointer;
  margin-right: 15px;
}
.rate-share ul li img {
  width: 18px;
  height: 18px;
}
.rate-share ul li svg {
  width: 18px;
  height: 18px;
}
.rate-share ul li span {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin: 0 5px;
  text-transform: capitalize;
}

.video-ex {
  margin: 30px 0;
}

.all-slider {
  margin: 40px 0 20px 0;
}

.main-slider {
  position: relative;
}
.main-slider .owl-prev {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}
.main-slider .owl-prev:hover {
  background: transparent !important;
}
.main-slider .owl-prev img {
  width: 30px;
}
.main-slider .owl-next {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}
.main-slider .owl-next:hover {
  background: transparent !important;
}
.main-slider .owl-next img {
  width: 30px;
}

.comments {
  margin: 30px 0;
}

@media (min-width: 0) {
  .g-mr-15 {
    margin-right: 1.07143rem !important;
  }
}
@media (min-width: 0) {
  .g-mt-3 {
    margin-top: 0.21429rem !important;
  }
}
.g-height-50 {
  height: 50px;
}

.g-width-50 {
  width: 50px !important;
}

@media (min-width: 0) {
  .g-pa-30 {
    padding: 20px !important;
  }
}
.g-bg-secondary {
  background-color: #acacac17;
}

.u-shadow-v18 {
  box-shadow: 0 5px 10px -6px rgba(0, 0, 0, 0.15);
}

.g-color-gray-dark-v4 {
  color: #777 !important;
}

.g-font-size-12 {
  font-size: 0.85714rem !important;
}

.media-comment {
  margin-top: 20px;
}

.add-comment textarea {
  width: 100%;
  height: 130px;
  padding: 20px;
  resize: none;
  border: 1px solid #9e9e9e;
  background: transparent;
  border-radius: 6px;
  text-transform: capitalize;
}
.add-comment .add-to-rate {
  flex-direction: row-reverse;
  margin-top: 15px;
}
.add-comment .add-to-rate a {
  margin: 0;
  text-transform: capitalize;
}
.add-comment .add-to-rate a img {
  filter: unset;
}

.add-to-rate .item-web {
  display: none;
}

.add-to-rate .mop-show {
  display: none;
}

.add-to-rate .item-web {
  display: none;
}

.product-c {
  padding: 15px;
  background: #fff;
  max-width: 450px;
  margin: auto;
}
.product-c .prod-dis {
  display: flex;
  flex-direction: row-reverse;
}
.product-c .prod-dis span {
  background: #fff3b2;
  font-size: 0.75rem;
  padding: 2px 7px;
  border-radius: 20px;
}

.prod-img {
  text-align: center;
}
.prod-img img {
  max-width: 300px;
  width: 100%;
  margin: auto;
}

.product .owl-nav button {
  width: 50px;
  height: 50px;
  background: #222222 !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  zoom: 0.7;
}
.product .owl-prev {
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
}
.product .owl-prev img {
  width: 100%;
  height: 100%;
}
.product .owl-next {
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
}
.product .owl-next img {
  width: 100%;
  height: 100%;
}

.rate-pop h4 {
  text-align: center;
  margin-bottom: 20px;
}
.rate-pop .item-reat {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.rate-pop .item-reat span {
  color: #888888;
  font-size: 1rem;
  text-transform: capitalize;
}

.star-rate {
  margin: 0 25px;
}
.star-rate ul {
  display: flex;
  align-items: center;
}
.star-rate ul li {
  margin: 0 2px;
  cursor: pointer;
}
.star-rate ul li svg {
  width: 20px;
  height: 20px;
  fill: #CDCDCD;
  transition: all 0.5s;
}
.star-rate ul li:hover svg {
  fill: #FEBF00;
  transform: scale(1.2);
}

.reviews {
  margin-bottom: 20px;
}

.reviews-t {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.reviews-t .reviews-w {
  width: 120px;
  display: flex;
  flex-direction: column;
}
.reviews-t .reviews-w h6 {
  color: #222;
  font-weight: 600;
}
.reviews-t .reviews-w span {
  color: #888888;
}

.reviews-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.reviews-item ul {
  width: 120px;
  display: flex;
  align-items: center;
}
.reviews-item ul li {
  padding: 0;
  margin: 0;
}
.reviews-item ul li::before {
  display: none;
}
.reviews-item ul li.active svg {
  fill: #FEBF00;
}
.reviews-item ul li svg {
  fill: #D4D4D4;
  width: 15px;
  height: 15px;
}
.reviews-item > span {
  margin: 0 10px;
  color: #222;
}

.prog {
  width: 200px;
  height: 15px;
  background: #D4D4D4;
  border-radius: 15px;
  overflow: hidden;
}
.prog span {
  height: 100%;
  display: block;
  background: #FEBF00;
  border-radius: 15px;
}

.person-rate {
  border-left: 2px solid #D4D4D4;
  padding-left: 50px;
}

.person-item {
  display: flex;
  flex-direction: column;
}
.person-item ul {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.person-item ul li {
  padding: 0;
  margin: 0 1px;
}
.person-item ul li::before {
  display: none;
}
.person-item ul li.active svg {
  fill: #FEBF00;
}
.person-item ul li svg {
  fill: #D4D4D4;
  width: 15px;
  height: 15px;
}
.person-item p {
  font-size: 0.9rem;
  color: #888888;
  margin-bottom: 10px;
}

.date-name {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #888888;
}
.date-name .ne-d {
  color: #222;
  font-weight: 600;
}
.date-name .ne-v {
  color: #888888;
  margin: 0 5px;
}

.add-title {
  text-transform: capitalize;
  margin-bottom: 0;
  display: inline-block;
  border-bottom: 2px solid #FEBF00;
  color: #222;
  padding-bottom: 10px;
  font-weight: 600;
}

.additional-body {
  background: #fff;
  padding: 35px 0;
  margin-bottom: 40px;
}
.additional-body p {
  color: #888888;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.check-heart {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.check-heart-action svg path {
  stroke: #222 !important;
  fill: transparent;
}

.check-heart-action.wish-l svg path {
  stroke: #e91e63 !important;
  fill: #e91e63;
}

.input-label input {
  border: 1.5px solid #e2dbdb !important;
}

.section-title-amount {
  margin-top: 15px;
  border-radius: 3px;
  margin-bottom: 20px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 5px 0 #00000038;
  background: #41A6DF;
}
.section-title-amount h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.section-title-amount .post-date {
  justify-content: center;
}
.section-title-amount .post-date span {
  color: #fff;
  font-size: 18px;
}
.section-title-amount .post-date img {
  width: 30px;
  height: 30px;
  filter: brightness(22.5);
}

.item-amo {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-amo img {
  width: 40px;
}
.item-amo span {
  color: #fff;
  font-weight: bold;
  font-size: 40px;
  margin: 0 10px;
}

.item-histort {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  box-shadow: 0 0 5px #79797926;
  margin-bottom: 20px;
  border: 1.3px solid #88888847;
  transition: all 0.2s ease-in-out;
  border-radius: 5px;
}
.item-histort:hover {
  transform: scale(1.02);
}

.histort-info {
  display: flex;
  align-items: center;
}
.histort-info span {
  width: 50px;
  height: 50px;
}
.histort-info span img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.histort-info h6 {
  margin: 0 10px;
  font-weight: 600;
  text-transform: capitalize;
}

.histort-price span {
  font-weight: bold;
  color: #41A6DF;
  font-size: 1rem;
}

.owl-next i,
.owl-prev i {
  color: #fff;
}

.r-star.label-top {
  right: 0;
  top: 0;
  border-radius: 0;
  background: #41A6DF;
  left: auto;
}
.r-star.label-top span {
  padding: 0 2px;
  font-weight: bold;
  color: #fff;
  font-size: 12px;
}
.r-star.label-top::after {
  content: "";
  position: absolute;
  left: -11px;
  top: 0px;
  border: 6px solid transparent;
  border-right-color: #41A6DF;
  border-bottom-color: #41A6DF;
}

.item-trash {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.item-trash ul {
  display: flex;
  align-items: center;
}
.item-trash ul li {
  cursor: pointer;
  width: 30px;
  height: 30px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-left: 15px;
}
.item-trash ul li svg {
  width: 20px;
  height: 20px;
}

.del svg {
  fill: #c23939;
}

.edi svg {
  fill: #3ba8da;
}

.wish-tog {
  position: relative;
}
.wish-tog svg {
  transition: all 0.2s;
  cursor: pointer;
}

.wish-tog.active svg {
  fill: #e02a2a;
}

.wish-tog label {
  cursor: pointer;
}
.wish-tog label input {
  cursor: pointer;
  position: absolute;
  left: 0px;
  top: 1px;
  width: 21px;
  height: 22px;
  opacity: 0;
}

.cont-up {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  border: 1px solid #e2dbdb;
  background: #fff;
  margin-bottom: 20px;
}
.cont-up .item-img-u {
  width: 120px;
  height: 120px;
  position: relative;
  margin: 10px;
}
.cont-up .item-img-u img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #e2dbdb;
}
.cont-up .item-img-u span {
  top: 10px;
  right: 10px;
  position: absolute;
  cursor: pointer;
  width: 20px;
  height: 20px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-left: 15px;
}
.cont-up .item-img-u span svg {
  fill: #c23939;
  width: 13px;
  height: 13px;
}

.title-second {
  text-align: center;
}
.title-second h2 {
  text-align: center;
  text-transform: capitalize;
  color: #fff;
  display: inline-block;
  background: #41A6DF;
  padding: 0 10px;
}

.form-add {
  background: #F3F3F3;
}

.form-item-input {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.form-item-input > label {
  text-transform: capitalize;
  color: #888888;
  margin-bottom: 10px;
  font-weight: 600;
}
.form-item-input > label span {
  color: #DC0707;
}
.form-item-input input {
  height: 40px;
  width: 100%;
  border-radius: 4px;
  border: 0;
  padding: 0 10px;
  border: 1px solid #e2dbdb;
}
.form-item-input input:focus {
  outline: 1px solid #41A6DF;
}
.form-item-input select {
  height: 40px;
  width: 100%;
  border-radius: 4px;
  border: 0;
  padding: 0 10px;
  border: 1px solid #e2dbdb;
}

.form-item-input input[type=radio] {
  height: auto;
  width: auto;
  border: 0;
  padding: 0 10px;
  margin: 0 10px;
}

.form-item-input textarea {
  min-height: 130px;
  background: #fff;
  border-radius: 4px;
  border: 0;
  padding: 15px;
  border: 1px solid #e2dbdb;
}
.form-item-input textarea:focus {
  outline: 1px solid #41A6DF;
}

.item-radio {
  display: flex;
  align-items: center;
}
.item-radio .form-check {
  padding-left: 0;
  margin-right: 20px;
}
.item-radio label {
  margin: 0;
  margin-left: 30px;
}
.item-radio input {
  margin: 5px !important;
}

.file-upload {
  margin-bottom: 20px;
  position: relative;
  height: 50px;
  background: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}
.file-upload span {
  color: #fff;
  margin: 0 10px;
}
.file-upload input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  width: 100%;
  z-index: 5;
  cursor: pointer;
  opacity: 0;
}

.error-m {
  padding: 15px 10px;
  color: #fff;
  background: #DC0707;
  margin-bottom: 15px;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
     * Remove all paddings around the image on small screen
     */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.body-order ul li a {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 12px 30px;
  border-bottom: 1px solid #E4E2E2;
  transition: all 0.5s;
}
.body-order ul li a .icon svg {
  width: 25px;
  height: 25px;
  fill: #888888;
  transition: all 0.5s;
}
.body-order ul li a .text {
  font-size: 1rem;
  font-weight: 600;
  color: #888888;
  padding: 0 10px;
  text-transform: capitalize;
  transition: all 0.5s;
}
.body-order ul li.active a {
  background: #41A6DF;
}
.body-order ul li.active a .icon svg {
  fill: #fff;
}
.body-order ul li.active a .text {
  color: #fff;
}
.body-order ul li:hover a {
  background: #c4e3f5;
}
.body-order ul li:hover a .icon svg {
  fill: #222;
}
.body-order ul li:hover a .text {
  color: #222;
}

.over-lay-grey {
  background: #F3F3F3;
}

.w-card .normal-card {
  background: #fff;
}
.w-card .cbi-img span {
  margin-bottom: 0;
}

.notification {
  border-radius: 5px;
  background: #fff;
  padding: 15px;
  display: flex;
  margin-bottom: 20px;
  cursor: pointer;
}
.notification.active {
  background: #2196f31f;
}
.notification .not-img {
  width: 60px;
  height: 70px;
}
.notification .not-img img {
  border-radius: 5px;
  width: 40px;
  height: 40px;
}
.notification .not-text {
  margin: 0 15px;
}
.notification .not-text h6 {
  font-weight: bold;
  color: #222;
  margin-bottom: 0px;
}
.notification .not-text p {
  color: #888888;
  font-size: 14px;
}

.button-not {
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.button-not button {
  width: 30px;
  height: 30px;
  background: #c9c8c845;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
}
.button-not button:nth-child(2) {
  margin: 0 10px;
}
.button-not button img {
  width: 20px;
  height: 20px;
}

.profile-edit {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.profile-edit img {
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.change-profile-photo {
  width: 100px;
  position: relative;
  margin: auto;
  border-radius: 50%;
}
.change-profile-photo > img {
  border-radius: 50%;
}
.change-profile-photo .custom-upload-photo {
  background: #41A6DF;
  margin: 0;
  cursor: pointer;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  display: inline-block;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  bottom: -15px;
}
.change-profile-photo .custom-upload-photo input {
  display: none;
}

.wallet-titel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
}
.wallet-titel h4 {
  font-size: 20px;
  color: #222;
  text-transform: capitalize;
}
.wallet-titel h4 span {
  color: #DC0707;
  font-weight: 600;
}

.wallet-body {
  background: #fff;
  border-radius: 10px;
}
.wallet-body thead tr {
  border: 0;
}
.wallet-body thead tr th {
  color: #888888;
  font-weight: 500;
}
.wallet-body tbody tr:nth-child(odd) {
  background: #2196f31f;
}
.wallet-body tbody tr td {
  border: 0;
}

.t-date {
  display: flex;
  align-items: center;
}
.t-date span {
  color: #888888;
  margin: 0 10px;
  font-weight: 600;
}

.t-text {
  font-weight: 600;
  color: #222;
}

.t-green {
  color: #00B12A;
  font-weight: 600;
}

.t-red {
  color: #DC0707;
  font-weight: 600;
}

.pagniation {
  padding: 10px 0 20px 0;
  display: flex;
  justify-content: center;
  background: #fff;
}
.pagniation ul {
  display: flex;
  align-items: center;
}
.pagniation ul li {
  line-height: 33px;
  border: 1px solid #D9D9D9;
  width: 40px;
  height: 33px;
  text-align: center;
  cursor: pointer;
  color: #888888;
  transition: all 0.4s;
}
.pagniation ul li.active {
  background: #41A6DF;
  color: #222222;
}
.pagniation ul li.active button svg {
  fill: #222222;
}
.pagniation ul li:hover {
  background: #41A6DF;
  color: #222222;
}
.pagniation ul li:hover button svg {
  fill: #222222;
}
.pagniation ul li button {
  box-shadow: 0 0 0 0 !important;
  cursor: pointer;
  border: 0;
  background: transparent;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
}
.pagniation ul li button svg {
  width: 15px;
  height: 15px;
  fill: #888888;
  transition: all 0.4s;
}

.create-ticket h4 {
  text-align: center;
  font-weight: 600;
  color: #222222;
  margin-bottom: 15px;
}

.create-ticket p {
  color: #888888;
  text-align: center;
  font-size: 0.8rem;
  margin-bottom: 20px;
}

.multiple-select {
  width: 100%;
}
.multiple-select .select2-selection {
  border: 1px solid #e2dbdb;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #41A6DF;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #41A6DF;
  color: #fff;
  border: 1px solid #41A6DF;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #fff;
}

.margin-b .card {
  margin: 0 0 30px 0 !important;
}

.opacty-t {
  opacity: 0.5;
}
.opacty-t a {
  opacity: 1 !important;
}

.end-pak {
  position: relative;
  z-index: 2;
  font-weight: 600;
  background: #fff;
  color: #000;
  width: 200px;
  height: 40px;
  display: block;
  text-align: center;
  line-height: 40px;
  margin: 20px auto 0;
  border-radius: 40px;
  font-size: 16px;
  cursor: pointer;
}

/*start send-chat*/
.send-chat {
  background: #fff;
  border: 1px solid #E2E2E2;
  margin-bottom: 40px;
}

.send-chat-head {
  padding: 10px 10px 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E2E2E2;
  flex-wrap: wrap;
}

.sc-head-profile {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.sc-hp-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
}
.sc-hp-img::after {
  content: " ";
  width: 10px;
  height: 10px;
  background: #888888;
  border-radius: 50%;
  position: absolute;
  bottom: 10px;
  right: 0;
}

.sc-hp-inf h4 {
  color: #222222;
}
.sc-hp-inf p {
  color: #888888;
}

.sc-head-search {
  background: #EEEEEE;
  width: 250px;
  height: 40px;
  display: flex;
  align-items: center;
}
.sc-head-search button {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  outline: 0;
  justify-content: center;
  border: 0;
}
.sc-head-search input {
  flex-grow: 1;
  height: 100%;
  border: 0;
  background: transparent;
}
.sc-head-search input::placeholder {
  color: #888888;
}

.related-to {
  padding: 10px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E2E2E2;
}
.related-to span {
  color: #888888;
}
.related-to p {
  padding: 0 5px;
  color: #41A6DF;
  font-weight: 500;
}

.send-chat-body {
  padding: 10px 20px;
}

.date-dey {
  margin-bottom: 20px;
}
.date-dey h5 {
  color: #888888;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 20px;
}

.m-from-he {
  display: flex;
  align-items: center;
  padding-left: 20px;
  margin-bottom: 30px;
  position: relative;
}
.m-from-he::after {
  content: " ";
  display: block;
  border: 8px solid #F2F4FA;
  border-bottom-color: transparent;
  border-left-color: transparent;
  position: absolute;
  top: 0;
  left: 4px;
}
.m-from-he p {
  padding: 10px;
  background: #F2F4FA;
  width: 70%;
}
.m-from-he span {
  color: #888888;
  display: inline-block;
  width: 100px;
  margin: 0 10px;
  font-size: 10px;
  font-weight: bold;
}

.m-from-me {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  padding-right: 20px;
  margin-bottom: 30px;
  position: relative;
}
.m-from-me::after {
  content: " ";
  display: block;
  border: 8px solid #41A6DF;
  border-bottom-color: transparent;
  border-right-color: transparent;
  position: absolute;
  top: 0;
  right: 4px;
}
.m-from-me p {
  padding: 10px;
  background: #41A6DF;
  width: 70%;
  color: #fff;
}
.m-from-me span {
  color: #888888;
  display: inline-block;
  width: 100px;
  margin: 0 10px;
}

.send-chat-footer {
  display: flex;
  align-items: center;
}

.text-type {
  padding: 10px;
  border-top: 1px solid #E2E2E2;
  border-right: 1px solid #E2E2E2;
  padding-right: 15px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.text-type span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  position: relative;
}
.text-type span img {
  width: 20px;
  height: 20px;
}
.text-type span input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.text-type input {
  padding: 10px;
  flex-grow: 1;
  border: 0;
}
.text-type button {
  background: #41A6DF;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  border: 0;
  font-weight: 500;
}

.btn-send {
  margin: 0 20px;
  background: #41A6DF;
  padding: 15px 10px;
  border-radius: 5px;
  border: 0;
}
.btn-send span {
  color: #fff;
  font-weight: 600;
}

.history-chat {
  background: #fff;
  margin-bottom: 40px;
}
.history-chat .search-history {
  padding: 10px;
}
.history-chat .search-history .sc-head-search {
  width: 100% !important;
}
.history-chat ul li {
  border-bottom: 1px solid #E2E2E2;
  padding: 10px;
}
.history-chat ul li.active {
  background: #F2F4FA;
}
.history-chat ul li .sc-hp-img {
  width: 40px;
  height: 40px;
}
.history-chat ul li .sc-hp-inf {
  flex-grow: 1;
}
.history-chat ul li .sc-hp-inf h4 {
  font-size: 16px;
  font-size: 16px;
  font-weight: 600;
}
.history-chat ul li .sc-hp-inf p {
  font-size: 13px;
}
.history-chat ul li .sc-hp-img::after {
  content: " ";
  width: 10px;
  height: 10px;
  background: #888888;
  border-radius: 50%;
  position: absolute;
  bottom: 0px;
  right: 0px;
}

.active.sc-hp-img::after {
  background: #22B603 !important;
}

.sc-hp-inf-h {
  display: flex;
  justify-content: space-between;
}
.sc-hp-inf-h span {
  color: #888888;
  font-size: 12px;
  text-transform: capitalize;
}

.btn-send {
  margin: 0 20px;
  background: #41A6DF;
  padding: 15px 10px;
  border-radius: 5px;
  border: 0;
}
.btn-send span {
  color: #fff;
  font-weight: 600;
}
.btn-send img {
  width: 20px;
}

/*end send-chat*/
@media (max-width: 776px) {
  .m-from-me,
.m-from-he {
    flex-direction: column !important;
  }
  .m-from-me p,
.m-from-he p {
    width: 100% !important;
  }

  .send-chat-footer {
    flex-direction: column !important;
  }
  .send-chat-footer .text-type {
    width: 100% !important;
    margin-bottom: 10px;
  }
  .send-chat-footer .btn-send {
    margin-bottom: 20px;
  }
}
.steps {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
.steps ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.steps ul li {
  margin-bottom: 15px;
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 4vw;
}
.steps ul li::after {
  position: relative;
  content: " ";
  display: block;
  width: 4vw;
  border-top: 2px dotted #888888;
}
.steps ul li:last-child::after {
  display: none;
}
.steps ul li .rad-s {
  width: 30px;
  height: 30px;
  background: #C9C9C9;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.1rem;
}
.steps ul li .step-text {
  margin: 0 10px;
  text-transform: capitalize;
  color: #A0A0A0;
}
.steps ul li.active .rad-s {
  background: #41A6DF;
  color: #fff;
}
.steps ul li.active .step-text {
  color: #222;
}

/*start billing-details*/
.details {
  margin: 30px 0;
}
.details .b-sub {
  padding: 6px 30px;
}

.billing-details h5 {
  text-transform: capitalize;
  margin-bottom: 30px;
}

.form-item-input {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.form-item-input > label {
  text-transform: capitalize;
  color: #888888;
  margin-bottom: 10px;
}
.form-item-input > label span {
  color: #DC0707;
}
.form-item-input input {
  height: 40px;
  width: 100%;
  border-radius: 4px;
  border: 0;
  padding: 0 10px;
}
.form-item-input input:focus {
  outline: 1px solid #FED700;
}
.form-item-input select {
  height: 40px;
  width: 100%;
  border-radius: 4px;
  border: 0;
  padding: 0 10px;
}

.form-item-input input[type=radio] {
  height: auto;
  width: auto;
  border: 0;
  padding: 0 10px;
  margin: 0 10px;
}

.parg p {
  color: #888888;
  margin: 20px 0 40px 0;
}

.check-box {
  padding: 0 15px;
  margin-bottom: 20px;
}
.check-box ul {
  display: flex;
  flex-wrap: wrap;
}
.check-box ul li {
  margin-left: 20px;
}
.check-box ul li img {
  margin: 0 10px;
}

/*end billing-details*/
/*start summary*/
.summary {
  background: #fff;
  padding: 20px 0;
  box-shadow: 0 0 7px 0 #00000045;
  border-radius: 10px;
}
.summary h6 {
  padding: 0 20px;
  color: #222;
  font-weight: 600;
  margin-bottom: 30px;
}

.item-o {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  margin-bottom: 20px;
}
.item-o .item {
  color: #888888;
}
.item-o .value {
  color: #222;
  font-weight: 600;
}
.item-o .value-r {
  color: #DC0707;
  font-weight: 600;
  text-transform: capitalize;
}

.free-dis {
  padding: 0 20px;
  font-size: 0.9rem;
  color: #888888;
  display: flex;
  flex-direction: row-reverse;
}

.form-summary {
  display: flex;
  align-items: center;
  padding: 0 20px;
  margin: 20px 0px;
}
.form-summary input {
  height: 40px;
  background: #F3F3F3;
  width: calc(100% - 100px);
  border: 0;
  border-radius: 8px 0 0 8px;
  padding: 0 10px;
}
.form-summary input:focus {
  outline: 1px solid #FED700;
}
.form-summary button {
  width: 100px;
  height: 40px;
  background: #222;
  border: 0;
  color: #fff;
  border-radius: 0 8px 8px 0;
}

.subtotal {
  margin-top: 10px;
  border-top: 1px solid #888888;
  padding-top: 15px;
}

/*end summary*/
/* start step-done*/
.step-done {
  padding: 30px 0;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 40px;
}

.done-one-top {
  text-align: center;
}
.done-one-top img {
  margin-bottom: 20px;
}
.done-one-top h6 {
  font-weight: 600;
  color: #222;
  text-align: center;
  margin-bottom: 15px;
}
.done-one-top .order-on {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #888888;
  padding-bottom: 20px;
}
.done-one-top .order-on span {
  color: #888888;
}
.done-one-top .order-on .value {
  color: #222;
}

.done-one-bottom {
  padding-top: 20px;
}
.done-one-bottom .total {
  padding: 20px 40px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.done-one-bottom .total span {
  color: #888888;
}
.done-one-bottom .total .value {
  color: #222;
  font-weight: 600;
}

.billing {
  display: flex;
}

.text-billing {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
}
.text-billing h6 {
  color: #222;
  margin-bottom: 15px;
}
.text-billing span {
  color: #888888;
  margin-bottom: 10px;
}

.button-bla {
  margin: 30px 0;
  display: flex;
  justify-content: center;
}
.button-bla button {
  border: 0;
  background: #222;
  color: #fff;
  padding: 5px 80px;
  border-radius: 5px;
  cursor: pointer;
}

.shipping-d h4 {
  margin: 30px 0;
  color: #222;
}
.shipping-d .b-login {
  margin: 40px 0;
}

.shipping-item {
  cursor: pointer;
  padding: 20px;
  border: 1px solid #888888;
  position: relative;
  margin-bottom: 20px;
  transition: all 0.5s;
}
.shipping-item .shipping-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.shipping-item .shipping-item-head h5 {
  color: #222;
  font-weight: 600;
}
.shipping-item p {
  color: #888888;
  font-weight: 600;
  margin-bottom: 10px;
}
.shipping-item span {
  display: block;
  color: #888888;
  margin-bottom: 10px;
}
.shipping-item.active {
  border: 1px solid #FEBF00;
  background: #F4F0D8;
}
.shipping-item.active::before {
  content: " ";
  display: block;
  width: 30px;
  height: 30px;
  background: #000;
  position: absolute;
  top: -10px;
  left: -10px;
  background: url(../../img/back-ar.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.add-new {
  margin-bottom: 20px;
  cursor: pointer;
  background: #E4E2E2;
  min-height: 215px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.add-new img {
  margin-bottom: 10px;
}
.add-new span {
  font-weight: 600;
  color: #888888;
}

.vise-item {
  cursor: pointer;
  padding: 25px;
  border: 1px solid #888888;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.5s;
}
.vise-item img {
  margin-bottom: 10px;
  width: 50px;
  height: 40px;
}
.vise-item span {
  color: #888888;
}
.vise-item.active {
  border: 1px solid #41A6DF;
  background: #03a9f41c;
}
.vise-item.active::before {
  content: " ";
  display: block;
  width: 30px;
  height: 30px;
  background: #000;
  position: absolute;
  top: -10px;
  left: -10px;
  background: url(../../img/back-ar.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.order-summary {
  background: #fff;
  border-radius: 8px;
  padding: 10px 20px 20px;
}
.order-summary .order-summary-head {
  padding: 20px;
}
.order-summary .order-summary-head h5 {
  color: #222;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.os-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.os-item > span {
  color: #222;
  font-weight: 600;
}

.os-item-img {
  display: flex;
}

.os-img {
  width: 80px;
  height: 80px;
  border: 1px solid #888888;
  border-radius: 10px;
  overflow: hidden;
}
.os-img img {
  height: 80px;
}

.os-text {
  padding: 5px 10px;
}
.os-text h6 {
  color: #222;
}
.os-text .information {
  display: flex;
  flex-direction: column;
  margin: 0 10px;
}
.os-text .information h6 {
  font-weight: bold;
}
.os-text .information span {
  color: #888888;
}

.order-summary-body {
  border-top: 1px solid #E4E2E2;
  padding: 20px;
}
.order-summary-body .item-o {
  padding: 0;
}
.order-summary-body .item-o:last-child {
  margin: 0;
}
.order-summary-body .value-g {
  color: #00B12A;
  font-weight: 600;
}

.order-summary-footer {
  border-top: 1px solid #E4E2E2;
  padding: 20px;
}
.order-summary-footer .item-o {
  padding: 0;
  margin: 0;
}

/*end step-done*/
[dir=rtl] body {
  direction: rtl;
  text-align: right;
  font-family: "Tajawal", sans-serif;
}
[dir=rtl] .form-search .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: auto;
  left: 2px;
}
[dir=rtl] .normal-info {
  padding-left: 0;
  padding-right: 15px;
}
[dir=rtl] .item-radio label {
  margin-left: 0px;
  margin-right: 30px;
}
[dir=rtl] .custom-check input::after {
  left: auto;
  right: 2px;
}
[dir=rtl] .m-from-me {
  padding-right: 0;
  padding-left: 20px;
}
[dir=rtl] .m-from-me::after {
  right: auto;
  left: 4px;
  transform: rotate(90deg);
}
[dir=rtl] .m-from-he {
  padding-left: 0;
  padding-right: 20px;
}
[dir=rtl] .m-from-he::after {
  left: auto;
  right: 4px;
  transform: rotate(270deg);
}
[dir=rtl] .item-breadcrumb ul li::after {
  right: auto;
  left: -15px;
}
[dir=rtl] .form-summary button {
  border-radius: 8px 0 0 8px;
}
[dir=rtl] .form-summary input {
  border-radius: 0 8px 8px 0;
}
[dir=rtl] .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
[dir=rtl] .modal-header button {
  margin: 0;
}
[dir=rtl] .card-requests-footer button:nth-child(1) {
  border-radius: 0 0 10px 0;
}
[dir=rtl] .card-requests-footer button:nth-child(2) {
  border-radius: 0 0 0 10px;
}
[dir=rtl] .dit h5 {
  border-left: 0px solid #41A6DF;
  border-right: 4px solid #41A6DF;
}
@media (max-width: 776px) {
  [dir=rtl] .normal-info {
    padding-right: 0;
  }
}
@media (max-width: 500px) {
  [dir=rtl] .owl-packages .owl-prev {
    left: 0;
  }
  [dir=rtl] .owl-packages .owl-next {
    right: 0;
  }
}
[dir=rtl] .en {
  display: none;
}
[dir=rtl] .ar {
  display: inline-block;
  width: 100px !important;
}

[dir=ltr] .en {
  display: inline-block !important;
}
[dir=ltr] .ar {
  display: none;
}

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