* {
  margin: 0;
  padding: 0;
}

:root {
  --purple: #7f385e;
}

.fancy_text {
  font-family: "Tangerine", cursive !important;
}

body {
  font-family: "Roboto", serif !important;
  font-size: 18px;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  color: #7f385e;
}

a:hover {
  color: var(--purple);
}

header img.logo {
  max-height: 80px;
  object-fit: contain;
  display: block;
  margin: 12px auto;
}

header:before {
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
  background: url("https://doababakery.com/beta/public/frontend/images/banner-bg-top.png") repeat-x;
  height: 9px;
  content: "";
  z-index: 11;
}

.text-purple {
  color: var(--purple);
}

.bg-purple {
  background: var(--purple);
}

.text-black {
  color: #000;
}

header i {
  font-size: 36px;
}

.cnt_box {
  margin-left: 12px;
}

.cnt_box p a {
  font-size: 21px;
  font-weight: 800;
  color: var(--purple);
}

.cart span {
  --size: 20px;
  top: -8px;
  right: -5px;
  width: var(--size);
  height: var(--size);
  background: red;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
}

.navbar-light .navbar-nav .nav-link {
  /*    color: rgb(0 0 0);*/
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  padding: 8px 15px;
  border-radius: 4px;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--purple);
  background: #fff;
}

.navbar-nav {
  justify-content: space-between;
}

.sec_padding {
  padding: 80px 0 0;
}

.pb-80 {
  padding-bottom: 80px;
}

.mb-60 {
  margin-bottom: 60px;
}

.sec_title .fancy_text {
  font-size: 92px;
  margin-bottom: 60px;
}

.sec_main_title {
  font-size: 45px;
  font-weight: 600;
  text-align: center;
}

.review .carousel-inner {
  background: #fff;
  padding: 50px 40px 80px;
  border-radius: 30px;
  box-shadow: 0px 10px 35px -5px #00000012;
}

.review .reviewer {
  margin-bottom: 30px;
}

.review .reviewer h3 {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 5px;
}

.review .reviewer p {
  color: #ff7ca9;
}

.review p.r_text {
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  width: 90%;
  margin: 12px auto 20px;
}

.review .r_text_box {
  padding-left: 14%;
  text-align: left;
}

.review .r_text_box img {
  left: 0;
  top: -85%;
  opacity: 0.5;
  width: 14%;
}

.review .carousel-indicators {
  margin-bottom: 40px;
}

.review .carousel-indicators [data-bs-target] {
  background-color: #d3d3d3;
}

.review .carousel-indicators .active {
  background-color: var(--purple);
  opacity: 1;
}

/*Intro*/
.sec_desc {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.s-category button {
  display: block;
  margin: auto;
  border-radius: 30px;
  padding: 5px 22px;
  border: 1px solid black;
}

.card-wrapper {
  width: 100%;
  height: 400px;
  margin: auto;
  background: gray;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.card-wrapper.m-set {
  margin-top: 30px;
}

.card-wrapper.d-set {
  height: 330px;
}

.card-wrapper .image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.card-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-wrapper .c-content {
  position: absolute;
  width: 100%;
  z-index: 1;
  bottom: 0;
  text-align: center;
  padding: 30px;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, #0000 100%);
}

.card-wrapper .c-content * {
  transition: all 0.3s linear;
}

.card-wrapper .c-content h4 {
  color: white;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: -1em;
}

.card-wrapper .c-content a {
  margin-bottom: -1em;
  margin-top: 15px;
  opacity: 0;
}

.card-wrapper:hover .c-content {
  background-image: linear-gradient(to top,
      rgba(127, 56, 94, 0.8) 0%,
      #0000 100%);
}

.card-wrapper:hover .c-content h4,
.card-wrapper:hover .c-content a {
  margin-bottom: 0;
  opacity: 1;
}

/* =========================================
         css for the categorie
============================================ */

.categories {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.category-wrapper {
  position: relative;
}

.single-category {
  width: 90%;
  margin: auto;
  cursor: pointer;
}

.single-category:hover img {
  transform: scale(1.08);
}

.single-category:hover .image-wrapper {
  border: 5px solid var(--purple);
}

.single-category .image-wrapper {
  height: 230px;
  width: 100%;
  position: relative;
  border-radius: 90px;
  background: white;
  overflow: hidden;
  border: 3px solid #fff;
  transition: all 0.3s linear;
}

.single-category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s linear;
  transform: scale(1);
}

.single-category p {
  text-align: center;
  margin-top: 10px;
  font-weight: 5000;
  font-size: 20px;
}

.single-category:hover p {
  color: var(--purple);
}

/*Products*/
.products {
  background: #fff3fd8f;
}

.all_product_slider {
  padding: 0 20px;
  overflow: hidden;
}

.prd_box .prd_img {
  height: 235px;
  border-radius: 12px;
  box-shadow: 0px 8px 12px -5px #0000003d;
  overflow: hidden;
  margin-bottom: 15px;
  width: 230px;
}

.prd_box .prd_img img {
  object-fit: fill;
  height: 100%;
  width: 100%;
  transition: all 0.3s linear;
}

.prd_box:hover .prd_img img {
  scale: 1.08;
}

.prd_box .ratings {
  color: #ffce00;
  margin-bottom: 10px;
  display: block;
}

.prd_box .prd_name {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prd_box .add_cart .price {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}

.prd_box .add_cart .price s {
  color: #a5a5a5;
  font-size: 14px;
}

.prd_box .add_cart_btn,
.theme_btn {
  background: var(--purple);
  color: #fff;
  transition: all 0.3s linear;
  border-radius: 50px;
}

.prd_box .add_cart_btn:hover,
.theme_btn:hover {
  background: #000;
  color: #fff;
}

.owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #a9a9a9 !important;
  border: 1px solid #e8e6e6 !important;
  background: #fff !important;
}

.owl-theme .owl-nav [class*="owl-"] i {
  font-size: 38px;
  color: var(--purple);
}

.owl-theme .owl-nav [class*="owl-"]:hover i {
  color: #fff;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  color: #fff !important;
  border: 1px solid #e8e6e6 !important;
  background: var(--purple) !important;
}

.owl-carousel .owl-nav button.owl-prev {
  left: -20px;
  font-size: 22px;
  line-height: 78px;
}

.owl-carousel .owl-nav button.owl-next {
  right: -20px;
  font-size: 22px;
  line-height: 78px;
}

.banner-left-icon {
  position: relative;
  background: #fafcff;
  padding: 30px 20px;
  border-radius: 10px;
}

.banner-left-icon .banner-icon {
  max-width: 55px;
  margin-right: 20px;
  transition-duration: 0.3s;
}

.banner-left-icon .banner-icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.banner-left-icon .banner-text h3 {
  color: #7f385e;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.banner-left-icon .banner-text p {
  margin-bottom: 0;
  color: #adadad;
  font-size: 16px;
}

/* ===================================
css for the why-choose-us section 
========================================= */
.why-us {
  padding-bottom: 100px;
}

.why-us .container {
  position: relative;
}

.why-us .row {
  position: relative;
  z-index: 99;
}

.why-us .reason {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.why-us .reason p {
  text-align: center;
}

.why-us .reason p.t-bold {
  font-weight: bold;
}

.why-us .m-image {
  position: absolute;
  width: 50%;
  bottom: -120px;
  left: 50%;
  transform: translate(-50%, 0%);
}

/* 


/* ------------------------
    Footer
------------------------*/
footer {
  background: #7f385e;
  padding: 80px 0px 10px;
  color: #ffffffdb;
  position: relative;
}

footer:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: url("https://doababakery.com/beta/public/frontend/images/banner-bg-top-white.png") repeat-x;
  height: 9px;
  content: "";
  z-index: 11;
}

footer * {
  transition: all 0.3s linear;
}

footer h4 {
  color: #fff;
  font-weight: 600;
}

footer p,
footer li a,
footer a {
  color: #ffffffdb;
}

footer b {
  color: #fff;
  font-weight: 600;
}

.copyright {
  color: #ffffffdb;
  padding: 30px 0px 15px;
  border-top: 1px solid #ffffff8f;
  margin-top: 30px;
}

.copyright-link ul {
  display: flex;
  list-style: none;
  justify-content: flex-end;
}

.copyright-link ul li {
  padding: 0px 10px;
}

.footer-logo {
  background: #fff;
  display: inline-block;
  border-radius: 6px;
  padding: 8px 20px;
}

.list-inline li {
  display: inline-block;
}

.media-icon li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.media-icon li a:hover {
  color: #fff;
  text-decoration: underline !important;
}

.footer-list i {
  margin-right: 8px;
}

.footer-list li {
  margin-bottom: 15px;
  text-transform: capitalize;
}

.footer-list li:last-child {
  margin-bottom: 0;
}

.footer-list li a {
  color: #ffffffdb;
  position: relative;
}

.footer-list li a:hover {
  color: #fff;
  padding-left: 8px;
}

.copyright-link ul li a:hover {
  color: #fff;
}

.social-icons.footer-social li a {
  background: none;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 22px;
  display: inline-block;
  text-align: center;
  margin-right: 12px;
}

.social-icons.footer-social li a:hover {
  background: #000;
  color: #fff;
  border: 1px solid #000;
}

.main_card {
  background-color: #e2cfe389;
  padding: 30px;
  text-align: center;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.main_card h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.main_card p {
  margin-top: 20px;
}

.main_card .main_card_image {
  height: 300px;
}

.main_card .main_card_image img {
  height: 100%;
  width: 100%;
  object-fit: fill;
  object-position: center center;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.main_card .add_cart_btn {
  padding: 8px 30px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.btn:focus {
  box-shadow: none;
}

.tabs_wrapper .nav.nav-pills {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  overflow-y: auto;
  overscroll-behavior-x: contain;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.tabs_wrapper .nav.nav-pills::-webkit-scrollbar {
  width: 2px;
  height: 3px;
}

.tabs_wrapper .nav.nav-pills:hover ul::-webkit-scrollbar {
  width: 2px;
  height: 3px;
}

.tabs_wrapper .nav.nav-pills::-webkit-scrollbar-track {
  background: inherit;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.tabs_wrapper .nav.nav-pills::-webkit-scrollbar-thumb {
  background-color: #a9a9a9;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.tabs_wrapper .nav.nav-pills::-webkit-scrollbar-corner {
  background: inherit;
}

.tabs_wrapper .nav-link {
  color: #000;
  border: 1px solid #7f385e;
  font-size: 15px;
  margin: 0 5px 5px 5px;
  padding: 5px 20px;
  white-space: nowrap;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.tabs_wrapper .nav-pills .nav-link.active,
.tabs_wrapper .nav-pills .show>.nav-link {
  color: #fff;
  background-color: #7f385e !important;
  /*border-bottom: 3px solid #7f385e;
    */
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.icon-boxes.classic h3.name {
  /*color: #7f385e;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid #7f385e;
    display: table;
    margin: auto;
    text-align: center;
    line-height: 30px;
    */
  color: #ffffff;
  font-size: 14px;
  position: absolute;
  display: table;
  margin: auto;
  text-align: center;
  bottom: -40px;
  background: #7f385e;
  line-height: 30px;
  padding: 2px 15px;
  left: 0;
  right: 0;
  width: 100%;
  border: 2px solid #fff;
  margin: auto;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

/* .icon-boxes.classic .img-holder {
    padding-top: 12px;
} */

.icon-boxes.classic .img-holder img {
  padding: 0 12px;
  height: 120px;
  width: 100%;
  object-fit: fill;
  margin-bottom: 15px;
}

.icons_boxes label {
  padding: 10px 14px;
  width: 100%;
  border-radius: 15px;
  min-height: 130px;
  background-color: #e2cfe389;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, .2); */
  position: relative;
}

.icons_boxes.icon_card {
  margin-bottom: 40px;
}

.icons_boxes.icon_card label {
  padding: 0;
  width: 100%;
  border-radius: 15px;
  min-height: 130px;
  background-color: transparent;
  position: relative;
}

.icons_boxes.icon_card .img-holder img {
  padding: 0 0px;
  height: 200px;
  width: 100%;
  object-fit: fill;
  border-radius: 10px;
  margin-bottom: 0px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.icons_boxes.icon_card h3.name {
  color: #ffffff;
  font-size: 14px;
  position: absolute;
  display: table;
  margin: auto;
  text-align: center;
  /* bottom: 0px; */
}

.icons_boxes.icon_card label {
  height: 200px;
}

#pills-Add-Ons .icons_boxes label {
  min-height: 250px !important;
}

.icons_boxes input[type="radio"],
.icons_boxes input[type="checkbox"] {
  position: absolute;
  top: 20px;
  opacity: 0;
}

.icons_boxes input[type="radio"]:checked+label,
.icons_boxes input[type="checkbox"]:checked+label {
  border: 1px solid #7f385e;
}

.icons_boxes input[type="radio"]:checked+label::before,
.icons_boxes input[type="checkbox"]:checked+label::before {
  content: "";
  height: 30px;
  width: 30px;
  background: #7f385e;
  border: 2px solid #fff;
  border-radius: 20px;
  font-family: "Font Awesome 5 pro";
  font-weight: 600;
  position: absolute;
  top: -10px;
  right: -15px;
}

.icons_boxes input[type="radio"]:checked+label::after,
.icons_boxes input[type="checkbox"]:checked+label::after {
  content: "\f00c";
  font-family: "Font Awesome 5 pro";
  font-weight: 500;
  position: absolute;
  top: -6px;
  font-size: 16px;
  color: #fff;
  right: -8px;
}

/* .icons_boxes input[type=radio]:checked+label h3 {
    color: #fff !important;
    font-weight: 600;
    font-size: 16px !important;
    border-bottom: 2px solid #fff;
} */

.cake_Title {
  background: #e2cfe389;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  margin-bottom: 30px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 20px;
  text-transform: capitalize;
  text-align: left;
}

.cake_Title img {
  width: 30px;
  margin-right: 10px;
}

.file_wrapper {
  border: 1px solid #e1e1e1;
  padding: 5px;
}

.detail-addtocart {
  display: flex;
  align-items: center;
  justify-content: normal;
  margin-top: 50px;
  margin-bottom: 16px;
}

.detail-addtocart .input-group .button-minus,
.detail-addtocart .input-group .button-plus {
  font-weight: bold;
  height: 35px;
  padding: 0;
  font-size: 16px;
  width: 35px;
  border-radius: 30px;
  position: relative;
  border: 1px solid #c6c6c6;
  background-color: #7f385e;
  color: white;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.detail-addtocart .input-group .quantity-field {
  position: relative;
  height: 35px;
  text-align: center;
  width: 44px;
  display: inline-block;
  font-size: 18px;
  margin: 0 0 5px;
  resize: vertical;
  border: 1px solid #c6c6c6;
}

.detail-addtocart .number label+.input-group {
  width: auto;
  display: inline-flex !important;
  margin-left: 5px;
}

.add_to_cart {
  background: #7f385e;
  color: #fff;
  border-radius: 5px;
  padding: 5px 22px;
  transition: all 0.2s linear;
  font-size: 16px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.add_to_cart i {
  font-size: 18px;
  transform: translateY(2px);
}

.add_to_cart:hover {
  background: #000;
  color: #fff;
}

.add_notes {
  background: #7f385e;
  color: #fff;
  width: 150px;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
  padding: 7px 22px;
  transition: all 0.2s linear;
  font-size: 16px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.discription_sec h3 {
  font-size: 22px;
  margin-top: 20px;
}

.discription_sec ol {
  padding-left: 30px;
}

.discription_sec ol li {
  font-size: 16px;
  color: #303030;
  margin: 8px 0;
}

textarea {
  width: 100%;
  border: 1px solid #e1e1e1;
  outline: none;
  padding: 20px;
}

.discription_sec label {
  color: #303030;
  font-size: 15px;
  margin-top: 15px;
}

.Summary_sec .icons_boxes label {
  min-height: 190px;
}

.order-summary {
  background-color: #f2f2f2;
  padding: 20px 20px;
  border-radius: 10px;
  position: sticky;
  top: 80px;
}

.order-summary h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

.order-summary p {
  font-size: 15px;
  line-height: 1.3;
}

.order-summary h5 span {
  color: #ffac0d;
}

.gst {
  padding-top: 15px;
  border-bottom: 1px dashed #e1e1e1;
}

.total {
  padding-top: 15px;
  border-bottom: 1px dashed #e1e1e1;
  background-color: #000;
}

.total p {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.order-summary p {
  margin-bottom: 10px;
}

.book-btn {
  background: #7f385e;
  padding: 12px 30px;
  text-align: center;
  border-radius: 50px;
  margin-top: 30px;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  display: block;
  width: 100%;
  text-decoration: none;
}

.book-btn:hover {
  color: #fff;
}

.table {
  background-color: #fff;
  padding: 5px;
}

.table td,
.table th {
  font-size: 14px;
}

.table>thead>tr>th {
  padding: 12px 8px;
}

@media screen and (min-width: 1920px) {

  section,
  .container-fluid,
  section.banner.width-100 {
    width: 1900px;
    margin-left: auto;
    margin-right: auto;
  }

  .fw-100 {
    width: 100% !important;
  }

  .all_product_slider {
    overflow: visible;
  }

  .single-category .image-wrapper {
    height: 250px;
    border-radius: 110px;
  }
}

@media screen and (max-width: 768px) {
  header img.logo.header {
    display: none;
  }

  .pb-80 {
    padding-bottom: 30px;
  }

  .review .carousel-inner {
    background: #fff;
    padding: 50px 0px 40px 0px;
    border-radius: 30px;
    box-shadow: 0px 10px 35px -5px #00000012;
  }

  .review p.r_text {
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
    width: 100%;
    margin: 0px 0 0px -24px;
  }

  .why-us .reason p {
    font-size: 16px;
  }
}

.bx-hide:before {
  content: "\eb0e";
  position: absolute;
  top: 20px;
  right: 15px;
}

.bx-show {
  content: "\eb0e";
  position: absolute;
  top: 20px;
  right: 15px;
}

.btn-customlogin {
  width: 100%;
  background: #7f385e;
  color: white;
  border-radius: 50px;
  height: 60px;
  border: #7f385e;
}

.sign-up {
  background: rgb(221, 206, 206);
  cursor: pointer;
  border-radius: 50px;
  color: black;
  width: 100%;
}

.avatar_box {
  padding: 15px;
  align-items: center;
}

.avatar_box img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  margin-right: 12px;
}

.avatar_box .avatar_details {
  width: calc(100% - 84px);
}

.avatar_box h3 {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--green);
}

.avatar_box p {
  font-size: 13px;
  margin-bottom: 0;
}

.account_details .add_box {
  border-left: 1px solid #efefef;
  background: #f8f9fa;
  height: 100%;
  width: 100%;
  display: block;
  padding: 25px;
}

.breadcrumb-item.active {
  color: var(--green);
}

.list-group-item.active {
  background-color: #7f385e;
  border-color: #7f385e;
}

.list-group-item.active a {
  color: #fff;
}

.sidebar {
  width: 300px;
  background: #fff;
}

.sidebar ul.list-group {
  position: sticky;
  top: 40px;
}

.account_details .add_box {
  border-left: 1px solid #efefef;
  background: #f8f9fa;
  height: 100%;
  width: 100%;
  display: block;
  padding: 25px;
}

.list-group-item.active {
  background-color: #7f385e;
  border-color: #7f385e;
}

.brd_heading {
  font-size: 22px;
  text-align: center;
  padding: 10px 0;
  font-weight: 600;
}

.account_details .add_box {
  border-left: 1px solid #efefef;
  background: #f8f9fa;
  height: 100%;
  width: 1043px;
  display: block;
  padding: 25px;
}

img.img-fluid.circle {
  border-radius: 50px;
}

@media screen and (min-width: 1400px) {
  .container {
    width: 96%;
    max-width: 1920px;
  }
}

.side_links li.v_cart:hover .cart_card {
  opacity: 1;
  visibility: visible;
}

.cart_card ul {
  margin-left: 0;
  max-width: 100%;
  flex-direction: column;
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 15px;
}

.cart_card ul::-webkit-scrollbar {
  width: 5px;
}

.cart_card ul::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.cart_card ul::-webkit-scrollbar-thumb {
  background: #333;
}

.cart_card ul::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.cart_card ul li {
  border-bottom: 1px solid #ccc;
  margin-bottom: 12px;
  padding-bottom: 5px;
}

.cart_card img {
  width: 78px;
}

.cart_card li a {
  color: #000;
  gap: 15px;
}

.pct-desc {
  min-width: 215px;
  font-size: 16px;
}

.pct-desc p {
  line-height: 1.35;
  margin-bottom: 5px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pct-desc span {
  color: var(--green);
  font-weight: 600;
  font-size: 17px;
}

.btn.remove {
  padding: 0;
  rotate: 90deg;
  font-size: 24px;
  color: red;
}

.cart_card a.view-all {
  padding: 10px 18px;
  font-size: 14px;
}

.cart_card a.view-all.purple {
  background: #7f385e;
  color: #fff;
}

.cart_card a.view-all.purple:hover {
  background: #000;
  color: #fff;
}

p.sub-total {
  font-size: 18px;
  font-weight: 700;
  padding: 0 10px;
  margin-top: 12px;
}

.menubar {
  border-bottom: 1px solid #e8e6e6;
}

.menubar ul.navbar-nav {
  width: 100%;
  justify-content: end;
}

.button_wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.menubar nav .navbar-nav .nav-link {
  margin: 0px 20px;
  color: #000;
  /* text-transform: uppercase; */
  font-weight: 500;
  position: relative;
}

.menubar nav .navbar-nav .nav-link:before {
  content: "";
  width: 0px;
  height: 2px;
  background: var(--green);
  transition: all 0.3s linear;
  position: absolute;
  bottom: -21px;
  left: 0;
}

.menubar nav .navbar-nav .nav-link:hover:before {
  width: 100%;
}

.menubar nav .navbar-nav .nav-item:hover .nav-link {
  color: var(--green);
}

.menubar .store i {
  font-size: 20px;
  color: #85c440;
}

li.nav-item {
  position: relative;
  font-size: 17px;
}

.dropdown-menu {
  min-width: 12rem;
  padding: 0.5rem 0;
  width: 100%;
}

.view_cart {
  text-align: end;
}

.view_cart i {
  font-size: 24px;
}

.bck_img {
  background: url(https://html.themewant.com/ekomart/assets/images/offer/01.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: 44%;
  width: 100%;
  padding: 40px 60px;
}

.offer {
  background-color: #185f5e;

  display: flex;
  align-items: center;
  column-gap: 50px;
}

.offer p {
  font-size: 30px;
  font-weight: 500;
}

.shop-btn {
  display: inline-block;
  text-align: center;
  transition: all 0.3s;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 13px 27px 13px 27px;
  line-height: 20px;
  letter-spacing: 0.5px;
  font-size: 16px;
  background-color: var(--green);
  color: #fff;
}

.btn_wrapper {
  margin: 30px 0;
}

.view-all {
  display: inline-block;
  text-align: center;
  transition: all 0.3s;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 13px 27px 13px 27px;
  line-height: 20px;
  letter-spacing: 0.5px;
  font-size: 15px;
  background-color: #cccbcb;
  color: #000;
}

.view-all:hover,
.shop-btn:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-5px);
}

.view-all i {
  font-size: 20px;
  transform: translateY(3px);
}

.secs {
  padding-top: 50px;
}

/* .sec_title::after {
      position: absolute;
      height: 30px;
      width: 30px;
      background: #EABC5E;
      content: "";
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      border-radius: 50%;
  } */

.cat-box {
  background: var(--bg-color);
  text-align: center;
  padding: 0;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  transition: all 0.3s linear;
  border: 10px solid var(--bg-color);
  margin: 10px auto 0;
  overflow: hidden;
}

.cat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -12px #0000001c;
  border-color: var(--green);
}

.cat-box:hover+.catgory-name {
  color: var(--green);
}

.cat-box .category-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*    margin-bottom: 15px;*/
}

.add_to_cart {
  display: block;
  position: absolute;
  bottom: 16px;
  right: 12px;
  background: var(--yellow);
  color: #fff;
  border-radius: 5px;
  padding: 4px 12px;
  transition: all 0.2s linear;
  font-size: 15px;
  cursor: pointer;
}

.add_to_cart i {
  font-size: 18px;
  transform: translateY(2px);
}

.add_to_cart:hover {
  background: var(--green);
  color: #fff;
}

.detail-addtocart {
  display: flex;
  align-items: center;
}

.input-group .button-minus,
.input-group .button-plus {
  font-weight: bold;
  height: 38px;
  padding: 0;
  font-size: 18px;
  width: 28px;
  position: relative;
  border: 1px solid #c6c6c6;
}

.input-group .quantity-field {
  position: relative;
  height: 38px;
  text-align: center;
  width: 44px;
  display: inline-block;
  font-size: 18px;
  margin: 0 0 5px;
  resize: vertical;
  border: 1px solid #c6c6c6;
}

.number label+.input-group {
  width: auto;
  display: inline-flex !important;
  margin-left: 5px;
}

.prd_images .owl-item img {
  height: 300px;
  width: 100%;
  margin: auto;
  object-fit: contain;
  object-position: center center;
}

.prd_images .owl-item {
  border: 1px solid #c3c3c3;
  padding: 15px;
  height: 350px;
}

.detail_page .container.normal {
  max-width: 1400px !important;
}

.detail_page .prd_desc {
  padding-left: 30px;
}

.detail_page textarea {
  height: 100px;
  outline: none;
  box-shadow: inset 0px 10px 15px -3px rgba(245, 245, 245, 0.1) !important;
  border: 1px solid #e1e1e1 !important;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.detail_page textarea:focus {
  box-shadow: none;
}

.prd_desc {
  margin-bottom: 80px;
}

.detail_page .prd_desc p {
  margin-top: 0;
  margin-bottom: 9px !important;
  font-size: 15px !important;
  color: #303030;
}

.detail_page .prd_desc .prd-price {
  font-size: 22px !important;
  color: #7f385e !important;
}

.prd_desc span.ratings {
  color: #e3e3e3;
  font-size: 16px;
}

.prd-price {
  color: #7f385e;
  font-weight: 700;
  font-size: 30px;
}

.prd-price del {
  color: #232323;
  font-weight: 400;
  font-size: 18px;
  margin-right: 12px;
}

p.highlight-text {
  font-size: 18px;
  background: var(--green);
  display: inline-block;
  padding: 5px 15px;
  color: #fff;
}

p.points i {
  color: var(--green);
  float: left;
  margin-bottom: 12px;
  margin-top: 2px;
  font-size: 20px;
}

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

.number {
  display: inline-block;
  margin: auto;
}

.detail-addtocart .add-cart a {
  display: inline-block;
  margin-left: 20px;
  background-color: #7f385e;
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 18px;
  min-width: 240px;
  text-align: center;
  margin-bottom: 5px;
}

.detail-addtocart .add-cart a:hover {
  background: #000;
  color: #fff;
}

.tab-content {
  padding: 20px;
}

.tab-content h2 {
  font-size: 27px;
  font-weight: 700;
}

.tab-content h4 {
  font-size: 16px;
  font-weight: 700;
}

.nav-tabs .nav-link {
  color: #000;
  font-size: 17px;
}

.nav-tabs .nav-link.active {
  background: var(--green);
  color: #fff;
}

.cart_updated {
  background: #e7efe2;
  padding: 15px 20px;
  border-radius: 5px;
}

.cart_updated i {
  color: var(--green);
  background-color: #fff;
  text-align: center;
  -webkit-box-shadow: 0 4px 10px 0 rgba(198, 198, 198, 0.75);
  box-shadow: 0 4px 10px 0 rgba(198, 198, 198, 0.75);
  width: 34px;
  height: 34px;
  font-size: 18px;
  line-height: 34px;
  border-radius: 50%;
  margin-right: 12px;
}

.table thead tr {
  background-color: #f8f8f8;
  border-radius: 4px;
}

.table thead tr th {
  border: none;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 600;
  color: #111;
  padding: 16px 12px;
  text-align: left;
}

.table tbody tr td {
  /*    border: none;*/
  padding: 20px 12px;
  color: #111;
  font-size: 16px;
  line-height: 1.3;
  text-align: left;
  vertical-align: middle;
}

td.remove i {
  display: block;
  font-size: 26px;
  color: #111 !important;
  border: 1px solid #c2c2c2;
  height: 40px;
  width: 40px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  font-weight: 400;
}

table td img {
  width: 72px;
  margin-right: 15px;
  height: auto;
}

.coupon_code input {
  margin: 0;
  padding: 8px 25px;
  width: 100%;
  border-radius: 30px;
  font-size: 16px;
  line-height: 1.3;
  height: 50px;
}

.coupon_code .theme-btn {
  background: var(--green);
  padding: 4px 27px;
  border-radius: 50px;
  border: 1px solid black;
  text-transform: uppercase;
  height: 50px;
  border-radius: 30px;
  color: #080808;
  font-size: 15px;
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  font-weight: 600;
  margin: 0;
}

.order-summary {
  margin-bottom: 70px;
}

.order-summary .row {
  margin: 15px 0;
}

.order-summary #grand-total-detail {
  margin-top: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 25px;
  border-top: 1px solid #e5e5e5;
  font-weight: 700;
}

.proceed a {
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding: 20px;
  display: block;
}

/* .proceed:hover {
      background: var(--yellow);
  } */

.proceed:hover a {
  color: #000;
}

.breadcrumb-item.active {
  color: var(--green);
}

.list-group-item.active {
  background-color: #7f385e;
  border-color: #7f385e;
}

.detail-addtocart .button-minus,
.detail-addtocart .button-plus {
  height: 34px !important;
  width: 34px !important;
  border-radius: 50% !important;
  -webkit-border-radius: 3% !important;
  -moz-border-radius: 50% !important;
  -ms-border-radius: 50% !important;
  -o-border-radius: 50% !important;
  background-color: #f0f7e7;
  border: none !important;
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {

  .detail-addtocart .button-minus,
  .detail-addtocart .button-plus {
    background-color: #f0f7e7;
    height: 28px !important;
    width: 28px !important;
  }

  .input-group .quantity-field {
    position: relative;
    height: 30px;
    width: 40px;
    display: inline-block;
    font-size: 15px;
  }

  .add_to_cart {
    bottom: 16px;
  }
}

.brd_heading {
  font-size: 28px;
  text-align: center;
  padding: 13px 0;
  font-weight: 600;
  color: black;
  background-color: #f8f9fa;
}

/* cart  */

.cart_updated {
  background: #e7efe2;
  padding: 15px 20px;
  border-radius: 5px;
}

.cart_updated i {
  color: var(--green);
  background-color: #fff;
  text-align: center;
  -webkit-box-shadow: 0 4px 10px 0 rgba(198, 198, 198, 0.75);
  box-shadow: 0 4px 10px 0 rgba(198, 198, 198, 0.75);
  width: 34px;
  height: 34px;
  font-size: 18px;
  line-height: 34px;
  border-radius: 50%;
  margin-right: 12px;
}

.table thead tr {
  background-color: #f8f8f8;
  border-radius: 4px;
}

.table thead tr th {
  border: none;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 600;
  color: #111;
  padding: 16px 12px;
  text-align: left;
}

.table thead tr th:nth-child(3) {
  text-align: right !important;
}

.book-table .table thead tr th {
  background-color: #212121;
  color: #fff !important;
  font-size: 14px;
  padding: 12px 10px;
  border-right: 1px solid #434242;
}

.order-summary .col-lg-8 {
  padding-left: 0 !important;
}

tr.tr-divide {
  background: #fffae8;
}

.table tbody tr td {
  /*    border: none;*/
  padding: 10px 12px;
  color: #111;
  font-size: 14px;
  line-height: 1.3;
  text-align: left;
  vertical-align: middle;
}

.table tbody tr td:nth-child(3) {
  text-align: right !important;
}

td.remove i {
  display: block;
  font-size: 20px;
  color: #111 !important;
  border: 1px solid #c2c2c2;
  height: 30px;
  width: 30px;
  line-height: 31px;
  text-align: center;
  border-radius: 50%;
  font-weight: 400;
}

th.time-slots {
  background: #86c342;
  font-size: 14px;
}

table td img {
  width: 50px;
  margin-right: 15px;
  height: auto;
}

.table tbody tr td.item-total {
  font-weight: 600;
}

.row.cart-prd {
  padding: 0 12px;
  margin-top: 20px;
}

.order-summary {
  margin-bottom: 70px;
}

.order-summary .row {
  margin: 15px 0;
}

.order-summary #grand-total-detail {
  margin-top: 15px;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-bottom: 20px;
  font-size: 18px;
  background-color: var(--green);
  font-weight: 600;
  color: #0c0b0b;
}

.proceed {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.applied_coupon {
  margin-top: 15px;
}

.proceed .continue-btn {
  color: #000;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding: 10px 30px;
  display: block;
  background: transparent;
  border-radius: 40px;
  border: 1px solid #000;
  transition: 0.4s all;
}

.proceed .continue-btn:hover {
  background-color: var(--green);
  color: #fff;
  border-color: var(--green);
}

.proceed .checkout-btn {
  color: #151414;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding: 10px 40px;
  display: block;
  background: var(--green);
  border-radius: 40px;
  border: 1px solid black;
}

.order-summary.rounded.shadow,
.order-summary.rounded.border {
  border-radius: 20px !important;
  padding: 20px;
  background-color: #f6f6f6;
  box-shadow: none !important;
}

.order-summary.rounded.shadow .bg-light {
  background-color: #f6f6f6 !important;
  background-color: #f6f6f6 !important;
  border-radius: 20px 20px 0 0 !important;
  text-align: left !important;
  padding-top: 0px !important;
  padding-left: 7px !important;
}

.proceed #submitBtn {
  color: #000;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding: 10px 30px;
  display: block;
  background: transparent;
  border-radius: 40px;
  border: 1px solid #000;
  transition: 0.4s all;
  width: 100%;
}

.proceed #submitBtn:hover {
  background-color: var(--green);
  color: #fff;
  border-color: var(--green);
}

.checkout-prd .order-summary h3 {
  font-size: 24px;
  text-align: left !important;
  padding: 0 0 10px 0 !important;
  background-color: #f6f6f6 !important;
}

.book-a-time {
  background: #86c342;
  padding: 9px 15px;
  border-radius: 5px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  font-weight: 500;
}

.about-section .image-column {
  position: relative;
  margin-bottom: 50px;
}

.about-section .about-image-wrapper {
  position: relative;
  padding-right: 50px;
  margin-left: -50px;
  padding-bottom: 60px;
}

.about-section .bg-shape {
  position: absolute;
  left: -160px;
  bottom: 30px;
  margin-bottom: 0;
}

.about-section .image-1 {
  position: relative;
  overflow: hidden;
}

.about-section .image-1 img {
  border-radius: 50%;
  height: 500px;
  width: 500px;
}

.about-section .image-2 {
  position: absolute;
  right: 50px;
  bottom: 0;
  z-index: 2;
  border-radius: 50%;
  overflow: hidden;
}

.about-section {
  padding: 60px 40px;
  padding-top: 86px !important;
}

.about-section h6 {
  color: #224d3d;
  font-size: 20px;
  font-weight: 600;
}

.about-section h2 {
  font-size: 40px;
  font-weight: 600;
  padding-bottom: 13px;
}

.text_green_c {
  color: #185f5e !important;
}

.about-section p {
  font-size: 16px;
}

div#hovedCart {
  /* display: inherit !important; */
  text-align: left;
}

.side_links li.v_cart:hover .cart_card {
  opacity: 1;
  visibility: visible;
}

.cart_card .pct-desc {
  width: 200px;
  /*changes*/
  max-width: 100%;
  /*changes*/
  margin: auto 20px;
}

.cart_card .pct-desc p {
  font-size: 14px;
  text-transform: capitalize;
}

.d-flex.qty-right {
  align-items: center !important;
}

.cart_card ul {
  margin-left: 0;
  max-width: 100%;
  flex-direction: column;
  max-height: 270px;
  /*changes*/
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 15px;
}

.cart_card .quantity .qty {
  height: 35px;
  /*changes*/
}

.cart_card .price {
  font-size: 14px;
  /*changes*/
  margin: 0 25px;
  width: 100px;
  font-weight: 600;
}

.qty-list.input-group.d-flex.justify-content-end {
  justify-content: flex-start !important;
}

.v_cart .input-group .quantity-field {
  border: 1px solid #e1e1e1 !important;
}

.qty-list .button-plus,
.qty-list .button-minus {
  width: 30px !important;
  height: 30px !important;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
  cursor: pointer;
  font-size: 0.875rem;
  color: #a3a3a3;
}

.qty-list.input-group .quantity-field {
  height: 30px !important;
  width: 30px !important;
  font-size: 14px;
  border-right: none !important;
}

/* .qty-list .input-group .quantity-field {
        position: relative;
        height: 35px !important;
        text-align: center;
        width: 44px !important;
        display: inline-block;
        font-size: 16px;
        margin: 0 0 5px;
        resize: vertical;
        border: 1px solid #c6c6c6;
    } */

.search-results .quantity input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.cart_card ul::-webkit-scrollbar {
  width: 5px;
}

.cart_card ul::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.cart_card ul::-webkit-scrollbar-thumb {
  background: #ababab;
}

.cart_card ul::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.cart_card ul li {
  border-bottom: 1px solid #ccc;
  margin-bottom: 12px;
  padding-bottom: 5px;
}

.cart_card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin: auto;
}

.cart_card li a {
  color: #000;
  gap: 15px;
}

.pct-desc {
  min-width: 160px;
  font-size: 14px;
}

.pct-desc p {
  line-height: 1.35;
  margin-bottom: 5px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pct-desc span {
  /* color: var(--green); */
  font-size: 14px;
}

.btn.remove {
  padding: 0;
  rotate: 90deg;
  font-size: 24px;
  color: red;
}

.cart_card a.view-all {
  padding: 10px 18px;
  font-size: 14px;
}

.cart_card a.view-all.yellow {
  background: var(--yellow);
  /* color: #000; */
}

.cart_card a.view-all.yellow:hover {
  background: #000;
  color: #fff;
}

p.sub-total {
  font-size: 18px;
  font-weight: 700;
  padding: 0 10px;
  margin-top: 12px;
}

/* .cart_card {
    position: absolute;
    width: 25em;
    max-height: 400px;
    top: 100%;
    right: 0;
    z-index: 2;
    background: #fff;
    color: #000;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 18px -12px #000;
    opacity: 1;
    visibility: hidden;
    transition: all 0.3s;
  } */

.cart-image-wrapper {
  display: flex;
}

.add_box {
  padding-bottom: 34px;
  margin-top: 30px;
}

/* Mode */

.view-mode {
  margin-bottom: 20px;
  display: flex;
}

.view-mode .rango-view-grid-container,
.rango-view-list-container {
  line-height: 36px;
  width: 45% !important;
  margin-right: 4%;
}

.view-mode .rango-view-grid-container,
.rango-view-list-container {
  width: auto !important;
  height: 36px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.83);
  padding: 0 8px !important;
  display: inline-block;
  border-radius: 4px;
  box-shadow: 0px 0px 5px grey;
  background: #fff;
}

span.rango-view-grid.fs24.grdl,
span.rango-view-list.fs24.grdl {
  font-size: 18px;
  top: 2px;
}

.view-mode .rango-view-list-container.active {
  color: #fff;
  background-color: #93c572;
}

.rango-view-grid-container.active {
  background: #93c572;
  color: #fff;
}

.prd-desc .add_to_cart {
  /* display: block; */
  position: relative;
  margin-top: 30px !important;
  text-align: center !important;
  right: 0;
}

/* Cart page */

/* .quantity .qty{
      height: 37px !important;
    } */

.cart_grid_view .prd-box .prd-desc .quantity .qty {
  height: 32px !important;
  width: 43px !important;
}

.cart_grid_view .prd-box .prd-desc .quantity {
  width: 120px !important;
}

.cart_grid_view .quantity .input-group-btn .quantity-btn {
  width: 36px !important;
}

.cart_grid_view .prd-box {
  margin-bottom: 15px;
}

/* Checkout */

.checkout_box {
  padding: 28px 0;
}

/* new css */

/* mini cart  */

#miniCart {
  position: relative;
}

#miniCart:hover+.cart_card {
  visibility: visible !important;
}

#miniCart .circle {
  border-radius: 50%;
  height: 22px;
  width: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -5px;
  font-size: 14px;
  right: -8px;
  background: red;
}

.cart_card {
  position: absolute;
  width: 32em;
  /*changes*/
  max-height: 360px;
  /*changes*/
  top: 95%;
  right: 0;
  z-index: 999;
  background: #fff;
  color: #000;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 18px -12px #000;
  opacity: 1;
  visibility: hidden;
  transition: all 0.3s;
}

.v_cart:hover .cart_card {
  opacity: 1;
  visibility: visible;
  z-index: 999999;
}

.cart_card .pct-desc {
  width: 200px;
  /*changes*/
  max-width: 100%;
  /*changes*/
  margin: auto 20px;
}

.cart_card .pct-desc p {
  font-size: 14px;
  text-transform: capitalize;
}

.d-flex.qty-right {
  align-items: center !important;
}

.cart_card ul {
  margin-left: 0;
  max-width: 100%;
  flex-direction: column;
  max-height: 230px;
  /*changes*/
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 15px;
  list-style: none;
}

.cart_card .quantity .qty {
  height: 35px;
  /*changes*/
}

.cart_card .price {
  font-size: 14px;
  /*changes*/
  margin: 0 25px;
  width: 100px;
  font-weight: 600;
}

.qty-list.input-group.d-flex.justify-content-end {
  justify-content: flex-start !important;
}

.qty-list .button-plus,
.qty-list .button-minus {
  width: 30px !important;
  height: 30px !important;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
  cursor: pointer;
  font-size: 0.875rem;
  color: #a3a3a3;
}

.qty-list.input-group .quantity-field {
  height: 30px !important;
  width: 30px !important;
  font-size: 14px;
  border: 1px solid #e1e1e1;
  border-right: none !important;
}

/* .qty-list .input-group .quantity-field {
        position: relative;
        height: 35px !important;
        text-align: center;
        width: 44px !important;
        display: inline-block;
        font-size: 16px;
        margin: 0 0 5px;
        resize: vertical;
        border: 1px solid #c6c6c6;
    } */

.search-results .quantity input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.cart_card ul::-webkit-scrollbar {
  width: 5px;
}

.cart_card ul::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.cart_card ul::-webkit-scrollbar-thumb {
  background: #ababab;
}

.cart_card ul::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.cart_card ul li {
  border-bottom: 1px solid #ccc;
  margin-bottom: 12px;
  padding-bottom: 5px;
}

.cart_card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin: auto;
}

.cart_card li a {
  color: #000;
  gap: 15px;
}

.pct-desc {
  min-width: 160px;
  font-size: 14px;
}

.pct-desc p {
  line-height: 1.35;
  margin-bottom: 5px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pct-desc span {
  /* color: var(--green); */
  font-size: 14px;
}

.btn.remove {
  padding: 0;
  rotate: 90deg;
  font-size: 24px;
  color: red;
}

.cart_card a.view-all {
  padding: 7px 18px;
  font-size: 14px;
  color: #fff !important;
}

.cart_card a.view-all.yellow {
  background: var(--yellow);
  color: #000;
}

.cart_card a.view-all.yellow:hover {
  background: #000;
  color: #fff;
}

p.sub-total {
  font-size: 18px;
  font-weight: 700;
  padding: 0 10px;
  margin-top: 12px;
}

.cart-image-wrapper {
  display: flex;
}

.search-results {
  padding: 15px;
  border-radius: 5px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
  max-height: 300px;
  overflow-y: scroll;
  z-index: 2;
  box-shadow: 0 5px 10px -5px #00000038;
  transition: all 0.3s;
  /* opacity: 0;
        visibility: hidden; */
}

.order_boking {
  width: 65%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .order_boking {
    width: 90%;
  }
}

.products_list_box {
  width: calc(100% - 250px);
  height: fit-content;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  background: #fff;
  padding-left: 20px;
}

.products_list_box .item {
  width: 20%;
  max-width: 240px;
  flex-grow: 1;
  margin: 5px;
}

.contact_wrapper_1 {
  background-color: #7f385e;
  padding: 55px 80px;
  border-radius: 23px;
  color: #ffff;
}

.contact_wrapper_1 .form-control {
  border: none;
  background-color: transparent;
  border-bottom: 3px solid #fff !important;
  border-radius: 0 !important;
  color: #ffff !important;
  padding: 14px 0 !important;
}

.contact_wrapper_1 .text-center .btn {
  border: none;
  transition: all 0.3s;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 13px 27px 13px 27px;
  line-height: 20px;
  letter-spacing: 0.5px;
  font-size: 15px;
  background-color: #43387f;
  color: #fff;
}

.contact_wrapper_1 .text-center .btn:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-5px);
}

@media only screen and (min-width: 1999px) and (max-width: 2399px) {
  .listing_wrapper .products_list_box {
    width: calc(100% - 0px);
  }

  .listing_wrapper .prd_box .prd_img {
    height: 340px;
    border-radius: 12px;
    box-shadow: 0px 8px 12px -5px #0000003d;
    overflow: hidden;
    margin-bottom: 15px;
    width: 100% !important;
    max-width: 340px;
  }

  .content.mt-4.detail_page {
    padding-top: 40px;
  }

  .product_preview_column.col-md-4.mx-auto {
    margin-bottom: 80px;
  }

  .detail_page .prd_desc {
    padding-left: 30px;
    width: 60% !important;
  }

  .why-us .sec_title .fancy_text {
    font-size: 92px;
    margin-bottom: 15%;
  }

  .products_list_box .item {
    width: 20%;
    max-width: 280px;
    flex-grow: 1;
    margin: 5px;
  }
}

.detail-addtocart .number {
  margin: 0 !important;
}

.media-icon li p:nth-child(1) {
  width: 22%;
}

.variant-item {
  flex: 0 0 auto;
  width: 15.666667%;
}

#v_container {
  cursor: pointer;
  width: 90px;
  display: flex;
  height: 90px;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.v_image {
  height: 65px;
  object-fit: cover;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.account_details {
  width: calc(100% - 250px);
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  padding-left: 20px;
}

/**********mobile responsive***************/
@media only screen and (max-width:480px) {
  .detail-addtocart {
    flex-direction: column;
    margin-left: -50%;
  }

  #variantContainer .variant-item {
    min-width: 33% !important;
  }

  .detail_page .prd_desc p {
    text-align: left !important;
  }

  .detail-addtocart .add-cart a {
    font-size: 16px;
    padding: 3px 9px;
  }

  a.addToCart {
    margin-left: 10px !important;
  }

  .detail-addtocart .number {
    position: relative !important;
    left: -10% !important;
  }

  .add-cart {
    position: relative;
    left: 5%;
  }
}

@media only screen and (max-width:768px) {
  header .container-fluid .col-md-3 {
    max-width: 50%;
  }

  header .col-md-6.text-center {
    display: none;
  }

  header i.text-purple.bx.bx-phone-call {
    font-size: 20px;
  }

  header .cnt_box p a {
    font-size: 14px;
  }

  header .col-md-6 a.login.me-4.text-black.fw-bold {
    font-size: 14px;
  }

  .sec_title h2.fancy_text {
    font-size: 50px;
  }

  .prd_box .prd_img {
    margin: 0 auto;
  }

  .prd_box .prd_name {
    margin: 30px 0;
  }

  /* wraps page */
  .listing_wrapper .col-12.d-flex.mb-5.p-3 {
    flex-direction: column;
  }

  .products_list_box .prd_box {
    width: fit-content;
  }

  .products_list_box .sidebar {
    width: auto;
  }

  .products_list_box .prd_box {
    width: 80vw;
  }

  .products_list_box .prd_box .prd_img {
    margin: 30px auto;
    /* height: 350px;
    width: 100%; */
  }

  .row.d-flex.flex-wrap .category {
    width: 100%;
    flex: auto;
    max-width: 100%;
  }

  .products_list_box .item {
    width: 50% !important;
    max-width: 250px !important;
  }

  #variantContainer .variant-item {
    min-width: 25%;
  }

  .prd_desc div {
    text-align: left;
  }

  .detail_page .prd_desc {
    text-align: left;
  }

  .container,
  .container-sm {
    max-width: 100%;
  }

  .detail_page .prd_desc p {
    text-align: left;
  }

  .detail-addtocart .number {
    position: static;
    margin-left: 0;
  }

  .detail-addtocart .add-cart a {
    min-width: 180px;
    margin-left: 10px;
  }

  .add-cart {
    position: static;
  }

  .sidebar {
    width: 82%;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 99999 !important;
    transition: all 0.3s;
    height: 100vh;
    overflow: auto;
  }

  .sidebar.open {
    left: 0;
    z-index: 999;
  }

  .account_details {
    width: 100%;
    padding-left: 0px;
    overflow: scroll;
  }

  .secs .col-12.d-flex {
    flex-direction: column;
    padding-left: 0px !important;
  }

  .cart_card {
    width: 92vw;
  }

  .cart_card ul {
    max-height: 230px;
    display: block;
  }

  .d-flex.cart___wrapper {
    display: block !important;
  }
}

/********************* Tab view *********************/
@media only screen and (min-width:769px) and (max-width:1200px) {
  a.navbar-brand.d-lg-none.d-block {
    display: none !important;
  }

  .products_list_box .item {
    width: 50%;
  }

  .products_list_box .item {
    width: 250px !important;
  }

  .container.secs.pt-0 {
    min-width: 100%;
  }

  .account_details .add_box {
    width: 100%;
  }

  .category {
    width: 33% !important;
    flex: 0 0 33% !important;
    max-width: 33% !important;
  }

  header .cnt_box p a {
    font-size: 19px;
  }

  .navbar-light .navbar-nav .nav-link {
    font-size: 15px;
    padding: 8px 5px;
  }

  .sidebar {
    width: 200px;
  }

  .account_details {
    width: calc(100% - 200px) !important;
  }
}