/*
    Project: base_html
    Version: 2.0
    Date Created: 09/21/2016
    Date Updated: 11/6/2019
    Developed by: diaryforlife
*/
/*
    TABLE OF CONTENT
        1. RESET AND TYPOGRAPHY
            1.1 reset
            1.2 typography
        2. ELEMENTS
            2.1 grid
            2.2 list
            2.3 button
            2.4 form
            2.5 post
            2.6 pagination
            2.7 breadcrumb
            2.8 block
            2.9 widget
            2.10 slider
            2.12 product
            2.13 banner
            2.14 filter
            2.15 table
            2.16 loader
            2.17 modal
        3. COMPONENTS
             3.1 Cart
             3.2 forms
             3.3 search
             3.4 section
             3.5 pages
        4. MODULES
            4.1 header
            4.2 footer
        5. HELPERS
        6. CUSTOM
*/
:root {
  --color-success: #00c9a7;
  --color-info: #96ed89;
  --color-warning: #faa806;
  --color-danger: #db1d2c;
  --color-border: #e4e4e4;
  --color-text: #707070;
  --color-contrast: #fff;
  --color-heading: #282828;
  --cowlor-dark: #8a8a8a;
}

/*1. RESET AND TYPOGRAPHY */
* {
  font-family: var(--primary-font);
  font-weight: 400;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 14px;
}

h1, h2, h3, h4, h5 {
  position: relative;
  color: var(--color-heading);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 700;
}
h1 a, h2 a, h3 a, h4 a, h5 a {
  color: inherit;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 14px;
}

p {
  font-size: 14px;
  line-height: 1.6em;
  color: var(--color-text);
}
p span {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
}

a {
  position: relative;
  color: inherit;
  text-decoration: none;
  transition: all 0.4s ease;
}
a:hover {
  color: var(--color-1st);
}

a,
input,
textarea,
button,
select {
  outline: none;
}

a:hover,
h1:focus,
h2:focus,
h3:focus,
h4:focus,
h5:focus {
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: none;
  text-decoration: none;
}

img {
  max-width: 100%;
}

figure {
  margin: 0;
}

/*2. ELEMENTS */
html, body {
  min-height: 100%;
  position: relative;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
body {
  overflow-x: hidden;
}

.list--social {
  margin: 0;
  padding: 0;
}
.list--social li {
  position: relative;
  display: inline-block;
  margin-right: 15px;
  vertical-align: top;
}
.list--social li a {
  display: inline-block;
  font-size: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #636363;
  border: 1px solid #404040;
}
.list--social li a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
}
.list--social li a:hover {
  color: var(--color-1st);
  border-color: var(--color-1st);
  background-color: var(--color-1st);
}
.list--social li a:hover i {
  color: #ffffff;
}
.list--social li:last-child {
  margin-right: 0;
}


.btn--hamburger {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50px;
  background-color: rgba(206, 135, 58, 0.6);
}

.btn--hamburger span,
.btn--hamburger:before,
.btn--hamburger:after {
  position: absolute;
  height: 2px;
  width: 20px;
  background-color: #fff;
  z-index: 100;
  transition: all 0.4s ease;
}

.btn--hamburger span {
  left: 15px;
  width: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.btn--hamburger:before,
.btn--hamburger:after {
  content: "";
  left: 15px;
}

.btn--hamburger:before {
  top: 16px;
}

.btn--hamburger:after {
  bottom: 16px;
}

.btn--hamburger:hover {
  cursor: pointer;
}

.btn--hamburger.active span {
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
}

.btn--hamburger.active:before,
.btn--hamburger.active:after {
  top: 50%;
  bottom: auto;
  width: 20px;
  transform-origin: 50% 50%;
  background-color: #fc354c;
}

.btn--hamburger.active:before {
  transform: rotate(45deg);
}

.btn--hamburger.active:after {
  transform: rotate(-45deg);
}
@media (max-width: 1199px) {
  
  .btn--hamburger {
    display: inline-block;
  }
}

.btn--custom,
button.btn--custom {
  display: inline-block;
  padding: 15px 35px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  border: none;
  font-weight: 600;
  transition: all 0.4s ease;
  text-transform: uppercase;
  color: #ffffff;
  background-color: var(--color-1st);
  cursor: pointer;
}
.btn--custom.btn--rounded,
button.btn--custom.btn--rounded {
  border-radius: 50px;
}
.btn--custom.btn--curve,
button.btn--custom.btn--curve {
  border-radius: 5px;
}
.btn--custom.btn--outline,
button.btn--custom.btn--outline {
  padding: 14px 36px;
  font-size: 14px;
  color: var(--color-1st);
  border: 1px solid var(--color-1st);
  text-transform: uppercase;
  background-color: transparent;
}
.btn--custom.btn--outline:hover,
button.btn--custom.btn--outline:hover {
  background-color: var(--color-1st);
  border-color: var(--color-1st);
  color: #ffffff;
}
.btn--custom.btn--fullwidth,
button.btn--custom.btn--fullwidth {
  width: 100%;
  text-align: center;
}
.btn--custom.btn--sm,
button.btn--custom.btn--sm {
  padding: 0.5rem 2rem;
  font-size: 1.2rem;
}
.btn--custom.btn--sm.btn--curve,
button.btn--custom.btn--sm.btn--curve {
  border-radius: 3px;
}
.btn--custom.btn--lg,
button.btn--custom.btn--lg {
  padding: 1.5rem 4rem;
}
.btn--custom.btn--xl,
button.btn--custom.btn--xl {
  padding: 2rem 6rem;
  font-size: 1.6rem;
}
.btn--custom.btn--reverse,
button.btn--custom.btn--reverse {
  background-color: #576391;
}
.btn--custom.btn--reverse:hover,
button.btn--custom.btn--reverse:hover {
  background-color: var(--color-2nd);
}
.btn--custom.btn--gray,
button.btn--custom.btn--gray {
  background-color: #e5e5e5;
  color: #000000;
  font-size: 1.6rem;
}
.btn--custom.btn--black,
button.btn--custom.btn--black {
  background-color: var(--color-heading);
}
.btn--custom.btn--black.btn--outline,
button.btn--custom.btn--black.btn--outline {
  background-color: transparent;
  border: 2px solid var(--color-heading);
  color: var(--color-heading);
}
.btn--custom.btn--black.btn--outline:hover,
button.btn--custom.btn--black.btn--outline:hover {
  background-color: var(--color-heading);
  color: #ffffff;
}
.btn--custom.btn--success,
button.btn--custom.btn--success {
  background-color: var(--color-success);
}
.btn--custom:hover, .btn--custom:active,
button.btn--custom:hover,
button.btn--custom:active {
  color: #fff;
  background-color: var(--color-1st);
}
.btn--custom:hover.btn--black, .btn--custom:active.btn--black,
button.btn--custom:hover.btn--black,
button.btn--custom:active.btn--black {
  background-color: var(--color-1st);
}

.btn--remove {
  border: none;
  outline: none;
  font-size: 20px;
  border: none;
}
.btn--remove:hover {
  color: var(--color-danger);
}

.btn--close {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.4s ease;
  border-radius: 50%;
}
.btn--close:before, .btn--close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 50%;
  background-color: #9f9a98;
  transform-origin: center center;
  transition: all 0.4s ease;
}
.btn--close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.btn--close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.btn--close:hover {
  transform: rotate(180deg);
}
.btn--close:hover:before, .btn--close:hover:after {
  background-color: #f44336;
  transition-delay: 0.3s;
}

.form-control {
  outline: none;
  height: 50px;
  font-size: 14px;
  padding: 0 20px;
  border: none;
  height: 50px;
  border-radius: 0;
  border: 1px solid #e5e5e5;
  transition: all 0.4s ease;
  box-shadow: 0 0 0 transparent;
  background-color: transparent;
}
.form-control::-webkit-input-placeholder {
  opacity: 1;
  font-size: 14px;
}
.form-control::-moz-placeholder {
  opacity: 1;
  font-size: 14px;
}
.form-control:-moz-placeholder {
  opacity: 1;
  font-size: 14px;
}
.form-control:-ms-input-placeholder {
  opacity: 1;
  font-size: 14px;
}
.form-control:focus {
  outline: none;
  box-shadow: 0 0 0 #000;
  border-color: var(--color-1st);
}

textarea.form-control {
  height: auto;
  padding: 2rem;
  resize: none;
}

.checkbox {
  position: relative;
  display: block;
}
.checkbox > input {
  position: absolute;
  visibility: hidden;
}
.checkbox label {
  margin-bottom: 0;
  position: relative;
  padding-left: 30px;
  font-family: var(--primary-font);
  color: rgba(var(--color-heading), 0.5);
  font-weight: 400;
  cursor: pointer;
}
.checkbox label:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0px;
  height: 20px;
  width: 20px;
  z-index: 10;
  border: 1px solid var(--color-heading);
  transition: all 0.4s ease;
}
.checkbox label:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 7px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  z-index: 10;
  opacity: 0;
  transform: rotate(0deg);
  transition: all 0.4s ease;
}
.checkbox input[type=checkbox]:checked ~ label:before {
  background-color: var(--color-2nd);
  border-color: var(--color-2nd);
}
.checkbox input[type=checkbox]:checked ~ label:after {
  transform: rotate(45deg);
  opacity: 1;
}

.radio {
  position: relative;
}
.radio > input {
  position: absolute;
  visibility: hidden;
}
.radio label {
  position: relative;
  margin-bottom: 0;
  padding-left: 30px;
  font-family: var(--primary-font);
  color: #737373;
  font-weight: 400;
  cursor: pointer;
}
.radio label:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0px;
  height: 20px;
  width: 20px;
  z-index: 10;
  border: 1px solid rgba(19, 8, 1, 0.2);
  background-color: #fff;
  transition: all 0.4s ease;
  border-radius: 50%;
}
.radio label:after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  top: 6px;
  left: 6px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 15;
  opacity: 0;
  transition: all 0.6s ease;
}
.radio input[type=checkbox]:checked ~ label:before {
  background-color: transparent;
}
.radio input[type=checkbox]:checked ~ label:after {
  border-radius: 50%;
  border: none;
  width: 8px;
  height: 8px;
  top: 6px;
  left: 6px;
  opacity: 1;
  background-color: var(--color-1st);
}

.form-group {
  margin-bottom: 20px;
}
.form-group > label {
  margin-bottom: 10px;
  font-weight: 500;
  color: #000000;
  line-height: 1em;
  font-size: 14px;
}
.form-group > label sup {
  color: var(--color-danger);
}
.form-group--inline {
  position: relative;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.form-group--inline > label {
  margin-bottom: 0;
}
.form-group--inline .form-group__content {
  width: 100%;
}

.form-group--number {
  display: inline-block;
  position: relative;
}
.form-group--number button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  max-width: 20px;
  color: var(--color-heading);
  font-size: 30px;
  border: none;
  background: none;
}
.form-group--number button.up {
  right: 12px;
}
.form-group--number button.up:before, .form-group--number button.up:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  content: "";
  width: 14px;
  height: 1px;
  background-color: var(--color-text);
}
.form-group--number button.up:before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.form-group--number button.up:after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.form-group--number button.down {
  left: 12px;
}
.form-group--number button.down:before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  content: "";
  width: 14px;
  height: 1px;
  background-color: var(--color-text);
  transform: translate(-50%, -50%) rotate(0deg);
}
.form-group--number .form-control {
  height: 45px;
  padding: 0 25px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  border: none;
  color: var(--color-heading);
  background-color: transparent;
}
.form-group--number .form-control::-webkit-input-placeholder {
  color: var(--color-heading);
}
.form-group--number .form-control::-moz-placeholder {
  color: var(--color-heading);
}
.form-group--number .form-control:-moz-placeholder {
  color: var(--color-heading);
}
.form-group--number .form-control:-ms-input-placeholder {
  color: var(--color-heading);
}

.select--arrow {
  position: relative;
}
.select--arrow i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
.select--arrow .form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown > a {
  position: relative;
  display: block;
  padding-right: 20px;
}
.dropdown > a:after {
  content: "\e93a";
  font: normal normal normal 12px/1 linearicons;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.dropdown ul {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 100;
  min-width: 120px;
  max-width: 200px;
  width: 100%;
  padding: 4px 0;
  background-color: #fff;
  box-shadow: 0 1px 1px 2px rgba(204, 204, 204, 0.2);
  visibility: hidden;
  opacity: 0;
  text-align: left;
}
.dropdown ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.dropdown ul li a {
  display: block;
  font-size: 1.3rem;
  color: var(--color-heading);
  padding: 6px 10px;
}
.dropdown:hover ul {
  visibility: visible;
  opacity: 1;
}

.custom-checkbox input[type=checkbox], .custom-checkbox input[type=radio], .custom-radio input[type=checkbox], .custom-radio input[type=radio] {
  display: none;
}
.custom-checkbox label, .custom-radio label {
  display: block;
}
.custom-checkbox span, .custom-radio span {
  display: block;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  position: relative;
  cursor: pointer;
}
.custom-checkbox input[type=checkbox]:checked ~ span:before, .custom-checkbox input[type=radio]:checked ~ span:before, .custom-radio input[type=checkbox]:checked ~ span:before, .custom-radio input[type=radio]:checked ~ span:before {
  content: "";
  display: block;
  border: 2px solid var(--color-1st);
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
}
.custom-checkbox.disabled label, .custom-radio.disabled label {
  position: relative;
}
.custom-checkbox.disabled label:before, .custom-checkbox.disabled label:after, .custom-radio.disabled label:before, .custom-radio.disabled label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 90%;
  background-color: var(--color-heading);
  transform-origin: 50% 50%;
  transition: all 0.4s ease;
  transform-origin: 50% 50%;
  z-index: 20;
}
.custom-checkbox.disabled label:before, .custom-radio.disabled label:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.custom-checkbox.disabled label:after, .custom-radio.disabled label:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.custom-checkbox.disabled span, .custom-radio.disabled span {
  opacity: 0.9;
}
.custom-checkbox.disabled input[type=checkbox]:checked ~ span:before, .custom-checkbox.disabled input[type=radio]:checked ~ span:before, .custom-radio.disabled input[type=checkbox]:checked ~ span:before, .custom-radio.disabled input[type=radio]:checked ~ span:before {
  display: none;
}

.collection {
  position: relative;
}
.collection img {
  width: 100%;
}
.collection .collection__more_link {
  position: absolute;
  bottom: 30px;
  left: 50%;
  min-width: 200px;
  display: flex;
  height: 50px;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 20;
  color: var(--color-1st);
  transform: translateX(-50%);
}
.collection .collection__more_link:hover {
  color: #fff;
  background-color: var(--color-1st);
}

.post .post__wrapper {
  transition: all 0.3s ease-in-out;
}
.post .post__wrapper .post__content {
  padding: 15px;
}
.post:hover .post__wrapper {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
}
.post .post__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.post .post__title {
  font-weight: 600;
}
.post .post__title a {
  font-weight: inherit;
}
.post .post__thumbnail {
  position: relative;
  overflow: hidden;
}
.post .post__thumbnail img {
  transition: all 0.25s ease;
}
.post .post__header {
  padding-bottom: 10px;
}
.post .post__content {
  padding-top: 20px;
}
.post:hover .post__overlay {
  background-color: rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 480px) and (max-width: 992px) {
  .post {
    display: flex;
    flex-flow: row nowrap;
  }
  .post > * {
    flex-basis: 100%;
    max-width: 50%;
  }
  .post .post__content {
    padding-left: 20px;
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
  }
}

.post--detail .post__header {
  text-align: center;
  padding: 20px 0;
}
.post--detail .post__header h1 {
  font-size: 20px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .post--detail .post__header {
    padding: 30px 0;
  }
  .post--detail .post__header h1 {
    font-size: 30px;
  }
}

.pagination .page-item.active span {
  background: var(--color-1st);
  color: #fff;
}
.pagination .page-item .page-link {
  border: none;
  padding: 8px 15px;
  margin: 0 5px;
  background-color: #e9ecef;
  color: var(--color-text);
  outline: none;
}
.pagination .page-item .page-link:hover {
  background: var(--color-1st);
  color: #fff;
}
.pagination .page-item.disabled .page-link {
  background-color: #e9ecef !important;
}

.shop__pagination {
  text-align: center;
  padding-top: 60px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.breadcrumb-wrapper {
  background: #f6f6f8;
  padding: 15px;
}
.breadcrumb-wrapper .breadcrumb--custom {
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb-wrapper .breadcrumb--custom li {
  position: relative;
  display: inline-block;
  color: var(--color-heading);
  font-size: 14px;
}
.breadcrumb-wrapper .breadcrumb--custom li:before {
  content: "/";
  margin: 0 5px;
}
.breadcrumb-wrapper .breadcrumb--custom li a {
  color: var(--color-text);
  font-size: 14px;
}
.breadcrumb-wrapper .breadcrumb--custom li a:hover {
  color: var(--color-heading);
}
.breadcrumb-wrapper .breadcrumb--custom li:first-child:before {
  display: none;
}

.panel--sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  overflow-y: auto;
  width: 400px;
  background-color: #ffffff;
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  z-index: 1000001;
  transform: translate3d(400px, 0, 0);
}
.panel--sidebar .panel__close {
  position: absolute;
  top: 10px;
  right: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.panel--sidebar .panel__close:before, .panel--sidebar .panel__close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 50%;
  background-color: #fff;
  transform-origin: 50% 50%;
  transition: all 0.4s ease;
}
.panel--sidebar .panel__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.panel--sidebar .panel__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.panel--sidebar .panel__close:hover:before, .panel--sidebar .panel__close:hover:after {
  background-color: var(--color-danger);
}
.panel--sidebar .panel__header {
  position: relative;
  padding: 15px;
  background-color: var(--color-1st);
}
.panel--sidebar .panel__header h4 {
  margin-bottom: 0;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
}
.panel--sidebar .panel__content {
  padding: 10px;
  margin-bottom: 0;
  position: relative;
  flex: 1 1 auto;
  display: flex;
}
.panel--sidebar.active {
  transform: none;
}
@media screen and (max-width: 479px) {
  .panel--sidebar {
    max-width: 100%;
  }
}

.widget--footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget--footer p strong {
  color: var(--color-heading);
}
.widget--footer .widget__title {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 23px;
  font-weight: 600;
  color: var(--color-heading);
  text-transform: uppercase;
}
.widget--footer .widget__links li {
  padding: 0.5em 0;
}
.widget--footer .widget__links li a {
  display: inline-block;
  line-height: 20px;
}
.widget--footer .widget__links li:last-child {
  margin-bottom: 0;
}

.slick-slider .slick-slide {
  outline: none;
  box-shadow: 0 0 rgba(0, 0, 0, 0);
}
.slick-slider .slick-slide:focus, .slick-slider .slick-slide:active, .slick-slider .slick-slide:hover {
  outline: none;
}

.owl-carousel .owl-item .slider-item {
  margin: 0;
  max-height: 650px;
}

.carousel--nav .owl-nav > * i {
  color: var(--color-heading);
}

.noUi-connect {
  background-color: var(--color-1st);
}

.noUi-horizontal {
  height: 6px;
}

.noUi-handle:before,
.noUi-handle:after {
  display: none;
}

.noUi-horizontal .noUi-handle {
  width: 16px;
  height: 16px;
  left: -17px;
  top: -6px;
  outline: none;
  background-color: var(--color-1st);
}

html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
  right: -7px;
}

.noUi-handle {
  border: 3px solid var(--color-1st);
  border-radius: 50%;
  box-shadow: none;
}

.product .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 10px;
  color: #fff;
}
.product .badge i {
  font-style: normal;
  color: #ffffff;
  text-align: center;
  line-height: 1.2em;
  font-size: 1.3rem;
}
.product .badge--sale {
  background-color: #af6010;
}
.product .product__badges {
  display: inline-block;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 30;
}
.product .product__shopping {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 30;
  width: calc(100% - 20px);
  padding: 1.5rem 2rem;
  font-size: 1.3rem;
  text-align: center;
  color: var(--color-text);
  line-height: 2rem;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s ease;
}
.product .product__actions {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 30;
  transform: translate(-50%, -100%);
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s ease;
  width: 100%;
}
.product .product__actions li {
  margin-bottom: 10px;
  text-align: center;
}
.product .product__actions li a {
  display: inline-block;
  padding: 10px 30px;
  line-height: 20px;
  text-align: center;
  color: var(--color-heading);
  border-radius: 4px;
  background-color: #ffffff;
}
.product .product__actions li a:hover {
  background-color: var(--color-heading);
  color: #ffffff;
}
.product .product__actions li a:hover i {
  color: var(--color-1st);
}
.product .product__actions li:last-child {
  margin-bottom: 0;
}
.product .product__overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  z-index: 10;
}
.product .product__thumbnail {
  position: relative;
}
.product .product__thumbnail img {
  width: 100%;
  max-width: 100%;
}
.product .product__thumbnail:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  visibility: hidden;
  opacity: 0;
}
.product .product__thumbnail .product__actions {
  z-index: 11;
}
.product .product__thumbnail .product__favorite {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 40;
  color: #ffffff;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  font-size: 16px;
}
.product .product__thumbnail .product__favorite.active, .product .product__thumbnail .product__favorite:hover {
  color: var(--color-1st);
}
.product .product__thumbnail:hover:before {
  visibility: visible;
  opacity: 1;
}
.product .product__thumbnail:hover .product__favorite {
  visibility: visible;
  opacity: 1;
}
.product .product__thumbnail:hover .product__shopping {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.product .product__thumbnail:hover .product__actions {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%);
}
.product .product__title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8em;
  color: var(--color-heading);
}
.product .product__title:hover {
  color: var(--color-1st);
}
.product .product__variants {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.product .product__variants li {
  margin-right: 6px;
}
.product .product__variants li:last-child {
  margin-right: 0;
}
.product .product__content {
  padding: 15px 0 0;
  text-align: left;
}
.product .product__price {
  margin-bottom: 5px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #696969;
}
.product .product__price del {
  margin-left: 5px;
  color: var(--color-text);
}
.product .product__price.sale del {
  color: var(--color-danger);
}
@media (max-width: 767px) {
  .product {
    max-width: 350px;
    margin: 0 auto 2rem;
  }
}

.product--on-cart {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.product--on-cart > * {
  flex-basis: 100%;
}
.product--on-cart .product__thumbnail {
  max-width: 56px;
}
.product--on-cart .product__content {
  position: relative;
  padding-right: 30px;
  padding-left: 20px;
}
.product--on-cart .product__content .product__remove {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 18px;
  color: var(--color-text);
}
.product--on-cart .product__content .product__remove:hover {
  text-decoration: none;
  color: var(--color-danger);
}
.product--on-cart .product__content a {
  display: block;
  color: var(--color-heading);
  font-size: 14px;
}
.product--on-cart .product__content a:hover {
  text-decoration: underline;
}
.product--on-cart .product__content small {
  font-size: 12px;
  color: var(--color-heading);
  font-weight: 600;
}
.product--on-cart .product__content small .cart-price {
  color: var(--color-1st);
}

.product__attribute > * {
  flex-basis: 100%;
}

.product--detail figure.product__tags figcaption,
.product--detail figure.product__sharing figcaption {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 20px;
}
.product--detail .product__info-header {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.product--detail .product__title {
  font-size: 24px;
  line-height: 1.3em;
  font-weight: 500;
  color: var(--color-heading);
  text-transform: uppercase;
  display: inline-block;
}
.product--detail .product__variants .item {
  margin-bottom: 10px;
  border: 2px solid transparent;
  cursor: pointer;
}
.product--detail .product__variants .item img {
  opacity: 0.5;
  transition: all 0.4s ease;
}
.product--detail .product__variants .item:last-child {
  margin-bottom: 0;
}
.product--detail .product__variants .item.slick-current img {
  opacity: 1;
}
.product--detail .product__variants .item:hover img {
  width: 100%;
  opacity: 1;
}
.product--detail .product__gallery {
  position: relative;
}
.product--detail .product__gallery img {
  width: 100%;
}
.product--detail .product__gallery .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 35px;
  height: 35px;
  color: #000;
  font-size: 18px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  visibility: hidden;
  opacity: 0;
}
.product--detail .product__gallery .slick-arrow i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product--detail .product__gallery .slick-arrow:first-child {
  left: 20px;
}
.product--detail .product__gallery .slick-arrow:last-child {
  right: 10px;
}
.product--detail .product__gallery .slick-arrow:hover {
  background-color: var(--color-1st);
  color: #fff;
}
.product--detail .product__gallery:hover .item:before {
  visibility: visible;
  opacity: 1;
}
.product--detail .product__gallery:hover .slick-arrow {
  visibility: visible;
  opacity: 1;
}
.product--detail .product__info {
  text-align: left;
}
.product--detail .product__add-wishlist {
  font-size: 14px;
}
.product--detail .product__add-wishlist span {
  padding-left: 5px;
  text-decoration: underline;
}
.product--detail .product__price {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-heading);
}
.product--detail .product__price del {
  font-style: normal;
  color: #bcbcbc;
  font-size: 1.3rem;
}
.product--detail .product__price p {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-heading);
}
.product--detail .product__price p span {
  font-weight: inherit;
}
.product--detail .product__price.sale {
  color: var(--color-heading);
}
.product--detail .product__price.sale del {
  margin-right: 20px;
  font-size: 22px;
  color: var(--color-danger);
}
.product--detail .product__attribute {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
.product--detail .product__attribute label {
  margin-bottom: 0;
}
.product--detail .product__attribute .form-control {
  border: none;
}
.product--detail .product__color {
  padding-bottom: 10px;
}
.product--detail .product__color .color-swatch li {
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
}
.product--detail .product__color .color-swatch li:last-child {
  margin-right: 0;
}
.product--detail .product__color .color-swatch li span {
  margin-bottom: 0;
}
.product--detail .product__desc {
  margin-bottom: 20px;
}
.product--detail .product__desc p {
  margin-bottom: 0;
  color: #777777;
  font-size: 14px;
}
.product--detail .product__shopping {
  margin-bottom: 36px;
}
.product--detail .product__shopping figure {
  display: flex;
  justify-content: space-between;
  max-width: 470px;
  padding-bottom: 20px;
}
.product--detail .product__shopping figure > * {
  margin-right: 10px;
}
.product--detail .product__shopping figure .form-group--number {
  max-width: 150px;
}
.product--detail .product__shopping figure .form-group--number input {
  border-radius: 0;
}
.product--detail .product__shopping figure .btn {
  text-transform: uppercase;
  font-weight: 500;
  min-width: 250px;
  padding: 12px 30px 13px;
  vertical-align: top;
  text-align: center;
  font-size: 14px;
}
.product--detail .product__shopping figure .btn.btn--gray {
  color: #ffffff;
  background-color: rgba(34, 34, 34, 0.5);
}
.product--detail .product__shopping figure .btn.btn--gray:hover {
  background-color: var(--color-heading);
}
.product--detail .product__shopping figure .product__favorite {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0;
  min-width: 45px;
  height: 45px;
  vertical-align: top;
  color: #999999;
  border: 2px solid #eaeaea;
}
.product--detail .product__shopping figure .product__favorite i {
  padding-top: 2px;
  color: var(--color-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product--detail .product__shopping figure .product__favorite:hover {
  border-color: var(--color-1st);
}
.product--detail .product__shopping figure .product__favorite:hover i {
  color: var(--color-1st);
}
.product--detail .product__shopping .btn--black {
  letter-spacing: 0.1em;
}
.product--detail .product__sharing {
  margin-bottom: 0;
}
.product--detail .product__sharing p {
  line-height: 30px;
  color: var(--color-heading);
  font-weight: 500;
}
.product--detail .product__sharing a {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  vertical-align: top;
  border-radius: 50%;
}
.product--detail .product__sharing a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: var(--color-heading);
}
.product--detail .product__sharing a:last-child {
  margin-right: 0;
}
.product--detail .product__sharing a:hover {
  color: #fff;
  background-color: var(--color-1st);
}
.product--detail .product__sharing p {
  margin-bottom: 0;
}
.product--detail .product__sharing .list--social li {
  margin-right: 5px;
}
.product--detail .product__sharing .list--social a {
  width: 40px;
  height: 40px;
}
.product--detail .product__tags a {
  margin-right: 6px;
  margin-bottom: 6px;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 50px;
  font-size: 14px;
  border: 1px solid var(--color-heading);
}
.product--detail .product__tags a:hover {
  color: #fff;
  background-color: var(--color-1st);
  border-color: var(--color-1st);
}
.product--detail .product__thumbnail {
  display: flex;
  flex-flow: column wrap;
  margin-bottom: 30px;
  width: 100%;
}
.product--detail .product__thumbnail > * {
  width: 100%;
}
.product--detail .product__thumbnail figure {
  position: relative;
  display: block;
}
.product--detail .product__thumbnail .product__variants {
  width: 100%;
  min-width: 80px;
}
.product--detail .product__thumbnail .wrapper {
  position: relative;
  margin-bottom: 10px;
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] {
  flex-flow: column wrap;
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] figure {
  max-width: 100%;
  padding-left: 0;
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__variants {
  max-width: 100%;
  text-align: center;
  width: 100%;
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__variants .item {
  margin-bottom: 0;
  margin-right: 10px;
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__variants .item.slick-active:last-child {
  margin-right: 0;
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__variants .slick-list {
  margin-right: -10px;
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__variants .slick-arrow {
  font-size: 20px;
  line-height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__variants .slick-arrow:first-child {
  left: -20px;
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__variants .slick-arrow:first-child i:before {
  content: "\f104";
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__variants .slick-arrow:last-child {
  right: 0px;
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__variants .slick-arrow:last-child i:before {
  content: "\f105";
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__variants .slick-arrow:hover i {
  color: #000;
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__gallery {
  margin-bottom: 10px;
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__gallery img {
  width: 100%;
}
.product--detail .tab-list {
  position: relative;
  display: block;
  margin: 0 0 50px;
  padding: 20px 0;
  text-align: center;
}
.product--detail .tab-list li {
  display: inline-block;
  margin-right: 30px;
}
.product--detail .tab-list li a {
  position: relative;
  padding: 10px 0;
  display: inline-block;
  line-height: 20px;
  font-weight: 700;
  font-size: 20px;
  border-radius: 50px;
  color: var(--color-text);
  border: 1px solid transparent;
  text-transform: uppercase;
}
.product--detail .tab-list li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-1st);
  visibility: hidden;
  opacity: 0;
}
.product--detail .tab-list li a:hover {
  color: var(--color-heading);
}
.product--detail .tab-list li:last-child {
  margin-right: 0;
}
.product--detail .tab-list li.active a {
  color: var(--color-1st);
}
.product--detail .tab-list li.active a:before {
  visibility: visible;
  opacity: 1;
}
.product--detail .product__content {
  padding-top: 50px;
}
@media (max-width: 480px) {
  .product--detail .product__shopping figure {
    flex-flow: row wrap;
  }
  .product--detail .product__shopping figure .form-group--number {
    margin-right: 0;
    max-width: 100%;
    width: 100%;
  }
  .product--detail .product__shopping figure > * {
    margin-bottom: 10px;
  }
  .product--detail .product__shopping figure .btn {
    flex-grow: 2;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .product--detail .product__thumbnail {
    max-width: 500px;
  }
}
@media (min-width: 992px) {
  .product--detail .product__title {
    font-size: 30px;
  }
  .product--detail .product__desc p {
    font-size: 16px;
  }
  .product--detail .product__price {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .product--detail .product__sharing {
    padding-top: 20px;
  }
  .product--detail .product__header {
    display: flex;
    flex-flow: row nowrap;
  }
  .product--detail .product__header > * {
    width: 100%;
    max-width: 50%;
  }
  .product--detail .product__header .product__thumbnail {
    padding-right: 30px;
  }
  .product--detail .product__content {
    padding-top: 100px;
  }
}
@media (min-width: 1200px) {
  .product--detail .product__thumbnail {
    flex-flow: row-reverse nowrap;
    align-content: flex-start;
  }
  .product--detail .product__thumbnail figure {
    max-width: calc(100% - 80px);
    padding-left: 10px;
  }
  .product--detail .product__variants {
    max-width: 80px;
  }
  .product--detail .product__info {
    padding-left: 30px;
  }
}

.table--cart .form-group--number {
  max-width: 120px;
}
.table--cart .total {
  color: var(--color-text);
  font-size: 18px;
}
.table--cart .total strong {
  color: var(--color-heading);
  text-transform: uppercase;
}
.table--cart .total span {
  font-size: 0.75em;
}
.table--cart .total .total__price {
  font-size: 30px;
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.2em;
}
.table--cart .total .total__price span {
  display: block;
  font-size: 0.6em;
}
.table--cart thead tr th {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  border: none;
  border-bottom: 1px solid #e5e5e5;
}
.table--cart tbody tr td {
  border: none;
  border-bottom: 1px solid #e5e5e5;
  padding-top: 20px;
  padding-bottom: 20px;
  vertical-align: middle;
}
.table--cart tbody tr td strong {
  font-weight: 600;
}
.table--cart tbody tr td:first-child {
  padding-left: 0;
}
.table--cart tbody tr td:last-child {
  padding-right: 0;
  text-align: right;
}
.table--cart tbody tr td:last-child button {
  background-color: transparent;
}
.table--orders thead tr th {
  border: none;
}
.table--orders tbody td {
  padding: 20px 20px;
}
.table--orders tbody td:first-child {
  padding-left: 0;
}
.table--orders tbody td:last-child {
  padding-right: 0;
  text-align: right;
}

@keyframes half-circle-spinner-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.tab {
  display: none;
}
.tab.active {
  display: block;
}

/*3. COMPONENTS */
.cart--mini {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.cart--mini .cart__items {
  border-bottom: none;
  position: relative;
  flex: 1 1 auto;
  overflow-y: auto;
}
.cart--mini .cart__items .product--on-cart {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed #eaeaea;
}
.cart--mini .cart__summary p {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.cart--mini .cart__summary p strong {
  color: var(--color-heading);
  font-weight: 500;
}
.cart--mini .cart__actions {
  padding: 1em 0 1em;
}
.cart--mini .cart__actions .btn--custom {
  width: 100%;
  text-align: center;
  padding: 10px;
  border-radius: 0;
  text-transform: none;
}
.cart--mini .cart__footer {
  padding-top: 20px;
  border-top: 1px solid #eaeaea;
}
.cart--mini figure .btn {
  margin-bottom: 10px;
  padding: 12px 30px;
  text-align: center;
  width: 100%;
}
.cart--mini figure .btn--black {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  min-height: 48px;
}

.form--subscribe {
  position: relative;
}
.form--subscribe input {
  height: 40px;
}
.form--subscribe button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-color: transparent;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-heading);
  height: 30px;
  padding: 0 20px;
}

.form--primary-search {
  position: relative;
}
.form--primary-search button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-color: transparent;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-heading);
  height: 30px;
  padding: 0 20px;
}

.form--contact {
  margin-bottom: 30px;
}
.form--contact .form-group {
  margin-bottom: 35px;
}
.form--contact .form__submit .btn--custom {
  min-width: 175px;
  text-align: center;
}

.form--auth .form__header {
  text-align: center;
  padding-bottom: 10px;
}
.form--auth .form__header h3 {
  font-size: 20px;
  text-transform: uppercase;
}
.form--auth .form__actions p a {
  color: var(--color-1st);
}
.form--auth .form__actions p a:hover {
  text-decoration: underline;
}
.form--auth .form__actions button {
  min-width: 175px;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .form--auth .form__header {
    padding-bottom: 20px;
  }
  .form--auth .form__header h3 {
    font-size: 30px;
  }
  .form--auth .form__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
  }
  .form--auth .form__actions button {
    width: auto;
  }
}

.form--shopping-cart .form__section h4 {
  margin-bottom: 20px;
  position: relative;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1em;
  padding-bottom: 5px;
}
.form--shopping-cart .form__section h4:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: var(--color-heading);
}

.panel--search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 20px 15px;
  visibility: hidden;
  opacity: 0;
  transition-delay: 0;
  background-color: #fff;
  transition: all 0.25s cubic-bezier(0.7, 0, 0.3, 1);
  transform-style: preserve-3d;
  border-bottom: 1px solid #ddd;
}
.panel--search .panel__close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  z-index: 99;
  transition: all 0.4s ease;
}
.panel--search .panel__close i {
  font-size: 26px;
}
.panel--search .panel__close:hover i {
  color: var(--color-danger);
}
.panel--search.active {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.panel--search.active:before {
  transform: scale3d(1, 1, 1);
  transform-origin: 50% 0%;
}
@media (max-width: 479px) {
  .panel--search {
    padding-right: 30px;
  }
}

.section .section__header h3 {
  font-size: 20px;
  text-transform: uppercase;
}
@media screen and (min-width: 1200px) {
  .section .section__header h3 {
    font-size: 30px;
  }
}

.section--homepage {
  padding-top: 30px;
}
.section--homepage .section__header {
  text-align: center;
  padding-bottom: 40px;
}
.section--homepage .section__header h3 {
  margin-bottom: 0.25em;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}
.section--homepage .section__header p {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .section--homepage {
    padding-top: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .section--homepage {
    padding-top: 60px;
  }
}

.home-collection .collection {
  margin-bottom: 32px;
}

/* Shop*/
.shop--sidebar {
  padding-top: 30px;
}
.shop--sidebar .shop__header {
  display: block;
  height: 40px;
}
.shop--sidebar .shop__header:after {
  clear: both;
}
.shop--sidebar .shop__header .panel-trigger {
  padding: 10px 30px;
}
.shop--sidebar .shop__left {
  display: none;
  margin-top: 20px;
}
.shop--sidebar .shop__sort {
  display: none;
}
.shop--sidebar .shop__sort .form-group--inline {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.shop--sidebar .shop__sort .form-group--inline label {
  min-width: 60px;
  font-size: 14px;
  font-weight: 500;
  margin-right: 10px;
}
.shop--sidebar .shop__sort .form-group--inline .form-control {
  height: 40px;
  padding: 0 30px;
  border-radius: 50px;
  border-color: var(--color-heading);
}
@media screen and (min-width: 992px) {
  .shop--sidebar .shop__left {
    padding-right: 30px;
  }
  .shop--sidebar .shop__header .panel-trigger {
    display: none;
  }
  .shop--sidebar .shop__sort {
    display: block;
    float: right;
  }
}
@media screen and (min-width: 1200px) {
  .shop--sidebar {
    display: flex;
    flex-flow: row nowrap;
    padding-top: 50px;
  }
  .shop--sidebar .shop__left {
    max-width: 300px;
    display: block;
  }
  .shop--sidebar .shop__content {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .shop--sidebar .shop__content > * {
    flex-basis: 100%;
  }
}

/* Blog*/
.section--blog {
  padding: 30px 0;
}
.section--blog .section__header {
  text-align: center;
  padding-bottom: 30px;
}
.section--blog .section__header h1 {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-heading);
}
.section--blog .section__content .post {
  margin-bottom: 30px;
}
.section--blog .section__footer {
  padding-top: 30px;
}
@media screen and (min-width: 1200px) {
  .section--blog {
    padding: 30px 0 60px;
  }
  .section--blog .section__header {
    padding-bottom: 30px;
  }
}

.section--related-posts {
  padding-top: 20px;
  border-top: 1px solid #ddd;
}
.section--related-posts .post {
  margin-bottom: 30px;
}
.section--related-posts .section__header {
  padding-bottom: 20px;
}
.section--related-posts .section__header h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
@media screen and (min-width: 992px) {
  .section--related-posts .post {
    margin-bottom: 0;
  }
}

/*Auth*/
.section--auth .form--auth {
  max-width: 600px;
  margin: 0 auto 100px;
  padding: 30px;
  background-color: #f7f7f7;
}

/*Account*/
.section--shopping-cart .section__header {
  text-align: center;
  padding-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .section--shopping-cart .section__header {
    padding-bottom: 40px;
  }
}

/*Others*/

.section--instagram {
  position: relative;
}
.section--instagram figure h3 {
  color: #fff;
}
.section--instagram .instagram-images {
  position: relative;
  display: flex;
  flex-flow: row wrap;
}
.section--instagram .instagram-images > * {
  flex-basis: 33.3333%;
}
.section--instagram .instagram-images .block--instagram {
  position: relative;
}
.section--instagram .instagram-images .block--instagram .block__actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s ease;
  z-index: 10;
  text-align: center;
  color: #fff;
  overflow: hidden;
  width: 80%;
}
.section--instagram .instagram-images .block--instagram .block__actions a {
  color: #fff;
  margin-right: 10px;
  font-size: 20px;
  margin-bottom: 10px;
  display: inline-block;
}
.section--instagram .instagram-images .block--instagram .block__actions a i {
  margin-right: 0.5em;
}
.section--instagram .instagram-images .block--instagram .block__actions a:last-child {
  margin-right: 0;
}
.section--instagram .instagram-images .block--instagram .block__actions p {
  color: #fff;
}
.section--instagram .instagram-images .block--instagram .block__overlay {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: transparent;
}
.section--instagram .instagram-images .block--instagram .block__caption {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  max-height: 110px;
  overflow: hidden;
}
.section--instagram .instagram-images .block--instagram:hover .block__actions {
  visibility: visible;
  opacity: 1;
}
.section--instagram .instagram-images .block--instagram:hover .block__overlay {
  background-color: rgba(0, 0, 0, 0.4);
}
.section--instagram .section__follow-instagram {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  box-shadow: 0 0.5px 1.5px 0 rgba(40, 40, 40, 0.3);
  background-color: rgba(40, 40, 40, 0.9);
  z-index: 20;
  text-align: center;
  padding: 20px 30px;
  max-width: 90%;
}
.section--instagram .section__follow-instagram h4 {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
}
.section--instagram .section__follow-instagram p {
  font-size: 12px;
  text-transform: uppercase;
  color: #b9b4b4;
  font-weight: 600;
}
.section--instagram .section__follow-instagram a {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-1st);
  text-transform: uppercase;
}
@media screen and (min-width: 480px) {
  .section--instagram .instagram-images > * {
    flex-basis: 33.3333%;
  }
}
@media screen and (min-width: 768px) {
  .section--instagram .instagram-images > * {
    flex-basis: 25%;
  }
  .section--instagram .section__follow-instagram {
    padding: 20px 30px;
    max-width: 400px;
  }
  .section--instagram .section__follow-instagram h4 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .section--instagram .instagram-images > * {
    flex-basis: 25%;
  }
}
@media screen and (min-width: 1366px) {
  .section--instagram .instagram-images > * {
    flex-basis: 16.6666666667%;
  }
}

.home-blog {
  margin-bottom: 60px;
}
@media screen and (max-width: 1199px) {
  .home-blog .post {
    margin-bottom: 30px;
  }
}

.page--blog, .page--inner {
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .page--blog, .page--inner {
    padding: 30px 0 50px;
  }
}
@media screen and (min-width: 1200px) {
  .page--blog, .page--inner {
    padding: 50px 0 100px;
  }
}

.page--shop {
  padding-bottom: 50px;
}
.page--shop .page__hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 250px;
  text-transform: uppercase;
}
.page--shop .page__hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.25);
}
.page--shop .page__hero h1 {
  position: relative;
  z-index: 10;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .page--shop .page__hero h1 {
    font-size: 30px;
  }
}
@media screen and (min-width: 992px) {
  .page--shop .page__hero h1 {
    font-size: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .page--shop {
    padding-bottom: 90px;
  }
  .page--shop .page__hero h1 {
    font-size: 48px;
  }
}

.page--product--detail .product--detail {
  margin-bottom: 50px;
}

.sub-toggle {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transform-style: preserve-3d;
}
.sub-toggle:before, .sub-toggle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background-color: var(--color-heading);
}
.sub-toggle:before {
  transform: translateX(-50%);
}
.sub-toggle:after {
  transform: translateX(-50%) rotate(90deg);
}
.sub-toggle.active:after {
  display: none;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  z-index: 1000;
  transition: all 0.25s ease;
  border: 1px solid #eee;
  background-color: rgba(255, 255, 255, 0.95);
  visibility: hidden;
  opacity: 0;
}
.sub-menu:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 0;
  width: 0;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  display: none;
}
.sub-menu > li {
  display: block;
}
.sub-menu > li .sub-toggle-desktop {
  position: absolute;
  right: 7px;
  top: 15px;
  display: inline-block;
}
.sub-menu > li .sub-toggle-desktop:before {
  content: "\e844";
}
.sub-menu > li > a {
  display: inline-block;
  padding: 10px 20px;
  width: 100%;
  font-size: 15px;
  color: var(--color-text);
  text-transform: capitalize;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.sub-menu > li > a:hover {
  color: var(--color-1st);
}
.sub-menu > li:last-child a {
  border-bottom: 1px solid #eee;
}
.sub-menu > li.menu-item-has-children {
  position: relative;
}
.sub-menu > li.menu-item-has-children > .sub-toggle {
  display: none;
}
.sub-menu > li.menu-item-has-children > .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px);
}
.sub-menu > li.menu-item-has-children > .sub-menu:before {
  display: none;
}
.sub-menu > li.menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.sub-menu > li:last-child {
  border-bottom: none;
}

.menu > li {
  display: inline-block;
  padding-right: 30px;
}
.menu > li > a {
  position: relative;
  display: inline-block;
  padding: 30px 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  color: var(--color-heading);
  text-transform: uppercase;
  transform-style: preserve-3d;
}
.menu > li > a:hover {
  color: var(--color-1st);
}
.menu > li:first-child {
  padding-left: 0;
}
.menu > li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.menu > li .sub-toggle {
  display: none;
}
.menu > li.menu-item-has-children {
  position: relative;
}
.menu > li.menu-item-has-children .sub-toggle {
  margin-left: 5px;
  display: none;
}
.menu > li.menu-item-has-children .sub-menu {
  visibility: hidden;
  opacity: 0;
  transform: scale3d(1, 1, 0) translateY(30px);
}
.menu > li.menu-item-has-children:hover .sub-toggle {
  color: #ffffff;
}
.menu > li.menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: scale3d(1, 1, 1) translateY(0);
}
.menu > li.current-menu-item > a {
  color: var(--color-1st);
}
.menu > li.current-menu-item .sub-toggle {
  color: #ffffff;
}
@media (max-width: 1199px) {
  .menu > li {
    display: block;
    padding-right: 0;
    border-bottom: 1px dashed #e4e4e4;
  }
  .menu > li > a {
    display: block;
    color: var(--color-heading);
    font-size: 1.5rem;
    padding: 1rem 0;
    line-height: 20px;
  }
  .menu > li.menu-item-has-children {
    position: relative;
  }
  .menu > li.menu-item-has-children > .sub-menu {
    display: none;
    visibility: visible;
    opacity: 1;
    transition: all 0s ease;
  }
  .menu > li.menu-item-has-children > .sub-menu > .menu-item-has-children > .sub-toggle {
    height: 40px;
    width: 40px;
  }
  .menu > li.menu-item-has-children .sub-toggle {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    height: 30px;
    width: 30px;
    margin-left: 0;
  }
  .menu > li.menu-item-has-children .sub-toggle i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .menu > li.current-menu-item {
    border-left: 2px solid var(--color-1st);
    padding-left: 1rem;
  }
  .menu > li.current-menu-item > a:before {
    display: none;
  }
}

.menu--mobile {
  width: 100%;
}
.menu--mobile .sub-menu {
  position: relative;
  display: none;
  transform: translate(0, 0);
  visibility: visible;
  opacity: 1;
  transition: all 0s ease;
  border: none;
}
.menu--mobile .sub-menu > li > a {
  border: none;
  padding: 10px 20px;
}
.menu--mobile .sub-toggle:before, .menu--mobile .sub-toggle:after {
  background-color: var(--color-text);
}
.menu--mobile > li {
  padding-left: 1rem !important;
  border-bottom: 1px dashed #eaeaea;
}
.menu--mobile > li > a {
  position: relative;
  z-index: 10;
  display: block;
  padding: 10px 20px 10px 0;
  line-height: 20px;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text);
  text-transform: capitalize;
}
.menu--mobile > li > a:hover {
  padding-left: 5px;
  color: var(--color-1st);
}
.menu--mobile > li.menu-item-has-children:not(.has-mega-menu) {
  position: relative;
}
.menu--mobile > li.menu-item-has-children:not(.has-mega-menu) .sub-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  z-index: 20;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .sub-toggle-desktop {
    display: none !important;
  }
}
/*4. MODULES */
.navigation > .container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}

.navigation--mobile {
  display: flex;
  padding: 10px 15px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
@media screen and (min-width: 1200px) {
  .navigation--mobile {
    display: none;
  }
}

.header {
  display: none;
}
.header .btn-shopping-cart {
  position: relative;
}
.header .btn-shopping-cart > span {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(25%, 25%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 16px;
  height: 16px;
  background-color: var(--color-1st);
  border-radius: 50%;
  font-size: 10px;
  color: #fff;
}
.header .header__actions {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
}
.header .header__actions > * {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
}
.header .header__actions > * i {
  font-size: 20px;
}
.header.header--sticky > .navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: #fff;
  animation: fadeInDown 0.6s both;
  min-height: 60px;
}
@media screen and (min-width: 1200px) {
  .header {
    display: block;
  }
}

.header--mobile .logo {
  font-size: 20px;
}
.header--mobile.header--sticky {
  padding: 15px 20px;
}
.header--mobile.header--sticky .navigation--mobile {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-1st);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1199px) {
  .header--mobile {
    display: block;
  }
}

.navigation--list {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 30px;
  z-index: 100;
  background-color: var(--color-1st);
}
.navigation--list .navigation__item {
  text-align: center;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}
.navigation--list .navigation__item i {
  font-size: 20px;
  color: #ffffff;
}
.navigation--list .navigation__item span {
  display: block;
}
.navigation--list .navigation__item.active {
  background-color: #fff;
}
.navigation--list .navigation__item.active i {
  color: var(--color-1st);
  font-size: 18px;
}
.navigation--list .navigation__item.active span {
  color: var(--color-1st);
}
.navigation--list .navigation__content {
  max-width: 300px;
  margin: 0 auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1200px) {
  .navigation--list {
    display: none;
  }
}

.navigation--sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
}
.navigation--sticky .navigation {
  background-color: #fff;
}
.navigation--sticky .header__top {
  display: none;
}
.navigation--sticky.navigation--pin {
  transform: translate(0, 0);
}
.navigation--sticky.navigation--unpin {
  transform: translate(0, -100%);
}
.navigation--sticky.header--1.navigation--pin .navigation {
  background-color: rgba(0, 0, 0, 0.95);
}
.navigation--sticky.header--1.navigation--pin.header--black .navigation {
  background-color: rgba(255, 255, 255, 0.95);
}
.navigation--sticky.header--2.navigation--pin.active {
  background-color: #fff;
  transform: translate(270px, 0);
}
@media (max-width: 1199px) {
  .navigation--sticky.navigation--unpin {
    transform: translate(0, 0);
  }
}

.site-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  transition: all 0.4s ease;
  visibility: hidden;
  opacity: 0;
}
.site-mask.active {
  visibility: visible;
  opacity: 1;
}

.ps-search--mobile {
  max-width: 450px;
  margin: 0 auto;
  padding: 10px 20px;
}
.footer {
  padding: 45px 0;
  background-color: #f9f9f9;
}
.footer .widget--footer {
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .footer .widget--footer {
    margin-bottom: 40px;
  }
  .footer .widget--footer:last-child {
    margin-bottom: 0;
  }
}

/*5. HELPERS */

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

.bg--cover {
  background-position: 50% 50% !important;
  background-size: cover !important;
}

.panel--sidebar ul, .product ul, .product--detail .product__color ul, .shop--sidebar .shop__left ul, .header ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-reviews-container .review-container form .btn-primary {
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  line-height: 20px;
  transition: all 0.4s ease;
  background-color: transparent;
  border: 1px solid var(--color-1st);
  color: var(--color-1st);
  font-size: 14px;
  padding: 14px 36px;
  text-transform: uppercase;
  border-radius: 50px;
  min-width: 175px;
  margin-top: 15px;
}
.product-reviews-container .review-container form .btn-primary:hover {
  background-color: var(--color-1st);
  border-color: var(--color-1st);
  color: #fff;
}
.product-reviews-container .review-container .btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.product-reviews-container .review-container .ms-2 {
  margin-left: 0.5rem !important;
}
.product-reviews-container .review-container .gap-2 {
  gap: 0.5rem !important;
}
.product-reviews-container .review-container.gap-5, .product-reviews-container .review-container .gap-5 {
  gap: 3rem !important;
}
.product-reviews-container .review-container .g-1, .product-reviews-container .review-container .gy-1 {
  --bs-gutter-y: 0.25rem;
}
.product-reviews-container .review-container .g-1, .product-reviews-container .review-container .gx-1 {
  --bs-gutter-x: 0.25rem;
}
.product-reviews-container .review-container .badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
.product-reviews-container .review-container .bg-dark {
  --bs-bg-opacity: 1;
  --bs-dark-rgb: 33, 37, 41;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}
.product-reviews-container .review-container .translate-middle {
  transform: translate(-50%, -50%) !important;
}
.product-reviews-container .review-container .start-50 {
  left: 50% !important;
}
.product-reviews-container .review-container .top-50 {
  top: 50% !important;
}
.product-reviews-container .review-container .start-0 {
  left: 0 !important;
}
.product-reviews-container .review-container .top-0 {
  top: 0 !important;
}
.product-reviews-container .review-container .position-absolute {
  position: absolute !important;
}
.product-reviews-container .review-container .opacity-75 {
  opacity: 0.75 !important;
}
.product-reviews-container .review-container .review-item__images .row, .product-reviews-container .review-container .review-images.row {
  --bs-gutter-x: 0.25rem;
  --bs-gutter-y: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.product-reviews-container .review-container .review-item__images .row > *, .product-reviews-container .review-container .review-images.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

.fadeInUp {
  animation-name: fadeInUp;
}

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

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

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
p:empty {
  margin-bottom: 0;
}

.required:after {
  content: " *";
  color: red;
}

.product-attributes ul {
  padding-left: 0;
  list-style: none;
}

.product--detail .product__price.sale del {
  font-size: 14px;
}

.btn--custom.btn-disabled {
  opacity: 0.7;
  color: var(--color-text);
  border: 1px solid var(--color-text);
}

.widget--tags .list--tags li.active a {
  color: var(--color-1st);
  border-color: var(--color-1st);
}

.widget__links li.active a {
  color: var(--color-1st);
}

.block--review .block__content {
  padding-top: 0;
}
.block--review .block__header {
  align-items: start;
}

.block--product-reviews > .block__header p i {
  margin-right: 0;
}
.block--product-reviews > .block__header p span {
  margin-left: 0.5em;
}

.star-yellow {
  color: #edb867;
}

.product {
  margin: 20px 0;
}
.product .product__wrapper {
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
}
.product .product__wrapper .product__content {
  padding: 15px;
}
.product:hover .product__wrapper {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
}
.product .product__thumbnail .product__variants {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
.product .product__thumbnail .product__variants .custom-checkbox span {
  width: 20px;
  height: 20px;
  border-radius: 0;
  border: 1px solid #f2f2f2;
}

.single-variation-wrap .error-message, .single-variation-wrap .success-message {
  margin-top: 10px;
}

body .cookie-consent .cookie-consent-body {
  max-width: 1200px;
}

.panel--sidebar .panel__content {
  overflow-y: scroll;
}
.panel--sidebar .panel__content.panel__scroll {
  flex: none;
  display: block;
}

.ps-slider__value {
  margin-top: 10px;
  display: inline-block;
}

.product--detail .product__attribute .text-swatch li, .widget--shop .widget-content .text-swatch li {
  display: inline-block;
  margin-right: 5px;
}
.product--detail .product__attribute .text-swatch li input[type=radio], .product--detail .product__attribute .text-swatch li input[type=checkbox], .widget--shop .widget-content .text-swatch li input[type=radio], .widget--shop .widget-content .text-swatch li input[type=checkbox] {
  display: none;
}
.product--detail .product__attribute .text-swatch li input[type=radio]:checked ~ span, .product--detail .product__attribute .text-swatch li input[type=checkbox]:checked ~ span, .widget--shop .widget-content .text-swatch li input[type=radio]:checked ~ span, .widget--shop .widget-content .text-swatch li input[type=checkbox]:checked ~ span {
  border: 1px solid var(--color-1st);
}
.product--detail .product__attribute .text-swatch li input[type=radio]:checked ~ span:after, .product--detail .product__attribute .text-swatch li input[type=checkbox]:checked ~ span:after, .widget--shop .widget-content .text-swatch li input[type=radio]:checked ~ span:after, .widget--shop .widget-content .text-swatch li input[type=checkbox]:checked ~ span:after {
  width: 16px;
  height: 16px;
  content: "\e83f";
  font-family: feather !important;
  position: absolute;
  overflow: hidden;
  right: -8px;
  bottom: -5px;
  color: #fff;
  font-size: 8px;
}
.product--detail .product__attribute .text-swatch li input[type=radio]:checked ~ span:before, .product--detail .product__attribute .text-swatch li input[type=checkbox]:checked ~ span:before, .widget--shop .widget-content .text-swatch li input[type=radio]:checked ~ span:before, .widget--shop .widget-content .text-swatch li input[type=checkbox]:checked ~ span:before {
  border: 16px solid transparent;
  border-bottom: 16px solid var(--color-1st);
  content: "";
  position: absolute;
  right: -16px;
  bottom: -1px;
}
.product--detail .product__attribute .text-swatch li span, .widget--shop .widget-content .text-swatch li span {
  padding: 5px 15px;
  border: 1px solid #eee;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.widget--shop .widget-content .text-swatch li span {
  background: #fff;
}

.slider__content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  display: table;
}
.slider__content .slider__content__wrapper {
  display: table-cell;
  vertical-align: middle;
}
.slider__content .slider__content__wrapper .slider__content__wrapper__content {
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}
.slider__content .slider__content__wrapper .slider__content__wrapper__content h2 {
  font-size: 50px;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
  max-width: 50%;
}
.slider__content .slider__content__wrapper .slider__content__wrapper__content p {
  margin-bottom: 30px;
  color: #fff;
  line-height: 28px;
  max-width: 50%;
  font-size: 16px;
}

.widget-filter-item {
  padding: 20px 0;
  border-top: 1px solid #ccc;
}

.nonlinear-wrapper {
  padding-bottom: 20px;
}

.panel__content .widget--shop {
  margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  .slider__content .slider__content__wrapper .slider__content__wrapper__content h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .slider__content .slider__content__wrapper .slider__content__wrapper__content p {
    margin-bottom: 10px;
    line-height: 24px;
  }
  .slider__content .slider__content__wrapper .slider__content__wrapper__content .btn--custom, .slider__content .slider__content__wrapper .slider__content__wrapper__content button.btn--custom {
    padding: 10px 20px;
    font-size: 14px;
  }
}
.fb_dialog, .fb-customerchat {
  z-index: 9999 !important;
}

.banner-effect {
  position: relative;
  overflow: hidden;
  display: block;
}
.banner-effect:before {
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.banner-effect:hover:before {
  animation: shine 1.1s;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
@media screen and (max-width: 768px) {
  .slider__content .slider__content__wrapper .slider__content__wrapper__content {
    display: none;
  }
  .categories_box {
    justify-content: center !important;
  }
}
.ps-block--feature {
  display: flex;
  flex-flow: row nowrap;
  max-width: 260px;
}
.ps-block--feature > * {
  width: 100%;
}
.ps-block--feature > .ps-block__left {
  max-width: 55px;
}
.ps-block--feature > .ps-block__left i {
  color: var(--color-text);
  font-size: 3.5rem;
}
.ps-block--feature > .ps-block__right p {
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.4em;
  color: var(--color-heading);
}
.ps-block--feature > .ps-block__right small {
  display: block;
  font-size: 1.4rem;
  color: var(--color-text);
}
@media (max-width: 991px) {
  .ps-block--feature {
    margin: 0 auto 3rem;
  }
}
@media (max-width: 767px) {
  .ps-block--feature {
    max-width: 100%;
  }
}

.ps-block--features {
  padding: 4rem 0;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-input {
  -moz-appearance: textfield;
}

.show-admin-bar #alert-container {
  top: 100px;
}
.show-admin-bar .panel--search {
  top: 40px;
}
.show-admin-bar #avatar-modal {
  top: 80px;
}
.show-admin-bar .header.header--sticky > .navigation {
  top: 40px;
}

.form--contact .form__submit .btn--custom.button-loading {
  background-color: var(--color-1st) !important;
}

.rating_wrap .rating {
  font-family: "feather" !important;
  vertical-align: top;
  overflow: hidden;
  position: relative;
  height: 20px;
  width: 80px;
  display: inline-block;
}
.rating_wrap .rating::before {
  font-size: 14px;
  content: "\e90b\e90b\e90b\e90b\e90b";
  top: 0;
  position: absolute;
  left: 0;
  float: left;
  color: #d2d2d2;
  letter-spacing: 2px;
}
.rating_wrap .rating_num {
  font-size: 14px;
  vertical-align: middle;
  display: inline-block;
  color: #696969;
}
.rating_wrap .product_rate {
  overflow: hidden;
  font-family: "feather" !important;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
  color: #EDB867;
}
.rating_wrap .product_rate::before {
  font-size: 14px;
  content: "\e90b\e90b\e90b\e90b\e90b";
  top: 0;
  position: absolute;
  left: 0;
  letter-spacing: 2px;
}

.error-inner {
  min-height: calc(100vh - 385px);
}

.show-admin-bar .error-inner {
  min-height: calc(100vh - 425px);
}

.top-header {
  padding: 10px 0;
  transition: all 0.5s ease-in-out;
  background-color: #f6f6f8;
  color: #656262;
  font-size: 12px;
}
.top-header a {
  color: #656262;
  font-size: 12px;
}
.top-header a:hover {
  color: var(--color-1st);
}

.mr-3, .mx-3 {
  margin-right: 1rem !important;
}

.contact-detail li {
  display: inline-block;
  margin-right: 10px;
}

.header_list > li {
  color: #333;
  font-size: 14px;
  vertical-align: middle;
  display: inline-block;
  padding: 2px 15px 2px 0;
}
.header_list > li:last-child {
  padding-right: 0;
}
.header_list > li i {
  vertical-align: middle;
}

.slider__content {
  background: rgba(0, 0, 0, 0.2);
}

.customer-page .profile-sidebar .profile-usermenu li.list-group-item a.active {
  color: var(--color-1st);
}

.tracking-form {
  padding: 30px;
  background-color: #f7f7f7;
  max-width: 500px;
  margin: 15px auto;
  margin-bottom: 30px;
}
.tracking-form .form-control, .tracking-form .btn--custom.btn--outline, .tracking-form button.btn--custom.btn--outline {
  background-color: #fff;
}
.tracking-form .btn--custom:hover, .tracking-form .btn--custom:active, .tracking-form button.btn--custom:hover, .tracking-form button.btn--custom:active {
  color: #fff;
  background-color: var(--color-1st);
}

.customer-information-box {
  text-align: right;
}
@media (max-width: 767px) {
  .customer-information-box {
    text-align: left;
  }
}

#remove-item-modal {
  z-index: 99999999;
}

#alert-container {
  top: 60px;
  right: 5px;
  position: fixed;
  z-index: 9999999;
}
#alert-container .alert {
  max-width: 450px !important;
  min-height: 45px !important;
  font-weight: 400;
  position: relative;
  padding: 15px 40px 15px 60px;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px 0 rgba(3, 3, 3, 0.1);
}
#alert-container .alert.alert-success {
  color: #299c77;
  background-color: #bff9d0;
}
#alert-container .alert .message-icon {
  position: absolute;
  left: 5%;
  top: 30%;
  font-size: 20px;
  fill: #299c77;
  stroke: #299c77;
}
#alert-container .alert.alert-dismissible .close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 10px;
  padding: 0;
}

.ps-pagination {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.ps-pagination a {
  cursor: pointer;
}

.ps-checkbox {
  position: relative;
  display: block;
}
.ps-checkbox > input {
  position: absolute;
  visibility: hidden;
  box-sizing: border-box;
}
.ps-checkbox label {
  margin-bottom: 0;
  position: relative;
  padding-left: 30px;
  font-weight: 400;
  cursor: pointer;
}
.ps-checkbox label:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
  transition: all 0.4s ease;
  left: 0;
  top: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #000;
}
.ps-checkbox label:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
  transition: all 0.4s ease;
  top: 4px;
  left: 7px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  opacity: 0;
  transform: rotate(0deg);
}
.ps-checkbox input[type=checkbox]:checked ~ label:before {
  background-color: #222;
  border-color: #222;
}
.ps-checkbox input[type=checkbox]:checked ~ label:after {
  transform: rotate(45deg);
  opacity: 1;
}

.avatar-view.mt-card-avatar {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.section--auth a {
  color: var(--color-1st);
}
.section--auth .form-control {
  background-color: #fffefe;
}

.top-header {
  min-height: 45px;
}

.header > .navigation, .header > .navigation > .container {
  min-height: 80px;
}

#app {
  min-height: 500px;
}

.menu--mobile .sub-menu > li.menu-item-has-children > .sub-menu {
  position: static;
  padding-left: 20px;
}

.product .badge {
  float: left;
  margin-right: 5px;
}

.header .logo img {
  max-height: 92px;
  margin: -2px 0;
}

.footer {
  padding: 45px 0 20px;
}

.table--orders.table--wishlist tr td, .table--cart.table--wishlist tr td {
  padding: 0.75rem;
}
.table--orders tr td .product__price.sale, .table--cart tr td .product__price.sale {
  color: var(--color-heading);
}
.table--orders tr td .product__price.sale p > span, .table--cart tr td .product__price.sale p > span {
  font-weight: 600;
}
.table--orders tr td .product__price.sale del, .table--cart tr td .product__price.sale del {
  font-size: 13px;
  color: var(--color-danger);
}

.product__attribute .attribute-swatch-item.pe-none {
  cursor: not-allowed !important;
}
.product__attribute .attribute-swatch-item.pe-none > div {
  pointer-events: none !important;
}
.product__attribute .text-swatch .attribute-swatch-item.pe-none span, .product__attribute .color-swatch .attribute-swatch-item.pe-none span {
  color: gray;
  cursor: unset;
  opacity: 0.7;
}
.product__attribute .text-swatch .attribute-swatch-item.pe-none span:before, .product__attribute .text-swatch .attribute-swatch-item.pe-none span:after, .product__attribute .color-swatch .attribute-swatch-item.pe-none span:before, .product__attribute .color-swatch .attribute-swatch-item.pe-none span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  border-top: 1px dashed #999;
}
.product__attribute .text-swatch .attribute-swatch-item.pe-none span:before, .product__attribute .color-swatch .attribute-swatch-item.pe-none span:before {
  transform: rotate(45deg);
}
.product__attribute .text-swatch .attribute-swatch-item.pe-none span:after, .product__attribute .color-swatch .attribute-swatch-item.pe-none span:after {
  transform: rotate(-45deg);
}

.button-loading {
  border: 1px solid #c4cdd5;
  cursor: default;
  text-shadow: none;
  color: transparent !important;
  position: relative;
  transition: border-color 0.2s ease-out;
}

.button-loading, .button-loading:hover, .button-loading:focus, .button-loading:active {
  color: transparent;
}

.button-loading:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border-width: 3px;
  border-style: solid;
  margin-top: -9px;
  margin-left: -9px;
  width: 18px;
  height: 18px;
  animation: button-loading-spinner 1s linear infinite;
  border-color: #ffffff;
  border-bottom-color: transparent;
}

.button-loading.btn-fill-out {
  color: transparent !important;
  border: 1px solid var(--color-1st);
}
.button-loading.btn-fill-out:before {
  width: 18px;
  background-color: transparent;
  border-color: var(--color-1st);
  border-bottom-color: transparent;
}
.button-loading.btn-fill-out:after {
  display: none;
}
@keyframes button-loading-spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.section--shopping-cart .table-responsive {
  padding: 0 10px;
}
.section--shopping-cart .table-responsive .table--cart.content-loading:after {
  right: -10px;
  left: -10px;
}

.cart__items .product--on-cart.content-loading, .section--shopping-cart .table--cart.content-loading {
  position: relative;
}
.cart__items .product--on-cart.content-loading:before, .section--shopping-cart .table--cart.content-loading:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border-width: 1px;
  border-style: solid;
  margin-top: -9px;
  margin-left: -9px;
  width: 18px;
  height: 18px;
  animation: button-loading-spinner 1s linear infinite;
  border-color: var(--color-1st);
  border-bottom-color: transparent;
}
.cart__items .product--on-cart.content-loading:after, .section--shopping-cart .table--cart.content-loading:after {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.02);
}

.form--review-product .text-danger a {
  color: var(--color-1st);
}

.language-wrapper .dropdown {
  height: 100%;
}
.language-wrapper .dropdown.open .language_bar_chooser.dropdown-menu {
  display: block;
}
.language-wrapper .dropdown .btn {
  border: none !important;
  background: none !important;
  margin-bottom: 0;
  border-radius: 0 !important;
  padding: 7px 15px;
  outline: none !important;
  box-shadow: none !important;
  transition: all 0.4s ease;
  color: inherit !important;
  font-size: inherit;
  height: 100%;
}
.language-wrapper .dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #ffffff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  width: 160px;
  line-height: 58px;
  margin: 0;
  padding: 0;
}
.language-wrapper .dropdown .dropdown-menu li .flag {
  margin: 0 10px;
}
.language-wrapper .dropdown .dropdown-menu li span {
  color: #222222;
}
.language-wrapper .dropdown .dropdown-menu li.active a span {
  color: #fff;
}
.language-wrapper .dropdown .language_bar_chooser {
  display: block;
  float: right;
  width: 160px;
  line-height: 58px;
  text-align: center;
}
.language-wrapper .dropdown .language_bar_chooser li {
  display: inline-block;
  float: left;
  margin-left: 5px;
}
.language-wrapper .dropdown .language_bar_chooser.dropdown-menu {
  display: none;
  border-radius: 0 !important;
}
.language-wrapper .dropdown .language_bar_chooser.dropdown-menu li {
  width: 100%;
  margin: 0;
  display: block;
}
.language-wrapper .dropdown .language_bar_chooser.dropdown-menu li:hover {
  background: #dddddd;
}
.language-wrapper .dropdown .language_bar_chooser.dropdown-menu li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-right: 0 !important;
  width: 100%;
  text-align: left;
}
.language-wrapper .language_bar_list li {
  display: inline-block;
  margin-left: 5px;
  min-width: 90px;
}
.language-wrapper .language_bar_list li a {
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}
.language-wrapper .language_bar_list li a .flag {
  margin-right: 10px;
  width: 20px;
}
.language-wrapper .language_bar_list li a span {
  color: #222222;
}

body[dir=rtl] .language-wrapper .language_bar_list li a .flag {
  margin-right: 0;
  margin-left: 10px;
}
body[dir=rtl] .language-wrapper .language_bar_chooser.dropdown-menu li a {
  text-align: right;
}

.language-wrapper .language_bar_list li a img {
  margin-right: 5px;
  margin-top: 1px;
}
.language-wrapper .dropdown-toggle::after {
  display: none;
}
.language-wrapper .dropdown .btn {
  padding: 7px;
}
.language-wrapper .btn-select-language {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: var(--color-muted) !important;
  padding: 0;
  font-size: 12px;
  height: auto;
  font-weight: normal;
}
.language-wrapper .dropdown-menu.language_bar_chooser {
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0;
  margin: 0.125rem 0 0;
  font-size: 12px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  line-height: 1;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  border: 1px solid #dee2e6 !important;
}
.language-wrapper .dropdown-menu li img {
  margin: 0 10px;
}
.language-wrapper .dropdown-menu li a {
  padding: 10px 0;
}
.language-wrapper .btn img {
  margin-right: 7px;
  margin-top: 2px;
}
.language-wrapper.choose-currency .dropdown .dropdown-menu.language_bar_chooser {
  width: auto;
  min-width: 0;
}
.language-wrapper.choose-currency .dropdown .dropdown-menu.language_bar_chooser li a {
  padding: 10px;
  text-align: center;
}

.deal {
  background-color: #f5f6f9;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-flow: row wrap;
  min-height: 300px;
  padding: 30px;
}

.deal-co {
  margin: 15px 0;
}

.deal, .deal > div {
  width: 100%;
}

.deal .deal-content {
  align-self: center;
}

.deal .product-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 25px;
  max-width: 240px;
}

.deal .product-title a {
  color: var(--color-1st);
}

.deal .product-price {
  align-items: center;
  color: var(--color-danger);
  display: flex;
  flex-flow: wrap;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 20px;
}

.deal .product-price .new-price {
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-right: 10px;
}

.deal .product-price .old-price {
  color: #ccc;
  text-decoration: line-through;
}

.deal .deal-bottom {
  align-self: flex-end;
}

.deal .deal-bottom .deals-countdown {
  margin-bottom: 20px;
  margin-left: -12px;
}

.deals-countdown .countdown-section {
  position: relative;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  padding: 0.9rem 0 0.3rem;
  margin-left: 0.8rem;
  margin-right: 0.8rem;
  background-color: var(--color-1st);
  border-radius: 0.3rem;
  border: none;
  margin-bottom: 2rem;
}
.deals-countdown .countdown-section .countdown-amount {
  display: inline-block;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 15px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
.deals-countdown .countdown-section .countdown-period {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  bottom: -20px;
  display: block;
  font-weight: 400;
  color: var(--color-heading);
  text-transform: uppercase;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.deals-countdown .countdown-section:not(:last-child)::after {
  color: var(--color-heading);
  content: ":";
  display: inline-block;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  position: absolute;
  left: 100%;
  margin-left: 7px;
  margin-top: -1px;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.custom-modal .modal-dialog {
  max-width: 800px !important;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  margin: auto;
  top: 50%;
  transform: translateY(-50%) !important;
}
.custom-modal .modal-dialog .modal-content {
  border-radius: 0;
  padding: 0;
}
.custom-modal .modal-dialog .btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 2;
}

.ps-pagination .pagination .page-item.active .page-link {
  background: var(--color-1st);
  color: #fff;
}

.btn--custom.btn--outline.btn-outline-danger {
  border-color: #dc3545;
  color: #dc3545;
}
.btn--custom.btn--outline.btn-outline-danger:hover {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #fff;
}

.pagination {
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
.pagination li.page-item {
  margin-bottom: 10px;
}

.dropdown-swatch select.form-control {
  height: 34px;
}

.ps-list--categories .sub-menu li.current-menu-item > a {
  color: var(--color-1st);
}

.faqs-list h4 {
  margin-top: 30px;
}
.faqs-list h4:first-child {
  margin-top: 0;
}
.faqs-list .card {
  margin-bottom: 10px;
  border: 1px solid rgba(0, 0, 0, 0.125) !important;
}
.faqs-list .card .card-header {
  background: #fff;
  border-radius: 0;
  padding: 1rem;
}
.faqs-list .card .card-header h2 button {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  background: #fff;
  text-decoration: none !important;
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  text-transform: none;
}
.faqs-list .card .card-header h2 button::before {
  display: none;
}
.faqs-list .card .card-header h2 button::after {
  color: #ced4da;
  position: absolute;
  right: 0;
  top: -7px;
  border: 1px solid #ced4da;
  width: 40px;
  height: 40px;
  line-height: 30px;
  border-radius: 50%;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  background-position: center;
  transform: scale(0.7) !important;
  transition: transform 0.2s ease-in-out;
}
.faqs-list .card .card-header h2 button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}

.ps-custom-scrollbar {
  max-height: 250px;
}
.ps-custom-scrollbar .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: rgb(102, 102, 102);
}
.ps-custom-scrollbar .mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
  background: rgba(204, 204, 204, 0.9);
}
.ps-custom-scrollbar .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .ps-custom-scrollbar .mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
  width: 6px;
  border-radius: 0 !important;
  opacity: 1 !important;
}

.table__compare .product--detail .product__attribute {
  border: none;
  padding-bottom: 0;
}
.table__compare .product--detail .product__attribute .text-swatch li input[type=radio]:checked ~ span:after {
  right: -5px;
}

.slider__content {
  display: block;
}
.slider__content .slider__content__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.slider__content .slider__content__wrapper .slider__content__wrapper__content {
  flex: 1;
}

.cat_slider.owl-carousel.owl-drag .owl-item:last-child {
  margin-right: 0 !important;
}
.cat_slider.owl-carousel .owl-stage {
  margin: 0 auto;
}
.cat_slider.owl-carousel .owl-item img {
  margin-bottom: 5px;
}

.generic-form .g-recaptcha {
  margin-top: 15px;
}

.product__attribute > label {
  flex: 1;
  margin-right: 10px;
  white-space: nowrap;
}

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

.iti.iti--allow-dropdown {
  width: 100%;
}

.icon-tiktok {
  width: 15px;
  height: 15px;
  display: inline-block;
  background-size: 100%;
  background: url("../img/icon-tiktok.svg") no-repeat;
}

.list--social li a:hover i.icon-tiktok {
  background: url("../img/icon-tiktok-light.svg") no-repeat;
}

.auth-card form {
  padding-top: 0 !important;
}
.auth-card form svg {
  width: 24px;
  height: 24px;
  margin-bottom: 0;
}
.auth-card form .auth-input-icon {
  top: 9px;
}
.auth-card form .ps-5 {
  padding-left: 40px !important;
}
.auth-card form .mb-3 {
  margin-bottom: 15px !important;
}
.auth-card form .form-check .form-check-input {
  vertical-align: top;
  margin-top: 3px;
}

body .toastify {
  width: 350px;
}
body .toastify .toastify-icon {
  width: 20px;
  height: 20px;
  margin-inline-end: 10px;
}

.categories_box {
  text-align: center;
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  justify-content: end;
  min-height: 160px;
}
.categories_box .category-image {
  display: inline-block;
  width: auto !important;
  flex: 1;
  height: 120px;
}

.product .product__title {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bb-customer-page .badge {
  color: #fff;
}
.bb-customer-page .gap-2 {
  gap: 10px;
}
.bb-customer-page .gap-3 {
  gap: 15px;
}
.bb-customer-page .btn {
  padding: 7px 12px;
  font-size: 14px;
}
.bb-customer-page .nav-tabs .nav-item .nav-link {
  padding: 10px 20px !important;
}
.bb-customer-page .delete-account-section {
  border: 1px solid #dee2e6;
}
.bb-customer-page .delete-account-section .customer-page-title {
  font-size: 20px;
}
.bb-customer-page .delete-account-section h2 {
  margin-bottom: 0.5rem;
}
.bb-customer-page .delete-account-section p {
  margin-bottom: 15px;
}
.bb-customer-page button.btn.btn-outline-danger {
  background: #fff;
  border: 1px solid #dc3545;
  color: #dc3545;
}
.bb-customer-page button.btn.btn-outline-danger:hover {
  background: #dc3545;
  color: #fff;
  border-color: #dc3545;
}
.bb-customer-page .form-check .form-check-label {
  margin-inline-start: 5px;
}

.bb-ecommerce-table td .product__content {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.bb-ecommerce-table td .product__content img {
  width: 70px;
}

@media only screen and (max-width: 768px) {
  .bb-ecommerce-table th, .bb-ecommerce-table td {
    vertical-align: middle;
    text-align: center;
  }
  .bb-ecommerce-table td {
    display: block;
    width: 100%;
    text-align: right;
  }
  .bb-ecommerce-table thead {
    display: none;
  }
  .bb-ecommerce-table td::before {
    content: attr(data-title) " ";
    float: left;
    text-transform: capitalize;
    margin-right: 15px;
    font-weight: bold;
  }
}
.bb-social-sharing {
  display: inline-flex;
  gap: 0.25rem;
  padding-left: 0;
}
.bb-social-sharing .bb-social-sharing__item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  line-height: 36px;
  text-align: center;
  border: 1px solid #e6e7e8;
  border-radius: 50%;
}
.bb-social-sharing .bb-social-sharing__item:last-child {
  margin-inline-end: 0;
}
.bb-social-sharing .bb-social-sharing__item:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
.bb-social-sharing .bb-social-sharing__item:hover a, .bb-social-sharing .bb-social-sharing__item:hover button {
  color: #fff;
}
.bb-social-sharing .bb-social-sharing__item button {
  border: none;
  outline: none;
  background: transparent;
}
.bb-social-sharing .bb-social-sharing__item button:hover {
  cursor: pointer;
}
.bb-social-sharing .bb-social-sharing__item a {
  width: 38px;
  height: 38px;
  line-height: 36px;
}
.bb-social-sharing .bb-social-sharing__item svg {
  width: 2rem;
  height: 2rem;
}

.tp-product-details-additional-info table {
  border: 1px solid #e0e2e3;
  width: 100%;
}
.tp-product-details-additional-info table tr:not(:last-child) {
  border-bottom: 1px solid #eceded;
}
.tp-product-details-additional-info table td {
  padding: 12px 34px;
}
.tp-product-details-additional-info table td:first-child {
  background-color: #f9f9f9;
  color: #000;
  font-size: 16px;
  width: 306px;
}
.tp-product-details-additional-info table td:last-child {
  font-size: 16px;
}

.list--social li a {
  vertical-align: middle;
  text-align: center;
  line-height: 33px;
}
.list--social li a:hover svg {
  color: #fff;
}

.menu .menu-item a svg {
  width: 18px;
  height: 18px;
  vertical-align: top;
  margin-inline-end: 3px;
}

.bb-product-filter-items.filter-visual .bb-product-filter-item li label:before {
  top: 4px !important;
}

/* Contact Page Custom Styles */
.contact-page-wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
}

.contact-page-info-card, .contact-page-form-card {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-card-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}
.contact-card-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--color-1st);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
.contact-info-item:last-child {
  margin-bottom: 0;
}
.contact-info-item .contact-icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: rgba(var(--color-1st), 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  flex-shrink: 0;
}
.contact-info-item .contact-icon-wrapper i {
  font-size: 20px;
  color: var(--color-1st);
}
.contact-info-item .contact-info-text strong {
  display: block;
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}
.contact-info-item .contact-info-text p {
  margin: 0;
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}
.contact-info-item .contact-info-text a {
  color: var(--color-1st);
  transition: color 0.3s ease;
}
.contact-info-item .contact-info-text a:hover {
  opacity: 0.85;
  text-decoration: underline;
}

.contact-page-form-card .form-control {
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 12px 20px;
  transition: all 0.3s ease;
}
.contact-page-form-card .form-control:focus {
  border-color: var(--color-1st);
  box-shadow: 0 0 0 0.2rem rgba(var(--color-1st), 0.1);
}
.contact-page-form-card .form__submit .btn--custom {
  padding: 15px 30px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* --- Homepage Enhancements --- */
/* 1. Slider Overlay & Text Shadow */
.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.slider__content {
  z-index: 2;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.slider__content h2, .slider__content p {
  color: #fff !important;
}

/* 2. Modern Product Cards */
.product {
  transition: all 0.3s ease-in-out;
  border-radius: 12px;
  background: #fff;
  padding-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.product .product__thumbnail {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}
.product .product__thumbnail img {
  transition: transform 0.5s ease;
}
.product:hover .product__thumbnail img {
  transform: scale(1.05);
}

/* 3. Section Headers */
.section__header {
  text-align: center;
  margin-bottom: 40px;
}
.section__header h3 {
  font-weight: 700;
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
  font-size: 28px;
}
.section__header h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-1st);
  border-radius: 2px;
}
.section__header p {
  margin-top: 10px;
  color: #666;
}

/* 4. Site Features Hover */
.ps-block--feature {
  transition: all 0.3s ease;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.ps-block--feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(var(--color-1st), 0.1);
}
.ps-block--feature:hover .ps-block__left i {
  color: var(--color-1st);
  transform: scale(1.1);
}
.ps-block--feature .ps-block__left i {
  transition: all 0.3s ease;
}

/* Categories Box Enhancement */
.categories_box {
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.3s ease;
}
.categories_box:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.categories_box:hover .categories-image img {
  transform: scale(1.1);
}
.categories_box .categories-image {
  border-radius: 50%;
  overflow: hidden;
}
.categories_box .categories-image img {
  transition: transform 0.5s ease;
}
/* Contact Page Image Styling */
