@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #3c3836;
  --secondary-color: #ac977c;
  --light-secondary-color: #ffddce;
  --hover-color: #ed1d24;
  --yellow-color: #ff9800;
  --foreground-color: #000000;
  --foreground-sub-color: #98928e;
  --body-text-color: #000000;
  --text-white-color: #fff;
  --body-background-color: #fff;
  --footer-bg: #fff3ee;
  --bg-offwhite-color: #fff3ee;
  --bg-gray-color: #f8faff;
  --bg-black-color: #000000;
  --bg-light-dark-color: #1a1818;
  --border-color: #ededed;
  --frank-ruhl-fonts: "Montserrat", sans-serif;
  --karma-fonts: "Montserrat", sans-serif;
  --body-font-size: 1.5rem;
  --body-font-weight: 400;
  --headings-weight: 700;
  --transition: all 0.3s ease 0s;
  --container-fluid-offset: 12rem;
}

/* Common Style */
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:not(i, svg, .isax) {
  font-family: "Montserrat" !important;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--karma-fonts);
  font-weight: var(--body-font-weight);
  font-style: normal;
  color: var(--foreground-color);
  background-color: var(--background-color);
}

[data-aos="fade-up"] {
  transform: translate3d(0, 40px, 0);
  -webkit-transform: translate3d(0, 40px, 0);
  -moz-transform: translate3d(0, 40px, 0);
  -ms-transform: translate3d(0, 40px, 0);
  -o-transform: translate3d(0, 40px, 0);
}

.tooltip {
  font-size: 1rem;
}

p,
.p {
  margin-top: 0px;
  margin-bottom: 0px;
  color: var(--primary-color);
}

p:last-child {
  margin-bottom: 0;
}

a,
button {
  display: inline-block;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

a,
button,
img,
input,
textarea {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

*:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

a:focus {
  text-decoration: none;
  outline: none;
}

a {
  color: var(--foreground-color);
}

a:hover {
  text-decoration: none;
  color: var(--secondary-color);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  transition: none;
}

button,
input[type="submit"] {
  cursor: pointer;
  font-weight: var(--body-font-weight);
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

span {
  display: inline-block;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

label {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  display: block;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
}

ul {
  margin: 0;
  padding: 0;
}

ul:last-child {
  margin-bottom: 0;
}

li {
  list-style: none;
}

hr {
  border-top-width: 2px;
}

@media only screen and (min-width: 576px) {
  .container {
    max-width: 576px;
  }
}

@media only screen and (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media only screen and (min-width: 992px) {
  .container {
    max-width: 992px;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

@media only screen and (min-width: 1366px) {
  .container {
    max-width: 1290px;
  }
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: var(--bs-gutter-x, 1.5rem);
  padding-left: var(--bs-gutter-x, 1.5rem);
}

.container-fluid {
  --offset-fluid: 1.5rem;
  padding-right: var(--offset-fluid);
  padding-left: var(--offset-fluid);
}

@media only screen and (min-width: 992px) {
  .container-fluid {
    --offset-fluid: 3rem;
  }
}

@media only screen and (min-width: 1366px) {
  .container-fluid {
    --offset-fluid: calc(var(--container-fluid-offset) / 4.5);
  }
}

@media only screen and (min-width: 1600px) {
  .container-fluid {
    --offset-fluid: calc(var(--container-fluid-offset) / 2.5);
  }
}

@media only screen and (min-width: 1800px) {
  .container-fluid {
    --offset-fluid: var(--container-fluid-offset);
  }
}

.container-fluid.width-100 {
  --offset-fluid: 0;
}

@media only screen and (max-width: 1199px) {
  .col-lg-order {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .d-lg-none {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .d-md-none {
    display: none;
  }
  .d-md-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .col-md-order {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .d-md-block {
    display: block;
  }
  .d-md-2-block {
    display: block !important;
  }
  .d-md-u-block {
    display: block !important;
  }
}

@media only screen and (max-width: 767px) {
  .d-sm-u-none {
    display: none;
  }
  .d-sm-block {
    display: block;
  }
  .d-sm-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .col-sm-order {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .d-sm-u-block {
    display: block !important;
  }
}

@media only screen and (max-width: 575px) {
  .d-sm-2-none {
    display: none;
  }
  .d-sm-2-block {
    display: block;
  }
  .d-sm-2-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .col-sm-2-order {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (max-width: 479px) {
  .d-sm-3-none {
    display: none;
  }
}

@media only screen and (max-width: 575px) {
  .custom-col {
    width: 50%;
  }
}

@media only screen and (max-width: 479px) {
  .custom-col {
    width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .row-md-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .row_md_reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

@media only screen and (max-width: 767px) {
  .row_sm_reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

@media only screen and (max-width: 575px) {
  .row_sm_u_reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

/*
  Swiper navigation css
*/
.swiper:hover .swiper__nav--btn {
  opacity: 1;
  visibility: visible;
}

.swiper__nav--btn {
  min-width: 45px;
  min-height: 45px;
  background: inherit;
  border: 1px solid var(--secondary-color);
  background: var(--body-background-color);
  color: var(--secondary-color);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: 9;
}

.swiper__nav--btn.swiper-button-disabled {
  background: inherit;
  color: var(--primary-color);
}

.swiper__nav--btn:hover {
  background: var(--secondary-color);
  color: var(--text-white-color);
}

.swiper__nav--btn::after {
  display: none;
}

.swiper__nav--btn.swiper-button-prev {
  left: 0;
}

.swiper__nav--btn.swiper-button-next {
  right: 0;
}

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

/*
  PAGINATION
*/
.pagination {
  gap: 10px;
}

.pagination .page-item {
  padding: 0px;
  margin: 0px;
}

.pagination .page-item .page-link {
  border-radius: 5rem;
  background-color: transparent;
  padding: 7px;
  color: var(--foreground-color);
  border: 2px solid var(--foreground-sub-color);
  min-width: 42px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: none;
}

.pagination .page-item .page-link.active {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  font-weight: bold;
}

.pagination .page-item .page-link:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/*
  Swiper pagination css
*/
.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid var(--primary-color);
  opacity: 1;
  vertical-align: middle;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background: inherit;
  margin: 0 4px !important;
  position: relative;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/*
  default css here
*/
.no-gutter {
  margin-right: 0;
  margin-left: 0;
}

.no-gutter > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.position__sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.header__transparent {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 9;
}

.primary__btn {
  font-weight: 500;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 14px;
  border-radius: 0.5rem;
  background: var(--secondary-color);
  color: var(--text-white-color);
  border: 0;
}

.primary__btn:hover {
  background: var(--primary-color);
  color: var(--text-white-color);
}

.primary__btn:disabled {
  background: #ededed;
  color: var(--primary-color) !important;
  pointer-events: none;
}

.primary__btn:disabled .spinner-border {
  color: var(--primary-color) !important;
}

.gradient__text--color {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#1066e7),
    to(#c81cc5)
  );
  background: linear-gradient(to right, #1066e7 0%, #c81cc5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23adb5bd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}

.form-select {
  height: 45px;
  font-size: 15px;
  padding: 0px 16px;
  letter-spacing: 0.3px;
  background-size: 12px 10px;
  text-transform: capitalize;
  color: var(--text);
  cursor: pointer;
}

.form-select:focus-within {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: var(--primary);
}

.form-control {
  width: 100%;
  height: 45px;
  border-radius: 6px;
  padding: 0px 20px 2px;
  color: var(--text);
}

.form-control:focus-within {
  border-color: black;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}

.section__heading {
  margin-bottom: 40px;
}

.section__heading--subtitle {
  text-transform: uppercase;
  font-weight: 700;
  background: var(--bg-offwhite-color);
  color: var(--primary-color);
  padding: 2px 2.5rem;
  border-radius: 2rem;
  margin-bottom: 1.4rem;
}

.section__heading--maintitle {
  font-weight: 600;
  color: var(--primary-color);
}

.section__heading--flex {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
}

.section__heading--desc {
  margin-top: 1.2rem;
}

#scroll__top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  outline: none;
  background-color: var(--secondary-color);
  color: var(--text-white-color);
  -webkit-box-shadow: 0 2px 22px rgba(0, 0, 0, 0.16);
  box-shadow: 0 2px 22px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

#scroll__top:hover {
  background: var(--primary-color);
}

@media only screen and (max-width: 991px) {
  #scroll__top {
    bottom: 75px;
  }
}

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

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-wrap: normal !important;
}

.width__295 {
  width: 295px;
}

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

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

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

.overflow-hidden {
  overflow: hidden;
}

.break {
  word-break: break-word;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

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

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

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

.bg__black {
  background: #1d1c1c;
}

.bg__gray {
  background: var(--bg-gray-color);
}

.text__hover {
  color: var(--hover-color);
}

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

.text__secondary {
  color: var(--secondary-color) !important;
}

.position__relative {
  position: relative;
}

.border-bottom {
  border-bottom: 1px solid var(--border-color) !important;
}

.border {
  border: 1px solid var(--border-color) !important;
}

.border-0 {
  border: none;
}

.border-radius-5 {
  border-radius: 0.5rem;
}

.border-radius-10 {
  border-radius: 1rem;
}

.border-radius-20 {
  border-radius: 2rem;
}

.border-radius-30 {
  border-radius: 3rem;
}

.border-radius-50 {
  border-radius: 50%;
}

.width-100 {
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .md-width-100 {
    width: 100%;
  }
}

.display-block {
  display: block;
}

/* Tab */
.tab_content {
  display: block;
}

.tab_pane {
  display: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.tab_pane:not(.show) {
  opacity: 0;
}

.tab_pane.show {
  opacity: 1;
}

.tab_pane.active {
  display: block;
}

body.overlay__active,
.mobile_menu_open,
.predictive__search--box_active,
.offCanvas__minicart_active,
.offcanvas__filter--sidebar_active {
  overflow-y: hidden;
}

body.overlay__active::before,
.predictive__search--box_active::before,
.mobile_menu_open::before,
.offCanvas__minicart_active::before,
.offcanvas__filter--sidebar_active::before {
  position: absolute;
  content: "";
  background: #000;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0.5;
  cursor: pointer;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate-fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/* Section padding */
.section--padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Section margin */
.section--nargin {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

/*
    2. Header css
*/
/*
    offcanvas header css
*/
.offcanvas__header--menu__open {
  display: none;
}

@media only screen and (max-width: 991px) {
  .offcanvas__header--menu__open {
    display: block;
  }
}

.offcanvas__header--menu__open--svg {
  width: 32px;
}

.offcanvas__header--menu__open--btn > * {
  pointer-events: none;
}

.mobile_navigation {
  z-index: 99999;
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  visibility: hidden;
  transform: translateX(-100%);
  transition: 350ms;
  display: flex;
  flex-direction: column;
  user-select: none;
}

.mobile_navigation.open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
}

.mobile_navigation.open ~ .offcanvas-overlay {
  visibility: visible;
  opacity: 0.75;
}

.mobile_navigation_header {
  border-bottom: 1px solid #e3e8ef;
  height: 80px !important;
  min-height: 80px !important;
  padding-left: 29px;
  padding-right: 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile_navigation_close_button,
.mobile_navigation_submenu_button {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: right;
  border: none;
  outline: none;
  color: #292d32;
  padding: 0px !important;
  margin: 0px !important;
}

.mobile_navigation_content {
  padding: 30px 29px;
  flex-grow: 1;
  overflow-y: auto;
}

.mobile_navigation_home_content,
.mobile_navigation_search_content,
.mobile_navigation_account_content,
.mobile_navigation_category_content,
.mobile_navigation_content_inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile_navigation_list {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile_navigation_list_main {
  overflow-y: auto;
  flex-grow: 1;
}

.mobile_navigation_list_footer {
  padding-top: 30px;
}

.mobile_navigation_list_item {
  background: #fafafa;
  border-radius: 8px;
  height: 45px !important;
  min-height: 45px !important;
  padding-left: 21px;
  padding-right: 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.mobile_navigation_list_item a {
  flex-grow: 1;
}

.mobile_navigation_list_item_header {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 10px;
}

.mobile_navigation_list_item_title {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 165%;
  letter-spacing: 0.005em;
  color: #111729;
}

.mobile_navigation_footer_account_button_group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.mobile_navigation_footer_account_button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border: none;
  outline: none;
  border-radius: 8px;
  height: 45px !important;
  min-height: 45px !important;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.005em;
}

.mobile_navigation_footer_account_button_login {
  background: #20293a;
  color: white;
}

.mobile_navigation_footer_account_button_register {
  background: #faaf2f;
  color: #20293a;
}

.mobile_navigation_content_header {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile_navigation_content_header_title_content {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 11px;
}

.mobile_navigation_content_header_title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 0.005em;
  color: #111729;
}

.mobile_navigation_input:not([type="submit"]):not([type="file"]):not(
    [type="checkbox"]
  ),
.mobile_navigation_input_prefix_group {
  border-radius: 8px;
  padding: 9px 12px;
  gap: 12px;
  width: 100%;
  border: 1px solid #e3e8ef;
  background-color: white;
  color: #111729;
  outline-color: black;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.005em;
  color: #111729;
  height: 41px !important;
  min-height: 41px !important;
}

.mobile_navigation_input:not([type="submit"]):not([type="file"]):not(
    [type="checkbox"]
  )::placeholder {
  color: #677489;
}

.mobile_navigation_input_prefix_group {
  display: flex;
  align-items: center;
}

.mobile_navigation_input_prefix_group
  .mobile_navigation_input:not([type="submit"]):not([type="file"]):not(
    [type="checkbox"]
  ) {
  border-radius: 0px;
  padding: 0px;
  margin: 0px;
  height: auto !important;
  min-height: auto !important;
  border: none;
  outline: none;
}

.mobile_navigation_input_prefix_group:focus-within,
.mobile_navigation_input:focus-within {
  outline-style: auto;
  outline-width: 5px;
}

.mobile_navigation_content_inner {
  margin-top: 15px;
}

.mobile_navigation_search_content_no_result {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile_navigation_search_content_results {
  overflow: auto;
}

.mobile_navigation_search_content_result_items {
  list-style: none;
  padding: none;
  margin: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

[data-navigate-submenu] {
  cursor: pointer;
}

.mobile_navigation_search_content_result_item {
  background: #fcfcfc;
  border-radius: 8px;
  padding: 23px;
  width: 100%;
  display: flex;
  align-items: start;
  gap: 13px;
}

.mobile_navigation_search_content_result_item_image {
  width: 74px;
  height: 74px;
  border-radius: 8px;
}

.mobile_navigation_search_content_result_item_details {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1px;
}

.mobile_navigation_search_content_result_item_details_title {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.005em;
  color: #111729;
}

.mobile_navigation_search_content_result_item_details_upper_price,
.product_card_upper_price,
.product_detail_upper_price {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.005em;
  text-decoration-line: line-through;
  color: #4a5567;
}

.mobile_navigation_search_content_result_item_details_lower_price_content,
.product_card_lower_price_content,
.product_detail_lower_price_content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mobile_navigation_search_content_result_item_details_lower_price_percent,
.product_card_lower_price_percent,
.product_detail_lower_price_percent {
  background: #ff4242;
  color: white;
  border-radius: 6px;
  padding: 2px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile_navigation_search_content_result_item_details_lower_price,
.product_card_lower_price,
.product_detail_lower_price {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.005em;
  color: #ff4242;
}

.product_card_upper_price,
.product_card_lower_price {
  font-size: 16px;
}

.product_detail_upper_price,
.product_detail_lower_price {
  font-size: 24px;
}

.offcanvas-overlay {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  opacity: 0;
  background-color: var(--bg-black-color);
}

.offcanvas__inner {
  position: relative;
  height: 100%;
  padding-bottom: 5rem;
}

.offcanvas__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 15px;
}

.offcanvas__logo img {
  max-width: 9.5rem;
}

.offcanvas__close--btn {
  position: relative;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  text-indent: -9999px;
  border: none;
  background-color: transparent;
}

.offcanvas__close--btn::before,
.offcanvas__close--btn::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: var(--bg-black-color);
}

.offcanvas__close--btn::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* 
    offcanvas Menu css 
  */
.offcanvas__menu {
  overflow-y: auto;
  height: 100%;
}

.offcanvas__menu_ul {
  overflow: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 300px;
}

.offcanvas__menu_li {
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.offcanvas__menu_li:first-child {
  border-top: 1px solid var(--border-color);
}

.offcanvas__menu_item {
  display: block;
  padding: 15px 20px;
  text-transform: uppercase;
  color: var(--primary-color);
}

/* 
    offcanvas Sub Menu 
*/
.offcanvas__sub_menu {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offcanvas__sub_menu_li {
  position: relative;
  border-top: 1px solid var(--border-color);
}

.offcanvas__sub_menu_item {
  display: block;
  padding: 15px 0 15px 30px;
  color: var(--primary-color);
}

.offcanvas__sub_menu_item ~ .offcanvas__sub_menu .offcanvas__sub_menu_item {
  padding-left: 40px;
}

.offcanvas__sub_menu_toggle {
  position: absolute;
  z-index: 9;
  top: 0;
  right: 0;
  width: 4rem;
  height: 4.6rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
}

.offcanvas__sub_menu_toggle::before,
.offcanvas__sub_menu_toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  content: "";
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-color: var(--bg-black-color);
}

.offcanvas__sub_menu_toggle:not(.active)::after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
}

.offcanvas__account--items {
  margin-top: 2rem;
  padding: 0 1.5rem;
}

.offcanvas__account--items__btn {
  color: var(--secondary-color);
  gap: 0.5rem;
}

/*
    Offcanvas mobile sticky toolbar css here
*/
.offcanvas__sticky--toolbar {
  position: fixed;
  bottom: 0;
  background: var(--body-background-color);
  left: 0;
  right: 0;
  z-index: 99;
  -webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.12);
  padding: 14px 20px;
  display: none;
}

@media only screen and (min-width: 500px) {
  .offcanvas__sticky--toolbar {
    padding: 14px 40px;
  }
}

@media only screen and (min-width: 768px) {
  .offcanvas__sticky--toolbar {
    padding: 14px 60px;
  }
}

@media only screen and (max-width: 991px) {
  .offcanvas__sticky--toolbar {
    display: block;
  }
}

.offcanvas__sticky--toolbar__btn {
  position: relative;
  text-align: center;
}

.offcanvas__sticky--toolbar__btn:hover .offcanvas__sticky--toolbar__icon {
  background: var(--primary-color);
  color: var(--text-white-color);
}

.offcanvas__sticky--toolbar__btn > * {
  pointer-events: none;
}

.offcanvas__sticky--toolbar__btn.minicart__open--btn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.offcanvas__sticky--toolbar__icon {
  width: 3.2rem;
  height: 3.2rem;
  text-align: center;
  background: var(--secondary-color);
  border-radius: 50%;
  color: var(--text-white-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.offcanvas__sticky--toolbar__label {
  display: block;
  font-weight: 600;
  margin-top: 6px;
}

/*
    header sticky css here
*/
.header__sticky {
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 9;
}

/*
   header topbar css here
*/
.header__topbar {
  padding: 8px 0;
  color: var(--primary-color);
}

@media only screen and (min-width: 768px) {
  .header__topbar {
    padding: 10px 0;
  }
}

/*
    language currency css here
*/
.language__currency--list {
  position: relative;
  margin-right: 10px;
  padding-right: 10px;
}

@media only screen and (min-width: 1200px) {
  .language__currency--list {
    margin-right: 12px;
    padding-right: 12px;
  }
}

.language__currency--list:last-child {
  margin-right: 0;
  padding-right: 0;
}

.language__currency--list:last-child::before {
  display: none;
}

.language__currency--list::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 1.7rem;
  background: var(--body-background-color);
  right: 0;
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  opacity: 0.6;
}

.language__currency--link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--text-white-color);
  font-family: var(--jost-fonts);
}

.language__currency--link--icon__img {
  vertical-align: middle;
  margin-right: 5px;
}

.language__currency--link:hover span {
  color: var(--secondary-color);
}

.language__currency--link:hover svg {
  color: var(--secondary-color);
}

.language__currency--link svg {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-left: 5px;
}

.language__currency--link > * {
  pointer-events: none;
}

.currency__link--icon {
  margin-right: 6px;
}

.dropdown__switcher {
  position: absolute;
  z-index: 9;
  width: 100px;
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  top: 100%;
  opacity: 0;
  visibility: hidden;
  margin-top: 16px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background: var(--body-background-color);
  border: 1px solid var(--border-color);
  border-radius: 5px;
}

.dropdown__switcher.active {
  opacity: 1;
  visibility: visible;
  margin-top: 11px;
}

.dropdown__switcher--items:first-child .dropdown__switcher--text {
  border-radius: 5px 5px 0 0;
}

.dropdown__switcher--items:last-child .dropdown__switcher--text {
  border-bottom: 0;
  border-radius: 0 0 5px 5px;
}

.dropdown__switcher--text {
  display: block;
  padding: 8px 14px;
  border-bottom: 1px solid var(--border-color);
}

.dropdown__switcher--text:hover {
  background: var(--bg-offwhite-color);
  border-color: var(--bg-offwhite-color);
}

.offcanvas__language--switcher {
  font-weight: 500;
}

.offcanvas__dropdown--language {
  position: absolute;
  z-index: 9;
  width: 100px;
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  bottom: 100%;
  opacity: 0;
  visibility: hidden;
  margin-bottom: 15px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background: var(--body-background-color);
}

.offcanvas__dropdown--language.active {
  opacity: 1;
  visibility: visible;
  margin-bottom: 8px;
}

/*
    main header css here
*/
.main__header {
  padding: 15px 0;
}

.main__header.sticky {
  border-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .main__header {
    padding: 12px 0;
  }
}

@media only screen and (min-width: 1600px) {
  .main__header {
    padding: 16px 0;
  }
}

.main__header--inner {
  gap: 3rem;
}

@media only screen and (max-width: 575px) {
  .main__header--inner {
    gap: 1.5rem;
  }
}

.main__logo--link {
  display: block;
}

/*
    Search box css here
*/
.header__select--categories {
  position: relative;
}

.header__select--categories::after {
  position: absolute;
  content: "";
  background: var(--border-color);
  width: 0.2rem;
  height: 3rem;
  right: 0;
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
}

.header__select--inner {
  border: 0;
  background: var(--body-background-color);
  height: 50px;
  padding: 0 32px 0 15px;
  border-radius: 5px 0 0 5px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

@media only screen and (min-width: 1200px) {
  .header__select--inner {
    padding: 0 35px 0 17px;
  }
}

.header__search--form {
  position: relative;
  width: 360px;
}

@media only screen and (min-width: 1200px) {
  .header__search--form {
    width: 400px;
  }
}

@media only screen and (min-width: 1366px) {
  .header__search--form {
    width: 600px;
  }
}

.header__search--form label {
  width: 100%;
}

.header__search--input {
  width: 100%;
  border: 0;
  height: 46px;
  border-radius: 3rem;
  padding: 0 80px 0 22px;
  font-weight: 500;
}

.header__search--input:focus::-webkit-input-placeholder {
  color: #000000;
}

@media only screen and (min-width: 1200px) {
  .header__search--input {
    height: 52px;
    padding: 0 80px 0 22px;
  }
}

.header__search--button {
  position: absolute;
  top: 4px;
  right: 8px;
  height: 38px;
  border: 1px solid var(--border-color);
  padding: 0 20px;
  border-radius: 2rem;
  background: var(--bg-offwhite-color);
  color: var(--body-text-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__search--button:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--text-white-color);
}

@media only screen and (min-width: 1200px) {
  .header__search--button {
    padding: 0 22px;
    top: 5px;
    right: 9px;
    height: 42px;
  }
}

.predictive__search--title {
  margin-bottom: 20px;
  color: var(--primary-color);
}

@media only screen and (min-width: 768px) {
  .predictive__search--title {
    margin-bottom: 22px;
  }
}

@media only screen and (min-width: 1200px) {
  .predictive__search--title {
    margin-bottom: 30px;
  }
}

.predictive__search--box {
  background: var(--body-background-color);
  -webkit-box-shadow: 0 -4px 27px rgba(62, 70, 120, 0.16);
  box-shadow: 0 -4px 27px rgba(62, 70, 120, 0.16);
  position: relative;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

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

.predictive__search--box__inner {
  padding: 20px 16px;
  text-align: center;
}

@media only screen and (min-width: 576px) {
  .predictive__search--box__inner {
    padding: 22px 50px;
  }
}

@media only screen and (min-width: 768px) {
  .predictive__search--box__inner {
    padding: 30px 80px;
  }
}

@media only screen and (min-width: 992px) {
  .predictive__search--box__inner {
    padding: 30px 150px;
  }
}

.predictive__search--form {
  width: 100%;
  position: relative;
}

.predictive__search--input {
  width: 100%;
  height: 4.5rem;
  border: 1px solid var(--border-color);
  padding: 0 80px 0 15px;
  font-weight: 400;
  border-radius: 5px;
}

.predictive__search--input:focus {
  border-color: var(--secondary-color);
}

.predictive__search--input:focus::-webkit-input-placeholder {
  color: #000000;
}

@media only screen and (min-width: 1200px) {
  .predictive__search--input {
    height: 5rem;
  }
}

.predictive__search--button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding: 0;
  border: 0;
  width: 6rem;
  text-align: center;
  border-radius: 0 5px 5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--primary-color);
}

.predictive__search--button:hover {
  background: var(--secondary-color);
}

.predictive__search--close__btn {
  position: absolute;
  top: 20px;
  right: 40px;
  padding: 0;
  border: 0;
  background: inherit;
}

@media only screen and (max-width: 576px) {
  .predictive__search--close__btn {
    right: 15px;
  }
}

.predictive__search--close__btn:hover {
  color: var(--secondary-color);
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.predictive__search--close__btn > * {
  pointer-events: none;
}

/*
    header bottom css here
*/
.header__bottom--inner {
  gap: 2.3rem;
}

@media only screen and (min-width: 1200px) {
  .header__bottom--inner {
    gap: 3rem;
  }
}

/*
    header account css here
*/
.header__account.header__sticky--block {
  display: none;
}

.header__account--wrapper {
  gap: 1.25rem;
  width: 240px;
  justify-content: right;
}

@media only screen and (max-width: 992px) {
  .header__account--wrapper {
    width: 25px;
  }
}

@media only screen and (max-width: 474px) {
  .header__account--wrapper {
    width: 88px;
  }
}

.header__account--btn {
  position: relative;
  background: transparent;
  border: none;
  outline: none;
  padding: 0px;
  margin: 0px;
}

.header__account--btn:hover {
  color: var(--secondary-color);
}

.header__account--btn > * {
  pointer-events: none;
}

.items__count {
  position: absolute;
  left: 10px;
  bottom: 15px;
  width: 1.25rem;
  height: 1.25rem;
  background: var(--primary-color);
  text-align: center;
  border-radius: 100%;
  color: var(--text-white-color);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
    main menu css here
*/
.header__menu.header__sticky--block {
  display: none !important;
}

.header__menu--wrapper {
  gap: 1.75rem;
}

.header__menu--items {
  position: relative;
  padding: 1.2rem 0;
  font-size: 14px;
}

.header__menu--items:hover .header__menu--link {
  color: var(--secondary-color) !important;
}

.header__menu--items:hover .header__sub--menu {
  visibility: visible;
  margin-top: 0;
  opacity: 1;
}

.header__menu--items:hover .header__mega--menu__wrapper {
  visibility: visible;
  margin-top: 0;
  opacity: 1;
}

.header__menu--link {
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2rem;
  color: var(--primary-color);
}

.header__menu--link.active {
  color: var(--secondary-color) !important;
}

.menu__arrowdown--icon {
  margin-left: 3px;
}

.header__sub--menu {
  position: absolute;
  z-index: 9;
  top: 100%;
  left: 0;
  visibility: hidden;
  width: 230px;
  margin: 0;
  margin-top: 10px;
  padding: 20px;
  list-style: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  opacity: 0;
  background-color: var(--body-background-color);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.header__sub--menu__link {
  display: block;
  padding: 8px 0;
  font-weight: 500;
  color: var(--primary-color);
}

.mega__menu--items {
  position: static;
}

.header__mega--menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 962px;
  margin: 0 auto;
}

.header__mega--menu__wrapper {
  position: absolute;
  z-index: 9;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 0;
  margin-top: 10px;
  padding: 20px;
  list-style: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  visibility: hidden;
  opacity: 0;
  background-color: var(--body-background-color);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

@media only screen and (min-width: 1200px) {
  .header__mega--menu {
    max-width: 1170px;
  }
}

@media only screen and (min-width: 1366px) {
  .header__mega--menu {
    max-width: 1260px;
  }
}

.header__mega--menu__li {
  padding: 3px 15px;
  width: 19%;
}

.header__mega--menu__li.banner__child {
  width: 24%;
}

.header__mega--menu__banner {
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}

.header__mega--menu__banner:hover .header__mega--menu__banner--img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.header__mega--menu__banner--img {
  border-radius: 5px;
}

.header__mega--sub__menu--title {
  padding: 0.5rem 0;
  font-weight: 500;
  color: var(--primary-color);
}

/*
    End main menu css here
*/
.header__coupon--text {
  font-family: var(--jost-fonts);
  font-weight: 500;
  color: var(--text-white-color);
  border-left: 1px solid #234283;
  padding: 1.5rem 0 1.5rem 2rem;
}

@media only screen and (max-width: 767px) {
  .header__coupon--text {
    display: none;
  }
}

/*
    minicart css here
*/
.offCanvas__minicart {
  position: fixed;
  width: 400px;
  height: 100vh;
  background: var(--body-background-color);
  z-index: 999;
  right: 0;
  top: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  overflow-y: auto;
  -webkit-box-shadow: 0 0 15px rgba(5, 0, 0, 0.1);
  box-shadow: 0 0 15px rgba(5, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.offCanvas__minicart.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.minicart__header {
  padding: 20px;
  padding-bottom: 0px;
}

.minicart__header--desc {
  color: var(--foreground-sub-color);
}

.minicart__title {
  font-weight: 500;
  color: var(--primary-color);
  margin: 0px;
}

.minicart__close--btn {
  padding: 0;
  background: inherit;
  border: 0;
  color: var(--black-color);
}

.minicart__close--btn:hover {
  color: var(--secondary-color);
}

.minicart__close--btn > * {
  pointer-events: none;
}

.minicart__close--icon {
  width: 22px;
}

.minicart__product {
  flex-grow: 1;
  overflow-y: auto;
  padding-bottom: 10px;
  padding-top: 10px;
}

.divider-horizontal {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  border: none;
  border-top: 1px solid #ededed;
}

.minicart__product--items {
  padding-left: 20px;
  padding-right: 20px;
}

.minicart__product--remove {
  border: 0;
  padding: 0;
  background: none;
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: 500;
  color: var(--primary-color);
  opacity: 0.7;
  font-size: 14px;
  margin-left: 5px;
}

.minicart__product--remove:hover {
  color: var(--secondary-color);
}

.minicart__thumb {
  width: 80px;
}

.minicart__text {
  width: calc(100% - 100px);
  padding-left: 10px;
}

@media only screen and (min-width: 480px) {
  .minicart__text {
    width: calc(100% - 120px);
    padding-left: 13px;
  }
}

.minicart__subtitle {
  font-weight: 500;
  margin-bottom: 2px;
}

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

.color__variant {
  opacity: 0.8;
}

.minicart__price {
  margin-bottom: 9px;
}

.minicart__current--price {
  font-weight: 500;
  color: var(--secondary-color);
}

.minicart__old--price {
  color: var(--foreground-sub-color);
  font-weight: 500;
  margin-left: 4px;
  text-decoration: line-through;
}

.minicart__quantity {
  margin-right: 15px;
}

.quantity__box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
}

.quantity__box__button {
  width: 35px;
  height: 35px;
  font-size: 13px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  color: #555555;
  border: none;
  outline: none;
  transition: 300ms;
}

.quantity__box__input {
  width: 100px;
  padding: 5.5px 0px;
  border-radius: 6px;
  text-align: center;
  color: #555555;
  background: #f4f4f4;
  border: none;
  outline: none;
}

.product-action-cart .quantity__box__button {
  width: 30px;
  height: 30px;
  font-size: 12px;
}

.product-action-cart .quantity__box__input {
  width: 45px;
  padding: 3px 0px;
}

.quantity__box__button:hover {
  background: var(--secondary-color);
  color: #ffffff;
}

.quantity__box__button[disabled] {
  pointer-events: none;
}

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

.minicart__amount_list {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.minicart__amount_list_item {
  margin-bottom: 10px;
}

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

.minicart__conditions {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.minicart__conditions--input {
  vertical-align: middle;
  margin-right: 0.8rem;
}

.minicart__conditions--label {
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--primary-color);
}

.minicart__conditions--link {
  color: var(--primary-color);
  text-decoration: underline;
}

.minicart__conditions--link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.minicart__button__group {
  display: flex;
}

.minicart__button {
  font-weight: 600;
  height: 4rem;
  width: 50%;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.minicart__button__view__cart:hover {
  background-color: #ac6d52;
}

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

.minicart__button__checkout:hover {
  background-color: black;
}

/*
    home five header css
*/
@media only screen and (max-width: 991px) {
  .header__search--box__style {
    display: none;
  }
}

.header__search--box__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__search--box__form input::-webkit-input-placeholder {
  color: var(--primary-color);
}

.header__search--box__form input::-moz-placeholder {
  color: var(--primary-color);
}

.header__search--box__form input:-ms-input-placeholder {
  color: var(--primary-color);
}

.header__search--box__form input:-moz-placeholder {
  color: var(--primary-color);
}

.header__search--box__button {
  border: 0;
  background: inherit;
  padding: 0;
}

.header__search--input__field {
  border: 0;
  background: var(--body-background-color);
  height: 3rem;
  color: var(--primary-color);
  padding: 0 1.5rem;
  width: 14rem;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

.menu__style--two .header__menu--items:hover .header__menu--link {
  color: var(--primary-color) !important;
}

/*
    home six header css
*/
@media only screen and (max-width: 991px) {
  .header__topbar--inner.style6 {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}

.main__header--six {
  padding: 8px 0;
}

.menu__color--white .header__menu--link {
  color: var(--text-white-color);
}

.menu__color--white .header__menu--items:hover .header__menu--link {
  color: var(--foreground-color) !important;
}

.header__topbar--info {
  gap: 2.5rem;
}

.header__info--text {
  position: relative;
}

.header__info--text:last-child::before {
  display: none;
}

.header__info--text::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 1.5rem;
  background: var(--border-color);
  right: -14px;
  top: 50%;
  -webkit-transform: translatey(-50%) skew(-21deg);
  transform: translatey(-50%) skew(-21deg);
  opacity: 0.5;
}

.header__info--text a {
  color: var(--text-white-color);
}

.header__info--text a:hover {
  color: var(--secondary-color);
}

.header__top--link {
  gap: 2.5rem;
}

.header__top--right {
  gap: 2.5rem;
}

@media only screen and (max-width: 479px) {
  .header__top--right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
  }
}

.header__link--menu {
  position: relative;
}

.header__link--menu::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 1.7rem;
  background: var(--body-background-color);
  left: -11px;
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  opacity: 0.6;
}

.header__link--menu__text {
  color: var(--text-white-color);
}

.header__link--menu__text:hover {
  color: var(--secondary-color);
}

.main__logo--img {
  height: 37px;
}

.main__logo--img.sticky__block {
  display: none;
}

@media only screen and (min-width: 992px) {
  .main__logo--img {
    height: 45px;
  }
}

/* 
    6. Collection css
*/
.shop__collection--img {
  margin: 0 auto 1.2rem;
  border-radius: 1rem 1rem 0px 0px;
}

.shop__collection--title {
  margin-bottom: 0.3rem;
}

.shop__collection--subtitle {
  color: var(--foreground-sub-color);
}

.shop__collection--link {
  display: block;
}

.shop__collection--title__style {
  border: 1px solid var(--secondary-color);
  background: var(--body-background-color);
  border-radius: 0px 0px 1rem 1rem;
  padding: 15px;
}

/* 
    5. Product card css 
*/
.product__tab--btn {
  margin-top: 2.5rem;
}

.tab__btn--wrapper {
  gap: 1rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (min-width: 992px) {
  .tab__btn--wrapper {
    gap: 1.5rem;
  }
}

@media only screen and (min-width: 1200px) {
  .tab__btn--wrapper {
    gap: 2rem;
  }
}

.tab__btn--link {
  font-weight: 500;
  font-family: var(--inter-fonts);
  text-transform: capitalize;
  color: var(--foreground-sub-color);
  border: 0;
  background: var(--bg-offwhite-color);
  padding: 3px 18px;
  border-radius: 22px;
}

@media only screen and (min-width: 992px) {
  .tab__btn--link {
    padding: 3px 18px;
  }
}

@media only screen and (min-width: 1200px) {
  .tab__btn--link {
    padding: 8px 25px;
  }
}

.tab__btn--link:hover {
  background: var(--primary-color);
  color: var(--text-white-color);
}

.tab__btn--link.active {
  background: var(--primary-color);
  color: var(--text-white-color);
}

.product__card {
  border-radius: 5px;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  background: var(--body-background-color);
}

.product__card:hover .product__secondary--img {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1.02) translatex(-50%);
  transform: scale(1.02) translatex(-50%);
}

.product__card:hover .swiper__nav--btn {
  opacity: 1;
  visibility: visible;
}

.product__card:hover .product__card--action {
  opacity: 1;
  visibility: visible;
  bottom: 35%;
}

.product__card:hover .product__card--action__btn {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.product__card--thumbnail {
  position: relative;
  overflow: hidden;
}

.product__card--thumbnail__link {
  position: relative;
}

.product__card--thumbnail__img {
  margin: 0 auto;
  width: 100%;
  border-radius: 5px 5px 0px 0px;
}

.product__card--content {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
}

.product__card--title {
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.product__card--title a {
  color: var(--primary-color);
}

.product__card--title a:hover {
  color: var(--secondary-color);
}

.product__card--btn {
  background: var(--secondary-color);
  color: var(--text-white-color);
  padding: 0 2rem;
  height: 3.8rem;
  border-radius: 0.5rem;
}

@media only screen and (min-width: 1200px) {
  .product__card--btn {
    padding: 0 2.5rem;
    height: 4rem;
  }
}

.product__card--btn:hover {
  background: var(--primary-color);
  color: var(--text-white-color);
}

.product__card--btn svg {
  margin-left: 0.3rem;
}

.product__card--action {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 15px;
  right: 15px;
}

@media only screen and (max-width: 575px) {
  .product__card--action {
    opacity: 1;
    visibility: visible;
  }

  .product__card--action__btn {
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
  }
}

.product__card--action__list {
  margin-bottom: 1rem;
}

.product__card--action__list:last-child {
  margin-bottom: 0;
}

.product__card--action__btn {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary-color);
  border-color: white;
  border-style: solid;
  outline: none;
  background: white;
  border-radius: 50%;
  text-align: center;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product__card--action__btn:hover {
  background: var(--secondary-color);
  color: var(--text-white-color);
  border-color: var(--secondary-color);
}

.product__card--action__btn.active {
  background: var(--hover-color);
  border-color: var(--hover-color);
  color: var(--text-white-color);
}

.product__card--action.active {
  opacity: 1 !important;
  visibility: visible !important;
  bottom: 35% !important;
}

.product__card--action.active .product__card--action__btn {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.product__card--rating {
  margin-bottom: 1.1rem;
}

.product__card--rating.mb-20 {
  margin-bottom: 2rem;
}

.product__add--to__card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

@media only screen and (max-width: 575px) {
  .product__add--to__card {
    opacity: 1;
    visibility: visible;
    bottom: 1.5rem;
  }
}

.product_badge_list {
  position: absolute;
  top: 0.75rem;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product__badge {
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 8px;
  padding-right: 8px;
  background: var(--secondary-color);
  color: var(--text-white-color);
  border-radius: 0px 0.4rem 0.4rem 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.current__price {
  color: var(--hover-color);
  font-weight: 600;
  font-family: var(--inter-fonts);
}

.old__price {
  color: var(--foreground-sub-color);
  margin-left: 0.6rem;
  font-family: var(--inter-fonts);
  text-decoration: line-through;
}

.rating {
  gap: 0.5rem;
}

.rating__icon {
  color: var(--yellow-color);
}

.rating__review--text {
  font-family: var(--inter-fonts);
  color: var(--foreground-sub-color);
}

.product__load--more {
  margin-top: 3rem;
}

@media only screen and (min-width: 768px) {
  .product__load--more {
    margin-top: 4rem;
  }
}

@media only screen and (min-width: 992px) {
  .product__load--more {
    margin-top: 6rem;
  }
}

.product__swiper--column4.padding {
  padding: 0 0.5rem 1rem;
}

.product__section--border {
  padding: 6rem 1rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--primary-color);
}

@media only screen and (min-width: 768px) {
  .product__section--border {
    padding: 6.5rem 1rem 2.5rem;
  }
}

.product__section--countdown {
  position: absolute;
  top: -15px;
  left: 1.6rem;
  padding: 0.5rem 0.8rem;
  background: var(--primary-color);
  border-radius: 1rem;
  gap: 0.6rem;
}

@media only screen and (min-width: 480px) {
  .product__section--countdown {
    top: -20px;
    left: 2rem;
    padding: 0.8rem 1rem;
  }
}

@media only screen and (min-width: 768px) {
  .product__section--countdown {
    top: -28px;
    left: 10rem;
    padding: 1rem 2rem;
    gap: 1.2rem;
  }
}

.product__section--countdown .countdown__item {
  text-align: center;
}

.product__section--countdown .countdown__number {
  font-weight: 500;
  color: var(--text-white-color);
}

.product__section--countdown .countdown__text {
  color: var(--text-white-color);
  text-transform: capitalize;
}

/* 
    14. Small Product css 
*/
.small__product--thumbnail {
  overflow: hidden;
  width: 125px;
}

@media only screen and (min-width: 1600px) {
  .small__product--thumbnail {
    width: 136px;
  }
}

.small__product--card {
  gap: 1.8rem;
  margin-bottom: 3rem;
}

@media only screen and (min-width: 768px) {
  .small__product--card {
    gap: 1.5rem;
  }
}

@media only screen and (min-width: 1200px) {
  .small__product--card {
    gap: 2rem;
  }
}

.small__product--card:last-child {
  margin-bottom: 0;
}

.small__product--card:hover .small__product--thumbnail img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.small__product--card .product__card--title {
  margin-bottom: 1.2rem;
}

@media only screen and (max-width: 1199px) {
  .small__product--card .product__card--title {
    margin-bottom: 0.8rem;
  }
}

.small__product--card .product__card--rating {
  margin-bottom: 0.8rem;
}

@media only screen and (min-width: 1200px) {
  .small__product--card .product__card--rating {
    margin-bottom: 1.5rem;
  }
}

@media only screen and (min-width: 992px) {
  .small__product--step.margin__left {
    margin-left: 3rem;
  }
}

/* 
    15. Single Product css 
*/
.single__product--wrapper {
  background: var(--body-background-color);
  border: 1px solid var(--secondary-color);
  padding: 1.8rem;
  border-radius: 5px;
  gap: 3rem;
}

@media only screen and (min-width: 992px) {
  .single__product--wrapper {
    gap: 2rem;
  }
}

@media only screen and (min-width: 1200px) {
  .single__product--wrapper {
    padding: 2.2rem;
  }
}

@media only screen and (max-width: 991px) {
  .single__product--wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.single__product--wrapper:hover .single__product--thumbnail__img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.single__product--wrapper:hover .swiper__nav--btn {
  opacity: 1;
  visibility: visible;
}

.single__product--left {
  width: 100%;
  background: var(--bg-gray-color);
  padding: 2rem 1.5rem;
}

@media only screen and (min-width: 992px) {
  .single__product--left {
    width: 270px;
  }
}

@media only screen and (min-width: 1200px) {
  .single__product--left {
    width: 362px;
  }
}

@media only screen and (max-width: 991px) {
  .single__product--left {
    margin: 0 auto;
  }
}

.single__product--right {
  width: 100%;
}

@media only screen and (min-width: 992px) {
  .single__product--right {
    width: calc(100% - 295px);
  }
}

@media only screen and (min-width: 1200px) {
  .single__product--right {
    width: calc(100% - 389px);
  }
}

.single__product--inner {
  gap: 2rem;
}

@media only screen and (min-width: 768px) {
  .single__product--inner {
    gap: 3rem;
  }
}

@media only screen and (max-width: 575px) {
  .single__product--inner {
    gap: 2.5rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.single__product--thumbnail {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.single__product--action {
  gap: 1rem;
  margin-bottom: 2rem;
}

@media only screen and (min-width: 992px) {
  .single__product--action {
    margin-bottom: 2.5rem;
  }
}

.single__product--action__btn {
  width: 3.5rem;
  height: 3.4rem;
  text-align: center;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 5px;
}

.single__product--action__btn:hover {
  background: var(--secondary-color);
  color: var(--text-white-color);
}

.single__product--cart__btn {
  height: 3.4rem;
  padding: 0 1.5rem;
  background: var(--primary-color);
  font-family: var(--inter-fonts);
  font-weight: 600;
  text-transform: capitalize;
  color: var(--text-white-color);
  border-radius: 5px;
}

.single__product--cart__btn:hover {
  background: var(--secondary-color);
  color: var(--text-white-color);
}

.single__product--content {
  margin-bottom: 2.2rem;
}

@media only screen and (min-width: 992px) {
  .single__product--content {
    margin-bottom: 3rem;
  }
}

.single__product--title {
  margin: 1.5rem 0;
}

.single__product--title a {
  color: var(--primary-color);
}

.single__product--title a:hover {
  color: var(--secondary-color);
}

.single__product--countdown {
  gap: 1.2rem;
  padding: 3rem 0 1rem;
}

@media only screen and (min-width: 768px) {
  .single__product--countdown {
    gap: 1.5rem;
  }
}

@media only screen and (max-width: 575px) {
  .single__product--countdown {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.single__product--countdown .countdown__item:hover .countdown__number {
  background: var(--primary-color);
  color: var(--text-white-color);
}

.single__product--countdown .countdown__number {
  width: 4.5rem;
  height: 3.7rem;
  background: var(--body-background-color);
  font-family: var(--inter-fonts);
  font-weight: 600;
  text-align: center;
  border-radius: 3px;
}

.single__product--countdown .countdown__text {
  font-family: var(--inter-fonts);
  font-weight: 500;
  color: var(--foreground-sub-color);
  text-align: center;
  text-transform: capitalize;
}

.single__product--content__badge {
  background: var(--primary-color);
  color: var(--text-white-color);
  padding: 2px 10px;
  border-radius: 13px;
  margin-left: 12px;
}

.sigle__product--badge {
  width: 6rem;
  height: 6rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 500;
}

.sigle__product--badge::before {
  position: absolute;
  content: "";
  left: 4px;
  right: 4px;
  top: 4px;
  bottom: 4px;
  border: 1px dashed #fff;
  border-radius: 50%;
}

.product__sold {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  padding-bottom: 2.3rem;
  margin: 1.5rem 0 2rem;
}

@media only screen and (min-width: 992px) {
  .product__sold {
    margin: 2rem 0 3rem;
  }
}

.product__sold::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1.2rem;
  background: var(--bg-offwhite-color);
  left: 0;
  bottom: 0;
  border-radius: 3px;
}

.product__sold::after {
  position: absolute;
  content: "";
  width: 85%;
  height: 1.2rem;
  background: var(--primary-color);
  left: 0;
  bottom: 0;
  border-radius: 3px;
}

.product__sold--text {
  font-weight: 500;
  font-family: var(--inter-fonts);
  color: var(--foreground-sub-color);
}

.product__sold--text__number {
  color: var(--body-text-color);
}

.single__product--nav {
  padding: 0.2rem 0.5rem;
}

.single__product--nav__items {
  border: 1px solid var(--border-color);
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 5px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single__product--nav__items:hover {
  border-color: var(--primary-color);
}

.single__product--nav__thumbnail {
  margin: 0 auto;
}

.single__product--nav .swiper-slide-active .single__product--nav__items {
  border-color: var(--primary-color);
}

/*
    banner fullwidth css
*/
.banner__fullwidth--bg__thumbnail {
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (min-width: 768px) {
  .banner__fullwidth--bg__thumbnail {
    height: 390px;
  }
}

@media only screen and (min-width: 992px) {
  .banner__fullwidth--bg__thumbnail {
    height: 460px;
  }
}

@media only screen and (min-width: 1200px) {
  .banner__fullwidth--bg__thumbnail {
    height: 560px;
  }
}

@media only screen and (min-width: 1366px) {
  .banner__fullwidth--bg__thumbnail {
    height: 633px;
  }
}

.banner__fullwidth--inner {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
  .banner__fullwidth--inner {
    position: inherit;
    top: inherit;
    -webkit-transform: inherit;
    transform: inherit;
    margin-top: 3rem;
  }
}

@media only screen and (min-width: 768px) {
  .banner__fullwidth--content {
    padding-left: 1rem;
  }
}

@media only screen and (min-width: 992px) {
  .banner__fullwidth--content {
    padding-left: 3rem;
  }
}

@media only screen and (min-width: 1200px) {
  .banner__fullwidth--content {
    padding-left: 10rem;
  }
}

@media only screen and (max-width: 767px) {
  .banner__fullwidth--content {
    text-align: center;
    margin-top: 3rem;
  }
}

.banner__fullwidth--content__subtitle {
  font-family: var(--primary-color);
  font-weight: 400;
  margin-bottom: 1rem;
}

.banner__fullwidth--content__title {
  margin-bottom: 1.2rem;
}

.banner__fullwidth--content__desc {
  margin-bottom: 1.6rem;
}

@media only screen and (min-width: 768px) {
  .banner__fullwidth--content__desc {
    margin-bottom: 2rem;
  }
}

@media only screen and (min-width: 992px) {
  .banner__fullwidth--content__desc {
    margin-bottom: 2.5rem;
  }
}

@media only screen and (min-width: 1200px) {
  .banner__fullwidth--content__desc {
    margin-bottom: 2.7rem;
  }
}

.banner__fullwidth--content.padding__right {
  padding-left: 0;
}

@media only screen and (min-width: 768px) {
  .banner__fullwidth--content.padding__right {
    padding-right: 1rem;
  }
}

@media only screen and (min-width: 992px) {
  .banner__fullwidth--content.padding__right {
    padding-right: 3rem;
  }
}

@media only screen and (min-width: 1200px) {
  .banner__fullwidth--content.padding__right {
    padding-right: 10rem;
  }
}

/*
    banner box css
*/
.col:has(.banner__box) {
  margin-bottom: 30px;
}

.banner__box {
  overflow: hidden;
}

.banner__box:hover .banner__box--thumbnail {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.banner__box--thumbnail {
  width: 100%;
}

.banner__box--content {
  position: absolute;
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  left: 3rem;
}

@media only screen and (max-width: 479px) {
  .banner__box--content {
    left: 2rem;
    right: 1rem;
  }
}

.banner__box--content__title {
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--bg-black-color);
}

@media only screen and (min-width: 480px) {
  .banner__box--content__title {
    margin-bottom: 1.2rem;
  }
}

@media only screen and (min-width: 768px) {
  .banner__box--content__title {
    margin-bottom: 1.5rem;
  }
}

.banner__box--content__desc {
  margin-bottom: 1.5rem;
}

.banner__box--content__btn.style2 {
  border: 1px solid var(--secondary-color);
  background: inherit;
  color: var(--secondary-color);
}

.banner__box--content__btn.style2:hover {
  border-color: var(--hover-color);
  color: var(--hover-color);
}

/*
    grid banner css
*/
.grid__banner--title {
  margin-bottom: 1rem;
}

@media only screen and (min-width: 768px) {
  .grid__banner--title {
    margin-bottom: 1.3rem;
  }
}

.grid__banner--desc {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

@media only screen and (max-width: 575px) {
  .grid__banner--content {
    padding-top: 2.3rem;
    text-align: center;
  }
}

@media only screen and (min-width: 1200px) {
  .grid__banner--content.margin__left {
    margin-left: 4rem;
  }
}

/*
    home four banner vss
*/
.banner__box--content__style {
  position: absolute;
  left: 2.5rem;
}

.banner__box--content__style.top {
  top: 2.5rem;
}

.banner__box--content__style.middle {
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
}

.banner__box--content__style--subtitle {
  color: var(--primary-color);
  font-weight: 400;
  margin-bottom: 0.8rem;
}

@media only screen and (min-width: 992px) {
  .banner__box--content__style--subtitle {
    margin-bottom: 1rem;
  }
}

.banner__box--content__style--title {
  margin-bottom: 1.6rem;
  color: var(--body-text-color);
}

.banner__box--content__style.right__side {
  left: auto;
  right: 4rem;
}

.grid__banner--product {
  position: relative;
  margin: -215px 3rem 0 auto;
}

@media only screen and (min-width: 992px) {
  .grid__banner--product {
    margin: -255px 4rem 0 auto;
  }
}

@media only screen and (min-width: 1200px) {
  .grid__banner--product {
    margin: -286px 8rem 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  .grid__banner--product {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .grid__banner--product.width__295 {
    width: 240px;
  }
}

.grid__banner--product .product__card--action {
  opacity: 1;
  visibility: visible;
  top: 20px;
  right: 20px;
}

.grid__banner--product .product__card--action__btn {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.grid__banner--product .product__add--to__card {
  opacity: 1;
  visibility: visible;
  bottom: 18px;
}

.grid__banner--product:hover .product__add--to__card {
  bottom: 18px;
}

@media only screen and (max-width: 575px) {
  .grid__banner--left__sidebar {
    margin-bottom: 2.5rem;
  }
}

@media only screen and (min-width: 768px) {
  .grid__banner--content__style2 {
    margin: 0 0 0 2rem;
  }
}

@media only screen and (min-width: 992px) {
  .grid__banner--content__style2 {
    margin: 0 0 0 5rem;
  }
}

@media only screen and (max-width: 767px) {
  .banner__fullwidth--thumbnail img {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  .banner_sm_height-250 {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 479px) {
  .banner_sm_height-250 {
    height: 25rem;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

/* 
    9. Testimonial css
*/
.testimonial__bg {
  background: url(../img/banner/banner-fullwidth3.webp);
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
}

@media only screen and (min-width: 768px) {
  .testimonial__section.section--padding {
    padding-bottom: 3rem;
  }
}

@media only screen and (min-width: 1200px) {
  .testimonial__section.section--padding {
    padding-bottom: 3rem;
  }
}

.testimonial__section--inner {
  padding-bottom: 5rem;
}

.testimonial__items {
  padding: 1.5rem;
  background: var(--body-background-color);
  border-radius: 5px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: relative;
}

@media only screen and (min-width: 768px) {
  .testimonial__items {
    padding: 2.5rem 2rem;
  }
}

.testimonial__desc {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-bottom: 1rem;
}

.testimonial__author {
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

@media only screen and (min-width: 992px) {
  .testimonial__author {
    gap: 1.5rem;
  }
}

.testimonial__author__thumbnail {
  min-width: 7rem;
}

.testimonial__author--title {
  font-weight: 500;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-bottom: 0.2rem;
}

.testimonial__author--subtitle {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.testimonial__vector--icon {
  margin: 0 1rem 0 auto;
}

.testimonial__pagination {
  bottom: 0 !important;
}

.testimonial__pagination .swiper-pagination-bullet {
  border: 1px solid var(--secondary-color);
}

.testimonial__pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--secondary-color);
}

/*
    testimonial box css
*/
.testimonial__bg--three {
  background: url(../img/banner/banner-fullwidth6.webp);
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
}

.testimonial__bg--three.section--padding {
  padding-bottom: 5rem;
}

@media only screen and (min-width: 768px) {
  .testimonial__bg--three.section--padding {
    padding-bottom: 6rem;
  }
}

@media only screen and (min-width: 1200px) {
  .testimonial__bg--three.section--padding {
    padding-bottom: 8rem;
  }
}

.testimonial__box--thumbnail {
  margin-bottom: 2rem;
}

.testimonial__box--thumbnail img {
  margin: 0 auto;
}

.testimonial__box--desc {
  margin-bottom: 1.5rem;
}

@media only screen and (min-width: 768px) {
  .testimonial__box--desc {
    margin-bottom: 1.6rem;
  }
}

@media only screen and (min-width: 992px) {
  .testimonial__box--desc {
    margin-bottom: 2rem;
  }
}

@media only screen and (min-width: 1200px) {
  .testimonial__box--desc {
    padding: 0 10rem;
  }
}

.testimonial__box--author__title {
  margin-bottom: 0.6rem;
}

@media only screen and (min-width: 768px) {
  .testimonial__box--author__title {
    margin-bottom: 1rem;
  }
}

.testimonial__box--author__subtitle {
  margin-bottom: 1rem;
}

/* 
    7. Feature css
*/
.feature__inner {
  gap: 3rem;
}

@media only screen and (max-width: 991px) {
  .feature__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}

.feature__items {
  gap: 1.5rem;
}

@media only screen and (min-width: 1200px) {
  .feature__items {
    gap: 1.8rem;
  }
}

.feature__content--title {
  margin-bottom: 0.3rem;
}

.feature__content--desc {
  color: var(--primary-color);
  font-size: 13px;
}

/* 
    21. Newsletter css 
*/
@media only screen and (max-width: 575px) {
  .newsletter__subscribe {
    width: 100%;
  }
}

.newsletter__subscribe--form {
  width: 100%;
  position: relative;
}

.newsletter__subscribe--form input::-webkit-input-placeholder {
  color: var(--primary-color);
}

.newsletter__subscribe--form input::-moz-placeholder {
  color: var(--primary-color);
}

.newsletter__subscribe--form input:-ms-input-placeholder {
  color: var(--primary-color);
}

.newsletter__subscribe--form input:-moz-placeholder {
  color: var(--primary-color);
}

.newsletter__subscribe--input {
  width: 100%;
  border: 1px solid transparent;
  color: var(--primary-color);
  background: var(--body-background-color);
  font-weight: 500;
  border-radius: 5px;
  padding: 0.8rem 1.5rem;
}

.newsletter__subscribe--input:focus {
  border-color: var(--secondary-color);
  color: var(--primary-color);
}

.newsletter__subscribe--button {
  border: 0;
  background: var(--secondary-color);
  padding: 0 1rem;
  text-transform: capitalize;
  font-weight: 500;
  color: var(--text-white-color);
  border-radius: 5px;
  margin-left: 5px;
}

.newsletter__subscribe--button:hover {
  background: var(--primary-color);
  color: var(--text-white-color);
}

@media only screen and (min-width: 576px) {
  .newsletter__subscribe--button {
    padding: 0 1.5rem;
  }
}

@media only screen and (min-width: 992px) {
  .newsletter__subscribe--button {
    padding: 0 1.8rem;
  }
}

.newsletter__subscribe--input.style2 {
  background: var(--body-background-color);
  font-weight: 500;
}

.newsletter__subscribe--button.style2 {
  background: var(--primary-color);
}

.newsletter__subscribe--button.style2:hover {
  background: var(--secondary-color);
  color: var(--text-white-color);
}

.footer__newsletter {
  margin-top: 1.5rem;
}

/* 
    12. Footer css 
*/
.footer__bg {
  background: rgb(244, 250, 255);
  background: -moz-linear-gradient(
    133deg,
    rgba(244, 250, 255, 1) 0%,
    rgba(255, 243, 238, 1) 100%
  );
  background: -webkit-linear-gradient(
    133deg,
    rgba(244, 250, 255, 1) 0%,
    rgba(255, 243, 238, 1) 100%
  );
  background: linear-gradient(
    133deg,
    rgba(244, 250, 255, 1) 0%,
    rgba(255, 243, 238, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f4faff",endColorstr="#fff3ee",GradientType=1);
}

.main__footer.section--padding {
  padding-bottom: 5rem;
  padding-top: 5rem;
}

.footer__social {
  gap: 1rem;
  margin-top: 1.7rem;
}

.social__share--icon {
  padding: 12px;
  min-width: 40px;
  min-height: 40px;
  background: var(--body-background-color);
  color: var(--primary-color);
  text-align: center;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.social__share--icon:hover {
  background: var(--secondary-color);
  color: var(--text-white-color);
}

.footer__logo {
  margin-bottom: 0.5rem;
}

@media only screen and (max-width: 991px) {
  .footer__widget {
    margin-bottom: 3rem;
  }
}

@media only screen and (max-width: 767px) {
  .footer__widget {
    margin-bottom: 0;
  }
}

.footer__widget--desc {
  margin-bottom: 0;
  color: var(--primary-color);
  margin-bottom: 0;
}

.footer__widget--title {
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
  color: var(--primary-color);
  text-transform: uppercase;
}

.footer__widget--title__arrowdown--icon {
  position: absolute;
  right: 0;
  top: 38%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: none;
}

@media only screen and (max-width: 767px) {
  .footer__widget--title__arrowdown--icon {
    display: block;
  }
}

.footer__widget.active {
  padding-bottom: 3rem;
}

.footer__widget.active .footer__widget--title__arrowdown--icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.footer__widget--menu__list {
  margin-bottom: 0.6rem;
}

@media only screen and (min-width: 768px) {
  .footer__widget--menu__list {
    margin-bottom: 0.8rem;
  }
}

.footer__widget--menu__list:last-child {
  margin-bottom: 0;
}

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

.footer__widget--info {
  margin-top: 1.7rem;
}

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

.footer__widget--info_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer__widget--info_list:last-child {
  margin-bottom: 0px;
}

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

.footer__widget--button {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  content: "";
  color: transparent;
  border: 0;
  background-color: transparent;
}

@media only screen and (max-width: 767px) {
  .footer__widget--button {
    visibility: visible;
  }
}

.footer__bottom {
  border-top: 1px solid var(--border-color);
}

.footer__bottom--inenr {
  padding: 1.8rem 0;
}

@media only screen and (min-width: 992px) {
  .footer__bottom--inenr {
    padding: 2.2rem 0;
  }
}

@media only screen and (max-width: 991px) {
  .footer__bottom--inenr {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.2rem;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}

@media only screen and (max-width: 767px) {
  .copyright__content {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .footer__payment.mt-30 {
    margin-top: 2rem;
  }
}

/*
    home six footer css
*/
.footer__bg--style2 {
  background: rgba(250, 238, 238, 0.9);
}

.footer__content--menu {
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media only screen and (min-width: 576px) {
  .footer__content--menu {
    gap: 3rem;
    margin-bottom: 3rem;
  }
}

.footer__content--menu__link {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary-color);
}

.main__footer--content .footer__logo {
  margin-bottom: 1rem;
}

@media only screen and (min-width: 576px) {
  .main__footer--content .footer__logo {
    margin-bottom: 1.5rem;
  }
}

.footer__payment {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3px;
}

.main__footer--content .footer__social {
  margin-top: 0;
  margin-bottom: 2.5rem;
}

@media only screen and (min-width: 576px) {
  .main__footer--content .footer__social {
    margin-bottom: 3rem;
  }
}

.footer__bottom--style {
  border-top: 1px solid #ddd;
}

/* 
    13. Quickview css
*/
.modal {
  background: rgba(0, 0, 0, 0.6);
}

.quickview__main--wrapper {
  max-width: 895px;
  position: relative;
  overflow: auto;
  cursor: default;
  padding: 25px;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  pointer-events: inherit;
}

.modal-content.quickview__main__content {
  padding: 20px;
  border-radius: 10px;
  border: 0;
  max-height: 80vh;
  overflow: auto;
}

@media only screen and (max-width: 767px) {
  .modal-content.quickview__main__content {
    max-width: 550px;
  }
}

@media only screen and (max-width: 575px) {
  .modal-content.quickview__main__content {
    padding: 25px 15px;
  }
}

.modal-header.quickview_m_header {
  padding: 0;
  position: absolute;
  top: 16px;
  right: 16px;
  border: 0;
  z-index: 9;
}

@media only screen and (max-width: 767px) {
  .modal-header.quickview_m_header {
    top: 10px;
    right: 10px;
  }
}

.quickview__header {
  position: absolute;
  padding: 0;
  top: 16px;
  right: 16px;
  z-index: 9;
}

@media only screen and (max-width: 767px) {
  .quickview__header {
    top: 10px;
    right: 10px;
  }
}

.quickview__close--btn {
  padding: 0;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  font-weight: 700;
  border: 1px solid var(--border-color);
  background: var(--text-white-color);
  padding: 0 !important;
  margin: 0 !important;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  color: #000000;
}

.quickview__close--btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--text-white-color);
}

.quickview__close--btn:focus {
  -webkit-box-shadow: inherit !important;
  box-shadow: inherit !important;
}

.modal-body.quickview__inner {
  padding: 0;
}

/* ANIMATIONS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
[data-animation] .modal-dialog {
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15);
  transition: all 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15);
}

[data-animation].is-visible .modal-dialog {
  opacity: 1;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

@media only screen and (max-width: 767px) {
  .quickview__gallery {
    margin-bottom: 20px;
  }
}

.quickview__thumb {
  position: relative;
}

.quickview__thumb--link {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.quickview__thumb--img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.quickview__gallery--pagination {
  bottom: 5px !important;
}

.quickview__gallery--pagination .swiper-pagination-bullet {
  width: 2rem;
  height: 0.6rem;
  background: var(--primary-color);
  opacity: 1;
  border-radius: 2px;
  margin: 0 3px !important;
}

.quickview__gallery--pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--secondary-color);
}

.variant__color--value {
  width: 3.5rem;
  height: 3.5rem;
  padding: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 5px;
  margin-right: 10px;
  line-height: 1;
  cursor: pointer;
}

.variant__color--value:last-child {
  margin-right: 0;
}

.variant__color--value__img {
  border-radius: 5px;
}

.variant__color--list input[type="radio"] + label {
  border: 1px solid var(--border-color);
}

.variant__color--list input[type="radio"] + label:hover {
  border: 1px solid var(--secondary-color);
}

.variant__color--list {
  margin-right: 10px;
}

.variant__color--list input[type="radio"] {
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px;
}

.variant__color--list input[type="radio"]:checked + label {
  border: 1px solid var(--secondary-color);
}

.variant__color--list:last-child {
  margin-right: 0;
}

.variant__input--fieldset {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  border: none;
  margin: 0;
  padding: 0;
}

.variant__size--list input[type="radio"] + label {
  border: 1px solid var(--border-color);
}

.variant__size--list input[type="radio"] + label:hover {
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}

.variant__size--list {
  margin-right: 13px;
}

.variant__size--list:last-child {
  margin-right: 0;
}

.variant__size--list input[type="radio"] {
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px;
}

.variant__size--list input[type="radio"]:checked + label {
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}

.variant__size--value {
  width: 4.7rem;
  height: 3.2rem;
  display: inline-block;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
}

.quickview__variant--wishlist__svg {
  width: 22px;
  margin-right: 7px;
}

.variant__wishlist--icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--primary-color);
}

.quickview__cart--btn {
  height: 3.8rem;
  line-height: 3.8rem;
  padding: 0 25px;
  margin-left: 15px;
}

.quickview__social--title {
  font-weight: 600;
  margin-right: 15px;
  color: var(--primary-color);
}

.quickview__social--list {
  margin-right: 10px;
}

.quickview__social--list:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .quickview__social--style3 {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
  }
}

/*
    lookbook css
*/
@media only screen and (min-width: 576px) {
  .lookbook__thumbnail {
    width: 49%;
  }
}

@media only screen and (max-width: 575px) {
  .lookbook__banner--inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.lookbook__banner--right {
  background: rgba(250, 238, 238, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (min-width: 576px) {
  .lookbook__banner--right {
    width: 51%;
  }
}

.lookbook__banner--content {
  padding-left: 3rem;
}

@media only screen and (min-width: 992px) {
  .lookbook__banner--content {
    padding-left: 11rem;
  }
}

@media only screen and (min-width: 1200px) {
  .lookbook__banner--content {
    padding-left: 12rem;
  }
}

@media only screen and (min-width: 1366px) {
  .lookbook__banner--content {
    padding-left: 15rem;
  }
}

@media only screen and (max-width: 575px) {
  .lookbook__banner--content {
    text-align: center;
    padding: 5rem 2rem;
    width: 100%;
  }
}

.lookbook__banner--content__subtitle {
  color: var(--primary-color);
  margin-bottom: 0.6rem;
}

@media only screen and (min-width: 992px) {
  .lookbook__banner--content__subtitle {
    margin-bottom: 0.8rem;
  }
}

@media only screen and (min-width: 1200px) {
  .lookbook__banner--content__subtitle {
    margin-bottom: 1rem;
  }
}

.lookbook__banner--content__title {
  margin-bottom: 1rem;
}

@media only screen and (min-width: 768px) {
  .lookbook__banner--content__title {
    margin-bottom: 1.2rem;
  }
}

@media only screen and (min-width: 992px) {
  .lookbook__banner--content__title {
    margin-bottom: 1.5rem;
  }
}

.lookbook__banner--content__desc {
  margin-bottom: 2.2rem;
}

@media only screen and (min-width: 768px) {
  .lookbook__banner--content__desc {
    margin-bottom: 2.5rem;
  }
}

@media only screen and (min-width: 992px) {
  .lookbook__banner--content__desc {
    margin-bottom: 3rem;
  }
}

@media only screen and (min-width: 1200px) {
  .lookbook__banner--content__desc {
    margin-bottom: 3.5rem;
  }
}

.lookbook__banner--product {
  position: absolute;
  top: 50%;
  right: -7rem;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
}

@media only screen and (max-width: 991px) {
  .lookbook__banner--product {
    display: none;
  }
}

.lookbook__banner--product .product__card--action {
  opacity: 1;
  visibility: visible;
  top: 20px;
  right: 20px;
}

.lookbook__banner--product .product__card--action__btn {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.lookbook__banner--product .product__add--to__card {
  opacity: 1;
  visibility: visible;
  bottom: 18px;
}

.lookbook__banner--product:hover .product__add--to__card {
  bottom: 18px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .lookbook__banner--product.width__295 {
    width: 23.6rem;
  }
}

.lookbook__box {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  bottom: calc(50% - 3rem);
  left: calc(50% - 3rem);
}

.lookbook__box:hover .lookbook__product {
  opacity: 1;
  visibility: visible;
}

.lookbook__box--icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--body-background-color);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

.lookbook__box--icon div {
  width: 1rem;
  height: 1rem;
  border-radius: 100%;
  background-color: var(--secondary-color);
}

.lookbook__product {
  position: absolute;
  background: var(--body-background-color);
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  width: 20rem;
  gap: 1.2rem;
  border-radius: 0.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
}

.lookbook__product--thumbnail {
  width: 5rem;
}

.lookbook__product--content__title {
  margin-bottom: 0.5rem;
}

.lookbook__product--link {
  font-weight: 500;
  color: var(--foreground-sub-color);
  border-bottom: 1px solid var(--foreground-sub-color);
}

/* 
    11. Accordion css
*/
.accordion__items.active {
  margin-bottom: 20px;
}

.accordion__items.active:last-child {
  margin-bottom: 0;
}

.accordion__items.active .accordion__items--button__icon--svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.accordion__items--body {
  display: none;
  padding: 0 20px;
}

.accordion__items:last-child .accordion__items--button {
  margin-bottom: 0;
}

.accordion__items--button {
  border: 0;
  background: var(--white-color);
  width: 100%;
  padding: 13px 60px 13px 25px;
  text-align: left;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
}

@media only screen and (min-width: 992px) {
  .accordion__items--button {
    padding: 13px 70px 13px 35px;
  }
}

@media only screen and (min-width: 1200px) {
  .accordion__items--button {
    padding: 24px 80px 24px 40px;
  }
}

.accordion__items--button__icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-color);
  color: var(--text-white-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
}

@media only screen and (min-width: 768px) {
  .accordion__items--button__icon {
    right: 15px;
  }
}

@media only screen and (min-width: 992px) {
  .accordion__items--button__icon {
    right: 35px;
  }
}

.accordion__items--button__icon--svg {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.accordion__items--button > * {
  pointer-events: none;
}

/* 
    20. Portfolio css 
*/
.portfolio__items--thumbnail {
  border-radius: 5px;
}

.portfolio__items--thumbnail::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: 9;
  pointer-events: none;
  border-radius: 5px;
}

.portfolio__items--thumbnail:hover::before {
  opacity: 0.7;
}

.portfolio__items--thumbnail:hover .portfolio__view--icon {
  opacity: 1;
  visibility: visible;
}

.portfolio__items--thumbnail__link {
  overflow: hidden;
  border-radius: 5px;
}

.portfolio__items--thumbnail:hover .portfolio__items--thumbnail__img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.portfolio__items--thumbnail__img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 5px;
}

.portfolio__view--icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translatey(-50%) translatex(-50%);
  transform: translatey(-50%) translatex(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: 9;
}

.portfolio__view--icon__link {
  color: var(--text-white-color);
}

/* 
    10. Brand logo css
*/
.brang__logo--img {
  margin: 0 auto;
  opacity: 0.6;
}

.brang__logo--img:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  opacity: 1;
}

.brand__logo--activation .swiper-wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* 
    31. Breadcrumb css 
*/
.breadcrumb__bg {
  background: var(--bg-offwhite-color);
  padding: 2rem 0;
}

.breadcrumb__content {
  position: relative;
}

.breadcrumb__content--title {
  margin-bottom: 8px;
  color: var(--primary-color);
  font-weight: 600;
}

@media only screen and (min-width: 992px) {
  .breadcrumb__content--title {
    margin-bottom: 10px;
  }
}

.breadcrumb__content--menu__items {
  position: relative;
  margin-right: 18px;
  padding-right: 18px;
}

.breadcrumb__content--menu__items:last-child {
  margin-right: 0;
  padding-right: 0;
}

.breadcrumb__content--menu__items:last-child::before {
  display: none;
}

.breadcrumb__content--menu__items::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  background: var(--secondary-color);
  right: 0;
  top: 4px;
  border-radius: 5px;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

/* 
    17. Shop page css 
*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shop-col-width-lg-4 {
    width: 30%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shop-col-width-lg-8 {
    width: 70%;
  }
}

.shop__header {
  padding: 1.5rem 2rem;
  border-radius: 5rem;
  background: #fffdfc;
  gap: 12px;
}

.product__view--mode {
  gap: 2.5rem;
}

@media only screen and (max-width: 767px) {
  .product__view--mode {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 479px) {
  .product__view--mode {
    gap: 1.5rem;
  }
}

.product__view--label {
  font-weight: 500;
  margin-right: 12px;
  color: var(--primary-color);
}

.product__view--select {
  border: 1px solid var(--border-color);
  padding: 0.6rem 3rem 0.6rem 1.2rem;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  border-radius: 5rem;
  background-color: var(--body-background-color);
  transition: var(--transition);
}

.product__view--select:focus,
.product__view--select:hover {
  border: 1px solid var(--secondary-color);
}

.select.shop__header--select::before {
  right: 14px;
}

.product__grid--column__buttons--icons {
  border: 1px solid var(--border-color);
  background: var(--body-background-color);
  border-radius: 0.3rem;
  width: 3.7rem;
  height: 3.7rem;
  margin-right: 10px;
  text-align: center;
  padding: 0;
}

.product__grid--column__buttons--icons:last-child {
  margin-right: 0;
}

.product__grid--column__buttons--icons:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.product__grid--column__buttons--icons.active {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.product__grid--column__buttons--icons > * {
  pointer-events: none;
}

.product__showing--count {
  color: var(--primary-color);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/*
    sidebar widget css here
*/
.offcanvas__filter--sidebar {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 300px;
  height: 100vh;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  background-color: var(--body-background-color);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

@media only screen and (min-width: 480px) {
  .offcanvas__filter--sidebar {
    max-width: 320px;
  }
}

.offcanvas__filter--sidebar.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.widget__filter--btn {
  border: 1px solid var(--border-color);
  background: var(--body-background-color);
  border-radius: 3rem;
  padding: 0.5rem 1.2rem;
  display: flex;
}

.widget__filter--btn:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.widget__filter--btn svg path {
  transition: var(--transition);
}

.widget__filter--btn:hover svg path {
  stroke: var(--secondary-color);
}

.widget__filter--btn:hover span {
  color: var(--secondary-color);
}

.widget__filter--btn__icon {
  width: 20px;
}

.widget__filter--btn__text {
  font-weight: 600;
  margin-left: 0.7rem;
}

.widget__filter--btn > * {
  pointer-events: none;
}

.offcanvas__filter--close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  margin: 25px;
  background: var(--white-color);
}

.offcanvas__filter--close:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.offcanvas__filter--close__text {
  font-weight: 600;
  margin-left: 8px;
}

.offcanvas__filter--close > * {
  pointer-events: none;
}

.single__widget {
  margin-bottom: 3rem;
}

@media only screen and (min-width: 992px) {
  .single__widget {
    margin-bottom: 4rem;
  }
}

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

.single__widget.widget__bg {
  padding: 2.5rem 2rem;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 2px 22px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 22px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
}

.widget__title {
  font-weight: 600;
  margin-bottom: 2rem;
  position: relative;
  color: var(--primary-color);
  padding-left: 1.2rem;
}

@media only screen and (min-width: 992px) {
  .widget__title {
    margin-bottom: 2.8rem;
  }
}

.widget__title::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 2px;
  height: 2.5rem;
  background: var(--primary-color);
}

.widget__search--form {
  position: relative;
}

.widget__search--form__input {
  width: 100%;
  height: 5rem;
  padding: 0 6rem 0 1.2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
}

.widget__search--form__input:focus {
  border-color: var(--secondary-color);
}

.widget__search--form__btn {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  background: var(--secondary-color);
  color: var(--text-white-color);
  padding: 0;
  width: 4.5rem;
  height: 100%;
  border-radius: 0 0.5rem 0.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.widget__search--form__btn:hover {
  background: var(--secondary-color);
}

.widget__categories--menu__list {
  border: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
}

.widget__categories--menu__list:last-child {
  margin-bottom: 0;
}

.widget__categories--menu__list.active .widget__categories--menu__label {
  margin-bottom: 0;
}

.widget__categories--menu__list.active
  .widget__categories--menu__arrowdown--icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  top: 38%;
}

.widget__categories--menu__label {
  cursor: pointer;
  padding: 0.5rem 1rem;
  position: relative;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--body-text-color);
}

.widget__categories--menu__label:hover {
  color: var(--secondary-color);
}

.widget__categories--menu__label > * {
  pointer-events: none;
}

.widget__categories--menu__text {
  padding-left: 1.3rem;
}

.widget__categories--menu__img {
  width: 3rem;
}

.widget__categories--menu__arrowdown--icon {
  position: absolute;
  right: 1.5rem;
  top: 43%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.widget__categories--sub__menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border-color);
}

.widget__categories--sub__menu--list {
  margin-bottom: 0.8rem;
  padding: 0 1rem 0.8rem;
  border-bottom: 1px solid var(--border-color);
}

.widget__categories--sub__menu--list:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.widget__categories--sub__menu--img {
  width: 2.8rem;
}

.widget__categories--sub__menu--text {
  padding-left: 1.3rem;
}

.widget__form--check__list {
  margin-bottom: 1rem;
  position: relative;
}

.widget__form--check__list:last-child {
  margin-bottom: 0;
}

.widget__form--check__label {
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  background: var(--white-color);
  padding: 0.5rem 3rem 0.5rem 1.5rem;
  border-radius: 0.5rem;
  display: block;
  color: var(--body-text-color);
}

.widget__form--check__label:hover {
  color: var(--secondary-color);
}

.widget__form--check__input {
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  opacity: 0;
  cursor: pointer;
  z-index: 999;
}

.widget__form--check__input:checked ~ .widget__form--checkmark {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.widget__form--check__input:checked ~ .widget__form--checkmark::before {
  display: block;
}

.widget__form--checkmark {
  height: 1.8rem;
  width: 1.8rem;
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  background: var(--body-background-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.widget__form--checkmark::before {
  right: 0.5rem;
  top: 0.3rem;
  width: 0.5rem;
  height: 0.8rem;
  border: solid white;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  position: absolute;
  display: none;
}

.price__filter--group {
  width: 46%;
}

.price__filter--label {
  font-weight: 600;
  margin-bottom: 0.6rem;
  display: inline-block;
}

.price__filter--input {
  border: 1px solid var(--border-color);
  padding: 0.3rem 0.7rem;
}

.price__filter--currency {
  font-weight: 700;
  margin-right: 0.6rem;
}

.price__filter--btn {
  height: 4rem;
  line-height: 4rem;
}

.price__divider {
  padding: 2.5rem 1rem 0;
}

.widget__tagcloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.widget__tagcloud--link {
  border: 1px solid var(--border-color);
  background: var(--body-background-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.widget__tagcloud--link:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--text-white-color);
}

.shop__sidebar--product .small__product--thumbnail {
  width: 100px;
}

.shop__sidebar--product .small__product--card {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-top: 0;
  border-bottom: 1px solid var(--border-color);
}

.shop__sidebar--product .small__product--card:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

/*
    shop product wrapper css here
*/
@media only screen and (max-width: 991px) {
  .shop__product--wrapper .product__items--link {
    width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .shop__product--wrapper .product__items--img {
    width: 100%;
  }
}

.product__list {
  gap: 2rem;
  padding: 1.7rem;
}

@media only screen and (min-width: 576px) {
  .product__list {
    gap: 2.5rem;
    padding: 2rem;
  }
}

@media only screen and (min-width: 1200px) {
  .product__list {
    gap: 3rem;
    padding: 3rem;
  }
}

@media only screen and (max-width: 479px) {
  .product__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.product__list .product__card--price {
  opacity: 1;
  visibility: visible;
}

.product__list--thumbnail {
  width: 220px;
  padding: 0;
}

@media only screen and (min-width: 480px) {
  .product__list--thumbnail {
    width: 170px;
  }
}

@media only screen and (min-width: 768px) {
  .product__list--thumbnail {
    width: 190px;
  }
}

@media only screen and (min-width: 1200px) {
  .product__list--thumbnail {
    width: 245px;
  }
}

.product__list--content {
  width: 100%;
  padding: 0;
}

@media only screen and (min-width: 480px) {
  .product__list--content {
    width: calc(100% - 200px);
  }
}

@media only screen and (min-width: 768px) {
  .product__list--content {
    width: calc(100% - 212px);
  }
}

@media only screen and (min-width: 1200px) {
  .product__list--content {
    width: calc(100% - 245px);
  }
}

@media only screen and (max-width: 479px) {
  .product__list--content {
    text-align: center;
  }
}

.product__list--content .product__card--title {
  margin-bottom: 1.2rem;
}

@media only screen and (min-width: 1200px) {
  .product__list--content .product__card--title {
    margin-bottom: 1.5rem;
  }
}

.product__list--content .product__list--price {
  margin-bottom: 1rem;
}

.product__list--content .product__card--rating {
  margin-bottom: 1.4rem;
}

@media only screen and (min-width: 1200px) {
  .product__list--content .product__card--rating {
    margin-bottom: 1.5rem;
  }
}

@media only screen and (max-width: 479px) {
  .product__list--content .product__card--rating {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.product__list--content .product__card--btn {
  display: inline-block;
  width: auto;
  border-radius: 5px;
  height: 4rem;
  line-height: 4rem;
  background: var(--primary-color);
  color: var(--text-white-color);
  font-weight: 500;
}

.product__list--content .product__card--btn:hover {
  background: var(--secondary-color);
}

@media only screen and (max-width: 767px) {
  .product__card--content__desc {
    display: none;
  }
}

.product__list--price {
  margin-bottom: 1rem;
}

@media only screen and (min-width: 1200px) {
  .product__list--price {
    margin-bottom: 1.2rem;
  }
}

/* 
    33. About page css 
*/
.about__Section.mb-30 {
  margin-bottom: 3rem;
}

@media only screen and (max-width: 575px) {
  .about__Section.mb-30 {
    margin-bottom: 5rem;
  }
}

@media only screen and (min-width: 768px) {
  .about__thumbnail.padding__left {
    padding-left: 4rem;
  }
}

@media only screen and (min-width: 992px) {
  .about__thumbnail.padding__left {
    padding-left: 6rem;
  }
}

@media only screen and (min-width: 1200px) {
  .about__thumbnail.padding__left {
    padding-left: 9rem;
  }
}

@media only screen and (max-width: 575px) {
  .about__content {
    padding-top: 2.5rem;
    text-align: center;
  }
}

@media only screen and (min-width: 768px) {
  .about__content.padding__left {
    padding-left: 2rem;
  }
}

@media only screen and (min-width: 1366px) {
  .about__content.padding__left {
    padding-left: 5rem;
  }
}

.about__content--subtitle {
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: var(--secondary-color);
}

@media only screen and (min-width: 768px) {
  .about__content--subtitle {
    margin-bottom: 1rem;
  }
}

.about__content--title {
  margin-bottom: 1.4rem;
}

@media only screen and (min-width: 768px) {
  .about__content--title {
    margin-bottom: 1.6rem;
  }
}

@media only screen and (min-width: 1200px) {
  .about__content--title {
    margin-bottom: 2rem;
  }
}

.about__content--desc {
  margin-bottom: 1.7rem;
  color: var(--primary-color);
}

@media only screen and (min-width: 768px) {
  .about__content--desc {
    margin-bottom: 1.8rem;
  }
}

@media only screen and (min-width: 1200px) {
  .about__content--desc {
    margin-bottom: 2rem;
  }
}

.about__experience--text {
  position: absolute;
  top: 50%;
  left: 0;
  border: 1px solid var(--secondary-color);
  background: var(--body-background-color);
  border-radius: 0.5rem;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  padding: 1rem;
  width: 10rem;
}

@media only screen and (min-width: 768px) {
  .about__experience--text {
    width: 11rem;
  }
}

@media only screen and (min-width: 992px) {
  .about__experience--text {
    padding: 1.5rem;
    width: 15rem;
  }
}

@media only screen and (min-width: 1366px) {
  .about__experience--text {
    width: 16rem;
    padding: 2rem;
  }
}

@media only screen and (max-width: 575px) {
  .about__experience--text {
    left: 50%;
    -webkit-transform: translatex(-50%);
    transform: translatex(-50%);
  }
}

.about__experience--years {
  color: var(--primary-color);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.about__experience--years__inner {
  font-family: var(--frank-ruhl-fonts);
}

.about__experience--title {
  font-weight: 500;
  line-height: 2rem;
}

/*
    team member css
*/
.team__items:hover .team__thumb {
  border-color: var(--secondary-color);
}

.team__thumb {
  position: relative;
  line-height: 1;
  display: inline-block;
  border: 2px solid var(--border-color);
  padding: 0.3rem;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 10px;
}

.team__thumb--img {
  border-radius: 10px;
}

.team__social {
  gap: 1rem;
}

@media only screen and (min-width: 1200px) {
  .team__social {
    gap: 1.2rem;
  }
}

.team__social--icon {
  width: 2.8rem;
  height: 2.8rem;
  text-align: center;
  background: var(--bg-offwhite-color);
  color: var(--body-text-color);
  line-height: 3rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.team__social--icon:hover {
  background: var(--secondary-color);
  color: var(--text-white-color);
}

@media only screen and (min-width: 1200px) {
  .team__social--icon {
    width: 3rem;
    height: 3rem;
    line-height: 3.2rem;
  }
}

.team__content {
  padding: 1rem 0 0;
}

@media only screen and (max-width: 991px) {
  .team__content {
    padding: 0.8rem 0 0;
  }
}

.team__content--subtitle {
  color: var(--foreground-sub-color);
  margin-bottom: 1.3rem;
}

.team__content--title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

@media only screen and (min-width: 992px) {
  .team__content--title {
    margin-bottom: 1rem;
  }
}

/* 
    26. Counterup css here
*/
.counterup__banner__bg2 {
  background: var(--bg-offwhite-color);
}

.counterup__banner--inner {
  padding: 6rem 0;
  gap: 2.5rem;
}

@media only screen and (max-width: 767px) {
  .counterup__banner--inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.counterup__title {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

@media only screen and (min-width: 992px) {
  .counterup__title {
    margin-bottom: 1.8rem;
  }
}

.counterup__number {
  font-weight: 600;
  color: var(--primary-color);
}

/* 
    16. Product details css 
*/
.product__details--media {
  position: sticky;
  top: 80px;
}

.single__product--preview.bg__gray {
  padding: 1rem;
  border-radius: 1rem;
}

.product__media--preview__items--img {
  width: 100%;
  margin: 0 auto;
  border-radius: 15px;
}

.product__media--preview__items {
  position: relative;
}

.product__media--preview__items--link {
  display: block;
}

.product__media--view__icon {
  position: absolute;
  top: 2rem;
  left: 2rem;
}

.product__media--view__icon--link {
  width: 3.5rem;
  height: 3.5rem;
  line-height: 4.5rem;
  text-align: center;
  background: var(--secondary-color);
  border-radius: 50%;
  color: var(--text-white-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.product__media--view__icon--link:hover {
  background: var(--primary-color);
  color: var(--text-white-color);
}

.product__media--view__icon.media__play {
  right: 2rem;
  left: auto;
}

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

.media__play--icon__link:hover {
  color: var(--primary-color);
}

.product__media--nav {
  margin-top: 2rem;
  padding: 0 1rem;
}

.product__media--nav__items {
  border: 2px solid transparent;
  padding: 2px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
}

.product__media--nav__items.active {
  border: 2px solid black;
}

.product__media--nav__items--img {
  height: 100%;
  border-radius: 2px;
  cursor: pointer;
}

.image__with--text__percent--list {
  position: relative;
}

.image__with--text__percent--list::before {
  position: absolute;
  content: "";
  background: var(--border-color);
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.image__with--text__percent--list::after {
  position: absolute;
  content: "";
  background: var(--secondary-color);
  bottom: 0;
  left: 0;
  width: 58%;
  height: 4px;
}

.image__with--text__percent--top {
  padding-bottom: 1.7rem;
}

.image__with--text__percent--content {
  font-weight: 600;
  color: var(--primary-color);
}

.image__with--text__percent--list.two::after {
  width: 77%;
}

/*
    product details info css here
*/
.product__details--info__price .old__price {
  margin-left: 0.8rem;
}

.product__details--info .product__card--rating {
  margin-bottom: 1.5rem;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product__details--info.style2 {
    margin-top: 3rem;
  }
}

.variant__buy--now__btn {
  width: 100%;
  font-weight: 600;
}

.product__variant--title {
  font-weight: 600;
  color: var(--primary-color);
  margin-right: 1rem;
}

.product__details--info__meta--list {
  margin-bottom: 0.8rem;
}

.product__details--info__meta--list:last-child {
  margin-bottom: 0;
}

.guarantee__safe--checkout__title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/*
    product details tab section css here
*/
.product__details--tab__section {
  background: var(--bg-offwhite-color);
}

.product__details--tab__section.sidebar__tab--section {
  padding: 1.5rem;
}

@media only screen and (min-width: 768px) {
  .product__details--tab__section.sidebar__tab--section {
    padding: 2.5rem;
  }
}

@media only screen and (min-width: 1200px) {
  .product__details--tab__section.sidebar__tab--section {
    padding: 3.5rem;
  }
}

.product__details--summary__wrapper {
  padding-bottom: 2rem;
}

.product__details--accordion__list {
  border-bottom: 1px solid var(--border-color);
}

.product__details--accordion__list:first-child {
  border-top: 1px solid var(--border-color);
}

.product__details--accordion__list:last-child {
  margin-bottom: 0;
}

.product__details--summary {
  padding: 1.2rem 0;
}

.product__details--summary__title {
  font-weight: 600;
  position: relative;
  display: block;
  color: var(--primary-color);
}

.product__details--summary__title svg {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sidebar__tab--section .product__details--tab__list {
    margin-right: 3rem;
  }
  .sidebar__tab--section .product__details--tab__list:last-child {
    margin-right: 0;
  }
}

.product__details--tab__inner {
  background: var(--body-background-color);
  padding: 1.5rem 1.2rem;
}

@media only screen and (min-width: 480px) {
  .product__details--tab__inner {
    padding: 1.5rem;
  }
}

@media only screen and (min-width: 768px) {
  .product__details--tab__inner {
    padding: 2rem;
  }
}

@media only screen and (min-width: 992px) {
  .product__details--tab__inner {
    padding: 3rem;
  }
}

@media only screen and (max-width: 767px) {
  .product__details--tab {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .product__details--tab.mb-30 {
    margin-bottom: 1.5rem;
  }
}

@media only screen and (max-width: 575px) {
  .product__details--tab {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.product__details--tab__list {
  margin-right: 5rem;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: relative;
  padding-bottom: 0.4rem;
  font-weight: 500;
}

.product__details--tab__list::before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: var(--secondary-color);
  left: 50%;
  right: 50%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  bottom: 0;
}

.product__details--tab__list.active {
  color: var(--secondary-color);
}

.product__details--tab__list.active::before {
  width: 100%;
  left: 0;
  right: 0;
}

.product__details--tab__list:hover {
  color: var(--secondary-color);
}

.product__details--tab__list:hover::before {
  width: 100%;
  left: 0;
  right: 0;
}

.product__details--tab__list:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .product__details--tab__list {
    margin: 0 1rem 1.3rem;
  }
}

.product__tab--content__title {
  font-weight: 600;
  color: var(--body-text-color);
}

.product__tab--content__desc {
  line-height: 2.6rem;
  color: var(--foreground-sub-color);
}

.product__tab--content__step.style2 {
  gap: 2rem;
}

@media only screen and (max-width: 767px) {
  .product__tab--content__step.style2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.product__tab--content__banner {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .product__tab--content__banner {
    width: 310px;
  }
}

@media only screen and (min-width: 992px) {
  .product__tab--content__banner {
    width: 410px;
  }
}

@media only screen and (min-width: 1200px) {
  .product__tab--content__banner {
    width: 460px;
  }
}

.product__tab--content__banner.style2 {
  width: 100%;
}

@media only screen and (min-width: 1200px) {
  .product__tab--content__banner.style2 {
    width: 360px;
  }
}

@media only screen and (min-width: 1366px) {
  .product__tab--content__banner.style2 {
    width: 460px;
  }
}

@media only screen and (max-width: 1199px) {
  .product__tab--content__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.product__tab--content__right {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .product__tab--content__right {
    width: calc(100% - 300px);
    padding-left: 2.5rem;
  }
}

@media only screen and (min-width: 992px) {
  .product__tab--content__right {
    width: calc(100% - 410px);
  }
}

@media only screen and (min-width: 1200px) {
  .product__tab--content__right {
    width: calc(100% - 460px);
  }
}

@media only screen and (max-width: 767px) {
  .product__tab--content__right {
    padding-top: 2rem;
  }
}

.product__tab--content__right.style2 {
  width: 100%;
  padding-left: 0;
  padding-top: 0;
}

@media only screen and (min-width: 1200px) {
  .product__tab--content__right.style2 {
    width: calc(100% - 360px);
  }
}

@media only screen and (min-width: 1366px) {
  .product__tab--content__right.style2 {
    width: calc(100% - 460px);
  }
}

.image__with--text__percent--list.three::after {
  width: 58%;
}

.image__with--text__percent--list.four::after {
  width: 69%;
}

.product__tab--percent__style .image__with--text__percent--list {
  width: 100%;
}

.product__tab--percent__style .image__with--text__percent--list:last-child {
  margin-top: 0;
}

@media only screen and (min-width: 768px) {
  .product__tab--percent__style .image__with--text__percent--list {
    width: 85%;
  }
}

@media only screen and (min-width: 1200px) {
  .product__tab--percent__style .image__with--text__percent--list {
    width: 80%;
  }
}

.product__reviews--header {
  position: relative;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
}

@media only screen and (min-width: 768px) {
  .product__reviews--header {
    padding-bottom: 2.5rem;
    margin-bottom: 3.5rem;
  }
}

@media only screen and (max-width: 575px) {
  .product__reviews--header {
    text-align: center;
  }
}

@media only screen and (max-width: 575px) {
  .reviews__ratting {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.reviews__summary--caption {
  color: var(--secondary-color);
  margin-left: 1.2rem;
}

.actions__newreviews--btn {
  position: absolute;
  right: 0;
  bottom: 2.2rem;
  height: 3.8rem;
  padding: 0 1.5rem;
}

@media only screen and (max-width: 575px) {
  .actions__newreviews--btn {
    position: inherit;
    bottom: inherit;
    margin-top: 1rem;
  }
}

.reviews__comment--area {
  margin-bottom: 3rem;
}

@media only screen and (max-width: 767px) {
  .reviews__comment--area {
    padding: 0;
  }
}

.reviews__comment--thumb {
  width: 85px;
}

@media only screen and (max-width: 575px) {
  .reviews__comment--thumb {
    margin-bottom: 1rem;
  }
}

.reviews__comment--thumb img {
  display: block;
}

.reviews__comment--top {
  margin-bottom: 1rem;
}

.reviews__comment--content {
  width: 100%;
  position: relative;
}

@media only screen and (min-width: 576px) {
  .reviews__comment--content {
    width: calc(100% - 85px);
    padding-left: 1.5rem;
  }
}

@media only screen and (min-width: 768px) {
  .reviews__comment--content {
    padding-left: 2rem;
  }
}

.reviews__comment--content__date {
  border: 1px solid var(--border-color);
  padding: 0 1rem;
  border-radius: 5px;
  color: var(--foreground-sub-color);
  height: 3.4rem;
}

@media only screen and (min-width: 768px) {
  .reviews__comment--content__date {
    height: 3.6rem;
  }
}

@media only screen and (max-width: 479px) {
  .reviews__comment--content__date {
    padding: 0 0.7rem;
    height: 3.6rem;
  }
}

.reviews__comment--content__title {
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.reviews__comment--content__desc {
  margin-bottom: 0;
}

@media only screen and (max-width: 575px) {
  .reviews__comment--content .reviews__ratting {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.reviews__comment--list {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.reviews__comment--list:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .reviews__comment--list {
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

@media only screen and (max-width: 575px) {
  .reviews__comment--list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.reviews__comment--list.margin__left {
  margin-left: 2.2rem;
}

@media only screen and (min-width: 400px) {
  .reviews__comment--list.margin__left {
    margin-left: 2.5rem;
  }
}

@media only screen and (min-width: 480px) {
  .reviews__comment--list.margin__left {
    margin-left: 3rem;
  }
}

@media only screen and (min-width: 992px) {
  .reviews__comment--list.margin__left {
    margin-left: 5rem;
  }
}

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

@media only screen and (max-width: 575px) {
  .reviews__comment--reply__title {
    text-align: center;
  }
}

.reviews__comment--reply__textarea {
  width: 100%;
  height: 100px;
  resize: none;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
}

@media only screen and (min-width: 768px) {
  .reviews__comment--reply__textarea {
    height: 150px;
  }
}

.reviews__comment--reply__textarea:focus {
  border-color: var(--secondary-color);
}

.reviews__comment--reply__input {
  width: 100%;
  border: 1px solid var(--border-color);
  height: 5rem;
  border-radius: 0.5rem;
  padding: 0 1.5rem;
}

.reviews__comment--reply__input:focus {
  border-color: var(--secondary-color);
}

span.info__list--item-head {
  width: 12rem;
}

ul.additional__info_list {
  margin: 0;
  padding: 0;
}

li.additional__info_list--item:nth-child(even) {
  background: #fafafa;
}

li.additional__info_list--item {
  padding: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

span.info__list--item-content {
  line-height: 24px;
}

@media only screen and (max-width: 991px) {
  .shop__sidebar--widget.product_d_widget {
    margin-top: 5rem;
  }
}

.product__details--gallery {
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
}

@media only screen and (max-width: 767px) {
  .product__details--gallery {
    margin-bottom: 2.3rem;
  }
}

.product__sidebar--column4.padding {
  padding: 0 0.5rem 1rem;
}

/* 
    27. Contact page css 
*/
.contact__section--heading__maintitle {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.contact__section--heading__desc {
  color: var(--primary-color);
  width: 100%;
  margin: 0 auto;
}

@media only screen and (min-width: 576px) {
  .contact__section--heading__desc {
    width: 90%;
  }
}

@media only screen and (min-width: 768px) {
  .contact__section--heading__desc {
    width: 75%;
  }
}

@media only screen and (min-width: 1200px) {
  .contact__section--heading__desc {
    width: 55%;
  }
}

.contact__form {
  background: var(--body-background-color);
  border-radius: 10px;
  -webkit-box-shadow: 0 7px 20px rgba(0, 0, 0, 0.16);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.16);
  padding: 2rem;
}

@media only screen and (min-width: 576px) {
  .contact__form {
    padding: 3rem;
  }
}

@media only screen and (min-width: 768px) {
  .contact__form {
    padding: 4rem;
  }
}

@media only screen and (min-width: 992px) {
  .contact__form {
    margin-left: 24rem;
    padding-left: 6rem;
  }
}

@media only screen and (min-width: 1200px) {
  .contact__form {
    margin-left: 30rem;
  }
}

.contact__form--title {
  font-weight: 600;
  color: var(--primary-color);
}

@media only screen and (max-width: 1199px) {
  .contact__form--title.mb-30 {
    margin-bottom: 2rem;
  }
}

.contact__form--label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-color);
}

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

.contact__form--input {
  width: 100%;
  height: 45px;
  padding: 5px 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.contact__form--input:focus {
  border-color: var(--secondary-color) !important;
}

@media only screen and (min-width: 768px) {
  .contact__form--input {
    height: 50px;
  }
}

.contact__form--textarea {
  width: 100%;
  height: 100px;
  padding: 12px 15px;
  border-radius: 8px;
  resize: none;
  border: 1px solid var(--border-color);
}

.contact__form--textarea:focus {
  border-color: var(--secondary-color) !important;
}

@media only screen and (min-width: 992px) {
  .contact__form--textarea {
    height: 120px;
  }
}

@media only screen and (min-width: 1200px) {
  .contact__form--textarea {
    height: 160px;
  }
}

.contact__info {
  background: var(--secondary-color);
  padding: 4rem;
  width: 34rem;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
}

@media only screen and (max-width: 1200px) {
  .contact__info {
    width: 28rem;
  }
}

@media only screen and (max-width: 575px) {
  .contact__info {
    width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .contact__info {
    position: inherit;
    top: inherit;
    -webkit-transform: inherit;
    transform: inherit;
    margin: 3rem auto 0;
    width: 100%;
    padding: 2rem;
  }
}

.contact__info--items {
  margin-bottom: 2.7rem;
}

.contact__info--items:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 575px) {
  .contact__info--items {
    margin-bottom: 2rem;
  }
}

.contact__info--icon {
  margin-right: 1rem;
  color: var(--text-white-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__info--content__title {
  font-weight: 600;
}

.contact__info--content__desc {
  color: var(--text-white-color);
}

.contact__info--content__desc a {
  color: var(--text-white-color);
}

.contact__info--content__desc a:hover {
  color: var(--primary-color);
}

.contact__info--social__list {
  margin-right: 11px;
}

.contact__info--social__list:last-child {
  margin-right: 0;
}

.contact__info--social__icon {
  padding: 12px;
  min-width: 40px;
  min-height: 40px;
  background: var(--body-background-color);
  color: var(--secondary-color);
  text-align: center;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact__info--social__icon:hover {
  background: var(--primary-color);
  color: var(--text-white-color);
}

.contact__map--iframe {
  width: 100%;
  height: 250px;
  margin-bottom: -7px;
}

@media only screen and (min-width: 768px) {
  .contact__map--iframe {
    height: 320px;
  }
}

@media only screen and (min-width: 992px) {
  .contact__map--iframe {
    height: 400px;
  }
}

@media only screen and (min-width: 1200px) {
  .contact__map--iframe {
    height: 500px;
  }
}

/* 
    30. Cart page css 
*/
.cart__title {
  color: var(--primary-color);
}

@media only screen and (max-width: 575px) {
  .cart__title {
    text-align: center;
  }
}

.cart__table--inner {
  width: 100%;
  border-spacing: 0;
}

@media only screen and (max-width: 575px) {
  .cart__table--header {
    display: none;
  }
}

.cart__table--header__list {
  padding: 0 2rem 2rem 0;
  text-transform: uppercase;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  color: var(--primary-color);
}

.cart__table--header__list:last-child {
  padding-right: 0;
}

.cart__table--header__list.text-right {
  text-align: right;
}

.cart__table--header__list.text-center {
  text-align: center;
}

@media only screen and (max-width: 575px) {
  .cart__table--body__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.cart__table--body__list {
  border-bottom: 1px solid var(--border-color);
  padding: 2rem 2rem 2rem 0;
}

.cart__table--body__list:last-child {
  padding-right: 0;
}

@media only screen and (max-width: 575px) {
  .cart__table--body__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 2rem 0;
  }
}

.cart__thumbnail {
  max-width: 10rem;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .cart__thumbnail {
    max-width: 8rem;
  }
}

.cart__content {
  padding-left: 1.5rem;
}

@media only screen and (min-width: 1200px) {
  .cart__content {
    padding-left: 2rem;
  }
}

.cart__content--variant {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--foreground-sub-color);
}

.cart__content--variant:last-child {
  margin-bottom: 0;
}

.cart__content--title {
  margin-bottom: 0.5rem;
  line-height: 2.5rem;
}

.cart__content--title a {
  color: var(--primary-color);
}

.cart__content--title a:hover {
  color: var(--secondary-color);
}

.cart__remove--btn {
  font-weight: 600;
  min-width: 3rem;
  height: 3rem;
  background: var(--body-background-color);
  -webkit-box-shadow: 0 2px 22px rgba(0, 0, 0, 0.16);
  box-shadow: 0 2px 22px rgba(0, 0, 0, 0.16);
  margin-right: 1.5rem;
  border-radius: 50%;
  padding: 0;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (min-width: 992px) {
  .cart__remove--btn {
    margin-right: 3rem;
  }
}

.cart__remove--btn:hover {
  color: var(--secondary-color);
}

.cart__price {
  font-weight: 600;
  color: var(--primary-color);
}

.continue__shopping {
  padding-top: 2rem;
}

.continue__shopping--link {
  font-weight: 600;
  color: var(--primary-color);
}

.continue__shopping--clear {
  font-weight: 600;
  color: var(--primary-color);
  border: 0;
  padding: 0;
  background: inherit;
}

.continue__shopping--clear:hover {
  color: var(--secondary-color);
}

.cart__summary {
  -webkit-box-shadow: 0 2px 22px rgba(0, 0, 0, 0.16);
  box-shadow: 0 2px 22px rgba(0, 0, 0, 0.16);
  padding: 2rem;
  background: var(--body-background-color);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

@media only screen and (max-width: 991px) {
  .cart__summary {
    margin-top: 5.5rem;
  }
}

@media only screen and (max-width: 767px) {
  .cart__summary {
    margin-top: 4.5rem;
  }
}

.cart__summary--total__table {
  width: 100%;
}

.coupon__code--title {
  margin-bottom: 0.7rem;
  color: var(--primary-color);
}

.coupon__code--desc {
  color: var(--foreground-sub-color);
  margin-bottom: 1.5rem;
}

@media only screen and (max-width: 991px) {
  .coupon__code--field {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.coupon__code--field__input {
  border: 1px solid var(--border-color);
  height: 3.8rem;
  padding: 0 1.5rem;
  border-radius: 2.4rem;
  width: 150px;
}

@media only screen and (min-width: 768px) {
  .coupon__code--field__input {
    width: 160px;
  }
}

@media only screen and (min-width: 992px) {
  .coupon__code--field__input {
    width: 140px;
  }
}

@media only screen and (min-width: 1200px) {
  .coupon__code--field__input {
    width: 160px;
  }
}

.coupon__code--field__input:focus {
  border-color: var(--secondary-color);
}

.coupon__code--field__btn {
  margin-left: 1.5rem;
  height: 3.8rem;
}

@media only screen and (min-width: 1200px) {
  .coupon__code--field__btn {
    margin-left: 2rem;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .coupon__code--field__btn {
    height: 3.8rem;
    padding: 0 1rem;
  }
}

.cart__note--title {
  margin-bottom: 0.7rem;
  color: var(--primary-color);
}

.cart__note--desc {
  color: var(--light-color);
  margin-bottom: 1.5rem;
}

.cart__note--textarea {
  border: 1px solid var(--border-color);
  height: 10rem;
  padding: 1rem;
  width: 100%;
  resize: none;
}

.cart__note--textarea:focus {
  border-color: var(--secondary-color);
}

.cart__summary--total__list {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.cart__summary--total__list:last-child {
  margin-bottom: 0;
}

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

.cart__summary--footer__desc {
  color: var(--foreground-sub-color);
  margin-bottom: 1.5rem;
}

.cart__summary--footer__btn {
  padding: 0 1.5rem;
  height: 3.8rem;
}

@media only screen and (min-width: 1200px) {
  .cart__summary--footer__btn {
    padding: 0 2.5rem;
  }
}

.wishlist__cart--btn {
  line-height: 4rem;
  height: 4rem;
  padding: 0 2.5rem;
}

@media only screen and (max-width: 767px) {
  .wishlist__cart--btn {
    padding: 0.5rem 1.2rem;
    height: auto;
    line-height: 2.4rem;
    border-radius: 5px;
    text-align: center;
  }
}

/* 
    34. Error 404 page css 
*/
.error__content--img {
  margin: 0 auto 4rem;
}

@media only screen and (max-width: 1199px) {
  .error__content--img {
    max-width: 600px;
  }
}

@media only screen and (max-width: 767px) {
  .error__content--img {
    max-width: 450px;
    margin: 0 auto 3rem;
  }
}

@media only screen and (max-width: 575px) {
  .error__content--img {
    max-width: 100%;
    padding: 0 3rem;
    margin: 0 auto 2.5rem;
  }
}

.error__content--title {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

@media only screen and (min-width: 576px) {
  .error__content--title {
    margin-bottom: 1.5rem;
  }
}

@media only screen and (min-width: 768px) {
  .error__content--title {
    margin-bottom: 1.8rem;
  }
}

@media only screen and (min-width: 992px) {
  .error__content--title {
    margin-bottom: 2rem;
  }
}

@media only screen and (min-width: 1200px) {
  .error__content--title {
    margin-bottom: 2rem;
  }
}

@media only screen and (min-width: 768px) {
  .error__content--desc {
    margin-bottom: 2rem;
  }
}

@media only screen and (min-width: 992px) {
  .error__content--desc {
    margin-bottom: 2.5rem;
  }
}

@media only screen and (min-width: 1200px) {
  .error__content--desc {
    margin-bottom: 3rem;
  }
}

/* 
    24. Login page css 
*/
.account__login {
  background: var(--body-background-color);
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 576px) {
  .account__login {
    padding: 2.5rem;
  }
}

@media only screen and (min-width: 992px) {
  .account__login {
    padding: 3rem;
  }
}

.account__login--header__title {
  font-weight: 600;
  color: var(--primary-color);
}

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

.account__login--input {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.account__login--input:focus {
  border-color: var(--secondary-color);
}

.account__login--btn {
  width: 100%;
  border-radius: 0.5rem;
}

.account__login--signup__text {
  text-align: center;
  font-weight: 600;
  color: var(--primary-color);
}

.account__login--signup__text button {
  padding: 0;
  border: 0;
  background: inherit;
  font-weight: 600;
  color: var(--secondary-color);
}

.account__login--forgot {
  font-weight: 600;
  color: var(--secondary-color);
  border: 0;
  padding: 0;
  background: inherit;
}

@media only screen and (max-width: 575px) {
  .account__login--forgot {
    margin-top: 0.6rem;
  }
}

@media only screen and (max-width: 767px) {
  .account__login.register {
    margin-top: 3rem;
  }
}

@media only screen and (max-width: 575px) {
  .account__login--remember .checkout__checkbox--checkmark {
    top: 0;
    top: 5px;
    -webkit-transform: inherit;
    transform: inherit;
  }
}

.login__remember--label {
  color: var(--primary-color);
  font-weight: 600;
}

.account__login--divide {
  text-align: center;
  position: relative;
  padding: 1rem 0;
}

.account__login--divide::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.1rem;
  background: var(--border-color);
  top: 50%;
  left: 0;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
}

.account__login--divide__text {
  padding: 0 0.8rem;
  background: var(--body-background-color);
  position: relative;
  font-weight: 500;
  color: var(--foreground-sub-color);
}

.account__social--link {
  height: 4.2rem;
  line-height: 4.6rem;
  padding: 0 2.5rem;
  color: var(--text-white-color);
  border-radius: 0.5rem;
  font-weight: 600;
  margin-right: 1rem;
}

.account__social--link.facebook {
  background: #4867aa;
}

.account__social--link.facebook:hover {
  background: var(--secondary-color);
  color: var(--text-white-color);
}

.account__social--link.google {
  background: #e94235;
}

.account__social--link.google:hover {
  background: var(--secondary-color);
  color: var(--text-white-color);
}

.account__social--link.twitter {
  background: #55adee;
}

.account__social--link.twitter:hover {
  background: var(--secondary-color);
  color: var(--text-white-color);
}

.account__social--link:last-child {
  margin-right: 0;
}

@media only screen and (min-width: 768px) {
  .account__social--link {
    padding: 0 2rem;
  }
}

@media only screen and (min-width: 992px) {
  .account__social--link {
    padding: 0 3.2rem;
    margin-right: 1.2rem;
  }
}

@media only screen and (min-width: 1200px) {
  .account__social--link {
    padding: 0 4.5rem;
    margin-right: 2rem;
  }
}

@media only screen and (max-width: 575px) {
  .account__social--link {
    height: 4rem;
    line-height: 4.4rem;
    padding: 0 1.4rem;
  }
}

/* 
    28. Compare page css 
*/
.compare__table {
  border: 1px solid var(--border-color);
  border-spacing: 0;
  border-bottom: 0;
}

.compare__table--items__child {
  padding: 1.2rem;
  border-left: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.compare__table--items__child:first-child {
  border-left: 0;
}

@media only screen and (max-width: 991px) {
  .compare__table--items__child {
    min-width: 200px;
  }
}

.compare__table--items__child--header {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  text-transform: uppercase;
  background: var(--bg-offwhite-color);
  text-align: center;
  color: var(--primary-color);
}

.compare__product--title {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.compare__product--thumb {
  border-radius: 0.5rem;
  margin: 0 auto;
}

.compare__remove {
  padding: 0;
  float: right;
  width: 100%;
  border: 0;
  background: inherit;
  text-align: center;
  color: var(--primary-color);
}

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

.compare__description {
  color: var(--primary-color);
  padding: 0.5rem 0;
}

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

.compare__cart--btn {
  border-radius: 0.5rem;
  text-transform: uppercase;
  padding: 0 2rem;
  height: 4rem;
}

@media only screen and (min-width: 992px) {
  .compare__cart--btn {
    height: 4.2rem;
    line-height: 4.2rem;
    padding: 0 2.5rem;
  }
}

/* 
    25. Faq page css 
*/
.face__step {
  margin-bottom: 3.5rem;
  padding-bottom: 3.8rem;
}

.face__step:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.face__step--title {
  font-weight: 600;
  color: var(--primary-color);
}

@media only screen and (max-width: 767px) {
  .face__step--title.mb-30 {
    margin-bottom: 2.2rem;
  }
}

.faq__accordion--btn {
  -webkit-box-shadow: 0 2px 22px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 22px rgba(0, 0, 0, 0.1);
  padding: 1.8rem 6rem 1.8rem 2rem;
  border-radius: 0.5rem;
  color: var(--body-text-color);
}

.faq__accordion--btn .accordion__items--button__icon {
  right: 1rem;
}

@media only screen and (min-width: 768px) {
  .faq__accordion--btn .accordion__items--button__icon {
    right: 1.5rem;
  }
}

@media only screen and (min-width: 1200px) {
  .faq__accordion--btn .accordion__items--button__icon {
    right: 2rem;
  }
}

/* 
    19. Preloader css 
*/
.ctn-preloader {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
  pointer-events: none;
}

.ctn-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.ctn-preloader .animation-preloader .spinner {
  -webkit-animation: spinner 1s infinite linear;
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 4px solid var(--border-color);
  border-top-color: var(--bg-light-dark-color);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}

.ctn-preloader .animation-preloader .txt-loading {
  font-weight: 900;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: var(--foreground-sub-color);
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 5s infinite;
  color: var(--body-text-color);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
  -webkit-animation: letters-loading 5s infinite;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
  color: rgba(0, 0, 0, 0.2);
  position: relative;
}

.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(2):before {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(3):before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(4):before {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(5):before {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(6):before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(7):before {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.ctn-preloader .loader-section {
  background: var(--body-background-color);
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.ctn-preloader .loader-section.section-left {
  left: 0;
}

.ctn-preloader .loader-section.section-right {
  right: 0;
}

.loaded .animation-preloader {
  opacity: 0;
  transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  -ms-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
}

.loaded .loader-section.section-left {
  -webkit-transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
  -webkit-transform: translateX(-101%);
  transform: translateX(-101%);
}

.loaded .loader-section.section-right {
  -webkit-transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
  -webkit-transform: translateX(101%);
  transform: translateX(101%);
}

/* Animación del preloader */
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

/* Animación de las letras cargando del preloader */
@-webkit-keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}

/* Tamaño de portatil hacia atras (portatil, tablet, celular) */
@media screen and (max-width: 767px) {
  /* Preloader */
  /* Spinner cargando */
  .ctn-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}

@media screen and (max-width: 500px) {
  .ctn-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
}

.bideo__play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translatey(-50%) translatex(-50%);
  transform: translatey(-50%) translatex(-50%);
}

.bideo__play--icon {
  width: 5.5rem;
  height: 5.5rem;
  background: #f7eedd;
  color: var(--secondary-color);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-animation: animate 2s linear infinite;
  animation: animate 2s linear infinite;
}

.bideo__play--icon:hover {
  color: var(--text-white-color);
  background: var(--primary-color);
}

.bideo__play--icon:hover {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

@-webkit-keyframes animate {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(201, 127, 95, 0.7);
    box-shadow: 0 0 0 0 rgba(201, 127, 95, 0.7);
  }
  40% {
    -webkit-box-shadow: 0 0 0 50px rgba(201, 127, 95, 0);
    box-shadow: 0 0 0 50px rgba(201, 127, 95, 0);
  }
  80% {
    -webkit-box-shadow: 0 0 0 50px rgba(201, 127, 95, 0);
    box-shadow: 0 0 0 50px rgba(201, 127, 95, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 rgba(201, 127, 95, 0);
    box-shadow: 0 0 0 rgba(201, 127, 95, 0);
  }
}

@keyframes animate {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(201, 127, 95, 0.7);
    box-shadow: 0 0 0 0 rgba(201, 127, 95, 0.7);
  }
  40% {
    -webkit-box-shadow: 0 0 0 50px rgba(201, 127, 95, 0);
    box-shadow: 0 0 0 50px rgba(201, 127, 95, 0);
  }
  80% {
    -webkit-box-shadow: 0 0 0 50px rgba(201, 127, 95, 0);
    box-shadow: 0 0 0 50px rgba(201, 127, 95, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 rgba(201, 127, 95, 0);
    box-shadow: 0 0 0 rgba(201, 127, 95, 0);
  }
}

.section__shape--img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.section__shape--img.two {
  bottom: 0;
  top: auto;
  right: 0;
  left: auto;
}

/*
  Before After css
*/
#comparison {
  width: 100%;
  padding-bottom: 43%;
  overflow: hidden;
  position: relative;
}

figure {
  position: absolute;
  background-image: url(../img/banner/banner5.webp);
  background-size: cover;
  width: 100%;
  height: 143px;
  margin: 0;
}

@media only screen and (min-width: 400px) {
  figure {
    height: 171px;
  }
}

@media only screen and (min-width: 480px) {
  figure {
    height: 206px;
  }
}

@media only screen and (min-width: 576px) {
  figure {
    height: 235px;
  }
}

@media only screen and (min-width: 768px) {
  figure {
    height: 318px;
  }
}

@media only screen and (min-width: 992px) {
  figure {
    height: 415px;
  }
}

@media only screen and (min-width: 1200px) {
  figure {
    height: 503px;
  }
}

@media only screen and (min-width: 1366px) {
  figure {
    height: 542px;
  }
}

#divisor {
  background-image: url(../img/banner/banner4.webp);
  background-size: cover;
  position: absolute;
  width: 50%;
  -webkit-box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
  bottom: 0;
  height: 162px;
}

@media only screen and (min-width: 400px) {
  #divisor {
    height: 182px;
  }
}

@media only screen and (min-width: 480px) {
  #divisor {
    height: 217px;
  }
}

@media only screen and (min-width: 576px) {
  #divisor {
    height: 235px;
  }
}

@media only screen and (min-width: 768px) {
  #divisor {
    height: 318px;
  }
}

@media only screen and (min-width: 992px) {
  #divisor {
    height: 415px;
  }
}

@media only screen and (min-width: 1200px) {
  #divisor {
    height: 503px;
  }
}

@media only screen and (min-width: 1366px) {
  #divisor {
    height: 542px;
  }
}

#divisor::before,
#divisor::after {
  content: "";
  position: absolute;
  right: -2px;
  width: 4px;
  height: calc(50% - 25px);
  background: white;
  z-index: 3;
}

#divisor::before {
  top: 0;
  -webkit-box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, 0.3);
}

#divisor::after {
  bottom: 0;
  -webkit-box-shadow: 0 3px 8px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 8px 1px rgba(0, 0, 0, 0.3);
}

#handle {
  position: absolute;
  height: 50px;
  width: 50px;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}

#handle::before,
#handle::after {
  content: "";
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
  top: 50%;
  margin-top: -6px;
}

#handle::before {
  border-right: 6px solid white;
  left: 50%;
  margin-left: -17px;
}

#handle::after {
  border-left: 6px solid white;
  right: 50%;
  margin-right: -17px;
}

input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  top: 50%;
  left: -25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: transparent;
  width: calc(100% + 50px);
  z-index: 2;
}

input[type="range"]:focus,
input[type="range"]:active {
  border: none;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: transparent;
  border: 4px solid white;
  -webkit-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.3);
}

input[type="range"]::-moz-range-track {
  -moz-appearance: none;
  height: 15px;
  width: 100%;
  background-color: transparent;
  position: relative;
  outline: none;
}

/* BLOCK UI*/
.blockOverlay {
  transition: all 0.3s ease !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background-color: rgba(0, 0, 0, 0.05) !important;
  cursor: auto !important;
  opacity: 1 !important;
}

.blockMsg {
  border: none !important;
  background-color: transparent !important;
  cursor: auto !important;
}
