@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@font-face {
  font-family: somar_regular;
  src: url(../fonts/somar/regular.otf);
}

@font-face {
  font-family: somar_semiBold;
  src: url(../fonts/somar/semiBold.otf);
}

@font-face {
  font-family: somar_bold;
  src: url(../fonts/somar/bold.otf);
}

@font-face {
  font-family: somar_light;
  src: url(../fonts/somar/light.otf);
}

@font-face {
  font-family: ruqah_bold;
  src: url(../fonts/ruqah_loop/bold.ttf);
}

:root {
  --primary: #BC8171;
  --secondary: #FFF1E7;
  --filterPrimary: invert(0%) sepia(100%) saturate(19%) hue-rotate(19deg) brightness(101%) contrast(106%);
  --filterSecondary: invert(0%) sepia(100%) saturate(19%) hue-rotate(19deg) brightness(101%) contrast(106%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: somar_regular;
  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;
}

.font_ruqah {
  font-family: ruqah_bold;
}

.fw-bold {
  font-family: somar_bold;
}

/**********************************************
   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;
          box-shadow: none;
}

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

/**********************************************
   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(#30201c), color-stop(#51352e), to(#4e362f));
  background: linear-gradient(to right, #30201c, #51352e, #4e362f);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

#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 .spinner-box {
  width: 300px;
  height: 300px;
  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: transparent;
  position: relative;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

#preloader .spinner-box::before {
  content: '';
  background: url(../images/logo.svg) no-repeat center;
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
}

#preloader .spinner-box .configure-border-1 {
  width: 115px;
  height: 115px;
  padding: 3px;
  position: absolute;
  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: var(--primary);
  -webkit-animation: configure-clockwise 3s ease-in-out 0s infinite alternate;
          animation: configure-clockwise 3s ease-in-out 0s infinite alternate;
}

#preloader .spinner-box .configure-border-2 {
  width: 115px;
  height: 115px;
  padding: 3px;
  left: -115px;
  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: var(--secondary);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-animation: configure-xclockwise 3s ease-in-out 0s infinite alternate;
          animation: configure-xclockwise 3s ease-in-out 0s infinite alternate;
}

#preloader .spinner-box .configure-core {
  width: 100%;
  height: 100%;
  background-color: #35231E;
}

@-webkit-keyframes configure-clockwise {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  25% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes configure-clockwise {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  25% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes configure-xclockwise {
  0% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  25% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  50% {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  75% {
    -webkit-transform: rotate(-225deg);
            transform: rotate(-225deg);
  }
  100% {
    -webkit-transform: rotate(-315deg);
            transform: rotate(-315deg);
  }
}

@keyframes configure-xclockwise {
  0% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  25% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  50% {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  75% {
    -webkit-transform: rotate(-225deg);
            transform: rotate(-225deg);
  }
  100% {
    -webkit-transform: rotate(-315deg);
            transform: rotate(-315deg);
  }
}

#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-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.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-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

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

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

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

@-webkit-keyframes shine {
  0% {
    left: -50%;
    opacity: 0;
  }
  50% {
    left: 25%;
    opacity: .5;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes shine {
  0% {
    left: -50%;
    opacity: 0;
  }
  50% {
    left: 25%;
    opacity: .5;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

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

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

.swiper-container .swiper-pagination .swiper-pagination-bullet,
.products_sec .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 25px;
}

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

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

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before,
.products_sec .swiper-button-next::before,
.products_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: #333;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover,
.products_sec .swiper-button-next:hover,
.products_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,
.products_sec .swiper-button-next:hover::before,
.products_sec .swiper-button-prev:hover::before {
  color: #fff;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev,
.products_sec .swiper-button-next,
.products_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,
.products_sec .swiper-button-next::before,
.products_sec .swiper-container-rtl .swiper-button-prev::before {
  content: '\f178';
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next,
.products_sec .swiper-button-prev,
.products_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,
.products_sec .swiper-button-prev::before,
.products_sec .swiper-container-rtl .swiper-button-next::before {
  content: '\f177';
}

.butn {
  position: relative;
  padding: .7rem 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: 20px;
  font-family: somar_bold;
  border: 1px solid transparent;
  border-radius: 5px;
}

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

.butn .icon {
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}

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

.butn.sm_butn .icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

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

.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;
  border: 1px solid #D6D3D3;
}

.butn.gray_butn {
  background-color: #f5f5f5;
  color: var(--primary);
}

.butn:hover {
  background-color: #aa7364;
  border-color: #aa7364;
  color: #fff !important;
}

.butn:hover .icon {
  -webkit-filter: invert(99%) sepia(0%) saturate(47%) hue-rotate(41deg) brightness(127%) contrast(96%);
          filter: invert(99%) sepia(0%) saturate(47%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

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

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

.sec_head .title_head {
  font-size: 60px;
}

.sec_head .subtitle_head {
  font-size: 30px;
}

.sec_head.has_border {
  position: relative;
}

.sec_head.has_border::after {
  content: '';
  width: 100%;
  height: 33px;
  display: block;
  background: url(../images/border.png) no-repeat center;
  background-size: contain;
  margin: 35px 0 0px 0;
}

.title_w_border {
  position: relative;
  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;
}

.title_w_border::after {
  content: '';
  width: calc(100% - 225px);
  border: 1px dashed var(--primary);
  display: inline-block;
  height: 1px;
}

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

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

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

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

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

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

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

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

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

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .top_nav {
  background-color: #FFF1E7;
  padding: 10px 0;
  color: var(--primary);
}

.navs-container .top_nav .p {
  font-size: 13px;
  color: var(--primary);
}

.navs-container .top_nav .social_links {
  color: var(--primary);
}

.navs-container .top_nav .social_links a {
  margin: 0 7px;
  color: var(--primary);
}

.navs-container .middle_nav {
  position: relative;
  z-index: 99;
}

.navs-container .middle_nav .inner {
  border-bottom: 1px solid #eee;
  padding: 1rem .5rem;
}

.navs-container .middle_nav .inner .dropdown button {
  font-size: 14px;
}

.navs-container .middle_nav .inner .dropdown button .icon {
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .middle_nav .inner .dropdown button .icon.icon_flag {
  max-width: 35px;
}

.navs-container .middle_nav .inner .dropdown .dropdown-menu {
  text-align: center;
  border-radius: 15px;
  border-color: transparent;
  -webkit-box-shadow: 0px 0px 15px 0 #3331;
          box-shadow: 0px 0px 15px 0 #3331;
  font-size: 13px;
  border: 1px solid #eee;
}

.navs-container .middle_nav .inner .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
}

.navs-container .middle_nav .inner .logo {
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.navs-container .middle_nav .inner .nav_end .nav_link {
  margin: 0 1vw;
}

.navs-container .middle_nav .inner .nav_end .nav_link .num {
    width: 15px;
    height: 15px;
    font-size: 10px;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    left: -7px;
    top: -3px;

}

.navs-container .middle_nav .inner .nav_end .nav_link .icon {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .navbar {
  padding: 1rem .5rem;
  position: relative;
  z-index: 9;
}

.navs-container .navbar .nav-link {
  margin: 0 1vw;
  font-size: 18px;
  color: #1E1E1E;
}

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

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

.navs-container .navbar .has_dropdown .drop_down {
  background-color: #fff;
  border-radius: 15px;
  width: 200px;
  padding: .5rem;
  position: absolute;
  top: 55px;
  -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: .3rem 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  color: #888;
  font-size: 15px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.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 .nav-link::before {
  content: '\f0da';
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 12px;
  color: #1E1E1E;
  position: absolute;
  left: 0;
  top: 10px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.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: 30px;
  height: 30px;
  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: 20px;
  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: 20px;
  height: 2px;
  background: var(--primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

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

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


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

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

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

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

.navs-container .search-wrapper .search-inner .form-group .form-control {
  padding: 0.375rem 0.75rem ;
  border: none;
  border-bottom: 1px solid #888;
  border-radius: 0;
  padding-inline-start: 3rem;
}

.navs-container .search-wrapper .search-inner .form-group .form-control:focus {
  border: none !important;
  border-bottom: 1px solid var(--primary) !important;
}

.navs-container .search-wrapper .search-inner .form-group .submit-butn {
  position: absolute;
  inset-inline-start: 23px;
  bottom: 16px;
  opacity: .5;
  background-color: transparent;
  border: none;
}

.navs-container .search-wrapper .search-inner .form-group .submit-butn .icon {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

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

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

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

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

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

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

.footer .border_img {
  width: 100%;
  height: 30px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer .head_flex .logo {
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer .head_flex .social_links {
  font-size: 25px;
  color: var(--primary);
}

.footer .head_flex .social_links a {
  margin: 0 .8vw;
  color: var(--primary);
}

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

.footer .content .links a {
  display: block;
  margin-bottom: 15px;
  font-size: 15px;
  color: #737373;
}

.footer .foot {
  background-color: #FFF1E7;
  text-align: center;
}

.footer .foot .p {
  font-size: 13px;
}

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

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  background-image: -webkit-gradient(linear, left top, right top, from(#FFF1E7), to(#BC8171));
  background-image: linear-gradient(to right, #FFF1E7, #BC8171);
}

.header .txt_box .title {
  font-size: 70px;
  font-size: calc(35px + 2vw);
}

.header .txt_box .p {
  text-align: justify;
  color: #1E1E1E;
}

.header .img_box {
  position: relative;
}

.header .img_box .img {
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 5;
}

.header .img_box::before {
  content: '';
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: url(../images/circle_white.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: -100px;
  left: 0;
}

.header .img_box::after {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../images/ciecles_header.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: -50px;
  z-index: 1;
  animation: rotating 35s alternate-reverse linear infinite;
}

.banners_sec .banner_card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 530px;
  margin: 15px 0;
}

.banners_sec .banner_card .secImg {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.banners_sec .banner_card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  -webkit-transform: skew(30deg);
          transform: skew(30deg);
}

.banners_sec .banner_card::before {
  display: block;
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 1;
  border-radius: 10px;
}

.banners_sec .banner_card:hover .secImg {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.banners_sec .banner_card:hover::after {
  -webkit-animation: shine 0.75s linear 1;
          animation: shine 0.75s linear 1;
}

.products_sec .nav-link {
  width: 200px;
  height: 50px;
  background-color: transparent;
  color: #1E1E1E;
  margin: 0 1vw;
  font-size: 20px;
}

.products_sec .nav-link.active {
  background-color: transparent;
  color: var(--primary);
  font-weight: bold;
}

.products_sec .prod_card {
  position: relative;
  margin-bottom: 30px;
}

.products_sec .prod_card .img_box {
  height: 430px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.products_sec .prod_card .img_box .cart_butn {
  position: absolute;
  bottom: 10px;
  width: calc(100% - 20px);
  left: 10px;
  height: 50px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
}

.products_sec .prod_card .img_box .sizes_box {
  background-color: #fff;
  padding: 7px;
  border-radius: 5px;
  width: calc(100% - 20px);
  position: absolute;
  bottom: 70px;
  left: 10px;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
}

.products_sec .prod_card .img_box .sizes_box .sizes_radios .form-check {
  position: relative;
  padding: 0;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  margin-bottom: 15px;
}

.products_sec .prod_card .img_box .sizes_box .sizes_radios .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: 12px;
  font-weight: bold;
  position: relative;
}

.products_sec .prod_card .img_box .sizes_box .sizes_radios .form-check .form-check-input:checked ~ .form-check-label {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.products_sec .prod_card .img_box .sizes_box .sizes_radios .form-check .form-check-input:disabled ~ .form-check-label {
  border-color: #999;
}

.products_sec .prod_card .img_box .sizes_box .sizes_radios .form-check .form-check-input:disabled ~ .form-check-label::after {
  content: '';
  width: 50px;
  height: 1px;
  background-color: #999;
  position: absolute;
}

.products_sec .prod_card .img_box .sizes_box .sizes_radios .form-check .form-check-input {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100% !important;
  opacity: 0;
  cursor: pointer;
}

.products_sec .prod_card .img_box .badge_new {
  padding: .5rem .6rem;
  border-radius: 5px;
  background-color: #E74040;
  color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 12px;
}

.products_sec .prod_card .img_box .rate_badge {
  background-color: #fff;
  border-radius: 5px;
  padding: .5rem .5rem;
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 12px;
  font-weight: bold;
}

.products_sec .prod_card .img_box .rate_badge i {
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
  color: #e1c019;
}

.products_sec .prod_card .card-body .subCateg {
  font-size: 13px;
  color: #888;
}

.products_sec .prod_card .card-body .prod_name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.products_sec .prod_card .card-body .fav_butn:hover {
  background-color: var(--primary) !important;
}

.products_sec .prod_card .card-body .fav_butn.active {
  background-color: var(--secondary);
}

.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:hover .img_box .cart_butn,
.products_sec .prod_card:hover .img_box .sizes_box {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
}

.products_sec .prod_card_row {
  position: relative;
  margin-bottom: 30px;
}

.products_sec .prod_card_row .img_box {
  height: 240px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.products_sec .prod_card_row .card-body .prod_name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.products_sec .prod_card_row .card-body .fav_butn {
  width: 25px;
  height: 25px;
}

.products_sec .prod_card_row .card-body .fav_butn .icon {
  width: 15px;
  height: 15px;
}

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

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

.products_sec .prod_card_row .card-body .sizes_box {
  border: 1px solid #FFF1E7;
  padding: 7px;
  border-radius: 5px;
}

.products_sec .prod_card_row .card-body .sizes_box .sizes_radios .form-check {
  position: relative;
  padding: 0;
  margin: 5px;
}

.products_sec .prod_card_row .card-body .sizes_box .sizes_radios .form-check .form-check-label {
  width: 25px;
  height: 25px;
  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;
}

.products_sec .prod_card_row .card-body .sizes_box .sizes_radios .form-check .form-check-input:checked ~ .form-check-label {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.products_sec .prod_card_row .card-body .sizes_box .sizes_radios .form-check .form-check-input:disabled ~ .form-check-label {
  border-color: #999;
}

.products_sec .prod_card_row .card-body .sizes_box .sizes_radios .form-check .form-check-input:disabled ~ .form-check-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background-color: #999;
  position: absolute;
}

.products_sec .prod_card_row .card-body .sizes_box .sizes_radios .form-check .form-check-input {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100% !important;
  opacity: 0;
  cursor: pointer;
}

.products_sec .prod_card_row .card-body .cart_butn {
  background-color: #FFF1E7;
  padding: .3rem 2rem;
}

.products_sec .prod_card_row .card-body .cart_butn:hover {
  background-color: var(--primary);
}

.products_sec .swiper-button-next,
.products_sec .swiper-button-prev {
  top: 62%;
}

.banner_shopping .inner {
  background-color: #FFF1E7;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  padding: 0 2vw;
}

.banner_shopping .inner .txt_box {
  padding: 20px 1vw;
  position: relative;
  text-align: center;
}

.banner_shopping .inner .txt_box .title {
  font-size: 84px;
  font-size: calc(3vw + 40px);
}

.banner_shopping .inner .txt_box .p {
  font-size: 20px;
}

.banner_shopping .inner .secImg {
  width: 95%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right bottom;
     object-position: right bottom;
}

.banner_shopping .inner::before {
  content: '';
  background: url(../images/logo.svg) no-repeat center;
  background-size: contain;
  width: 130px;
  height: 75px;
  position: absolute;
  bottom: 10px;
    inset-inline-end: 10px;
}

.categ_sec .categ_card {
  text-align: center;
  position: relative;
  margin-bottom: 25px;
}

.categ_sec .categ_card .img_box {
  height: 420px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.categ_sec .categ_card .img_box::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  -webkit-transform: skew(30deg);
          transform: skew(30deg);
}

.categ_sec .categ_card .img_box::before {
  display: block;
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 1;
  border-radius: 10px;
}

.categ_sec .categ_card .categ_name {
  margin-top: 20px;
  font-size: 25px;
}

.categ_sec .categ_card:hover .img_box::after {
  -webkit-animation: shine 0.75s linear 1;
          animation: shine 0.75s linear 1;
}

.features_sec .feature_card {
  padding: 70px 2vw;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  border: 1px solid #FFF1E7;
  border-radius: 5px;
  height: calc(100% - 30px);
}

.features_sec .feature_card .content .icon {
  width: 75px;
  height: 75px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 15px auto;
}

.features_sec .feature_card .content .title {
  font-size: 26px;
}

.features_sec .feature_card .content .p {
  font-size: 16px;
}

.features_sec .feature_card::before {
  content: '';
  background-color: #FFF1E7;
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  border-radius: 5px;
}

.features_sec .feature_card:hover::before {
  height: 100%;
}

.newsletter_sec .inner {
  padding: 30px 20px;
  border-radius: 5px;
  border: 1px solid #E6E6E6;
}

.newsletter_sec .inner .feedback_box {
  padding: 50px 3vw;
  -webkit-border-end: 1px solid #E6E6E6;
          border-inline-end: 1px solid #E6E6E6;
}

.newsletter_sec .inner .feedback_box .feedback_card {
  text-align: center;
}

.newsletter_sec .inner .feedback_box .feedback_card .stars i {
  color: #ccc;
}

.newsletter_sec .inner .feedback_box .feedback_card .stars i.active {
  color: #F3CD03;
}

.newsletter_sec .inner .feedback_box .feedback_card .p {
  color: #737373;
  font-size: 17px;
  font-weight: bold;
  line-height: 2;
}

.newsletter_sec .inner .feedback_box .feedback_card .prof_data {
  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;
}

.newsletter_sec .inner .feedback_box .feedback_card .prof_data .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.newsletter_sec .inner .feedback_box .feedback_card .prof_data .name {
  font-weight: bold;
  color: #000;
}

.newsletter_sec .inner .newsletter_box {
  text-align: center;
  padding: 10px 3vw;
}

.newsletter_sec .inner .newsletter_box .title {
  font-size: 55px;
  line-height: .9;
}

.newsletter_sec .inner .newsletter_box .form-group .form-control {
  border-radius: 5px;
  height: 55px !important;
  background-color: #f9f9f9;
}

.newsletter_sec .inner .newsletter_box .form-group .submit_butn {
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  width: 50px;
  height: 55px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 5px 0 0 5px;
}

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

.pg_header .title {
  font-size: calc(1.2vw + 30px);
}

.pg_header .bread .item {
  color: #fff;
  margin: 0 10px;
  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;
}

.pg_header .bread .item::after {
  content: '';
  background: url(../images/icon.svg) no-repeat center;
  background-size: contain;
  display: inline-block;
  width: 50px;
  height: 30px;
  -webkit-margin-start: 20px;
          margin-inline-start: 20px;
  pointer-events: none;
}

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

.pg_header a:hover {
  color: var(--secondary) !important;
}

.pg_header img {
  opacity: .1;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  pointer-events: none;
}

.pg_header img.vector1 {
  width: 11%;
  left: 0;
  bottom: -17px;
  -webkit-transform: rotate(38deg);
          transform: rotate(38deg);
}

.pg_header img.vector2 {
  width: 50px;
  right: 0;
  bottom: 0;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

/**********************************************
    Start Edit register Page 
**********************************************/
.register_pg .inner {
  border: 5px solid var(--secondary);
  border-radius: 25px;
  background-color: #fff;
}

.register_pg .inner .sec_head.has_border::after {
  background-size: contain;
  margin: 20px 0 0px 0;
}

.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: 14px !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: 22px;
  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;
}

.form-control {
  padding: .5rem 1.75rem;
  font-size: 12px;
  border-radius: 24px;
  border-color: #eee;
  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;
}

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

.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 about Page 
**********************************************/
.about_pg .img_box {
  height: 450px;
  position: relative;
}

.about_pg .img_box .secImg {
  width: 90%;
  display: block;
  margin: auto;
  -webkit-box-shadow: 5px 5px 10px 0 #0001;
          box-shadow: 5px 5px 10px 0 #0001;
  border-radius: 5px;
  position: relative;
  z-index: 5;
}

.about_pg .img_box::before {
  content: '';
  width: 40%;
  height: calc(100% + 50px);
  position: absolute;
  top: -25px;
  inset-inline-start: 0px;
  background-color: var(--secondary);
  border-radius: 0 5px 5px 0;
}

.about_pg .txt_box .title {
  font-size: 30px;
}

.about_pg .txt_box .p {
  font-size: 17px;
  line-height: 2;
  text-align: justify;
}

/**********************************************
    Start Edit products Page 
**********************************************/
.products_pg .categ_box {
  background-color: #fff;
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 5px;
  position: relative;
}

.products_pg .categ_box .item {
  margin-bottom: 30px;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
}

.products_pg .categ_box .item .categ_title {
  text-transform: uppercase;
  font-size: 16px;
  color: #282828;
}

.products_pg .categ_box .item .checks .form-check {
  font-size: 14px;
  color: #999;
  margin-bottom: 15px;
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
}

.products_pg .categ_box .item .checks .form-check .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.products_pg .categ_box .item .checks .form-check .form-check-input:checked ~ label {
  color: #222;
}

.products_pg .categ_box .item .links .link {
  display: block;
  color: #7E7E7E;
  font-size: 15px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.products_pg .categ_box .item .links .link.active {
  color: var(--primary);
}

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

.products_pg .filter_box {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 5px;
  position: relative;
}

.products_pg .filter_box .title_box {
  border-radius: 5px 5px 0 0;
  background-color: var(--primary);
  padding: 17px 20px;
}

.products_pg .filter_box .title_box .del_link:hover {
  color: #fff !important;
}

.products_pg .filter_box .card-body {
  padding: 1.5rem 1.3rem;
}

.products_pg .filter_box .item {
  padding: 0 5px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.products_pg .filter_box .item .collapse_title {
  text-transform: uppercase;
  font-size: 16px;
  color: #282828;
}

.products_pg .filter_box .item .collapse_body {
  padding: 1.25rem 0 0 0;
}

.products_pg .filter_box .item .collapse_body .brands_radios .form-check {
  position: relative;
  padding: 0;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  margin-bottom: 15px;
}

.products_pg .filter_box .item .collapse_body .brands_radios .form-check .form-check-label {
  width: 60px;
  height: 60px;
  border: 1px solid #ddd;
  border-radius: 10px;
  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;
}

.products_pg .filter_box .item .collapse_body .brands_radios .form-check .form-check-label .brand_logo {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}

.products_pg .filter_box .item .collapse_body .brands_radios .form-check .form-check-input:checked ~ .form-check-label {
  border-color: var(--primary);
}

.products_pg .filter_box .item .collapse_body .brands_radios .form-check .form-check-input {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100% !important;
  opacity: 0;
  cursor: pointer;
}

.products_pg .filter_box .item .collapse_body .checkboxes .form-check {
  position: relative;
}

.products_pg .filter_box .item .collapse_body .checkboxes .form-check .form-check-label {
  color: #7E7E7E;
  font-size: 15px;
}

.products_pg .filter_box .item .collapse_body .checkboxes .form-check .form-check-label::before {
  content: '\f00c';
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  inset-inline-start: 4px;
  top: 6px;
  color: var(--primary);
  font-size: 8px;
  opacity: 0;
}

.products_pg .filter_box .item .collapse_body .checkboxes .form-check .form-check-input:checked {
  background-color: #fff;
}

.products_pg .filter_box .item .collapse_body .checkboxes .form-check .form-check-input:checked ~ .form-check-label {
  color: var(--primary);
}

.products_pg .filter_box .item .collapse_body .checkboxes .form-check .form-check-input:checked ~ .form-check-label::before {
  opacity: 1;
}

.products_pg .filter_box .item .collapse_body .checkboxes .form-check .form-check-input:checked[type=checkbox] {
  background-image: unset;
}

.products_pg .filter_box .item .collapse_body .price-wrapper .ui-slider-horizontal {
  width: 100%;
}

.products_pg .filter_box .item .collapse_body .price-wrapper .ui-slider-horizontal .ui-slider-handle {
  border-radius: 50%;
}

.products_pg .filter_box .item .collapse_body .price-wrapper .ui-widget-header {
  background: var(--primary);
}

.products_pg .filter_box .item .collapse_body .price-wrapper .inputs-wrapper {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.products_pg .filter_box .item .collapse_body .price-wrapper .inputs-wrapper .price-range-field {
  width: 90px;
  border: 1px solid #F2F2F2;
  background-color: #F2F2F2;
  border-radius: 30px;
  margin: 0 4px;
  height: 40px !important;
  text-align: center;
}

.products_pg .filter_box .item .collapse_body .price-wrapper .inputs-wrapper .price-range-field::-webkit-input-placeholder {
  color: #9999999f;
}

.products_pg .filter_box .item .collapse_body .price-wrapper .inputs-wrapper .price-range-field:-ms-input-placeholder {
  color: #9999999f;
}

.products_pg .filter_box .item .collapse_body .price-wrapper .inputs-wrapper .price-range-field::-ms-input-placeholder {
  color: #9999999f;
}

.products_pg .filter_box .item .collapse_body .price-wrapper .inputs-wrapper .price-range-field::placeholder {
  color: #9999999f;
}

.products_pg .filter_box .item .collapse_body .price-wrapper .inputs-wrapper .currency_title {
  color: #7E7E7E;
  font-size: 16px;
}

.products_pg .filter_box .item:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: none;
}

.products_pg .search_filter .form-group .form-control {
  height: 50px !important;
  font-size: 12px;
  border-radius: 5px;
  background-color: #f9f9f9;
  border-color: #f5f5f5;
}

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

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

/**********************************************
    Start Edit products_det Page 
**********************************************/
.products_det .product_imgs .gallery-top img {
  height: 600px;
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #eee;
}

.products_det .product_imgs .gallery-thumbs {
  height: 600px;
  overflow: hidden;
}

.products_det .product_imgs .gallery-thumbs img {
  height: 110px;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 5px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: .7;
}

.products_det .product_imgs .gallery-thumbs .swiper-slide-thumb-active img {
  border-color: var(--primary);
  opacity: 1;
}

.products_det .product_imgs .share_links .title {
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.products_det .product_imgs .share_links .title::after {
  content: '';
  width: 45px;
  height: 2px;
  display: inline-block;
  background-color: var(--primary);
  margin: 0 10px;
}

.products_det .product_imgs .share_links .links a {
  margin: 0 10px;
  font-size: 20px;
}

.products_det .product_imgs .share_links .links .fa-facebook-f {
  color: #0866FF;
}

.products_det .product_imgs .share_links .links .fa-x-twitter {
  color: #000;
}

.products_det .product_imgs .share_links .links .fa-paper-plane {
  color: #33A8DA;
}

.products_det .product_imgs .share_links .links .fa-whatsapp {
  color: #2DB061;
}

.products_det .product_imgs .share_links .links .fa-link {
  color: var(--primary);
}

.products_det .txt_box .rating i {
  color: #BDBDBD;
}

.products_det .txt_box .rating i.active {
  color: #DE980F;
}

.products_det .txt_box .prod_name {
  font-size: calc(1vw + 35px);
}

.products_det .txt_box .price_box {
  font-size: 20px;
}

.products_det .txt_box .price_box .fw-bold {
  color: var(--primary);
}

.products_det .txt_box .price_box .prev_price {
  font-size: 85%;
  color: #C4C4C4;
  text-decoration: line-through;
}

.products_det .txt_box .form-group {
  background-color: #f9f9f9;
  padding: 1rem 1rem .5rem 1rem;
  border-radius: 5px;
}

.products_det .txt_box .form-group.size-group .size-flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.products_det .txt_box .form-group.size-group .form-check {
  position: relative;
  padding: 0;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  margin-bottom: 15px;
}

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

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

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

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

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

.products_det .txt_box .form-group.color-group .colors-flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

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

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

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

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

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

.products_det .txt_box .butns .cart_butn {
  height: 50px;
}

.products_det .txt_box .butns .sm_butn {
  border-radius: 5px;
  height: 50px;
  width: 50px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.badge {
  padding: 0.5rem 1rem;
  text-transform: capitalize;
}

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

.badge.secondary_badge {
  color: var(--primary);
  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;
}

.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;
  border: 1px solid #eee;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  padding: 5.5px;
}

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

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

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

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

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

.cart_pg .summary_checkout .item {
  font-size: 15px;
  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: 5px;
  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: 5px;
  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 5px 5px 0;
}

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

.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: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.cart_pg .box .table td .delete_butn {
  font-size: 12px;
}

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

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

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

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

.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 {
  border: 1px solid #eee;
}

.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 .box .phone_group .form-control {
  padding-left: 75px;
  text-align: left;
}

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

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

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

.checkout_pg .couboun_box .apply_butn {
  position: absolute;
  left: 5px;
  top: 5px;
  height: 50px;
  font-size: 16px;
  border-radius: 24px;
}

.checkout_pg .sm_box {
  padding: 25px;
}

.checkout_pg .border-none {
  border: none;
}

/**********************************************
    Start Edit profile_pg
**********************************************/
.profile_pg .main_nav {
  background-color: #f7f7f7;
  padding: 0 2rem;
  border-radius: 5px 5px 0 0;
}

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

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

.profile_pg .tab_wrapper {
  padding: 50px 3vw;
  border-radius: 5px;
  border: 1px solid #eee;
  position: relative;
}

.profile_pg .tab_wrapper .primary_butn {
  min-width: 180px;
  font-size: 20px;
}

.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: 100px;
  height: 45px;
  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: 5px;
  text-align: center;
}

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

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

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

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

.profile_pg .tab_wrapper.orders_tab .table td .prodImg {
  width: 100px;
  height: 100px;
  border: 1px solid #eee;
  border-radius: 5px;
  -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;
}

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

.profile_pg .tab_wrapper.notification_tab .noti_card .date {
  font-size: 10px;
  font-weight: bold;
  color: #aaa;
}

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

.profile_pg .tab_wrapper.notification_tab .noti_card .logo {
  width: 50px;
  height: 50px;
  -webkit-margin-end: 25px;
          margin-inline-end: 25px;
}

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

.profile_pg .tab_wrapper.notification_tab .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;
}

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

.profile_pg .tab_wrapper.notification_tab .noti_card:hover .title {
  color: var(--primary);
}

.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: #f9f9f9;
  margin-top: 10px;
  border: 1px solid #f9f9f9;
}

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

/**********************************************
    Start Edit content Page 
**********************************************/
.content_pg .inner {
  padding: 0 3vw 50px 3vw;
  border-radius: 25px;
  background-color: #f7f7f7;
  margin-top: 50px;
}

.content_pg .inner .sec_head {
  outline: 15px solid #fff;
  padding: 1.5rem 2vw;
  border-radius: 15px;
  display: block;
  position: relative;
  top: -45px;
  background: #f7f7f7;
}

.content_pg .inner .det {
  line-height: 2.2;
  color: #505050;
  margin-bottom: 0;
  font-size: 16px;
}

/**********************************************
    Start Edit contact Page 
**********************************************/
.contact_pg .text_box .item {
  position: relative;
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  margin-bottom: 35px;
}

.contact_pg .text_box .item .label {
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 10px;
}

.contact_pg .text_box .item .data {
  color: #808080;
  font-size: 15px;
  margin-bottom: 0;
}

.contact_pg .text_box .item .social_links a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
  color: var(--primary);
  background-color: #eee;
  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: 12px;
}

.contact_pg .text_box .item .social_links a:hover {
  background-color: var(--primary);
  color: #fff !important;
}

.contact_pg .text_box .item::before {
  content: '';
  width: 5px;
  height: 26px;
  background-color: var(--primary);
  position: absolute;
  inset-inline-start: 0;
  top: 0px;
}

.contact_pg .map_box iframe {
  border-radius: 5px;
  border: 5px solid #fff;
}

.contact_pg .inner {
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #eee;
}

.contact_pg .inner .form {
  padding: 50px 3vw;
}

.contact_pg .inner .form .label {
  font-size: 13px;
  margin-bottom: .6rem;
  text-transform: capitalize;
}

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

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

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

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

.contact_pg .inner .form .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 .inner .form .phone_group .submit_phone_butn {
  position: absolute;
  right: 54px;
  top: 26px;
  color: var(--secondary);
  font-size: 11px;
  text-decoration: underline !important;
  font-weight: bold;
}

.contact_pg .inner .form textarea {
  padding-top: 20px;
}

.contact_pg .inner .form .butn {
  font-size: 22px;
  height: 55px;
  min-width: 180px;
}

.contact_pg .inner .box {
  height: 100%;
  position: relative;
  padding: 40px 3vw;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--primary);
}

.contact_pg .inner .box .p {
  font-size: 12px;
  line-height: 1.7;
}

.contact_pg .inner .box::before {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../images/pattern_contact.png) no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  background-position: left bottom;
  opacity: .5;
}

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

.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 #f8f8f8;
  border-radius: 20px;
  position: relative;
  top: -80px;
  background-color: #fff;
}

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

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

.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: 14px;
  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 #f8f8f8;
  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: 15px;
  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 coming_soon Page 
**********************************************/
.coming_pg {
  background-image: -webkit-gradient(linear, left top, right top, from(#FFF1E7), to(#BC8171));
  background-image: linear-gradient(to right, #FFF1E7, #BC8171);
  min-height: 100vh;
  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;
}

.coming_pg .txt_box .title {
  font-size: 65px;
  font-size: calc(35px + 1.8vw);
}

.coming_pg .txt_box .p {
  text-align: justify;
  color: #1E1E1E;
}

.coming_pg .txt_box .form-group .form-control {
  border-radius: 5px;
  height: 55px !important;
  background-color: #f9f9f9;
}

.coming_pg .txt_box .form-group .submit_butn {
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  width: 50px;
  height: 55px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 5px 0 0 5px;
}

.coming_pg .img_box {
  position: relative;
}

.coming_pg .img_box .img {
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 5;
}

.coming_pg .img_box::before {
  content: '';
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: url(../images/circle_white.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: -60px;
  left: 0;
}

.coming_pg .img_box::after {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../images/ciecles_header.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: -50px;
  z-index: 1;
  animation: rotating 35s alternate-reverse linear infinite;
}

/**********************************************
    Start Edit error_404 Page 
**********************************************/
.error_pg .secImg {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
    Start Edit Media screens 
**********************************************/
@media screen and (max-width: 991px) {
  .order_md_1 {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .navs-container .top_nav .p {
    font-size: 8px;
  }
  .navs-container .top_nav .social_links {
    font-size: 12px;
  }
  .navs-container .top_nav .social_links a {
    margin: 0 5px;
  }
  .navs-container .middle_nav .inner {
    border-bottom: none;
  }
  .navs-container .middle_nav .inner .logo {
    margin: 5px 0 20px 0;
  }
  .navs-container .middle_nav .inner .dropdown button {
    font-size: 10px;
  }
  .navs-container .middle_nav .inner .dropdown button .icon {
    width: 13px;
    height: 13px;
    -webkit-margin-end: 4px !important;
            margin-inline-end: 4px !important;
  }
  .navs-container .navbar {
    padding: 0 1rem;
    z-index: 99;
  }
  .navs-container .navbar .navbar-toggler {
    position: absolute;
    top: -43px;
  }
  .header .txt_box .title {
    font-size: 30px;
  }
  .header .img_box::before {
    top: 0;
  }
  .sec_head .title_head {
    font-size: 45px;
  }
  .sec_head .subtitle_head {
    font-size: 20px;
  }
  .products_sec .nav-link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: .5rem;
    font-size: 12px;
    margin: 0 .6vw;
  }
  .banner_shopping .inner .txt_box .title {
    font-size: calc(1vw + 40px);
  }
  .banner_shopping .inner .txt_box .p {
    font-size: 12px;
  }
  .banner_shopping .inner .secImg {
    width: 70%;
  }
  .newsletter_sec .inner .feedback_box {
    -webkit-border-end: none;
            border-inline-end: none;
    border-bottom: 1px solid #E6E6E6;
  }
  .newsletter_sec .inner .feedback_box .feedback_card .p {
    font-size: 14px;
  }
  .newsletter_sec .inner .newsletter_box .title {
    font-size: 35px;
  }
  .footer .head_flex .logo {
    width: 140px;
  }
  .footer .foot .p {
    font-size: 11px;
  }
}


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