@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');


html {
  scroll-behavior: smooth;
}

body {
  margin: 0 !important;
}

:root {
  /* background Colors: */
  --color-ffffff: #ffffff;
  --color-000000: #000000;
  --color-3c57c6: #3c57c6;
  --color-be1414: #e6566b;
  --color-3f3f3f: #3f3f3f;
  --color-2c2c2c: #2c2c2c;
  --color-47515e: #47515e;
  --color-fff4fa: #fbdddc;
  --color-edf6ff: #e9f1ff;
  --color-f6f6f6: #f6f6f6;
  --color-cccccc: #cccccc;
  --color-3f8f00: #3f8f00;
  --custom-background: linear-gradient(
    138deg,
    rgb(75 113 248) 0%,
    rgb(219 89 108) 100%
  );
  /* Font/text values */
--font-family-jost: 'Jost', sans-serif;

  --font-family-opensans: "Open Sans", serif;
  --font-family-montserrat: "Montserrat", serif;
  --font-size-10: 0.625rem;
  --font-size-12: 0.75rem;
  --font-size-14: 0.875rem;
  --font-size-16: 1rem;
  --font-size-18: 1.125rem;
  --font-size-20: 1.25rem;
  --font-size-24: 1.5rem;
  --font-size-30: 1.875rem;
  --font-size-36: 2.25rem;
  --font-size-40: 2.5rem;
  --font-size-48: 3rem;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;
}

/* common css start*/
* {
  outline: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-jost);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-16);
  color: var(--color-47515e);
  margin: 0;
  padding: 0;
}

.clr {
  width: 100%;
  float: left;
}

.img {
  width: 100%;
  image-rendering: pixelated;
}

a,
.btn,
button {
  color: var(--color-000000);
  outline: none;
  border: none;
  cursor: pointer;
  outline: 0;
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

a:focus,
.btn:focus,
button:focus,
select:focus,
.custom-select:focus,
.form-control:focus {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none;
  outline: none;
  box-shadow: none;
  color: var(--color-000000);
}

.btn:hover,
a:hover,
button:hover {
  color: var(--color-673418);
  text-decoration: none;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: #f8e2ff;
  transition-timing-function: linear;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-light);
  text-transform: normal;
  margin-bottom: 0.938rem;
    font-family: var(--font-family-jost);

}

h3 {
  font-size: var(--font-size-48);
  font-weight: var(--font-weight-regular);
}

h4 {
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-bold);
}

h5 {
  font-weight: var(--font-weight-regular);
}

h6 {
  color: var(--color-3c57c6) !important;
  font-size: var(--font-size-16) !important;
  font-weight: var(--font-weight-bold) !important;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

header,
footer,
section {
  width: 100%;
  float: left;
}

.swiper-pagination-bullet-active {
  color: #fff;
  background: var(--color-be1414);
}

.form-control {
  padding: 0.7rem;
  border: 0.1rem solid #cccccc7a;
  border-radius: 0;
}

/*checkbox*/
.checkbox input[type="checkbox"] {
  position: absolute;
  top: -300em;
}

.checkbox input[type="checkbox"]:checked + label {
  background-position: 0 0;
}

.checkbox label {
  background: url("https://i.imgur.com/5AuZEuV.png") no-repeat 0 -32px;
  padding: 0.2em 0 0.2em 2em;
  cursor: pointer;
}

.checkbox.checked label {
  background-position: 0 0;
}

/*radio*/
.radio input[type="radio"] {
  position: absolute;
  top: -3000px;
}

.radio input[type="radio"]:checked + label {
  background-position: 0 -66px;
}

.radio label {
  background: url("https://i.imgur.com/5AuZEuV.png") no-repeat 0 -98px;
  padding: 0.2em 0 0.2em 2em;
  cursor: pointer;
}

.radio.checked label {
  background-position: 0 -66px;
}

.common-btn {
    padding: 0.8rem 1.5rem;
    text-transform: uppercase;
    /* border-radius: 0.5rem; */
    font-size: var(--font-size-14);
    background-color: var(--color-ffffff);
    width: fit-content;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.common-btn i {
  margin-right: 0.5rem;
  font-weight: bold;
  font-size: 18px;
}

.common-btn:hover {
  background-color: var(--color-3c57c6);
  color: var(--color-ffffff) !important;
}

.common-btn-purple {
  width: 100%;
  background-color: var(--color-3c57c6);
  color: var(--color-ffffff) !important;
}

.common-btn-purple:hover {
  background-color: var(--color-47515e);
  color: var(--color-ffffff) !important;
}

.common-btn.border-btn {
  color: var(--color-47515e);
  margin-top: 1rem;
  background-color: var(--color-ffffff);
  width: 100%;
}

.common-btn.border-btn:hover {
  color: var(--color-ffffff);
  background-color: var(--color-3c57c6);
}

.common-link {
  font-size: var(--font-size-18);
  color: var(--color-3c57c6);
  margin-top: 1rem;
  display: inline-block;
  font-weight: var(--font-weight-bold);
}

.common-link i {
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
}

.common-btn.invoice-btn {
  color: #ffffff;
  /* margin-top: 1rem; */
  background-color: #0d6efd;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-bottom: 1rem;
}

.section-heading {
  font-size: var(--font-size-40);
}

p {
  font-size: var(--font-size-14);
  color: var(--color-47515e);
  margin-bottom: 0.938rem;
}

.section-space {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

#backtotop {
  display: inline-block;
  background-color: var(--color-47515e);
  width: 3.125rem;
  height: 3.125rem;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 1.875rem;
  right: 1.2rem;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: ease all 0.5s;
}

#backtotop .icon {
  font-size: var(--font-size-24);
  color: var(--color-ffffff);
  top: 0.3rem;
  position: relative;
  padding: 0.5rem;
}

#backtotop:hover {
  cursor: pointer;
  background-color: var(--color-be1414);
}

#backtotop:active {
  background-color: #555;
}

#backtotop.show {
  opacity: 1;
  visibility: visible;
}

.home-main-banner img {
  /* height: 400px; */
  width: 100%;
  object-fit: cover;
}

.swiper-button-prev {
  font-size: var(--font-size-16);
  background-color: var(--color-ffffff);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  left: 2.188rem;
  position: relative;
  color: var(--color-3f3f3f);
  transition: ease all 0.5s;
  padding: 0.5rem;
}

.swiper-button-prev ion-icon {
  font-size: 1.5rem;
}

.swiper-button-prev::after {
  display: none;
}

.swiper-button-prev:hover {
  background-color: var(--color-ffff);
  color: var(--color-3c57c6);
}

.swiper-button-next {
  font-size: var(--font-size-16);
  background-color: var(--color-ffffff);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  right: 2.188rem;
  position: relative;
  color: var(--color-3f3f3f);
  transition: ease all 0.5s;
  padding: 0.5rem;
}

.swiper-button-next ion-icon {
  font-size: 1.5rem;
}

.swiper-button-next::after {
  display: none;
}

.swiper-button-next:hover {
  background-color: var(--color-ffffff);
  color: var(--color-3c57c6);
}

.navbar-brand {
  padding: 5px 0;
  margin-right: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-img img {
  min-height: 300px;
}
.navbar .navbar-nav .dropdown-menu li {
        padding: 0.2rem 0;
    }
.navbar .navbar-nav .dropdown-menu a {
  font-size: 15px;
  color: #4f4f4f;
}
.navbar .navbar-nav .dropdown-menu a svg {
    font-size: 0.775rem !important;
}
.navbar-nav .dropdown-menu{
  padding: 2rem;
  border-radius: 0;
}
.navbar-expand-xl {
  padding: 0;
}

.navbar .navbar-nav .nav-link {
    padding: 1rem;
    font-weight: 600;
    position: relative;
    transition: 
ease all 0.5s;
    font-size: var(--font-size-14);
    text-transform: uppercase;
    color: var(--color-ffffff) !important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

.navbar .navbar-nav .nav-link:hover {
  color:var(--color-be1414) !important;
}

/* .navbar .navbar-nav .nav-item .nav-link::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .5em solid;
    border-right: .5em solid transparent;
    border-bottom: 0;
    border-left: .5em solid transparent;
} */
.shrink {
  position: fixed;
  background: var(--color-ffffff);
  background-size: contain;
  background-repeat: repeat-x;
  display: inline-block;
  top: 0;
  z-index: 999;
  width: 100%;
  display: block;
  animation: smoothScroll 1.5s forwards;
  background-position: bottom;
  box-shadow: drop-shadow(2px 4px 6px rgba(128, 128, 128, 0.418));
  /* height: 146px; */
}

.shrink .contact-box {
  display: none !important;
}

.shrink .navbar-brand img {
  /* width: 80px; */
}

header {
  position: relative;
  margin: 0 auto;
  /* background-color: var(--color-f6f6f6); */
}

.top-header {
  text-align: right;
}

.main-header {
  height: 100%;
  width: 100%;
  justify-content: space-between;
  font-weight: var(--font-weight-medium);
  color: var(--color-ffffff);
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-content: end;
}

.right-contact-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.choices {
  position: relative;
  margin-bottom: 24px;
  font-size: 16px;
}

.choices:focus {
  outline: none;
}

.choices:last-child {
  margin-bottom: 0;
}

.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #eaeaea;
  cursor: not-allowed;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.choices.is-disabled .choices__item {
  cursor: not-allowed;
}

.choices[data-type*="select-one"] {
  cursor: pointer;
}

.choices[data-type*="select-one"] .choices__inner {
  padding-bottom: 7.5px;
}

.choices[data-type*="select-one"] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #dddddd;
  background-color: #ffffff;
  margin: 0;
}

.choices[data-type*="select-one"] .choices__button {
  /* background-image: url("../../icons/cross-inverse.svg"); */
  padding: 0;
  background-size: 8px;
  height: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: 0.5;
}

.choices[data-type*="select-one"] .choices__button:hover,
.choices[data-type*="select-one"] .choices__button:focus {
  opacity: 1;
}

.choices[data-type*="select-one"] .choices__button:focus {
  box-shadow: 0px 0px 0px 2px #00bcd4;
}

.choices[data-type*="select-one"]:after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333333 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}

.choices[data-type*="select-one"].is-open:after {
  border-color: transparent transparent #333333 transparent;
  margin-top: -7.5px;
}

.choices[data-type*="select-one"][dir="rtl"]:after {
  left: 11.5px;
  right: auto;
}

.choices[data-type*="select-one"][dir="rtl"] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices[data-type*="select-multiple"] .choices__inner,
.choices[data-type*="text"] .choices__inner {
  cursor: text;
}

.choices[data-type*="select-multiple"] .choices__button,
.choices[data-type*="text"] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #008fa1;
  /* background-image: url("../../icons/cross.svg"); */
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: 0.75;
}

.choices[data-type*="select-multiple"] .choices__button:hover,
.choices[data-type*="select-multiple"] .choices__button:focus,
.choices[data-type*="text"] .choices__button:hover,
.choices[data-type*="text"] .choices__button:focus {
  opacity: 1;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #dddddd;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}

.is-focused .choices__inner,
.is-open .choices__inner {
  border-color: #b7b7b7;
}

.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}

.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}

[dir="rtl"] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}

.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}

.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #00bcd4;
  border: 1px solid #00a5bb;
  color: #ffffff;
  word-break: break-all;
}

.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}

[dir="rtl"] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}

.choices__list--multiple .choices__item.is-highlighted {
  background-color: #00a5bb;
  border: 1px solid #008fa1;
}

.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaaaaa;
  border: 1px solid #919191;
}

.choices__list--dropdown {
  display: none;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
}

.choices__list--dropdown.is-active {
  display: block;
}

.is-open .choices__list--dropdown {
  border-color: #b7b7b7;
}

.is-flipped .choices__list--dropdown {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: 0.25rem 0.25rem 0 0;
}

.choices__list--dropdown .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}

.choices__list--dropdown .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}

[dir="rtl"] .choices__list--dropdown .choices__item {
  text-align: right;
}

@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable {
    padding-right: 100px;
  }

  .choices__list--dropdown .choices__item--selectable:after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  [dir="rtl"] .choices__list--dropdown .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }

  [dir="rtl"] .choices__list--dropdown .choices__item--selectable:after {
    right: auto;
    left: 10px;
  }
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
  opacity: 0.5;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0.5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray;
}

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.choices__button:focus {
  outline: none;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}

.choices__input:focus {
  outline: 0;
}

[dir="rtl"] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: 0.5;
}

.input-select select {
  width: 100%;
  border: transparent;
  color: var(--color-47515e);
  padding: 0 1rem;
  margin-right: 0;
  height: 50px;
  background-color: transparent;
  font-size: var(--font-size-12);
   position: relative;
   font-weight:600;
}




    .select-trigger {
      background-color: #f0f0f0;
      padding: 10px;
      cursor: pointer;
    }

    .options {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      border: 1px solid #ccc;
      background-color: white;
      z-index: 1000;
    }

    .options div {
      padding: 10px;
      cursor: pointer;
    }

    .options div:hover {
      background-color: #e0e0e0;
    }

    /* Show dropdown on hover */
    .custom-select:hover .options {
      display: block;
    }

    input:-internal-autofill-selected{
            background-color: transparent;

    }

.top-search form .inner-form .input-field.second-wrap input::placeholder{
  font-size: var(--font-size-12);

}
.top-search form {
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
}

.top-search form .inner-form {
  background: var(--color-f6f6f6);
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--font-family-opensans);
  /* box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15); */
  border-radius: 5rem;
  overflow: hidden;
  font-size: var(--font-size-14);
  height: 50px;
}

.top-search form .inner-form .input-field input.placeholder {
  color: #888;
  font-size: 1rem;
}

.top-search form .inner-form .input-field input:-moz-placeholder {
  color: #888;
  font-size: 1rem;
}

.top-search form .inner-form .input-field input::-webkit-input-placeholder {
  color: #888;
  font-size: 1rem;
}

.top-search form .inner-form .input-field.first-wrap {
  width: 180px;
}

.top-search form .inner-form .input-field.first-wrap .choices__inner {
  background: transparent;
  border-radius: 0;
  border: 0;
  height: 100%;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 30px;
}

.top-search
  form
  .inner-form
  .input-field.first-wrap
  .choices__inner
  .choices__list.choices__list--single {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.top-search
  form
  .inner-form
  .input-field.first-wrap
  .choices__inner
  .choices__item.choices__item--selectable.choices__placeholder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  opacity: 1;
  color: #888;
}

.top-search
  form
  .inner-form
  .input-field.first-wrap
  .choices__inner
  .choices__list--single
  .choices__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  color: #555;
}

.top-search
  form
  .inner-form
  .input-field.first-wrap
  .choices[data-type*="select-one"]:after {
  right: 30px;
  border-color: #e5e5e5 transparent transparent transparent;
}

.top-search
  form
  .inner-form
  .input-field.first-wrap
  .choices__list.choices__list--dropdown {
  border: 0;
  background: #fff;
  padding: 20px 30px;
  margin-top: 2px;
  border-radius: 4px;
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
}

.top-search
  form
  .inner-form
  .input-field.first-wrap
  .choices__list.choices__list--dropdown
  .choices__item--selectable {
  padding-right: 0;
}

.top-search
  form
  .inner-form
  .input-field.first-wrap
  .choices__list--dropdown
  .choices__item--selectable.is-highlighted {
  background: #fff;
  color: #63c76a;
}

.top-search
  form
  .inner-form
  .input-field.first-wrap
  .choices__list--dropdown
  .choices__item {
  color: #555;
  min-height: 24px;
}

.top-search form .inner-form .input-field.second-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 100%;
}

.top-search form .inner-form .input-field.second-wrap input {
    border: transparent;
    padding: 0.8rem;
    font-family: var(--font-family-opensans);
    width: 280px;
    padding-left: 19px;
    /* margin-left: 19px; */
    height: 50px;
    background-color: transparent;
    border-left: 1px solid #ffffff;
    margin-left: 19px;
    font-size: var(--font-size-12);
}

.top-search form .inner-form .input-field.third-wrap .btn-search {
    height: 100%;
    width: 100%;
    white-space: nowrap;
    color: #6c6c6c !important;
    border: 0;
    cursor: pointer;
    background-color: var(--color-f6f6f6);
    transition: all 0.2s 
ease-out, color 0.2s 
ease-out;
    font-size: 31px;
    top: -3px;
    position: relative;
    padding: 0 1rem;
    height: 50px;
}

.top-search-mobile {
  top: 0px !important;
  padding: 0px 0.8rem !important;
}

.top-search form .inner-form .input-field.third-wrap .btn-search ion-icon {
  font-size: var(--font-size-24);
  color: var(--color-ffffff);
  /* top: -3px; */
  position: relative;
}

.top-search form .inner-form .input-field.third-wrap .btn-search:hover {
    background: #4f4f4f;
    color: var(--color-ffffff) !important;
    height: 55px;
}

.top-search form .inner-form .input-field.third-wrap .btn-search:focus {
  outline: 0;
  box-shadow: none;
}

.top-links ul {
  display: flex;
}

.top-links ul li {
  text-align: center;
}

.top-links ul li a {
  margin-left: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-links h6 {
  text-transform: uppercase;
  font-weight: var(--font-weight-extrabold);
  margin-top: 1px;
  color: #3f3f3f;
  font-size: var(--font-size-10);
  letter-spacing: 1px;
  margin-bottom: 0;
}

.top-links .icon {
  /* background-color: var(--color-be1414); */
  padding: 1rem 0rem;
  border-radius: 10rem;
  /* width: 3rem; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 3rem; */
  color: #4f4f4f;
  transition: ease all 0.5s;
  font-size: var(--font-size-18);
  position: relative;
}

.top-links .icon i {
  font-weight: var(--font-weight-bold);
}

.top-links .icon:hover {
  color: var(--color-be1414);
}

.top-links .wishlist-btn .icon i {
  position: relative;
  top: 0.2rem;
  left: 0.05rem;
}

.cart-btn {
  position: relative;
}

.cart-btn .dropdown-toggle::after {
  border: transparent;
}
.view-all-toggle{
    font-size: 13px;
    font-weight: 700;
    text-decoration: underline;
}
.cart-btn .dropdown-menu.dropdown-menu-right {
  right: -23px;
  top: 50px;
  /* display: flex; */
  /* flex-direction: column; */
  width: 20rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  /* opacity: 0; */
  /* top: 26px; */
  /* visibility: hidden; */
  padding: 0;
  border-radius: 0;
}

.cart-btn .dropdown-menu.dropdown-menu-right a {
    margin-left: 0;
    margin-top: 0.8rem;
}
.cart-btn .shopping-cart-header {
  display: flex;
}

.cart-btn .shopping-cart-items {
  display: flex;
  flex-direction: column;
}

.shopping-cart-header {
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 15px;
}

.shopping-cart-header .shopping-cart-total {
  float: right;
}

.download-app a {
  font-size: var(--font-size-12);
  display: flex;
  color: var(--color-ffffff) !important;
  font-weight: bold;
  text-transform: uppercase;
  align-items: center;
  justify-content: end;
  position: fixed;
  right: 22px;
  bottom: 149px;
  z-index: 99;
}

.download-app .icon {
  font-size: var(--font-size-20) !important;
  background-color: var(--color-be1414);
  border-radius: 100%;
  padding: 1rem;
}

.download-app :hover .icon {
  background-color: var(--color-3c57c6);
}

.cart-icon {
  color: #515783;
  font-size: 24px;
  margin-right: 7px;
  float: left;
}

.shopping-cart-popup {
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-right: transparent !important;
  margin-right: 0 !important;
}
.shopping-cart-popup p{
  margin-bottom: 0;
}
.shopping-cart-popup h5 {
    margin-bottom: 0.5rem;
    font-size: var(--font-size-14);
}

.shopping-cart-popup .shopping-cart-total {
  float: right;
}

.shopping-cart-popup {
  padding-top: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.shopping-cart-popup li {
  /* margin-bottom: 11px; */
  display: flex;
  text-align: left !important;
  font-size: 12px;
  justify-content: space-between;
  padding: 5px 0 !important;
  /* padding-bottom: 1rem; */
  padding-bottom: 1rem;
  /* display: contents; */
}
.shopping-cart-popup img {
  float: left;
  margin-right: 12px;
  width: 5rem;
}

.shopping-cart-popup .item-name {
  display: block;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.shopping-cart-popup .item-price {
  color: var(--color-3c57c6);
  font-size: var(--font-size-16);
}

.shopping-cart-popup .item-quantity {
  color: #abb0be;
}

.shopping-cart-popup:after {
  bottom: 100%;
  left: 89%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: white;
  border-width: 8px;
  margin-left: -8px;
}

.wishlist-btn {
  position: relative;
}

.wishlist-btn .dropdown-toggle::after {
  border: transparent;
}

.wishlist-btn .dropdown-menu.dropdown-menu-right {
  /* right: -12px; */
  /* display: flex; */
  /* flex-direction: column; */
  width: 20rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  /* opacity: 0; */
  /* visibility: hidden; */
  padding: 0;
}

.wishlist-btn .dropdown-menu.dropdown-menu-right a {
  margin-left: 0;
}

.call-btn {
  display: flex;
  margin-left: 1.5rem;
  font-weight: bold;
  color: var(--color-3c57c6) !important;
  margin-right: 1rem;
}

.right-contact-box .call-box {
  display: flex;
  margin-left: 1rem;
}

.call-box-content {
  margin-left: 0.5rem;
  font-size: 14px;
}

.call-btn a {
  color: var(--color-47515e) !important;
}

.call-btn a:hover {
  color: var(--color-be1414) !important;
}

.top-links.call-btn .icon {
  height: 3rem;
  width: 3rem;
  margin-right: 0.3rem;
  color: var(--color-ffffff);
  background-color: var(--color-47515e);
}

.top-links.call-btn:hover .icon {
  color: var(--color-ffffff);
  background-color: var(--color-2c2c2c);
}

.login-btn {
  position: relative;
}

.login-btn ion-icon {
  font-size: var(--font-size-18);
}

.field-icon {
  float: right;
  margin-right: 1rem;
  margin-top: -2.3rem;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.field-icon:hover {
  /* color: var(--color-47515e); */
}

.login-btn .dropdown-menu.dropdown-menu-right {
  right: -16px;
    top: 50px;
  /* display: flex; */
  /* flex-direction: column; */
  width: 17rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  /* opacity: 0; */
  /* visibility: hidden; */
  padding: 0;
  border-radius: 0;
}

.login-btn .dropdown-toggle::after {
  border: transparent;
}

.download-app-btn .dropdown-toggle::after {
  border: transparent;
}

.cart-item-counter {
  top: 10px;
  right: -10px;
  padding: 0.15rem;
  background-color: var(--color-be1414);
  color: var(--color-ffffff);
  font-size: 10px;
  border-radius: 100%;
  position: absolute;
 
  width: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-menu-item-counter {
  padding: 0.15rem;
  background-color: #6c757d;
  color: var(--color-ffffff);
  font-size: 10px;
  border-radius: 100%;
  /* position: absolute; */
  /* top: -5px; */
  /* right: 5px; */
  width: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
}

.headerbox {
  padding: 0.5rem 0;
}

.headerbox img {
  width: 200px;
}

.menu-box {
    background-color: #1a5ecc;
    color: var(--color-ffffff);
}

@media all and (min-width: 992px) {
  /* Show the dropdown when hovering over the parent */
  .dropdown:hover .dropdown-menu {
    display: block !important;
    visibility: visible;
    opacity: 1;
    z-index: 99;
    transform: translateY(0);
    /* Optional: You can add a sliding effect */
  }

  /* Optional: Add a smooth transition for dropdown visibility */
  .dropdown-menu {
    display: none !important;
    visibility: hidden;
    width: 13rem;
    opacity: 0;
    animation: 0.5s slideup;
    border: transparent;
  }

  .mega-submenu {
    left: 100%;
    top: 0;
    min-width: 25rem;
  }

  .dropdown {
    position: static;
    transition: ease all 0.5s;
  }

  .mega-menu {
    left: 0;
    right: 0;
    width: 100% !important;
    padding: 1rem;
    z-index: 99;
  }

  .dropdown-menu li {
    position: relative;
    padding: 0.1rem 0;
  }

  .dropdown-menu li a {
    transition: ease all 0.5s;
  }

  .dropdown-menu li a:hover {
    color: var(--color-3c57c6);
  }

  .dropdown-menu .submenu {
    display: none;
    left: 100%;
    top: 0;
  }

  .dropdown-menu ul {
    border-right: 1px dotted #75757550;
    margin-right: 30px;
  }

  .dropdown-menu > li:hover > .submenu,
  .dropdown:hover > .dropdown-menu {
    display: block;
  }

  .dropdown-menu > li:hover > .submenu,
  .dropdown:hover > .dropdown-menu {
    display: block;
  }

  @keyframes slideup {
    from {
      transform: translateY(10%);
    }

    to {
      transform: translateY(0);
    }
  }
}

/* Custom Icons */
.top-links .icon {
  font-size: 30px;
}


.main-category {
  position: relative;
  z-index: 99;
}

.main-category-box {
  position: relative;
  border-radius: 25px;
  padding: 4rem;
  min-height: 377px;
  transition: ease all 0.5s;
  /* filter: drop-shadow(2px 4px 6px rgba(128, 128, 128, 0.418)); */
  /* top: 28%; */
  /* height: 110px; */
  overflow: hidden;
}

.main-category-box h3 {
  font-size: var(--font-size-40);
  width: 70%;
  color: var(--color-ffffff);
  margin-bottom: 5rem;
  display: flex;
  font-weight: var(--font-weight-semibold);
}



.main-category-box .common-btn {
  transition: ease all 0.5s;
  display: inline;
  position: absolute;
  bottom: 3rem;
  text-transform: uppercase !important;
  font-size: 14px;
}
.main-category-box img {
  transition: ease all 0.5s;

}


.main-category-box a {
  z-index: 1;
  position: relative;
}
/* .main-categoary-slider .swiper-slide img{
height:300px;
object-fit:cover;
width:100%;
} */

/* .main-categoary-slider .swiper-slide img {
  height: 250px;
} */
.main-trophy-img img {
  width: 492px;
  right: -113px;
  position: absolute;
  top: 0;
  z-index: 0;
}

.main-uniform-img img {
  width: 465px;
  right: -42px;
  position: absolute;
  top: -11px;
}

.trophy-category-box {
  background-image: url(../images/trophies-cups-medals.jpg) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--color-be1414) !important;
  background-position: right;
  transition: ease all 0.5s;
}

.trophy-category-box:hover .common-btn {
  background-color: var(--color-3c57c6);
  color: var(--color-ffffff);
}
.trophy-category-box:hover {
    transform: scale(1.01);
}
.trophies-section {
    background-color: #fff1f3;
}
.trophies-section h4 {
    position: relative;
    width: 100%;
    display: flex
;
    flex-direction: column;
    align-items: center;
}
.trophies-section h4::after {
    position: relative;
    width: 150px;
    height: 2px;
    background-color: #4f4f4f;
    content: '';
    display: flex
;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    flex-direction: column;
}
.uniforms-category-box {
  background-image: url(../images/uniform-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--color-3c57c6);
  background-position: right;
}

.uniforms-category-box:hover .common-btn {
  background-color: var(--color-be1414);
  color: var(--color-ffffff);
}
.uniforms-category-box:hover {
    transform: scale(1.01);
}
.uniforms-category-box h3 {
  color: var(--color-ffffff);
  margin-bottom: 5rem;
  display: flex;
}

.category-slider h4 {
  color: var(--color-4f4f4f) !important;
}

.uniforms-section {
  background-color: #f7f9ff;
}
.uniforms-section h4 {
    position: relative;
    width: 100%;
    display: flex
;
    flex-direction: column;
    align-items: center;
}
.uniforms-section h4::after {
    position: relative;
    width: 150px;
    height: 2px;
    background-color: #4f4f4f;
    content: '';
    display: flex
;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    flex-direction: column;
}
.category-section .swiper-pagination {
  bottom: -40px !important;
}

.category-slider {
    margin: 0px 2.5rem;
    overflow: hidden;
}

.category-slider .swiper-slide {
  text-align: center;
}
.category-slider .swiper-wrapper{
  width: 80%;
}
.category-slider .swiper-button-next,
.category-slider .swiper-button-prev {
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* Prevent hover-trigger until visible */
}

.category-slider:hover .swiper-button-next,
.category-slider:hover .swiper-button-prev {
  opacity: 1;
  pointer-events: auto; /* Reactivate on hover */
}

.category-img img {
      position: relative;

    border-radius: 100%;
    width: 230px;
    height: 100%;
    object-fit: contain;
    padding:2rem;
    transition: ease all 0.5s;
    /* border: 2px solid var(--color-f6f6f6); */
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px; */
    background: var(--color-ffffff);
}

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

.category-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin:1rem;
}

.category-box h6 {
    color:#4f4f4f !important;
    margin-bottom: 0 !important;
    font-family: var(--font-family-opensans);
    margin-top: 1rem;
}

.category-img a {
  width: 11rem;
  height: 11rem;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-slider h4 {
  color: var(--color-3c57c6);
  margin-bottom: 0;
  font-size: var(--font-size-18);
  margin-top: 1rem;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
}

.category-slider .swiper-button-next {
  right: 0rem;
  position: absolute;
  transition: ease all 0.5s;
}

.category-slider .swiper-button-prev {
  left: 0rem;
  position: absolute;
  transition:ease all 0.5s;
}
.swiper-button-prev.trophies-swiper-button-prev:hover{
    background-color: #454545;

} .swiper-button-prev:hover svg{
color: #ffffff !important;
}
.swiper-button-next.trophies-swiper-button-next:hover{
    background-color: #454545;

} .swiper-button-next:hover svg{
color: #ffffff !important;
}
.swiper-button-prev.uniform-swiper-button-prev:hover{
    background-color: #454545;

}
.swiper-button-next.uniform-swiper-button-next:hover{
    background-color: #454545;

} 
/* aboutsection */
.about-section {
  padding-top: 3rem;
}
.about-section strong{
  color: var(--color-ffffff);
}
.about-section .col-12 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-img {
  position: relative;
}

.about-img::after {
  width: 13.125rem;
  height: 13.125rem;
  background-color: var(--color-97927F);
  position: absolute;
  content: "";
  z-index: -1;
  bottom: -20px;
  right: -20px;
}

.about-right-img {
  width: 100%;
  margin-top: -175px;
  position: relative;
  display: flex;
  justify-content: end;
  z-index: -1;
  position: absolute;
  top: 114px;
}

.about-right-img img {
  display: flex;
  justify-content: flex-end;
  width: 30%;
  /* align-items: flex-end; */
}

.about-right-img {
  position: relative;
}

.about-right-img::after {
  width: 13.125rem;
  height: 13.125rem;
  background-color: var(--color-673418);
  position: absolute;
  content: "";
  z-index: -1;
  top: -20px;
  right: -20px;
}

.about-section {
  position: relative;
  background-color: var(--color-3c57c6);
  color: var(--color-ffffff);
}

.about-section .row {
  display: flex;
  /* flex-direction: column; */
  /* align-items: center; */
  justify-content: center;
}

.about-section p {
  color: var(--color-ffffff);
}

.about-section h4 {
  color: var(--color-ffffff) !important;
}

.quality-img {
  position: absolute;
  top: 26%;
  left: 0;
  z-index: 9;
}

.feature-section h4 {
  margin-bottom: 3rem;
  font-weight: var(--font-weight-bold);
}
.feature-section h4::after {
    position: relative;
    width: 150px;
    height: 2px;
    background-color: #4f4f4f;
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    flex-direction: column;
    text-align: center;
    margin:1rem auto;
}
.feature-section .icon {
    display: flex;
}
.feature-section .icon svg {
    font-size: 54px;
    margin-right: 1rem;
}
.feature-box {
    display: flex;
    padding: 1rem;
}


.feature-box h3 {
  margin-bottom: 3rem;
}

.feature-box h6 {
  margin-bottom: 0.5rem;
  color: var(--color-47515e) !important;
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-bold);
}

.feature-box p {
    font-size: var(--font-size-14);
    /* text-align: justify; */
    padding-bottom: 0;
}

.keyword-app-box {
  background-color: var(--color-edf6ff);
  margin-top: 19rem;
  display: none;
}

.download-left h3 {
  color: var(--color-ffffff);
}

.download-app-box {
  background: var(--custom-background);
  margin-bottom: 100px;
  border-radius: 0.938rem;
  padding: 5rem;
  margin-top: -19rem;
  position: relative;
  color: var(--color-ffffff);
  font-weight: var(--font-weight-medium);
  min-height: 400px;
  position: relative;
}

.download-app-box .row {
  display: flex;
  align-items: center;
  height: 100%;
}

.available-on {
  display: flex;
  /* margin-bottom: 2rem; */
  align-items: center;
  margin-top: 2rem;
}

.available-on h6 {
  color: var(--color-ffffff) !important;
  margin: 0;
  margin-right: 10px;
}

.download-left p {
  color: var(--color-ffffff) !important;
}

.download-left h4 {
  color: var(--color-ffffff) !important;
  margin-bottom: 0;
}

.app-img {
  position: absolute;
  top: 0px;
  text-align: center;
  width: 63%;
  /* left: 17%; */
}

.keywords-box {
  font-size: var(--font-size-14);
  line-height: 24px;
  margin-bottom: 30px;
}

.keywords-box a {
  color: var(--color-47515e);
}

.keywords-box a:hover {
  color: var(--color-3c57c6);
  text-decoration: underline;
}

/* footer */
footer {
  background-color: #f5f5f5;
  position: relative;
  color: #4f4f4f;
  font-size: var(--font-size-14);
}

footer .social-links li {
  margin-right: 1rem;
}

footer .social-links p {
  margin-bottom: 0;
}

footer p,
footer a {
  color: #4f4f4f;
  font-size: var(--font-size-16);
}

footer a {
  color: #4f4f4f;
  width: auto;
}
footer a svg{
    font-size: var(--font-size-24);

}
footer a svg:hover {
  border-bottom: transparent !important;
}
footer i:hover {
  color: var(--color-000000);
}

footer a:hover {
  border-bottom: 1px solid var(--color-000000);
  color: var(--color-000000);
}

footer p a:hover {
  color: var(--color-000000);
}

footer h6 {
  font-weight: var(--font-weight-bold);
  color: #454545 !important;
  text-transform: uppercase;
}

.footer-left {
  position: relative;
  z-index: 9;
  margin-right: 6rem;
}

.footer-left .brand-img img {
  width: 9rem;
  margin-bottom: 1rem;
}

.footer-left .content {
  display: flex;
}

.footer-link li {
    margin-bottom: 14px;
}

.footer-left .content .icon {
  margin-right: 1rem;
  color: #4f4f4f;
}

.contact-footer .content {
  display: flex;
}

.contact-footer .content .icon {
  display: flex;
  margin-top: 5px;
  margin-right: 1rem;
}
footer p strong {
    display: block;
}
.contact-footer .content .icon svg {
    display: flex;
    color: #4f4f4f !important;
    margin-right: 0;
    margin-top: 3px;
    font-size: 1.2rem;
}
.social-link h6 {
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-bold);
}

.socialfooter {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.social-footer-box {
  position: relative;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  /* flex-direction: revert-layer; */
  margin: 30px 0;
  justify-self: flex-start;
  flex-direction: row;
}

.social-footer-box::before {
  width: 89%;
  background-color: var(--color-57cdc9);
  height: 1px;
  position: absolute;
  content: "";
  right: 11%;
}

.socialfooter i {
  color: var(--color-57cdc9);
  font-size: 20px;
  margin-left: 0.938rem;
}

.footer-link a {
  position: relative;
}

.footer-link a:hover {
  border-bottom: 1px solid var(--color-000000);
}

.footer-bottom {
  /* margin-top: 80px; */
  font-size: var(--font-size-14);
  color: var(--color-ffffff);
}

/* testimonial section */
.testimonial-section {
  position: relative;
  background-color: var(--color-fff4fa);
}

.testimonial-section .test-bg-img {
  position: absolute;
  top: 0;
  margin-top: 0;
  filter: opacity(0.5);
  object-fit: cover;
  height: 100%;
  width: 100%;
  left: 0;
}

.testimonial-section .test-bg-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.testimonial-area {
  /* margin-top: 100px; */
  display: block;
  /* margin-bottom: 100px; */
}

.testimonial-area h4 {
  color: var(--color-000000);
}

#testimonial-area .section-heading h2 {
  font-size: 48px;
  line-height: 58px;
}

.testi-wrap {
  position: relative;
  height: 100%;
  margin-top: 0;
}

.client-single {
  /* margin-top: 20px; */

  text-align: center;
  /* position: absolute; */
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  background-color: #ffffff;
  padding: 2rem;

  border-radius: 2rem;
  width: 90%;
  margin: auto;
}

.client-info,
.client-comment {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.client-info h5 {
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-36);
}

.client-single.inactive .client-comment,
.client-single.inactive .client-info {
  display: none;
}

.client-single.inactive .client-comment,
.client-single.inactive .client-info {
  opacity: 0;
  visibility: hidden;
}

.client-single.position-1 {
  /* -webkit-transform: scale(0.65);
  transform: scale(0.65); */
}

.client-single.position-2 {
  left: -2%;
  top: -195px;
  -webkit-transform: scale(0.6) !important;
  transform: scale(0.6) !important;
}

.client-single.position-3 {
  left: 89px;
  bottom: -32px;
  -webkit-transform: scale(0.4) !important;
  transform: scale(0.4) !important;
}

.client-single.position-4 {
  left: 331px;
  top: 14px;
  -webkit-transform: scale(0.6) !important;
  transform: scale(0.6) !important;
}

.client-single.position-5 {
  top: -239px;
  right: -38px;
  -webkit-transform: scale(0.6) !important;
  transform: scale(0.6) !important;
}

.client-single.position-6 {
  top: 109px;
  right: -40px;
  -webkit-transform: scale(0.6) !important;
  transform: scale(0.6) !important;
}

.client-single.position-7 {
  top: 18%;
  right: 219px;
  -webkit-transform: scale(0.4) !important;
  transform: scale(0.4) !important;
}

.client-single.position-8 {
  top: -160px;
  right: 20%;
  -webkit-transform: scale(0.4) !important;
  transform: scale(0.4) !important;
}

.client-single.position-9 {
  top: -150px;
  left: 195px;
  -webkit-transform: scale(0.4) !important;
  transform: scale(0.4) !important;
}

.client-single.active {
  /* top: 10%; */
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10;
  width: 49%;
}

.client-single.active .client-comment,
.client-single.active .client-info {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.client-single:not(.active) {
  /* -webkit-transform: scale(0.55);
  transform: scale(0.55);
  z-index: 99; */
}

.client-single.active .client-img {
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
  position: relative;
}

.client-single.active .client-img:before {
  border-radius: 100%;
  content: "";
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#ff7885),
    to(#3890fe)
  );
  background-image: linear-gradient(180deg, #cc0014 0%, #3890fe 100%);
  padding: 5px;
  width: 160px;
  height: 160px;
  top: -4px;
  left: 0px;
  position: absolute;
  z-index: -1;
}

.client-single .client-img img {
  width: 150px;
  border-radius: 50%;
  cursor: pointer;
  height: 150px;
}

.client-single.active .client-img img {
  max-width: 160px;
  margin: 0 auto 24px;
  border: 0;
}

/* .client-comment {
  padding: 0 30px;
} */
.client-comment h3 {
  font-size: 22px;
  line-height: 32px;
  color: #505b6d;
}

.client-comment p {
  margin-top: 30px;
  font-size: var(--font-size-14);
  line-height: normal;
  color: var(--color-47515e);
  font-family: var(--font-family-montserrat);
  font-weight: 500;
  text-align: justify;
  font-weight: 500;
}

.client-comment span i {
  font-size: 60px;
  color: #0084ff;
  margin: 40px 0 24px;
  display: inline-block;
}

.client-info h3 {
  color: #000;
  font-weight: 600;
  margin-bottom: 4px;
  margin-top: 3rem;
  font-size: 22px;
}

.client-info p {
  color: #0084ff;
  text-transform: uppercase;
}

.whatsapp-btn {
  position: fixed;
  bottom: 100px;
  right: 1.2rem;
  z-index: 99;
}

.whatsapp-btn .icon {
  /* width: 3.2rem; */
  background-color: #237d26;
  color: var(--color-ffffff);
  padding: 0.9rem;
  border-radius: 50%;
  font-size: 24px;
}

.whatsapp-button {
  background: green;
  padding: 15px;
  border-radius: 100px;
}
.whatsapp-button svg{
   
    position: relative;
    top: -1px;
}
.showcase-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  text-align: left;
  transition: all 0.3s linear;
}

.showcase-navigation {
  width: 100%;
}

.showcase-card:hover img {
  
  transform: scale; 
}

.showcase-overlay {
  padding: 1rem;
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 130px;
  z-index: 1;
  transition: all 350ms cubic-bezier(0, 0, 0.2, 1);
  display: flex;
  align-items: center;
  background: #ffffffbe;
  flex-direction: column;
}

.showcase-overlay .common-btn {
  border: 1px solid var(--color-2c2c2c);
  padding: 0.5rem;
  display: flex;
}

.showcase-overlay .common-btn:hover {
  border: 1px solid var(--color-3c57c6);
}

.showcase-card:hover .showcase-overlay {
  bottom: 0;
}

.showcase-overlay.top {
  left: 0;
  bottom: -100%;
}

.showcase-card .showcase-overlay.top {
  bottom: 0;
}

.showcase-overlay .common-btn {
  border: 1px solid var(--color-3f3f3f);
  border-radius: 0.5rem;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  font-size: 14px;
  text-align: center;
  justify-content: center;
}

.stock {
    color: var(--color-3f8f00);
    font-size: var(--font-size-14);
    font-weight: var(--font-weight-bold);
    align-items: center;
    height: 100%;
    justify-content: center;
    display: flex;
}

.stock ion-icon {
  margin-right: 0.2rem;
  font-size: 1.5rem;
}

.outofstock {
  color: var(--color-be1414);
  font-size: var(--font-size-14);
  text-align: center;
}
.outofstock {
 
  text-align: left;
}

.showcase-top {
  position: relative;
}

.free-logo {
  position: absolute;
  color: var(--color-ffffff);
  padding: 0.3rem;
  border-radius: 0;
  background-color: var(--color-be1414);
  width: 38px;
  line-height: 1;
  top: 0;
  left: 0;
  font-size: var(--font-size-10);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
  border-bottom-right-radius: 6px;
  z-index: 2;
}
.showcase-card {
  transition: ease all 0.5s;
}
.showcase-card:hover .showcase-img img{
  transform: scale(1.05);
}
.showcase-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  width: 100%;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.showcase-img .heart-img {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50%;
  margin: 0.5rem;
  background-color: var(--color-ffffff);
  padding: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.showcase-img .heart-img:hover {
  background-color: var(--color-be1414);
  color: var(--color-ffffff);
}

.showcase-img .heart-img.active {
 background-color: var(--color-ffffff);
  color: var(--color-be1414);
}

.showcase-img img {
  transition: ease all 0.5s;
}

.product-info p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
  padding-top: 0.5rem;
  text-align: center;
}
.product-info .outofstock{
  text-align: center;
}
.product-amt {
    font-weight: var(--font-weight-bold);
    color: var(--color-000000);
    display: flex;
    align-items: center;
    margin: auto;
    text-align: center;
}

.product-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price .common-btn {
  background-color: #ffffff;
  font-size: var(--font-size-12);
  padding: 0.5rem;
  color: #0d6efd;
  line-height: 0;
  font-weight: var(--font-weight-medium);
  display: flex;
  align-items: center;
  border: 1px solid var(--color-3c57c6);
  /* position: absolute; */
  bottom: 2.5rem;
  right: 1rem;
}

.product-price .common-btn:hover {
  background-color: var(--color-3c57c6);
  color: var(--color-ffffff);
}

.product-price .common-btn ion-icon {
  font-size: var(--font-size-18);
  color: var(--color-3c57c6);
  line-height: 0;
  margin-right: 0.2rem;
}

.product-price .common-btn:hover ion-icon {
  color: var(--color-ffffff);
}

.slash-price {
  font-weight: var(--font-weight-regular);
  text-decoration: line-through;
}
.product-amt .slash-price{
padding-right:1rem;
}
.ads-box {
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ads-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ad-img-2 {
  height: 51%;
  margin-bottom: 1.49rem;
}

.ad-img-3 {
  height: 50%;
}

.ad-img-4 {
  height: 104%;
}

.ads-content {
  padding: 2.5rem;
  position: absolute;
}

.ads-content h4 {
  color: var(--color-ffffff);
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-semibold);
  width: 80%;
}

.ads-content p {
  color: var(--color-ffffff);
}

.custom-video-section {
  position: relative;
  overflow: hidden;
  background-color: var(--color-f6f6f6);
}

.custom-video-section iframe {
  border-radius: 0.5rem;
}

.custom-video-section::after {
  background-color: var(--color-f1e1e8);
  position: absolute;
  margin-top: -32rem;
  content: "";
  height: calc(100% - 60px);
}

.custom-video-section video {
  border-radius: 1rem;
}

.step-box {
  text-align: center;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.step-head {
  padding: 0.5rem 1rem;
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  display: inline-block;
  background-color: var(--color-be1414);
  border-radius: 0.5rem;
  color: var(--color-ffffff);
  position: relative;
}

.step-box::after {
  border-top: 1px dotted var(--color-3f3f3f);
  position: absolute;
  content: "";
  width: 100px;
  height: 1px;
  top: 23px;
  right: -50px;
}

.step-head i {
  font-size: var(--font-size-18);
}

.step-box:last-child {
  border-bottom: transparent;
}

.step-box.step-box2::after {
  width: 0px;
}

.step1 {
  background-color: var(--color-be1414);
}

.step2 {
  background: linear-gradient(
    138deg,
    rgba(60, 87, 198, 1) 0%,
    rgba(200, 11, 27, 1) 100%
  );
}

.step3 {
  background-color: var(--color-3c57c6);
}

.step-head.step3::after {
  display: none;
}

.step-box .icon {
  background-color: var(--color-ffffff);
  padding: 2rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  margin: 2rem 0;
  width: 6rem;
  height: 6rem;
  font-size: 1.8rem;
  text-align: center;
  justify-content: center;
}

.step-box .text {
  position: absolute;
  font-size: 10px;
  margin-top: -10px;
}

.product-showcase-section {
  position: relative;
}
.product-section{
  position: relative;
}
.product-section .arrow-box{
  width: 100%;
}
.product-section .swiper-button-prev {
    /* left: 0; */
    /* align-items: center; */
    margin: 0 0.2rem;
    position: absolute;
    left: -23px;
    top: 142px;
}
.product-section .swiper-button-next {
    /* left: 0; */
    /* align-items: center; */
    margin: 0 0.2rem;
    position: absolute;
    right: -23px;    top: 142px;

}
.product-section .swiper-button-prev:hover{
  background-color:#454545
  ;
}
.product-section .swiper-button-next:hover{
  background-color:#454545
  ;
}
.product-showcase-head h4 {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-showcase-head h4::after {
        position: relative;
    width: 150px;
    height: 2px;
    background-color: #4f4f4f;
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    flex-direction: column;
}
.product-showcase-head .product-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    padding-top: 1rem;
}

.product-showcase-head .common-btn {
  background-color: var(--color-3c57c6);
  color: var(--color-ffffff);
  padding: 0.7rem 0.9rem;
}

.product-showcase-head .common-btn:hover {
  background-color: var(--color-47515e);
}

.product-showcase-head .arrow-box {
  width: 100%;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}


.similar-section{
  position: relative;
}
.similar-section .arrow-box{
  width: 100%;position: absolute;
}
.similar-section .swiper-button-prev.similar-product-button-prev {
    /* left: 0; */
    /* align-items: center; */
    margin: 0 0.2rem;
    position: absolute;
    left: -11px;
    top:34%;
}
.similar-section .swiper-button-next.similar-product-button-next {
    /* left: 0; */
    /* align-items: center; */
    margin: 0 0.2rem;
    position: absolute;
    right: -11px;   top:34%;

}
.similar-section .swiper-button-prev:hover{
  background-color:#454545
  ;
}
.similar-section .outofstock{
  text-align: center;
}
.similar-section .swiper-button-next:hover{
  background-color:#454545
  ;
}

.best-sellers-section {
  background-color: #fff9f9;
}

.list-group-item {
  border: transparent;
  padding: 0.5rem 0;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-regular);
  color: var(--color-000000);
  padding-right: 2rem;
  margin-right: 2rem;
}

.list-group-item:hover {
  font-weight: var(--font-weight-medium);
  color: var(--color-3c57c6);
}

/* product-listing-page */
.breadcrumb-box {
    font-size: var(--font-size-14);
    padding: 2.5rem 0;
    /* background-color: #fff; */
    /* text-align: center; */
    /* margin: auto; */
    display: flex;
    /* align-items: center; */
    justify-content: center;
}

.breadcrumb-box .breadcrumb {
    text-align: center;
    margin-bottom: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.items-total {
  font-size: var(--font-size-14);
}
.items-total strong{
  text-transform: capitalize;
}
/* .product-listing-box {
  background-color: var(--color-edf6ff);
} */
.rc-slider-rail{
      height: 3px !important;
}
.rc-slider-handle{
      height: 15px !important;
    width: 15px !important;
}

.product-listing-section {
  padding-top: 2rem;
}

.product-listing-left .head-filter {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  /* background-color: var(--color-3c57c6); */
}

.product-listing-left .head-filter {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
}

.product-listing-left .head-filter h6 {
  color: var(--color-3c57c6) !important;
  margin-bottom: 0;
  letter-spacing: 0.1rem;
}

.product-listing-left .head-filter a {
  color: #000000;
  font-size: var(--font-size-14);
  background-color: #ffffff;
  padding: 0.2rem 0.5em;
  border-radius: 0.1rem;
  font-size: 10px;
}

.product-listing-left .head-filter a:hover {
  background-color: var(--color-2c2c2c);
  color: var(--color-ffffff);
}

.product-listing-left .search-box {
  background-color: var(--color-ffffff);
  overflow: hidden;
}

.search-form .form-group {
  position: relative;
  margin-bottom: 2rem;
}

.search-form .form-group #s {
  padding-right: 50px;
  background: var(--color-ffffff);
  padding: 15px 15px;
  border: none;
  border: 1px solid var(--color-be1414);
}

.search-form .icon {
  color: #fff;
  position: absolute;
  top: 50%;
  right: 1px;
  transform: translateY(-50%);
  padding: 0.95rem;
  background-color: #bc0012;
  transition: ease all 0.5s;
  cursor: pointer;
}

.search-form .icon:hover {
  background-color: var(--color-3c57c6);
}


.product-listing-right .showcase-card {
    margin: 0;
    padding-left: 0.5rem;
}

.product-listing-right .showcase-card:hover .showcase-img img {
  transform: scale(1.1);
}

.pagination-box {
  margin-top: 1rem;
  display: flex;
  margin-bottom: 2rem;
}

.product-listing-right .showcase-outer {
  margin-bottom: 2rem;
}

.right_section_filter_result {
  margin-bottom: 2rem;
}

.category_section {
    margin-bottom: 1.5rem;
    /* border-bottom: 1px solid #ccc; */
    padding-bottom: 0.5rem;
    padding: 1.5rem;
    border: 1px solid #ccccccb3;
}

.category_section:last-child {
  margin-bottom: 0;
}

.category_section li {
  margin-bottom: 0.2rem;
}

.category_section h6 {
    color: var(--color-2c2c2c) !important;
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-medium);
    border-bottom: 1px solid #ccccccc2;
    padding-bottom: 1em;
    margin-bottom: 1rem;
}

.price-input {
  width: 100%;
  display: flex;
  margin-bottom: 15px;
}

.price-input .field {
  display: flex;
  width: 100%;
  align-items: center;
  margin-top: 1rem;
}

.form-check-input {
  border: 1px solid #959595;
  cursor: pointer;
}
.form-label {
    font-weight: 500;
}
.input-max {
  text-align: right;
}

.price-box .field input {
  font-weight: var(--font-weight-bold);
}

.field input {
    width: 100%;
    height: 100%;
    outline: none;
    border-radius: 5px;
    border: transparent;
    appearance: textfield;
    -moz-appearance: textfield;
    background-color: transparent;
    /* font-weight: var(--font-weight-bold); */
    color: #4f4f4f;
    font-size: 14px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.form-check {
  font-size: var(--font-size-14);
      min-height: 0;
    margin-bottom: 0;
}

.form-check label {
  color: #4f4f4f;
}

.price-input .separator {
  width: 130px;
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}

.slider {
  height: 0.2rem;
  position: relative;
  background: #ddd;
  border-radius: 5px;
}

.slider .progress {
  height: 100%;
  left: 25%;
  right: 25%;
  position: absolute;
  border-radius: 5px;
  background: var(--color-3c57c6);
}

.range-input {
  position: relative;
}

.range-input input {
  position: absolute;
  width: 100%;
  height: 0.6rem;
  top: -5px;
  background: none;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: var(--color-3c57c6);
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type="range"]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: var(--color-3c57c6);
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.top-row-right .form-select {
  float: inline-end;
  font-size: var(--font-size-14);
  border-radius: 0;
}

.filters-show {
  display: flex;
  align-items: center;
  height: 100%;
}

.filters-show li {
  border-radius: 15rem;
  padding: 0.3rem 0.7rem;
  font-size: var(--font-size-10);
  border: 0.1rem #ccc solid;
  display: inline-flex;
  text-transform: uppercase;
  padding-right: 0.5rem;
  margin-bottom: 10px;
}

.filters-show li a {
  display: flex;
  align-items: center;
}

.filters-show li ico-icon {
  margin-left: 0.1rem;
}

.related-products .showcase-box {
  position: relative;
  margin-bottom: 3rem;
  text-align: left;
}

.product-detail-right {
  
  padding-left: 1rem;
}

.product-detail-right h4 {
    color:#4f4f4f;
    font-weight: var(--font-weight-regular);
    margin-bottom: 0.8rem;
    font-size: 26px;
}

.product-detail-right a {
  font-size: var(--font-size-14);
  color:#4f4f4f;
  font-weight: var(--font-weight-medium);
  text-decoration: underline;
}

.product-detail-section .addtocart-btn {
  background-color: var(--color-3c57c6);
  color: var(--color-ffffff);
  margin-right: 1rem;
  /* width: 50%; */
  text-align: center;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
}

.product-detail-section .addtocart-btn ion-icon {
  font-size: var(--font-size-24);
  margin-right: 1rem;
}

.product-detail-section .addtocart-btn:hover {
  color: var(--color-ffffff);
  background-color: #4f4f4f;
}

.product-detail-section .wishlist-main-btn {
  color: #4f4f4f;
  border: 1px solid #4f4f4f;
  padding: 0rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.product-detail-section .wishlist-main-btn ion-icon {
  font-size: var(--font-size-24);
  margin-right: 1rem;
}

.product-detail-section .wishlist-main-btn:hover {
  color: var(--color-ffffff);
  background-color: var(--color-47515e);
}

.common-btn.addtocart-btn svg {
  margin-right: 0.5rem;
}

.common-btn.wishlist-main-btn svg {
  margin-right: 0.5rem;
}

.product-detail-right p {
  overflow: hidden;
  /* display: -webkit-box; */
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  /* font-size: var(--font-size-14); */
  margin-bottom: 0;
}

.product-detail-section .buttons {
  display: inline-flex;
}

.product-detail-right h6 {
    color: #4f4f4f !important;
    margin-bottom: 0.7rem;
    font-weight: 600 !important;
    font-family: var(--font-family-opensans);
    font-size: 14px !important;
}
.product-detail-right .stock {
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}
.product-detail-right .stock svg{
font-size: 1.5rem;
    margin-right: 0.5rem;}
.product-detail-right .color-box span {
  position: relative;
  top: -4px;
  font-size: 15px;
  margin-left: 5px;
}

.product-detail-right .buttons {
  display: inline-flex;
  margin: 1.5rem 0;
  width: 100%;
}
.breadcrumb-section{
    background-color: var(--color-f6f6f6);
    margin-bottom: 15px;

}
.product-detail-right .accordion-button:hover {
  background-color: var(--color-3c57c6);
  color: var(--color-ffffff);
}

#more-info{
  border: 1px solid #ccc;
}
.description-box table tr td:nth-child(01){
  width: 200px;
}

.description-box nav {
    padding: 1rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0;
    font-size: 1.2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.description-box .tab-content {
  padding:2rem;
}
.description-box table {
  font-size: var(--font-size-14);
}
.description-box table tr{
  border-bottom: transparent;
}
.description-box .tab-content p {
  /* font-size: var(--font-size-14); */
}

.description-box .nav-tabs {
    color: var(--color-47515e);
    border: transparent;
}

.description-box .nav-tabs .nav-link {
    margin-right: 0.5rem;
    /* border-radius: 0.5em; */
    color: var(--color-47515e);
    border: transparent;
    padding-bottom: 2px solid var(--color-3c57c6);
    padding-bottom: 1rem;
    padding-top: 0;
    border: transparent;
    /* border-bottom: 2px solid var(--color-ffffff); */
}

.description-box .nav-tabs .nav-link:hover {
  border-bottom: 2px solid var(--color-3c57c6);
}

.description-box .nav-tabs .nav-link.active {
    color: #454545;
    /* background-color: var(--color-3c57c6); */
    /* padding-bottom: .5rem; */
    border-bottom: 2px solid #454545;
    /* padding-top: 0; */
}
.feature-pointer{
  display: flex;
    align-items: center;
     font-size: 14px;
}
.feature-pointer ion-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    padding-left: 3px;
}
.color-box {
  padding-right: 2rem;
  padding-left: 2rem;
}

.gold {
  background-color: #a57c00;
}

.color-box li a {
  background-color: var(--color-2c2c2c);
  padding: 0.5rem 0.7rem;
  border: 1px solid #ccc;
  display: inline-block;
  line-height: normal;
  margin-right: 0.5em;
  border-radius: 100%;
  width: 1.5rem;
  height: 1.5rem;
}

.color-box ul {
  display: flex;
  height: 100%;
  justify-content: center;
  height: 43px;
}

.size-box {
    font-size: var(--font-size-14);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.size-box ul {
  display: flex;
  flex-wrap: wrap;
}
.size-box ul li {
  margin-bottom: 1rem;
}

.size-box li button {
  font-weight: 500;
  text-align: center;
  padding: 0.3rem 1rem;
  border: 1px solid var(--color-cccccc);
  display: flex;
  line-height: normal;
  margin-right: 1em;
  /* height: 2.5rem; */
  align-items: center;
  /* height: 100%; */
  color: #4f4f4f;
  background-color: transparent;
  position: relative;
    font-size: 14px;

}

.size-box li button.size-active {
  color: var(--color-3c57c6);
  border: 1px solid var(--color-3c57c6);
}

/* .size-box li button.size-active::after {
    content: '\F633';
    position: absolute;
    font-size: 12px;
    font-family: bootstrap-icons;
    background-color: var(--color-000000);
    border-radius: 100%;
    color: var(--color-ffffff);
    padding: 0.3rem;
    top: -6px;
    right: -2px;
} */
.size-box li button:hover {
  border: 1px solid var(--color-3c57c6);
}

.price-box small {
  font-weight: 300;
}

.price-box h4 {
  margin-bottom: 0;
  font-weight: var(--font-weight-bold);
}

.price-box .tax-text {
    color: var(--color-47515e);
    text-transform: capitalize;
    font-size: var(--font-size-10);
    top: -8px;
    position: relative;
    margin-bottom: 1rem;
    display: block;
}

.discount-text {
  color: var(--color-47515e);
  font-size: var(--font-size-24);
}

.price-box .discount-text .slash {
  text-decoration: line-through;
  color: var(--color-47515e);
}

.price-box .discount-text .discount {
  color: #ff3643;
}

.price-box .discount-text .off {
  color: var(--color-fff4fa);
}

.customize-product {
  background-color: #ffefef;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}

.customize-product small {
  font-size: var(--font-size-14);
}

.customize-product .bg-white {
  border-radius: 0.5rem;
}

.customize-product .bg-white small {
  font-size: var(--font-size-14);
}

.customize-product textarea {
  padding: 9px 10px;
  border: 1px solid #d9d9d9;
}

.customize-product strong {
  color: var(--color-000000);
}

.bulk-discount {
  background-color: #fff2aa;
  width: fit-content;
  padding: 1rem;
  display: flex;
  border-radius: 0.5rem;
  width: 100%;
  border: 1px solid #ffbf00;
}

.bulk-discount i {
  margin-right: 1rem;
  font-size: var(--font-size-30);
  color: #ffbf00;
}

.bulk-discount p {
  margin-bottom: 0;
}

.product-detail-left {
   
    display: flex;
    flex-direction: row-reverse;
}

.product-detail-left .swiper-wrapper {
  display: flex;
  width: 80%;
}

.product-detail-left img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: ease all 0.5s;
}

.product-detail-left img:hover {
  transform: scale(1.01);
}


.gallery-thumbs ion-icon {
  display: flex;
  position: absolute;
  width: 35px;
  height: 35px;
  background-color: #000000cc;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--font-size-14);
  color: var(--color-ffffff);
  z-index: 9;
}

.quantity {
    display: flex;
    overflow: hidden;
    color: #4f4f4f;
    padding: 0.3rem;
    background-color: #f4f4f4;
    width: fit-content;
}

.quantity .input-group {
  width: auto !important;
}

.quantity input {
  padding: 0rem 0.5rem;
  background-color: var(--color-47515e);
  font-size: var(--font-size-20);
  border: transparent;
}

.quantity .quantity-field {
    /* border-right: 1px solid #fff !important; */
    margin-right: 1px;
    width: 2rem;
    background-color: transparent;
    font-size: 14px;
    padding: 0;
}

.quantity .qty-btn {
  background-color: transparent;

  width: 30px;
  height: 30px;
}

.quantity .qty-btn:hover {
  background-color: var(--color-f6f6f6);
}

.product-details-slider-thumb {
  background-color: var(--color-f6f6f6);
  padding: 1rem;
}

.product-details-slider-thumb img {
  border-radius: 0.5rem;
}

.other-info {
    /* margin-right: 1rem; */
    margin-top: 0 !important;
}

.swatch {
  position: relative;
  margin-right: 0.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 2rem;
  line-height: 2rem;
  display: inline-block;
}

.swatch .tooltip {
  height: 100%;
}

.swatch > [type="radio"],
.swatch > [type="checkbox"] {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
}

.swatch > [type="radio"] + label,
.swatch > [type="checkbox"] + label {
  width: 2rem;
  height: 2rem;
  border-radius: 2rem;
  line-height: 2rem;
  text-align: center;
  position: absolute;
  transition: all 0.5s ease-in-out;
}

.swatch > [type="radio"] + label i,
.swatch > [type="checkbox"] + label i {
  opacity: 0;
  font-size: 1rem;
  transition: opacity 0.5s;
}

.swatch > [type="radio"]:checked + label i,
.swatch > [type="checkbox"]:checked + label i {
  opacity: 1;
}

.swatch.gold {
  background-color: #ce8d00;
  color: #fff;
}

.swatch.sliver {
  background-color: #aaaaaa;
  color: #fff;
}

.swatch.black {
  background-color: #000000;
  color: #fff;
}

.swatch > [type="radio"]:checked + label,
.swatch > [type="checkbox"]:checked + label {
  width: 2rem;
  height: 2rem;
  border-radius: 2rem;
  line-height: 2rem;
  top: 0;
  left: 0;
  transition: all 0.5s ease-in-out;
}

.swatch > [type="radio"]:checked + label i,
.swatch > [type="checkbox"]:checked + label i {
  opacity: 1;
  transition: opacity 0.5s;
  font-size: var(--font-size-18);
}

.accordion-button.collapse {
  background-color: var(--color-3c57c6);
}

/* galleryTop */
.gallery .swiper-slide {
  cursor: pointer;
  height: auto;
  overflow: hidden;
}

.gallery .swiper-slide .video {
  width: 100%;
  height: 100% !important;
}

.gallery .swiper-slide .video iframe {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

/* thumbs */
.gallery-thumbs {
  width: 150px;
}

.gallery-thumbs .swiper-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.gallery-thumbs .swiper-slide {
  width: 100% !important;
  opacity: 1;
  height: auto;
}

.gallery-thumbs .swiper-slide-active {
  opacity: 1;
  -webkit-filter: initial;
  /* Safari 6.0 - 9.0 */
  filter: initial;
  font-weight: bold;
  color: #231b93;
}

.gallery-thumbs img {
  cursor: pointer;
  /* width: 100%;
  height: 100%; */
  width: 100px;
  height: 100px;
  object-fit: cover;
  transition: ease all 0.5s;
  margin-bottom: 1.5rem;
}
.gallery-thumbs img:hover {
  transform: scale(1.05);
}

.gallery-thumbs .video {
  cursor: pointer;
  width: auto;
  height: 120px;
  object-fit: contain;
  position: relative;
}

.gallery-thumbs video::after {
  content: "";
  position: absolute;
}

.gallery {
  width: 100%;
  height: 100%;
}

/* buttons */
/* .swiper-button-next {
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    padding-right: 15px;
    opacity: 0.2;
    -webkit-transition: opacity 0.6s; 
    transition: opacity 0.6s;
  }
  .swiper-button-prev {
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    padding-left: 15px;
    opacity: 0.2;
    -webkit-transition: opacity 0.6s; 
    transition: opacity 0.6s;
  }
  .swiper-button-prev:hover, .swiper-button-next:hover{
    opacity: 1;
  }
  .swiper-button-next:after, .swiper-container-rtl .swiper-button-next:after{
    margin-left: auto;
  }
  .swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after{
    margin-right: auto;
  }
  @media (hover:none), (pointer:coarse){   
    .swiper-button-prev, .swiper-button-next{
      display: none;
    }
  }
   */
.login-section {
  overflow: hidden;
}

.login-section main {
  /* display: grid;
    grid-template-columns: 50% 50%; */
  place-items: center;
  width: 100%;
  border-radius: 1rem;
}

.login-section .top-side {
  padding: 3rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background-color: var(--color-f6f6f6);
  border-radius: 0.5rem;
  width: 100%;
}

.login-section .top-side .common-btn {
  width: 100%;
  background-color: var(--color-3c57c6);
  color: var(--color-ffffff);
}

.login-section .top-side .common-btn:hover {
  width: 100%;
  background-color: var(--color-2c2c2c);
}

.login-section .top-side .or {
  position: relative;
  padding: 2em 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-section .top-side .or:after {
  position: absolute;
  content: "";
  width: 43%;
  border-bottom: 0.1rem dotted var(--color-47515e);
  right: 0;
}

.login-section .top-side .or:before {
  position: absolute;
  content: "";
  width: 43%;
  border-bottom: 0.1rem dotted var(--color-47515e);
  left: 0;
}

/* Left Side */
.login-section .left-side {
  /* background-color: var(--color-edf6ff); */
  background-image: url(../images/login-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  overflow: hidden;
}

/* Right Side */
.login-section .right-side {
  padding: 3rem;
  background-color: var(--color-ffffff);
  border:1px solid #ccc;
}

.login-section .right-side h4 {
  text-align: center;
  font-weight: var(--font-weight-bold);
}

.login-section .right-side a {
  color:#454545;
  font-size: var(--font-size-14);
}

.login-section .right-side a:hover {
  color: var(--color-000000);
}

.login-section .right-side .or {
  position: relative;
  padding: 2em 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-14);
}

.login-section .right-side .or:after {
  position: absolute;
  content: "";
  width: 35%;
  border-bottom: 0.1rem dotted var(--color-47515e);
  right: 0;
}

.login-section .right-side .or:before {
  position: absolute;
  content: "";
  width: 35%;
  border-bottom: 0.1rem dotted var(--color-47515e);
  left: 0;
}

.login-section .right-side .btn-group {
  display: flex !important;
}

.login-section .right-side .btn-group .btn {
  /* border: 1px solid #ccc; */
  width: 100%;
  border-radius: 0.5rem;
  color: var(--color-ffffff);
  padding: 0.7rem 0.9rem;
  font-size: var(--font-size-14);
}

.login-section .right-side .btn-group .btn img {
  width: 1.2rem;
  margin-right: 0.5rem;
}

.login-section .right-side .btn-group .google {
  border: 1px solid var(--color-cccccc);
  margin-right: 0.5rem;
  color: var(--color-47515e);
}

.login-section .right-side .btn-group .google:hover {
  background-color: var(--color-fff4fa);
}

.login-section .right-side .btn-group .facebook {
  border: 1px solid var(--color-cccccc);
  color: var(--color-47515e);
}

.login-section .right-side .btn-group .btn.facebook img {
  width: 0.8rem;
}

.login-section .right-side .btn-group .facebook:hover {
  background-color: var(--color-edf6ff);
}

.login-section .right-side .common-btn {
  width: 100%;
  background-color: var(--color-3c57c6);
  color: var(--color-ffffff);
}

.login-section .right-side .common-btn:hover {
  width: 100%;
  background-color: var(--color-2c2c2c);
}

.login-section .form-label {
  color: var(--color-47515e);
}

.login-section .left-side .content {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
  color: var(--color-ffffff);
  text-align: center;
  justify-content: center;
  margin: auto;
}

.login-section .form-check label {
  font-size: var(--font-size-14);
}

.login-section .left-side .common-btn.back-home {
  width: 100%;
  background-color: var(--color-3c57c6);
  color: var(--color-ffffff);
  border: 2px solid #fff;
  width: auto;
  background-color: transparent;
}

.forgot-section {
  background-color: var(--color-edf6ff);
}

.forgot-box {
 
  background-color: var(--color-ffffff);
}

.tab-cart {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-direction: row;
  margin-bottom: 3.5rem;
}

.tab-cart .tab {
  /* padding: 1rem 3rem; */
  margin:1rem;
  border: 1px solid #ccc;
  width: 13rem;
  position: relative;
  text-align: center;
  color: var(--color-cccccc);
}



.tab-cart .active {
  border: 2px solid #4f4f4f;
  color: #4f4f4f;
}

.tab-cart .tab:last-child::after {
  border-bottom: transparent !important;
}

.checkout-section {
  background-color: var(--color-edf6ff);
}

.checkout-section .accordion {
  background-color: transparent;
}

.checkout-section .accordion-button {
  background-color: var(--color-fff4fa);
  padding: 1.5rem;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-18);
  color: var(--color-000000);
}

.checkout-section .login-section {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.checkout-section .accordion-button::after {
  filter: invert(1);
}

.checkout-section .accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
  padding: 2rem;
}

.checkout-section .accordion-button .accordion-flush > .accordion-item {
  margin-bottom: 1rem;
}

.service-box {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background-color: var(--color-ffffff);
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 3rem;
}

.service-box .row {
  margin-bottom: 3rem;
}

.service-box.blue {
  background-color: var(--color-edf6ff) !important;
}

.service-box.red {
  background-color: var(--color-fff4fa) !important;
}

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

.service-img img {
  width: 109%;
  height: 500px;
  object-fit: cover;
  /* overflow: hidden; */
  /* left: -4px; */
  /* position: relative; */
}

.service-content {
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}



.wishlist-page .showcase-card {
  margin: 0;
}

.wishlist-page .showcase-card .showcase-img .heart-img.active {
  color: var(--color-be1414);
  background-color: var(--color-ffffff);
}
.showcase-img .heart-img svg{
  font-size: 1.5rem;
}
.wishlist-page .showcase-outer {
  position: relative;
}

ion-icon .wishlist-page .showcase-outer .close a {
  margin: 0;
  margin-bottom: 1rem;
  position: absolute;
  z-index: 2;
  background-color: #ffffff;
  padding: 0rem 0.3rem;
  border-radius: 100%;
  font-size: 24px;
  right: 13px;
  top: 13px;
  opacity: 0.8;
  color: var(--color-47515e);
}

.wishlist-page .showcase-outer .close a:hover {
  opacity: 1;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.wishlist-page .product-list {
  background-color: var(--color-ffffff);
  margin-top: 1.2rem;
  
}

.wishlist-page .product-list .showcase-outer {
  margin-bottom: 1.5rem;
}

.wishlist-page .product-list .showcase-outer .close {
  margin-bottom: 1.5rem;
  position: absolute;
  right: 0;
  top: -11px;
  z-index: 9;
}
.wishlist-page .product-list .showcase-outer .close a svg{
color: #cc0014;
}

.wishlist-page .product-list .showcase-outer .close ion-icon {
  margin-right: 1rem;
  position: absolute;
  right: -31px;
  font-size: 25px;
  top: 9px;
  z-index: 9;
  color: var(--color-cccccc);
  background-color: var(--color-ffffff);
  padding: 0.5rem;
  border-radius: 100%;
}

.wishlist-page .product-list .showcase-outer .close ion-icon:hover {
  color: var(--color-be1414);
}

.pricebreakup-base-ordersummary .common-btn {
  width: 100%;
}

.priceDetail-base-row {
  display: flex;
}

.pricedetail-base-row li {
  font-size: var(--font-size-14);
  display: flex;
  justify-content: space-between;
}

.available-offer {
  border: 0.1rem solid var(--color-cccccc);
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 0.3rem;
}

.item-outofstock {
  border: 0.1rem solid var(--color-cccccc);
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 0.3rem;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.item-selected {
  border-bottom: 0.1rem solid var(--color-cccccc);
  padding: 1rem 0;
  margin-bottom: 2rem;
  display: flex;
  width: 100%;
  justify-content: space-between;
  font-weight: var(--font-weight-bold);
  border-top: 0.1rem solid var(--color-cccccc);
}

.item-selected .form-check {
  margin-bottom: 0;
}

.item-selected a {
  font-size: var(--font-size-14);
  color: var(--color-47515e);
  text-transform: uppercase;
}

.item-selected a:hover {
  color: var(--color-3c57c6);
  border-bottom: 1px solid var(--color-3c57c6);
}

.item-outofstock .form-check .form-check-input {
  position: relative;
  top: 0;
}

.item-outofstock h6 {
  margin-bottom: 0 !important;
  text-transform: capitalize;
  font-size: var(--font-size-14);
}

.priceblock-base-priceheader {
  font-size: var(--font-size-14);
}



.item-add-success {
  padding: 0.7rem 1rem;
  border: 1px solid #ffffff;
  margin-bottom: 1rem;
  border-radius: 0.8rem;
  background-color: #eaffdb;
}


.cart-right .common-btn-purple {
  width: 100% !important;
  display: block;
  text-align: center;
}

.cart-right .pricedetail-base-row .coupon {
  color: var(--color-be1414);
}

#apply-coupon-btn {
  color: var(--color-be1414);
  border-bottom: var(--color-be1414);
}

#apply-coupon-box {
  width: 100%;
  margin: 1rem 0;
}

#apply-coupon-box input {
  width: 80%;
  padding: 0.6rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#apply-coupon-box .common-btn {
  width: 20%;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.cart-right .priceblock-base-container .common-btn {
  background-color: var(--color-3c57c6);
  color: #fff;
  text-align: center;
  width: 100%;
  display: block;
}

.cart-right .priceblock-base-container .common-btn:hover {
  background-color: var(--color-47515e);
}

.pricedetail-base-total h5 {
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0;
}

.pricedetail-base-total span {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-18);
}

.pricedetail-base-total {
  display: block;
  font-size: var(--font-size-18);
}

.cart-product-list {
  position: relative;
}

.cart-product-list select {
  padding: 1rem;
}

.cart-product-list .quantity-box h6 {
  color: var(--color-47515e);
}

.cart-product-list .item-content .form-select {
  font-size: 12px;
  padding: 0.3rem;
  background-color: #f0f0f0;
  width: 71px;
}

.cart-product-list .close {
  position: relative;
  right: 0;
}
.cart-product-list .close svg{
  color: #cc0014;

}
.cart-product-list .close a ion-icon {
  position: absolute;
  font-size: var(--font-size-18);
  color: var(--color-be1414);
  font-size: 21px;
  right: 0;
  top: -3px;
}

.cart-product-list .close a i:hover {
  color: var(--color-000000);
}

.cart-product-list .item {
    font-size: var(--font-size-14) !important;
    /* border-radius: 0.5rem; */
    display: flex;
    position: relative;
    justify-content: space-between;
    /* background-color: var(--color-ffffff); */
    align-items: center;
    /* box-shadow: 0 0 6px rgb(0 0 0 / 12%); */
    padding: 1rem;
    /* border-top: 1px solid #ccc; */
    border-bottom: 1px solid #ccc;
}

.cart-product-list .item .price {
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-regular) !important;
}

.cart-product-list .dashboard-content-row {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 30px;
}

.cart-product-list .item .price .tax-text {
  font-size: var(--font-size-14);
}

.cart-product-list .item .item-img {
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  overflow: hidden;
}

.cart-product-list .item .item-content .swatch {
  width: 1rem;
  height: 1rem;
}

.cart-product-list .item .item-content .swatch i {
  font-size: 0.5rem;
  padding: 0;
  top: -9px;
  position: relative;
  left: -8px;
}

.cart-product-list .item .item-content p {
  margin-bottom: 0.5rem;
}

.cart-product-list .item .item-content .box {
  font-weight: bold;
  display: flex;
  margin-right: 2rem;
  border-radius: 0.5rem;
  margin-bottom: 0 !important;
  font-size: var(--font-size-12);
}

.cart-product-list .item .item-content .box .swatch {
  margin-right: 0;
  top: 3px;
}

.cart-product-list .item .item-content .price {
  font-size: var(--font-size-20);
}

.cart-product-list .item .item-content .box ul {
  padding-left: 0.5rem;
}

.cart-product-list .price-box h4 {
  font-size: var(--font-size-14);
  margin-top: 1rem;
}

.coupon-apply {
  display: flex;
      margin-bottom: 2rem;
}

.coupon-apply input {
  width: 400px !important;
  border: 1px solid #cccccc;
  padding: 0.7rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.coupon-apply .common-btn {
  padding: 0.7rem 0.9rem;
  text-transform: uppercase;
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-bold);
  width: fit-content;
  width: 200px !important;
  align-items: center;
  justify-content: center;
  height: 100%;
}



.policy-section p {
  font-size: var(--font-size-14);
}
.cart-left{
  padding-right:2rem;
}
.cart-left .continue-shopping {
  border: 0.1rem solid var(--color-3c57c6);
  color: var(--color-3c57c6);
  width: fit-content;
  transition: ease all 0.5s;
  display: flex;
}

.cart-left .continue-shopping ion-icon {
  font-size: var(--font-size-24);
  color: var(--color-3c57c6);
}

.cart-left .continue-shopping a {
  color: var(--color-3c57c6);
  margin-left: 0.5rem;
}

.cart-left .continue-shopping:hover a {
  color: var(--color-ffffff);
}

.cart-left .continue-shopping:hover ion-icon {
  color: var(--color-ffffff);
}

.cart-left .continue-shopping:hover {
  color: var(--color-ffffff);
  background-color: var(--color-3c57c6);
  border: 0.1rem solid var(--color-ffffff);
}

.cart-left .form-check {
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.service-section {
  background-color: var(--color-edf6ff);
}

/* contact page */


.contact-info {
    position: relative;
    z-index: 9;
    text-align: center;
    display: flex;
    /* margin-bottom: 2rem; */
    padding: 2rem;
    border: 1px solid #ccc;
}

.contact-info ion-icon {
  font-size: 1rem !important;
  background-color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  display: flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  padding: 1.5rem;
}

.contact-form .common-btn {
    background-color: var(--color-3c57c6);
    /* width: 100%; */
    color: var(--color-ffffff);
    padding: 0.8rem 3rem;
}
.contact-form .common-btn:hover{
    background-color: var(--color-47515e);
  color: var(--color-ffffff);

}
.contact-text {
  padding-left: 20px;
  text-align: left;
}
.contact-right h5{
  font-weight: var(--font-weight-bold);
    font-size: var(--font-size-30);

}
.contact-text a {
  font-size: var(--font-size-24);
  color: var(--color-47515e);
  font-family: var(--font-family-montserrat);
    font-weight: var(--font-weight-bold);

}
.contact-text a:hover{
    color: var(--color-000000);
}
.contact-page .contact-text h5 {
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-14);
}
.contact-left {
  padding: 50px 50px 50px 220px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center left;
}
.contact-page .map{
filter: grayscale(1);
}


.delivering-address {
  background-color: var(--color-ffffff);
}

.add-address-box {
  background-color: var(--color-ffffff);
}

.whatsapp-detail {
    background-color: var(--color-ffffff);
    width: fit-content;
    /* padding: 1.5rem; */
    display: flex;
    width: 100%;
    color: var(--color-47515e);
}

.whatsapp-detail p {
    margin-left: 1rem;
    color: var(--color-47515e);
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
}

.whatsapp-detail svg{
      padding: 0.6rem;
    background-color: #00a244;
    border-radius: 100%;
    font-size: 2.5rem;
    color: aliceblue;
}

#addnewaddress .modal-content {
  padding: 3rem !important;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  border: transparent;
}

#addnewaddress .modal-content .btn-close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 1rem;
}

.address-box-head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding-right: 2rem;
}
.address-box-head h5 {
  margin-bottom: 0;
  font-weight: var(--font-weight-bold);
}



.add-addresses-section h6 {
  margin-bottom: 0;
}

.add-address-box .add-address {
  border: 1px solid #4f4f4f;
  color: #4f4f4f;
  padding: 0.5rem 0.9rem;
  font-size: var(--font-size-14);
}

.add-address-box .add-address:hover {
  color: var(--color-ffffff);
}

.add-address-box .cart-left ul li {
  padding: 1rem;
  margin-bottom: 1rem !important;
  margin-top: 20px;
    border: 1px solid var(--color-cccccc);

}

.add-address-box .cart-left ul li a {
  font-size: var(--font-size-14);
  padding: 0.3rem 0.5rem;
  margin-right: 0.4rem;
  border: 1px solid var(--color-cccccc);
  color: #4f4f4f;
}

.add-address-box .cart-left ul li a ion-icon {
  font-size: var(--font-size-16);
  top: 2px;
  position: relative;
}

.add-address-box .form-check label {
  font-size: var(--font-size-14);
}

.add-address-box .form-check label .name {
  font-size: var(--font-size-18);
}

.add-address-box .form-check label strong {
  color: var(--color-000000);
}

.gst-box h6 {
  font-size: var(--font-size-18);
  color: var(--color-47515e);
  font-weight: var(--font-weight-medium);
}

.gst-box .form-check {
  margin: 1rem 0;
}

.gst-box .gst-number {
  font-size: var(--font-size-18);
  color: var(--color-47515e);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 6px rgb(0 0 0 / 12%);
  padding: 1rem;
  border-radius: 0.5rem;
  width: fit-content;
}

.gst-box .gst-number label {
  margin-bottom: 0.5rem;
  font-size: var(--font-size-16);
  margin-bottom: 1rem;
}

.gst-box .gst-number input {
  border-radius: 0.8rem;
  width: 400px !important;
  border: 1px solid var(--color-f6f6f6);
  padding: 0.7rem;
  margin-right: 1rem;
  box-shadow: 0 0 6px rgb(0 0 0 / 12%);
}

.payment-choice-box ul li {
  padding: 1rem;
  margin-bottom: 1rem !important;
    border: 1px solid var(--color-cccccc);

}

.payment-choice-box ul li a {
  font-size: var(--font-size-14);
  padding: 0.3rem 0.5rem;
  /* background-color: var(--color-f6f6f6); */
  border-radius: 0.3rem;
  margin-right: 0.4rem;
  border: 1px solid var(--color-cccccc);
  color: var(--color-47515e);
}

.payment-choice-box ul li a ion-icon {
  font-size: var(--font-size-16);
  top: 2px;
  position: relative;
}

.dashborad_side_panel {
  float: left;
  width: 100%;
  background-color: transparent;
  border-radius: 7px;
}

.dashborad_side_panel .icon {
  color: var(--color-ffffff) !important;
  font-size: var(--font-size-18) !important;
}


.profile-content a {
  columns: var(--color-47515e);
  font-size: var(--font-size-12);
}
.profile-img p{
  margin-bottom: 0;
}
.profile-img .edit ion-icon {
  background-color: var(--color-ffffff);
  padding: 0.5rem;
  border-radius: 50%;
  box-shadow: 0 0 6px rgb(0 0 0 / 12%);
  position: absolute;
  right: 0;
  top: 0;
}

.profile-content {
  margin-left: 1rem;
}

.dashboard-page h4 {
  color: var(--color-47515e);
  font-size: var(--font-size-24);
  margin-bottom: 0rem;
}

.dashboard-page .cart-product-list .item {
  display: flex;
  flex-direction: column;
  padding: 0;
}


.dashborad_side_panel ul {
  overflow: hidden;
  margin: 0;
  list-style: none;
  background-color: transparent;
  position: sticky;
  top: 50px;
  border:1px solid #ccc;
}

.dashboard-content-wrap .cart-product-list .dashboard-content-row img {
  width: 100px !important;
  border-radius: 0.5rem;
}

.dashboard-content-wrap .showcase-outer {
  margin-bottom: 2rem;
}

.dashboard-content-wrap .edit-info-area .edit-profile-img-area {
  padding-top: 20px;
  display: flex;
  gap: 20px;
}

.dashboard-content-wrap
  .edit-info-area
  .edit-profile-img-area
  .profile-img
  img {
  min-width: 110px;
  max-width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: #767676;
}

.upload-img-area {
  width: 100%;
}

.upload-img-area h5 {
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}

.upload-img-area span {
  color: #000;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  display: block;
  padding-top: 10px;
}

.upload-img-area .upload-filed {
  padding: 9px 10px;
  border: 1px solid #cccccc;
  width: 100%;
}

.upload-img-area .upload-filed input {
  color: #000;
  font-size: 13px;
  font-weight: 700;
  width: 100%;
}

.upload-img-area span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  display: block;
  padding-top: 10px;
}

.dashboard-content-wrap .right-form-area .account-btn {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background-color: var(--color-3c57c6);
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  width: 25%;
  padding: 11px;
  outline: none;
  border: 1px solid var(--color-3c57c6);
  border-radius: 5px;
  transition: 0.4s ease;
}

.upload-img-area .upload-filed label {
  display: inline-block;
  background-color: var(--color-3c57c6);
  color: white;
  padding: 0.5rem;
  /* font-family: sans-serif; */
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  width: 150px;
  text-align: center;
}

.dashboard-content-wrap .right-form-area {
  border-radius: 5px;
  box-shadow: none;
  padding: 0;
}

.border-title_bottom {
  border-bottom: 1px solid rgb(11 12 12 / 10%);
  padding-bottom: 21px;
}

.dashboard-content-wrap .live_aucion_box_section {
  float: left;
  width: 100%;
  margin-bottom: 15px;
}

.dashboard-content-wrap .live_auction_image_section {
  float: left;
  width: 100%;
  height: 191px;
  position: relative;
  overflow: hidden;
}

.dashboard-content-wrap .my-auction-wrap .nav-pills .nav-item .nav-link {
  background-color: rgb(11 12 12 / 8%);
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 14px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-content-wrap .live_auction_box_heading_section .title {
  font-size: 17px;
  text-align: center;
  margin: 0px;
}

.dashboard-content-wrap .my-auction-wrap .nav-pills .nav-item .nav-link.active {
  background-color: #237d26;
  color: #fff;
}

.dashboard-content-wrap .my-auction-wrap .nav-pills {
  padding: 25px 0;
  border-top: 1px solid rgba(17, 26, 34, 0.1);
  border-bottom: 1px solid rgba(17, 26, 34, 0.1);
  gap: 25px;
  margin-bottom: 30px;
}

.dashboard-content-wrap .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: #237d26;
}

.dashboard-content-wrap .nav-link {
  text-decoration: none;
  background: 0 0;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
}

.dashborad_side_panel ul li a.active {
  background-color: var(--color-3c57c6) !important;
  color: var(--color-ffffff) !important;
}

.dashborad_side_panel ul li a {
  padding: 18px 20px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.5s;
  color: var(--color-47515e);
  border-bottom: 1px solid var(--color-f6f6f6);
}

.dashborad_side_panel ul li a .icon {
  color: var(--color-ffffff) !important;
}

.dashborad_side_panel ul li a:hover .icon {
  color: var(--color-000000) !important;
}

.dashborad_side_panel ul li a:hover h6 {
  color: var(--color-ffffff) !important;
}

.dashborad_side_panel ul li a:hover {
  background-color: var(--color-3c57c6);
  color: var(--color-ffffff) !important;
}

.dashborad_side_panel ul li a h6 {
  color: var(--color-47515e) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.5;
  margin-bottom: 0;
}

.dashborad_side_panel ul li a.active h6 {
  color: var(--color-ffffff) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.5;
  margin-bottom: 0;
}

.dashborad_side_panel svg {
  vertical-align: middle;
  filter: invert(1);
}

.dashborad_side_panel .active svg {
  vertical-align: middle;
  filter: invert(0);
}

.dashborad_side_panel ul li:last-child {
  margin-bottom: 0;
}

.bedding_title {
  font-size: 20px !important;
  margin-bottom: 23px;
}

.dashboard-content-wrap {
  float: left;
  width: 100%;
  padding-left: 1rem;
}

.dashboard-content-wrap .form-inline {
  display: flex;
}

.dashboard-content-wrap .profile-info-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(17, 26, 34, 0.1);
  margin-bottom: 35px;
}

.dashboard-content-wrap .profile-info-wrap .profile-img img {
  min-width: 90px;
  max-width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--color-edf6ff);
}

.dashboard-content-wrap .bidding-summary-wrap .bidding-summary-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  border-color: rgba(17, 26, 34, 0.1);
}

.dashboard-content-wrap .bidding-summary-wrap .bidding-summary-table thead {
  background: var(--color-47515e);
  border-radius: 5px !important;
}

.dashboard-content-wrap .bidding-summary-wrap .bidding-summary-table thead tr {
  border-width: 1px;
}

.dashboard-content-wrap
  .bidding-summary-wrap
  .bidding-summary-table
  tbody
  tr
  td {
  color: var(--color-47515e);
  font-weight: 600;
  font-size: 15px;
  line-height: 16px;
  vertical-align: middle;
  padding: 15px 20px;
}

.dashboard-content-wrap
  .bidding-summary-wrap
  .bidding-summary-table
  tbody
  tr
  td.product-name {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.profile-img {
  position: relative;
}

.dashboard-content-wrap
  .bidding-summary-wrap
  .bidding-summary-table
  thead
  tr
  th {
  font-size: 15px;
  font-weight: 600;
  padding: 16px 35px;
  vertical-align: top;
  color: #fff !important;
}

.dashboard-content-wrap .bidding-summary-wrap .bidding-summary-table tbody tr {
  border: 1px solid rgba(17, 26, 34, 0.1);
  border-radius: 5px;
}

.dashboard-content-wrap
  .bidding-summary-wrap
  .bidding-summary-table
  tbody
  tr
  td
  span {
  color: #01aa85;
  font-size: 12px;
  line-height: 1;
  padding: 7px 24px;
  background-color: rgb(1 170 133 / 15%);
  border-radius: 5px;
  min-width: 95px;
  display: inline-flex;
  justify-content: center;
}

.dashboard-content-wrap
  .bidding-summary-wrap
  .bidding-summary-table
  tbody
  tr
  td
  span.cancel {
  color: #dd344a;
  background-color: rgb(221 52 74 / 15%);
}

.cart-product-list .item .customstatusicon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  padding: 1rem;
  width: 100%;
  flex-direction: column;
  border: 1px solid #ccc;
}


.cart-product-list .item .customstatusicon.return .icon {
  background-color: var(--color-be1414);
}

.cart-product-list .item .customstatusicon .content {
  text-align: left;
  width: 93%;
}

.cart-product-list .item .customstatusicon .content h5 small {
  font-size: var(--font-size-12) !important;
  color: var(--color-3c57c6);
}

.cart-product-list .item .customstatusicon .content h5 {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-semibold);
  color: var(--color-47515e);
  margin-top: 0.3rem;
  margin-bottom: 0;
  font-size: 14px;
}

.cart-product-list .item .customstatusicon.return .content h5 {
  color: var(--color-be1414);
}

.cart-product-list .item .customstatusicon .content h6 {
  margin-bottom: 0px;
  color: var(--color-47515e);
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-medium);
}

.order-status ion-icon {
  font-size: var(--font-size-20);
}

.order-status .search-item .common-btn {
  padding: 0.8rem;
  border-radius: 0.5rem;
  font-size: 10px;
  background-color: aquamarine;
}

.cart-product-list .order-status select {
  padding: 0.8rem !important;
}

.cart-product-list .item .customstatusicon .icon {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  margin-bottom: 0px;
  background-color: var(--color-3c57c6);
  display: flex;
  border-radius: 4rem;
  align-items: center;
  justify-content: center;
  color: var(--color-ffffff);
}

.cart-product-list .item .customstatusicon .icon.delivered {
  background-color: var(--color-3c57c6);
}

.cart-product-list .item .customstatusicon .icon.transit {
  background-color: var(--color-ffffff);
  color: var(--color-47515e);
}
.cart-product-list .item .customstatusicon .icon.transit-order {
  background-color:#f2f2f2;
  color: var(--color-47515e);
}

.cart-product-list .item .customstatusicon .icon.cancelled {
  background-color: var(--color-ffffff);
  color: var(--color-be1414);
}

.cart-product-list .item .customstatusicon .icon.returned {
  background-color: var(--color-ffffff);
  color: var(--color-be1414);
}

.cart-product-list .item .customstatusicon .icon ion-icon {
  font-size: var(--font-size-20);
}

/* Order History Card Enhancements */
.order-history-card {
  background-color: var(--color-ffffff);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.order-history-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.order-card-link {
  text-decoration: none !important;
  color: inherit !important;
}

.order-card-link:hover {
  color: inherit !important;
}

/* Status Badges */
.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  justify-content: center;
  margin-top: 10px;
}

.badge-delivered {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.badge-transit {
  background-color: #e3f2fd;
  color: #1976d2;
}

.badge-cancelled {
  background-color: #ffebee;
  color: #c62828;
}

.badge-returned {
  background-color: #fff3e0;
  color: #e65100;
}

/* Order Header */
.order-header .order-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-2c2c2c);
  margin-bottom: 0.5rem;
}

.order-header .order-date {
  color: #666;
  font-size: 13px;
}

.order-header .order-date i {
  color: #999;
}

/* Product Preview */
.product-preview {
  margin: 1rem 0;
}

.product-images-preview {
  display: flex;
  align-items: center;
}

.product-image-thumb {
  transition: transform 0.2s ease;
}

.product-image-thumb:hover {
  transform: scale(1.05);
  z-index: 1;
}

.item-count {
  font-size: 14px;
  color: var(--color-47515e);
  font-weight: 600;
}

.item-count strong {
  color: var(--color-2c2c2c);
  font-size: 16px;
}

.payment-method {
  font-size: 12px;
  color: #666;
}

.payment-method i {
  color: #999;
}

/* Product Names Preview */
.product-names-preview {
  margin-top: 0.5rem;
}

.product-names-preview p {
  line-height: 1.5;
  color: #666;
}

/* Order Total Section */
.order-total-section {
  padding: 0.5rem 0;
}

.total-label {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.total-amount {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-47515e);
  margin: 0.5rem 0;
}

.original-price {
  font-size: 14px;
  color: #999;
}

.view-details-btn {
  margin-top: 1rem;
}

.order-view-link {
  font-weight: var(--font-weight-bold);
    background-color: transparent;
    color: var(--color-3c57c6);
    text-transform: uppercase;
    font-size: 12px;
    text-decoration: underline !important;
}

.order-view-link:hover {
  color: var(--color-be1414);
}

.order-view-link i {
  transition: transform 0.2s ease;
}

.order-card-link:hover .order-view-link i {
  transform: translateX(4px);
}

/* Empty State */
.empty-orders-state {
  padding: 3rem 1rem;
}

.empty-orders-state h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.empty-orders-state p {
  font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .order-history-card {
    padding: 1rem;
  }

  .order-header .order-number {
    font-size: 16px;
  }

  .total-amount {
    font-size: 16px;
  }

  .product-image-thumb {
    width: 50px !important;
    height: 50px !important;
  }

  .order-total-section {
    text-align: left !important;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e5e5;
  }
}

.review-content {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.rate-product-box {
  margin-top: 0.5rem;
  width: 85%;
  padding-right: 1rem;
  font-family: var(--font-family-opensans);
  box-shadow: 0 0 6px rgb(0 0 0 / 12%);
  padding: 1rem;
  border-radius: 0.5rem;
}

#write-review-box {
  display: none;
}

#write-review-btn {
  position: relative;
}

#write-review-btn span {
  color: var(--color-be1414);
  font-size: 14px;
  position: absolute;
  right: 0;
  top: -68px;
  font-weight: var(--font-weight-semibold);
}

.rate-product-box .category-box a {
  padding: 0;
}

.rating-field {
  margin-bottom: 0.5em;
}

.star-rating {
  display: block;
  height: 23px;
  float: right;
  color: transparent;
  background: transparent url("../images/star-rate.png") 0 100% no-repeat;
  position: relative;
  width: 25px;
}

.star-rating:before {
  z-index: 10;
  position: absolute;
  width: 0;
  height: 23px;
  content: "";
  background: transparent url("../images/star-rate.png") 0 0 no-repeat;
  top: 0;
  left: 0;
}

.star-rating:hover:before {
  width: 100%;
}

input[type="radio"].rating-radio {
  position: absolute;
  margin: 1em 0 0 0.9em;
  font-size: 0.5em;
  z-index: -1;
  visibility: hidden;
}

.rating-radio--1:checked ~ .star-rating:before {
  width: 100%;
}

.rating-radio--2:checked ~ .star-rating:before {
  width: 100%;
}

.rating-radio--3:checked ~ .star-rating:before {
  width: 100%;
}

.rating-radio--4:checked ~ .star-rating:before {
  width: 100%;
}

.rating-radio--5:checked ~ .star-rating:before {
  width: 100%;
}

.rating-list {
  display: block;
  align-items: center;
  margin-bottom: 0 !important;
}

.rating-list .star-rating:hover:before,
.rating-list .star-rating:hover ~ .star-rating:before {
  width: 100%;
}

.rate-product-box .review-head {
  display: flex;
  align-items: center;
}

.rate-product-box .review-head a {
  font-size: var(--font-size-14);
  color: var(--color-47515e);
}

.delivery-address h5 {
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-semibold);
  color: var(--color-47515e);
  margin-top: 0.3rem;
  margin-bottom: 0;
}

.customer-review-slider img {
  border-radius: 0.3rem;
  background-color: var(--color-f6f6f6);
}

.review-image-gallery {
  width: 100%;
}

.review-image-gallery a {
  font-size: var(--font-size-14);
  text-decoration: underline;
  color: var(--color-be1414);
  font-weight: var(--font-weight-medium);
}

.rate-product-box h5 {
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-semibold);
}

.review-des {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.review-des a {
  font-weight: var(--font-weight-bold);
}

.review-comment-box {
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.review-comment-box .rate-box {
  font-size: var(--font-size-14);
  padding: 0.2rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.review-comment-box .rate-box ion-icon {
  margin-left: 0.5rem;
}

.review-comment-box .rate-box small {
  font-size: var(--font-size-10);
}

.review-comment-box .rate-box i {
  font-size: var(--font-size-14);
}

.review-comment-box p {
  margin-bottom: 0;
}

.rate-box {
  background-color: var(--color-3c57c6);
  padding: 0.1rem 01rem;
  color: var(--color-ffffff);
  display: inline-block;
  border-radius: 4rem;
  margin-right: 0.5rem;
  font-size: var(--font-size-20);
  align-items: center;
  justify-content: center;
  display: inline-flex;
  font-family: var(--font-family-opensans);
}

.rate-box ion-icon {
  font-size: var(--font-size-18);
  margin-left: 5px;
}

.order-dashboard-box {
    padding: 1.5rem;
    margin-bottom: 1rem;
    color: #4f4f4f;
    border: 1px solid #ccc;
}

.order-dashboard-box .icon {
  background-color: #f2f2f2;
  padding: 1rem;
  border-radius: 100%;
  width: 78px;
  height: 78px;
  margin-right: 1rem;
  align-items: center;
  justify-content: center;
  display: flex;
}

.order-dashboard-box-red {
  background: linear-gradient(
    138deg,
    rgb(219 89 108) 0%,
    rgb(255 171 184) 100%
  );
}

.order-dashboard-box-red .icon ion-icon {
  color: var(--color-be1414) !important;
}

.order-dashboard-box .icon ion-icon {
  font-size: var(--font-size-40);
  color: var(--color-3c57c6);
}

.order-dashboard-box h4 {
  font-weight: var(--font-weight-light);
  font-size: var(--font-size-48);
  margin-bottom: 0;
}

.order-dashboard-box h5 {
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-16);
  margin-bottom: 0;
}

.order-dashboard-box .icon i {
  background-color: var(--color-ffffff);
  padding: 0.9rem 1rem;
  color: var(--color-3c57c6);
  /* width: 6rem; */
  /* height: 4rem; */
  border-radius: 100%;
  margin-right: 1rem;
  top: 16px;
  position: relative;
  font-size: 20px;
}

.order-dashboard-box.common-btn-border {
  background-color: var(--color-fff4fa) !important;
  color: var(--color-cccccc) !important;
  width: 100%;
}

.upload-file {
  border: 2px dashed var(--color-3c57c6);
  padding: 1rem;
  text-align: center;
}

.des-add {
  background-color: var(--color-ffffff);
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 0.5rem;
}

.des-add .delete-icon {
  color: var(--color-be1414);
  margin-left: 1rem;
  cursor: pointer;
  text-align: right;
}

.des-add .delete-icon ion-icon {
  font-size: var(--font-size-20);
  color: var(--color-be1414);
}

.des-head {
  text-align: right;
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-semibold);
  color: var(--color-be1414);
  margin-top: 1rem;
}

.content-add {
  margin-top: 3rem;
}

.order-details {
  margin-top: 1rem;
  background-color: var(--color-ffffff);
  border-radius: 0.5rem;
}

.help-btn {
  display: flex;
  width: 100%;
  float: right;
  text-align: left;
  justify-content: end;
}

.help-btn a {
  padding: 0.5rem 1rem;
  border-radius: 0.8rem;
  box-shadow: 0 0 6px rgb(0 0 0 / 12%);
  display: flex;
  align-items: center;
  width: fit-content;
}

.tracking-detail {
  padding: 3rem 0;
}

#tracking {
  margin-bottom: 0.5rem;
}

/* [class*="tracking-status-"] p {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
  }
  [class*="tracking-status-"] {
    padding: 1.6rem 0;
  } */
.tracking-list {
  border: 1px solid #e5e5e5;
}

.tracking-item {
  border-left: 4px solid #00ba0d;
  position: relative;
  padding: 1rem 0.5rem 0rem 2rem;
  font-size: 0.9rem;
  margin-left: 3rem;
}

.tracking-item:last-child {
  padding-bottom: 2rem;
}

.tracking-item .tracking-date {
  margin-bottom: 0.5rem;
}

.tracking-item .tracking-date ion-icon {
  font-size: var(--font-size-18);
  background-color: var(--color-f6f6f6);
  padding: 0.5rem;
  border-radius: 100%;
}

.tracking-item .tracking-date span {
  color: #888;
  font-size: 85%;
  padding-left: 0.4rem;
}

.tracking-item .tracking-content {
  padding: 0.5rem 0.8rem;
  background-color: #f4f4f4;
  border-radius: 0.5rem;
}

.tracking-item .tracking-content span {
  display: block;
  color: #767676;
  font-size: 13px;
}

.tracking-item .tracking-icon {
  position: absolute;
  left: -0.66rem;
  width: 1.1rem;
  height: 1.1rem;
  text-align: center;
  border-radius: 50%;
  font-size: 1.1rem;
  background-color: #fff;
  color: #fff;
}

.tracking-item-pending {
  border-left: 4px solid #d6d6d6;
  position: relative;
  padding: 1rem 0.5rem 0rem 2rem;
  font-size: 0.9rem;
  margin-left: 3rem;
}

.tracking-item-pending:last-child {
  padding-bottom: 0rem;
}

.tracking-item-pending .tracking-date {
  margin-bottom: 0.5rem;
}

.tracking-item-pending .tracking-date span {
  color: #888;
  font-size: 85%;
  padding-left: 0.4rem;
}

.tracking-item-pending .tracking-content {
  padding: 0.5rem 0.8rem;
  background-color: #f4f4f4;
  border-radius: 0.5rem;
}

.tracking-item-pending .tracking-content span {
  display: block;
  color: #767676;
  font-size: 13px;
}

.tracking-item-pending .tracking-icon {
  line-height: 2.6rem;
  position: absolute;
  left: -0.7rem;
  width: 1.1rem;
  height: 1.1rem;
  text-align: center;
  border-radius: 50%;
  font-size: 1.1rem;
  color: #d6d6d6;
}

.tracking-item-pending .tracking-content {
  font-weight: 600;
  font-size: 17px;
}

.tracking-item .tracking-icon.status-current {
  width: 1.9rem;
  height: 1.9rem;
  left: -1.1rem;
}

.tracking-item .tracking-icon.status-intransit {
  color: #00ba0d;
  font-size: 0.6rem;
}

.tracking-item .tracking-icon.status-current {
  color: #00ba0d;
  font-size: 0.6rem;
}

.tracking-item {
  margin-left: 2rem;
}

.tracking-item .tracking-date span {
  display: block;
}

.tracking-item .tracking-content {
  padding: 0;
  background-color: transparent;
}

.tracking-item-pending {
  margin-left: 2rem;
}

.tracking-item-pending .tracking-date span {
  display: block;
}

.tracking-item-pending .tracking-date ion-icon {
  font-size: var(--font-size-18);
  background-color: var(--color-f6f6f6);
  padding: 0.5rem;
  border-radius: 100%;
}

.tracking-item-pending .tracking-content {
  padding: 0;
  background-color: transparent;
}

.tracking-item .tracking-content {
  font-weight: 600;
  font-size: 17px;
}

.blinker {
  border: 7px solid #e9f8ea;
  animation: blink 1s;
  animation-iteration-count: infinite;
}

@keyframes blink {
  50% {
    border-color: #fff;
  }
}

.mobile-search {
  display: none;
}

/* pagination-box */

.pro-pagination-style {
  ul {
    display: flex;
    align-items: center;
    justify-content: center;

    .page-item {
      margin-right: 20px;

      &:last-child {
        margin-right: 0;
      }

      .page-link {
        font-weight: 500;

        padding: 0 5px;

        color: var(--color-be1414);
        border: none;
        border-radius: 0;
        background: none;

        &:focus {
          box-shadow: none;
        }
      }

      &.active {
        .page-link {
          color: var(--color-3c57c6);
          border-bottom: 1px solid var(--color-3c57c6);
          border-radius: 0;
          background: none;

          &:focus {
            box-shadow: none;
          }
        }
      }
    }
  }
}

/* swiper button extra */
.swiper-button {
  display: flex;
  position: absolute;
  top: calc(50% - 12px);
  z-index: 10;
  cursor: pointer;
}

.swiper-button svg {
  width: 1.5rem;
  height: 1.5rem;
}

.testi-swiper-button-prev {
  left: 5px;
  padding: 0.5rem;
  background-color: #ffffff;
  border-radius: 100%;
  width: 2.5rem;
  height: 2.5rem;
}

.testi-swiper-button-next {
  right: 5px;
  padding: 0.5rem;
  background-color: #ffffff;
  border-radius: 100%;
  width: 2.5rem;
  height: 2.5rem;
}

.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}


.view-link {
    font-weight: var(--font-weight-bold);
    background-color: transparent;
    color: var(--color-3c57c6);
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: underline !important;
}


.about-left-img{
  object-fit:cover;
  width: 100%;
  height: 100%;
}
.about-left-img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.about-right-content {
    line-height: 22px;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 3rem;
    text-align: left;
    align-items: start;
    background-color: #ffffff96;
}
.about-page h3{
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-24);
  margin-top: 1rem;
}

.about-page h1{
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-48);
    margin-bottom: 2rem;

}

.about-page p{
  text-align: justify;
}
.about-bg-img {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
}
.about-bg-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    margin-bottom: 1rem;
}

.about-section-2 {
    position: relative;
    /* top: -150px; */
    /* padding: 2rem; */
    border-radius: 1rem;
    /* margin-top: -228px;
      box-shadow: 0 0 6px rgb(0 0 0 / 12%); */

}
.about-section-2 .about-img{
    object-fit: cover;
    width: 100%;
    height: 250px; 
    
}
.about-section-2 .about-img img{
    object-fit: cover;
    width: 100%;
    height: 100%; 
    
}
.about-box {
    border: 1px solid #00000042;
    height: 100%;
    background-color: #ffffff08;
    border-right: none;
    padding: 2.5rem;
}
.about-box:nth-child(3) {
    border-right: 1px solid #00000042;
   

}
.about-box h4{
  font-size: var(--font-size-18);
  margin-top: 2rem;
}

.contact-page h1 {
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-48);
    margin-bottom: 2rem;
}

.contact-page .contact-text {
    padding-left: 20px;
    text-align: left;
        width: 80%;
}
.trophies-section h4::after {
    position: relative;
    width: 150px;
    height: 2px;
    background-color: rgb(79, 79, 79);
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    flex-direction: column;
}

.contact-info svg {
    width: 2.5rem;
    background-color: #3956c6;
    padding: 0.5rem;
    border-radius: 100%;
    height: 2.5rem;
    color: aliceblue;
}
.contact-page-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-right: 2rem;
}
.contact-page-img img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.contact-page-form h4::after {
    position: relative;
    width: 150px;
    height: 2px;
    background-color: rgb(79, 79, 79);
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    flex-direction: column;
}

.contact-right {
    /* background-color: #ffffff63; */
    padding: 2rem;
    border: 1px solid #ccc;
}
   :root {
 
  --blur-1-size: clamp(300px, 60vw, 60vw);
  --blur-2-size: clamp(300px, 40vw, 40vw);
  --blur-3-size: clamp(100px, 10vw, 10vw);
  --blur-amount: clamp(40px, 5vw, 90px);
}
.about-page .container-fluid{
   position: relative;
  z-index: 9;
}
.about-page .container{
   position: relative;
  z-index: 9;
}
.blur {
    position: absolute;
    z-index: 0;
    border-radius: 900px;
    filter: blur(var(--blur-amount));
}

.blur:nth-child(1) {
    height: var(--blur-1-size);
    width: calc(var(--blur-1-size) * 1.1);
    z-index: -1;
    background: #e6566b1f;
    top: 0;
}

.blur:nth-child(2) {
    height: var(--blur-2-size);
    width: calc(var(--blur-2-size) * 0.75);
    top: 20vh;
    right: 20vh;
    z-index: -1;
    background: #5085ff1f;
}

.blur:nth-child(3) {
    /* filter: blur(var(--blur-amount)) hue-rotate(-135deg); */
    height: var(--blur-3-size);
    width: calc(var(--blur-3-size) * 2);
    top: 82vh;
    left: -3vw;
    opacity: 1.4;
    z-index: -1;
    background: #2653a970;
}
.policy-page h1 {
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-48);
    margin-bottom: 2rem;
}
.policy-page p{
  text-align: justify;
}
