@import url("https://cdn.jsdelivr.net/npm/@flaticon/flaticon-uicons@3.3.1/css/regular/straight.css");

:root {
  --gardon-base: #2ab939;
  --gardon-black: #192919;
  --gardon-white: #ffffff;
  --gardon-bdr-radius: 6px;
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 100%;
    padding: 0 60px;
  }
}

.navbar-area {
  width: 100%;
  display: flex;
  justify-content: center;
}

.slide-item img {
  width: 100%;
}

.ptb50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

a.btn.btn-outline.btn-account {
  white-space: nowrap;
}

.button-header {
  display: flex;
  gap: 8px;
}

.button-header svg {
  height: 25px;
  color: var(--primary) !important;
}

.btn-account.cityicon {
  display: flex;
  align-items: center;
  gap: 5px;
  border: none;
  padding: 8px 10px;
  text-transform: capitalize;
  color: var(--primary) !important;
}

.btn-account.cityicon span {
  color: var(--text);
}

.btn-account.cityicon:hover {
  background: transparent;
}

.appliens-sect {
  position: relative;
  z-index: 1;
  background: linear-gradient(102.31deg, #F7F7FF 0%, #e0f0bc 51%, #F6F7FF 100%);
  overflow: hidden;
}

.banner-one__shape-bg-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .10;
  mix-blend-mode: plus-lighter;
  z-index: -1;
}

/*--------------------------------------------------------------
# Process One
--------------------------------------------------------------*/
.process-one {
  position: relative;
  display: block;
  background-image: -moz-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(233, 239, 229) 100%);
  background-image: -webkit-linear-gradient(1deg, rgb(255, 255, 255) 0%, rgb(233, 239, 229) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(233, 239, 229) 100%);
  overflow: hidden;
  counter-reset: count;
  padding: 50px 0;
  z-index: 1;
}

.news-part:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../images/img-shape.png);
  background-size: cover;
  z-index: -1;
}

.process-one__shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 226px;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  z-index: -1;
}

.process-one__top {
  position: relative;
  display: block;
  z-index: 1;
}

.process-one__shape-2 {
  position: absolute;
  top: 56px;
  left: 148px;
  z-index: -1;
}

.process-one__shape-2 img {
  width: auto;
}

.process-one__single {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.process-one__icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 170px;
  width: 170px;
  border: 2px dashed var(--gardon-base);
  background-color: rgb(245, 249, 244);
  border-radius: 50%;
  margin: 0 auto;
  z-index: 1;
}

.process-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background-image: -moz-linear-gradient(90deg, rgb(233, 239, 229) 0%, rgba(254, 253, 253, 0) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(233, 239, 229) 0%, rgba(254, 253, 253, 0) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(233, 239, 229) 0%, rgba(254, 253, 253, 0) 100%);
  z-index: 1;
}

.process-one__icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-radius: 50%;
  background-image: -moz-linear-gradient(0deg, rgb(25, 41, 25) 0%, rgb(42, 185, 57) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(25, 41, 25) 0%, rgb(42, 185, 57) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(25, 41, 25) 0%, rgb(42, 185, 57) 100%);
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.process-one__single:hover .process-one__icon:before {
  transform: scaleX(1);
}

.process-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 60px;
  color: var(--gardon-black);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.process-one__single:hover .process-one__icon span {
  transform: scale(0.9);
  color: var(--gardon-white);
}

.process-one__count-box {
  position: absolute;
  top: 0px;
  right: 41px;
  transform: rotate(27deg);
  z-index: 2;
}

.process-one__count-box:before {
  position: absolute;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  counter-increment: count;
  content: "0" counter(count);
  color: var(--gardon-white);
  background-color: var(--gardon-black);
  height: 30px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.process-one__single:hover .process-one__count-box:before {
  background-color: var(--gardon-base);
}

.process-one__count-box:after {
  content: "";
  position: absolute;
  top: -7px;
  right: -48px;
  border-top: 22px solid transparent;
  border-left: 25px solid var(--gardon-black);
  border-bottom: 22px solid transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.process-one__single:hover .process-one__count-box:after {
  border-left: 25px solid var(--gardon-base);
}

.process-one__content {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 23px;
}

.process-one__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.process-one__text {
  line-height: 26px;
}

.process-one__single--two .process-one__count-box {
  top: inherit;
  bottom: 20px;
  right: 63px;
  transform: rotate(-20deg);
}

.process-one__single--four .process-one__count-box {
  top: inherit;
  bottom: 30px;
  right: 45px;
  transform: rotate(0deg);
}


.process-one__single--two {
  margin-top: 40px;
}

.process-one__single--three {
  margin-top: 20px;
}

.process-one__bottom {
  position: relative;
  display: block;
  margin-top: 33px;
}

.process-one__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  border-radius: var(--gardon-bdr-radius);
  max-width: 850px;
  width: 100%;
  margin: 0 auto 0;
  padding: 15px 40px 15px;
  padding-right: 15px;
}

.process-one__bottom-left {
  position: relative;
  display: block;
}

.process-one__bottom-left p {
  font-size: 18px;
  color: var(--gardon-black);
}

.process-one__bottom-right {
  position: relative;
  display: block;
}

.process-one__bottom-btn-box {
  position: relative;
  display: block;
}

.process-one__bottom-btn {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 40px 4px;
}

.nav-select-group2 svg {
  height: 20px;
}

.nav-select-group2 {
  display: flex;
  justify-content: center;
  border: 1px dashed #ddd;
}

.product-media .product-image img {
  height: 190px;
  margin-left: auto;
  margin-right: auto;
  display: table;
  object-fit: contain;
}

.product-media a {
  display: block;
}

/*========================================
            PRIVACY PAGE STYLE
=========================================*/
.scrollspy {
  position: relative;
}

.scrollspy-content {
  margin-bottom: 50px;
}

.scrollspy-content:last-child {
  margin-bottom: 0px;
}

.scrollspy-content h3 {
  margin-bottom: 20px;
  padding-left: 50px;
  position: relative;
}

.scrollspy-content h3::before {
  position: absolute;
  content: "\efcc";
  top: 50%;
  left: 0px;
  width: 35px;
  height: 35px;
  font-size: 16px;
  font-family: icofont;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  color: var(--white);
  background: var(--primary);
}

/*========================================
            CONTACT PAGE STYLE
=========================================*/
.contact-form {
  border-radius: 8px;
  padding: 30px 30px;
  margin: 0px 2.5px 30px;
  background: var(--white);
}

.contact-form h4 {
  margin-bottom: 25px;
}

.contact-map {
  padding: 30px;
  margin: 0px 2.5px 30px;
  border-radius: 8px;
  background: var(--white);
}

.contact-map iframe {
  height: 474px;
  width: 100%;
  border: none;
}

.contact-social {
  text-align: center;
  margin-top: 20px;
}

.contact-social h4 {
  margin-bottom: 20px;
}

@media (max-width: 575px) {

  .contact-form,
  .contact-map {
    padding: 15px;
  }
}

@media (min-width: 401px) and (max-width: 575px) {
  .contact-part .container {
    max-width: 400px;
  }
}

.bbg {
  background: var(--body);
}

/*========================================
        PRODUCT DETAILS PAGE STYLE
=========================================*/
.details-gallery {
  position: relative;
  background: #fff;
  padding: 15px;
  height: 100%;
  align-items: center;
  justify-content: center;
}

a.btnlogin {
  color: #000;
  font-size: 15px;
}

.mobilheaderr {
  display: flex;
  align-items: center;
}

.details-label-group {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.details-label {
  font-size: 14px;
  padding: 6px 10px;
  margin-bottom: 6px;
  line-height: 13px;
  border-radius: 3px;
  text-transform: capitalize;
  text-align: center;
  color: var(--white);
}

.details-label:last-child {
  margin-bottom: 0px;
}

.details-label.off {
  background: var(--red);
}

.details-label.new {
  background: var(--green);
}

.details-label.sale {
  background: var(--orange);
}

.details-label.feat {
  background: var(--purple);
}

.details-label.rate {
  background: var(--yellow);
}

.details-preview {
  margin-bottom: 16px;
}

.details-preview li img {
  width: 80%;
  border-radius: 8px;
  margin-left: auto;
  margin-right: auto;
}

.details-thumb li {
  margin: 0px 8px;
  cursor: pointer;
}

.details-thumb li img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--white);
}

.details-thumb .slick-current img {
  border: 1px solid var(--primary);
}

.product-navigation {
  margin-bottom: 25px;
  padding: 20px 25px;
  border-radius: 8px;
  background: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-navigation li a {
  color: var(--text);
  text-transform: capitalize;
  position: relative;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.product-navigation li a:hover {
  color: var(--primary);
}

.product-navigation li a:hover .product-nav-popup {
  visibility: visible;
  opacity: 1;
}

.product-nav-popup {
  position: absolute;
  top: 30px;
  left: 50%;
  z-index: 3;
  width: 100px;
  height: auto;
  visibility: hidden;
  opacity: 0;
  padding: 10px;
  border-radius: 8px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  -webkit-box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.product-nav-popup::before {
  position: absolute;
  content: "";
  z-index: -1;
  top: -3px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  -webkit-transform: rotate(45deg) translateX(-50%);
  transform: rotate(45deg) translateX(-50%);
  background: var(--white);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.product-nav-popup img {
  width: 100%;
}

.product-nav-popup small {
  font-size: 14px;
  line-height: 18px;
  display: inline-block;
}

.details-content {
  padding: 35px 35px;
  border-radius: 8px;
  background: var(--white);
}

.details-name {
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.details-name a {
  color: var(--heading);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.details-name a:hover {
  color: var(--primary);
}

.details-meta {
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.details-meta p {
  font-size: 13px;
  margin-right: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--placeholder);
}

.details-meta span,
.details-meta a {
  margin-left: 5px;
  color: var(--placeholder);
}

.details-meta a:hover {
  text-decoration: underline;
  color: var(--primary);
}

.details-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 15px;
}

.details-rating i,
.details-rating a {
  font-size: 15px;
  margin-right: 3px;
  color: var(--gray);
}

.details-rating a {
  margin-left: 8px;
  white-space: nowrap;
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.details-rating a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.details-rating .active {
  color: var(--yellow);
}

.details-price {
  margin-bottom: 20px;
}

.details-price del {
  color: var(--red);
  margin-right: 25px;
}

.details-price span {
  color: var(--primary);
  white-space: nowrap;
}

.details-price span small {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}

.details-desc {
  margin-bottom: 25px;
}

.details-list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 25px;
}

.details-list-group:last-child {
  margin-bottom: 0px;
}

.details-list-title {
  font-weight: 500;
  margin-right: 15px;
  color: var(--heading);
  text-transform: capitalize;
}

.details-tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.details-tag-list li {
  margin-right: 8px;
}

.details-tag-list li a {
  font-size: 14px;
  line-height: 12px;
  padding: 8px 10px;
  border-radius: 5px;
  letter-spacing: 0.3px;
  text-transform: capitalize;
  color: var(--text);
  background: var(--chalk);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.details-tag-list li a:hover {
  color: var(--white);
  background: var(--primary);
}

.details-share-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.details-share-list li {
  margin-right: 8px;
}

.details-share-list li a {
  width: 35px;
  height: 35px;
  font-size: 16px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  color: var(--text);
  background: var(--chalk);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.details-share-list li a:hover {
  color: var(--white);
  background: var(--primary);
}

.main-faq-area .faq-heading {
  margin-bottom: 20px;
  font-size: 22px;
  border-bottom: 1px solid #eee;
  font-weight: 600;
}

.details-add-group .product-add,
.details-add-group .action-input {
  padding: 10px 0px;
  color: var(--white);
  background: var(--primary);
  text-transform: uppercase;
}

.details-add-group .action-minus i,
.details-add-group .action-plus i {
  background: var(--chalk);
}

.details-action-group {
  display: -ms-grid;
  display: grid;
  grid-gap: 15px;
  -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  position: relative;
}

.details-action-group a {
  padding: 10px 0px;
  border-radius: 8px;
  color: var(--text);
  background: var(--chalk);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.details-action-group a:hover {
  color: var(--primary);
}

.details-action-group a i {
  font-size: 16px;
  margin-right: 8px;
}

.details-action-group a span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.details-wish.active {
  color: var(--white);
  background: var(--primary);
}

.details-wish.active:hover {
  color: var(--white);
  background: var(--primary);
}

.product-details-frame {
  padding: 50px 0;
  border-radius: 8px;
  margin-bottom: 30px;
  background: var(--white);
}

.product-details-frame:last-child {
  margin-bottom: 0px;
}

.frame-title {
  margin-bottom: 30px;
  text-transform: capitalize;
}

.tab-descrip {
  position: relative;
}

.tab-descrip ul {
  list-style: disc;
  margin-left: 20px;
  margin-top: 25px;
}

.tab-descrip ul li {
  margin-bottom: 8px;
}

.tab-descrip ul li:last-child {
  margin-bottom: 0px;
}

.tab-descrip img {
  width: 100%;
  border-radius: 8px;
}

.tab-descrip a {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 80px;
  height: 80px;
  font-size: 22px;
  line-height: 80px;
  border-radius: 50%;
  text-align: center;
  color: var(--white);
  background: rgba(15, 199, 86, 0.8);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-shadow: var(--primary-bshadow);
  box-shadow: var(--primary-bshadow);
  text-shadow: var(--primary-tshadow);
}

.table-bordered {
  margin-bottom: 0px;
}

.table-bordered th,
.table-bordered td {
  padding: 12px 25px;
  text-align: left;
}

.table-bordered th {
  font-weight: 500;
}

.table-bordered td:last-child {
  border-right: 1px solid var(--border);
}

.review-item {
  padding: 45px 45px;
  border-radius: 8px;
  margin-bottom: 30px;
  background: var(--chalk);
  border: 1px solid var(--border);
}

.review-item:last-child {
  margin-bottom: 0px;
}

.review-media {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.review-avatar {
  margin-right: 15px;
  border-radius: 50%;
  border: 2px solid var(--primary);
}

.review-avatar img {
  width: 65px;
  border-radius: 50%;
  border: 2px solid var(--white);
}

.review-meta {
  text-transform: capitalize;
}

.review-meta a {
  color: var(--heading);
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.review-meta a:hover {
  color: var(--primary);
}

.review-meta span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
}

.review-meta span b {
  font-weight: 500;
  color: var(--primary);
}

.review-rating {
  margin-bottom: 10px;
}

.review-rating li {
  font-size: 16px;
  margin-right: 5px;
  color: var(--yellow);
  display: inline-block;
}

.review-desc {
  margin-bottom: 20px;
}

.review-reply {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.review-reply input {
  width: 100%;
  padding: 7px 18px;
  border-radius: 6px;
  margin-right: 20px;
  background: var(--white);
}

.review-reply button {
  font-size: 15px;
  padding: 6px 15px;
  border-radius: 6px;
  color: var(--white);
  background: var(--primary);
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.review-reply button:hover {
  background: var(--heading);
}

.review-reply button i {
  margin-right: 5px;
}

.review-reply-list {
  margin-left: 80px;
  margin-top: 35px;
  border-top: 1px solid var(--border);
}

.review-reply-item {
  padding: 30px 0px;
  border-bottom: 1px solid var(--border);
}

.review-reply-item:last-child {
  padding-bottom: 0px;
  border-bottom: none;
}

.review-form .btn {
  width: 100%;
  padding: 12px 30px;
}

@media (max-width: 991px) {
  .product-navigation {
    margin: 25px 0px;
  }
}

@media (max-width: 575px) {
  .details-content {
    padding: 10px;
  }

  .details-name {
    font-size: 20px;
    line-height: 30px;
  }

  .product-details-frame {
    padding: 20px;
  }

  .review-item {
    padding: 20px 15px;
  }

  .review-reply {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .review-reply input {
    margin: 0px 0px 15px;
  }

  .review-reply-list {
    margin-left: 25px;
  }

  .star-rating label {
    margin: 0px 6px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .review-reply-list {
    margin-left: 30px;
  }
}

.bredcrume-areas .breadcrumb-item a {
  color: #000;
}

.bredcrume-areas ol.breadcrumb {
  justify-content: flex-start;
}

.bredcrume-areas .breadcrumb-item+.breadcrumb-item::before {
  color: #000;
  padding: 0px 8px;
}

.bredcrume-areas .breadcrumb-item {
  font-size: 15px;
}

section.bredcrume-areas {
  background: #eee;
  padding: 10px 0;
}

section.bredcrume-areas .breadcrumb .active {
  color: #2e7b0b;
}

ol.ak-ul li {
  list-style: auto;
  margin-left: 30px !important;
  margin: 5px 0;
  ;
}

.nice-select.form-control.select {
  height: 35px;
  line-height: 32px;
  font-size: 15px;
}

.nice-select:after {
  right: 15px;
}

.product-section-layout .product-card {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border: 1px solid #ddd;
  margin-bottom: 0;
}

.btn-primary:hover {
  background-color: #3c9f43 !important;
  border-color: #3c9f43 !important;
}

.product-section-layout .product-add {
  border: 1px solid #ddd;
}

.prdt-img {
  background-image: url("../images/bg-shape1.jpg");
  padding: 15px;
  border-radius: 10px;
  background-size: 100% 100%;
}

.prdt-img img {
  height: 80px;
  width: 70%;
  margin-right: auto;
  margin-left: auto;
  display: table;
}

section.module-section.brand-sect .brand-logo:hover {
  box-shadow: none;
}

.feature-icon {
  color: #28a745;
  /* green tick */
  font-size: 1.2rem;
}

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 10px;
  background: #fff;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.05);
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
}

.search-box {
  max-width: 500px;
}

/* .cash-image {
      max-width: 350px;
    }*/
.search-box i {
  position: absolute;
  left: 12px;
  top: 18px;
}

.search-box input {
  padding-left: 40px;
  ;
}

.txt-danger {
  color: #fe6461 !important;
}

.grrrn {
  color: var(--primary);
}

.inner-shadow {
  background: linear-gradient(102.31deg, #F7F7FF 0%, #e0f0bc 51%, #F6F7FF 100%);
  padding: 20px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: rgb(99 99 99 / 4%) 0px 2px 8px 0px;
}

.inner-shadow:before {
  content: "";
  background-image: url(../images/banner-shape1.png);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .10;
  mix-blend-mode: plus-lighter;
  z-index: -1;
  height: 100%;
  width: 100%;
}

.brand-slider1 .brand-wrap {
  margin: 0 8px;
}




/*=========================================model page css start form here=======================*/
.module-section .model-box {
  box-shadow: rgb(99 99 99 / 36%) 0px 2px 8px 0px;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 185px;
  display: flex;
  justify-content: center;
  align-items: center;
}

select.form-control {
  appearance: auto;
  font-size: 14px;
}

.modalinput button {
  position: absolute;
  top: 4px;
  right: -10px;
  border: none;
}

.modalinput {
  position: relative;
}

.module-section .model-box:hover {
  transform: scale(1.05);
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
}

.module-section .model-box a {
  display: block;
}

.flexbox {
  width: 100%;
}

section.module-section.brand-sect .brand-logo {
  border: none;
  padding: 0;
  height: 65px;
  margin-bottom: 10px;
  width: 65px;
}

.main-sect .model-box {
  min-height: auto;
}

.module-section .model-box img {
  height: 85px;
  margin-bottom: 10px;
  width: 85px;
  object-fit: contain;
}

.module-section .model-box h4 {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}

.variant-box {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 40px;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.variant-box:hover {
  border-color: var(--primary);
  background: #f8f9fa;
}

.form-check-input:checked+label {
  border-color: var(--primary);
  font-weight: bold;
}

.forminput input {
  position: absolute;
  top: 15px;
  left: 15px;
}

a.product-add.disbaledak {
  opacity: .6;
  pointer-events: none;
}

.forminput a {
  color: #000;
}

p.itemprop {
  font-weight: 500;
  margin-bottom: 10px;
}

.mysection .details-preview li img {
  width: 60%;
  margin-right: auto;
  margin-left: auto;
}

.card1 {
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.question-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.continue-btn {
  padding: 0.6rem 2rem;
  font-weight: 600;
}

.device-summary {
  border-left: 3px solid var(--primary);
  padding-left: 1rem;
}

.device-summary h6 {
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.device-summary ul {
  list-style: none;
  padding-left: 0;
}

.device-summary ul li::before {
  content: "•";
  color: var(--primary);
  margin-right: 8px;
}

.device-img {
  max-width: 100px;
}

.hdflx img {
  height: 55px;
}

.hdflx {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
  gap: 20px;
  padding-bottom: 10px;
}

.question-sect .form-check.form-check-inline label {
  display: block;
}

.flexbox {
  width: 49%;
  display: inline-block;
}

.question-sect .form-check.form-check-inline {
  background: #f7f7f7;
  border: 1px solid #eee;
  width: 100%;
  padding: 2px 40px;
  border-radius: 5px;
  margin: 5px 0;
}


.toast-msg {
  display: none;
  position: fixed;
  top: 40px;
  right: 0;
  background: #92be2d;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  z-index: 9999;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
}

.step-indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.step-indicator .step {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 5px;
  transition: 0.3s;
}

.step-indicator .step.active {
  background: #0d6efd;
  color: #fff;
}

.card.selected {
  border: 1px solid #71a629;
}

.card.selected .step-content-hold {
  background: #71a629;
  color: #fff;
}

.small-img-box img {
  height: 60px;
  margin-top: 10px;
}

.step-content-hold {
  font-size: 12px;
  line-height: 15px;
  padding: 10px;
  margin-top: 11px;
  min-height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  white-space: pre-wrap;
  font-weight: 500;
  background: linear-gradient(102.31deg, #f6f6fb 0%, #e7eadf 51%, #F6F7FF 100%);
}

.dtl-step .card {
  cursor: pointer;
}

.bg-marquu {
  background: linear-gradient(45deg, #389b1f, #ff9e00);
}

.fs-32 {
  font-size: 16px;
}

.choose-icon i img {
  height: 46px;
}

.eco-section {
  background: #f5f9f6;
  padding: 50px 0;
}

.eco-title {
  font-size: 30px;
  font-weight: 700;
  color: #1b4332;
}

.eco-subtitle {
  font-size: 1.25rem;
  color: #2d6a4f;
  margin-bottom: 20px;
}

.eco-text {
  font-size: 1.1rem;
  color: #495057;
  max-width: 700px;
  margin: 0 auto;
}

.eco-highlight {
  color: #40916c;
  font-weight: 600;
}

.dashboard-menu ul {
  padding: 0;
  margin: 0;
}

.dashboard-menu ul li {
  position: relative;
  border-radius: 10px;
  border: 1px solid #ececec;
  border-radius: 10px;
}

.dashboard-menu ul li a {
  padding: 10px 30px;
  font-weight: 600;
}

.dashboard-menu ul li a i {
  color: #000;
  font-size: 17px;
  opacity: 0.6;
  position: relative;
  top: 2px;
}

.page-content label {
  font-weight: 700;
}

.dashboard-menu ul li:not(:last-child) {
  margin-bottom: 10px;
}

.page-content .card-header h3 {
  font-size: 20px;
}

.tab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tab-header .view-more {
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  border-bottom: 2px solid #cce7d0;
  margin-bottom: 20px;
}

.tab-header .view-more i {
  margin-left: 5px;
  margin-top: 5px;
  transition: 0.5s;
}

.tab-header .view-more:hover i {
  transform: translateX(5px);
  transition: 0.5s;
}

.boxwrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.user-profile-img {
  background-color: #2e7d32;
  border-radius: 10px;
  padding: 0;
}

.user-names-profile {
  align-items: center;
  background-color: #2e7d32;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 48px;
  height: 7rem;
  justify-content: center;
  padding: 6px;
  text-align: center;
  width: 7rem;
}

.profilebtn ul li a {
  font-size: 14px;
  font-weight: 500;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--primary);
}

.size-ptag p {
  font-size: 18px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.featured-card {
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #ececec;
  background: #fff;
  min-height: 155px;
}

.featured-card img {
  margin-bottom: 30px;
  width: 100px;
}

.featured-card h4 {
  margin-bottom: 10px;
}

.featured-card p {
  margin-bottom: 0;
}

.featured-card a {
  font-size: 16px;
}

.featured-card:hover {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}


.card3 {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.card3 h2 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 22px;
}

.card3 .card h2 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #333;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.card3 .row {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  font-size: 15px;
  color: #555;
}

.card3 .row span:last-child {
  font-weight: 500;
}

.card3 hr {
  border: none;
  border-top: 1px dashed #ccc;
  margin: 15px 0;
}

.card3 .total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: bold;
  color: #222;
}

.itemdata {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 20px;
}

.itemdata span:last-child {
  font-weight: 600;
}

/*----------------------------------------*/
/* Cart & Wish List CSS
/*----------------------------------------*/
.cart-main-area .section-title h2,
.coupon-area .section-title h2 {
  text-transform: capitalize;
  color: #555;
  font-weight: 500;
}

.shipping_method input {
  background: #eceff8 none repeat scroll 0 0;
  border: 2px solid #eceff8;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #626262;
  font-size: 14px;
  height: 45px;
  padding-left: 10px;
  width: inherit;
}

.cart-title-area {
  padding-top: 30px;
}

.car-header-title h2 {
  font-size: 20px;
  margin: 0;
  text-transform: uppercase;
}

.table-content table {
  background: #fff none repeat scroll 0 0;
  border-color: #e5e5e5;
  border-radius: 0;
  border-style: solid;
  border-width: 1px 0 0 1px;
  text-align: center;
  width: 100%;
}

.table-content table th {
  border-top: medium none;
  font-weight: 500;
  padding: 20px 10px;
  text-align: center;
  text-transform: capitalize;
  vertical-align: middle;
  white-space: nowrap;
  font-size: 15px;
}

.table-content table th,
.table-content table td {
  border-bottom: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}

.table-content table td {
  border-top: medium none;
  padding: 20px 10px;
  vertical-align: middle;
  font-size: 13px;
}

.table-content table td input {
  background: #e5e5e5 none repeat scroll 0 0;
  border: medium none;
  border-radius: 3px;
  color: #6f6f6f;
  font-size: 15px;
  font-weight: normal;
  height: 40px;
  padding: 0 5px 0 10px;
  width: 60px;
}

.table-content table td.product-subtotal {
  font-size: 15px;
  font-weight: 600;
  width: 120px;
}

.table-content table td.product-name a,
.product-stock-status span {
  font-size: 14px;
  font-weight: 500;
  margin-left: 10px;
  color: #6f6f6f;
  text-transform: capitalize;
}

.product-stock-status span {
  color: green;
  font-weight: 600;
}



.table-content table td.product-thumbnail {
  width: 100px;
}

.table-content table td.product-remove i {
  color: #919191;
  display: inline-block;
  font-size: 20px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 40px;
}

.table-content table .product-price .amount {
  font-size: 15px;
  font-weight: 600;
}

.table-content table td.product-remove a:hover i {
  color: #64cb31;
}



.table-content table td.product-name a:hover,
.buttons-cart a:hover {
  color: #64cb31;
}

.product-thumbnail img {
  width: 100%;
}

.buttons-cart {
  margin-bottom: 30px;
  overflow: hidden;
}

.buttons-cart input,
.coupon input[type="submit"],
.buttons-cart a,
.coupon-info p.form-row input[type="submit"] {
  background: #5c29ff none repeat scroll 0 0;
  border: medium none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  display: inline-block;
  float: left;
  font-size: 12px;
  font-weight: 600;
  height: 40px;
  line-height: 40px;
  margin-right: 15px;
  padding: 0 20px;
  text-shadow: none;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
  width: inherit;
  border-radius: 4px;
}

.wc-proceed-to-checkout {
  clear: both;
  display: block;
}

.buttons-cart input:hover,
.coupon input[type="submit"]:hover,
.buttons-cart a:hover,
.wc-proceed-to-checkout a:hover {
  background: #64cb31 none repeat scroll 0 0;
  color: #fff;
}

.buttons-cart a {
  color: #fff;
  float: left;
  height: 40px;
  line-height: 40px;
}

.cart_totals {
  width: 100%;
}

.btn-order1 a {
  display: block;
  background-color: #5c29ff;
  color: #fff;
  font-size: 20px;
  text-align: center;
  height: 60px;
  line-height: 60px;
  border-radius: 30px;
  margin-top: 30px;
}

.btn-order1 a:hover,
.btn-order1 a:focus {
  color: #FFF;
  text-decoration: none;
  background-color: #64cb31;
  outline: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cart_totals h2 {
  border-bottom: 2px solid #222;
  display: inline-block;
  font-size: 20px;
  margin: 0 0 35px;
  text-transform: uppercase;
  font-weight: 500;
}

.cart_totals table {
  border: medium none;
  margin: 0;
  text-align: right;
}

.cart_totals table th {
  border: medium none;
  font-size: 14px;
  font-weight: bold;
  padding: 0 20px 12px 0;
  text-align: right;
  text-transform: uppercase;
  vertical-align: top;
}

.cart_totals table td {
  border: medium none;
  padding: 0 0 12px;
  vertical-align: top;
}

.cart_totals table td .amount {
  color: #222222;
  font-size: 13px;
  font-weight: bold;
  margin-left: 5px;
  text-align: right;
  text-transform: uppercase;
}

.cart_totals table td ul#shipping_method {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

.cart_totals table td ul#shipping_method li {
  float: left;
  margin: 0 0 10px;
  padding: 0;
  text-indent: 0;
  width: 100%;
}

.cart_totals table td ul#shipping_method li input {
  margin: 0;
  position: relative;
  top: 2px;
}

a.shipping-calculator-button {
  font-weight: bold;
  color: #6f6f6f;
}

a.shipping-calculator-button:hover {
  color: #64cb31;
}

.cart_totals table tr.order-total th,
.cart_totals table tr.order-total .amount {
  font-size: 16px;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 600;
}

.cart_totals table tr.order-total th {
  font-weight: 700;
}

.wc-proceed-to-checkout a {
  background: #222222;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  height: 50px;
  line-height: 50px;
  margin-top: 20px;
  padding: 0 30px;
  text-transform: none;
  border-radius: 4px;
}

.amount del {
  font-size: 13px;
  margin-left: 5px;
  font-weight: 600;
}

.cart-main-area.wish-list .product-remove {
  width: 20px;
}

.cart-main-area.wish-list table td.product-thumbnail {
  width: 140px;
}

.cart-main-area.wish-list .product-add-to-cart a {
  text-transform: uppercase;
}

.cart-main-area.wish-list td.product-add-to-cart {
  width: 240px;
}

section.detaild-area h2 {
  font-size: 32px;
}

.brndflex {
  display: flex;
  align-items: center;
  gap: 20px;
}


/*============about page css start from here===================*/
.section-title2 {
  font-weight: 700;
  font-size: 28px;
}

.icon-box {
  font-size: 2.5rem;
  color: #198754;
}

.akbx {
  min-height: 220px;
}

.text-justify {
  text-align: justify;
}

.partner-section h3 {
  margin-bottom: 15px;
}

.partner-section p {
  margin-bottom: 15px;
}

#address-add .btn-outline-danger {
  font-size: 10px;
  padding: 4px 7px;
  text-align: center;
}

.ak-modal .modal-close {
  top: 12px !important;
  right: -11px !important;
  font-size: 18px !important;
  line-height: 23px !important;
  padding: 4px 7px;
}

.cart-card img {
  height: 50px;
}

.summary-card .summary-row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.product-card .product-content .product-name {
  height: 40px;
  line-height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}

.product-content {
  margin-top: 10px;
}

.btn1 {
  white-space: nowrap;
  font-size: 12px;
  padding: 5px 10px;
  line-height: 16px;
}

table#ordersTable {
  font-size: 14px;
}

/**=====================
    2.21 Loader CSS Start
==========================**/
.loader-wrapper {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  background-color: #fff;
  z-index: 11;
  top: 0;
}

.loader-wrapper .loader4 {
  position: relative;
  color: var(--primary);
  font-size: 50px;
  text-indent: -9999em;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: loader4 1.7s infinite ease, loader4Round 1.7s infinite ease;
  animation: loader4 1.7s infinite ease, loader4Round 1.7s infinite ease;
  overflow: hidden;
}

@-webkit-keyframes loader4 {
  0% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }

  5%,
  95% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }

  10%,
  59% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }

  20% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }

  38% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }

  100% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}

@keyframes loader4 {
  0% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }

  5%,
  95% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }

  10%,
  59% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }

  20% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }

  38% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }

  100% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}

@-webkit-keyframes loader4Round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader4Round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/**=====================
    2.21 Loader CSS Ends
==========================**/
.mobilcard {
  border: 1px dashed #ddd;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 20px;
  position: relative;
}

.cart-card img {
  height: 55px;
  width: 55px;
  object-fit: contain;
  border: 1px solid #eee;
}

.mobile-body {
  width: 60%;
}

.mobile-body .mobile-title {
  line-height: 20px !important;
}

#brandContainer i.icofont-arrow-left.bamdik {
  left: 0 !important;
}

#brandContainer i.icofont-arrow-right.bamdik {
  right: 0px !important;
  left: 97% !important;
}

.brand-slider .slick-track {
  padding: 22px 0;
}

.process-one__icon img {
  width: 100%;
}

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
  box-shadow: none !important;
}

div#summaryContent .list-group li {
  padding-right: 0;
  padding-left: 0;
  line-height: 20px;
}

div#summaryContent .list-group li strong {
  font-weight: 600;
}

div#summaryContent .list-group li:before {
  display: none;
}

div#summaryContent .list-group li span {
  font-weight: 500;
  background: linear-gradient(to right, rgb(44 112 8), rgb(108 143 23));
  color: #fff !important;
  padding: 1px 10px;
  display: block;
  width: fit-content;
  margin-top: 5px;
  border-radius: 3px;
}



.service-item {
  position: relative;
  background: #fff;
  border-radius: 30px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 20px;
  overflow: hidden;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.service-item::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgb(44 112 8), rgb(108 143 23)) !important;
  height: 0;
  width: 100%;
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.service-item.active:before,
.service-item:hover:before {
  height: 100%;
}

.service-item .icon-box {
  position: relative;
  margin-bottom: 15px;
  z-index: 1;
}

.service-item .icon-box img {
  width: 100%;
  max-width: 55px;
  transition: all 0.4s ease-in-out;
}

.service-item.active .icon-box img,
.service-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.service-title-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  z-index: 1;
}

.service-title {
  width: 100%;
}

.service-title h3 {
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
}

.service-item.active .service-title h3,
.service-item:hover .service-title h3 {
  color: #fff;
}

.service-title h3 a {
  color: inherit;
}

.service-btn a {
  position: relative;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  color: #fff;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-left: 15px;
  transition: all 0.4s ease-in-out;
}

.service-item.active .service-btn a,
.service-item:hover .service-btn a {
  background: var(--white-color);
  color: var(--accent-secondary-color);
}

.service-item .service-btn a:hover {
  color: var(--primary-color);
}

.service-btn a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90.15deg, var(--accent-color) 1.15%, var(--accent-secondary-color) 98.84%);
  height: 100%;
  width: 100%;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.service-btn a i {
  font-size: 20px;
  color: inherit;
}

.service-content {
  position: relative;
  z-index: 1;
}

.service-content p {
  margin-bottom: 0;
  line-height: 20px;
  transition: all 0.4s ease-in-out;
}

.service-item.active .service-content p,
.service-item:hover .service-content p {
  color: #fff;
}

.download-inner {
  background: linear-gradient(to right, rgb(44 112 8), rgb(108 143 23));
  border-radius: 20px;
  padding: 50px 40px;
}

.store-btn {
  height: 50px;
  width: auto;
}

.app-image {
  max-width: 90%;
}

.donload-img {
  margin-bottom: -52px;
}

button.btnsrch {
  position: absolute;
}

div#searchResultsBox1 {
  max-height: 200px;
}

.bg-green {
  background-image: -webkit-linear-gradient(1deg, rgb(255, 255, 255) 0%, rgb(233, 239, 229) 100%);
}

.whyselll .service-item {
  text-align: center;
}

.hraderright img {
  width: 100px;
}

.hraderright {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hraderright h4 {
  font-size: 18px;
  line-height: 18px;
}

.ulright ul li {
  position: relative;
  padding-left: 25px;
}

.ulright ul li:before {
  content: "\f058";
  font-family: "FontAwesome";
  color: var(--primary);
  position: absolute;
  left: 0;
}

.ulright ul {
  margin-left: 20px;
}
.footer-widget.uselinkk {
    padding-left: 80px;
}
.brand-areas .brand-wrap
 {
    width: 14%;
    display: inline-block;
    white-space: nowrap;
}
.brand-areas{white-space: nowrap;}
.modal-content.akmodal {
    background: #fff;
}


/*===============new css start from here=======================*/
.modal-holder {
    backdrop-filter: blur(14px);
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(to right, rgb(55 103 30), rgb(129 159 56 / 97%)) !important;
}
.modal-holder .modal-header .modal-title {
    color: #fff;
}

.modal-holder .modal-header {
    padding: 20px 15px;
    border-color: rgb(240 240 244 / 16%);
}
.modal-holder button.btn-close {
    background-color: #fff;
}
.modal-holder .header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.modal-holder .header h2{
    font-size:20px;
    font-weight:600;
}

.modal-holder .close{
    font-size:22px;
    cursor:pointer;
    opacity:0.8;
}

.modal-holder .form-group{
    margin-bottom:15px;
}

.modal-holder label {
    font-size: 13px;
    opacity: 0.85;
    margin: 0;
}

.modal-holder input{
    width:100%;
    padding:12px 14px;
    margin-top:6px;
    border-radius:8px;
    border:none;
    outline:none;
    background: rgba(255,255,255,0.18);
    color:#fff;
    font-size:14px;
}

.modal-holder input::placeholder{
    color:rgba(255,255,255,0.7);
}
 .modal-holder .modal-footer {
    border: none;
}
.modal-backdrop.show {
    opacity: .9;
}
.modal-holder .mb-3 {
    margin-bottom: 10px !important;
}
.modal-holder input:focus{
    background: rgba(255,255,255,0.28);
    box-shadow: 0 0 0 2px #81a831;
}
div#paymentButtons {
    gap: 10px;
}

.modal-holder .buttons{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.modal-holder .btn{
    flex:1;
    padding:12px;
    border-radius:30px;
    border:none;
    cursor:pointer;
    font-weight:500;
    font-size:14px;
    transition:0.3s ease;
}

.modal-holder .skip {
    background: transparent;
    border: 1px solid #81a831;
    color: #fff;
} 
.modal-holder .skip:hover{
    background:#81a831;
    color:#fff;
}

.modal-holder .place {
    background: linear-gradient(to right, rgb(242 243 241 / 63%), rgb(48 103 6));
    color: #000;
    font-weight: 600;
}

.modal-holder .place:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgb(16 38 4 / 50%);
}

@media(max-width:480px){
 .modal-holder .modal-holder{
        width:92%;
    }
}