@import url("https://fonts.googleapis.com/css2?family=Lemonada:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --primary: #F16A25;
  --secondary: #42464F;
  --filterPrimary: invert(42%) sepia(73%) saturate(813%) hue-rotate(343deg) brightness(102%) contrast(95%);
  --filterSecondary: invert(25%) sepia(12%) saturate(491%) hue-rotate(183deg) brightness(93%) contrast(88%);
  --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: "Lemonada", cursive;
  scroll-behavior: smooth;
}

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

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

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

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

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

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

div::-webkit-scrollbar,
ul::-webkit-scrollbar,
nav::-webkit-scrollbar {
  height: 5px;
}

/**********************************************
   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,
.p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
  margin-bottom: 0;
}

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;
  background-color: transparent;
}

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 !important;
          box-shadow: none !important;
}

form .form-group {
  position: relative;
}

form .form-control {
  font-size: 14px;
}

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

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

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

form textarea {
  resize: none;
}

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

.progress-wrap {
  position: fixed;
  inset-inline-end: 15px;
  bottom: 15px;
  height: 45px;
  width: 45px;
  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/icons/top-arrow.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: 10.5px;
  top: 10.5px;
  height: 25px;
  width: 25px;
  display: block;
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

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

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

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

.trans_3 {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.dir_ltr {
  direction: ltr;
}

/**********************************************
   Start Loader
**********************************************/
#preloader {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  z-index: 9999999;
  pointer-events: none;
  /*----------- upload loader ------------*/
}

#preloader::after, #preloader::before {
  content: "";
  position: fixed;
  left: 0;
  height: 50%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#0d1a36), color-stop(#132650), to(#0a152e));
  background: linear-gradient(to right, #0d1a36, #132650, #0a152e);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.7;
}

#preloader::before {
  top: 0;
}

#preloader::after {
  bottom: 0;
}

#preloader .logo_img {
  width: 300px;
  max-width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 20;
  opacity: 0.5;
}

#preloader #loading-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: #0005;
  display: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#preloader #loading-wrapper.show {
  display: block;
}

#preloader #loading-wrapper #loading-text {
  display: block;
  position: absolute;
  top: calc(50% - 38px);
  left: 50%;
  color: #fff;
  width: 100px;
  height: 100px;
  margin: -7px 0 0 -45px;
  text-align: center;
  font-size: 20px;
}

#preloader #loading-wrapper img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}

#preloader #loading-wrapper #loading-content {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  border: 3px solid #F00;
}

#preloader #loading-wrapper #loading-content::after {
  content: "";
  position: absolute;
  border: 3px solid #0F0;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
}

#preloader #loading-wrapper #loading-content::before {
  content: "";
  position: absolute;
  border: 3px solid #00F;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
}

#preloader #loading-wrapper #loading-content {
  border: 3px solid transparent;
  border-top-color: #3659A3;
  border-bottom-color: #3659A3;
  border-radius: 50%;
  -webkit-animation: loader 2s linear infinite;
  animation: loader 2s linear infinite;
}

#preloader #loading-wrapper #loading-content::before {
  border: 3px solid transparent;
  border-top-color: #0aafde;
  border-bottom-color: #0aafde;
  border-radius: 50%;
  -webkit-animation: loader 3s linear infinite;
  animation: loader 3s linear infinite;
}

#preloader #loading-wrapper #loading-content::after {
  border: 3px solid transparent;
  border-top-color: #E33F74;
  border-bottom-color: #E33F74;
  border-radius: 50%;
  -webkit-animation: loader 1.5s linear infinite;
  animation: loader 1.5s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
}

#preloader.isdone {
  visibility: hidden;
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

#preloader.isdone #loading-wrapper {
  opacity: 0;
  -webkit-transform: scale(3);
  transform: scale(3);
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

#preloader.isdone::after, #preloader.isdone::before {
  height: 0;
  -webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

#preloader #content-wrapper {
  color: #FFF;
  position: fixed;
  left: 0;
  top: 20px;
  width: 100%;
  height: 100%;
}

#preloader #header {
  width: 800px;
  margin: 0 auto;
  text-align: center;
  height: 100px;
  background-color: #666;
}

#preloader #content {
  width: 800px;
  height: 1000px;
  margin: 0 auto;
  text-align: center;
  background-color: #888;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/**********************************************
   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);
  }
}

.slide_ltr {
  -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%);
}

.slide_ltr.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%);
}

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

.slide_rtl {
  -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%);
}

.slide_rtl.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%);
}

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

@-webkit-keyframes puff-in {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes puff-in {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.puff-in {
  -webkit-animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
          animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@-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: 80px 0;
  overflow: hidden;
}

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

.swiper-container .swiper-pagination .swiper-pagination-bullet,
.categ_sec .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 3px;
  border-radius: 25px;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active,
.categ_sec .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev,
.categ_sec .swiper-button-next,
.categ_sec .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;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before,
.categ_sec .swiper-button-next::before,
.categ_sec .swiper-button-prev::before {
  font-family: "Font Awesome 6 Pro";
  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,
.categ_sec .swiper-button-next:hover,
.categ_sec .swiper-button-prev:hover {
  background-color: var(--primary);
  opacity: 1;
}

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

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

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

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

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

.butn {
  position: relative;
  padding: .9rem 2rem;
  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: 15px;
  font-weight: bold;
  border: 1px solid transparent;
  border-radius: 25px;
}

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

.butn.sm_butn {
  padding: 0;
  width: 50px;
  height: 50px;
}

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

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

.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.white_butn {
  background-color: #fff;
  color: #333;
}

.butn.white_border_butn {
  background-color: #fff;
  color: var(--primary);
  border: 1px solid #ddd;
}

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

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

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

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

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

.badge {
  border-radius: 10px;
  padding: .5rem 1rem;
  font-size: 13px;
}

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

.has_icon {
  position: relative;
}

.has_icon::after {
  content: '';
  background: url(../images/icon.png) no-repeat center;
  background-size: contain;
  width: 35px;
  height: 35px;
  display: inline-block;
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  position: relative;
  top: 7px;
}

.modal .btn-close {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
  position: absolute;
  left: 15px;
  top: 15px;
}

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

.modal .modal-content .form-control {
  border-radius: 35px;
}

.modal .modal-content .butn {
  min-width: 100px;
}

.logoutModal .icon_box {
  margin: 0 auto 25px auto;
}

.logoutModal .icon_box .icon {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}

.stateModal .icon {
  margin: 0 auto 25px auto;
  width: 235px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.stateModal .title {
  font-size: 20px !important;
}

[type="tel"], [type="url"], [type="email"], [type="number"] {
  direction: inherit;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .top_nav {
  background-color: #000000;
  padding: 10px 0;
}

.navs-container .top_nav .links_contact .nav_butn {
  color: #fff;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
  font-size: 12px;
}

.navs-container .top_nav .links_contact .nav_butn i {
  color: var(--primary);
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.navs-container .top_nav .social-links a {
  margin: 0 7px;
  color: #f7f7f7;
}

.navs-container .mid_nav {
  position: relative;
  padding: 1rem 0;
  z-index: 99;
}

.navs-container .mid_nav .logo {
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .mid_nav .search_box .form-group .form-control {
  height: 50px !important;
  background-color: #fff;
  border-color: #eee;
  -webkit-box-shadow: 3px 10px 10px 0 #0002;
          box-shadow: 3px 10px 10px 0 #0002;
  border-radius: 0;
  font-size: 12px;
  -webkit-padding-end: 45px;
          padding-inline-end: 45px;
}

.navs-container .mid_nav .search_box .form-group .form-control.search_input {
  border-radius: 25px;
}

.navs-container .mid_nav .search_box .form-group .form-control:focus {
  border-color: #EBEBEB !important;
}

.navs-container .mid_nav .search_box .form-group .search_butn {
  width: 40px;
  height: 40px;
  position: absolute;
  inset-inline-end: 5px;
  top: 5px;
  background-color: var(--primary);
  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;
  color: #fff;
  border-radius: 50%;
}

.navs-container .mid_nav .search_box .form-group .search_butn:hover {
  background-color: var(--secondary);
}

.navs-container .mid_nav .nav_end .butn {
  font-size: 15px;
}

.navs-container .mid_nav .nav_end .butn.sm_butn {
  width: 45px;
  height: 45px;
}

.navs-container .mid_nav .nav_end .lang_butn {
  font-size: 12px;
}
.navs-container .mid_nav .nav_end .lang_butn img {
    width: 25px;
    object-fit: contain;
}

.navs-container .mid_nav .nav_end .dropdown-menu {
  text-align: center;
  border-radius: 0 0 15px 15px;
  border-color: transparent;
  -webkit-box-shadow: 0px 0px 15px 0 #3331;
          box-shadow: 0px 0px 15px 0 #3331;
  font-size: 11px;
  border-top: 4px solid var(--primary);
  left: -50px !important;
}

.navs-container .mid_nav .nav_end .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
}

.navs-container .navbar {
  position: relative;
  z-index: 9;
  background-color: var(--primary);
}

.navs-container .navbar .nav-link {
  margin: 0 15px;
  font-size: 15px;
  color: #f5f5f5;
}

.navs-container .navbar .nav-link.active {
  color: #fff;
  font-weight: bold;
}

.navs-container .navbar .nav-link:hover {
  color: #fff !important;
}

.navs-container .navbar .has_dropdown {
  position: relative;
}

.navs-container .navbar .has_dropdown .drop_down {
  background-color: #fff;
  border-radius: 0 0 33px 33px;
  width: 220px;
  padding: .5rem;
  position: absolute;
  top: 46px;
  -webkit-box-shadow: 0px 0px 15px 0 rgba(94, 94, 94, 0.067);
          box-shadow: 0px 0px 15px 0 rgba(94, 94, 94, 0.067);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: 0;
  visibility: hidden;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  border: 1px solid #f5f5f5;
}

.navs-container .navbar .has_dropdown .drop_down a {
  display: block;
  padding: .5rem 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  color: #888;
  font-size: 12px;
  border-bottom: 1px solid #eee;
}

.navs-container .navbar .has_dropdown .drop_down a:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.navs-container .navbar .has_dropdown .drop_down a:hover {
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
}

.navs-container .navbar .has_dropdown:hover .drop_down {
  opacity: 1;
  visibility: visible;
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

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

.tab-bar-mob {
  background-image: -webkit-gradient(linear, left top, right top, from(#04121b), to(#030d13));
  background-image: linear-gradient(to right, #04121b, #030d13);
  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: 11px;
  min-width: 85px;
  text-align: center;
  color: #ddd;
}

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

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

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

.footer {
  position: relative;
  background-color: #F2F2F2;
  padding: 70px 0 0 0;
}

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

.footer .content .logo {
  width: 160px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer .content .p {
  font-size: 11px;
  color: #3A3A3A;
}

.footer .content .title {
  font-weight: bold;
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.footer .content .links a {
  font-size: 12px;
  display: block;
  margin: 18px 0;
  color: #3A3A3A;
}

.footer .content .links a::before {
  content: '';
  width: 4px;
  height: 4px;
  background-color: #3A3A3A;
  border-radius: 50%;
  display: inline-block;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.footer .content .links a:hover {
  color: var(--primary);
}

.footer .content .links p {
  margin: 18px 0;
  font-size: 12px;
  color: #3A3A3A;
}

.footer .content .links p i {
  color: var(--primary);
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.footer .content .form-group {
  position: relative;
}

.footer .content .form-group .form-control {
  height: 50px !important;
  border-radius: 25px;
  background-color: #fff;
  -webkit-padding-end: 45px;
          padding-inline-end: 45px;
}

.footer .content .form-group .submit-butn {
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  color: #fff;
  position: absolute;
  bottom: 10px;
  /*left: 10px;*/
  inset-inline-end: 10px;
  font-size: 14px;
  border-radius: 50%;
}

.footer .content .form-group .submit-butn:hover {
  background-color: var(--secondary);
}

.footer .content .social_links a {
  width: 35px;
  height: 35px;
  background-color: #fff;
  color: var(--primary);
  border-radius: 50%;
  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: 7px;
          margin-inline-end: 7px;
}

.footer .content .social_links a:hover {
  background-color: var(--primary);
  color: #fff !important;
}

.footer .foot {
  border-top: 1px solid #ccccccdb;
  font-size: 12px;
  color: #888;
}

.footer .foot .alyom_logo {
  width: 45px;
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  background-color: #f5f5f5;
}

.header .item .txt_box .title {
  font-size: calc(1vw + 30px);
}

.header .item .img_box .secImg {
  height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
}

.categ_sec .categ_card {
  height: 240px;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #eee;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.categ_sec .categ_card .txt_box {
  padding: 50px 0;
  -webkit-padding-start: 2vw;
          padding-inline-start: 2vw;
              height: 100%;
    position: relative;
}

.categ_sec .categ_card .txt_box .title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
        height: 81px;
    overflow: hidden;
}

.categ_sec .categ_card .txt_box .sm_butn {
  width: 45px;
  height: 45px;
position: absolute;
    top: 155px;
    inset-inline-start: 27px;
}

.categ_sec .categ_card .categImg {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 240px;
}

.categ_sec .categ_card:hover {
  background-color: #F0F0F0;
  border-color: #ccc;
}

.features_sec {
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.features_sec .feature_card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*-webkit-box-align: center;*/
      /*-ms-flex-align: center;*/
          /*align-items: center;*/
  width: 100%;
  margin: 10px 0;
  padding: 0 5px;
}

.features_sec .feature_card .icon {
  width: 50px;
  height: 50px;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
  -webkit-filter: var(--filterSecondary);
          filter: var(--filterSecondary);
  -webkit-transition: all .05s linear;
  transition: all .05s linear;
}

.features_sec .feature_card .data {
  width: calc(100% - 70px);
}

.features_sec .feature_card .data .title {
  font-size: 16px;
  margin-bottom: .5rem;
  font-weight: bold;
  color: var(--secondary);
}

.features_sec .feature_card .data .p {
  font-size: 11px;
}

.features_sec .feature_card:hover .icon {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
  -webkit-animation: pulse 1s infinite alternate;
          animation: pulse 1s infinite alternate;
}

.products_sec .prod_card {
  position: relative;
  margin: 10px 0;
  border: 1px solid #eee;
  border-radius: 20px;
}

.products_sec .prod_card .img-box {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.products_sec .prod_card .img-box .secImg {
  -o-object-fit: contain;
     object-fit: contain;
}

.products_sec .prod_card .img-box .butns-hvr {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-transform: translateY(70px);
          transform: translateY(70px);
  opacity: 0;
}

.products_sec .prod_card .img-box .butns-hvr .butn {
  border-radius: 0;
  width: 50%;
  height: 40px;
  line-height: 50px;
  font-size: 9px;
  padding: 0;
  letter-spacing: 0;
}

.products_sec .prod_card .img-box .butns-hvr .butn .icon {
  width: 16px;
  height: 16px;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: invert(93%) sepia(0%) saturate(7467%) hue-rotate(70deg) brightness(157%) contrast(110%);
          filter: invert(93%) sepia(0%) saturate(7467%) hue-rotate(70deg) brightness(157%) contrast(110%);
}

.products_sec .prod_card .img-box .butns-hvr .butn.fav_butn.active {
  background-color: var(--primary) !important;
  color: #fff !important;
}

.products_sec .prod_card .img-box .butns-hvr::after {
  content: '';
  width: 1px;
  height: 100%;
  background-color: #ccc;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.products_sec .prod_card .img-box .badge {
  font-size: 10px;
  position: absolute;
  top: 20px;
  right: 15px;
}

.products_sec .prod_card .card-body {
  text-align: center;
  padding: 1.5rem 1.35rem;
}

.products_sec .prod_card .card-body .title {
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 23px;
  font-size: 17px;
}

.products_sec .prod_card .card-body .price_box {
  font-size: 16px;
}

.products_sec .prod_card .card-body .price_box .fw-bold {
  color: var(--primary);
}

.products_sec .prod_card .card-body .price_box .prev_price {
  color: #C4C4C4;
  text-decoration: line-through;
}

.products_sec .prod_card .card-body .rating {
  font-size: 17px;
  color: #333;
}

.products_sec .prod_card .card-body .rating i {
  color: #FFB923;
}

.products_sec .prod_card:hover .hvr-img {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.products_sec .prod_card:hover .butns-hvr {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

.products_sec .prod_card:hover .title {
  color: var(--primary);
}

.banner_sec .inner {
  border-radius: 20px;
  background-color: var(--secondary);
  padding: 10px 0;
  -webkit-padding-start: 5vw;
          padding-inline-start: 5vw;
  position: relative;
}

.banner_sec .inner .secImg {
  height: 450px;
  -o-object-fit: contain;
     object-fit: contain;
}

.banner_sec .inner .bg {
  border-radius: 20px;
}

.banner_sec .inner::before {
  content: '';
  background: url(../images/banner_sale.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: -28px;
  right: -16px;
  width: 350px;
  height: 300px;
  z-index: 1;
}

.banner_sec::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: #F2F2F2;
  height: 200px;
  top: unset;
}

/**********************************************
    Start Edit pg-header
**********************************************/
.pg_header {
  padding: 0 !important;
}

.pg_header .bread {
  padding: 25px 0 !important;
  border-bottom: 1px solid #eee;
}

.pg_header .item {
  position: relative;
  -webkit-padding-end: 45px;
          padding-inline-end: 45px;
  font-size: 13px;
  color: #888888;
}

.pg_header .item::after {
  content: '';
  width: 22px;
  height: 22px;
  background: url(../images/icon.png) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  inset-inline-end: 10px;
}

.pg_header .item.active {
  color: var(--primary);
}

.pg_header .item.active::after {
  display: none;
}

/**********************************************
    Start Edit about Page 
**********************************************/
.about_pg .txt_box .p {
  line-height: 2.2;
  font-size: 13px;
  text-align: justify;
}

.about_pg .img_box {
  position: relative;
  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;
  width: 550px;
  height: 550px;
}

.about_pg .img_box .secImg {
  border-radius: 50%;
  width: 320px;
  height: 350px;
  -o-object-fit: contain;
     object-fit: contain;
}

.about_pg .img_box::before {
  content: '';
  width: 550px;
  height: 550px;
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  background: url(../images/icon2.png) no-repeat center;
  background-size: contain;
  opacity: .1;
}

.about_cards .about_card {
  padding: 35px 3vw;
  position: relative;
  margin-bottom: 25px;
  height: calc(100% - 25px);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  text-align: center;
  border-radius: 35px;
  -webkit-box-shadow: 0px 0px 46px 0 #58585817;
          box-shadow: 0px 0px 46px 0 #58585817;
}

.about_cards .about_card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.about_cards .about_card .s_icon {
  font-size: 33px;
  color: var(--primary);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 30px;
  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;
  position: relative;
}

.about_cards .about_card .s_icon::before {
  content: '';
  width: 100px;
  height: 100px;
  background: url(../images/icon2.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: -10px;
  left: -10px;
  -webkit-filter: invert(9%) sepia(0%) saturate(7%) hue-rotate(1deg) brightness(127%) contrast(96%);
          filter: invert(9%) sepia(0%) saturate(7%) hue-rotate(1deg) brightness(127%) contrast(96%);
  opacity: .15;
}

.about_cards .about_card .txt .title {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--secondary);
}

.about_cards .about_card .txt .p {
  margin-bottom: 0;
  color: #B1AAAA;
  font-size: 10px;
}

.partner_sec .partnerLogo {
  max-width: 85%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.partner_sec .partnerLogo:hover {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

/**********************************************
    Start Edit contact  Page 
**********************************************/
.contact_pg .contact_card {
  text-align: center;
  position: relative;
  background-color: #f5f5f5;
  margin-bottom: 35px;
  margin-top: 30px;
  padding: 60px 1.5rem 2rem  1.5rem;
  height: calc(100% - 65px);
  border-radius: 20px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.contact_pg .contact_card .icon_box {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  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;
  position: relative;
  z-index: 5;
  top: -35px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.contact_pg .contact_card .icon_box i {
  font-size: 30px;
  color: var(--primary);
  position: relative;
  z-index: 6;
}

.contact_pg .contact_card .icon_box .icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact_pg .contact_card .icon_box::before {
  content: '';
  width: 100px;
  height: 50px;
  background: url(../images/contact_iconbox.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}

.contact_pg .contact_card .icon_box::after {
  content: '';
  width: 58px;
  height: 18px;
  background-color: #f5f5f5;
  position: absolute;
  top: 17px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 0;
}

.contact_pg .contact_card .txt_box .label {
  color: #777;
  font-size: 13px;
}

.contact_pg .contact_card .txt_box .data {
  font-size: 14px;
  font-weight: bold;
  color: #222;
}

.contact_pg .contact_card .txt_box .social_links a {
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.contact_pg .contact_card .txt_box .social_links a .socaiIcon {
  width: 25px;
  height: 25px;
}

.contact_pg .contact_card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.contact_pg .form_box {
  background-color: #f5f5f5;
  padding: 3vw;
  border-radius: 25px;
}

.contact_pg .form_box .form-control {
  -webkit-padding-start: 55px;
          padding-inline-start: 55px;
}

.contact_pg .form_box .icon {
  font-size: 20px;
  color: var(--primary);
  position: absolute;
  inset-inline-start: 20px;
  top: 16px;
      width: 20px;
    height: 20px;
    object-fit: contain;
}

.contact_pg .form_box .phone_group .form-control {
  padding-left: 140px;
  /*text-align: left !important;*/
}

.contact_pg .form_box .phone_group .phoneSelect {
  border: none !important;
  position: absolute;
  left: 10px;
  top: 0;
  width: 80px;
  background-color: transparent;
}

.contact_pg .form_box .phone_group .phoneSelect:focus-visible {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.contact_pg .form_box .phone_group .countryCode_span {
  position: absolute;
  left: 1px;
  top: 1px;
  height: calc(100% - 2px);
  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 1rem;
  background-color: #eee;
  font-size: 15px;
  font-weight: bold;
  direction: ltr;
  border-radius: 24px 0 0 24px;
}

.contact_pg .form_box textarea {
  padding-top: 15px;
}

.contact_pg .form_box .butn {
  min-width: 170px;
  height: 60px;
  font-size: 15px;
  border-radius: 24px;
}

.contact_pg .map_box {
  background-color: #f5f5f5;
  padding: 1vw;
  border-radius: 25px;
  height: 560px;
}

.contact_pg .map_box iframe {
  border-radius: 25px;
}

.map_box iframe {
  border-radius: 25px;
}

.form-control {
  padding: .5rem 1.75rem;
  font-size: 12px;
  border-radius: 24px;
  border-color: #fff;
  background-color: #fff;
}

.form-control::-webkit-input-placeholder {
  font-size: 12px;
}

.form-control:-ms-input-placeholder {
  font-size: 12px;
}

.form-control::-ms-input-placeholder {
  font-size: 12px;
}

.form-control::placeholder {
  font-size: 12px;
}

/**********************************************
    Start Edit register  Pages
**********************************************/
.register_pg .inner {
  border-radius: 25px;
  background-color: #f5f5f5;
}

.register_pg .inner .form_box {
  padding: 45px 3vw;
}

.register_pg .inner .form_box .text_box .p {
  font-size: 12px;
  color: #888;
}

.register_pg .inner .form_box .form-group .form-control {
  -webkit-padding-start: 55px;
          padding-inline-start: 55px;
}

.register_pg .inner .form_box .form-group .icon {
  font-size: 20px;
  color: var(--primary);
  position: absolute;
  inset-inline-start: 20px;
  top: 16px;
}

.register_pg .inner .form_box .phone_group .form-control {
  padding-left: 95px;
  text-align: left;
}

.register_pg .inner .form_box .phone_group .phoneSelect {
  border: none !important;
  position: absolute;
  left: 10px;
  top: 0;
  width: 80px;
  background-color: transparent;
}

.register_pg .inner .form_box .phone_group .phoneSelect:focus-visible {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.register_pg .inner .form_box .phone_group .countryCode_span {
  position: absolute;
  left: 1px;
  top: 1px;
  height: calc(100% - 2px);
  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 1rem;
  background-color: #eee;
  font-size: 15px;
  font-weight: bold;
  direction: ltr;
  border-radius: 24px 0 0 24px;
}

.register_pg .inner .form_box .phone_group .submit_phone_butn {
  position: absolute;
  right: 54px;
  top: 26px;
  color: var(--secondary);
  font-size: 11px;
  text-decoration: underline !important;
  font-weight: bold;
}

.register_pg .inner .form_box .forget_link,
.register_pg .inner .form_box .resend_link,
.register_pg .inner .form_box .txt_code {
  color: #666 !important;
  font-size: 11px !important;
}

.register_pg .inner .form_box .forget_link:hover,
.register_pg .inner .form_box .resend_link:hover {
  color: var(--primary) !important;
}

.register_pg .inner .form_box .another_opt {
  font-size: 12px;
  color: #888;
}

.register_pg .inner .form_box .another_opt a {
  color: var(--primary);
}

.register_pg .inner .form_box .submit_butn {
  font-size: 18px;
  height: 60px;
  border-radius: 24px;
}

.register_pg .inner .restore_tabs .nav-link {
  color: #012E47;
  width: 100%;
  height: 70px;
  background-color: #fff;
  border: 1px solid #fff;
  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;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  font-weight: bold;
  color: #012E47;
  font-size: 12px;
  border-radius: 25px;
}

.register_pg .inner .restore_tabs .nav-link .icon {
  width: 25px;
  height: 25px;
  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: #f5f5f5;
  color: var(--primary);
  border-radius: 5px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.register_pg .inner .restore_tabs .nav-link.active {
  border-color: #f8bc9e !important;
  background-color: #FFF2F2;
}

.register_pg .inner .restore_tabs .nav-link.active .icon {
  background-color: #fff;
}

.register_pg .inner .form-check .form-check-label {
  font-size: 12px;
  color: #012E47;
}

.register_pg .inner .form-check .form-check-label a {
  color: #8E8E8E;
}

.register_pg .drop_box {
  overflow: hidden;
  height: 60px;
  background-color: #fff;
  border: 1px solid #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 25px;
  cursor: pointer;
  -webkit-padding-start: 55px;
          padding-inline-start: 55px;
}

.register_pg .drop_box .kwt-file {
  width: 100%;
}

.register_pg .drop_box .kwt-file__drop-area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.register_pg .drop_box .kwt-file__drop-area.is-active {
  background-color: transparent;
}

.register_pg .drop_box .kwt-file__choose-file {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #fff;
  border-radius: 5px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  color: var(--primary);
  width: 40px;
  height: 40px;
  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;
  font-size: 15px;
  display: none !important;
}

.register_pg .drop_box .kwt-file__choose-file.kwt-file_btn-text {
  border-radius: 4px;
  width: auto;
  height: auto;
  padding: 10px 20px;
  font-size: 14px;
}

.register_pg .drop_box .kwt-file__choose-file svg {
  width: 19px;
  height: 19px;
  display: block;
}

.register_pg .drop_box .kwt-file__msg {
  color: #888;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.register_pg .drop_box .kwt-file__input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}

.register_pg .drop_box .kwt-file__input:focus {
  outline: none;
}

.register_pg .drop_box .kwt-file__delete {
  display: none;
  position: absolute;
  inset-inline-end: 20px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.register_pg .drop_box .kwt-file__delete:before {
  content: "";
  position: absolute;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg fill='%231d3557' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 438.5 438.5'%3e%3cpath d='M417.7 75.7A8.9 8.9 0 00411 73H323l-20-47.7c-2.8-7-8-13-15.4-18S272.5 0 264.9 0h-91.3C166 0 158.5 2.5 151 7.4c-7.4 5-12.5 11-15.4 18l-20 47.7H27.4a9 9 0 00-6.6 2.6 9 9 0 00-2.5 6.5v18.3c0 2.7.8 4.8 2.5 6.6a8.9 8.9 0 006.6 2.5h27.4v271.8c0 15.8 4.5 29.3 13.4 40.4a40.2 40.2 0 0032.3 16.7H338c12.6 0 23.4-5.7 32.3-17.2a64.8 64.8 0 0013.4-41V109.6h27.4c2.7 0 4.9-.8 6.6-2.5a8.9 8.9 0 002.6-6.6V82.2a9 9 0 00-2.6-6.5zm-248.4-36a8 8 0 014.9-3.2h90.5a8 8 0 014.8 3.2L283.2 73H155.3l14-33.4zm177.9 340.6a32.4 32.4 0 01-6.2 19.3c-1.4 1.6-2.4 2.4-3 2.4H100.5c-.6 0-1.6-.8-3-2.4a32.5 32.5 0 01-6.1-19.3V109.6h255.8v270.7z'/%3e%3cpath d='M137 347.2h18.3c2.7 0 4.9-.9 6.6-2.6a9 9 0 002.5-6.6V173.6a9 9 0 00-2.5-6.6 8.9 8.9 0 00-6.6-2.6H137c-2.6 0-4.8.9-6.5 2.6a8.9 8.9 0 00-2.6 6.6V338c0 2.7.9 4.9 2.6 6.6a8.9 8.9 0 006.5 2.6zM210.1 347.2h18.3a8.9 8.9 0 009.1-9.1V173.5c0-2.7-.8-4.9-2.5-6.6a8.9 8.9 0 00-6.6-2.6h-18.3a8.9 8.9 0 00-9.1 9.1V338a8.9 8.9 0 009.1 9.1zM283.2 347.2h18.3c2.7 0 4.8-.9 6.6-2.6a8.9 8.9 0 002.5-6.6V173.6c0-2.7-.8-4.9-2.5-6.6a8.9 8.9 0 00-6.6-2.6h-18.3a9 9 0 00-6.6 2.6 8.9 8.9 0 00-2.5 6.6V338a9 9 0 002.5 6.6 9 9 0 006.6 2.6z'/%3e%3c/svg%3e");
}

.register_pg .drop_box .kwt-file__delete:after {
  content: "";
  position: absolute;
  opacity: 0;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  background-color: #1d3557;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.register_pg .drop_box .kwt-file__delete:hover:after {
  -webkit-transform: translate(-50%, -50%) scale(2.2);
          transform: translate(-50%, -50%) scale(2.2);
  opacity: 0.1;
}

.show_hide_password .show_pass {
  position: absolute;
  top: 23px;
  inset-inline-end: 20px;
  cursor: pointer;
  color: #888;
}

.profile-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid #eee;
  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 another Page 
**********************************************/
.content_pg .inner {
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 50px 3vw;
}

.content_pg .inner .p {
  font-size: 12px;
  line-height: 2.5;
  color: #888;
}

/**********************************************
    Start Edit products Page 
**********************************************/
.products_pg .filter_box {
  background-color: #f5f5f5;
  padding: 35px 2vw;
  border-radius: 20px;
  border: 1px solid #eee;
}

.products_pg .filter_box .title {
  font-size: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D6D3D3;
  margin-bottom: 30px;
}

.pagination-wrapper .page-link {
  padding: 5px;
  width: 35px;
  height: 35px;
  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;
  color: #666;
  font-size: 11px;
  border-radius: 7px !important;
  margin: 0 7px;
}

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

.pagination-wrapper .page-link.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/**********************************************
    Start Edit profile_pg
**********************************************/
.profile_pg .prof-side .wrapper {
  padding: 3vw 2vw;
  border-radius: 25px;
  margin-bottom: 25px;
  background-color: #f5f5f5;
}

.profile_pg .prof-side .wrapper.prof-data .img-box {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -webkit-box-shadow: 0 3px 10px 0 rgba(136, 136, 136, 0.15);
          box-shadow: 0 3px 10px 0 rgba(136, 136, 136, 0.15);
  margin: auto;
  overflow: hidden;
}

.profile_pg .prof-side .wrapper.prof-data .name {
  font-size: 16px;
}

.profile_pg .prof-side .wrapper.links-data .nav-link {
  color: #666;
  padding: 0.8rem 1rem;
  border-radius: 15px;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 5px;
}

.profile_pg .prof-side .wrapper.links-data .nav-link.active {
  background-color: var(--primary);
  color: #fff !important;
}

.profile_pg .tab_wrapper {
  padding: 50px 3vw;
  border-radius: 20px;
  background-color: #f5f5f5;
  position: relative;
}

.profile_pg .tab_wrapper .sec_head {
  position: relative;
  padding-bottom: 25px;
}

.profile_pg .tab_wrapper .sec_head::after, .profile_pg .tab_wrapper .sec_head::before {
  content: '';
  height: 1px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 25px;
}

.profile_pg .tab_wrapper .sec_head::after {
  width: 100%;
  background-color: #D9D9D9;
}

.profile_pg .tab_wrapper .sec_head::before {
  height: 4px;
  width: 20%;
  background-color: var(--primary);
  z-index: 1;
  bottom: -1.5px;
}

.profile_pg .tab_wrapper .primary_butn {
  min-width: 200px;
  font-size: 14px;
}

.profile_pg .tab_wrapper.profile_tab .editData_box {
  display: none;
}

.profile_pg .tab_wrapper.profile_tab .phone_group .form-control {
  padding-left: 95px;
  text-align: left;
}

.profile_pg .tab_wrapper.profile_tab .phone_group .countryCode_span {
  position: absolute;
  left: 1px;
  top: 1px;
  height: calc(100% - 2px);
  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 1rem;
  background-color: #eee;
  font-size: 15px;
  font-weight: bold;
  direction: ltr;
  border-radius: 24px 0 0 24px;
}

.profile_pg .tab_wrapper.profile_tab .editPhone_butn {
  position: absolute;
  left: 5px;
  bottom: 5px;
  width: 100px;
  min-width: 100px;
}

.profile_pg .tab_wrapper.orders_tab .nav-link {
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
  width: 120px;
  height: 50px;
  border-radius: 25px;
  background-color: #fff;
  border: 1px solid  #eee;
  font-weight: bold;
  color: #1C1C1C;
  font-size: 12px;
}

.profile_pg .tab_wrapper.orders_tab .nav-link.active {
  border-color: var(--primary) !important;
  background-color: #FFF2F2;
}

.profile_pg .tab_wrapper.orders_tab .table thead, .profile_pg .tab_wrapper.orders_tab .table tbody, .profile_pg .tab_wrapper.orders_tab .table tfoot, .profile_pg .tab_wrapper.orders_tab .table tr, .profile_pg .tab_wrapper.orders_tab .table td, .profile_pg .tab_wrapper.orders_tab .table th {
  border-color: unset;
  border-style: unset;
  border-width: unset;
  text-align: center;
}

.profile_pg .tab_wrapper.orders_tab .table thead tr {
  background-color: var(--primary);
  border-radius: 25px;
  text-align: center;
}

.profile_pg .tab_wrapper.orders_tab .table thead tr th {
  color: #fff;
  font-size: 12px;
  padding: 1rem 1rem;
}

.profile_pg .tab_wrapper.orders_tab .table thead tr th:nth-child(1) {
  border-radius: 0 25px 25px 0;
}

.profile_pg .tab_wrapper.orders_tab .table thead tr th:last-child {
  border-radius: 25px 0 0 25px;
}

.profile_pg .tab_wrapper.orders_tab .table td {
  vertical-align: middle;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  font-size: 11px;
}

.profile_pg .tab_wrapper.orders_tab .table td .prodImg {
  width: 100px;
  height: 100px;
  border: 1px solid #eee;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile_pg .tab_wrapper.orders_tab .table td .qty-container {
  padding: 0;
}

.profile_pg .tab_wrapper.orders_tab .table tr:last-child td {
  border-bottom: 1px solid transparent;
}

.profile_pg .tab_wrapper.orders_tab .table .butn.sm_butn {
  padding: 0;
  width: 30px;
  height: 30px;
  font-size: 13px;
}

.profile_pg .tab_wrapper.loc_tab .loc_card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 25px;
  margin: 0 auto 25px auto;
}

.profile_pg .tab_wrapper.loc_tab .loc_card .heading {
  padding: 25px;
  border-bottom: 1px solid #eee;
}

.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: #f7f7f7;
  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: 15px;
}

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

.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: 60px;
  height: 60px;
  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: var(--primary);
  border-radius: 10px;
  font-size: 20px;
  color: #fff;
}

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

.profile_pg .tab_wrapper.loc_tab .loc_card .card-body .content .country {
  font-size: 13px;
}

.data-group {
  margin: 10px 0;
  position: relative;
}

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

.data-group .data {
  padding: 1.1rem 1.5rem;
  border-radius: 24px;
  font-size: 14px;
  background-color: #fff;
  margin-top: 10px;
  border: 1px solid #fff;
}

.data-group .data i {
  color: var(--primary);
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

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

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

.loc_pg .inner {
  background-color: #f5f5f5;
  border-radius: 30px;
  padding: 4vw;
}

.loc_pg .inner .butn {
  min-width: 150px;
}



/**********************************************
    Start Edit notifications  
**********************************************/
.notifications_pg {
    
}

.notifications_pg .noti_card {
  background-color: #fff;
  border-radius: 15px;
  padding: 35px 20px;
  margin-bottom: 25px;
  border: 1px solid #ddd;
  position: relative;
}

.notifications_pg  .noti_card .date {
  position: absolute;
  inset-inline-end: 20px;
  top: 10px;
  font-size: 10px;
  font-weight: bold;
  color: #aaa;
}

.notifications_pg  .noti_card .bell_icon {
  font-size: 50px;
  color: var(--primary);
  -webkit-margin-end: 25px;
          margin-inline-end: 25px;
}

.notifications_pg  .noti_card .content {
  width: calc(100% - 80px);
}

.notifications_pg  .noti_card .content .title {
  font-weight: bold;
  color: #666;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  font-size: 14px;
  margin-bottom: 10px !important;
}

.notifications_pg  .noti_card .content .p {
  margin-top: 5px;
  font-size: 10px;
  color: #888;
}

.notifications_pg  .noti_card:hover .title {
  color: var(--primary);
}


/**********************************************
    Start Edit cart_pg  
**********************************************/
.cart_pg .summary_checkout {
  background-color: #f5f5f5;
  border-radius: 20px;
  padding: 25px 2vw;
}

.cart_pg .summary_checkout .title {
  font-size: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D6D3D3;
  margin-bottom: 20px;
}

.cart_pg .summary_checkout .item {
  font-size: 12px;
  margin: 15px 0;
}

.cart_pg .summary_checkout .item:last-child {
  font-weight: bold;
}

.cart_pg .box {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 2vw;
  position: relative;
  margin-bottom: 20px;
}

.cart_pg .box .table thead, .cart_pg .box .table tbody, .cart_pg .box .table tfoot, .cart_pg .box .table tr, .cart_pg .box .table td, .cart_pg .box .table th {
  border-color: unset;
  border-style: unset;
  border-width: unset;
}

.cart_pg .box .table thead tr {
  background-color: #f6f6f6;
  border-radius: 25px;
  text-align: center;
}

.cart_pg .box .table thead tr th {
  color: #1C1C1C;
  font-size: 14px;
  padding: 1rem 1rem;
}

.cart_pg .box .table thead tr th:nth-child(1) {
  border-radius: 0 25px 25px 0;
}

.cart_pg .box .table thead tr th:last-child {
  border-radius: 25px 0 0 25px;
}

.cart_pg .box .table td {
  vertical-align: middle;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  font-size: 12px;
  text-align: center;
}

.cart_pg .box .table td .name {
  font-size: 13px !important;
  margin-bottom: 10px !important;
}

.cart_pg .box .table td .codeProd {
  font-size: 12px !important;
}

.cart_pg .box .table td .prodImg {
  width: 100px;
  height: 100px;
  border: 1px solid #eee;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

.cart_pg .box .table td .qty-container {
  padding: 0;
}

.cart_pg .box .table tr:last-child td {
  border-bottom: 1px solid transparent;
}

.cart_pg .box .qty-container {
  background-color: #f9f9f9;
  border-radius: 20px;
  padding: .2rem .5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.cart_pg .butns .butn {
  font-size: 13px;
}

.cart_pg .butns .butn i {
  -webkit-margin-start: 7px;
          margin-inline-start: 7px;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  font-size: 15px;
}

.qty-container {
  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;
  background-color: #f5f5f5;
  border-radius: 20px;
  padding: .2rem;
}

.qty-container .input-qty {
  text-align: center;
  padding: 6px 10px;
  border: 1px solid transparent !important;
  max-width: 60px;
  font-size: 15px;
  font-weight: bold;
  background-color: transparent;
}

.qty-container .qty-btn-minus,
.qty-container .qty-btn-plus {
  background-color: transparent;
  padding: 10px 13px;
  font-size: 12px;
  height: 38px;
  width: 45px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #777;
}

.qty-container .qty-btn-plus {
  margin-left: -1px;
}

.qty-container .qty-btn-minus {
  margin-right: -1px;
}

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

.rates_sec .inner {
  background-color: #fff;
  border: 1px solid #D3D3D3;
  border-radius: 20px;
  padding: 30px 3vw;
}

.rates_sec .inner .head_rates {
  padding: 0 .5vw;
  padding-bottom: 25px;
  border-bottom: 1px solid #D3D3D3;
}

.rates_sec .inner .rates_body {
  padding-top: 30px;
}

.rates_sec .inner .rates_body .rates_r {
  border-left: 1px solid #D3D3D3;
  padding: 25px 2vw;
}

.rates_sec .inner .rates_body .rates_r .stars i {
  color: #ccc;
}

.rates_sec .inner .rates_body .rates_r .stars i.active {
  color: #2E9600;
}

.rates_sec .inner .rates_body .rates_r .stars .num_rates {
  color: #747474;
}

.rates_sec .inner .rates_body .rates_r .stars_progress .item .star {
  color: #012E47;
  font-size: 18px;
}

.rates_sec .inner .rates_body .rates_r .stars_progress .item .progress {
  width: calc(100% - 80px);
}

.rates_sec .inner .rates_body .rates_r .stars_progress .item .progress_num {
  color: #012E47;
  font-weight: bold;
  font-size: 18px;
}

.rates_sec .inner .rates_body .rates_r .stars_progress .item:nth-child(1) .star i {
  color: #2E9600;
}

.rates_sec .inner .rates_body .rates_r .stars_progress .item:nth-child(1) .progress-bar {
  background-color: #2E9600;
}

.rates_sec .inner .rates_body .rates_r .stars_progress .item:nth-child(2) .star i {
  color: #7F9E00;
}

.rates_sec .inner .rates_body .rates_r .stars_progress .item:nth-child(2) .progress-bar {
  background-color: #7F9E00;
}

.rates_sec .inner .rates_body .rates_r .stars_progress .item:nth-child(3) .star i {
  color: #F7AA2C;
}

.rates_sec .inner .rates_body .rates_r .stars_progress .item:nth-child(3) .progress-bar {
  background-color: #F7AA2C;
}

.rates_sec .inner .rates_body .rates_r .stars_progress .item:nth-child(4) .star i {
  color: #F6752F;
}

.rates_sec .inner .rates_body .rates_r .stars_progress .item:nth-child(4) .progress-bar {
  background-color: #F6752F;
}

.rates_sec .inner .rates_body .rates_r .stars_progress .item:nth-child(5) .star i {
  color: #f24d30;
}

.rates_sec .inner .rates_body .rates_r .stars_progress .item:nth-child(5) .progress-bar {
  background-color: #f24d30;
}

.rates_sec .inner .rates_body .rates_r .faq_items .p {
  font-size: 18px;
}

.rates_sec .inner .rates_body .rates_l {
  padding: 10px 2vw 25px 2vw;
}

.rates_sec .inner .rates_body .rates_l .head_rates_l {
  padding-bottom: 25px;
  border-bottom: 1px solid #D3D3D3;
}

.rates_sec .inner .rates_body .rates_l .head_rates_l .form-control {
  height: 50px !important;
  background-color: transparent;
  border: 1px solid #eee;
}

.rates_sec .inner .rates_body .rates_l .review_item {
  position: relative;
  padding: 30px 2vw;
  border-radius: 0px;
  margin-bottom: 0px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}

.rates_sec .inner .rates_body .rates_l .review_item:last-child {
  border-bottom: none;
}

.rates_sec .inner .rates_body .rates_l .review_item .prof_data .avatar {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.rates_sec .inner .rates_body .rates_l .review_item .prof_data .name {
  font-size: 16px;
}

.rates_sec .inner .rates_body .rates_l .review_item .prof_data .rating i {
  font-size: 12px;
  color: #BDBDBD;
}

.rates_sec .inner .rates_body .rates_l .review_item .prof_data .rating i.active {
  color: #DE980F;
}

.rates_sec .inner .rates_body .rates_l .review_item .prof_data .rating .date {
  color: #7E7E7E;
  font-size: 10px;
}

.rates_sec .inner .rates_body .rates_l .review_item .review_det {
  color: #606060;
  font-size: 11px;
  margin-bottom: 0;
}

.rates_sec .inner .rates_body .rates_form .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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  padding: 0 .2em;
  text-align: center;
  margin: auto;
}

.rates_sec .inner .rates_body .rates_form .stars-content .star-rating i {
  margin: 0 5px;
}

.rates_sec .inner .rates_body .rates_form .stars-content .star-rating input {
  display: none;
}

.rates_sec .inner .rates_body .rates_form .stars-content .star-rating label {
  color: #FFEEC9;
  cursor: pointer;
}

.rates_sec .inner .rates_body .rates_form .stars-content .star-rating :checked ~ label {
  color: #FFD06A;
}

.rates_sec .inner .rates_body .rates_form .stars-content .star-rating label:hover,
.rates_sec .inner .rates_body .rates_form .stars-content .star-rating label:hover ~ label {
  color: #FFB820;
}

.rates_sec .inner .form-control {
  background-color: #f5f5f5 !important;
  padding-top: 25px;
}

/**********************************************
    Start Edit checkout Page 
**********************************************/
.checkout_pg .box {
  background-color: #f5f5f5;
}

.checkout_pg .box .form-check {
  margin: 10px 0;
  padding: 0;
}

.checkout_pg .box .form-check .sm_img {
  width: 50px;
  height: 50px;
  -o-object-position: top;
     object-position: top;
  display: block;
  margin-bottom: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto 10px  auto !important;
}

.checkout_pg .box .form-check .form-check-input {
  display: none;
}

.checkout_pg .box .form-check .form-check-label {
  text-align: center;
  padding: 25px 20px;
  background-color: #fff;
  border-radius: 20px;
  display: block;
  border: 1px solid #eee;
  cursor: pointer;
  font-size: 14px;
}

.checkout_pg .box .form-check .form-check-input:checked ~ .form-check-label {
  color: var(--primary);
  border-color: var(--primary);
  background-color: #CA121405;
}

.checkout_pg .couboun_box {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 20px;
}

.checkout_pg .couboun_box .form-control {
  background-color: #fff;
}

.checkout_pg .couboun_box .apply_butn {
  position: absolute;
  inset-inline-end: 5px;
  top: 5px;
  height: 40px;
    padding: .9rem 1rem;
    font-size: 9px;
  height: 50px;
  /*font-size: 12px;*/
}

.checkout_pg .sm_box {
  padding: 25px;
}

/**********************************************
    Start Edit order_det Page 
**********************************************/
.order_det_pg {
  background-color: #f5f5f5;
}

.order_det_pg .order-details {
  padding: 0 3vw 150px 3vw;
  background-color: #fff;
  border-radius: 20px;
  margin-top: 120px;
}

.order_det_pg .order-details .order-head {
  border-radius: 20px;
  padding: 2.5vw;
  margin-bottom: 50px;
  outline: 15px solid #f6f6f6;
  border-radius: 20px;
  position: relative;
  top: -80px;
  background-color: #fff;
}

.order_det_pg .order-details .order-head p {
  margin-bottom: 10px;
  font-size: 12px;
}

.order_det_pg .order-details .order-head p 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 #9993;
  font-size: 12px;
}

.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: #f9f9f9;
  color: #000;
}

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

.order_det_pg .table_box {
  border-radius: 15px;
  border-top: .2px solid #9993;
  border-right: 1px solid #9993;
  border-left: 1px solid #9993;
  border-bottom: .2px solid #9993;
  overflow: hidden;
}

.order_det_pg .order_foot {
  border-radius: 20px;
  padding: 2.5vw;
  margin-bottom: 50px;
  outline: 15px solid #f6f6f6;
  border-radius: 20px;
  position: relative;
  margin-top: -100px;
  background-color: #fff;
}

.order_det_pg .order_foot .qr_box {
  border-radius: 15px;
  overflow: hidden;
  margin-top: 30px;
  padding: 30px;
  border: 1px solid #9993;
}

.order_det_pg .order_foot .qr_box .sec-img {
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.order_det_pg .order_foot .pay_box {
  margin-top: 30px;
}

.order_det_pg .order_foot .pay_box .label {
  color: #012E47;
}

.order_det_pg .order_foot .pay_box li {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #9993;
}

.order_det_pg .order_foot .pay_box li:last-of-type {
  border: 0;
  padding-bottom: 0;
}

/**********************************************
    Start Edit product_det Page
**********************************************/
.product_det .swiper_box .lg-slide-swiper {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  overflow-x: hidden;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #eee;
}

.product_det .swiper_box .lg-slide-swiper .img-box {
  position: relative;
  overflow: hidden;
  height: 500px;
  border-radius: 15px;
}

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

.product_det .swiper_box .sm-slide-swiper {
  overflow: hidden;
  height: 130px;
  padding-bottom: 4px;
  padding-top: 15px;
}

.product_det .swiper_box .sm-slide-swiper .swiper-slide {
  opacity: 1;
  cursor: pointer;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.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: 15px;
  border: 1px solid #eee;
  padding: 10px;
  background-color: #fff;
  border-radius: 20px;
}

.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-color: var(--primary) !important;
}

.product_det .taxt_box {
  -webkit-padding-start: 2vw;
          padding-inline-start: 2vw;
}

.product_det .taxt_box .name {
  font-size: 25px;
  color: #012E47;
}

.product_det .taxt_box .stars i {
  color: #ccc;
}

.product_det .taxt_box .stars i.active {
  color: #FFBF3F;
}

.product_det .taxt_box .p {
  font-size: 12px  !important;
}

.product_det .taxt_box .det_box .prod_data {
  font-size: 12px;
}

.product_det .taxt_box .price_box {
  font-size: 20px;
}

.product_det .taxt_box .price_box .prev_price {
  color: #999;
  text-decoration: line-through;
}

.product_det .taxt_box .butns .fav_butn,
.product_det .taxt_box .butns .share_butn,
.product_det .taxt_box .butns .price_butn {
  font-size: 14px;
  color: #012E47;
  font-weight: bold;
}

.product_det .taxt_box .butns .fav_butn i,
.product_det .taxt_box .butns .share_butn i,
.product_det .taxt_box .butns .price_butn i {
  color: var(--primary);
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.product_det .taxt_box .butns .share_box {
  position: relative;
}

.product_det .taxt_box .butns .share_box .share_links {
  position: absolute;
  bottom: -50px;
  inset-inline-start: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  z-index: 9;
}

.product_det .taxt_box .butns .share_box .share_links.active a {
  -webkit-transform: scaleX(1) translateY(0px);
          transform: scaleX(1) translateY(0px);
  visibility: visible;
  opacity: 1;
}

.product_det .taxt_box .butns .share_box .share_links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 5px;
  color: var(--primary);
  background-color: #f5f5f5;
  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;
  font-size: 14px;
  border: 1px solid #eee;
  -webkit-transform: scaleX(0) translateY(-30px);
          transform: scaleX(0) translateY(-30px);
  visibility: hidden;
  opacity: 0;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

.product_det .taxt_box .butns .share_box .share_links a:nth-child(2) {
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}

.product_det .taxt_box .butns .share_box .share_links a:nth-child(3) {
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}

.product_det .taxt_box .butns .share_box .share_links a:nth-child(4) {
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}

.product_det .taxt_box .butns .share_box .share_links a:nth-child(5) {
  -webkit-transition-delay: .4s;
          transition-delay: .4s;
}

.product_det .taxt_box .butns .share_box .share_links a:hover {
  background-color: var(--primary);
  color: #fff !important;
}

.product_det .taxt_box .cart_butn {
  font-size: 12px;
  height: 45px;
  border-radius: 20px;
}


.product_det .taxt_box  .form-group.size-group ,
.product_det .taxt_box  .form-group.color-group {
     background: #f9f9f9;
    padding: 20px 10px 0 10px;
    border-radius: 15px;   
}

.product_det .taxt_box  .form-group.size-group .size-flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.product_det .taxt_box  .form-group.size-group .form-check {
  position: relative;
  padding: 0;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  margin-bottom: 15px;
  /*overflow: hidden;*/
}

.product_det .taxt_box .sm_title {
    font-size: 12px;
}
.product_det .taxt_box  .form-group.size-group .form-check .form-check-label {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  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;
  color: #1E1E1E;
  border: 1px solid #eee;
  font-size: 10px;
  font-weight: bold;
  position: relative;
  /*top: 4px;*/
}

.product_det .taxt_box  .form-group.size-group .form-check .form-check-input:checked ~ .form-check-label {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.product_det .taxt_box  .form-group.size-group .form-check .form-check-input:disabled ~ .form-check-label {
  border-color: #999;
}

.product_det .taxt_box  .form-group.size-group .form-check .form-check-input:disabled ~ .form-check-label::after {
  content: '';
  width: 50px;
  height: 1px;
  background-color: #999;
  position: absolute;
}

.product_det .taxt_box  .form-group.size-group .form-check .form-check-input {
  position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  width: 100%;
  height: 100% !important;
  opacity: 0;
  cursor: pointer;
}


.product_det .taxt_box  .form-group.color-group .colors-flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.product_det .taxt_box  .form-group.color-group .form-check {
  position: relative;
  padding-left: 0;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  padding-right: 0em;
}

.product_det .taxt_box  .form-group.color-group .form-check .form-check-input {
  position: absolute;
  left: 0px;
  top: 0;
  opacity: 0;
  width: 35px;
  height: 35px !important;
  cursor: pointer;
}

.product_det .taxt_box  .form-group.color-group .form-check .form-check-label {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #f6f6f6;
  cursor: pointer;
}

.product_det .taxt_box  .form-group.color-group .form-check .form-check-label .checkmark {
  position: absolute;
  opacity: 0;
  left: 15px;
  top: 11px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.product_det .taxt_box  .form-group.color-group .form-check .form-check-input:checked ~ .form-check-label .checkmark {
  opacity: 1;
}



.product_det .desc_wrapper .nav {
  background-color: #f9f9f9;
  padding: 0 2rem;
  border-radius: 5px 5px 0 0;
}

.product_det .desc_wrapper .nav .nav-link {
  font-size: 13px;
  padding: .5rem 1.5rem;
  height: 60px;
  border-radius: 0;
  font-weight: bold;
  color: #888;
  border-top: 5px solid transparent;
}

.product_det .desc_wrapper .nav .nav-link.active {
  background-color: #fff;
  color: var(--primary);
  border-top: 5px solid var(--primary);
  height: 66px;
  margin-top: -6px;
}

.product_det .desc_wrapper .tab_wrapper {
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  padding: 45px 2vw;
}

.product_det .desc_wrapper .tab_wrapper .p {
  font-size: 12px;
  line-height: 2.2;
  text-align: justify;
}

.product_det .desc_wrapper .tab_wrapper .ul_custom .li {
  position: relative;
  -webkit-padding-start: 30px;
          padding-inline-start: 30px;
  margin-bottom: 15px;
}

.product_det .desc_wrapper .tab_wrapper .ul_custom .li::before {
  content: '';
  width: 20px;
  height: 5px;
  background-color: var(--primary);
  -webkit-clip-path: polygon(0 0, 100% 0, 90% 90%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 90% 90%, 0% 100%);
  display: block;
  position: absolute;
  left: 0;
  top: 9px;
}

.product_det .desc_wrapper .tab_wrapper .ul_custom .li:nth-child(even)::before {
  background-color: var(--secondary);
}

.product_det .desc_wrapper .tab_wrapper .table td, .product_det .desc_wrapper .tab_wrapper .table th {
  font-size: 14px;
  padding: .8rem 1.5rem;
}

.product_det .desc_wrapper .tab_wrapper .table th {
  background-color: #f9f9f9;
}

.product_det .desc_wrapper .tab_wrapper .review_item {
  position: relative;
  padding: 30px 2vw;
  border-radius: 0px;
  margin-bottom: 0px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}

.product_det .desc_wrapper .tab_wrapper .review_item:last-child {
  border-bottom: none;
}

.product_det .desc_wrapper .tab_wrapper .review_item .prof_data .avatar {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  border: 1px solid #eee;
}

.product_det .desc_wrapper .tab_wrapper .review_item .prof_data .name {
  font-size: 17px;
}

.product_det .desc_wrapper .tab_wrapper .review_item .prof_data .rating i {
  font-size: 11px;
  color: #BDBDBD;
}

.product_det .desc_wrapper .tab_wrapper .review_item .prof_data .rating i.active {
  color: #DE980F;
}

.product_det .desc_wrapper .tab_wrapper .review_item .prof_data .rating .date {
  color: #7E7E7E;
  font-size: 11px;
}

.product_det .desc_wrapper .tab_wrapper .review_item .review_det {
  color: #606060;
  font-size: 12px;
  margin-bottom: 0;
}


.feedback-sec .feedback_card {
  background-color: #f9f9f9;
  padding: 40px 2vw;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  border-radius: 25px;
}

.feedback-sec .feedback_card .prof_data .prof_img {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.feedback-sec .feedback_card .prof_data .name {
  font-size: 1.1rem;
}

.feedback-sec .feedback_card .content {
  position: relative;
  z-index: 5;
}

.feedback-sec .feedback_card .content .p {
  font-size: 12px;
}

.feedback-sec .feedback_card .stars i {
  color: #ccc;
}

.feedback-sec .feedback_card .stars i.active {
  color: #FFBF3F;
}

.feedback-sec .feedback_card::before {
  content: '\f10d';
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: inline-block;
  font-size: 85px;
  color: var(--secondary);
  position: absolute;
  top: 10px;
  left: 35px;
  opacity: .08;
}

.feedback-sec .feedback_card:hover {
  -webkit-box-shadow: 3px 6px 15px 0 #0001;
          box-shadow: 3px 6px 15px 0 #0001;
}

.feedback-sec .feedback_card:hover::before {
  -webkit-animation: pulse 1s infinite;
          animation: pulse 1s infinite;
}

/**********************************************
    Start Edit faq_pg
**********************************************/
.faq_pg .inner {
  background-color: #F6F6F6;
  border: 1px solid #EAEBEA;
  border-radius: 30px;
  padding: 4vw;
}

.faq_pg .inner .accordion .accordion-item {
  border: #eee;
  margin-bottom: 25px;
  border-radius: 15px;
  background-color: #fff;
}

.faq_pg .inner .accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--primary);
}

.faq_pg .inner .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq_pg .inner .accordion .accordion-item .accordion-button {
  padding: 1.5rem 2.8rem;
  font-weight: bold;
  color: #1C1C1C;
  font-size: 15px;
  border-radius: 15px;
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background-color: transparent;
  position: relative;
}

.faq_pg .inner .accordion .accordion-item .accordion-button::before {
  content: '';
  width: 15px;
  height: 15px;
  background: url(../images/icon.png) no-repeat center;
  background-size: contain;
  position: absolute;
  inset-inline-start: 20px;
}

.faq_pg .inner .accordion .accordion-item .accordion-button::after {
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: inline-block;
  background-image: unset;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  position: absolute;
  inset-inline-end: 15px;
  top: 20px;
  font-size: 13px;
  color: #1C1C1C;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.faq_pg .inner .accordion .accordion-item .accordion-button:focus {
  border-color: transparent !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.faq_pg .inner .accordion .accordion-item .accordion-body {
  padding: 0.5rem 1.5rem 1.5rem 1.5rem;
  border-radius: 0 0 15px 15px;
}

.faq_pg .inner .accordion .accordion-item .accordion-body .p {
  font-size: 11px;
}

/**********************************************
    Start Edit Media screens 
**********************************************/
@media screen and (max-width: 991px) {
  .order_md_1 {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .d_mob_none {
      display: none !important;
  }
  .navs-container .top_nav .links_contact .nav_butn i {
    -webkit-margin-end: 0;
            margin-inline-end: 0;
  }
  .navs-container .mid_nav .search_box .form-group .form-control.search_input::placeholder {
    font-size: 10px;
  }
  .navs-container .top_nav .links_contact .nav_butn span {
    display: none;
  }
  .navs-container .mid_nav .logo {
    width: 100%;
  }
  .navs-container .mid_nav .nav_end {
    margin-top: 10px;
  }
  .navs-container .mid_nav .nav_end .dropdown-menu {
    left: 0 !important;
  }
  .navs-container .mid_nav .nav_end .butn.sm_butn {
    width: 40px;
    height: 40px;
  }
  .navs-container .navbar {
    padding: 0;
    z-index: 999;
  }
  .navs-container .navbar .navbar-toggler {
    position: absolute;
    top: -60px;
  }
  .tab-bar-mob {
    display: block !important;
  }
  .header {
    padding-top: 70px !important;
  }
  .header .item .txt_box .butn {
    font-size: 12px;
  }
  .header .item .img_box .secImg {
    height: auto;
    margin: 15px 0;
  }
  .categ_sec .swiper-button-next,
  .categ_sec .swiper-button-prev {
    display: none;
  }
  .features_sec {
    padding: 40px 0;
  }
  .features_sec .feature_card {
    margin: 20px 0;
  }
  .sec_head .has_icon {
    font-size: 22px !important;
  }
  .sec_head .has_icon::after {
    width: 30px;
    height: 30px;
  }
  .products_sec .prod_card .img-box {
    height: 250px;
  }
  .products_sec .prod_card .img-box .butns-hvr .butn i {
    margin: 0 !important;
  }
  .products_sec .prod_card .img-box .butns-hvr .butn span {
    display: none;
  }
  .products_sec .prod_card .card-body .title {
    font-size: 12px;
  }
  .products_sec .prod_card .card-body .price_box {
    font-size: 10px;
  }
  .products_sec .prod_card .card-body .rating {
    font-size: 10px;
  }
  .banner_sec .inner {
    padding: 70px 25px 10px 25px !important;
  }
  .banner_sec .inner .secImg {
    height: auto;
    margin: 15px 0;
  }
  .banner_sec .inner::before {
    display: none;
  }
  .faq_pg .inner .accordion .accordion-item .accordion-button::after {
    top: 37px;
  }
  table td, table th {
    text-wrap: nowrap;
  }
  .about_pg .img_box {
    width: 350px;
    height: 350px;
  }
  .about_pg .img_box .secImg {
    width: 250px;
    height: 250px;
  }
  .about_pg .img_box::before {
    width: 350px;
    height: 350px;
  }
  .profile_pg .tab_wrapper.orders_tab .nav-link {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 10px;
    padding: .7rem .5rem;
  }
  .product_det .swiper_box .lg-slide-swiper .img-box {
    height: 300px;
  }
  .product_det .swiper_box .sm-slide-swiper {
    height: 90px;
  }
  .product_det .taxt_box .price_box {
    font-size: 15px;
  }
  .product_det .taxt_box .butns .fav_butn,
  .product_det .taxt_box .butns .share_butn,
  .product_det .taxt_box .butns .price_butn {
    font-size: 8px;
  }
  .product_det .taxt_box .cart_butn {
    font-size: 8px;
  }
  .cart_pg .butns .butn {
    font-size: 8px;
    width: 45%;
  }
  .product_det .taxt_box .butns .share_box .share_links a {
    width: 30px;
    height: 30px;
  }
  .product_det .taxt_box .butns .share_box .share_links{
      inset-inline-end: 0;
      inset-inline-start: unset;
      bottom: -40px;
  }
  
}

/**********************************************
    Start Edit EN direction 
**********************************************/
html[dir="ltr"] {
}

html[dir="ltr"] body {
  direction: ltr;
  font-family: 'Poppins', sans-serif;
}

html[dir="ltr"] .butn i {
    transform: rotateY(180deg);
}
html[dir="ltr"] .banner_sec .inner .secImg {
    margin-bottom: 40px;
}
html[dir="ltr"] .register_pg .inner .form_box .phone_group .countryCode_span ,
html[dir="ltr"] .contact_pg .form_box .phone_group .countryCode_span {
    padding-inline-start: 40px;
}
html[dir="ltr"] .register_pg .inner .form_box .phone_group .form-control ,
html[dir="ltr"] .contact_pg .form_box .phone_group .form-control {
    padding-left: 110px;
}
html[dir="ltr"] .cart_pg .box .table thead tr th:nth-child(1) {
    border-radius: 25px 0 0 25px;
}
html[dir="ltr"] .cart_pg .box .table thead tr th:last-child {
    border-radius: 0 25px 25px 0;
}

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


/*Pagination Style */
.pagination{
  justify-content: center;
}
.page-item {
  margin: 3px;
}
.page-link{
  /* border: none; */
  color: var(--primary);
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

#preloader{
  z-index: 10000!important;
}