:root {
  --primary: #EFDB8A;
  --secondary: #E58211;
  --green: #426539;
  --lightGreen: #62b14e;
  --filterPrimary: invert(89%) sepia(52%) saturate(2801%) hue-rotate(306deg) brightness(122%) contrast(88%);
  --filterSecondary: invert(52%) sepia(71%) saturate(648%) hue-rotate(355deg) brightness(96%) contrast(90%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

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

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

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

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

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

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

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

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

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

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

.color-gray2 {
  color: #888;
}

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

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

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

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

.theme-dark .color-green {
  color: var(--lightGreen);
}

.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(--secondary) !important;
}

a:focus {
  outline: 0;
}

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

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

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

button: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;
  border: transparent;
  border-bottom: 1px solid #ddd;
}

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

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

form .custom-control-input:checked ~ .custom-control-label::before {
  border-color: var(--primary);
  background-color: var(--primary);
}

form .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: var(--primary);
  -webkit-box-shadow: none;
          box-shadow: none;
}

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

.progress-wrap::after {
  background: url(../images/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(--secondary);
  left: 13px;
  top: 13px;
  height: 30px;
  width: 30px;
  display: block;
  -webkit-filter: var(--filterSecondary);
          filter: var(--filterSecondary);
}

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

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

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

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

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

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

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

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

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

.overflow_hidden {
  overflow: hidden !important;
}

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

/**********************************************
   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 wave {
  0% {
    right: 0;
    bottom: 0;
    opacity: 1;
  }
  50% {
    right: 50%;
    bottom: 15%;
  }
  100% {
    right: 100%;
    bottom: 0px;
    opacity: .3;
  }
}

@keyframes wave {
  0% {
    right: 0;
    bottom: 0;
    opacity: 1;
  }
  50% {
    right: 50%;
    bottom: 15%;
  }
  100% {
    right: 100%;
    bottom: 0px;
    opacity: .3;
  }
}

@-webkit-keyframes wave2 {
  0% {
    left: 0;
    top: 0;
    opacity: 1;
  }
  50% {
    left: 50%;
    top: 8%;
  }
  100% {
    left: 100%;
    top: 0px;
    opacity: .3;
  }
}

@keyframes wave2 {
  0% {
    left: 0;
    top: 0;
    opacity: 1;
  }
  50% {
    left: 50%;
    top: 8%;
  }
  100% {
    left: 100%;
    top: 0px;
    opacity: .3;
  }
}

@-webkit-keyframes wave3 {
  0% {
    left: 0;
    top: 0;
  }
  25% {
    left: 25%;
    top: 8%;
  }
  50% {
    left: 50%;
    top: 15%;
  }
  75% {
    left: 99%;
    top: 20%;
  }
  100% {
    left: 100%;
    top: 25%;
  }
}

@keyframes wave3 {
  0% {
    left: 0;
    top: 0;
  }
  25% {
    left: 25%;
    top: 8%;
  }
  50% {
    left: 50%;
    top: 15%;
  }
  75% {
    left: 99%;
    top: 20%;
  }
  100% {
    left: 100%;
    top: 25%;
  }
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container {
  position: relative;
}

.navs-container .top-nav {
  padding: 15px 0;
  background-color: #f8f8f8;
}

.navs-container .top-nav .regist-links {
  font-size: 15px;
}

.navs-container .top-nav .regist-links a {
  margin: 0 5px;
}

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

.navs-container .navbar .navbar-brand .logo {
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100px;
}

.navs-container .navbar .nav-link {
  margin: 0 15px;
  position: relative;
  color: #666;
}

.navs-container .navbar .nav-link::after {
  content: '';
  width: 0%;
  height: 2px;
  background-color: var(--green);
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.theme-dark .navs-container .navbar .nav-link::after {
  background-color: var(--lightGreen);
}

.navs-container .navbar .nav-link:hover::after, .navs-container .navbar .nav-link.active::after {
  width: 100%;
  opacity: 1;
}

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

.theme-dark .navs-container .navbar .nav-link.active {
  color: var(--lightGreen);
}

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

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

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

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

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

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

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

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

.navs-container .icon-outer {
  position: relative;
  margin: 0 7px;
  background-color: transparent;
}

.navs-container .icon-outer .icon {
  opacity: .8;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: invert(17%) sepia(0%) saturate(1%) hue-rotate(176deg) brightness(91%) contrast(87%);
          filter: invert(17%) sepia(0%) saturate(1%) hue-rotate(176deg) brightness(91%) contrast(87%);
}

.navs-container .icon-outer:hover .icon {
  opacity: 1;
  -webkit-filter: var(--filterSecondary);
          filter: var(--filterSecondary);
}

.navs-container .dropdown-item {
  padding: 0.5rem 1rem;
  font-size: 15px;
}

.navs-container .dropdown-toggle::after {
  display: none;
}

.footer {
  padding: 70px 0 0 0;
  background-color: #1D1D1B;
}

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

.footer .content .logo {
  width: 200px;
  height: 130px;
  margin-top: -55px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer .content .social-links a {
  color: #eee;
  margin: 0 10px;
}

.footer .content .title {
  position: relative;
}

.footer .content .title::after {
  content: '';
  width: 40px;
  height: 2px;
  display: block;
  background-color: #F9EA42;
  position: relative;
  top: 15px;
}

.footer .content .links a {
  display: block;
  margin: 17px 0;
  color: #eee;
}

.footer .content .gallery-foot {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer .content .gallery-foot .foot-img {
  margin: 5px;
  width: 140px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.footer .foot {
  border-top: 1px solid #333;
  padding: 25px 0;
}

.footer .foot .links-foot a {
  margin: 0 5px;
  color: #eee;
  font-size: 15px;
}

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

.butn {
  position: relative;
  border-radius: 8px;
  padding: .7rem 2.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-weight: 600;
}

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

.butn i, .butn .icon {
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

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

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

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

.butn:hover {
  background-color: var(--green) !important;
  color: #fff !important;
}

.theme-dark .butn:hover {
  background-color: var(--lightGreen) !important;
}

.pg-heading {
  background-color: #F5F6F8;
}

.pg-heading .title {
  font-weight: bolder !important;
}

.pg-heading .shape1,
.pg-heading .shape2 {
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
}

.pg-heading .shape1 {
  width: 100px;
  left: -15px;
  top: 15px;
}

.pg-heading .shape2 {
    width: 200px;
    height: 80%;
    bottom: 0;
    right: 0;
}

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

.modal .modal-content .modal-body {
  padding: 2rem;
}

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

.editProfModal .form-group .map-butn {
  position: absolute;
  left: 5px;
  bottom: 5px;
  background-color: transparent;
}

.editProfModal .form-group .map-butn .icon {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

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

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

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

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

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

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

.baddge {
  padding: 1rem 1.5rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 25px;
  text-align: center;
  font-size: 15px;
}

.baddge.secondary_badge {
  color: #fff;
  background-color: var(--secondary);
}

.baddge.primary_badge {
  color: #333;
  background-color: var(--primary);
}

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

.bg-gray {
  background-color: #f8f8f8 !important;
}

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

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before,
.categ_inner .swiper-button-next::before,
.categ_inner .swiper-button-prev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 15px;
  color: var(--secondary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

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

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

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

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

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

.swiper-container .swiper-pagination .swiper-pagination-bullet,
.categ_inner .swiper-pagination .swiper-pagination-bullet {
  border-radius: 25px;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active,
.categ_inner .swiper-pagination .swiper-pagination-bullet-active {
  width: 15px;
  background: var(--secondary);
}

.pagination-wrapper .pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.pagination-wrapper .pagination .page-link {
  border-radius: 8px !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(--green);
  color: #fff !important;
}

.theme-dark .pagination-wrapper .pagination .page-link:hover, .pagination-wrapper .pagination .page-link.active {
  background-color: var(--lightGreen);
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  padding: 70px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.header .sec-img{
    object-fit: contain;
}

.header .text-box .title {
  font-weight: bold;
  font-size: calc(1.5vw + 35px);
  line-height: 1.3;
}

.header .shape {
  position: absolute;
  top: 70px;
  left: 10px;
}

.header .pattern {
  position: absolute;
  bottom: 0;
  right: -55px;
  width: 70%;
  opacity: 0.7;
  -o-object-fit: contain;
     object-fit: contain;
}

.bee_wrapper {
  position: relative;
  overflow: hidden;
}

.bee_wrapper::after, .bee_wrapper::before {
  content: '';
  position: absolute;
  width: 172px;
  height: 162px;
  background-image: url("../images/b.svg");
  background-size: 172px 162px;
  background-repeat: no-repeat;
}

.bee_wrapper::after {
  -webkit-animation: wave 10s linear infinite;
          animation: wave 10s linear infinite;
}

.bee_wrapper::before {
  -webkit-animation: wave2 10s linear infinite;
          animation: wave2 10s linear infinite;
  left: 0;
  -webkit-transform: rotateY(180deg) scale(0.4);
          transform: rotateY(180deg) scale(0.4);
}

.about-sec {
  background-color: #F5F6F8;
}

.about-sec .text-box .title {
  font-weight: bold;
  font-size: calc(1vw + 35px);
}

.about-sec .text-box .data-group {
  margin-bottom: 15px;
}

.about-sec .text-box .data-group .icon-outer {
  width: 70px;
  height: 70px;
  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: #fff;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  border: 1px solid #fff;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.09);
}

.about-sec .text-box .data-group .icon-outer .icon {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-sec .text-box .data-group .p {
  font-size: 16px;
  font-weight: 500;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  width: 60%;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.about-sec .text-box .data-group.active .icon-outer {
  border: 1px solid var(--secondary);
}

.about-sec .text-box .data-group.active .p {
  background-color: var(--secondary);
  color: #fff;
}

.about-sec .imgs-box .in-flex {
  margin-top: -80px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about-sec .imgs-box .box {
  width: 270px;
  height: 270px;
  -webkit-mask-image: url("../images/shape-2.png");
          mask-image: url("../images/shape-2.png");
  -webkit-mask-size: 270px;
          mask-size: 270px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}

.about-sec .imgs-box .box.box1 {
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}

.products-sec {
  background-color: #F7F3F0;
}

.products-sec .prod_card {
  position: relative;
  margin-bottom: 15px;
  padding: 15px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  background-color: #fff;
}

.products-sec .prod_card .img-box {
  height: 250px;
  position: relative;
}

.products-sec .prod_card .img-box .prod-img {
  /*-o-object-fit: contain;*/
  /*   object-fit: contain;*/
}

.products-sec .prod_card .img-box .fav-butn {
  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;
  border-radius: 50%;
  background-color: var(--secondary);
  position: absolute;
  top: 10px;
  right: 10px;
  /*-webkit-transform: translateX(-50%);*/
          /*transform: translateX(-50%);*/
}

.products-sec .prod_card .img-box .fav-butn.active {
  background-color: var(--green);
}

.theme-dark .products-sec .prod_card .img-box .fav-butn.active {
  background-color: var(--lightGreen);
}

.products-sec .prod_card .img-box .baddge {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.5rem 1.5rem;
  font-weight: bold;
}

.products-sec .prod_card .card-body .price small {
  font-size: 60%;
}

.products-sec .prod_card .card-body .price del {
  font-size: 50%;
}

.products-sec .prod_card .card-body .cart-butn {
  display: block;
  text-align: center;
}

.products-sec .prod_card .card-body .cart-butn .icon {
  -o-object-fit: contain;
     object-fit: contain;
  width: 18px;
  height: 18px;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.products-sec .prod_card .card-body .cart-butn:hover .icon {
  -webkit-filter: var(--secondary);
          filter: var(--secondary);
}

.products-sec .prod_card:hover {
  background-color: #fff;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 3px 6px 15px 0 #eee;
          box-shadow: 3px 6px 15px 0 #eee;
}

.categories-sec {
  background-color: #F5F6F8;
}

.categories-sec .categ_card {
  background-color: #fff;
  padding: 40px 50px;
  margin-bottom: 25px;
}

.categories-sec .categ_card .text-box {
  padding: 0 2vw;
}

.categories-sec .categ_card .text-box .more-butn .icon {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 3px;
          margin-inline-end: 3px;
}

.categories-sec .categ_card .sec-img {
  height: 230px;
}

.categories-sec .categ_card:hover .categ {
  color: var(--secondary);
}

.categories-sec .categ_card:hover .icon {
  -webkit-animation: tada 1s both infinite;
          animation: tada 1s both infinite;
}

.blog-sec .blog_card {
  border: 1px solid #ddd;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  margin-bottom: 35px;
}

.blog-sec .blog_card .img-box {
  height: 350px;
}

.blog-sec .blog_card .card-body {
  padding: 2.5rem;
}

.blog-sec .blog_card .card-body .data {
  font-size: 14px;
  color: #666;
}

.blog-sec .blog_card .card-body .data i {
  color: var(--secondary);
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.blog-sec .blog_card .card-body .det {
  color: #888;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.blog-sec .blog_card .card-body .more-butn .icon {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 3px;
          margin-inline-end: 3px;
}

.blog-sec .blog_card:hover {
  border: 1px solid var(--secondary);
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 3px 6px 15px 0 #ddd;
          box-shadow: 3px 6px 15px 0 #ddd;
}

.blog-sec .blog_card:hover .title {
  color: var(--secondary);
}

.blog-sec .blog_card:hover .icon {
  -webkit-animation: tada 1s both infinite;
          animation: tada 1s both infinite;
}

.blog-sec.blog-pg .blog_card .img-box {
  height: 250px;
}

.blog-sec.blog-pg .blog_card .title {
  font-size: 1.3rem;
}

.features-sec {
  background-color: #F5F6F8;
}

.features-sec .feature_card {
  margin: 10px 0;
}

.features-sec .feature_card .icon-outer {
  width: 120px;
  height: 120px;
  background-image: url(../images/shape-3.png);
  background-size: cover;
  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;
}

.features-sec .feature_card .icon-outer .icon {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}

.features-sec .feature_card .num {
  color: #959595;
  font-weight: bolder;
  display: block;
  font-size: calc(1.5vw + 35px);
}

.features-sec .feature_card .num::after {
  content: '';
  width: 80%;
  height: 1px;
  display: inline-block;
  background-color: #959595;
  position: relative;
  bottom: 11px;
  -webkit-margin-start: 20px;
          margin-inline-start: 20px;
}

.features-sec .feature_card:hover .icon {
  -webkit-animation: tada 1.5s infinite;
          animation: tada 1.5s infinite;
}

.features-sec .feature_card:hover .title {
  color: var(--secondary);
}

.newsletter-sec .form-group .form-control {
  height: 70px;
  background-color: #f3f3f3;
  border: 1px solid transparent;
  border-radius: 8px;
}

.newsletter-sec .form-group .butn {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0.9rem 2.5rem;
}

.newsletter-sec .bee-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.newsletter-sec .bee-wrapper .bee {
  -webkit-animation: hover 2s ease-in-out infinite;
          animation: hover 2s ease-in-out infinite;
}

.newsletter-sec .bee-wrapper .bee-body {
  position: relative;
  margin: 136px 130px 38px 130px;
  min-width: 130px;
  background: #ffca31;
  /*body*/
  height: 130px;
  width: 130px;
  border-radius: 50%;
  background-size: 130px 65px, cover, cover, cover;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #292929)), radial-gradient(circle at 51% 36%, #FFD764 47%, transparent 47%), radial-gradient(circle at 51% 53%, #FFD764 55%, transparent 55%), radial-gradient(circle at 60% 53%, #ffebb1 60%, transparent 60%);
  background-image: linear-gradient(to bottom, transparent 50%, #292929 50%), radial-gradient(circle at 51% 36%, #FFD764 47%, transparent 47%), radial-gradient(circle at 51% 53%, #FFD764 55%, transparent 55%), radial-gradient(circle at 60% 53%, #ffebb1 60%, transparent 60%);
  /*stripes on body*/
  -webkit-box-shadow: 35px -105px 0 -44px #FFD764, -35px -105px 0 -44px #FFD764, 38px -107px 0 -41px #ffebb1, -32px -107px 0 -41px #ffebb1, 35px -105px 0 -38px #ffca31, -35px -105px 0 -38px #ffca31, 3px -95px 0 -18px #FFD764, 5px -100px 0 -15px #ffebb1, 0px -95px 0 -10px #ffca31, -35px -183px 0 -57px #363636, 35px -183px 0 -57px #363636, -33px -185px 0 -56px #505050, 37px -185px 0 -56px #505050, -35px -184px 0 -54px #292929, 35px -184px 0 -54px #292929;
          box-shadow: 35px -105px 0 -44px #FFD764, -35px -105px 0 -44px #FFD764, 38px -107px 0 -41px #ffebb1, -32px -107px 0 -41px #ffebb1, 35px -105px 0 -38px #ffca31, -35px -105px 0 -38px #ffca31, 3px -95px 0 -18px #FFD764, 5px -100px 0 -15px #ffebb1, 0px -95px 0 -10px #ffca31, -35px -183px 0 -57px #363636, 35px -183px 0 -57px #363636, -33px -185px 0 -56px #505050, 37px -185px 0 -56px #505050, -35px -184px 0 -54px #292929, 35px -184px 0 -54px #292929;
  /*antenae nubs*/
}

.newsletter-sec .bee-wrapper .bee-body:after {
  position: absolute;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #363636));
  background: linear-gradient(to bottom, transparent 50%, #363636 50%);
  height: 130px;
  width: 130px;
  right: 0px;
  bottom: 0px;
  background-size: 130px 65px;
  border-radius: 50%;
  -webkit-clip-path: ellipse(41% at 51% 48%);
          clip-path: ellipse(41% at 51% 48%);
}

.newsletter-sec .bee-wrapper .bee-body:before {
  position: absolute;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #434343));
  background: linear-gradient(to bottom, transparent 50%, #434343 50%);
  height: 130px;
  width: 130px;
  right: 0px;
  bottom: 0px;
  background-size: 130px 65px;
  border-radius: 50%;
  -webkit-clip-path: ellipse(41% at 61% 48%);
          clip-path: ellipse(41% at 61% 48%);
}

.newsletter-sec .bee-wrapper .mouth {
  /*mouth*/
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 55px;
  bottom: 128px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 5px solid #363636;
}

.newsletter-sec .bee-wrapper .antenae {
  position: relative;
  z-index: -2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  right: 0px;
  bottom: 130px;
  border: 8px solid #363636;
  /*right antenae stem*/
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: hidden hidden hidden solid;
  -webkit-transform: skewY(-20deg);
          transform: skewY(-20deg);
}

.newsletter-sec .bee-wrapper .antenae:before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  left: -87px;
  bottom: 30px;
  border: 8px solid #363636;
  /*left antenae stem*/
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: hidden solid hidden hidden;
  -webkit-transform: skewY(40deg);
          transform: skewY(40deg);
}

.newsletter-sec .bee-wrapper .antenae:after {
  /*stinger*/
  -webkit-transform: skewY(20deg);
          transform: skewY(20deg);
  position: absolute;
  content: "";
  bottom: -213px;
  left: -33px;
  width: 30px;
  height: 30px;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #292929), color-stop(50%, #363636));
  background: linear-gradient(to right, #292929 50%, #363636 50%);
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.newsletter-sec .bee-wrapper .bee-left {
  -webkit-animation: flight-left 0.5s ease-out infinite;
          animation: flight-left 0.5s ease-out infinite;
  content: "";
  position: absolute;
  background-color: #f3f3f3;
  /*large wing left*/
  height: 100px;
  width: 150px;
  bottom: 110px;
  right: 100px;
  border-radius: 30px 130px 0 130px;
  -webkit-transform: skewY(20deg);
          transform: skewY(20deg);
  z-index: -1;
  -webkit-box-shadow: inset 30px 105px 0 -70px #FFF;
          box-shadow: inset 30px 105px 0 -70px #FFF;
}

.newsletter-sec .bee-wrapper .bee-left:after {
  -webkit-animation: flight-little 0.5s ease-in-out infinite;
          animation: flight-little 0.5s ease-in-out infinite;
  content: "";
  position: absolute;
  width: 100px;
  height: 110px;
  top: 70px;
  left: 48px;
  background-color: #F0F0F0;
  /*little wing left*/
  border-radius: 50%/50% 0 100% 50%;
  -webkit-box-shadow: inset 10px 1px 0px 0px #FFF, inset 30px 7px 0px 0px #f6f6f6;
          box-shadow: inset 10px 1px 0px 0px #FFF, inset 30px 7px 0px 0px #f6f6f6;
}

.newsletter-sec .bee-wrapper .bee-right {
  -webkit-animation: flight-right 0.5s ease-in-out infinite;
          animation: flight-right 0.5s ease-in-out infinite;
  content: "";
  position: absolute;
  background-color: #f3f3f3;
  /*large wing right*/
  height: 100px;
  width: 150px;
  bottom: 110px;
  left: 100px;
  border-radius: 30px 130px 0 130px;
  border-radius: 130px 30px 130px 0px;
  -webkit-transform: skewY(-20deg);
          transform: skewY(-20deg);
  z-index: -1;
  -webkit-box-shadow: inset 30px 105px 0 -70px #FFF;
          box-shadow: inset 30px 105px 0 -70px #FFF;
}

.newsletter-sec .bee-wrapper .bee-right:after {
  -webkit-animation: flight-little 0.5s ease-in-out infinite;
          animation: flight-little 0.5s ease-in-out infinite;
  content: "";
  position: absolute;
  width: 100px;
  height: 110px;
  top: 70px;
  right: 48px;
  background-color: #f8f8f8;
  /*little wing right*/
  border-radius: 50%/0 50% 50% 100%;
  -webkit-box-shadow: inset -10px 1px 0px 0px #FFF, inset -30px 7px 0px 0px #f6f6f6;
          box-shadow: inset -10px 1px 0px 0px #FFF, inset -30px 7px 0px 0px #f6f6f6;
}

.newsletter-sec .bee-wrapper .blink {
  position: relative;
}

.newsletter-sec .bee-wrapper .blink:before {
  /*left pupil and eyeball shadows*/
  background-image: radial-gradient(circle at 71% 38%, #fff 8%, transparent 8%), radial-gradient(circle at 65% 50%, #363636 16%, transparent 16%), radial-gradient(circle at 69% 47%, #434343 19%, transparent 19%), radial-gradient(circle at 65% 50%, #292929 25%, transparent 25%), radial-gradient(ellipse at 50% 55%, #F8F8FF 50%, transparent 50%), radial-gradient(circle at 70% 50%, #FFF 65%, transparent 65%);
  left: 2px;
}

.newsletter-sec .bee-wrapper .blink:before,
.newsletter-sec .bee-wrapper .blink:after {
  -webkit-clip-path: ellipse(50% 20% at 50% 50%);
          clip-path: ellipse(50% 20% at 50% 50%);
  content: "";
  position: absolute;
  height: 55px;
  width: 55px;
  border-radius: 50%;
  background-color: #F0F0F0;
  top: -67px;
  -webkit-animation: blink 10s linear infinite;
          animation: blink 10s linear infinite;
}

.newsletter-sec .bee-wrapper .blink:after {
  /*right pupil and eyeball shadows*/
  background-image: radial-gradient(circle at 41% 38%, #fff 8%, transparent 8%), radial-gradient(circle at 35% 50%, #363636 16%, transparent 16%), radial-gradient(circle at 39% 47%, #434343 19%, transparent 19%), radial-gradient(circle at 35% 50%, #292929 25%, transparent 25%), radial-gradient(ellipse at 50% 55%, #F8F8FF 50%, transparent 50%), radial-gradient(circle at 70% 50%, #FFF 65%, transparent 65%);
  left: 73px;
}

.newsletter-sec .bee-wrapper .shadow {
  height: 45px;
  width: 170px;
  border-radius: 50%;
  background-color: #f8f8f8;
  -webkit-animation: shadow 2s ease-in-out infinite;
          animation: shadow 2s ease-in-out infinite;
}

@-webkit-keyframes blink {
  0% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
  9% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
  10% {
    -webkit-clip-path: ellipse(50% 5% at 50% 50%);
            clip-path: ellipse(50% 5% at 50% 50%);
  }
  11% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
  30% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
  31% {
    -webkit-clip-path: ellipse(50% 5% at 50% 50%);
            clip-path: ellipse(50% 5% at 50% 50%);
  }
  32% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
  33% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
  34% {
    -webkit-clip-path: ellipse(50% 5% at 50% 50%);
            clip-path: ellipse(50% 5% at 50% 50%);
  }
  35% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
  50% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
  60% {
    -webkit-clip-path: ellipse(50% 20% at 50% 50%);
            clip-path: ellipse(50% 20% at 50% 50%);
  }
  61% {
    -webkit-clip-path: ellipse(50% 20% at 50% 50%);
            clip-path: ellipse(50% 20% at 50% 50%);
  }
  69% {
    -webkit-clip-path: ellipse(50% 20% at 50% 50%);
            clip-path: ellipse(50% 20% at 50% 50%);
  }
  70% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
  79% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
  80% {
    -webkit-clip-path: ellipse(50% 5% at 50% 50%);
            clip-path: ellipse(50% 5% at 50% 50%);
  }
  81% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
  100% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
}

@keyframes blink {
  0% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
  9% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
  10% {
    -webkit-clip-path: ellipse(50% 5% at 50% 50%);
            clip-path: ellipse(50% 5% at 50% 50%);
  }
  11% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
  30% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
  31% {
    -webkit-clip-path: ellipse(50% 5% at 50% 50%);
            clip-path: ellipse(50% 5% at 50% 50%);
  }
  32% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
  33% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
  34% {
    -webkit-clip-path: ellipse(50% 5% at 50% 50%);
            clip-path: ellipse(50% 5% at 50% 50%);
  }
  35% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
  50% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
  60% {
    -webkit-clip-path: ellipse(50% 20% at 50% 50%);
            clip-path: ellipse(50% 20% at 50% 50%);
  }
  61% {
    -webkit-clip-path: ellipse(50% 20% at 50% 50%);
            clip-path: ellipse(50% 20% at 50% 50%);
  }
  69% {
    -webkit-clip-path: ellipse(50% 20% at 50% 50%);
            clip-path: ellipse(50% 20% at 50% 50%);
  }
  70% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
  79% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
  80% {
    -webkit-clip-path: ellipse(50% 5% at 50% 50%);
            clip-path: ellipse(50% 5% at 50% 50%);
  }
  81% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
  100% {
    -webkit-clip-path: ellipse(50% 50% at 50% 50%);
            clip-path: ellipse(50% 50% at 50% 50%);
  }
}

@-webkit-keyframes hover {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes hover {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@-webkit-keyframes shadow {
  0% {
    width: 170px;
  }
  50% {
    width: 180px;
  }
  100% {
    width: 170px;
  }
}

@keyframes shadow {
  0% {
    width: 170px;
  }
  50% {
    width: 180px;
  }
  100% {
    width: 170px;
  }
}

@-webkit-keyframes flight-left {
  0% {
    width: 150px;
    -webkit-transform: skewY(20deg);
            transform: skewY(20deg);
  }
  50% {
    width: 125px;
    -webkit-transform: skewY(25deg);
            transform: skewY(25deg);
  }
  100% {
    width: 150px;
    -webkit-transform: skewY(20deg);
            transform: skewY(20deg);
  }
}

@keyframes flight-left {
  0% {
    width: 150px;
    -webkit-transform: skewY(20deg);
            transform: skewY(20deg);
  }
  50% {
    width: 125px;
    -webkit-transform: skewY(25deg);
            transform: skewY(25deg);
  }
  100% {
    width: 150px;
    -webkit-transform: skewY(20deg);
            transform: skewY(20deg);
  }
}

@-webkit-keyframes flight-right {
  0% {
    width: 150px;
    -webkit-transform: skewY(-20deg);
            transform: skewY(-20deg);
  }
  50% {
    width: 125px;
    -webkit-transform: skewY(-25deg);
            transform: skewY(-25deg);
  }
  100% {
    width: 150px;
    -webkit-transform: skewY(-20deg);
            transform: skewY(-20deg);
  }
}

@keyframes flight-right {
  0% {
    width: 150px;
    -webkit-transform: skewY(-20deg);
            transform: skewY(-20deg);
  }
  50% {
    width: 125px;
    -webkit-transform: skewY(-25deg);
            transform: skewY(-25deg);
  }
  100% {
    width: 150px;
    -webkit-transform: skewY(-20deg);
            transform: skewY(-20deg);
  }
}

@-webkit-keyframes flight-little {
  0% {
    height: 110px;
  }
  50% {
    height: 100px;
  }
  100% {
    height: 110px;
  }
}

@keyframes flight-little {
  0% {
    height: 110px;
  }
  50% {
    height: 100px;
  }
  100% {
    height: 110px;
  }
}

.newsletter-sec .pattern {
  position: absolute;
  width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: .5;
}

/**********************************************
    Start Edit about Page 
**********************************************/
.about-cards {
  background-color: #F5F6F8;
}

.about-cards .about_card {
  padding: 45px;
  margin-bottom: 25px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.about-cards .about_card .icon-outer {
  width: 120px;
  height: 120px;
  background-image: url(../images/shape-3.png);
  background-size: cover;
  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;
  margin: 0 auto 20px auto;
}

.about-cards .about_card .icon-outer .icon {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-cards .about_card .content {
  text-align: center;
  padding: 0 2rem;
}

.about-cards .about_card .content .title {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.about-cards .about_card .content .p {
  margin-bottom: 0;
}

.about-cards .about_card:hover {
  background-color: #fff;
}

.about-cards .about_card:hover .icon-outer .icon {
  -webkit-animation: pulse 1s infinite both;
          animation: pulse 1s infinite both;
}

.about-cards .about_card:hover .content .title {
  color: var(--secondary);
}

/**********************************************
    Start Edit profile Page 
**********************************************/
.profile-pg .prof-side .wrapper {
  padding: 35px 25px;
  border-radius: 25px;
  background-color: #F5F6F8;
  margin-bottom: 25px;
}

.profile-pg .prof-side .wrapper.prof-data .img-box {
  width: 155px;
  height: 155px;
  -webkit-mask-image: url("../images/shape-4.png");
          mask-image: url("../images/shape-4.png");
  -webkit-mask-size: 155px;
          mask-size: 155px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -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;
}

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

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

.profile-pg .prof-side .wrapper.points-data .points small {
  font-size: 60%;
}

.profile-pg .tab {
  border: 1px solid #F5F6F8;
  border-radius: 25px;
  padding: 35px;
}

.profile-pg .tab .tab_title {
  color: #444;
}

.profile-pg .tab.prof-tab .data-group {
  margin-bottom: 25px;
}

.profile-pg .tab.prof-tab .data-group .label {
  color: #999;
}

.profile-pg .tab.prof-tab .data-group .data {
  background-color: #f9f9f9;
  border-radius: 25px;
  padding: 1rem 2rem;
  font-weight: bold;
}

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

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

.profile-pg .tab.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(--secondary);
  border-radius: 50%;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.profile-pg .tab.loc-tab .loc_card .heading .card_butn {
  background-color: transparent;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

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

.profile-pg .tab.loc-tab .loc_card .heading .card_butn.delete {
  color: #f14343;
}

.profile-pg .tab.loc-tab .loc_card .card-body {
  padding: 1.25rem 2rem;
}

.profile-pg .tab.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: 5px;
}

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

.profile-pg .tab.orders-tab .nav .nav-link {
  background-color: #f5f5f5;
  border-radius: 25px;
  padding: .5rem 1.5rem;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
  color: #444;
}

.profile-pg .tab.orders-tab .nav .nav-link.active {
  color: #fff;
  background-color: var(--secondary) !important;
}

.profile-pg .prod_card {
  padding: 5px;
}

.profile-pg .prod_card .card-body .categ {
  font-size: .8rem;
}

.profile-pg .prod_card .card-body .name {
  font-size: 1rem;
}

.table {
  border: 1px solid #f4f4f4;
}

.table th {
  background-color: #F5F6F8;
  padding: 1.5rem 0.5rem;
}

.table td, .table th {
  vertical-align: middle;
  text-align: center;
  font-size: 13px;
}

.table td p,
.table td b,
.table td small{
    font-size: 14px;
    line-height: 1.4;
}

.table td {
  padding: .7rem .5rem;
}

.table .prod_img {
  width: 60px;
  height: 40px;
  border-radius: 5px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.table .more_icon {
  width: 33px;
  height: 33px;
  -o-object-fit: contain;
     object-fit: contain;
}

.table h5 {
  color: #555;
}

.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 #555;
          box-shadow: 0px 0px 10px #555;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  cursor: pointer !important;
  border: 1px solid #ddd;
  position: absolute;
  right: 2px;
  bottom: 0px;
  cursor: pointer;
}

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

/**********************************************
    Start Edit product details Page 
**********************************************/
.product-details .prod-data .heading {
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.product-details .prod-data .heading .butns .butn {
  padding: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-details .prod-data .heading .butns .butn i {
  margin: 0;
}

.product-details .prod-data .card-body .rate .stars i {
  color: #ccc;
  font-size: 20px;
}

.product-details .prod-data .card-body .rate .stars i.active {
  color: #FCD635;
}

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

.product-details .lg-slide-swiper .img-box {
  position: relative;
  overflow: hidden;
  height: 300px;
  border-radius: 10px;
}

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

.product-details .lg-slide-swiper .swiper-slide-active .lg-img {
  -webkit-animation: fadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: fadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.product-details .sm-slide-swiper {
  overflow: hidden;
  height: 150px;
}

.product-details .sm-slide-swiper .swiper-slide {
  opacity: .8;
  cursor: pointer;
}

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

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

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

.reviews-sec {
  background-color: #F7F3F0;
}

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

.reviews-sec .review_card .heading .img-box {
  width: 75px;
  height: 75px;
  -webkit-mask-image: url("../images/shape-4.png");
          mask-image: url("../images/shape-4.png");
  -webkit-mask-size: 75px;
          mask-size: 75px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.25);
}

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

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

/**********************************************
    Start Edit order details Page 
**********************************************/
.order-det {
  padding: 70px 0 0 0;
}

.order-det .order-heading .order-group .data {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.order-det .order-heading .order-group .data .icon {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.order-det .order-heading .order-group .data b {
  color: #111;
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}

.order-det .order-heading .order-group .data .map-butn {
  background-color: transparent;
}

.order-det .order-heading .order-group .data .avatar {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px;
}

.order-det .order-foot {
  background-color: #F5F6F8;
  padding: 70px 0;
}

.order-det .order-foot .inner {
  background-color: #fff;
  padding: 5vw 7vw;
  -webkit-box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05);
}

.order-det .order-foot .inner .label {
  color: #A1A1A1;
}

.order-det .order-foot .inner .price small {
  font-size: 65%;
}

.order-det .order-foot .inner .bt {
  border-top: 1px solid #ddd;
}

.order-det .order-foot .inner .butn {
  padding: 1rem 2.5rem;
}

.order-det .order-foot .inner .butn:hover .icon {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.order-det .order-foot .mb-4 {
  margin-bottom: 2rem !important;
}

/**********************************************
    Start Edit contact Page 
**********************************************/
.contact-pg {
  background-color: #f9f9f9;
}

.contact-pg .contact-wrapper {
  padding: 4vw 2vw;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  -webkit-box-shadow: 3px 6px 15px #eee;
          box-shadow: 3px 6px 15px #eee;
}

.contact-pg .wrapper-sm {
  padding: 2vw !important;
}

.wrapper-sm {
  padding: 2vw 3vw;
  margin-bottom: 15px;
}

.wrapper-sm .num-item {
  margin-bottom: 20px;
}

.wrapper-sm .num-item .icon {
  border-radius: 5px;
  width: 55px;
  height: 55px;
  background-color: var(--primary);
  color: #fff;
  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;
}

.wrapper-sm .num-item .num {
  font-weight: bold;
  color: #000;
  padding: 0 10px;
  margin-bottom: 0;
  line-height: 55px;
}

form .form-floating > label {
  color: #666;
}

form .form-floating > textarea {
  height: auto !important;
}

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

form .show_pass {
  position: absolute;
  bottom: 15px;
  left: 15px;
  cursor: pointer;
  color: #888;
  font-size: 15px;
}

/**********************************************
    Start Edit content Page 
**********************************************/
.content-pg {
  background-color: #f9f9f9;
}

.content-pg .inner {
  border-radius: 20px;
  background-color: #fff;
  padding: 50px 45px;
  -webkit-box-shadow: 3px 6px 15px #eee;
          box-shadow: 3px 6px 15px #eee;
}

.content-pg .inner .det {
  font-size: 16px;
  color: #888;
  line-height: 2.2;
}

/**********************************************
    Start Edit login Page 
**********************************************/
.register-pg {
  background-color: #f9f9f9;
}

.register-pg .regist_inner {
  background-color: #fff;
  -webkit-box-shadow: 3px 6px 15px #eee;
          box-shadow: 3px 6px 15px #eee;
  border-radius: 25px;
  overflow: hidden;
  padding: 0;
}

.register-pg .regist_inner .form-box {
  padding: 50px 0;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  -webkit-padding-end: 5vw;
          padding-inline-end: 5vw;
}

.register-pg .regist_inner .form-box .form-group {
  position: relative;
}

.register-pg .regist_inner .form-box .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 .regist_inner .form-box .forget_pass {
  font-size: 13px;
}

.register-pg .regist_inner .form-box .butn {
  min-width: 200px;
}

.register-pg .regist_inner .text-box {
  width: 100%;
  height: 100%;
  background-color: #1D1D1B;
  padding: 50px 35px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.register-pg .regist_inner .text-box .logo {
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 20px auto;
}

.register-pg .bee_wrapper::after {
  display: none;
}

.register-pg .bee_wrapper::before {
  -webkit-transform: rotateY(0deg) scale(0.3);
          transform: rotateY(0deg) scale(0.3);
  animation: wave3 10s linear infinite alternate-reverse;
}

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

.cart-pg .cart-box {
  padding: 35px;
  border-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: 3px 6px 15px #eee;
          box-shadow: 3px 6px 15px #eee;
}

.cart-pg .cart-box .delete_butn {
  width: 35px;
  height: 35px;
  padding: 0;
}

.cart-pg .summary-box {
  border-radius: 10px;
  position: relative;
  padding: 25px 15px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(#333));
  background-image: linear-gradient(to bottom, #000, #333);
}

.cart-pg .summary-box .box-title {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(238, 238, 238, 0.1);
}

.cart-pg .summary-box .card-body {
  border-bottom: 1px solid rgba(238, 238, 238, 0.1);
}

.cart-pg .summary-box .card-body .data-group .data {
  font-size: 17px;
  color: #eee;
  margin-bottom: 0;
}

.cart-pg .summary-box .card-body form .form-group {
  position: relative;
}

.cart-pg .summary-box .card-body form .form-group .form-control {
  background-color: #202020;
  border-bottom: 1px solid #202020;
  border-radius: 0;
  color: #fff;
}

.cart-pg .summary-box .card-body form .form-group .form-control::-webkit-input-placeholder {
  color: transparent;
}

.cart-pg .summary-box .card-body form .form-group .form-control:-ms-input-placeholder {
  color: transparent;
}

.cart-pg .summary-box .card-body form .form-group .form-control::-ms-input-placeholder {
  color: transparent;
}

.cart-pg .summary-box .card-body form .form-group .form-control::placeholder {
  color: transparent;
}

.cart-pg .summary-box .card-body form .form-group .butn {
  position: absolute;
  left: 5px;
  bottom: 5px;
  background-color: #191919;
  color: var(--primary);
  padding: 0.7rem 1.5rem;
}

.checkout-pg {
  overflow: unset;
}

.checkout-pg .steps-box .step_num {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 3px solid #F3F3F3;
  font-size: 1.3rem;
  border-radius: 50%;
  position: relative;
  z-index: 5;
}

.checkout-pg .steps-box .step_num.active {
  border: 3px solid var(--secondary) !important;
  color: var(--secondary) !important;
}

.checkout-pg .steps-box{
    position: relative;
}

.checkout-pg .steps-box::after {
    content: '';
    top: 24px;
    width: calc(100% - 80px);
    height: 3px;
    background-color: #F3F3F3;
    position: absolute;
    left: 40px;
    z-index: 0;
}

.checkout-pg .steps-box .step_num.success {
  border: 3px solid var(--secondary) !important;
  background-color: var(--secondary) !important;
  color: #fff !important;
}

.checkout-pg .steps-box .step_num.success::after {
  background-color: var(--secondary) !important;
}

.checkout-pg .summary-box {
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
}

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

.checkout-pg .checkout-form .payment_method .form-check .form-check-label {
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 100%;
  padding: 20px;
  cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**********************************************
    Start Edit products Page 
**********************************************/
.filter-heading .box {
  padding: 25px 35px;
  border-radius: 15px;
  background-color: #fff;
  -webkit-box-shadow: 3px 6px 15px #eee;
          box-shadow: 3px 6px 15px #eee;
}

.filter-heading .box .title {
  font-weight: bold;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
  color: #666;
}

.filter-heading .box .form-group {
  position: relative;
}

.filter-heading .box .form-group .form-control {
  border: 1px solid #ddd;
  border-radius: 10px;
}

.filter-heading .box .form-group .form-control:focus {
  border: 1px solid var(--secondary);
}

.filter-heading .box .form-group .butn_submit {
  background-color: transparent;
  position: absolute;
  left: 15px;
  top: 16px;
  color: #888;
}

.filter-heading .categ_box .categ-item {
  padding: .7rem .2rem;
  background-color: #fff;
  border-radius: 5px;
  position: relative;
  text-align: center;
  width: 100%;
  cursor: pointer;
  border: 1px solid #ddd;
}

.filter-heading .categ_box .categ-item.active {
  border: 1px solid var(--secondary) !important;
  background-color: var(--secondary) !important;
  color: #fff !important;
}

.filter-heading .categ_box .sub_categ .categ-item.active {
  border: 1px solid var(--primary) !important;
  background-color: var(--primary) !important;
  color: #444 !important;
}

.products-pg .prod_card {
  border: 1px solid #eee;
}

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

.blog-det .blog_card {
  border-radius: 15px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 3px 6px 15px #eee;
          box-shadow: 3px 6px 15px #eee;
}

.blog-det .blog_card .img-box {
  height: 400px;
}

.blog-det .blog_card .card-body {
  padding: 2vw 4vw;
}

.blog-det .blog_card .card-body .det {
  line-height: 2;
  font-size: 16px;
  text-overflow: unset;
  white-space: unset;
  overflow: unset;
}

.blog-det .blog_card:hover {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  border: 1px solid #fff;
}

.blog-det .related-blog .blog_card {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.blog-det .related-blog .blog_card .img-box {
  height: 150px;
}

.blog-det .related-blog .blog_card .card-body {
  padding: 2rem;
}

.blog-det .related-blog .blog_card .card-body .title {
  font-size: 1.1rem;
}

.blog-det .related-blog .blog_card .card-body .det {
  font-size: 12px;
}

.blog-det .contact-wrapper {
    padding: 2vw 15px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 3px 6px 15px #eee;
          box-shadow: 3px 6px 15px #eee;
}

/**********************************************
    Start Edit Dark Theme 
**********************************************/
.theme-dark .navs-container .navbar {
  background-color: #000;
}

.theme-dark form .form-control {
  background-color: #101010;
  border-radius: 0;
  color: #fff;
}

.theme-dark form .form-control::-webkit-input-placeholder {
  opacity: 0;
}

.theme-dark form .form-control:-ms-input-placeholder {
  opacity: 0;
}

.theme-dark form .form-control::-ms-input-placeholder {
  opacity: 0;
}

.theme-dark form .form-control::placeholder {
  opacity: 0;
}

.theme-dark form .form-floating > label {
  color: #ccc;
}

.theme-dark form .form-check-label {
  color: #fff;
}

.theme-dark .filter-heading .box .form-group .form-control::-webkit-input-placeholder {
  opacity: 1;
}

.theme-dark .filter-heading .box .form-group .form-control:-ms-input-placeholder {
  opacity: 1;
}

.theme-dark .filter-heading .box .form-group .form-control::-ms-input-placeholder {
  opacity: 1;
}

.theme-dark .filter-heading .box .form-group .form-control::placeholder {
  opacity: 1;
}

.theme-dark .navs-container .navbar .nav-link,
.theme-dark .header .text-box .p,
.theme-dark .about-sec .text-box .p,
.theme-dark .sec-heading .p,
.theme-dark .p,
.theme-dark p,
.theme-dark .det,
.theme-dark .blog-sec .blog_card .card-body .det,
.theme-dark .blog-sec .blog_card .card-body .data,
.theme-dark .table td,
.theme-dark .quantity-container .qt,
.theme-dark .quantity-container .qt-plus,
.theme-dark .quantity-container .qt-minus,
.theme-dark .cart-pg .cart-box .delete_butn,
.theme-dark .checkout-pg .steps-box .step_num,
.theme-dark .checkout-pg .checkout-form .payment_method .form-check .form-check-label,
.theme-dark .order-det .order-heading .order-group .data,
.theme-dark .register-pg .regist_inner .form-box .forget_pass,
.theme-dark .order-det .order-foot .inner .price small,
.theme-dark .filter-heading .categ_box .categ-item,
.theme-dark .profile-pg .prof-side .wrapper.links-data .nav-link {
  color: #ccc;
}

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

.theme-dark .navs-container .icon-outer .icon,
.theme-dark .products-sec .prod_card .card-body .cart-butn .icon,
.theme-dark .btn-close {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.theme-dark .section,
.theme-dark .newsletter-sec .bee-wrapper .shadow,
.theme-dark .table th,
.theme-dark .quantity-container .qt-plus,
.theme-dark .quantity-container .qt-minus,
.theme-dark .cart-pg .cart-box .delete_butn,
.theme-dark .checkout-pg .steps-box .first::after,
.theme-dark .register-pg .regist_inner .form-box .code_input .code-container input,
.theme-dark .order-det .order-foot,
.theme-dark .filter-heading .categ_box .categ-item,
.theme-dark .profile-pg .tab.prof-tab .data-group .data,
.theme-dark .profile-pg .tab.loc-tab .loc_card {
  background-color: #202020 !important;
}

.theme-dark .header,
.theme-dark .about-sec .text-box .data-group .icon-outer,
.theme-dark .products-sec .prod_card:hover,
.theme-dark .categories-sec .categ_card,
.theme-dark .newsletter-sec .form-group .form-control,
.theme-dark .pg-heading,
.theme-dark .about-cards .about_card:hover,
.theme-dark .blog-det .blog_card,
.theme-dark .blog-det .contact-wrapper,
.theme-dark .cart-pg .cart-box,
.theme-dark .register-pg .regist_inner,
.theme-dark .contact-pg .contact-wrapper,
.theme-dark .order-det .order-foot .inner,
.theme-dark .content-pg .inner,
.theme-dark .reviews-sec .review_card,
.theme-dark .filter-heading .box,
.theme-dark .profile-pg .prof-side .wrapper,
.theme-dark .profile-pg .tab,
.theme-dark .modal .modal-content {
  background-color: #101010 !important;
}

.theme-dark .header .text-box .title,
.theme-dark .about-sec .text-box .title,
.theme-dark .sec-heading .title,
.theme-dark .products-sec .prod_card .card-body,
.theme-dark .products-sec .prod_card .card-body .cart-butn,
.theme-dark .categories-sec .categ_card .text-box .categ,
.theme-dark .more-butn,
.theme-dark .blog-sec .blog_card .card-body,
.theme-dark .features-sec .feature_card .title,
.theme-dark .title,
.theme-dark .wrapper-sm .num-item .num,
.theme-dark .color-dark,
.theme-dark .table th,
.theme-dark .butn,
.theme-dark .form_title,
.theme-dark .register-pg .regist_inner .form-box .code_input .code-container input,
.theme-dark .order-det .order-heading .order-group .data b,
.theme-dark .name,
.theme-dark .product-details .card-body,
.theme-dark .profile-pg .tab .tab_title,
.theme-dark .profile-pg .tab.prof-tab .data-group .data,
.theme-dark .profile-pg .tab.loc-tab .loc_card .card-body .country,
.theme-dark .modal-title,
.theme-dark .btn-close {
  color: #fff !important;
}

.theme-dark .about-sec .text-box .data-group .icon-outer,
.theme-dark .blog-sec .blog_card,
.theme-dark .newsletter-sec .form-group .form-control,
.theme-dark .table,
.theme-dark .products-pg .prod_card,
.theme-dark .pagination-wrapper .pagination .page-link,
.theme-dark .profile-pg .tab {
  border: 1px solid #000;
}

.theme-dark .checkout-pg .steps-box .step_num {
  border: 3px solid #202020;
}

.theme-dark .products-sec .prod_card{
    background-color: #000;
}

.theme-dark .products-sec .prod_card:hover,
.theme-dark .blog-sec .blog_card:hover,
.theme-dark .blog-det .blog_card,
.theme-dark .cart-pg .cart-box,
.theme-dark .blog-det .contact-wrapper,
.theme-dark .register-pg .regist_inner,
.theme-dark .contact-pg .contact-wrapper,
.theme-dark .content-pg .inner,
.theme-dark .filter-heading .box {
  -webkit-box-shadow: 3px 6px 15px 0 #000;
          box-shadow: 3px 6px 15px 0 #000;
}

.themeToggler {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: auto;
  /* The switch - the box around the slider */
  /* Hide default HTML checkbox */
  /* The slider */
  /* Rounded sliders */
}

.themeToggler .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

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

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

.themeToggler .slider:before {
  position: absolute;
  content: "";
  height: 40px;
  width: 40px;
  left: 0px;
  bottom: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-shadow: 0 0px 15px #2020203d;
          box-shadow: 0 0px 15px #2020203d;
  background: white url("https://i.ibb.co/FxzBYR9/night.png");
  background-repeat: no-repeat;
  background-position: center;
}

.themeToggler input:checked + .slider {
  background-color: rgba(239, 219, 138, 0.5);
}

.themeToggler input:focus + .slider {
  -webkit-box-shadow: 0 0 1px var(--primary);
          box-shadow: 0 0 1px var(--primary);
}

.themeToggler input:checked + .slider:before {
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
  background: white url("https://i.ibb.co/7JfqXxB/sunny.png");
  background-repeat: no-repeat;
  background-position: center;
}

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

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


.about-sec.about_pg .imgs-box .box{
    width: 225px;
    height: 245px;
    -webkit-mask-size: 225px;
    mask-size: 225px;
}

.product-details .quantity-container{
    /*background: #ccc3;*/
    /*padding: 10px 15px;*/
    /*border-radius: 10px;*/
    /*align-items: center;*/
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*margin-top: 30px !important;*/
}

.product-details .quantity-container .qty_title {
    margin-bottom: 0 !important;
}

/*.product-details .quantity-container .qt-plus,.product-details .quantity-container .qt-minus{*/
/*    background-color: #fff;*/
/*}*/

.swal2-popup .swal2-styled.swal2-confirm{
    background-color: var(--green) !important;
    border-radius: 30px;
}

.theme-dark .swal2-popup .swal2-styled.swal2-confirm {
  background-color: var(--lightGreen) !important;
}

.swal2-popup .swal2-styled{
    border-radius: 30px;
}

.swal2-popup .swal2-styled:focus{
    box-shadow: none;
}

.swal2-popup{
    border-radius: 30px !important;
}

.choose_adress .form-check-label{
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    background: #ccc2;
    display: block;
}

.choose_adress .form-check-input{
    opacity: 0;
}

.choose_adress .form-check-input:checked ~ .form-check-label{
    background: var(--primary);
}

/*--------------*/
.filter-heading .categ_box .categ-item{
    padding: 0.5rem 0.2rem;
    border-radius: 30px;
    font-size: 13px;
    font-weight: bold;
}

.filter-heading .box .sub_title{
    background: #f9f9f9;
    border-radius: 30px;
    padding: 15px !important;
    font-size: 14px !important;
    text-align: center;
    font-weight: bold !important;
    margin-bottom: 20px;
}


.products-sec .prod_card .img-box .prod-img {
    object-fit: cover;
}

.products-sec .prod_card .img-box .fav-butn {
  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;
  border-radius: 50%;
  background-color: var(--secondary);
  position: absolute;
  top: 0;
  right: 10px;
}

        
.size-group .size-flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

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

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

.size-group .form-check .form-check-label {
  border-radius: 5px;
  background-color: #f6f6f6;
  cursor: pointer;
  padding: .5rem 1rem;
  text-align: center;
  font-size: 13px;
}

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

.product-details .lg-slide-swiper .img-box{
    height: 400px;
}

.product-details .lg-slide-swiper .swiper-slide-active .lg-img{
    object-fit: cover;
}

/* --- */

.card_shadow{
    box-shadow: 0 0 30px #0001;
}

.piece{
    padding: 10px 25px;
    border-radius: 30px;
    background-color: #fffae6;
    font-weight: bold;
}

.piece img{
    width: 30px;
    margin-left: 5px;
}

/*-------*/
.video_embed{
    height: 350px;
    /*margin-top: 15%;*/
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    padding: 15px;
    background: transparent;
}

.video_embed::before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg , #FFF696 , #B37700);
}

.video_embed iframe{
    border-radius: 20px;
    position: relative;
    z-index: 10;
}

/*--------- mob-bottom-navigation --------*/

    .mob-bottom-navigation {
        position: fixed;
        z-index: 9999;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: linear-gradient(-45deg , #FFF696 , #B37700);
        padding: 20px 0;
        margin: 0;
    }
    
    .mob-bottom-navigation li {
        width: 100%;
        text-align: center;
    }
    
    .mob-bottom-navigation li a {
        color: #000;
        width: 100%;
        padding: 0;
        font-weight: bold;
        font-size: 12px;
        text-align: center;
    }
    
    .mob-bottom-navigation li a i {
        display: block;
        margin-bottom: 5px;
    }
    
    .mob-bottom-navigation li.active a,
    .mob-bottom-navigation li a:hover {
        color: #000 !important;
    }
  
  
  /*------------ new edit style ------------*/
  
  .checkout-pg .steps-box .step_num{
      background: #fff;
  }
  
  .filter-heading .categ_box .categ-item{
      font-size: 10px;
  }
  
  .swal2-popup .swal2-title{
      font-size: 21px !important;
  }
  
  .swal2-icon{
    width: 65px !important;
    height: 65px !important;
    line-height: 65px !important;
  }
  
  .swal2-icon.swal2-warning, .swal2-icon.swal2-info, .swal2-icon.swal2-question{
      font-size: 3em !important;
  }
  
  .swal2-icon.swal2-success [class^='swal2-success-line'][class$='long']{
    width: 40px !important;
    right: -3px !important;
    top: 38px !important;
  }
  
  .swal2-icon.swal2-error [class^='swal2-x-mark-line']{
      width: 32px !important;
      top: 30px !important;
  }
  
  .form-floating.textarea_floating{
      padding-top: 30px;
  }
  
  .form-floating.textarea_floating > label{
    background: #fff;
    opacity: 1 !important;
    width: 100%;
    transform: scale(1) !important;
    /*font-size: 13px;*/
    height: 50px;
  }
  
  
  /*--------- searching ---------*/
  .searching {
  position: fixed;
  background: #000000f1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  display: none;
}

.searching form {
  margin-top: 40vh;
  width: 100%;
}

.searching form .form-group {
  position: relative;
  width: 50%;
  min-width: 300px;
  margin: auto;
  border-radius: 50px;
  overflow: hidden;
}

.searching form .form-group input {
  width: 100%;
  min-height: 50px;
  padding: 15px;
}

.searching form .form-group button {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 100%;
  background-color: #efdb8a;
  color: #000;
  border: 0;
  font-size: 20px;
}

.searching .close {
  position: absolute;
  top: 30px;
  left: 60px;
  color: #fff;
  opacity: 1;
  cursor: pointer;
}

.searching input [type="text"] {
  background-color: #fff;
  height: 60px;
  padding: 16px 20px;
  font-size: 14px;
  border-radius: 0;
  border: 0;
  width: 100%;
}

.searching .butn {
  background-color: #ECC235;
  border: 0;
  border-radius: 44px;
  padding: 16px 50px;
  font-size: 11px;
  color: #161414;
}

.searching .butn.sub_butn {
  background-color: #E04F3F;
  color: #fff;
}


/*------*/
.filter-heading .box .form-group .form-control[name="qsearch"]{
    padding-inline-end: 40px;
}



