@font-face {
  font-family: "Poppins";
  src: url("../Font/Poppins-Regular.woff") format("woff2"),
    url("../Font/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../Font/Poppins-Regular.woff2") format("woff2"),
    url("../Font/Poppins-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Quicksand";
  src: url("../Font/Quicksand-Regular.woff2") format("woff2"),
    url("../Font/Quicksand-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Quicksand-bold";
  src: url("../Font/Quicksand-Bold.ttf") format("ttf"),
    url("../Font/Quicksand-Bold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #fd9280;
  --secondry-color: #8cc9ba;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: "Quicksand";
}

ul,
ol {
  font-family: "Poppins";
}

p {
  font-family: "Poppins";
  font-size: 16px;
  color: #686868;
}

ul li,
ol li {
  font-family: "Poppins";
}

a {
  text-decoration: none !important;
  font-family: "Poppins";
  color: var(--primary-color);
  transition: 0.3s ease-in;
}
button{
    border: 0;
}
a:hover {
  color: var(--primary-color);
}

html {
  scroll-behavior: smooth;
  font-family: "Poppins";
}

.container {
  max-width: 1200px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.container-full {
  max-width: 100%;
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.navbar-link.dropdown-arrow.dropdown-toggle i {
  color: #525252;
}

.breadcrum nav h3 {
  font-weight: bold;
}

.text-center {
  text-align: center;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
}

.product-content-wrap .product-category {
  margin-bottom: 5px;
}

.product-content-wrap .product-category a {
  color: #6e6d6d;
  font-size: 14px;
}

.product-content-wrap h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}


.product-content-wrap h2 a {
  color: #253d4e;
  font-size: 17px;
}

.hover-dropdown .dropdown-menu {
  display: none;
  padding: 0;
}

.hover-dropdown:hover .dropdown-menu {
  display: block;
}

.form-control:focus {
  box-shadow: unset !important;
  border-color: var(--primary-color);
}

.product-card-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 15px;
  align-items: center;
}

.product-content-wrap .product-price {
  padding-top: 5px;
}

.product-card-bottom .add-cart {
  cursor: pointer;
}

.product-content-wrap .product-price span {
  font-size: 18px;
  font-weight: bold;
  color: #3bb77e;
}

.product-content-wrap .product-price span.old-price {
  font-size: 14px;
  color: #000;
  margin: 0 0 0 7px;
  text-decoration: line-through;
}

.product-card-bottom .add-cart .add {
  position: relative;
  display: inline-block;
  padding: 6px 20px 6px 20px;
  border-radius: 4px;
  background-color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  color: white;
  transition: all linear 0.3s;
}

.product-card-bottom .add-cart .add:hover {
  background-color: var(--secondry-color);
  color: #fff;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

.Our-product-img img {
  height: 200px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  object-fit: scale-down;
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background-color: #fff;
  box-shadow: 0px 1px 0px #00000012;
}

.Our-product-box {
  background: white;
  padding: 16px 20px;
  min-height: 365px;
  height: 100%;
  margin-bottom: 5px;
  margin-right: 12px;
  border-radius: 20px;
  transition: all linear 0.3s;
}

/* .shop-products .product-box img {
  max-width: 145px;
  height: 140px;
  object-fit: contain;
} */

.Our-product-box:hover {
  box-shadow: 1px 2px 3px #00000057;
}

.Our-product-box .Our-product-img img {
  transition: 0.3s ease-in;
}

.Our-product-box:hover .Our-product-img img {
  transform: scale(1.03);
}

section.Our-product {
  background-color: #f5cfc2;
  padding: 60px 0px;
}

.Our-product-img {
  height: 200px;
  text-align: center;
}

.Our-product-heading {
  text-align: center;
  margin-bottom: 50px;
}

.Our-product-heading h2 {
  font-size: 40px;
  font-weight: 700;
}

.product-star .fa-solid.fa-star {
  color: #ffb600;
}

.Our-product-box {
  position: relative;
}

.badge-star {
  position: absolute;
  top: 15px;
  right: 13px;
  z-index: 99;
  width: 30px;
}

.welcome-action-btn {
  position: relative;
  display: inline-block;
  padding: 10px 22px 10px 22px;
  border-radius: 4px;
  background-color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  color: white;
  transition: all linear 0.3s;
}
.outtttt{
        width: 90%;
        max-width: 400px;
    }

.welcome-action-btn:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  color: #fff;
}

.shop-btn-yellow:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.open-btn {
  cursor: pointer;
}

/* form popup css */

.form_popup {
  width: 70%;
  position: fixed;
  left: 50%;
  top: 58%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.25);
  width: 400px;
  padding: 20px 30px 30px 30px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0.15);
  transition: top 0ms ease-in-out 200ms, opacity 200ms ease-in-out 0ms,
    transform 200ms ease-in-out 0ms;
  z-index: -1;
}

.form_popup.active {
  top: 50%;
  opacity: 1;
  z-index: 99999;
  transform: translate(-50%, -50%) scale(1);
  transition: top 0ms ease-in-out 0ms, opacity 200ms ease-in-out 0ms,
    transform 200ms ease-in-out 0ms;
}

.close_btn {
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--primary-color);
  text-align: center;
  line-height: 15px;
  border-radius: 15px;
  cursor: pointer;
}

.form_popup h2 {
  font-size: 35px;
  margin: 0;
}

.popup-input {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  padding: 10px;
  font-size: 13px;
  border: 1px solid #c2c2c2;
  outline: none;
  margin: 20px 0 0 0;
  font-family: "Poppins";
  color: #7a7e83;
}

.popup-area {
  width: 100%;
  height: 70px;
  resize: none;
  border-radius: 10px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #c2c2c2;
  outline: none;
  margin: 20px 0 0 0;
  color: #7a7e83;
}

.popup-submit {
  width: 100%;
  padding: 10px;
  color: #fff;
  background-color: var(--primary-color);
  font-size: 19px;
  transition: all 0.5s;
  margin: 20px 0 0 0;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 10px;
}

.popup-submit:hover {
  background-color: #000;
}

/* form-popup css ends */

/* hhhhhh */
.header-upper-icons {
  position: relative;
}

.basket-badge {
  position: absolute;
  top: -12px;
  left: 27px;
  border-radius: 50%;
  padding: 4px;
  font-size: 13px;
  width: 20px;
}

.header-seprator {
  margin: 10px 0 4px 0;
}

section.top-bar {
  padding: 9px 0px 5px;
  border-bottom: 1px solid gainsboro;
}

.header-search-box form {
  position: relative;
}

.header-search-box form input {
  color: #666;
  font-size: 14px;
  width: 100%;
  border: 1px solid #009688;
  border-radius: 4px;
  padding: 7px 25px 7px 15px;
}

.ion-ios-search-strong:before {
  content: "\f4a4";
}

.header-search-box {
  position: relative;
}


.header-search-box form button {
  top: 50%;
  right: 5px;
  width: 30px;
  font-size: 20px;
  color: #1a1a1a;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  background: none;
}

.acc-icon i {
  background-color: #f3f3f3;
  padding: 13px;
  border-radius: 50%;
}

.logo img {
  width: 130px;
}

.account-panel {
  display: flex;
  align-items: center;
}

.mini-cart-Call {
  display: flex;
}

.mini-cart-Call i {
  font-size: 36px;
  margin-right: 12px;
}

.mini-cart-Call-2 h5 {
  margin: 0;
  font-size: 14px;
}

.mini-cart-Shop {
  display: flex;
  margin-left: 40px;
  align-items: center;
}

.mini-cart-Shop i {
  background-color: var(--secondry-color);
  padding: 9px 7px;
  font-size: 19px;
  border-radius: 50%;
  color: white;
  margin-right: 40px;
}

.mini-cart-Call {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.mini-cart-Call-2 a {
  color: var(--primary-color);
  font-size: 22px;
  text-decoration: none;
}

.header-content {
  padding: 10px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}


.header-widget i {
  width: 40px;
  height: 40px;
  font-size: 15px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  color: #5f5f60;
  background: var(--chalk);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  background-color: #edf3f9;
}

.header-widget i:hover {
  background-color: var(--secondry-color);
  color: #fff;
}

.header-cart span {
  font-size: 12px;
  margin-left: 15px;
  line-height: 20px;
  text-transform: uppercase;
}

.header-widget-group .header-widget {
  margin-left: 20px;
  border: none;
  position: relative;
}

.header-widget-group {
    padding-bottom: 10px;
}

.header-widget-group .header-widget > div{
  position: absolute;
    top: 30px;
    font-size: 13px;
    width: max-content;
    left: 13px;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.logo img {
  width: 100%;
}

nav.navbar-part {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-content ul {
  display: flex;
  align-items:center;
}


.navbar-content ul li {
  padding: 16px 15px;
  text-transform: capitalize;
}

.navbar-content ul li a {
  color: #000;
  font-size: 16px;
  transition: all linear 0.3s;
}

.navbar-content ul li a:hover {
  color: var(--primary-color);
  font-size: 16px;
}

.top-social-link ul {
  display: flex;
  align-items: center;
}

.top-social-link ul li a {
  color: #000;
  background-color: #eee;
  padding: 10px;
  font-size: 14px;
  margin: 5px;
  border-radius: 100%;
  display: flex;
  transition: 0.3s ease;
}

.top-social-link ul li a:hover {
  color: #fff;
  background-color: var(--primary-color);
}

.navbar-content ul li {
  position: relative;
  display: inline-block;
}

.navbar-content ul li ul {
  position: absolute;
  left: 0;
  width: 250px;
  display: none;
}

.navbar-content ul li:hover ul {
  display: block;
  z-index: 9;
  top: 90%;
}

.navbar-content ul li ul li {
  display: block;
  width: 100%;
  padding: 0;
  background-color: var(--tertiary-color);
}

.navbar-content ul li ul li a {
  font-size: 14px;
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  transition: all 0.5s;
}

.navbar-content ul li ul li a:hover {
  color: var(--primary-color);
}

.navbar-content ul li ul li a:hover::before {
  opacity: 1;
}

.navbar-content ul li ul li:last-child a {
  border-bottom: none;
}

.dropdown-item {
  background-color: transparent;
  padding: 0;
  padding: 0 0 0 15px;
  position: relative;
}

.dropdown-item:hover {
  background-color: transparent;
  font-size: 13px;
}

.dropdown-item::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 10px;
  height: 2px;
  background-color: #fff;
  transition: all 0.5s;
}

.dropdown-item:hover::before {
  background-color: var(--primary-color);
}

button.slick-arrow {
  border-radius: 50%;
  border: 2px solid var(--secondry-color);
  transition: 0.3s ease;
}

.concern-slider .slick-arrow,
.related-slider .slick-arrow {
  height: 36px;
  width: 35px;
  padding: 5px 10px;
  top: 50%;
  position: absolute;
}

.concern-slider2 .slick-arrow,
.related-slider .slick-arrow {
  height: 36px;
  width: 35px;
  padding: 5px 10px;
  top: 50%;
  position: absolute;
  z-index: 999;
}

.animated.slideInLeft {
  animation-duration: 1.5s;
}

.slick-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.slick-dots li > button {
  padding: 2px 5px;
  border-radius: 4px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
  transition: all linear 0.3s;
  width: 30px;
  height: 30px;
  text-align: center;
}

.slick-dots .slick-active button {
  border: 1px solid var(--primary-color);
  color: #ffffff;
  background-color: var(--primary-color);
}

.slick-dots li > button:hover {
  border: 1px solid var(--primary-color);
  color: #ffffff;
  background-color: var(--primary-color);
}

.testimonial-wrapper {
  box-shadow: 0px 2px #4f50502b;
  padding: 30px 20px;
  border-radius: 5px;
}
a#search-button {
    margin-left: 18px;
}
 #search-button i{
         width: 40px;
    height: 40px;
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    color: #5f5f60;
    background: var(--chalk);
    transition: all linear 0.3s;
    background-color: #edf3f9;
 }
.simple-btn.active-btn {
  background-color: var(--primary-color);
}
.simple-btn.active-btn:hover{
    color: #fff;
}
button#search-button {
    display: none;
}

.concern-slider,
.concern-slider2 {
  display: none;
}

.active-btn {
  background-color: #007bff;
  color: #fff;
}

.concern-slider .slick-arrow,
.related-slider-1 .slick-arrow,
.related-slider-2 .slick-arrow,
.related-slider-3 .slick-arrow,
.related-slider-4 .slick-arrow,
.related-slider-5 .slick-arrow {
  height: 36px;
  width: 35px;
  padding: 5px 10px;
  top: 50%;
  position: absolute;
}

.concern-slider .slick-arrow,
.related-slider-1 .slick-arrow i,
.related-slider-2 .slick-arrow i,
.related-slider-3 .slick-arrow i,
.related-slider-4 .slick-arrow i,
.related-slider-5 .slick-arrow i {
  color: var(--secondry-color);
}

.list-group-item.active p {
  background-color: var(--primary-color) !important;
}

.concern-slider .slick-arrow i {
  color: var(--secondry-color);
}

.product-slider .slick-arrow {
  padding: 5px;
  width: 38px;
  position: absolute;
  top: 50%;
  z-index: 99;
  box-shadow: 1px 2px 2px #00000026;
  transition: 0.3s ease;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0;
  border: unset;
}

.slick-arrow:hover {
  color: #fff;
  background-color: var(--primary-color);
  border: 2px solid #fff;
}

.product-slider .slick-arrow i {
  color: var(--secondry-color);
  transition: 0.3s ease;
}

.slick-arrow:hover i {
  color: #fff;
}

button.slick-next.slick-arrow {
  right: -43px;
}

button.slick-prev.slick-arrow {
  left: -43px;
}

.top-links {
  display: flex;
}

.link-icon a {
  color: var(--primary-color);
  font-size: 16px;
  padding-right: 10px;
}

.link-text a {
  color: #000;
  font-size: 16px;
}

.top-btn a,
.top-btn button {
  font-size: 18px;
  color: #fff;
  background-color: var(--secondry-color);
  padding: 6px 14px;
  border-radius: 4px;
  transition: all 0.3s ease-in;
}

.top-btn a:hover,
.top-btn button:hover {
  background-color: #fd9087;
}

section.banner {
  width: 100%;
  position: relative;
}

.banner-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.banner-cont {
  position: absolute;
  top: 30%;
  width: 45%;
}

.banner-cont h3 {
  font-size: 30px;
  text-transform: capitalize;
  color: #c49143;
  font-weight: bold;
}

.banner-cont h2 {
  font-size: 50px;
  color: #463727;
  font-weight: bold;
  text-transform: capitalize;
  margin: 10px 0;
}

.banner-cont p {
  font-size: 19px;
  color: #5d5d5f;
  margin: 18px 0 33px 0;
}

.bn-btn a {
  font-size: 18px;
  color: #fff;
  background-color: #cfac77;
  padding: 9px 18px;
  border-radius: 5px;
  text-transform: uppercase;
  transition: all linear 0.3s;
}

.bn-btn a:hover {
  color: #fff;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev,
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  display: none;
}

.banner-slider .prev-btn {
  position: absolute;
  z-index: 9;
  top: 40%;
  left: 5px;
  background-color: #fff;
  color: #000;
  padding: 8px 12px;
  border-radius: 100%;
  border: 3px solid var(--secondry-color);
  transition: all linear 0.3s;
}

.banner-slider .next-btn {
  position: absolute;
  z-index: 9;
  top: 40%;
  right: 5px;
  background-color: #fff;
  color: #000;
  padding: 8px 12px;
  border-radius: 100%;
  border: 2px solid var(--secondry-color);
  transition: all linear 0.3s;
}

.banner-slider .next-btn:hover,
.banner-slider .prev-btn:hover {
  background-color: var(--secondry-color);
  color: #fff;
}

/* in the spotlight start */
.Our-card,
.welcome-sharp,
.special-features,
.about-content,
.features,
.counter-area,
.vision-mission,
.contact-area,
.d-padding {
  padding: 60px 0;
}

.light-yellow-bg {
  background-color: #f0e8d5;
  border-radius: 10px;
}

.light-pink-bg {
  background-color: #facddb;
  border-radius: 10px;
}

.light-vilote-bg {
  background-color: #e7eaf3;
  border-radius: 10px;
}

.Our-card-img img {
  width: 120px;
  margin: -22px 0 13px 26px;
}

.Our-card-img img:last-child {
  margin: -22px 14px 10px 0;
}

.Our-card-img {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100%;
  padding: 18px;
}

.product-info {
  text-align: right;
  margin-right: 16px;
}

.product-info h3 {
  font-weight: bold;
}

.product-info p {
  font-size: 15px;
  color: #6e6d6d;
}

.shop-btn-yellow {
  background-color: #d2c39f;
  color: #fff;
  border-radius: 5px;
  border: 1px solid transparent;
  padding: 4px 10px;
  text-transform: uppercase;
  transition: all 0.3s ease-in;
}

.shop-btn-yellow:hover,
.shop-btn-pink:hover {
  border: 1px solid;
  color: #fff;
}

.copyright-text a {
  color: var(--primary-color);
}

.shop-btn-pink {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 5px;
  padding: 4px 10px;
  text-transform: uppercase;
  transition: all 0.3s ease-in;
}

.shop-btn-pink:hover {
  transform: translateY(-5px);
  color: #fff;
}

.menstural-cup {
  width: 100% !important;
  margin: -20px 0 0 0 !important;
  height: 220px;
  object-fit: fill;
}

.special-featuers-wrapper {
  margin-top: 22px;
}

.welcome-sharp {
  position: relative;
}

.welcome-img {
  position: absolute;
  left: 75px;
  top: 0;
  width: 457px;
}

.welcome-to-sharp {
  font-weight: bold;
  font-size: 40px;
}

.related-features-items .card img {
  width: 200px;
  height: 170px;
  object-fit: contain;
  padding: 10px 0;
}

/* in the spotlight end */

.choose-box {
  width: 100%;
  margin: 0 0 60px 0;
}

.choose-box h2 {
  text-align: center;
  margin: 0;
}

.choose {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 40px 0 0 0;
}

.choose-icon {
  width: 50px;
}

.choose-icon img {
  width: 100%;
}

.choose-text {
  width: 80%;
}

.choose h3 {
  font-size: 22px;
}

/* brands start */
.brands {
  background-color: #fef1dd;
  padding: 60px 0;
}

.brands-img {
    border-radius: 10px;
    padding: 33px;
    border: 1px solid #f78223;
}

/* brands end*/

.brands-area h2 {
  margin: 0;
}

.brand-icon {
  width: 100%;
  padding: 20px;
  background-color: #f0f0f0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  margin: 40px 0 0 0;
  transition: 0.3s ease-in;
  cursor: pointer;
}
.brand-icon:hover{
    transform: scale(1.03);
}

.brand-icon a {
  width: 100%;
}

.brand-icon img {
  width: 100%;
  border-radius: 10px;
}

/* special featuers start */
.simple-btn {
  padding: 7px 20px;
  background-color: var(--secondry-color);
  color: #fff;
  margin-right: 10px;
  transition: all 0.3s ease-in;
  border-radius: 5px;
}

/*.simple-btn:hover {*/
/*  color: #fff;*/
/*  background-color: var(--primary-color);*/
/*}*/

.special-features-item {
  display: flex;
  justify-content: center;
}

.special-features {
  background-color: #f2f2f2;
}

.special-features-item .card {
  border-radius: 20px;
  margin: 20px 10px;
  cursor: pointer;
  text-align: center;
}

.special-features-item .card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center;
}

.special-features-item .card p {
  background-color: var(--secondry-color);
  margin-bottom: 0;
  color: #fff;
  font-size: 18px;
  padding: 8px 21px;
  border-radius: 0 0 20px 20px;
  transition: all linear 0.3s;
  min-height: 70px;
}

.special-features-item .card:hover p {
  background-color: var(--primary-color);
}

.related-features-items {
  display: flex;
  justify-content: center;
}

.related-features-items .card {
  margin-right: 20px;
  padding: 0 15px 15px 15px;
  border: 0;
  border-radius: 20px;
  margin: 20px 10px;
  box-shadow: 1px 2px 3px #0000001f;
}

.related-features-items .card:hover .simple-btn {
  background-color: var(--secondry-color);
}

.related-features-items h4 {
  font-size: 16px;
  font-weight: bold;
}

.related-features-items ul li {
  font-size: 12px;
  color: #676666;
}

.special-features .card .simple-btn {
  font-size: 9px;
  padding: 6px 10px;
  border-radius: 8px;
  background-color: var(--primary-color);
  transition: all linear 0.3s;
}

.special-features .card .simple-btn:hover {
  background-color: var(--secondry-color);
}

.special-features .related-features-items .card p {
  font-size: 15px;
  margin-top: 7px;
  font-weight: 900;
  color: #000;
}

/* special featuers end*/

/* testimonial start */
.testimonial {
  padding: 60px 0;
}



.testimonial h3 {
  font-size: 42px;
  margin-bottom: 30px;
}

.testimonial .text-center h5 {
  font-size: 21px;
}

.fw-bold {
  font-weight: bold;
}

.testimonial .testimonial-content {
  display: flex;
  align-items: self-start;
}

.testimonial-description h4 {
  position: relative;
  font-weight: bold;
  margin-bottom: 15px;
}

.testimonial-description h4::after {
  content: "";
  background-color: var(--primary-color);
  width: 100px;
  display: inline-block;
  position: absolute;
  top: 33px;
  left: 1px;
  height: 5px;
}

.testimonial-description p {
  font-size: 15px;
  text-align: justify;
  margin-right: 30px;
}

.testimonial .testimonial-content > img {
  margin-right: 16px;
  border-radius: 8px;
}

/* testimonial end*/
.free-quote {
  background-color: var(--primary-color);
  padding: 10px 0;
}

.quote-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quote-wrapper h4 {
  color: #fff;
  font-weight: bold;
  text-shadow: 1px 1px #00000061;
  font-size: 36px;
}

.quote-wrapper a {
  background-color: #193ba2;
  color: #fff;
}

.vilote-text {
  color: #193ba2;
}

.quote-img {
  max-width: 300px;
}

/* footer start */
footer {
  padding: 60px 0 0 0;
  background-color: whitesmoke;
}

.footer-links ul li a {
     color: #000;
    transition: all 0.3s ease-in;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  
}

.st-label label a{
    color: #fff;
}

.footer-links ul li a:hover {
  color: #e28ca4;
}

.footer-details > img {
  max-width: 200px;
  margin-bottom: 22px;
}

.footer-details p > i {
  margin-right: 5px;
}

.footer-links h4 {
  color: var(--primary-color);
  position: relative;
  margin-bottom: 18px;
}

.footer-links h4::after {
  content: "";
  background-color: #000000;
  width: 100px;
  display: inline-block;
  position: absolute;
  top: 34px;
  left: 2px;
  height: 1px;
}

.footer-links ul {
  list-style-type: none;
  padding-left: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 40px;
}

.footer-links ul li::before {
  list-style-type: none;
  padding-left: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links ul li::before {
      content: "";
    display: block;
    min-width: 10px;
    height: 10px;
    background: url(../footer-bullets.png) no-repeat center center;
    background-size: cover;
}

.footer-details a {
  color: #000;
  transition: all linear 0.3s;
}

.footer-details a:hover {
  color: var(--primary-color);
}

.footer-details a img {
  max-width: 160px;
  margin-bottom: 20px;
}

.footer-details i {
  color: var(--primary-color);
}

.copyright-text {
  padding: 13px 0 8px 0;
  border-top: 1px solid #dddddd;
  margin-top: 15px;
}

.copyright-text p {
  color: #000;
  font-size: 16px;
  margin-bottom: 5px;
}

/* footer end */

/* media query start */
@media (max-width: 1200px) {
}

@media (max-width: 991px) {
}

@media (max-width: 768px) {
  .mini-cart-Call {
    display: none;
  }
}

@media (max-width: 576px) {
}

/* media query end*/

/* about us */
/* nav.breadcrumb {
  background-color: unset;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
}

.breadcrumb-item > a {
  color: #444;
}

.breadcrumb {
  background-color: unset;
  display: flex;
  justify-content: center;
  align-items: center;
}

.breadcrumb-item.active {
  color: #fd907e;
}

ol .breadcrumb {
  text-transform: uppercase;
  font-weight: bold;
} */

.about_banner {
  width: 100%;
  height: 350px;
  position: relative;
}

.about_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position:center; */
}

.about_banner_cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10% 0 0 8%;
}

.about_banner_cont h2 {
       font-size: 40px;
    color: #f3771a;
    width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
}
.about_banner_cont ul li{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}
.ch-items p{
    margin-bottom: 0;
    min-width: 50px;
}


.about_banner_cont ul {
  display: inline-block;
  padding: 10px 0px;
  background-color: #ffffff21;
}

.about_banner_cont ul li {
  display: inline-block;
  font-family: poppins;
  font-size: 14px;
  color: #000;
  letter-spacing: 1px;
}

.about_banner_cont ul li a {
  color: #000;
  transition: all 0.4s;
}

.about_banner_cont ul li a:hover {
  color: #e6c4a2;
}

.about_banner_cont ul li i {
  margin: 0 10px;
}

.about-btn {
  position: relative;
  display: inline-block;
  padding: 6px 20px 6px 20px;
  border-radius: 4px;
  background-color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  color: white;
  transition: all linear 0.3s;
  margin-top: 12px;
}

.about-btn:hover {
  transform: translateY(-3px);
  color: #fff;
}

.about-img img {
  border-radius: 8px;
}

.about-description .sm-title {
  text-transform: capitalize;
  color: #c49143;
  font-weight: bold;
  font-style: italic;
}

.about-description p {
  font-size: 15px;
  margin-bottom: 0;
}

.about-description h2 {
  font-weight: bold;
  margin-bottom: 20px;
}

.feature-box {
  padding: 18px;
  border-radius: 15px;
  border: 1px solid #ececec;
  background: #fff;
  transition: all linear 0.3s;
  text-align: center;
}

.navbar-content ul li a.dropdown-item {
  border-bottom: 1px solid #b5b5b547;
}

.feature-box:hover {
  box-shadow: 5px 5px 15px rgb(0 0 0 / 11%);
}

.feature-box img {
  width: 100px;
}

.feature-box h4 {
  margin: 10px 0;
  font-weight: bold;
}

.counter-area {
  background: #ffbfb4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-image: linear-gradient(
      140deg,
      rgb(253 142 123) 0%,
      rgb(253 142 123) 50%,
      rgb(253 142 123) 80%
    ),
    repeating-linear-gradient(
      90deg,
      hsla(298, 16%, 68%, 0.9) 0px,
      hsla(298, 16%, 68%, 0.9) 1px,
      transparent 1px,
      transparent 21px,
      hsla(298, 16%, 68%, 0.9) 21px,
      hsla(298, 16%, 68%, 0.9) 22px,
      transparent 22px,
      transparent 72px
    ),
    repeating-linear-gradient(
      0deg,
      hsla(298, 16%, 68%, 0.9) 0px,
      hsla(298, 16%, 68%, 0.9) 1px,
      transparent 1px,
      transparent 21px,
      hsla(298, 16%, 68%, 0.9) 21px,
      hsla(298, 16%, 68%, 0.9) 22px,
      transparent 22px,
      transparent 72px
    ),
    repeating-linear-gradient(
      135deg,
      hsla(298, 16%, 68%, 0.9) 0px,
      hsla(298, 16%, 68%, 0.9) 1px,
      transparent 1px,
      transparent 21px,
      hsla(298, 16%, 68%, 0.9) 21px,
      hsla(298, 16%, 68%, 0.9) 22px,
      transparent 22px,
      transparent 72px
    ),
    linear-gradient(90deg, hsl(0deg 0% 100%/0%), hsl(0deg 0% 100%/0%));
  background-blend-mode: color-burn;
}

.counter > i {
  font-size: 40px;
  margin-bottom: 10px;
}

.counter-area::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: var(--primary-color) 33;
  z-index: 2;
  opacity: 0.8;
}
.checkout-card h3.bg-success{
    color: #fff;
    padding: 6px 10px;
    font-size: 20px;
}

.counter,
.counter p {
  text-align: center;
  color: #fff;
  text-shadow: 1px 2px #00000029;
}

.counter-area .counter h4 {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 10px;
}

.counter-area .counter h5 {
  font-size: 44px;
  font-weight: bold;
}

.vision-mission .about-vision img {
  border-radius: 6px;
}

.vision-mission .about-vision:hover {
  box-shadow: 5px 5px 15px rgb(0 0 0 / 15%);
}

.vision-mission .about-vision h3 {
  margin: 10px;
  font-weight: bold;
  text-align: center;
}

.vision-mission .about-vision {
  border-radius: 8px;
  border: 1px solid #ececec;
  background: #fff;
  transition: all linear 0.3s;
  padding: 20px;
  min-height: 100%;
}

section.vision-mission {
  background-color: var(--primary-color);
}

/* contact us */
.contact-form {
  box-shadow: 5px 5px 15px rgb(0 0 0 / 15%);
  padding: 34px 32px;
  border-radius: 10px;
}

.contact-box {
  position: relative;
  padding: 18px 10px;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin: 10px;
  text-align: center;
  background: var(--primary-color);
  color: #fff;
  border-radius: 4px;
  transition: all 0.3s ease-in;
  min-height: 95%;
}

.contact-box:hover {
  transform: scale(1.04);
}

.contact-box > i {
  font-size: 30px;
  color: #fff;
  margin-bottom: 15px;
}

.contact-box > p {
  font-size: 24px;
  margin-bottom: 15px;
  color: #fff;
}

.contact-box > a {
  color: #fff;
}

.contact-box:nth-of-type(3) {
  margin-top: -7px;
}

.contact-area .form-group {
  position: relative;
}


.contact-area .form-group label::before {
  position: absolute;
  left: 10px;
  top: 52px;
  transform: translateY(-50%);
  font-size: 15px;
  color: #6c7592;
  z-index: 1;
}


.contact-area .form-group input,
.contact-area .form-group textarea::placeholder {
  color: #6c7592;
}

.map iframe {
  margin: 20px 0 0 0;
}

/* Styles for the "Go to Top" button */
#goToTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 17px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 7px 13px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

#goToTopBtn.visible {
  display: block;
  opacity: 1;
  background-color: var(--primary-color);
  box-shadow: 1px 2px 3px #00000057;
  border: 1px solid white;
}

/* shop */
.left-sidebar {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  top: 155px;
}

.shop-content .collapse-heading {
  position: relative;
  font-size: 20px;
  margin-bottom: 0;
}

.collapse-heading i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  font-size: 18px;
  color: #5e5e5e;
}

.collapse-heading[aria-expanded="true"] i {
  transform: translateY(-50%) rotate(-180deg);
}

.left-sidebar .collapsed ul.categorry li {
  padding: 6px 0;
  border-top: 1px solid #eeee;
}

.left-sidebar .collapsed ul {
  margin-top: 15px;
  margin-bottom: 10px;
}

.left-sidebar .collapsed ul li a {
  color: #1d1d1d;
}

.shop-tools {
  display: flex;
  justify-content: space-between;
}

.left-tools {
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.shop-products {
  padding: 20px 0;
}

.product-box {
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: center;
  transition: 0.3s ease-in;
  width: 100%;
  box-shadow: 0 0 5px #7a7e83;
}

.product-box-image {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
}

.product-box-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s;
}

.product-box:hover img {
  transform: scale(1.2);
}

.product-btn {
  width: 100%;
  position: absolute;
  display: block;
  padding: 5px;
  background-color: var(--primary-color);
  color: #fff;
  bottom: -100%;
  left: 0;
  transition: all 0.3s;
}

.product-btn:hover {
  color: #fff;
}

.product-side {
  position: absolute;
  top: 0;
  right: -100%;
  height: 100%;
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}

.product-side ul {
  padding: 0;
  margin: 0;
}

.product-side li {
  display: block;
  margin: 0 0 20px 0;
}

.product-side li:last-child {
  margin: 0;
}

.product-side li a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  font-size: 17px;
}

.product-box-text {
  width: 100%;
  padding: 0 0 20px 0;
  transition: all 0.5s;
}

.product-box h5 a {
  padding: 10px 0 0 0;
  color: var(--primary-color);
  margin-top: 8px;
  display: inline-block;
  font-weight: 100;
}

.product-box:hover h5 a {
  color: #000;
}

.product-box:hover h5 a:hover {
  color: var(--primary-color);
}

.product-box:hover .product-box-text {
  /* box-shadow: 0 2px 5px #7a7e83; */
  border-radius: 0 0 10px 10px;
}

.product-box:hover .product-side {
  right: 0;
}

.product-box:hover .product-btn {
  bottom: 0;
}

.shop-products .product-box h6 {
  font-size: 20px;
  color: #000;
  margin-right: 8px;
}

.shop-products .product-box span {
  text-decoration: line-through;
  font-weight: 200;
  color: #646464;
}

.tesimonial-slider .prev-btn.slick-arrow {
  top: 98%;
  left: 45%;
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--secondry-color);
  transition: 0.3s ease;
  width: 27px;
}

.tesimonial-slider .next-btn.slick-arrow {
  top: 98%;
  left: 50%;
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--secondry-color);
  transition: 0.3s ease;
  width: 27px;
}

.tesimonial-slider .next-btn.slick-arrow i {
  margin-left: 5px;
}

.tesimonial-slider .prev-btn.slick-arrow i {
  margin-left: 6px;
}

.start-rating .fa-solid.fa-star,
.fa-regular.fa-star {
  color: #ffb503;
}

.collection-filter h3 {
  font-size: 20px;
}

.collection-filter {
  border-top: 1px solid #dfdfdf;
  padding-top: 15px;
}

.collection-filter input[type="radio"],
.payment-wrapper input[type="radio"] {
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.collection-filter input[type="radio"]:checked + span,
.payment-wrapper input[type="radio"]:checked + span {
  box-shadow: 0 0 0 0.0625em #fd9d8c;
  background-color: var(--primary-color);
  z-index: 1;
  color: #fff;
}

.collection-filter label span,
.payment-wrapper label span {
  display: block;
  cursor: pointer;
  background-color: #fff;
  padding: 0.375em 0.75em;
  position: relative;
  margin-left: 0.0625em;
  box-shadow: 0 0 0 0.0625em #b5bfd9;
  letter-spacing: 0.05em;
  color: #3e4963;
  text-align: center;
  border-radius: 3px;
  transition: background-color 0.5s ease;
}

.product-image {
  text-align: center;
  box-shadow: 1px 2px 3px #00000014;
  padding: 10px;
  border: 1px solid #eee;
}

.product-image > img {
  max-width: 240px;
  max-height: 240px;
  object-fit: contain;
}

.product-price > h4 {
  font-size: 25px;
  font-weight: bold;
  color: #000;
  margin: 12px 0 4px 0;
}

h4.product-name {
  font-weight: bold;
  font-size: 26px;
}

.product-price > h4 del {
  font-size: 20px;
  color: #707070;
}

.product-price {
  margin-bottom: 15px;
}

.qty-container {
  display: flex;
  align-items: center;
  margin: 12px 0;
}

.qty-container .input-qty {
  text-align: center;
  padding: 6px;
  border: 1px solid #d4d4d4;
  max-width: 50px;
  height: 25px;
}

.qty-container .qty-btn-minus,
.qty-container .qty-btn-plus {
  border: 1px solid #d4d4d4;
  padding: 5px 7px;
  font-size: 10px;
  height: 25px;
  width: 25px;
  transition: 0.3s;
}

.qty-container .qty-btn-plus {
  margin-left: -1px;
}

.qty-container .qty-btn-minus {
  margin-right: -1px;
}

.product-image .thum-img a img {
  max-width: 100px;
  margin: 0 10px;
  height: 100px;
  object-fit: contain;
}

.product-thum-slider {
  position: relative;
  border-top: 1px solid #eee;
  padding-top: 12px;
}

.product-thum-slider .slick-arrow {
  width: 26px;
}

.product-thum-slider .slick-next.slick-arrow {
  top: 50%;
  position: absolute;
  right: 0;
  z-index: 999;
}

.product-thum-slider .slick-prev.slick-arrow {
  top: 50%;
  position: absolute;
  left: 0;
  z-index: 999;
}

.related-products .list-group {
  flex-direction: row;
  text-align: center;
  border-bottom: 1px solid #c9c9c9;
}

.related-products .list-group > a {
  font-size: 18px;
  padding: 6px;
}

.related-products .list-group > a.active {
  background-color: var(--primary-color);
}

.related-products .tab-content {
  padding: 20px 10px;
}

.description-title p {
  font-size: 15px;
}

.additional-info table tr td:first-child {
  background-color: #f9f9f9;
  width: 400px;
}

.product-cat {
  color: var(--primary-color);
}

.related-products.d-padding {
  background-color: #f5cfc2;
}

.rv-img img {
  width: 60px;
  border-radius: 50%;
  height: 60px;
  object-fit: cover;
  border: 2px solid var(--primary-color);
  padding: 2px;
}

.user-comment p {
  font-size: 15px;
}

.left-sidebar .collapsed ul.categorry li a {
  transition: 0.3s ease-in;
}

.left-sidebar .collapsed ul.categorry li:hover a {
  color: var(--primary-color);
}

.product-box img,
.product-box h5,
.product-box h6 {
  transition: 0.2s ease-in;
}

.page-link {
  color: var(--primary-color);
  transition: 0.3s ease;
}

.page-link:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.page-link.active {
  background-color: var(--primary-color);
  color: #fff;
}

ul.categorry li a i {
  font-size: 10px;
  margin-right: 10px;
}

.product-box:hover img {
  transform: scale(1.08);
}

.product-box:hover h5 {
  color: var(--primary-color);
}

.review-example {
  display: flex;
  justify-content: center;
  margin: 16px 0 0 0;
}

.rv-img {
  width: 140px;
}

.user-name {
  display: flex;
  gap: 8px;
  margin: 3px 0;
}

.start-rating i {
  font-size: 12px;
}

.rating {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.3rem;
  --stroke: #666;
  --fill: #ffc73a;
  justify-content: start;
}

.rating input {
  appearance: unset;
}

.rating label {
  cursor: pointer;
}

.rating svg {
  width: 2rem;
  height: 2rem;
  overflow: visible;
  fill: transparent;
  stroke: var(--stroke);
  stroke-linejoin: bevel;
  stroke-dasharray: 12;
  animation: idle 4s linear infinite;
  transition: stroke 0.2s, fill 0.5s;
}

@keyframes idle {
  from {
    stroke-dashoffset: 24;
  }
}

.rating label:hover svg {
  stroke: var(--fill);
}

.rating input:checked ~ label svg {
  transition: 0s;
  animation: idle 4s linear infinite, yippee 0.75s backwards;
  fill: var(--fill);
  stroke: var(--fill);
  stroke-opacity: 0;
  stroke-dasharray: 0;
  stroke-linejoin: miter;
  stroke-width: 8px;
}

@keyframes yippee {
  0% {
    transform: scale(1);
    fill: var(--fill);
    fill-opacity: 0;
    stroke-opacity: 1;
    stroke: var(--stroke);
    stroke-dasharray: 10;
    stroke-width: 1px;
    stroke-linejoin: bevel;
  }

  30% {
    transform: scale(0);
    fill: var(--fill);
    fill-opacity: 0;
    stroke-opacity: 1;
    stroke: var(--stroke);
    stroke-dasharray: 10;
    stroke-width: 1px;
    stroke-linejoin: bevel;
  }

  30.1% {
    stroke: var(--fill);
    stroke-dasharray: 0;
    stroke-linejoin: miter;
    stroke-width: 8px;
  }

  60% {
    transform: scale(1.2);
    fill: var(--fill);
  }
}

.select-rating {
  display: flex;
  gap: 5px;
  align-items: center;
}

.review-form textarea {
  min-height: 110px;
}

section.related-products {
  margin-bottom: 40px;
}

.checkout-card {
  box-shadow: 1px 1px 3px #00000024, -1px -1px 3px #78787824;
  padding: 23px;
  border-radius: 5px;
}

.checkout-card.scroll {
  max-height: 380px;
  overflow-y: scroll;
}

.checkout-card.scroll::-webkit-scrollbar-track {
  background-color: #fff;
}

.checkout-card.scroll::-webkit-scrollbar {
  width: 6px;
  background-color: #fff;
}

.checkout-card.scroll::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}

.ch-title,
.ch-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  gap: 10px
}

.ch-title {
  background-color: #f1f3f4;
  margin-bottom: 14px;
}

.ch-title h5 {
  margin-bottom: 0;
}

.ch-items .product-cart {
  max-width: 55px;
}

.ch-items .product-cart p {
  padding-bottom: 0;
}

.ch-items {
  border-bottom: 1px solid #eee;
  margin-bottom: 2px;
}

#example td, #example th {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    max-width: 100%;
    width: max-content;
    min-width: 113px;
}


form.billing-form {
    margin-top: 30px;
}

.billing-form div{
      display: flex;
    gap: 15px;
    font-weight: 600;
    color: #404040;
    margin-bottom: 12px;
    font-size: 16px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
}
.billing-form div span{
    font-weight: normal;
}

.ch-title h5:first-of-type {
  min-width: 230px;
}

.p-wrapper {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

.cupon-apply {
  display: flex;
  gap: 5px;
}

.checkout-card .subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 2px;
  border-bottom: 1px dashed #c9c9c9;
}

.payment-wrapper .img-pay {
  width: 60px;
}

.order-details ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed #dbdbdb;
}


.unit-d {
  font-weight: 500;
  color: #000;
}

.os-wrapper img {
  max-width: 345px;
}

.os-wrapper {
  text-align: center;
}

.tr-id {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.tr-id .trackid {
  color: #fd907e;
}

/* user dashboard */
.dashboard-tab .list-group-item {
  padding: 10px;
  border-radius: 5px;
}

.dashboard-tab .list-group-item.active {
  background-color: var(--primary-color);
}

.tab-heading {
  border-bottom: 1px solid #eee;
  padding-bottom: 3px;
  margin-bottom: 12px;
}

.tab-heading i {
  color: #495057;
  font-size: 18px;
}

.modal {
  z-index: 99999;
}

.sd-header {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.st-label label {
  background-color: var(--secondry-color);
  padding: 2px 8px;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.8px;
}

.ad-action-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}

.saved-address.card {
  transition: 0.3s ease-in;
}

.saved-address.card:hover {
  background-color: #fdfdfd;
  box-shadow: 1px 1px 3px #00000024;
}

.highlights-items {
  display: flex;
  max-width: 250px;
  align-items: center;
  gap: 20px;
  padding: 20px;
  box-shadow: 1px 2px 3px #0000001f;
  border-radius: 5px;
  border: 1px solid #00000017;
  transition: 0.3s ease-in;
}

.d-highlights {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.highlights-items i {
  font-size: 40px;
  color: var(--primary-color);
}

.highlights-items:hover {
  border: 1px solid var(--secondry-color);
}

.leftside {
  background-image: url("https://harnishdesign.net/demo/html/oxyy/images/login-bg.jpg");
  height: 100vh;
  position: relative;
}

/* order tracking */
.hh-grayBox {
  margin-bottom: 20px;
  padding: 35px;
  margin-top: 20px;
}

.pt45 {
  padding-top: 45px;
}

.order-tracking {
  text-align: center;
  width: 33.33%;
  position: relative;
  display: block;
}

.order-tracking .is-complete {
  display: block;
  position: relative;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  border: 0px solid #afafaf;
  background-color: #f7be16;
  margin: 0 auto;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
  z-index: 2;
}

.order-tracking .is-complete:after {
  display: block;
  position: absolute;
  content: "";
  height: 14px;
  width: 7px;
  top: -2px;
  bottom: 0;
  left: 5px;
  margin: auto 0;
  border: 0px solid #afafaf;
  border-width: 0px 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}

.order-tracking.completed .is-complete {
  border-color: #27aa80;
  border-width: 0px;
  background-color: #27aa80;
}

.order-tracking.completed .is-complete:after {
  border-color: #fff;
  border-width: 0px 3px 3px 0;
  width: 7px;
  left: 11px;
  opacity: 1;
}

.order-tracking p {
  color: #a4a4a4;
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 20px;
}

.order-tracking p span {
  font-size: 14px;
}

.order-tracking.completed p {
  color: #000;
}

.order-tracking::before {
  content: "";
  display: block;
  height: 3px;
  width: calc(100% - 40px);
  background-color: #f7be16;
  top: 13px;
  position: absolute;
  left: calc(-50% + 20px);
  z-index: 0;
}

.order-tracking:first-child:before {
  display: none;
}

.order-tracking.completed:before {
  background-color: #27aa80;
}

.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
a#search-button{
    display: none;
}

#search-input {
    padding: 10px;
    width: 100%;
}

#search-input:focus-visible{
    outline-color: #fd9280;
}

.wishlist-item {
       display: flex;
    align-items: center;
    gap: 25px;
    font-weight: bold;
    border-bottom: 1px solid #eeee;
    padding-bottom: 10px;
    justify-content: space-around;
}

.wishlist-item p {
    margin-bottom: 0;
    width: max-content;
}
.wishlist-item img{
    max-width: 90px;
}
#search-results {
    position: fixed;
    z-index: 999;
    width: 29.8%;
    max-height: 380px;
    overflow-x: hidden;
}

#search-results ul {
    list-style: none;
    padding: 0;
}

#search-results ul li {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
}

.privacy-area  h4 strong{
    font-size: 20px;
}

#search-results ul li:hover {
    background-color: #f2f2f2;
}
/*table .order-detail{*/
/*    border-collapse: collapse;*/
/*    MARGIN: AUTO;*/
/*    margin-top: 14px;*/
/*    margin-bottom: 33px;*/
/*    background-color: whitesmoke;*/
/*}*/