:root {
  --primary: #213B8D;
  --secondary: #95a6dd;
  --filterPrimary: invert(14%) sepia(63%) saturate(3243%) hue-rotate(223deg) brightness(94%) contrast(87%);
  --filterSecondary: invert(0%) sepia(100%) saturate(19%) hue-rotate(19deg) brightness(101%) contrast(106%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Tajawal', sans-serif;
  scroll-behavior: smooth;
}

*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}

*::selection {
  background-color: var(--primary);
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

body {
  direction: rtl;
  overflow-x: hidden;
}

/**********************************************
   Start Global Style
**********************************************/
.color-gray {
  color: #ccc;
}

.color-gray2 {
  color: #888;
}

.color-dark {
  color: #1B2021;
}

.color-primary {
  color: var(--primary);
}

.color-secondary {
  color: var(--secondary);
}

.filterPrimary {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.filterSecondary {
  -webkit-filter: var(--filterSecondary);
          filter: var(--filterSecondary);
}

.filterWhite {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-decoration: none !important;
}

a:hover {
  color: var(--primary) !important;
}

a:focus {
  outline: 0;
}

del,
.del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

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

button {
  border: none;
  padding: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

button:focus {
  border: none;
  -webkit-box-shadow: transparent;
          box-shadow: transparent;
  outline: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-group {
  position: relative;
}

form .label {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: .5rem;
  color: #888;
}

form textarea {
  resize: none;
}

form .form-control {
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #9993;
  border-radius: 15px;
}


.footer .content form .form-control{
    padding-inline-end: 100px;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}

form .form-check-input {
  height: 1em !important;
}

form input,
form select {
  height: 55px !important;
}

form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  -webkit-box-shadow: none;
          box-shadow: none;
}

iframe {
  border-radius: 20px;
}

.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 55px;
  width: 55px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
          box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateY(130%);
          transform: translateY(130%);
  z-index: 99;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: var(--primary);
  left: 13px;
  top: 18px;
  height: 30px;
  width: 30px;
  display: block;
}

.progress-wrap svg path {
  fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.center-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.in-flex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inFlex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

.sec-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-end {
  text-align: end;
}

.overflow_hidden {
  overflow: hidden !important;
}

.bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.position-unset {
  position: unset;
}

.underline {
  text-decoration: underline !important;
}

/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@-webkit-keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

@keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

.left_to_right_slide {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.left_to_right_slide.animated {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.left_to_right_slide.no_scale {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.right_to_left_slide {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.right_to_left_slide.animated {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.right_to_left_slide.no_scale {
  -webkit-transform: scale(1);
          transform: scale(1);
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.text-focus-in {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

/**********************************************
    Start Public Classes
**********************************************/
.section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.swiper-container .swiper-pagination {
  bottom: 0;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 25px;
  background-color: #666;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  width: 20px;
  background: var(--primary);
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  background-image: unset;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-image: unset;
  background-color: #f5f5f5;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: .7;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 15px;
  color: var(--secondary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: var(--primary);
  opacity: 1;
}

.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before {
  color: #fff;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev {
  right: 5%;
  left: auto;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-container-rtl .swiper-button-prev::before {
  content: '\f0da';
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next {
  left: 5%;
  right: auto;
}

.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-container-rtl .swiper-button-next::before {
  content: '\f0d9';
}

.butn {
  position: relative;
  padding: .7rem 1.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 20px;
}

.butn i {
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.butn.sm_butn {
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.butn.secondary_butn {
  background-color: var(--secondary);
  color: #fff;
}

.butn.secondary_border_butn {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background-color: transparent;
}

.butn.primary_border_butn {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.butn.white_border_butn {
  background-color: #fff;
  border: 1px solid #D6D3D3;
}

.butn.primary_butn {
  background-color: var(--primary);
  color: #fff;
}

.butn.white_butn {
  background-color: #fff;
  color: var(--primary);
}

.butn.gray_butn {
  background-color: #f8f8f8;
  color: #333;
}

.butn:hover {
  background-color: #0e183a !important;
  border: 1px solid #0e183a !important;
  color: #fff !important;
}

.butn:hover i {
  animation: pulse .5s both infinite alternate-reverse linear;
}

.butn:hover .icon {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.icon-18 {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon-15 {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

.badge {
  padding: 0.5rem 1.2rem;
  border-radius: 5px;
}

.badge.white_badge {
  color: var(--primary);
  background-color: #fff;
}

.badge.secondaey_badge {
  color: #fff;
  background-color: var(--secondary);
}

.badge.gray_bagde {
  background-color: #eee;
  color: var(--primary);
}

.badge.offer_badge {
  background-color: #CBFFD8;
  color: #333;
}

.badge.primary_badge {
  background-color: var(--primary);
  color: #fff;
}

div::-webkit-scrollbar {
  height: 5px;
}

.pricely_butn {
  position: fixed;
  top: 25%;
  left: 0;
  border-radius: 0 15px 15px 0;
  font-weight: bold;
  z-index: 99;
  font-size: 12px;
  padding: 0.5rem 0.7rem 0.5rem 0.3rem;
  -webkit-box-shadow: 3px 6px 15px 0px #0005 !important;
          box-shadow: 3px 6px 15px 0px #0005 !important;
}

.modal-content {
  padding: 20px;
  border-radius: 20px;
}

.modal-content .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.startingModal .sec-img {
  border-radius: 20px;
  /*max-height: 700px;*/
  /*height: 100%;*/
  height: 350px;
}

.startingModal .det {
  font-size: 13px;
  color: #536288;
}

.uploading_box .box {
  display: block;
  min-width: 300px;
  height: 300px;
  background-color: white;
  border-radius: 15px;
  border: 1px solid #eee;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}

.uploading_box .upload-options {
  position: relative;
  height: 75px;
  background-color: #f8f8f8;
  color: var(--secondary);
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  text-align: center;
  -webkit-transition: background-color ease-in-out 150ms;
  transition: background-color ease-in-out 150ms;
}

.uploading_box .upload-options:hover {
  background-color: var(--secondary);
  color: #fff;
}

.uploading_box .upload-options input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.uploading_box .upload-options label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.uploading_box .upload-options label span {
  display: inline-block;
  width: 50%;
  height: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: middle;
  text-align: center;
}

.uploading_box .upload-options label span:hover i.material-icons {
  color: lightgray;
}

.uploading_box .js--image-preview {
  height: 225px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-image: url("");
  background-color: white;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.uploading_box .js--image-preview::after {
  content: '\f03e';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  position: relative;
  font-size: 4.5em;
  color: #e6e6e6;
  top: 60px;
  left: 0;
  z-index: 0;
  text-align: center;
}

.uploading_box .js--image-preview.js--no-default::after {
  display: none;
}

.uploading_box .js--image-preview:nth-child(2) {
  background-image: url("http://bastianandre.at/giphy.gif");
}

.uploading_box i.material-icons {
  -webkit-transition: color 100ms ease-in-out;
  transition: color 100ms ease-in-out;
  font-size: 2.25em;
  line-height: 55px;
  color: white;
  display: block;
}

.uploading_box .drop {
  display: block;
  position: absolute;
  background: rgba(95, 158, 160, 0.2);
  border-radius: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.uploading_box .animate {
  -webkit-animation: ripple 0.4s linear;
  animation: ripple 0.4s linear;
}

@-webkit-keyframes ripple {
  100% {
    opacity: 0;
    -webkit-transform: scale(2.5);
            transform: scale(2.5);
  }
}

@keyframes ripple {
  100% {
    opacity: 0;
    -webkit-transform: scale(2.5);
            transform: scale(2.5);
  }
}

.pagination-wrapper .pagination .page-link {
  border-radius: 5px !important;
  background-color: transparent;
  color: var(--secondary);
  margin: 0 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  width: 45px;
  height: 40px;
}

.pagination-wrapper .pagination .page-link:hover, .pagination-wrapper .pagination .page-link.active {
  background-color: var(--primary);
  color: #fff !important;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container.navbar-fixed-top {
    transition: all .2s linear;
}

.navs-container.navbar-fixed-top.scrolled {
    background-color: #fff;
    position: fixed;
    right: 0;
    left: 0;
    top: -20px;
    opacity: 1;
    z-index: 999;
    transition: all .3s ease-in;
    box-shadow: 3px 10px 30px #0002;
    transform: translateY(20px);

}
.navs-container.navbar-fixed-top.scrolled .logo {
    width: 50px;
    height: auto;

}
.navs-container.navbar-fixed-top.scrolled .full_categ_menu {
    top: 82px;
}

.navs-container .zi-5 {
    position: relative;
    z-index: 99;
}
.navs-container .navbar .logo {
  /*width: 150px;*/
  /*height: 120px;*/
  -o-object-fit: contain;
     object-fit: contain;
    object-position: right; 
}

.navs-container .navbar .nav-link {
  margin: 0 12px;
  position: relative;
  color: #111;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.navs-container .navbar .nav-link i {
  color: #888;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.navs-container .navbar .nav-link.active {
  color: var(--primary);
  font-weight: bold;
}

.navs-container .navbar .nav-link.active i {
  color: var(--primary);
}

.navs-container .navbar .nav-link:hover i {
  color: var(--primary);
}

.navs-container .navbar .nav_end .butn {
  margin: 0 5px;
  background-color: #f8f8f8;
  color: var(--primary);
  font-size: 15px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.navs-container .navbar .nav_end .butn i {
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
  position: relative;
  top: 1px;
}

.navs-container .navbar .nav_end .butn .num {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--secondary);
  position: absolute;
  top: -5px;
  font-size: 10px;
  right: 0;
  color: #fff;
}

.navs-container .navbar .search_dropdown .dropdown-item {
  padding: 0.5rem 1rem;
  font-size: 14px;
  border-radius: 8px;
}

.navs-container .navbar .search_dropdown .dropdown-menu {
  border: 1px solid transparent;
  border-radius: 15px;
  -webkit-box-shadow: 3px 6px 15px 0 #0001;
          box-shadow: 3px 6px 15px 0 #0001;
}

.navs-container .navbar .categ_butn::after {
  content: '\f0d7';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  left: -10px;
  top: 15px;
  color: #ccc;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  font-size: 12px;
}

.navs-container .navbar .categ_butn.iconsActive::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.navs-container .navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgba(221, 221, 221, 0.3);
  border: none;
  position: relative;
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}

.navs-container .search_nav {
    background-color: #f9f9f9;
    padding: 20px 0;
}

.navs-container .search_nav .form-group  {
    position: relative ;
}
.navs-container .search_nav .form-group .form-control {
    padding-inline-start: 40px ;
    border-color: #fff;
    box-shadow: 3px 6px 15px 0 #9991 !important;
}

.navs-container .search_nav .form-group button {
    position: absolute;
    inset-inline-start: 15px;
    bottom: 16px;
    background-color: transparent;
    border: none;
    color:  var(--primary) ;
}
 
 
.navs-container .full_categ_menu {
  position: absolute;
  top: 145px;
  background-color: #fff;
  padding: 30px 25px;
  width: 100%;
  z-index: 6;
  opacity: 0;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  visibility: hidden;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  border-radius: 0 0 15px 15px;
  -webkit-box-shadow: 3px 6px 15px 0 #0001;
          box-shadow: 3px 6px 15px 0 #0001;
}

.navs-container .full_categ_menu .content {
  margin: 10px 0;
  position: relative;
}

.navs-container .full_categ_menu .content .title {
  font-size: 1rem;
  color: #888;
}

.navs-container .full_categ_menu .content .title .icon {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .full_categ_menu .content .link_item {
  color: #555;
  display: block;
  padding: 8px 10px;
  font-size: 14px;
}

.navs-container .full_categ_menu .content .link_item:hover {
  color: var(--primary);
}

.navs-container .full_categ_menu .content .links {
  background: white;
  z-index: 9;
  padding: 5px;
  border-radius: 10px;
  -webkit-box-shadow: 3px 6px 15px 0px #0002;
          box-shadow: 3px 6px 15px 0px #0002;
}

.navs-container .full_categ_menu.active {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  visibility: visible;
}

.navs-container .accordion .accordion-collapse{
    position: absolute;
    background: #fff;
    z-index: 20;
    min-width: max-content;
    width: 200px;
    right: 0;
    top: calc(100% + 20px);
    box-shadow: 0 0 20px #0001;
    border-radius: 10px;
    overflow: hidden;
}


.navs-container .search-wrapper {
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.navs-container .search-wrapper .search-inner {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  padding: 50px 0px;
  background-color: #fff;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

/*.navs-container .search-wrapper .search-inner .title {*/
/*  font-weight: bold;*/
/*  color: #888;*/
/*}*/

.navs-container .search-wrapper .search-inner .form-group {
  padding: 0 1vw;
  position: relative;
}

.navs-container .search-wrapper .search-inner .form-group .form-control {
  padding-inline-start: 40px ;
    border: none  !important;
    border-bottom: 1px solid #888  !important;
    border-radius: 0;
    height: 50px;
    background-color: transparent;
}

.navs-container .search-wrapper .search-inner .form-group .form-control:focus {
    background-color: transparent !important;
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none  !important;
    border-bottom: 1px solid var(--primary) !important;
}



.navs-container .search-wrapper .search-inner .form-group button {
  position: absolute;
    inset-inline-start: 25px;
    bottom: 16px;
  background-color: transparent;
  border: none;
  color:  var(--primary) ;
}


.navs-container .search-wrapper .search-inner .close-butn {
  background-color: #f9f9f9;
  border: none;
  border-radius: 5px;
  color: #666;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.navs-container .search-wrapper .search-inner .close-butn:hover {
  background-color: var(--primary);
  color: #fff;
}

.navs-container .search-wrapper .overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.navs-container .search-wrapper.active {
  opacity: 1;
  visibility: visible;
}

.navs-container .search-wrapper.active .search-inner {
  opacity: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.navs-container .search-wrapper.active .overlay {
  opacity: 1;
  visibility: visible;
}


.tab-bar-mob {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#040710), to(#050916));
  background-image: linear-gradient(to right, #040710, #050916);
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 1rem;
  z-index: 9;
  -webkit-box-shadow: -3px -6px 15px 0 rgba(0, 0, 0, 0.2);
          box-shadow: -3px -6px 15px 0 rgba(0, 0, 0, 0.2);
}

.tab-bar-mob .links .link {
  font-size: 13px;
  min-width: 85px;
  text-align: center;
  color: #ddd;
}

.tab-bar-mob .links .link .icon {
  font-size: 16px;
  display: block;
  color: #fff;
  margin: 0 auto;
  opacity: .8;
}

.tab-bar-mob .links .link.active {
  font-weight: bold;
  color: var(--secondary);
}

.tab-bar-mob .links .link.active .icon {
  color: var(--secondary);
  opacity: 1;
}

.footer {
  background-color: #F3F4F8;
  padding: 100px 0 0 0;
  font-size: 13px;
}

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

.footer .content .logo {
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: -50px;
}

.footer .content .desc {
  height: 112px;
  overflow: hidden;
}

.footer .content .form-group .butn {
  position: absolute;
  left: 0;
  height: 55px;
  top: 0;
  padding: 0.9rem 1rem;
  border-radius: 15px;
}

.footer .content .links a,
.footer .content .links .item {
  display: block;
  margin: 20px 0;
}

.footer .content .links a .icon,
.footer .content .links .item .icon {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.footer .copyright_p {
  font-size: 14px;
}

.footer .social_links .sm_butn {
  width: 30px;
  height: 30px;
  border-radius: 10px;
}

.footer .social_links i {
  margin: 0;
}

.footer .bt {
  border-top: 1px solid #ccc;
}

.footer .foot_links{
    display: flex;
    align-items: center;
    justify-content: end;
}

.footer .foot_links span{
    width: 50px;
    height: 40px;
    background: #fff;
    padding: 2px 5px;
    border-radius: 5px;
}

.footer .foot_links span img{
    width: 100%;
    height: 100%;
    object-fit: contain
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  padding-top: 100px;
  min-height: 55vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: unset;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}



.header .search_nav .form-group  {
    position: relative ;
}
.header .search_nav .form-group .form-control {
    padding-inline-start: 40px ;
    border-color: #fff;
    box-shadow: 3px 6px 15px 0 #9991 !important;
}

.header .search_nav .form-group button {
    position: absolute;
    inset-inline-start: 15px;
    bottom: 16px;
    background-color: transparent;
    border: none;
    color:  var(--primary) ;
}
 
 
.header .text-box .det {
  color: #ddd;
}

.header .search_box {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 2vw 20px 2vw;
  border: 7px solid #f8f8f8;
  -webkit-box-shadow: 3px 6px 15px 0 rgba(18, 56, 100, 0.1);
          box-shadow: 3px 6px 15px 0 rgba(18, 56, 100, 0.1);
  display: block;
  position: relative;
  width: 90%;
  z-index: 1;
  margin-bottom: -270px;
  margin-top: 70px;
}

.header .search_box form .form-control{
    font-size: 12px;
    font-weight: bold;
}

.header .search_box .subtitle {
  color: #777;
}

.header .search_box .car_brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow: hidden;
  overflow-x: auto;
}

.header .search_box .car_brand .form-check {
  position: relative;
  padding: 0;
  margin: 10px 0;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
}

.header .search_box .car_brand .form-check .form-check-label {
  background-color: #f9f9f9;
  border-radius: 20px;
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 10px;
}

.header .search_box .car_brand .form-check .form-check-label .car_logo {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.header .search_box .car_brand .form-check .form-check-label .carBrand_title {
  display: none;
}

.header .search_box .car_brand .form-check .form-check-input {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0;
  width: 100%;
  height: 100% !important;
  opacity: 0;
}

.header .search_box .car_brand .form-check .form-check-input:checked ~ .form-check-label {
  border: 1px solid var(--primary);
}

.header .search_box .car_brand .form-check .form-check-input:checked ~ .form-check-label .carBrand_title {
  font-weight: bold;
  color: var(--primary);
}

.header .search_box .primary_butn {
  height: 55px;
}

.header::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.header .bg {
  -o-object-position: bottom;
     object-position: bottom;
}

.categories-sec .categ_card {
  border: 1px solid #ddd;
  background-color: #f8f8f8;
  border-radius: 20px;
  padding: 25px 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.categories-sec .categ_card .car_logo {
  width: 95%;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 10px auto;
}

.categories-sec .categ_card .carBrand_title {
  color: #555;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.categories-sec .categ_card:hover {
  border: 1px solid var(--primary);
}

.categories-sec .categ_card:hover .carBrand_title {
  color: var(--primary);
}

.mt-15 {
  margin-top: 150px;
}

.products-sec .prod_card {
  position: relative;
  border: 1px solid #eee;
  background-color: #fff;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  border-radius: 20px;
  margin-bottom: 25px;
  height: calc(100% - 25px);
}

.products-sec .prod_card .sold_badge {
  position: absolute;
  top: 0px;
  right: -14px;
  z-index: 2;
}

.products-sec .prod_card .sold_badge .bagde_word {
  padding: 0.6rem 1.5rem;
  font-weight: bold;
  font-size: 12px;
  background: #0b132f;
  color: white;
  text-align: center;
  -webkit-box-shadow: 4px 4px 15px rgba(26, 35, 126, 0.2);
          box-shadow: 4px 4px 15px rgba(26, 35, 126, 0.2);
  z-index: 5;
}

.products-sec .prod_card .sold_badge::after {
  position: absolute;
  top: 31px;
  right: 0px;
  content: "";
  background: #080d21;
  height: 10px;
  width: 15px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
  z-index: -1;
}

.products-sec .prod_card .img-box {
  position: relative;
  overflow: hidden;
  height: 210px;
  border-radius: 20px 20px 0 0;
}

.products-sec .prod_card .img-box .icons-hvr {
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.products-sec .prod_card .img-box .icons-hvr .butn {
  width: 45px;
  height: 45px;
  border: 1px solid #f8f8f8;
  background-color: #f8f8f8;
  color: var(--primary);
  margin: 5px;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.products-sec .prod_card .img-box .icons-hvr .butn:nth-of-type(1) {
  -webkit-transition: all .6s linear;
  transition: all .6s linear;
}

.products-sec .prod_card .img-box .icons-hvr .butn.cart-butn {
  opacity: 1;
  visibility: visible;
}

.products-sec .prod_card .img-box .icons-hvr .butn.fav_butn.active {
  opacity: 1;
  visibility: visible;
  background-color: #0e183a !important;
  border: 1px solid #0e183a !important;
  color: #fff !important;
}

.products-sec .prod_card .img-box .icons-hvr .butn.report_butn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.5rem;
  font-size: 12px;
  font-weight: 500;
}

.products-sec .prod_card .img-box .icons-hvr .butn.report_butn i {
  font-size: 14px;
  margin: 2px !important;
}

.products-sec .prod_card .img-box .icons-hvr .butn i {
  font-size: 19px;
  margin: 0 !important;
}

.products-sec .prod_card .img-box .icons-hvr .butn:hover {
  color: #fff !important;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: unset !important;
          filter: unset !important;
}

.products-sec .prod_card .img-box .icons-hvr .butn:hover i {
  -webkit-animation: none;
          animation: none;
}

.products-sec .prod_card .img-box .badge {
  font-size: 11px;
  position: absolute;
  left: 15px;
  top: 15px;
  padding: 0.5rem .8rem;
}

.products-sec .prod_card .card-body {
  padding: 1.5rem 1.25rem;
}

.products-sec .prod_card .card-body .prod_name {
  color: #303003;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  height: 42px;
  overflow: hidden;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.products-sec .prod_card .card-body .desc {
  font-size: 12px;
  color: #777;
  margin-bottom: .5rem;
}

.products-sec .prod_card .card-body .price {
  font-weight: bold;
  color: #274bbf;
  margin-bottom: 0;
}

.products-sec .prod_card:hover {
  -webkit-box-shadow: 0 0 25px 0 #ddd;
          box-shadow: 0 0 25px 0 #ddd;
}

.products-sec .prod_card:hover .butn {
  border: 1px solid var(--primary) !important;
  background-color: var(--primary) !important;
  opacity: 1 !important;
  color: #ddd !important;
  visibility: visible !important;
}

.products-sec .prod_card:hover .prod_name {
  color: var(--primary);
}

.about-sec .img-box {
  position: relative;
  height: 450px;
  width: 50%;
  display: block;
  margin: auto;
  float: left;
  padding-inline-start: 30px;
}

.about-sec .img-box .sec-img {
  border-radius: 20px;
}

.about-sec .img-box::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: #f5f5f5;
  z-index: -1;
  position: absolute;
  left: -20px;
  bottom: -20px;
}

.about-sec .p {
  font-size: 14px;
  line-height: 2rem;
  color: #666;
}

.features-sec .feature_card {
  position: relative;
  padding: 50px 2.5vw;
  /*-webkit-box-shadow: 0 20px 48px 0 rgba(87, 121, 151, 0.1);*/
  /*        box-shadow: 0 20px 48px 0 rgba(87, 121, 151, 0.1);*/
  overflow: hidden;
  margin-bottom: 20px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  border-radius: 20px;
  height: calc(100% - 20px);
  border: 1px solid #9994;
}

.features-sec .feature_card .num {
  color: #F5F6F8;
  position: absolute;
  top: -55px;
  left: -7px;
  font-weight: 900;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  font-size: calc(6vw + 35px);
  display: none;
}

.features-sec .feature_card .icon_outer {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  margin: auto;
  margin-bottom: 25px;
  background-color: #213b8d11;
}

.features-sec .feature_card .icon_outer .icon {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.features-sec .feature_card .content {
  text-align: center;
}

.features-sec .feature_card .title,
.features-sec .feature_card .p {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.features-sec .feature_card .p {
  margin-bottom: 0;
}

.features-sec .feature_card .link_more {
  color: var(--primary);
  font-weight: bold;
  font-size: 13px;
  display: block;
}

.features-sec .feature_card .link_more:hover {
  color: var(--secondary) !important;
}

/*.features-sec .feature_card:hover {*/
/*  background-color: var(--primary);*/
/*  color: #fff;*/
/*}*/

.features-sec .feature_card:hover .num {
  color: #1f357f;
  animation: pulse infinite 1s alternate-reverse;
}

.features-sec .feature_card:hover .icon_outer {
  /*background-color: #1c3177;*/
}

.features-sec .feature_card:hover .icon_outer .icon {
  /*-webkit-filter: var(--filterWhite);*/
          /*filter: var(--filterWhite);*/
  animation: pulse infinite 1s alternate-reverse;
}

/*.features-sec .feature_card:hover .p {*/
/*  color: #ddd;*/
/*}*/

/*.features-sec .feature_card:hover .link_more,*/
/*.features-sec .feature_card:hover .title {*/
/*  color: #fff;*/
/*}*/

.feedback-sec .item .img-box {
    position: relative;
    z-index: 10;
    left: -20px;
}

.feedback-sec .item .img-box .sec-img {
  height: 160px;
  width: 150px;
    border-radius: 15px;
}

.feedback-sec .item .img-box .quote_icon {
  position: absolute;
    right: 0;
    top: -35px;
    width: 45px;
    -o-object-fit: contain;
    object-fit: contain;
}

.feedback-sec .item .text-box {
  border-radius: 15px;
  background-color: #fff;
  padding: 50px 100px 50px 50px;
  -webkit-box-shadow: 3px 6px 15px 0 #0001;
          box-shadow: 3px 6px 15px 0 #0001;
  width: 105%;
  right: -5%;
}

.feedback-sec .item .text-box .desc {
  font-size: 18px;
}

.partners-sec .partner_card {
  position: relative;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  border-radius: 20px;
  border: 1px solid #ddd;
  padding: 30px 15px;
}

.partners-sec .partner_card .partner_logo {
  width: 75%;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.partners-sec .partner_card:hover {
  background-color: #fff;
}

.partners-sec .partner_card:hover .partner_logo {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
  -webkit-animation: pulse 1s infinite;
          animation: pulse 1s infinite;
}

/**********************************************
    Start Edit pg-header
**********************************************/
.pg-header {
  padding: 50px 0;
  background-color: var(--primary) !important;
}

.pg-header .bread .item {
  margin: 0 5px;
  color: #eee;
}

.pg-header .bread .item.active {
  color: #fff;
}

.pg-header .bread a:hover {
  color: var(--secondary) !important;
}

.pg-header .bread .icon {
  width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.pg-header .pattern {
  position: absolute;
  opacity: .05;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 240px;
}

/**********************************************
    Start Edit Contact Page 
**********************************************/
.contact-pg .contact_card {
  position: relative;
  padding: 25px;
  border-radius: 20px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  background-color: #F8F9FA;
  margin: 10px 0;
  height: calc(100% - 20px);
}

.contact-pg .contact_card .icon_outer {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--primary);
  border-radius: 20px;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.contact-pg .contact_card .icon_outer .icon {
  height: 35px;
  width: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.contact-pg .contact_card .content {
  width: calc(100% - 120px);
}

.contact-pg .contact_card .content .title {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--primary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.contact-pg .contact_card .content .p {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  color: #7F7E87;
  font-size: 18px;
}

.contact-pg .contact_card:hover {
  background-color: var(--primary);
}

.contact-pg .contact_card:hover .icon_outer {
  background-color: #fff;
}

.contact-pg .contact_card:hover .icon_outer .icon {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.contact-pg .contact_card:hover .title,
.contact-pg .contact_card:hover .p {
  color: #fff;
}

.main_inner {
  background-color: #fff;
  padding: 3vw 3vw;
  border-radius: 20px;
  border: 10px solid #f8f8f8;
  min-height: 570px;
}

/**********************************************
    Start Edit cart Page 
**********************************************/
.cart-pg {
  background-color: #f5f5f5;
}

.cart-pg .cart-item {
  margin-bottom: 25px;
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 20px;
}

.cart-pg .cart-item .prod-img {
  height: 190px;
  border-radius: 20px;
}

.cart-pg .cart-item .prod-det .prod-name {
  color: #555;
}

.cart-pg .cart-item .prod-det .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: 20px;
}

.cart-pg .cart-item .prod-det .price span {
  font-size: 14px;
}

.cart-pg .cart-item .prod-det .price span b {
  font-size: 15px;
  color: var(--primary);
}

.cart-pg .cart-item .prod-det .categ-name {
  font-weight: 500;
  display: block;
  margin-bottom: .5rem;
}

.cart-pg .cart-item .prod-det .det {
  margin-bottom: 8px;
  font-size: 13px;
}

.cart-pg .cart-item .prod-det .delete-btn {
  background-color: transparent;
  color: #bd3c3c;
  border: transparent;
  font-weight: 500;
}

.cart-pg .cart-item .prod-det .delete-btn:hover {
  color: red;
}

.cart-pg .steps-wizard {
  background-color: #fff;
  padding: 30px 0;
  height: 100%;
  border-radius: 20px;
}

.cart-pg .steps-wizard .single_step {
  text-align: center;
  position: relative;
}

.cart-pg .steps-wizard .single_step::after {
  content: '';
  width: 1px;
  height: 70px;
  position: relative;
  top: 10px;
  display: block;
  margin: 0 auto 25px auto;
  background-color: #ccc;
}

.cart-pg .steps-wizard .single_step.last-step::after {
  display: none;
}

.cart-pg .steps-wizard .single_step.active::after {
  background-color: var(--primary);
}

.cart-pg .steps-wizard .single_step.inProgress .circle {
  background-color: var(--primary);
  color: #fff;
}

.cart-pg .steps-wizard .single_step .circle {
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  background-color: #E5E5E5;
  display: block;
  margin: auto;
  color: #343A3E;
  font-weight: bold;
}

.cart-pg .steps-wizard .single_step .label {
  color: #555;
  margin-top: 15px;
}

.cart-pg .summary-checkout {
  background-color: #fff;
  padding: 30px 20px 10px 20px;
  border-radius: 20px;
}

.cart-pg .summary-checkout .title {
  color: var(--primary);
  font-weight: bold;
  position: relative;
  font-size: 1.2rem;
  padding-bottom: 15px;
}

.cart-pg .summary-checkout .title::after {
  content: '';
  width: 100%;
  background-color: #ddd;
  height: 2px;
  display: block;
  position: relative;
  top: 16px;
}

.cart-pg .summary-checkout .title::before {
  content: '';
  width: 70px;
  background-color: var(--primary);
  height: 2px;
  display: block;
  position: absolute;
  top: 39px;
  z-index: 1;
}

.cart-pg .summary-checkout .card-body .item {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0 15px 0;
  border-bottom: 1px solid #ddd;
}

.cart-pg .summary-checkout .card-body .item .prod-img {
  width: 70px;
  height: 70px;
}

.cart-pg .summary-checkout .card-body .item .info-inner {
  margin: 0 10px;
}

.cart-pg .summary-checkout .card-body .item .info-inner .prod-name {
  margin-bottom: 0;
}

.cart-pg .summary-checkout .card-body .item .info-inner .delete-btn {
  background-color: transparent;
  border: transparent;
  color: #FF4A63;
  font-size: 14px;
  font-weight: bold;
  margin-top: 18px;
}

.cart-pg .summary-checkout .card-body .item .info-l .number-input {
  width: 60px;
  height: 25px !important;
  margin-left: auto;
}

.cart-pg .summary-checkout .card-body .item .info-l .price {
  margin-bottom: 0;
  margin-top: 15px;
}

.cart-pg .summary-checkout .footer-card {
  padding: 1.25rem;
}

.cart-pg .summary-checkout .footer-card .code-group {
  position: relative;
}

.cart-pg .summary-checkout .footer-card .code-group .code-input {
  height: 55px;
}

.cart-pg .summary-checkout .footer-card .code-group .submit-btn {
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  width: 60px;
  font-size: 12px;
  height: 55px;
  border-radius: 15px 0 0 15px;
}

.cart-pg .summary-checkout .footer-card .summary_price .price_item {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cart-pg .butn {
  padding: .8rem 3rem;
}

.cart-pg .butns_foot .butn {
  padding: 0.8rem 1rem;
  width: 50%;
}

.quantity-container .qt-plus,
.quantity-container .qt-minus {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: solid 1px transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  color: #555;
  font-size: 10px;
  vertical-align: middle;
  display: inline-flex;
  cursor: pointer;
  background-color: #f8f8f8;
}

.quantity-container .qt-plus:hover,
.quantity-container .qt-minus:hover {
  background-color: var(--primary) !important;
  color: #fff;
}

.quantity-container .qt-plus .fa,
.quantity-container .qt-minus .fa {
  font-weight: 300;
}

.quantity-container .qt {
  display: inline-block;
  min-width: 30px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.44;
  color: #202020;
  vertical-align: middle;
  margin-right: 5px;
  margin-left: 5px;
  text-align: center;
}

/**********************************************
    Start Edit checkout Page 
**********************************************/
.checkout-pg .cart-body {
  background-color: #fff;
  padding: 3vw;
  border-radius: 20px;
}

.checkout-pg .cart-body .form-check-input {
  height: 1em !important;
}

.checkout-pg .cart-body .map_box iframe {
  border-radius: 0px;
}

.checkout-pg .butn:nth-child(1) {
  background-color: #f5f5f5;
}

.checkout-pg .receiving_method_radios.form-check {
  padding: 0;
  position: relative;
}

.checkout-pg .receiving_method_radios .form-check-input {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.checkout-pg .receiving_method_radios .form-check-label {
  background-color: #fff;
  width: 100%;
  padding: 2rem 1rem;
  text-align: center;
  border: 1px solid #eee;
  cursor: pointer;
}

.checkout-pg .receiving_method_radios .form-check-label .icon {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 15px auto;
}

.checkout-pg .receiving_method_radios .form-check-label .title {
  color: #999;
}

.checkout-pg .receiving_method_radios .form-check-input:checked ~ .form-check-label {
  border: 1px solid var(--primary);
}

.checkout-pg .receiving_method_radios .form-check-input:checked ~ .form-check-label .title {
  font-weight: bold;
  color: var(--primary);
}

.checkout-pg .payment_method .form-check {
  position: relative;
  padding-right: 0;
  margin-bottom: 25px;
}

.checkout-pg .payment_method .form-check .form-check-label {
  text-align: center;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 20px;
  width: 100%;
  padding: 30px 20px;
  min-height: 180px;
  cursor: pointer;
}

.checkout-pg .payment_method .form-check .form-check-label .pay_logo {
  width: 100px;
  height: 50px;
  display: block;
  margin: 0 auto 20px auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.checkout-pg .payment_method .form-check .form-check-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100% !important;
  cursor: pointer;
  opacity: 0;
}

.checkout-pg .payment_method .form-check .form-check-input:checked ~ .form-check-label {
  border: 1px solid var(--primary);
}

.checkout-pg .payment_method .form-check .form-check-input:checked ~ .form-check-label .name {
  color: var(--primary);
  font-weight: bold;
}

.checkout-pg .file-upload {
  display: block;
  font-size: 12px;
  position: relative;
}

.checkout-pg .file-upload .file-select {
  display: block;
  border: 2px solid #EEEEEE;
  color: #2B2B2B;
  cursor: pointer;
  height: 55px;
  line-height: 55px;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.checkout-pg .file-upload .file-select .file-select-button {
  background: #EEEEEE;
  padding: 0 10px;
  display: inline-block;
  height: 55px;
  line-height: 55px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 85px;
  font-size: 18px;
  text-align: center;
}

.checkout-pg .file-upload .file-select .file-select-name {
  line-height: 55px;
  display: inline-block;
  padding: 0 10px;
  position: absolute;
  top: 0;
  right: 90px;
}

.checkout-pg .file-upload .file-select input[type="file"] {
  z-index: 100;
  cursor: pointer;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
}

.checkout-pg .file-upload .file-select:hover {
  border-color: #ccc;
}

.checkout-pg .file-upload .file-select:hover .file-select-button {
  background: #ccc;
  color: #ffffff;
}

.checkout-pg .file-upload .file-select.file-select-disabled {
  opacity: 0.65;
}

.checkout-pg .file-upload .file-select.file-select-disabled:hover {
  cursor: default;
  display: block;
  border: 2px solid #dce4ec;
  color: #2B2B2B;
  cursor: pointer;
  height: 55px;
  line-height: 55px;
  margin-top: 5px;
  text-align: left;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

.checkout-pg .file-upload .file-select.file-select-disabled:hover .file-select-button {
  background: #dce4ec;
  color: #666666;
  padding: 0 10px;
  display: inline-block;
  height: 55px;
  line-height: 55px;
}

.checkout-pg .file-upload .file-select.file-select-disabled:hover .file-select-name {
  line-height: 40px;
  display: inline-block;
  padding: 0 10px;
}

.checkout-pg .file-upload.active .file-select {
  border-color: var(--primary);
}

.checkout-pg .file-upload.active .file-select .file-select-button {
  background: var(--primary);
  color: #ffffff;
}

.checkout-pg .order_det {
  background-color: #fff;
  padding: 35px;
  border-radius: 20px;
}

.checkout-pg .map_butn {
  padding: 0.5rem 1.5rem;
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 12px;
  color: #666;
}

.data-group {
  margin-bottom: 1.2rem;
  position: relative;
}

.data-group .label {
  font-size: 12px;
  font-weight: bold;
}

.data-group .data {
  padding: 1rem 1.5rem;
  border-radius: 15px;
  background-color: #f8f8f8;
  margin-top: 10px;
}

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

/**********************************************
    Start Edit products Page 
**********************************************/
.products-pg .filter_wrapper {
  padding: 30px 2vw 20px 2vw;
}

.products-pg .filter_wrapper .nav-pills .nav-link {
  background-color: #eee;
  min-width: 150px;
  border-radius: 10px;
  color: #999;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  height: 45px;
  font-weight: 500;
}

.products-pg .filter_wrapper .nav-pills .nav-link.active {
  background-color: var(--secondary);
  color: #fff;
}

.products-pg .filter_wrapper .form-group {
  margin: 10px 0;
}

.products-pg .filter_wrapper .primary_butn {
  margin-top: 43px;
  height: 55px;
}

.products-pg .sorting_select {
  /*background-color: transparent !important;*/
  /*border: transparent !important;*/
  font-size: 13px;
  font-weight: bold;
  color: #777;
}

.products-pg .sorting_select:focus {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

/**********************************************
    Start Edit product-det Page 
**********************************************/
.product-det {
  background-color: #f8f8f8;
}

.product-det .swiper_box .lg-slide-swiper {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  overflow-x: hidden;
}

.product-det .swiper_box .lg-slide-swiper .img-box {
  position: relative;
  overflow: hidden;
  height: 470px;
  border-radius: 25px;
}

.product-det .swiper_box .lg-slide-swiper .img-box .lg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
}

.product-det .swiper_box .sm-slide-swiper {
  overflow: hidden;
  height: 130px;
  padding-bottom: 10px;
}

.product-det .swiper_box .sm-slide-swiper .swiper-slide {
  opacity: .5;
  cursor: pointer;
}

.product-det .swiper_box .sm-slide-swiper .sm-bg-header {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 4px;
  border-radius: 25px;
  border: 1px solid transparent;
  padding: 0px;
}

.product-det .swiper_box .sm-slide-swiper .swiper-slide-thumb-active {
  opacity: 1;
}

.product-det .swiper_box .sm-slide-swiper .swiper-slide-thumb-active .sm-bg-header {
  border: 1px solid var(--primary) !important;
}

.product-det .text-box {
  padding: 45px 2vw;
  border-radius: 25px;
  background-color: #fff;
}

.product-det .text-box .rate .stars i {
  color: #EAEAE9;
}

.product-det .text-box .rate .stars i.active {
  color: #FAB707;
}

.product-det .text-box .social_links a {
  margin: 0 10px;
  color: #555;
  font-size: 18px;
}

.product-det .text-box .bt {
  border-top: 1px solid #eee;
}

.product-det .text-box .fav_butn {
  background-color: #f7f7f7;
}

.product-det .text-box .fav_butn.active{
    background-color: #1beb1b;
}

.product-det .details_wrapper {
  padding: 3vw;
  border-radius: 25px;
  background-color: #fff;
}

.product-det .details_wrapper .nav .nav-link {
  font-weight: bold;
  border: transparent;
  border-bottom: 1px solid #eee;
  color: #999;
  padding: 0 2rem 0.7rem 2rem;
  background-color: transparent;
}

.product-det .details_wrapper .nav .nav-link.active {
  border-bottom: 1px solid var(--primary);
  color: var(--primary);
}

.sticky_buttons {
  background-color: rgba(18, 56, 100, 0.7);
  position: fixed;
  bottom: 83px;
  right: 0;
  left: 0;
  z-index: 9;
  padding: 0.8rem 0.5rem;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: -3px -6px 15px 0 #0001;
          box-shadow: -3px -6px 15px 0 #0001;
}

.rateModal .img {
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.rateModal .stars-content .star-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  font-size: 2em;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 0 .2em;
  text-align: center;
  width: 5em;
  margin: auto;
}

.rateModal .stars-content .star-rating i {
  margin: 0 5px;
}

.rateModal .stars-content .star-rating input {
  display: none;
}

.rateModal .stars-content .star-rating label {
  color: #FFEEC9;
  cursor: pointer;
}

.rateModal .stars-content .star-rating :checked ~ label {
  color: #FFD06A;
}

.rateModal .stars-content .star-rating label:hover,
.rateModal .stars-content .star-rating label:hover ~ label {
  color: #FFB820;
}

.rateModal .butn {
  min-width: 170px;
  font-size: 16px;
}

.rates-sec .review_card {
  padding: 35px;
  background-color: #fff;
  border-radius: 15px;
}

.rates-sec .review_card .heading .img-box {
  overflow: hidden;
  border-radius: 15px;
  width: 75px;
  height: 75px;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.25);
}

.rates-sec .review_card .heading .rate .stars i {
  color: #ccc;
}

.rates-sec .review_card .heading .rate .stars i.active {
  color: #FCD635;
}

/**********************************************
    Start Edit register Page 
**********************************************/
.register-pg .register-box {
  background-color: #fff;
  -webkit-box-shadow: 3px 6px 15px 0 #eee;
          box-shadow: 3px 6px 15px 0 #eee;
  border-radius: 20px;
}

.register-pg .register-box .head {
  border-radius: 20px 20px 0 0;
  padding: 35px 15px;
  background-color: #162865;
}

.register-pg .register-box .head .logo-box {
  width: 150px;
  display: block;
  margin: auto;
}

.register-pg .register-box .head .logo-box .logo {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.register-pg .register-box .card-body {
  padding: 3rem 1.5rem;
  border-radius: 0 0 20px 20px;
}

.register-pg .register-box .card-body .form-control {
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
}

.register-pg .register-box .card-body .forget_pass {
  font-size: 15px;
  color: #777;
}

.register-pg .register-box .card-body .code_input .code-container input {
  width: 70px;
  height: 70px;
  text-align: center;
  border-radius: 5px;
  margin: 5px;
  -webkit-box-shadow: 0 0 30px #0001;
          box-shadow: 0 0 30px #0001;
  border: 0;
}

.register-pg .register-box .card-body .submit_butn {
  border-radius: 15px;
}

.show_hide_password {
  position: relative;
}

.show_hide_password .show_pass {
  position: absolute;
  top: 21px;
  left: 20px;
  cursor: pointer;
  color: #888;
}

.profile-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  margin: auto;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.profile-avatar input {
  position: absolute;
  bottom: 0;
  left: 64%;
  background-color: #fff;
  border-radius: 30px;
  display: inline-block;
  color: #222;
  width: 50px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  border: none;
  opacity: 0;
  z-index: 3;
}

.profile-avatar button {
  width: 45px;
  height: 45px;
  -webkit-box-shadow: 0px 0px 10px #ddd;
          box-shadow: 0px 0px 10px #ddd;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  cursor: pointer !important;
  border: 1px solid #eee;
  position: absolute;
  right: 2px;
  bottom: 0px;
  cursor: pointer;
}

.profile-avatar button i {
  position: relative;
  top: 1px;
  cursor: pointer !important;
}

/**********************************************
    Start Edit order_det_pg Page 
**********************************************/
.order_det_pg .order-details {
  padding: 3vw;
  background-color: #f9f9f9;
  border-radius: 20px;
}

.order_det_pg .order-details .order-head {
  border-radius: 20px;
  -webkit-box-shadow: 10px 10px 15px 0 #0001;
          box-shadow: 10px 10px 15px 0 #0001;
  padding: 2.5vw;
  margin-bottom: 50px;
  background-color: #fff;
}

.order_det_pg .order-details .order-head ul {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.order_det_pg .order-details .order-head ul li {
  width: 50%;
  margin: 5px 0;
}

.order_det_pg .order-details .order-head ul li p {
  margin: 0;
}

.order_det_pg .order-details .order-head ul li span {
  font-weight: bold;
  margin-right: 15px;
}

.order_det_pg .order-details .order-body .table-bordered {
  border: none;
}

.order_det_pg .order-details .order-body .table-bordered th, .order_det_pg .order-details .order-body .table-bordered td {
  border: 1px solid var(--primary);
}

.order_det_pg .order-details .order-body .table-bordered th.text-left, .order_det_pg .order-details .order-body .table-bordered td.text-left {
  text-align: initial;
}

.order_det_pg .order-details .order-body .table .img img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.order_det_pg .order-details .order-body .table thead th {
  background-color: var(--primary);
  color: #fff;
}

.order_det_pg .table th, .order_det_pg .table td {
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
  padding: 1rem 1.5rem;
}

.order_det_pg .table_box {
  border-radius: 15px;
  border-top: 0.2px solid var(--primary);
  border-right: 1px solid var(--primary);
  border-left: 1px solid var(--primary);
  border-bottom: 0.2px solid var(--primary);
  overflow: hidden;
}

.order_det_pg .qr_box {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 3px 6px 10px 0 #0002;
          box-shadow: 3px 6px 10px 0 #0002;
}

.order_det_pg .qr_box .sec-img {
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media print {
  .img img {
    width: 80px;
    height: 80px;
    -o-object-fit: contain;
       object-fit: contain;
    border: 1px solid #9993;
    border-radius: 10px;
    padding: 5px;
  }
  #print_btn {
    display: none !important;
  }
}

/**********************************************
    Start Edit profile Page 
**********************************************/
.profile-pg {
  background-color: #f4f4f4;
  overflow: unset;
}

.profile-pg .prof_side {
  border-radius: 25px;
  padding: 35px;
  background-color: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
}

.profile-pg .prof_side .prof-data {
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.profile-pg .prof_side .prof-data .prof_img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: block;
  margin: auto;
}

.profile-pg .prof_side .prof-data .points {
  margin-top: 15px;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  border-radius: 0px;
  background-color: #f9f9f9;
  font-size: 13px;
}

.profile-pg .prof_side .links .nav-link {
  text-align: start;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #555;
  font-size: 15px;
}

.profile-pg .prof_side .links .nav-link .icon_outer {
  width: 45px;
  height: 45px;
  background-color: #f5f5f5;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  border-radius: 10px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.profile-pg .prof_side .links .nav-link .icon_outer .icon {
  opacity: .5;
}

.profile-pg .prof_side .links .nav-link.active {
  background-color: transparent;
  color: var(--primary);
}

.profile-pg .prof_side .links .nav-link.active .icon_outer {
  background-color: var(--primary);
  color: #fff;
}

.profile-pg .tab_wrapper {
  padding: 45px;
  border-radius: 25px;
  background-color: #fff;
}

.profile-pg .tab_wrapper .primary_butn {
  min-width: 180px;
  font-weight: bold;
}

.profile-pg .tab_wrapper.profile_tab .editData_box {
  display: none;
}

.profile-pg .tab_wrapper.profile_tab .editData_box .del_mail_butn {
  position: absolute;
  top: 17px;
  left: 20px;
  color: #f88c8c;
}

.profile-pg .tab_wrapper.myCar_tab .loc_card .country {
  color: #666;
  font-size: .9rem;
}

.profile-pg .tab_wrapper.loc_tab .loc_card {
  background-color: #f9f9f9;
  border-radius: 25px;
  margin: 0 auto 25px auto;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .heading {
  padding: 25px;
  border-bottom: 1px solid #ddd;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .heading .icon-outer {
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  color: var(--primary);
  border-radius: 25px;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .heading .title {
  font-size: 1rem;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .heading .card_butn {
  background-color: transparent;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  font-size: 13px;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .heading .card_butn.edit {
  color: #3a9b27;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .heading .card_butn.delete {
  color: #f14343;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .card-body {
  padding: 1.25rem 2rem;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .card-body .icon-outer {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-margin-end: 25px;
          margin-inline-end: 25px;
  background-color: #f8f1d7;
  border-radius: 10px;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .card-body .icon-outer .icon {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .card-body .content {
  width: calc(100% - 80px);
}

.profile-pg .tab_wrapper.orders_tab {
  padding: 45px 20px;
}

.profile-pg .tab_wrapper.orders_tab .table-responsive .table th,
.profile-pg .tab_wrapper.orders_tab .table-responsive .table td {
  padding: 1rem 0.5rem;
}

.profile-pg .tab_wrapper.orders_tab .table-responsive td {
  vertical-align: middle;
}

.profile-pg .tab_wrapper.orders_tab .table-responsive::-webkit-scrollbar {
  height: 5px;
}

.profile-pg .tab_wrapper.orders_tab .table-responsive .prod_img {
  min-width: 50px;
  height: 40px;
  border-radius: 10px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.profile-pg .tab_wrapper.orders_tab .badge {
  width: 100px;
  padding: .6rem;
  text-align: center;
}

.profile-pg .tab_wrapper.orders_tab .more-butn {
  color: #888;
  display: block;
  text-align: center;
}

.logoutModal .img {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto 30px auto;
  display: block;
}

.locModal .btn-close {
  position: unset;
}

/* ------------ notifications page style ------------- */
.notifications_card {
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  display: block;
  background-color: #f9f9f9;
}

.notifications_card .notifications_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.notifications_card .notifications_date .notifications_date_card {
  -webkit-margin-start: 30px;
          margin-inline-start: 30px;
}

.notifications_card .notifications_card_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.notifications_card .notifications_card_info .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

.notifications_card .notifications_card_info .icon i {
  font-size: 25px;
}

.notifications_card .notifications_card_info .info {
  padding-top: 10px;
}

/**********************************************
    Start comparison  Page 
**********************************************/
.comparison_sec img {
  max-width: 100%;
  max-height: 100%;
}

.comparison_sec .comparison_row {
  position: relative;
  margin-bottom: 60px;
}

.comparison_sec .comparison_row:last-of-type {
  margin-bottom: 0;
}

.comparison_sec .comparison_card {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 5px 10px 20px #00000005;
          box-shadow: 5px 10px 20px #00000005;
  height: 100%;
}

.comparison_sec .comparison_row .row .col-lg-4:last-of-type .comparison_card .comparison_icon{
    display: none;
}

.comparison_sec .comparison_card.card_end .comparison_icon {
  display: none;
}

.comparison_sec .comparison_card.card_end .img {
  border-top-right-radius: 0;
  border-top-left-radius: 20px;
}

.comparison_sec .comparison_card .comparison_icon {
  position: absolute;
  left: -59px;
  top: 50%;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 30px;
  background-color: #fff;
  outline: 10px solid #F8F9FA;
  border-radius: 10px;
  z-index: 20;
}

.comparison_sec .comparison_card .img {
  position: relative;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
}

.comparison_sec .comparison_card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.comparison_sec .comparison_card .img .icons-hvr {
  position: absolute;
  top: 50px;
  right: 5px;
}

.comparison_sec .comparison_card .img .icons-hvr .butn {
  width: 45px;
  height: 45px;
  border: 1px solid #f8f8f8;
  background-color: #f8f8f8;
  color: var(--primary);
  margin: 5px;
  border-radius: 10px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.comparison_sec .comparison_card .img .icons-hvr .butn:nth-of-type(1) {
  -webkit-transition: all .6s linear;
  transition: all .6s linear;
}

.comparison_sec .comparison_card .img .icons-hvr .butn.cart-butn {
  opacity: 1;
  visibility: visible;
}

.comparison_sec .comparison_card .img .icons-hvr .butn.fav_butn.active {
  opacity: 1;
  visibility: visible;
  background-color: #0e183a !important;
  border: 1px solid #0e183a !important;
  color: #fff !important;
}

.comparison_sec .comparison_card .img .icons-hvr .butn.report_butn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.5rem;
  font-size: 12px;
  font-weight: 500;
}

.comparison_sec .comparison_card .img .icons-hvr .butn.report_butn i {
  font-size: 14px;
  margin: 2px !important;
}

.comparison_sec .comparison_card .img .icons-hvr .butn i {
  font-size: 19px;
  margin: 0 !important;
}

.comparison_sec .comparison_card .img .icons-hvr .butn:hover {
  color: #fff !important;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: unset !important;
          filter: unset !important;
}

.comparison_sec .comparison_card .img .icons-hvr .butn:hover i {
  -webkit-animation: none;
          animation: none;
}

.comparison_sec .comparison_card .img .rate_btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #0E183A;
  color: #fff;
  font-size: 11px;
  z-index: 10;
  padding: 5px 10px;
  border-radius: 10px;
}

.comparison_sec .comparison_card .info {
  padding: 20px 70px;
  text-align: center;
  font-size: 13px;
}

.comparison_sec .comparison_card .info .d-flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.comparison_sec .comparison_card .info .inf_card {
  padding: 10px 0;
  border-bottom: 1px solid #9992;
}

.comparison_sec .comparison_card .info .inf_card:last-of-type {
  border: 0;
}

.comparison_sec .comparison_card .info .inf_card strong {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.comparison_sec .comparison_card .info .text {
  font-size: 13px;
}

.comparison_sec .comparison_card .info .title {
  font-size: 20px;
}

.comparison_sec .comparison_card .info h5 {
  font-size: 15px;
}

/*------------ new style -----------*/
.swal2-popup{
    border-radius: 30px !important;
    border: 0 !important;
    padding: 2em 1.25em !important;
}

.swal2-popup .swal2-actions {
    /*display: none !important;*/
}

.swal2-popup .swal2-title{
    margin: 0 0 0.7em !important;
}

.swal2-popup .swal2-icon {
    transform: scale(.8) !important;
}


.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) .form-select{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/*---------*/
.timer-nav{
    background-color: #0001 !important;
}


/*-------- img change --------*/

.reg_img {
    border: 1px solid #213B8D;
    padding: 10px;
    border-radius: 50%;
    position: relative;
    text-align: center;
    width: 200px;
    height: 200px;
    margin: auto;
    margin-bottom: 50px;
}
                                    
.reg_img .butn {
    position: absolute;
    bottom: 0;
    right: 25px;
    background-color: #fff;
    border-radius: 30px;
    display: inline-block;
    color: #213B8D;
    width: 50px;
    height: 50px;
    line-height: 55px;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 0;
}

.reg_img .butn i{
    margin: 0;
}

.reg_img .butn:after {
    border: none;
}

.reg_img input {
    position: absolute;
    bottom: 0;
    right: 25px;
    background-color: #fff;
    border-radius: 30px;
    display: inline-block;
    color: #213B8D;
    width: 50px;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    border: none;
    opacity: 0;
}

.reg_img img {
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 180px;
    height: 180px;
}

#saveImage {
    display: none;
}

#pricelyModal .modal-dialog {
    transition: all 0.6s ease-in-out;
    transform: translate( -150%, 0);
}

#pricelyModal.show .modal-dialog {
    transform: translate( 0, 0);
}

@media (min-width: 992px){
    #pricelyModal .modal-lg, .modal-xl {
        max-width: 1200px;
    }
}

/**********************************************
    Start Edit Dark Theme 
**********************************************/
.theme-dark body,
.theme-dark .section,
.theme-dark .navbar,
.theme-dark .contact-pg .contact_card,
.theme-dark .profile-pg .tab_wrapper.loc_tab .loc_card,
.theme-dark .rates-sec .review_card,
.theme-dark .feedback-sec .item .text-box {
  background-color: #12182a !important;
}

.theme-dark .navs-container .navbar .nav-link,
.theme-dark .navs-container .navbar .nav_end .butn,
.theme-dark .features-sec .feature_card .p,
.theme-dark .feedback-sec .item .text-box .quote,
.theme-dark .footer .content p,
.theme-dark .footer .content .links a,
.theme-dark .footer .content .links .item,
.theme-dark .footer .copyright_p,
.theme-dark .footer .copyright_p a,
.theme-dark .about-sec .text-box .p,
.theme-dark .cart-pg .steps-wizard .single_step .label,
.theme-dark .cart-pg .cart-item .prod-det .price span,
.theme-dark .cart-pg .cart-item .prod-det .det,
.theme-dark .cart-pg .summary-checkout .footer-card .summary_price .price_item p,
.theme-dark .checkout-pg .cart-body .form-check-label,
.theme-dark .checkout-pg .cash_note,
.theme-dark .contact-pg .contact_card .content .p,
.theme-dark .product-det .text-box .sm_title,
.theme-dark .product-det .text-box .social_links a,
.theme-dark .product-det .details_wrapper .det,
.theme-dark .profile-pg .prof_side .prof-data .mail,
.theme-dark .profile-pg .prof_side .links .nav-link,
.theme-dark .profile-pg .tab_wrapper .loc_card .country,
.theme-dark .rates-sec .review_card .p,
.theme-dark .feedback-sec .item .text-box .job {
  color: #eee !important;
}

.theme-dark .navs-container .navbar .nav-link.active,
.theme-dark .sec-head .title,
.theme-dark .features-sec .feature_card .title,
.theme-dark .navs-container .navbar .nav-link.active i,
.theme-dark .about-sec .text-box .title,
.theme-dark .cart-pg .cart-item .prod-det .prod-name,
.theme-dark .cart-pg .cart_title,
.theme-dark .cart-pg .summary-checkout .title,
.theme-dark .quantity-container .qt,
.theme-dark .contact-pg .text-box .title,
.theme-dark .product-det .text-box .name,
.theme-dark .product-det .text-box .categ,
.theme-dark .product-det .text-box .price,
.theme-dark .register-pg .register-box .card-body .title,
.theme-dark .register-pg .register-box .card-body .form-check .form-check-label,
.theme-dark .profile-pg .prof_side .prof-data .name,
.theme-dark .profile-pg .tab_title,
.theme-dark .profile-pg .tab_wrapper.loc_tab .loc_card .heading .title,
.theme-dark .profile-pg .tab_wrapper.orders_tab .table-responsive .table th,
.theme-dark .profile-pg .tab_wrapper.orders_tab .table-responsive .table td,
.theme-dark .profile-pg .tab_wrapper.orders_tab .table-responsive .prod_name,
.theme-dark .rates-sec .review_card .heading .title,
.theme-dark .feedback-sec .item .text-box .desc,
.theme-dark .feedback-sec .item .text-box .name {
  color: #fff !important;
}

.theme-dark .navs-container .navbar .nav_end .butn,
.theme-dark .header .search_box,
.theme-dark .bg-light,
.theme-dark .about-sec .img-box::before,
.theme-dark .cart-pg .steps-wizard,
.theme-dark .cart-pg .cart-item,
.theme-dark .cart-pg .summary-checkout,
.theme-dark .checkout-pg .cart-body,
.theme-dark .checkout-pg .order_det,
.theme-dark .main_inner,
.theme-dark .product-det .text-box,
.theme-dark .product-det .details_wrapper,
.theme-dark .register-pg .register-box .card-body,
.theme-dark .register-pg .register-box,
.theme-dark .profile-pg .prof_side,
.theme-dark .profile-pg .tab_wrapper {
  background-color: #1c2235 !important;
}

.theme-dark .pg-header {
  background-color: #091028 !important;
}

.theme-dark .main_inner {
  border: 7px solid #0c1533 !important;
}

.theme-dark .header .search_box {
  border: 7px solid #050916 !important;
}

.theme-dark .features-sec .feature_card .num {
  color: #0e183a;
  opacity: .2;
}

.theme-dark .about-sec .img-box::before {
  opacity: .2;
}

.theme-dark .swiper-pagination-bullet {
  background: #ccc;
}

.theme-dark .checkout-pg form .form-control,
.theme-dark .contact-pg form .form-control,
.theme-dark .products-pg .filter_wrapper form .form-control,
.theme-dark .checkout-pg .payment_method .form-check .form-check-label,
.theme-dark .data-group .data,
.theme-dark .register-pg .register-box form .form-control {
  background-color: #050916;
  border: 1px solid #050916;
  color: #fff;
}

.theme-dark .register-pg .register-box form .form-control::placeholder{
    color: #fff;
}

.theme-dark .products-sec .prod_card {
  border: 1px solid #0b132f;
  background-color: #0E183A;
}

.theme-dark .products-sec .prod_card .prod_name {
  color: #fff;
}

.theme-dark .products-sec .prod_card:hover {
  -webkit-box-shadow: 0 0 25px 0 #0005;
          box-shadow: 0 0 25px 0 #0005;
}

.theme-dark .register-pg .register-box {
  -webkit-box-shadow: 3px 6px 15px 0 #0002;
          box-shadow: 3px 6px 15px 0 #0002;
}

.theme-dark .footer {
  background-color: #1c2235 !important;
}

/*.theme-dark .butn:hover {*/
/*  background-color: #040710 !important;*/
/*  border: 1px solid #040710 !important;*/
/*}*/

.theme-dark .butn:hover {
    background-color: #000 !important;
    border: 1px solid #fff3 !important;
}

.themeToggler {
  position: relative;
  top: 5px;
  /* The switch - the box around the slider */
  /* Hide default HTML checkbox */
  /* The slider */
  /* Rounded sliders */
}

.themeToggler .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 31px;
  margin: 0 15px 0 0;
}

.themeToggler .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.themeToggler .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.themeToggler .slider:before {
  position: absolute;
  content: "Dark";
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: bold;
  font-size: 11px;
  left: -10px;
  bottom: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid #0e183a;
  background-color: #0e183a;
  color: #fff;
  -webkit-box-shadow: 0 0px 15px #2020203d;
          box-shadow: 0 0px 15px #2020203d;
}

.themeToggler input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #E8BA27;
          box-shadow: 0 0 1px #E8BA27;
}

.themeToggler input:checked + .slider:before {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  content: "Light";
  background-color: #fff;
  border: 1px solid #fff;
  color: var(--primary);
}

.themeToggler .slider.round {
  border-radius: 10px;
}

.themeToggler .slider.round:before {
  border-radius: 10px;
}
/*# sourceMappingURL=style.css.map */

.theme-dark .features-sec .feature_card{
    color: #fff;
}

.theme-dark p {
    color: #ddd;
}

.theme-dark .footer .social_links .sm_butn:hover{
    background-color: var(--primary) !important;
}

.theme-dark .register-pg .color-primary {
    color: #fff;
}

.theme-dark .color-gray2 {
    color: #ccc;
}

.theme-dark .register-pg .register-box .card-body .forget_pass {
    color: #ccc !important;
}

.theme-dark .summary-checkout .butn.primary_border_butn{
  background-color: #fff;
}

.theme-dark .checkout-pg form .form-control::placeholder,
.theme-dark .checkout-pg label{
    color: #fff;
}

.theme-dark .timer-nav{
    background-color: #fff1 !important; 
}

.theme-dark .timer-nav .title{
    color: #fff;
}

/*---------------*/

.widget-visible iframe {
    display: none !important;
}


/*--------26/5-------*/
.whatsapp_butn {
    width: 60px;
    height: 60px;
    position: fixed;
    inset-inline-start: 15px;
    bottom: 20px;
    right: 20px;
    z-index: 80;
    -webkit-box-shadow: 0 0px 15px 0 #0001;
    box-shadow: 0 0px 15px 0 #0001;
    border-radius: 50%;
}

.whatsapp_butn img {
    width: 100%;
    height: 100%;
}
