:root {
  --primary: #F26420;
  --secondary: #006AAF;
  --filterPrimary: invert(39%) sepia(95%) saturate(1165%) hue-rotate(350deg) brightness(99%) contrast(91%);
  --filterSecondary: invert(13%) sepia(91%) saturate(6068%) hue-rotate(193deg) brightness(100%) contrast(101%);
  --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: 'Josefin Sans', sans-serif;
  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: ltr;
  overflow-x: hidden;
}

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

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

.color-gray2 {
  color: #888;
}

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

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

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

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

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

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

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

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

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

a:focus {
  outline: 0;
}

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

small {
  font-size: 70%;
}

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;
  right: 20px;
  bottom: 20px;
  height: 55px;
  width: 55px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
          box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateY(130%);
          transform: translateY(130%);
  z-index: 99;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

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

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

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

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

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

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

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

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

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

.overflow_hidden {
  overflow: hidden !important;
}

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

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

.position-unset {
  position: unset;
}

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

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

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

@-webkit-keyframes floating_rotating {
  0% {
    -webkit-transform: scale(0.5) rotate(0);
            transform: scale(0.5) rotate(0);
  }
  100% {
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
}

@keyframes floating_rotating {
  0% {
    -webkit-transform: scale(0.5) rotate(0);
            transform: scale(0.5) rotate(0);
  }
  100% {
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
}

@-webkit-keyframes slide_ltr {
  0% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
            clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  100% {
    -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%);
  }
}

@keyframes slide_ltr {
  0% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
            clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  100% {
    -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 {
  -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.1);
            transform: scale(1.1);
    -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.1);
            transform: scale(1.1);
    -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 rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

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

@-webkit-keyframes scaling {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scaling {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.butn.white_butn {
  background-color: #fff;
  color: #333;
}

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

.butn.dark_butn {
  background-color: #262424;
  color: #fff;
}

.butn.darken_butn {
  background-color: #121241;
  color: #fff;
}

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

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

/*.butn:hover i,*/
/*.butn:hover .icon {*/
/*  animation: pulse .5s both infinite alternate-reverse;*/
/*}*/

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

.circle_butn {
  padding: 0.9rem 2.2rem 0.7rem 2.2rem;
}

.circle_butn span {
  font-weight: bold;
}

.circle_butn::before {
  content: '';
  width: 18px;
  height: 18px;
  background-color: var(--primary);
  position: absolute;
  top: 13px;
  right: 27px;
  border-radius: 25px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.circle_butn:hover::before {
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}

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

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

.pg_title {
  position: relative;
  font-weight: bold;
  text-transform: capitalize;
}

.pg_title .bb_secondary {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
}

.pg_title .bb_secondary::after {
  content: '';
  height: 2px;
  width: 100%;
  background-color: var(--secondary);
  display: block;
}

.pg_title .bb_primary {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
}

.pg_title .bb_primary::after {
  content: '';
  height: 4px;
  width: 100%;
  background-color: var(--primary);
  display: block;
}

.badge {
  padding: 0.5rem 1.2rem;
}

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

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

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

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

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

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

.confirmModal .img {
    width: 150px;
    object-fit: contain;
}

.modal-content .btn-close {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #fff;
  -webkit-box-shadow: 3px 6px 10px 0 #0002;
          box-shadow: 3px 6px 10px 0 #0002;
  opacity: 1;
}

.showReceiptModal .sec-img {
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}

iframe {
  border-radius: 15px;
}

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

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

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

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

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

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

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

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

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

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

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

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .navbar {
  position: relative;
  padding: 1rem;
  z-index: 9;
}

.navs-container .navbar.home-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent !important;
}

.navs-container .navbar .logo {
  width: 155px;
  height: 53px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .navbar .nav-link {
  margin: 0 15px;
  position: relative;
  color: #141414;
  text-transform: capitalize;
}

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

.navs-container .navbar .nav-link::after {
  content: '';
  width: 20px;
  height: 5px;
  background-color: var(--primary);
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  opacity: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  display: block;
}

.navs-container .navbar .nav-link:hover::after, .navs-container .navbar .nav-link.active::after {
  -webkit-clip-path: polygon(0 0, 100% 0, 90% 90%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 90% 90%, 0% 100%);
  opacity: 1;
}

.navs-container .navbar .nav_end .search_box .form-control {
  height: 40px !important;
  -webkit-padding-start: 25px;
          padding-inline-start: 25px;
  border: none !important;
  width: 100px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.navs-container .navbar .nav_end .search_box .form-control:focus {
  width: 150px;
}

.navs-container .navbar .nav_end .search_box .search_butn {
  position: absolute;
  left: 0;
  top: 7px;
}
.navs-container .navbar .nav_end .nav_icons  a {
    position: relative;
}
.navs-container .navbar .nav_end .b_end {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-border-end: 1px solid #ddd;
          border-inline-end: 1px solid #ddd;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer {
  background-color: #2C3C4D !important;
  padding: 150px 0 0px 0;
}

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

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

.footer .content .p {
  color: #C1C1C1;
}

.footer .content .social_links .butn {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.footer .content .social_links .butn i {
  margin: 0 !important;
}

.footer .content .social_links .butn .fa-facebook-f {
  color: #3585E1;
}

.footer .content .social_links .butn .fa-twitter {
  color: #34BDE0;
}

.footer .content .social_links .butn .fa-instagram {
  color: #B44199;
}

.footer .content .social_links .butn .fa-youtube {
  color: #DF2A2A;
}

.footer .content .links a {
  display: block;
  margin-bottom: 20px;
  color: #C1C1C1;
}

.footer .content .form-group .butn {
  position: absolute;
  right: 12px;
  top: 12px;
}

.footer .content .marof_img {
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

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

.footer .row_links {
  color: #888;
}

.footer .row_links a {
  margin: 0 10px;
  display: inline-block;
  color: #C1C1C1;
  font-size: 14px;
}

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

.footer .foot {
  background-color: #fff;
}

.footer .foot .delivery_imgs .delivery_img {
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.footer .foot .pay_imgs .pay_img {
  width: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  padding: 150px 0 50px 0;
}

.header .item {
  opacity: 0;
}

.header .item .img_box {
  position: relative;
  width: 550px;
  height: 550px;
  display: block;
  margin: auto;
}

.header .item .img_box .sec-img {
  width: 500px;
  height: 500px;
  display: block;
  margin: auto;
  border-radius: 50%;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header .item .img_box::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: url(../images/shape-4.png) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0px;
  left: 0;
  -webkit-animation: rotate-center 25s linear infinite both;
          animation: rotate-center 25s linear infinite both;
}

.header .item .text-box .title {
  font-size: calc(1vw + 35px);
}

.header .swiper-slide-active .item {
  opacity: 1;
}

.header .swiper-slide-active .item .img_box {
  -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;
}

.header .swiper-slide-active .item .text-box {
  -webkit-animation: fadeInUp .8s linear;
          animation: fadeInUp .8s linear;
}

.header .swiper-container .swiper-button-prev,
.header .swiper-container .swiper-button-next {
    background-color: #fff;
}
.header .swiper-container .swiper-button-prev:hover::before ,
.header .swiper-container .swiper-button-next:hover::before  {
    color: var(--primary) !important;
}
.header .swiper-container .swiper-button-prev,
.header .swiper-container .swiper-container-rtl .swiper-button-next {
  top: 65%;
}

.header .swiper-container .swiper-button-next,
.header .swiper-container .swiper-container-rtl .swiper-button-prev {
  right: 53%;
  top: 27%;
}

.header .shape_tl {
  position: absolute;
  top: -4px;
  left: -90px;
  width: 220px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: floating-y 1s infinite linear alternate;
          animation: floating-y 1s infinite linear alternate;
}

.header .shape_cl {
  position: absolute;
  top: 120px;
  left: 43%;
  width: 70px;
  -webkit-animation: floating_rotating 10s infinite linear alternate;
          animation: floating_rotating 10s infinite linear alternate;
}

.header .shape_bl {
  position: absolute;
  bottom: -15%;
  left: 37%;
  width: 240px;
  -webkit-animation: scaling 4s infinite linear alternate;
          animation: scaling 4s infinite linear alternate;
}

.partners-sec .swiper-slide {
  background-color: #fff;
  padding: 15px 0;
}

.partners-sec .partner_logo {
  width: 85%;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.partners-sec .partner_logo:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.categ-sec .nav-link {
  padding: 1.3rem 2rem 1rem 2rem;
  width: 170px;
  height: 130px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #f5f5f5;
  color: #121241;
  margin: 5px;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  font-weight: bold;
  border-bottom: 9px solid transparent;
}

.categ-sec .nav-link .icon {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 15px auto;
}

.categ-sec .nav-link.active {
  background-color: #121241;
  color: #fff;
  border-bottom: 9px solid var(--primary);
}

.categ-sec .nav-link.active .icon {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.categ-sec .categ_card {
  margin: 20px 0;
}

.categ-sec .categ_card .img-box {
  height: 250px;
  border: 1px solid #ddd;
  position: relative;
  overflow: hidden;
}

.categ-sec .categ_card .img-box .sec-img {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.categ-sec .categ_card .card-body {
  padding: 1rem;
  position: relative;
  margin: auto;
  width: 90%;
  height: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -50px;
  -webkit-box-shadow: 3px 6px 15px 0 #0002;
          box-shadow: 3px 6px 15px 0 #0002;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.categ-sec .categ_card .card-body .title {
  color: #fff;
  font-size: 1.1rem;
}

.categ-sec .categ_card .card-body.bg_red {
  background-color: #BC2020;
}

.categ-sec .categ_card .card-body.bg_secondary {
  background-color: var(--secondary);
}

.categ-sec .categ_card .card-body.bg_priimary {
  background-color: var(--primary);
}

.categ-sec .categ_card:hover .img-box .sec-img {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.products-sec .prod_card {
  position: relative;
  border: 1px solid #f5f5f5;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  height: 100%;
}

.products-sec .prod_card .img-box {
  position: relative;
  background-color: #F3F3F3;
  overflow: hidden;
  height: 450px;
}

.products-sec .prod_card .img-box .badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.9rem 2rem;
}

.products-sec .prod_card .img-box .butns_hvr {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.products-sec .prod_card .img-box .butns_hvr .butn {
  width: 45px;
  height: 45px;
  margin: 5px 0 0 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
  -webkit-box-shadow: 3px 6px 15px 0 #0001;
          box-shadow: 3px 6px 15px 0 #0001;
}

.products-sec .prod_card .img-box .butns_hvr .butn.fav_butn.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
  background-color: var(--primary);
}

.products-sec .prod_card .img-box .butns_hvr .butn.fav_butn.active .icon {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

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

.products-sec .prod_card .card-body .title {
  font-weight: bold;
      white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.products-sec .prod_card .card-body .cart_butn {
  border-top: 2px solid #ddd;
  padding-top: 1.5rem;
}

.products-sec .prod_card .out_badge {
    display: block;
    padding: 10px 5px;
    text-align: center;
    background: #fdd;
    color: #f00;
    margin-top: 25px;
    font-weight: bold;
}

.products-sec .prod_card:hover {
  -webkit-box-shadow: 3px 6px 15px 0 #0002;
          box-shadow: 3px 6px 15px 0 #0002;
}

.products-sec .prod_card:hover .butns_hvr .butn {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
}
.feedback-sec .swiper-slide {
    height: auto;
}
.feedback-sec .feedback_card {
  background-color: #fff;
  padding: 40px 2vw;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  height: 100%;
}

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

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

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

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

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

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

.feedback-sec .feedback_card::before {
  content: '\f10d';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  font-size: 85px;
  color: #E6F2F8;
  position: absolute;
  top: 103px;
  left: 35px;
  opacity: .45;
}

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

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

.feedback-sec::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  width: 77%;
  height: 75%;
  background-color: #F8FAFC;
  top: unset;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contact-sec {
  overflow: unset;
}

.contact-sec .inner {
  padding: 3vw;
  background-color: #F6F9FB;
  margin-bottom: -50px;
}

.submit_butn {
  border-radius: 0;
  height: 60px;
  font-weight: bold;
  font-size: 18px;
}

/**********************************************
    Start Edit pg-header
**********************************************/
.pg-header {
  background-color: #F8FAFC;
}

.pg-header .bread {
  color: #A3A2A2;
}

.pg-header .bread .pg_link {
  margin: 0 10px;
  color: #A3A2A2;
  font-weight: bold;
  text-transform: capitalize;
}

.pg-header .bread .pg_link.active {
  color: var(--primary);
}

.pg-header .title {
  text-transform: capitalize;
}

/**********************************************
    Start Edit about Page 
**********************************************/
.about-pg .item .img_box {
  position: relative;
}

.about-pg .item .img_box .sec-img {
  height: 350px;
  width: 96%;
  display: block;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}

.about-pg .item .img_box::before {
  content: '';
  background: url(../images/pattern-1.png) no-repeat center;
  background-size: contain;
  width: 250px;
  height: 200px;
  position: absolute;
  left: -50px;
  bottom: -40px;
  z-index: -1;
}

.about-pg .item .text_box {
  padding: 1vw;
}

.about-pg .item .text_box .title {
  font-size: calc(1vw + 35px);
}

.about-pg .item .text_box .p {
  color: #141414;
  font-size: 16px;
}

/**********************************************
    Start Edit cart Page 
**********************************************/
.cart-pg .quantity-container {
    padding: 5px;
    min-width: 100px;
}
.cart-pg  .quantity-container .qt-plus, 
.cart-pg .quantity-container .qt-minus {
    width: 15px;
    height: 15px;
    line-height: 15px;
    font-size: 8px !important;
}
.cart-pg .table-responsive {
  border-radius: 15px;
  border: 1px solid #ddd;
}

.cart-pg .table-responsive th, .cart-pg .table-responsive td {
  padding: 1.5rem 1rem;
  vertical-align: middle;
      font-size: 13px;
    min-width: 85px;
    white-space: nowrap;
}

.cart-pg .table-responsive tr:last-child td {
  border-bottom: none;
}

.cart-pg .table-responsive .prod_data .prod_img {
    width: 50px;
    height: 50px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}
.cart-pg .table-responsive .prod_data .txt {
    width: 95px;
}
.cart-pg .table-responsive .prod_data .txt h6.name.fw-bold {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-pg .table-responsive .prod_data .categ {
  color: #888;
}

.cart-pg .order_summary {
  background-color: #f5f5f5;
  padding: 45px 15px;
  border-radius: 15px;
}

.cart-pg .order_summary .item:last-child .label,
.cart-pg .order_summary .item:last-child .price {
  font-weight: bold;
  font-size: 18px;
}

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

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

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

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

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

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

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

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

.quantity-container {
  border-radius: 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px;
  border: 1px solid #ddd;
  min-width: 139px;
}

.quantity-container .qt-plus,
.quantity-container .qt-minus {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: solid 1px transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  color: #555;
  font-size: 10px;
  vertical-align: middle;
  display: inline-flex;
  cursor: pointer;
  border: 2px solid #000;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

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

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

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

/**********************************************
    Start Edit product-det Page 
**********************************************/
.product-det .swiper_box {
  border: 1px solid #ddd;
  padding: 20px 15px 15px 15px;
  border-radius: 15px;
}

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

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

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

.product-det .swiper_box .sm-slide-swiper {
  overflow: hidden;
  height: 100px;
  padding-bottom: 4px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}

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

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

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

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

.product-det .taxt_box .categ {
  font-size: 14px;
}

.product-det .taxt_box .categ .categ_logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #f9f9f9;
  -webkit-box-shadow: 2px 5px 10px 0 #0001;
          box-shadow: 2px 5px 10px 0 #0001;
}

.product-det .taxt_box .rate_ratio i {
  color: #FF9500;
}

.product-det .taxt_box .badge.offer_badge {
  padding: 0.6rem 1.5rem;
}

.product-det .taxt_box .p {
  font-size: 16px;
}

.product-det .taxt_box .share_links .title {
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.product-det .taxt_box .share_links .title::after {
  content: '';
  width: 45px;
  height: 2px;
  display: inline-block;
  background-color: var(--primary);
  margin: 0 10px;
}
.product-det .taxt_box .gray_butn.active{
    background-color: var(--primary);
    color: #fff !important;
}
.product-det .taxt_box .share_links .links a {
  margin: 0 10px;
  font-size: 20px;
}

.product-det .taxt_box .share_links .links a .fa-facebook-f {
  color: #428BDD;
}

.product-det .taxt_box .share_links .links a .fa-twitter {
  color: #37D1DC;
}

.product-det .taxt_box .share_links .links a .fa-paper-plane {
  color: #1B75C3;
}

.product-det .taxt_box .share_links .links a .fa-whatsapp {
  color: #2DB061;
}

.product-det .desc_wrapper .nav {
  background-color: #343434;
  padding: 0 2rem;
  border-radius: 15px 15px 0 0;
}

.product-det .desc_wrapper .nav .nav-link {
  font-size: 18px;
  width: 250px;
  height: 90px;
  border-radius: 0;
  font-weight: bold;
  color: #fff;
  border-top: 5px solid transparent;
}

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

.product-det .desc_wrapper .tab_wrapper {
  background-color: #F8FAFC;
  padding: 45px 2vw;
}

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

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

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

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

.sticky_buttons .butn {
  padding: 0.7rem 1rem;
}

/**********************************************
    Start Edit contact Page 
**********************************************/
.contact-pg .contact_card {
  background-color: #F6F9FB;
  padding: 35px;
  border-radius: 15px;
  text-align: center;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

.contact-pg .contact_card:hover .icon {
  -webkit-animation: shake 1s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
          animation: shake 1s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

.contact-pg .contact_card .icon {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 20px auto;
}

@-webkit-keyframes shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-2px, 0, 0);
            transform: translate3d(-2px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
}

@keyframes shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-2px, 0, 0);
            transform: translate3d(-2px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
}

.branches-pg .branch_card {
  background-color: #fff;
  padding: 40px 25px 25px 25px;
  border-radius: 15px;
  -webkit-box-shadow: 3px 6px 15px 0 #0001;
          box-shadow: 3px 6px 15px 0 #0001;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  margin: 10px 0;
}
.branches-pg .branch_card .title {
    height: 63px;
    overflow: hidden;
}
.branches-pg .branch_card .icon_outer {
  width: 80px;
  height: 80px;
  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;
  background-color: #f5f5f5;
  margin: 0 auto 20px auto;
}

.branches-pg .branch_card .icon_outer .icon {
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.branches-pg .branch_card .data .item {
  display: block;
  margin: 18px 0;
  font-size: 14px;
}

.branches-pg .branch_card iframe {
  border-radius: 15px;
}

/**********************************************
    Start Edit faq Page 
**********************************************/
.faq-pg .sec-img {
  height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  display: block;
  pointer-events: none;
}

.faq-pg .accordion .accordion-item {
  border: transparent;
  border-bottom: 1px solid #eee;
  margin-bottom: 25px;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 60px 0 rgba(0, 0, 1, 0.05);
          box-shadow: 0px 0px 60px 0 rgba(0, 0, 1, 0.05);
}

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

.faq-pg .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  content: "\f068";
  color: var(--primary);
}

.faq-pg .accordion .accordion-item .accordion-button {
  padding: 1.5rem 4rem;
  font-weight: bold;
  color: #333;
  font-size: 19px;
}

.faq-pg .accordion .accordion-item .accordion-button::after {
  content: "\2b";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  background-image: unset;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  position: absolute;
  left: 30px;
  top: 23px;
}

.faq-pg .accordion .accordion-item .accordion-body {
  padding: 1.5rem;
}

.faq-pg .accordion .accordion-item .accordion-body .det {
  font-size: 16px;
}

.faq-pg .accordion .accordion-button:focus {
  border-color: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/**********************************************
    Start Edit gallery Page 
**********************************************/
.gallery-pg .nav-link {
  padding: 1.3rem 2rem 1rem 2rem;
  width: 170px;
  border-radius: 10px;
  background-color: #f5f5f5;
  color: #121241;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  font-weight: bold;
  border-bottom: 9px solid transparent;
}

.gallery-pg .nav-link .icon {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 15px auto;
}

.gallery-pg .nav-link.active {
  background-color: #121241;
  color: #fff;
  border-bottom: 9px solid var(--primary);
}

.gallery-pg .button {
  background-color: var(--primary);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -55%) scale(0.85);
          transform: translate(-50%, -55%) scale(0.85);
  z-index: 6;
}

.gallery-pg .button.is-play .button-outer-circle {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

.gallery-pg .button.is-play .button-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.gallery-pg .button.is-play .triangle {
  -webkit-animation: fadeIn 7s ease;
          animation: fadeIn 7s ease;
}

.gallery-pg .button.is-play .button-icon .path {
  stroke-dasharray: 90;
  stroke-dashoffset: 0;
  -webkit-animation: triangleStroke 3s;
          animation: triangleStroke 3s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

.gallery-pg .button .has-scale-animation {
  -webkit-animation: smallScale 3s infinite;
          animation: smallScale 3s infinite;
}

.gallery-pg .button .has-delay-short {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes triangleStroke {
  from {
    stroke-dashoffset: 90;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes triangleStroke {
  from {
    stroke-dashoffset: 90;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes smallScale {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes smallScale {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}

/**********************************************
    Start Edit checkout Page 
**********************************************/
.checkout-pg .sm_box {
  background-color: #fff;
  padding: 30px 2vw;
  border-radius: 15px;
  position: relative;
}

.checkout-pg .sm_box .form-check .sm_img {
  width: 60px;
  display: block;
  margin-bottom: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

.checkout-pg .sm_box .apply_butn {
  position: absolute;
  right: 5px;
  top: 7px;
}

.checkout-pg .lg_box {
  background-color: #fff;
  padding: 30px 3vw;
  border-radius: 15px;
  position: relative;
}

.checkout-pg .form-control {
  background-color: #f8f8f8;
  border: 1px solid #f8f8f8;
  border-radius: 15px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**********************************************
    Start Edit products Page 
**********************************************/
.categ-sec2 .categ_card2 {
  height: 150px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-box-shadow: 3px 6px 15px 0 #0001;
          box-shadow: 3px 6px 15px 0 #0001;
  cursor: pointer;
}

.categ-sec2 .categ_card2 .txt {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
  color: #333;
  text-align: center;
  padding: 10px 5px;
  height: 56px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.categ-sec2 .categ_card2 .txt .headline {
  font-size: .9rem;
  font-weight: bold;
}

.categ-sec2 .categ_card2.active .txt {
  background-color: rgba(242, 100, 32, 0.9);
  color: #fff;
}

.products-pg .search_box {
  background-color: #f8f8f8;
  padding: 30px 1vw;
  border-radius: 15px;
  position: relative;
}

.products-pg .search_box .form-control {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 15px;
}

.products-pg .search_box .butn {
  height: 60px;
  border-radius: 15px;
}

/**********************************************
    Start Edit content Page 
**********************************************/
.content-pg .item {
  padding: 3vw;
  border-radius: 15px;
  border: 10px solid #f6f6f6;
}

/**********************************************
    Start Edit notifications Page 
**********************************************/
.notifications-pg .inner {
  border: 10px solid #f5f5f5;
  border-radius: 15px;
  padding: 3vw;
}

.notifications-pg .noti_card {
  position: relative;
  border-radius: 15px;
  padding: 35px 20px;
  margin-bottom: 40px;
  border: 1px solid #ddd;
  -webkit-box-shadow: 3px 6px 15px 0 #0003;
          box-shadow: 3px 6px 15px 0 #0003;
}

.notifications-pg .noti_card .noti_icon {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 25px;
          margin-inline-end: 25px;
}

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

.notifications-pg .noti_card .content .title {
  font-weight: bold;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.notifications-pg .noti_card:hover .noti_icon {
  -webkit-animation: pulse 1s infinite;
          animation: pulse 1s infinite;
}

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

.notifications-pg .noti_card:last-child {
  margin-bottom: 0;
}

/**********************************************
    Start Edit register Page 
**********************************************/
.register-pg .register-box {
  border-radius: 20px;
  border: 10px solid #f5f5f5;
}

.register-pg .register-box .head {
  border-radius: 10px 10px 0 0;
  padding: 25px 15px;
  background-color: #04121b;
}

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

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

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

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

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

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

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

.show_hide_password {
  position: relative;
}

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

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

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

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

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

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

.profile-pg .prof-side .wrapper {
  padding: 3vw 2vw;
  border-radius: 20px;
  background-color: #fff;
  margin-bottom: 25px;
}

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

.profile-pg .prof-side .wrapper.links-data .nav-link {
  color: #333;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  margin-bottom: 5px;
}

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

.profile-pg .tab_wrapper {
  padding: 3vw;
  border-radius: 20px;
  background-color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order_det_pg .order-details .order-body .table-bordered th, .order_det_pg .order-details .order-body .table-bordered td {
  border: 1px solid #ddd;
}

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

.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: 1px solid #ddd;
  overflow: hidden;
}

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

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

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

/**********************************************
    Start Edit error Page 
**********************************************/
.error_pg {
  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;
}

.error_pg .sec-img {
  height: 100vh;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
    Start Edit Dark mode 
**********************************************/
.dark_mode .dm_none {
  display: none !important;
}

.dark_mode .dm_block {
  display: block !important;
}

.dark_mode .header,
.dark_mode .navbar,
.dark_mode .products-pg .search_box,
.dark_mode .modal-content,
.dark_mode .dropdown-menu {
  background-color: #04121b !important;
}

.dark_mode .pg-header {
  background-color: #030d13 !important;
}

.dark_mode .section,
.dark_mode .feedback-sec .feedback_card,
.dark_mode .branches-pg .branch_card,
.dark_mode .checkout-pg .lg_box,
.dark_mode .checkout-pg .sm_box,
.dark_mode .profile-pg .tab_wrapper.loc_tab .loc_card,
.dark_mode .cart-pg .order_summary,
.dark_mode .steps-wizard ,
.dark_mode .timer-nav ,
.dark_mode .order_det_pg .order-details .order-head  {
  background-color: #051622;
}

.dark_mode .section.bg-light,
.dark_mode .bg-light,
.dark_mode .feedback-sec::before,
.dark_mode .contact-sec .inner,
.dark_mode .product-det .desc_wrapper .tab_wrapper,
.dark_mode .contact-pg .contact_card,
.dark_mode .order_det_pg .order-details,
.dark_mode .profile-pg .tab_wrapper,
.dark_mode .profile-pg .prof-side .wrapper,
.dark_mode .register-pg .register-box ,
.dark_mode .faq-pg .accordion .accordion-item{
  background-color: #072438 !important;
  color: #fff;
}
.dark_mode .faq-pg .accordion .accordion-item .accordion-button {
    color: #fff;
    background: transparent;
}
.dark_mode .title,
.dark_mode .navs-container .navbar .nav-link.active,
.dark_mode .pg_title,
.dark_mode .name,
.dark_mode .products-sec .prod_card .card-body .cart_butn,
.dark_mode .product-det .taxt_box .rate_ratio,
.dark_mode .label,
.dark_mode .price,
.dark_mode th,
.dark_mode label,
.dark_mode .modal-content .title,
.dark_mode .modal-content .title b,
.dark_mode .profile-pg .prof-side .wrapper.links-data .nav-link,
.dark_mode a ,
.dark_mode .timer-nav .title {
  color: #fff;
}

.dark_mode .p, 
.dark_mode p, 
.dark_mode .navs-container .navbar .nav-link,
.dark_mode .navs-container .navbar .nav_end button,
.dark_mode .navs-container .navbar .nav_end a,
.dark_mode .products-sec .prod_card .card-body .prices .price,
.dark_mode .about-pg .item .text_box .p,
.dark_mode .product-det .desc_wrapper .tab_wrapper .ul_custom .li,
.dark_mode td,
.dark_mode .branches-pg .branch_card .data .item,
.dark_mode .notifications-pg .noti_card .date,
.dark_mode .anothe_opt,
.dark_mode .form-check a,
.dark_mode .steps-wizard .single_step .label,
.dark_mode .product-det .prod_data ,
.dark_mode .about-pg .item .text_box .p ,
.dark_mode .timer-nav .timer .num span {
  color: #eee;
}

.dark_mode .modal{
    background: #0009;
}
.dark_mode .modal-content {
    border: 1px solid #5555;
}

.dark_mode .navs-container .navbar .nav_end .search_box .form-control {
  background-color: transparent;
  color: #fff;
}

.dark_mode .navs-container .navbar .nav_end .search_box .form-control::-webkit-input-placeholder {
  color: #eee;
}

.dark_mode .navs-container .navbar .nav_end .search_box .form-control:-ms-input-placeholder {
  color: #eee;
}

.dark_mode .navs-container .navbar .nav_end .search_box .form-control::-ms-input-placeholder {
  color: #eee;
}

.dark_mode .navs-container .navbar .nav_end .search_box .form-control::placeholder {
  color: #eee;
}

.dark_mode .navs-container .navbar .nav_end .icon {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.dark_mode .feedback-sec .feedback_card::before {
  opacity: .1;
}

.dark_mode .checkout-pg .form-control,
.dark_mode .products-pg .search_box .form-control,
.dark_mode .register-pg .register-box .card-body .form-control,
.dark_mode .data-group .data,
.dark_mode .modal-content .form-control {
  background-color: #021a2a;
  border: 1px solid #062438;
  color: #fff;
}

.dark_mode .quantity-container .qt-plus,
.dark_mode .quantity-container .qt-minus {
  border: 2px solid #ddd;
  color: #ddd;
}

.dark_mode .content-pg .item,
.dark_mode .notifications-pg .inner,
.dark_mode .register-pg .register-box {
  border: 10px solid #030d13;
}

.dark_mode .butn:hover {
  background-color: var(--secondary) !important;
  border-color: var(--secondary) !important;
}

.dark_mode .secondary_butn:hover {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

#modeSwitcher .checkbox {
  opacity: 0;
  position: absolute;
}

#modeSwitcher .checkbox:checked + .label {
  background-color: #082234;
}

#modeSwitcher .checkbox:checked + .label .ball {
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
  background-color: var(--primary) !important;
}

#modeSwitcher .checkbox:checked + .label .ball::after {
  content: '';
  position: absolute;
  background-color: #082234;
  width: 20px;
  height: 19px;
  border-radius: 50%;
  bottom: 50%;
  left: -23%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

#modeSwitcher .label {
  background-color: #ddd;
  border-radius: 50px;
  cursor: pointer;
  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: 5px;
  margin: 0;
  position: relative;
  height: 35px;
  width: 65px;
}

#modeSwitcher .label .fa-moon {
  background-color: #888;
  display: none;
}

#modeSwitcher .label .ball {
  background-color: var(--primary) !important;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 10px;
  height: 20px;
  width: 20px;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
/*# sourceMappingURL=style.css.map */