@charset "UTF-8";
/*
    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: #ec2434;
  --color-border: #e4e4e4;
  --color-text: #707070;
  --color-contrast: #fff;
  --color-heading: #282828;
  --cowlor-dark: #8a8a8a;
}

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

html {
  font-size: 62.5%;
}

body {
  font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
  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, h6 a {
  color: inherit;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 12px;
}

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,
h6:focus {
  text-decoration: none;
}

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

img {
  max-width: 100%;
}

iframe {
  border: 0;
  max-width: 100%;
  width: 100%;
}

.ps-document ul, .ps-document ol {
  margin-bottom: 10px;
}
.ps-document ul ul, .ps-document ul ol, .ps-document ol ul, .ps-document ol ol {
  margin-bottom: 0;
}
.ps-document ul li, .ps-document ol li {
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.6em;
}
.ps-document p {
  margin-bottom: 15px;
}
.ps-document p strong {
  color: var(--color-heading);
}

figure {
  margin: 0;
}

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

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
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: 12px;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  color: #fff;
  border: 1px solid #fff;
}
.list--social li a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
}
.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 a.facebook {
  background-color: #3b5998;
}
.list--social li a.facebook i {
  color: #ffffff;
}
.list--social li a.twitter {
  background-color: #0084b4;
}
.list--social li a.twitter i {
  color: #ffffff;
}
.list--social li a.google-plus {
  background-color: #FF0000;
}
.list--social li a.google-plus i {
  color: #ffffff;
}
.list--social li a.instagram i {
  color: #C32AA3;
}
.list--social li:last-child {
  margin-right: 0;
}
.list--social.simple li {
  margin-right: 0;
}
.list--social.simple li a {
  width: 30px;
  height: 30px;
  border: none;
  background-color: transparent;
}
.list--social.square li {
  margin-right: 10px;
}
.list--social.square li a {
  width: 85px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  border: none;
}

.list--social-color {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list--social-color li {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
}
.list--social-color li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  width: 38px;
  height: 38px;
  color: #ffffff;
}
.list--social-color li a.facebook {
  background-color: #1b4e9b;
}
.list--social-color li a.facebook:hover {
  background-color: #296fda;
}
.list--social-color li a.twitter {
  background-color: #00aeef;
}
.list--social-color li a.twitter:hover {
  background-color: #3dcaff;
}
.list--social-color li a.google-plus {
  background-color: #cc0000;
}
.list--social-color li a.google-plus:hover {
  background-color: #ff1a1a;
}
.list--social-color li a.linkedin {
  background-color: #2d567f;
}
.list--social-color li a.linkedin:hover {
  background-color: #417cb7;
}
.list--social-color li a.feed {
  background-color: #f86a02;
}
.list--social-color li a.feed:hover {
  background-color: #fe9549;
}

.list--checked li {
  margin-bottom: 20px;
}
.list--checked li a {
  position: relative;
  display: block;
  padding-left: 30px;
  font-size: 14px;
  color: #313131;
}
.list--checked li a:before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 20px;
  height: 20px;
  border: solid 1px #8d8d8d;
  transition: all 0.4s ease;
}
.list--checked li a:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 8px;
  color: #fff;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  visibility: hidden;
  opacity: 0;
}
.list--checked li a:hover:before {
  background-color: var(--color-1st);
  border-color: var(--color-1st);
}
.list--checked li a:hover:after {
  visibility: visible;
  opacity: 1;
}
.list--checked li.current a:before {
  background-color: var(--color-1st);
  border-color: var(--color-1st);
}
.list--checked li.current a:after {
  visibility: visible;
  opacity: 1;
}
.list--checked.list--checked-circle li a:before {
  border-radius: 50%;
}
.list--checked.list--checked-circle li a:hover:before {
  background-color: #a7a7a7;
  border-color: #a7a7a7;
}

.list--arrow a {
  position: relative;
  display: block;
  padding-left: 15px;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #555555;
}
.list--arrow a:before {
  content: "\F105";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-family: FontAwesome;
}
.list--arrow a:hover {
  color: var(--color-1st);
}
.list--arrow a:hover .circle {
  background-color: var(--color-2nd);
  border-color: var(--color-2nd);
}
.list--arrow a:hover .circle:before {
  color: #fff;
  visibility: visible;
  opacity: 1;
}
.list--arrow li {
  margin-bottom: 20px;
}
.list--arrow li.current a {
  color: var(--color-2nd);
}
.list--arrow li.current .circle {
  background-color: var(--color-2nd);
}
.list--arrow li.current .circle:before {
  visibility: visible;
  opacity: 1;
  color: #fff;
}

.list--dot {
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
  list-style-type: none;
}
.list--dot li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  color: #000000;
  line-height: 20px;
}
.list--dot li:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--color-1st);
  border-radius: 50px;
}

.list--plus li {
  margin: 10px 0;
}
.list--plus li a {
  display: block;
  position: relative;
  padding-left: 15px;
  line-height: 20px;
}
.list--plus li a:before {
  content: "+";
  position: absolute;
  top: 0;
  left: 0;
  line-height: 20px;
}

.list--line li a {
  position: relative;
  display: inline-block;
  padding: 5px 0;
  line-height: 20px;
  color: var(--color-text);
}
.list--line li a:before {
  content: "";
  position: absolute;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background-color: #000;
  transition: all 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  transform: scale3d(0, 1, 1);
  transform-origin: 0% 50%;
}
.list--line li a:hover {
  color: var(--color-heading);
}
.list--line li a:hover:before {
  transform-origin: 100% 50%;
  transform: scale3d(1, 1, 1);
}

.menu-toggle,
.btn--hamburger {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50px;
  background-color: rgba(206, 135, 58, 0.6);
}
.menu-toggle span, .menu-toggle:before, .menu-toggle:after,
.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;
}
.menu-toggle span,
.btn--hamburger span {
  left: 15px;
  width: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.menu-toggle:before, .menu-toggle:after,
.btn--hamburger:before,
.btn--hamburger:after {
  content: "";
  left: 15px;
}
.menu-toggle:before,
.btn--hamburger:before {
  top: 16px;
}
.menu-toggle:after,
.btn--hamburger:after {
  bottom: 16px;
}
.menu-toggle:hover,
.btn--hamburger:hover {
  cursor: pointer;
}
.menu-toggle.active span,
.btn--hamburger.active span {
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
}
.menu-toggle.active:before, .menu-toggle.active:after,
.btn--hamburger.active:before,
.btn--hamburger.active:after {
  top: 50%;
  bottom: auto;
  width: 20px;
  transform-origin: 50% 50%;
  background-color: #fc354c;
}
.menu-toggle.active:before,
.btn--hamburger.active:before {
  transform: rotate(45deg);
}
.menu-toggle.active:after,
.btn--hamburger.active:after {
  transform: rotate(-45deg);
}
@media (max-width: 1199px) {
  .menu-toggle,
.btn--hamburger {
    display: inline-block;
  }
}

.btn--custom,
button.btn--custom {
  display: inline-block;
  padding: 8px 1.2em;
  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-2nd);
}
.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;
}
.checkbox--circle label {
  font-size: 20px;
  font-weight: 600;
  color: #555;
}
.checkbox--circle label:before {
  border-radius: 50%;
  border-color: #595959;
}
.checkbox--circle input[type=checkbox]:checked ~ label:before {
  background-color: transparent;
}
.checkbox--circle input[type=checkbox]:checked ~ label:after {
  background-color: var(--color-1st);
  border-radius: 50%;
  border: none;
  width: 14px;
  height: 14px;
  top: 3px;
  left: 3px;
}
.checkbox--inline {
  display: inline-block;
  margin-bottom: 1rem;
}
.checkbox--color {
  margin-right: 1rem;
}
.checkbox--color > label {
  margin-bottom: 0;
  width: 20px;
  height: 20px;
  padding-left: 0;
  background-color: transparent;
  border-radius: 50%;
  transition: all 0.4s ease;
}
.checkbox--color > label:before {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  border-radius: 50%;
}
.checkbox--color > label:after {
  display: none !important;
}
.checkbox--color input[type=checkbox]:checked ~ label {
  background-color: transparent;
}
.checkbox--color input[type=checkbox]:checked ~ label:before {
  background-color: transparent;
  border: 1px solid #ccc;
}
.checkbox--size {
  margin-right: 1rem;
}
.checkbox--size > label {
  margin-bottom: 0;
  padding: 8px 20px;
  border: none;
  color: #222222;
  background-color: #f6f6f6;
  border-radius: 0;
  transition: all 0.4s ease;
}
.checkbox--size > label:before, .checkbox--size > label:after {
  display: none;
}
.checkbox--size input[type=checkbox]:checked ~ label {
  color: #ffffff;
  background-color: #a7a7a7;
}

.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;
}
.dropdown.open ul {
  visibility: visible;
  opacity: 1;
}

.variant {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  z-index: 10;
  border: 1px solid #999;
  cursor: pointer;
}
.variant__tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  padding: 5px 10px;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 2px;
  color: #ffffff;
  font-size: 12px;
  transition: all 0.4s ease;
  visibility: hidden;
  opacity: 0;
}
.variant__tooltip:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 0;
  width: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #000;
}
.variant:last-child {
  margin-right: 0;
}
.variant.variant--size {
  position: relative;
  vertical-align: top;
  border: none;
  background-color: #f1f1f1;
  transition: all 0.4s ease;
}
.variant.variant--size .variant__size {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-text);
  font-size: 12px;
}
.variant.variant--size.active .variant__size {
  color: var(--color-heading);
}
.variant.variant--size:hover {
  background-color: var(--color-1st);
}
.variant.variant--size:hover .variant__size {
  color: #ffffff;
}
.variant.variant--color {
  border: 1px solid #ccc;
}
.variant.variant--color:before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.variant.variant--color.color--1:before {
  background-color: #70849d;
}
.variant.variant--color.color--2:before {
  background-color: #cfa58f;
}
.variant.variant--color.color--3:before {
  background-color: #f06292;
}
.variant.variant--image img {
  border-radius: 50%;
  max-width: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.variant:hover .variant__tooltip {
  visibility: visible;
  opacity: 1;
}
.variant.active:before {
  border-color: #000;
}
.variant.active .variant__tooltip {
  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__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  z-index: 10;
}
.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);
}
.collection:hover .collection__overlay {
  background-color: rgba(0, 0, 0, 0.25);
}
.collection .content .title {
  margin: 10px 0;
  text-align: center;
}
.collection .content .title a {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-1st);
  text-align: center;
  text-transform: uppercase;
}

.post .post__wrapper {
  transition: all 0.3s ease-in-out;
  background: #f5f5f5;
}
.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;
}
.post--detail .post__block {
  margin-bottom: 30px;
}
.post--detail .post__block h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.post--detail .post__block .left {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .post--detail .post__header {
    padding: 30px 0;
  }
  .post--detail .post__header h1 {
    font-size: 30px;
  }
  .post--detail .post__block {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
  }
  .post--detail .post__block > * {
    flex-basis: 50%;
  }
  .post--detail .post__block .left {
    margin-bottom: 0;
    padding-right: 50px;
  }
  .post--detail .post__block .left img {
    width: 100%;
  }
  .post--detail .post__block.reverse {
    flex-flow: row-reverse nowrap;
  }
  .post--detail .post__block.reverse .left {
    padding-right: 0;
    text-align: right;
  }
  .post--detail .post__block.reverse .right {
    padding-right: 50px;
  }
}
.post--detail figure.image {
  background: #eee;
}
.post--detail figure.image figcaption {
  padding: 5px;
}

.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--custom {
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb--custom li {
  position: relative;
  display: inline-block;
  color: var(--color-heading);
  font-size: 14px;
}
.breadcrumb--custom li:before {
  content: "/";
  margin: 0 5px;
}
.breadcrumb--custom li a {
  color: var(--color-text);
  font-size: 14px;
}
.breadcrumb--custom li a:hover {
  color: var(--color-heading);
}
.breadcrumb--custom li:first-child:before {
  display: none;
}

.block--contact-info {
  margin-bottom: 30px;
}
.block--contact-info h3 {
  font-size: 18px;
  text-transform: uppercase;
}
.block--contact-info .block__image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .block--contact-info h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 992px) {
  .block--contact-info {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
  }
  .block--contact-info > * {
    flex-basis: 100%;
    max-width: 50%;
  }
  .block--contact-info .block__image {
    margin-bottom: 0;
  }
  .block--contact-info .block__info {
    padding-left: 60px;
  }
}

.block--method {
  margin-bottom: 30px;
}
.block--method .block__message {
  padding: 10px 15px;
  border-radius: 4px;
  background-color: #f9f9f9;
}
.block--method .block__message p {
  margin: 0;
}
.block--method .block__header .radio label {
  font-weight: 600;
  color: var(--color-heading);
  padding-left: 40px;
  line-height: 30px;
}
.block--method .block__header .radio label:before {
  width: 30px;
  height: 30px;
}
.block--method .block__header .radio label:after {
  width: 20px;
  height: 20px;
}
.block--method .block__header .radio input[type=checkbox]:checked ~ label:after {
  width: 20px;
  height: 20px;
  top: 5px;
  left: 5px;
}
.block--method .block__content {
  display: none;
  padding: 10px;
}
.block--method.active .block__content {
  display: block;
}
@media screen and (min-width: 768px) {
  .block--method {
    padding: 10px 10px 10px 40px;
  }
}

.block--shipment-information {
  padding: 20px;
}
.block--shipment-information figure {
  border: 1px dashed var(--color-heading);
  margin-bottom: 20px;
  padding: 20px;
}
.block--shipment-information figure p strong {
  display: block;
  flex-basis: 120px;
  color: var(--color-heading);
  text-transform: uppercase;
}
.block--shipment-information figure p:last-child {
  margin-bottom: 0;
}
.block--shipment-information .block__footer .btn--custom {
  min-width: 175px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .block--shipment-information figure p {
    display: flex;
    flex-flow: row nowrap;
  }
  .block--shipment-information figure p span {
    padding-left: 1em;
  }
}

.block--order-step {
  position: relative;
  z-index: 10;
}
.block--order-step:before {
  content: "";
  position: absolute;
  top: 50px;
  left: 50%;
  width: 100%;
  height: 3px;
  background-color: #cecece;
  z-index: -1;
}
.block--order-step img.img-active {
  display: none;
}
.block--order-step .block__header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #fff;
  border: 3px solid #cecece;
}
.block--order-step .block__content {
  padding-top: 10px;
  text-align: center;
}
.block--order-step .block__content p {
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.3em;
  color: var(--color-heading);
}
.block--order-step .block__content span {
  color: var(--color-text);
}
.block--order-step:last-child:before {
  display: none;
}
.block--order-step.active:before {
  background-color: var(--color-1st);
}
.block--order-step.active img {
  display: none;
}
.block--order-step.active img.img-active {
  display: block;
}
.block--order-step.active .block__header {
  border-color: var(--color-1st);
}
.block--order-step.active .block__content p {
  color: var(--color-1st);
}

.block--order-steps {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
}
.block--order-steps > .block__header {
  padding-bottom: 30px;
}
.block--order-steps > .block__header a {
  color: var(--color-1st);
  font-weight: 400;
  font-size: 16px;
}
.block--order-steps > .block__header a i {
  margin-right: 0.25em;
}
@media screen and (min-width: 768px) {
  .block--order-steps > .block__content {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .block--order-steps > .block__content .block--order-step {
    flex-basis: 20%;
  }
}
@media screen and (max-width: 767px) {
  .block--order-steps .block--order-step:before {
    display: none;
  }
  .block--order-steps > .block__content {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
  .block--order-steps > .block__content .block--order-step {
    flex-basis: 33.3333%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 467px) {
  .block--order-steps .block--order-step:before {
    display: none;
  }
  .block--order-steps > .block__content {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
  .block--order-steps > .block__content .block--order-step {
    flex-basis: 50%;
    margin-bottom: 10px;
  }
}

.block--order-summary .table--cart .total span {
  color: var(--color-heading);
}
.block--order-summary .block__header h4 {
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.block--order-summary .block__header h4:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: var(--color-heading);
}
.block--order-summary .block__header h5 {
  color: var(--color-1st);
  font-weight: 400;
  font-size: 18px;
}

.block--lookbook-large {
  text-align: center;
}
.block--lookbook-large h3 {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 20px;
}
.block--lookbook-large img {
  margin-bottom: 20px;
}
.block--lookbook-large p {
  max-width: 750px;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .block--lookbook-large h3 {
    margin-bottom: 50px;
    font-size: 30px;
  }
  .block--lookbook-large img {
    margin-bottom: 50px;
  }
}

.block--lookbook {
  max-width: 1000px;
  margin: 0 auto;
}
.block--lookbook .block__image-left {
  padding-bottom: 30px;
}
.block--lookbook .block__image-left span {
  margin-bottom: 20px;
}
.block--lookbook .block__header {
  padding: 20px;
  background-color: #f9f9f9;
  text-align: center;
}
.block--lookbook .block__header span {
  display: block;
}
.block--lookbook .block__content {
  padding: 15px 30px;
}
@media screen and (min-width: 992px) {
  .block--lookbook .block__image-left {
    position: relative;
    padding-bottom: 0;
  }
  .block--lookbook .block__image-left span {
    position: absolute;
    bottom: 0;
    right: 100%;
    margin-bottom: 0;
    transform: rotate(-90deg) translate(35%, 75%);
    transform-origin: 50% 50%;
    font-size: 20px;
    font-weight: 700;
  }
  .block--lookbook .block__header {
    display: flex;
    padding: 50px;
  }
  .block--lookbook .block__header > * {
    flex-basis: 100%;
  }
  .block--lookbook .block__header > * img {
    width: 100%;
  }
  .block--lookbook .block__header .block__image-left {
    padding-right: 25px;
  }
  .block--lookbook .block__header .block__image-right {
    padding-left: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .block--lookbook .block__header {
    padding: 80px;
  }
  .block--lookbook .block__content {
    padding: 30px 80px;
  }
}

.block--review .block__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.block--review .block__header img {
  border: 1px solid #ddd;
  border-radius: 50%;
}
.block--review .block__header h5 {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6em;
  color: var(--color-heading);
}
.block--review .block__header .block__info {
  padding-left: 15px;
}
.block--review .block__content {
  padding-top: 10px;
}

.block--product-reviews > .block__header {
  padding-bottom: 15px;
}
.block--product-reviews > .block__header p {
  color: var(--color-heading);
  font-weight: 600;
}
.block--product-reviews > .block__header p i {
  margin-right: 0.5em;
  font-size: 16px;
}
.block--product-reviews > .block__header p span {
  color: var(--color-heading);
  font-weight: inherit;
}
.block--product-reviews .block--review {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e5e5e5;
}
.block--product-reviews .block--review:last-child {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 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 {
  color: #fff;
}
.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: #fff;
  text-transform: uppercase;
}
.widget--footer .widget__title:after {
  content: "";
  width: 100px;
  height: 2px;
  background: #fff;
  display: block;
  margin-top: 5px;
}
.widget--footer .widget__links li {
  margin-bottom: 0.5em;
}
.widget--footer .widget__links li a {
  display: block;
  line-height: 20px;
  font-size: 13px;
  color: #fff;
}
.widget--footer .widget__links li:last-child {
  margin-bottom: 0;
}
.widget--footer .widget__links li:before {
  content: "\F10C";
  font-family: "FontAwesome";
  float: left;
  margin-right: 5px;
  color: #fff;
  font-size: 8px;
  margin-top: 3px;
}

footer .widget__title {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 23px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}
footer .widget__title:after {
  content: "";
  width: 100px;
  height: 2px;
  background: #fff;
  display: block;
  margin-top: 5px;
}

.widget--shop .widget__title {
  position: relative;
  margin-bottom: 25px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
  color: #000;
}
.widget--shop .widget__links li a {
  font-weight: 500;
  font-size: 16px;
}

.widget--sizes .widget__content a {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.widget--tags .list--tags li {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
}
.widget--tags .list--tags li a {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 50px;
  font-size: 14px;
  border: 1px solid var(--color-heading);
}
.widget--tags .list--tags li a:hover {
  border-color: var(--color-1st);
}

.widget--colors .color-swatch li {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  margin-bottom: 5px;
}
.widget--colors .color-swatch li label {
  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);
}

#nonlinear {
  width: 96%;
  margin: 10px auto;
}

.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: #fe9931;
}
.product .badge--hot {
  background-color: var(--color-danger);
}
.product .badge--out-of-stock {
  background-color: #999;
}
.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 {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: -20px;
  left: 0;
  transition: all 0.25s ease;
  width: 100%;
}
.product .product__actions li {
  margin-bottom: 0px;
  margin: 0 auto;
}
.product .product__actions li a {
  display: inline-block;
  padding: 10px 15px;
  line-height: 14px;
  text-align: center;
  color: #ffffff;
  border-radius: 4px;
  background-color: var(--color-1st);
  border: 1px solid transparent;
  font-size: 14px;
}
.product .product__actions li a.detail-button {
  background: none;
  border: 1px solid #ddd;
  color: var(--color-text);
}
.product .product__actions li a:hover {
  background-color: var(--color-heading);
  color: #ffffff;
}
.product .product__actions li a:hover i {
  color: var(--color-1st);
}
@media screen and (max-width: 480px) {
  .product .product__actions li a {
    font-size: 12px;
    padding: 10px 10px;
  }
}
@media screen and (max-width: 320px) {
  .product .product__actions li a {
    font-size: 12px;
    padding: 5px 5px;
  }
}
.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 .product__size {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  color: #ffffff;
  visibility: hidden;
  opacity: 0;
  z-index: 12;
  transition: all 0.25s ease;
}
.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__thumbnail:hover .product__size {
  visibility: visible;
  opacity: 1;
}
.product .product__title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3em;
  color: var(--color-1st);
}
.product .product__title:hover {
  color: var(--color-2nd);
}
@media screen and (max-width: 320px) {
  .product .product__title {
    font-size: 13px;
  }
}
.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: center;
}
.product .product__price {
  margin-bottom: 5px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #696969;
}
.product .product__price ins {
  text-decoration: none;
  color: var(--color-danger);
}
.product .product__price ins span {
  font-weight: bold;
}
.product .product__price del {
  margin-right: 5px;
  color: var(--color-text);
}
.product .product__price.sale ins {
  color: var(--color-danger);
}
.product .product__color .radio--color {
  margin-right: 0px;
}
.product .product__color .radio--color:last-child {
  margin-right: 0;
}
.product.product--inside {
  position: relative;
}
.product.product--inside .product__thumbnail:hover > img {
  display: none;
}
.product.product--inside .product__thumbnail:hover > img.product__img {
  display: block;
}
.product.product--inside .product__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 5rem 1rem;
  text-align: center;
}
.product.product--inside .product__title {
  font-size: 1.6rem;
}
.product.product--inside .countdown {
  margin-bottom: 1rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.product.product--inside .countdown li {
  background-color: var(--color-heading);
  text-align: center;
  padding: 10px 10px;
  border-radius: 50px;
  min-width: 60px;
}
.product.product--inside .countdown li span {
  color: #ffffff;
}
.product.product--inside .countdown li p {
  margin-bottom: 0;
}
@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--cart {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.product--cart .product__title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-heading);
}
.product--cart .product__title:hover {
  color: var(--color-1st);
}
.product--cart .product__thumbnail {
  flex-basis: 110px;
}
.product--cart .product__content {
  padding-left: 15px;
}
.product--cart .product__content small {
  font-size: 14px;
}

.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__video a {
  vertical-align: middle;
}
.product--detail .product__video a:hover.btn--black {
  background-color: var(--color-1st);
  border-color: var(--color-1st);
}
.product--detail .product__video i {
  font-size: 20px;
  font-weight: bold;
  vertical-align: middle;
}
.product--detail .product__badge {
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 30;
  padding: 0 5px;
  background-color: #fe9931;
}
.product--detail .product__badge i {
  font-style: normal;
  color: #ffffff;
  text-align: center;
  line-height: 1.2em;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
}
.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: 27px;
  font-weight: 600;
}
.product--detail .product__price p span {
  font-weight: inherit;
  color: var(--color-danger);
}
.product--detail .product__price.sale {
  color: var(--color-heading);
}
.product--detail .product__price.sale del {
  margin-right: 20px;
  font-size: 16px;
  color: var(--color-heading);
}
.product--detail .product__price.out-stock span {
  position: relative;
  font-size: 14px;
  color: var(--color-heading);
  margin-left: 40px;
}
.product--detail .product__price.out-stock span:before {
  position: relative;
  top: -2px;
  display: inline-block;
  content: "\E935";
  font-family: Linearicons;
  vertical-align: middle;
  margin-right: 6px;
  color: #ffffff;
  padding: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 8px;
  background-color: #999;
}
.product--detail .product__attribute {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
.product--detail .product__attribute > * {
  flex-basis: 100%;
}
.product--detail .product__attribute label {
  margin-bottom: 0;
  max-width: 60px;
}
.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__modal {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product--detail .product__modal a {
  text-decoration: underline;
}
.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__links {
  margin-bottom: 3rem;
}
.product--detail .product__links a {
  display: inline-block;
  margin-right: 20px;
  font-weight: 600;
  color: var(--color-heading);
}
.product--detail .product__links a:hover {
  color: var(--color-1st);
}
.product--detail .product__specification {
  margin-bottom: 2rem;
  padding-top: 20px;
  border-top: 1px solid #eaeaea;
}
.product--detail .product__specification p {
  color: var(--color-heading);
}
.product--detail .product__specification p strong {
  margin-right: 5px;
  text-transform: uppercase;
}
.product--detail .product__specification p a {
  color: var(--color-text);
  font-size: 15px;
}
.product--detail .product__specification p a:after {
  content: ",";
  padding-right: 3px;
}
.product--detail .product__specification p a:first-child {
  padding-left: 5px;
}
.product--detail .product__specification p a:last-child:after {
  display: none;
}
.product--detail .product__specification p a:hover {
  color: var(--color-1st);
}
.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__bundle {
  margin-bottom: 2rem;
}
.product--detail .product__bundle h4 {
  font-weight: 600;
  font-size: 2.1rem;
}
.product--detail .product__bundle .form-group {
  margin-bottom: 15px;
}
.product--detail .product__bundle p {
  margin-bottom: 15px;
}
.product--detail .product__bundle p strong {
  font-weight: 600;
  color: #696969;
}
.product--detail .product__bundle .checkbox {
  margin-bottom: 10px;
}
.product--detail .product__bundle-item p {
  margin-bottom: 0;
}
.product--detail .product__bundle-item img {
  margin-bottom: 10px;
  max-width: 100px;
}
.product--detail .product__bundle-item span {
  padding: 0 5px;
}
@media (max-width: 479px) {
  .product--detail .product__bundle-item img {
    max-width: 50px;
  }
}
.product--detail .product__group img {
  max-width: 80px;
}
.product--detail .product__group .form-group--number-2 {
  min-width: 60px;
  max-width: 100px;
  display: inline-block;
}
.product--detail .product__group .form-group--number-2 .form-control {
  border-radius: 0;
  border-color: #bbb;
  max-width: 60px;
  height: 36px;
}
.product--detail .product__group table thead tr th {
  border: none;
  padding: 15px 20px;
  background-color: #efefef;
}
.product--detail .product__group table thead tr th:last-child {
  text-align: right;
}
.product--detail .product__group table tr td {
  padding: 10px 20px;
  border: none;
}
.product--detail .product__group table tr td a {
  display: block;
  color: var(--color-heading);
}
.product--detail .product__group table tr td a:hover {
  color: var(--color-1st);
}
.product--detail .product__group table tr td span {
  color: var(--color-heading);
}
.product--detail .product__group table tr td span del {
  color: var(--color-text);
  margin-left: 10px;
}
.product--detail .product__group table tr td:nth-child(2) {
  min-width: 230px;
}
.product--detail .product__group table tr td:last-child {
  text-align: right;
}
.product--detail .gallery__item {
  display: block;
}
.product--detail .product__variations {
  margin-bottom: 2rem;
  padding-bottom: 20px;
}
.product--detail .product__variations figure {
  margin-bottom: 30px;
}
.product--detail .product__variations figure figcaption {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--color-heading);
}
.product--detail .product__variations figure:last-child {
  margin-bottom: 0;
}
.product--detail .product__rating {
  display: flex;
  width: 100%;
}
.product--detail .product__rating .br-wrapper {
  margin-right: 10px;
  display: inline-block;
}
.product--detail .product__rating .br-wrapper a {
  font-size: 12px;
}
.product--detail .product__rating span {
  color: var(--color-text);
  font-size: 14px;
}
.product--detail .product__sku {
  display: block;
  margin-bottom: 20px;
  font-size: 12px;
  color: #bbbbbb;
}
.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 .product__video {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 20;
}
.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__review h4 {
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 18px;
  color: var(--color-heading);
}
.product--detail .product__content {
  padding-top: 50px;
}
.product--detail .product__content blockquote {
  padding: 30px 30px;
  font-size: 14px;
  line-height: 1.714em;
  font-style: italic;
  border-width: 0 0 0 4px;
  border-style: solid;
  border-color: var(--color-1st);
  color: #868686;
  background-color: #f3f4f6;
}
.product--detail.has-background .product__background {
  padding: 100px 0;
  background-color: #f2f1f0;
}
.product--detail.has-background .product__nav {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  padding-bottom: 50px;
}
.product--detail.has-background .product__content .tab-list {
  border-top: none;
}
@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: 20px;
  }
  .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__review h4 {
    font-size: 24px;
  }
  .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;
  }
}
@media screen and (max-width: 479px) {
  .product--detail .product__modal {
    padding-bottom: 10px;
  }
}

.table--oriented .table__sub-toggle {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transform-style: preserve-3d;
}
.table--oriented .table__sub-toggle:before, .table--oriented .table__sub-toggle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background-color: var(--color-text);
}
.table--oriented .table__sub-toggle:before {
  transform: translateX(-50%);
}
.table--oriented .table__sub-toggle:after {
  transform: translateX(-50%) rotate(90deg);
}
.table--oriented .table__sub-toggle.active:after {
  display: none;
}
.table--oriented .table__th-title {
  font-weight: 600;
  color: var(--color-heading);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.table--oriented .table__item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}
.table--oriented .table__item .table__label {
  font-weight: 500;
  line-height: 1.6em;
}
.table--oriented .table__th-inner {
  border-bottom: 1px solid var(--color-border);
  transition: all 0.4s ease;
}
.table--oriented .table__th-inner .table__list {
  display: none;
}
.table--oriented .table__th-inner:last-child {
  border-bottom: none;
}
.table--oriented .table__th-inner.active .table__sub-toggle:after {
  display: none;
}
.table--oriented .table__th-inner.active .table__list {
  display: block;
}
.table--oriented tbody {
  display: none;
}
.table--oriented.is-mobile thead tr {
  display: flex;
  flex-flow: column wrap;
}
.table--oriented.is-mobile thead tr th {
  width: 100%;
}
.table--oriented.is-mobile thead tr .table__th-empty {
  display: none;
}
@media (min-width: 768px) {
  .table--oriented .table__list {
    display: none;
    opacity: 0;
    transform: translate3d(1, 1, 0);
  }
  .table--oriented .table__sub-toggle {
    display: none;
  }
  .table--oriented tbody {
    display: table-row-group;
  }
}

.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 .received {
  color: #8a8a8a;
}
.table--orders .highlight {
  color: #078c97;
}
.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;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  overflow: hidden;
}
#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #ffffff;
  z-index: 999;
}
#loader-wrapper .loader-section.section-left {
  left: 0;
}
#loader-wrapper .loader-section.section-right {
  right: 0;
}

.loaded #loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}
.loaded #loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.half-circle-spinner, .half-circle-spinner * {
  box-sizing: border-box;
}

.half-circle-spinner {
  width: 60px;
  height: 60px;
  margin: 20px auto;
  border-radius: 100%;
  position: relative;
}

.half-circle-spinner .circle {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: calc(60px / 10) solid transparent;
}

.half-circle-spinner .circle.circle-1 {
  border-top-color: var(--color-1st);
  -webkit-animation: half-circle-spinner-animation 1s infinite;
          animation: half-circle-spinner-animation 1s infinite;
}

.half-circle-spinner .circle.circle-2 {
  border-bottom-color: var(--color-1st);
  -webkit-animation: half-circle-spinner-animation 1s infinite alternate;
          animation: half-circle-spinner-animation 1s infinite alternate;
}

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

@keyframes half-circle-spinner-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ps-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  background-color: rgba(var(--color-heading), 0.7);
  transition: all 0.4s ease;
}
.ps-modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem 4rem;
  z-index: 10;
  border-radius: 3px;
  max-width: 945px;
  width: 100%;
  background-color: #fff;
}
.ps-modal__close {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #5e6b9d;
  transform: translate(50%, -50%);
}
.ps-modal__close i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #ffffff;
}
.ps-modal.active {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 991px) {
  .ps-modal__container {
    max-width: 90%;
  }
  .ps-modal__close {
    transform: translate(0, 0);
    width: 30px;
    height: 30px;
    background-color: transparent;
  }
  .ps-modal__close i {
    color: #5e6b9d;
  }
}
@media (max-width: 767px) {
  .ps-modal {
    overflow: auto;
  }
  .ps-modal__container {
    position: relative;
    top: 0;
    left: 0;
    margin: 3rem auto;
    overflow: auto;
    transform: translate(0, 0);
  }
}
@media (max-width: 479px) {
  .ps-modal__container {
    max-width: 300px;
  }
}

.ps-popup {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99999;
  transition: all 0.4s ease;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
}
.ps-popup__content {
  position: relative;
  max-width: 830px;
  width: 100%;
  padding: 67px 40px;
  transition: transform 0.4s ease;
}
.ps-popup__close {
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  border: none;
  border-radius: 0;
}
.ps-popup__close:before, .ps-popup__close:after {
  background-color: #000;
}
.ps-popup__close:hover:before, .ps-popup__close:hover:after {
  background-color: var(--color-danger);
}
.ps-popup.active {
  visibility: visible;
  opacity: 1;
  transition-delay: 0.5s;
}
@media (max-width: 991px) {
  .ps-popup {
    padding: 100px 30px 20px;
  }
  .ps-popup .ps-popup__content {
    position: relative;
    top: 0;
    left: 0;
    max-width: 800px;
    margin: 0 auto;
  }
  .ps-popup.active .ps-popup__content {
    transform: translate(0, 0);
  }
}
@media (max-width: 479px) {
  .ps-popup {
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .ps-popup .ps-popup__content {
    padding: 50px 20px;
  }
}

.ps-accordion {
  margin-bottom: 20px;
}
.ps-accordion__header {
  position: relative;
  background-color: #f6f6f8;
  padding: 10px 40px 10px 20px;
  cursor: pointer;
}
.ps-accordion__header p {
  margin-bottom: 0;
  line-height: 20px;
  font-weight: 700;
  color: var(--color-heading);
}
.ps-accordion__header span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 40px;
  height: 40px;
  background-color: #222;
}
.ps-accordion__header span i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}
.ps-accordion__content {
  padding: 20px;
}

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

.support-online {
  position: fixed;
  z-index: 9;
  left: 10px;
  bottom: 35px;
}

.support-online a {
  position: relative;
  margin: 20px 10px;
  text-align: left;
  width: 40px;
  height: 40px;
}

.support-content {
  display: none;
}

.support-online i {
  width: 36px;
  height: 36px;
  background: #fff;
  color: var(--color-1st);
  border-radius: 100%;
  font-size: 20px;
  text-align: center;
  line-height: 1.9;
  position: relative;
  z-index: 999;
  margin-top: 2px;
  margin-left: 2px;
}

.support-online a span {
  border-radius: 2px;
  text-align: center;
  background: #67b634;
  padding: 9px;
  display: none;
  width: 180px;
  margin-left: 10px;
  position: absolute;
  color: #ffffff;
  z-index: 999;
  top: 0px;
  left: 40px;
  transition: all 0.2s ease-in-out 0s;
  -webkit-animation: headerAnimation 0.7s 1;
  animation: headerAnimation 0.7s 1;
}

.support-online a:hover span {
  display: block;
}

.support-online a {
  display: inline;
}

.support-online a span:before {
  content: “”;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #67b634 transparent transparent;
  position: absolute;
  left: -10px;
  top: 10px;
}

.kenit-alo-circle-fill {
  width: 60px;
  height: 60px;
  top: -10px;
  position: absolute;
  transition: all 0.2s ease-in-out;
  border-radius: 100%;
  border: 2px solid transparent;
  transition: all 0.5s;
  background-color: rgba(255, 182, 0, 0.8);
  opacity: 0.75;
  right: -10px;
}

.kenit-alo-circle {
  width: 50px;
  height: 50px;
  top: -5px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid rgba(30, 30, 30, 0.4);
  opacity: 0.1;
  border-color: #ff9a09;
  opacity: 0.5;
}

.support-online .btn-support {
  cursor: pointer;
}

.mobile-hotline-fixed {
  display: block;
  position: fixed;
  top: auto;
  bottom: 15px;
  left: 20px;
  z-index: 999999;
}
.mobile-hotline-fixed .mobile-call {
  display: block;
  position: relative;
  padding: 10px 5px 10px 35px;
  background: var(--color-1st);
  border-radius: 20px;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}
.mobile-hotline-fixed .mobile-call .btn-support {
  position: absolute;
  top: -20px;
  left: -10px;
}

.wrap-face-zalo {
  position: fixed;
  right: 30px;
  bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9;
}
.wrap-face-zalo .btn-zalo {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  margin-top: 25px;
}
.wrap-face-zalo .btn-zalo i {
  top: 0;
  right: 0;
  display: flex;
  display: -ms-flex;
  align-items: center;
  -ms-flex-align: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-1st);
  position: relative;
  z-index: 9999;
}
.wrap-face-zalo .btn-zalo i:before {
  color: #fff;
  font-size: 20px;
  position: relative;
  left: 12px;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.kenit-alo-circle {
  width: 50px;
  height: 50px;
  top: -5px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid rgba(17, 130, 252, 0.8);
  opacity: 0.1;
  border-color: #1182FC;
  opacity: 0.5;
}

.kenit-alo-circle {
  border: 2px solid #2a8fac;
  border-color: #2a8fac;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.kenit-alo-circle-fill {
  width: 60px;
  height: 60px;
  top: -10px;
  position: absolute;
  transition: all 0.2s ease-in-out;
  border-radius: 100%;
  border: 2px solid transparent;
  transition: all 0.5s;
  background-color: rgba(17, 130, 252, 0.45);
  opacity: 0.75;
  right: -10px;
}

.kenit-alo-circle-fill {
  background-color: rgba(116, 191, 92, 0.47);
}

/*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;
}
.cart--mini:hover .cart__content {
  transform: translate(0, 0px);
  visibility: visible;
  opacity: 1;
}

.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: var(--color-1st);
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-heading);
  height: 50px;
  width: 80px;
  padding: 0 20px;
}
.form--primary-search button i {
  color: #fff;
}

.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--login .form__password {
  position: relative;
}
.form--login .form__password a {
  display: block;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .form--login .form__password {
    position: relative;
  }
  .form--login .form__password a {
    display: inline-block;
    vertical-align: top;
    margin-top: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
  }
}

.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);
}

.form--visa-method {
  padding: 10px 15px;
  background-color: #f9f9f9;
}

.form--edit-shipment-information {
  padding: 10px 15px;
}
.form--edit-shipment-information .form-control {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .form--edit-shipment-information {
    padding: 20px 30px;
  }
}

.form--review-product .form__submit button {
  min-width: 175px;
}

.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__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1200px;
  width: 100%;
  padding: 0 3rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.panel--search.active {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.panel--search.active:before {
  transform: scale3d(1, 1, 1);
  transform-origin: 50% 0%;
}
.panel--search.active > .ps-btn--close {
  visibility: visible;
  opacity: 1;
  transform: scale(1, 1) rotate(180deg);
  transition-delay: 0.75s;
}
.panel--search.active .ps-form--primary-search {
  transform: translateY(0);
  transition-delay: 0.35s;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 479px) {
  .panel--search {
    padding-right: 30px;
  }
  .panel--search__content {
    padding: 0 1.5rem;
  }
}

.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;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.section--homepage .section__header:before, .section--homepage .section__header:after {
  background-color: var(--color-1st);
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  width: 20%;
}
.section--homepage .section__header:before {
  left: 0;
}
.section--homepage .section__header:after {
  right: 0;
}
.section--homepage .section__header h3, .section--homepage .section__header .title {
  margin-bottom: 0.25em;
  font-size: 32px;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--color-1st);
}
.section--homepage .section__header p {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .section--homepage .section__header {
    margin-bottom: 15px;
  }
  .section--homepage .section__header h3 {
    font-size: 24px;
  }
  .section--homepage .section__header:before {
    left: -30px;
  }
  .section--homepage .section__header:after {
    right: -30px;
  }
}
@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: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.shop--sidebar .shop__header .panel-trigger {
  padding: 10px 30px;
}
.shop--sidebar .shop__left {
  display: none;
  margin-top: 20px;
}
.shop--sidebar .shop__left .widget--shop {
  margin-bottom: 20px;
  padding: 25px 20px;
  background-color: #f5f5f5;
}
.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: flex;
    flex-flow: row nowrap;
  }
}
@media screen and (min-width: 1200px) {
  .shop--sidebar {
    display: flex;
    flex-flow: row nowrap;
    padding-top: 50px;
  }
  .shop--sidebar .shop__header {
    padding-bottom: 30px;
  }
  .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--contact-us .section__header {
  padding: 30px 0 20px;
  text-align: center;
}
.section--contact-us .section__header h1 {
  font-size: 30px;
  text-transform: uppercase;
}
.section--contact-us .block--contact-info {
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .section--contact-us .block--contact-info {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .section--contact-us {
    padding: 0 0 80px;
  }
}

.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: 18px;
  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;
}

/*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;
  }
}

.section--account .list--plus li a {
  font-size: 16px;
}
.section--account .list--plus li.current {
  font-size: 20px;
}
.section--account .section__left h3 {
  margin-bottom: 20px;
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 1em;
  padding-bottom: 5px;
}
.section--account .section__left h3:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: var(--color-heading);
}
.section--account .section__right {
  padding: 0 10px;
}
@media screen and (min-width: 992px) {
  .section--account {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-content: flex-start;
  }
  .section--account > * {
    flex-basis: 100%;
  }
  .section--account .section__left {
    max-width: 270px;
  }
}

/*Others*/
.section--lookbook .block--lookbook-large {
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .section--lookbook .block--lookbook-large {
    margin-bottom: 50px;
  }
}

.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: #282828;
  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: #8a8a8a;
  font-weight: 600;
}
.section--instagram .section__follow-instagram a {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-1st);
  text-transform: uppercase;
}
.section--instagram .section__follow-instagram figure {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.section--instagram .section__follow-instagram figure:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background-color: #fff;
}
@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: 600px;
  }
  .section--instagram .section__follow-instagram h4 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .section--instagram .instagram-images > * {
    flex-basis: calc(100% / 4);
  }
}
@media screen and (min-width: 1366px) {
  .section--instagram .instagram-images > * {
    flex-basis: calc(100% / 6);
  }
}

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

.page--blog, .page--inner {
  padding: 30px 0;
}
.page--blog .page__header, .page--inner .page__header {
  padding-bottom: 30px;
}
@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: 200px;
  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.45);
}
.page--shop .page__hero h1 {
  position: relative;
  z-index: 10;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .page--shop .page__hero h1 {
    font-size: 25px;
  }
}
@media screen and (min-width: 992px) {
  .page--shop .page__hero h1 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .page--shop {
    padding-bottom: 90px;
  }
  .page--shop .page__hero h1 {
    font-size: 35px;
  }
}

.page--product--detail .breadcrumb--custom {
  margin-bottom: 30px;
}
.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;
}

.horizontal-megamenu .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;
}
.horizontal-megamenu .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;
}
.horizontal-megamenu .sub-menu > li {
  display: block;
}
.horizontal-megamenu .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);
}
.horizontal-megamenu .sub-menu > li > a:hover {
  color: var(--color-1st);
}
.horizontal-megamenu .sub-menu > li:last-child a {
  border-bottom: 1px solid #eee;
}
.horizontal-megamenu .sub-menu > li.menu-item-has-children {
  position: relative;
}
.horizontal-megamenu .sub-menu > li.menu-item-has-children > .sub-toggle {
  display: none;
}
.horizontal-megamenu .sub-menu > li.menu-item-has-children > .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px);
}
.horizontal-megamenu .sub-menu > li.menu-item-has-children > .sub-menu:before {
  display: none;
}
.horizontal-megamenu .sub-menu > li.menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.horizontal-megamenu .sub-menu > li:last-child {
  border-bottom: none;
}

@media (min-width: 1201px) {
  .menu {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.menu > li {
  display: inline-block;
  color: #fff;
}
.menu > li.menu-home a i {
  font-size: 25px;
}
.menu > li > a {
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  color: #fff;
  text-transform: uppercase;
  transform-style: preserve-3d;
}
@media (min-width: 1201px) {
  .menu > li > a {
    height: 45px;
    min-width: 45px;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: row;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.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 .mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
}
.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:hover {
  background: var(--color-2nd);
}
.menu > li.current-menu-item {
  background: var(--color-2nd);
}
.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;
}
.menu--mobile > li.has-mega-menu {
  position: relative;
}
.menu--mobile > li.has-mega-menu > .sub-toggle {
  position: absolute;
  top: 5px;
  right: 0;
  width: 40px;
  height: 40px;
  z-index: 20;
  display: inline-block;
}
.menu--mobile > li.has-mega-menu .mega-menu {
  display: none;
}

/*4. MODULES */
.header-general {
  padding: 20px 0;
}
.header-general > .container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.header-general .navigation__center {
  flex: 1 1 0%;
  justify-content: center;
}
.header-general .form--primary-search {
  margin: 0 30px;
}
.header-general .form--primary-search input {
  background: #fff;
}
.header-general .header-hotline {
  height: auto !important;
  width: auto !important;
  margin-left: 20px;
}

@media (min-width: 1201px) {
  .navigation__left {
    width: 262px;
    text-align: 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;
  border-bottom: 1px solid #eaeaea;
}
.header .header-bottom {
  background: var(--color-1st);
}
.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: #ffc107;
  border-radius: 50%;
  font-size: 10px;
  color: #fff;
}
.header .header__actions {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
}
.header .header__actions > * {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  color: var(--color-1st);
}
.header .header__actions > * i {
  font-size: 20px;
}
.header.header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fff;
}
.header.header--sticky .ps-logo img {
  max-height: 50px;
}
@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;
}

.navigation-inner {
  display: flex;
  align-items: center;
}
.navigation-inner .navigation {
  margin-left: 5px;
}

.category-nav {
  position: relative;
  width: 262px;
  min-width: 262px;
  display: flex;
  padding: 0;
  align-items: center;
  align-self: stretch;
}
.category-nav.show .category-nav-inner {
  cursor: default;
}
.category-nav.show .category-dropdown-wrap {
  display: block;
}
.category-nav .category-nav-inner {
  font-weight: 700;
  line-height: 24px;
  width: 100%;
  display: flex;
  padding: 14px 35px 13px 30px;
  color: #fff;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
  background: var(--color-2nd);
  border-radius: 0 0 0 0;
  cursor: pointer;
  font-size: 15px;
}
.category-nav .category-nav-inner:after {
  display: none;
}
.category-nav .category-nav-inner > i {
  font-size: 16px;
}
.category-nav .category-dropdown-wrap {
  position: absolute;
  left: -1px;
  top: calc(100% + 0px);
  display: none;
  width: 263px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: none;
  border-bottom: none;
  border-radius: 0;
  z-index: 11;
}
.category-nav .category-dropdown-wrap:before, .category-nav .category-dropdown-wrap:after {
  position: absolute;
  content: "";
  left: 0;
  height: 1px;
  width: 100%;
  background: var(--color-border);
}
.category-nav .category-dropdown-wrap:before {
  top: 0;
}
.category-nav .category-dropdown-wrap:after {
  bottom: 0;
}
.category-nav .category-dropdown-wrap.show {
  display: block;
}
.category-nav .category-dropdown-wrap .category-dropdown:before, .category-nav .category-dropdown-wrap .category-dropdown:after {
  position: absolute;
  content: "";
  left: 50%;
  border-style: solid;
  transform: translateX(-50%);
  z-index: 1;
}
.category-nav .category-dropdown-wrap .category-dropdown:before {
  top: -25px;
  border-width: 13px 15px;
  border-color: transparent;
  border-bottom-color: #fff;
}
.category-nav .category-dropdown-wrap .category-dropdown:after {
  top: -23px;
  border-width: 12px 14px;
  border-color: transparent;
  border-bottom-color: #fff;
}

.vertical-megamenu {
  position: static;
  padding: 15px 0;
}
.vertical-megamenu > li {
  line-height: 50px;
  height: 50px;
  display: flex;
  align-items: center;
}
.vertical-megamenu > li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.vertical-megamenu > li.hide {
  display: none;
}
.vertical-megamenu > li.more-categories > .menu-item {
  font-weight: 500;
}
.vertical-megamenu > li:hover > .menu-item {
  color: var(--color-1st);
  color: var(--color-1st);
}
.vertical-megamenu > li:hover > .menu-item:after {
  opacity: 1;
  visibility: visible;
}
.vertical-megamenu > li:hover > .menu-item > .menu-item-icon {
  color: var(--color-1st);
  color: var(--color-1st);
}
.vertical-megamenu > li:hover > .menu-item > i {
  color: var(--color-1st);
  color: var(--color-1st);
}
.vertical-megamenu > li > .menu-item {
  position: relative;
  line-height: normal;
  display: block;
  padding: 0 20px 0 15px;
  color: var(--color-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: none;
  line-height: 16px;
  font-weight: 500;
}
.vertical-megamenu > li > .menu-item:after {
  position: absolute;
  content: "";
  left: 0;
  height: 15px;
  width: 7px;
  background: var(--color-1st);
  opacity: 0;
  visibility: hidden;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  transition: 150ms ease-in-out;
  top: 50%;
  transform: translateY(-50%);
}
.vertical-megamenu > li > .menu-item > .menu-item-icon {
  font-size: 16px;
  display: inline-block;
  margin: 0px 8px 0 0;
  color: #ccc;
  vertical-align: top;
  transition: 150ms ease-in-out;
}
.vertical-megamenu > li > .menu-item > i {
  font-size: 12px;
  position: absolute;
  top: 17px;
  right: 25px;
  color: #ccc;
  transition: 150ms ease-in-out;
}
.vertical-megamenu.mega-menu .dropdown {
  display: flex;
  width: 100%;
}
.vertical-megamenu.mega-menu .dropdown:hover > .sub-menu {
  -webkit-animation: menu-in-left 250ms ease;
          animation: menu-in-left 250ms ease;
}
.vertical-megamenu.mega-menu .dropdown > .sub-menu {
  right: -200px;
  top: 0;
  -webkit-animation: menu-in-right 250ms ease;
          animation: menu-in-right 250ms ease;
}
.vertical-megamenu.mega-menu > .fluid-menu:hover > .fluid-menu-wrap {
  -webkit-animation: menu-in-left 250ms ease;
          animation: menu-in-left 250ms ease;
}
.vertical-megamenu.mega-menu > .fluid-menu > .fluid-menu-wrap {
  top: 0;
  right: -720px;
  -webkit-animation: menu-in-right 250ms ease;
          animation: menu-in-right 250ms ease;
}

.mega-menu .dropdown {
  position: relative;
}

.mega-menu > .multi-level .sub-menu > li:hover > a {
  color: var(--color-1st);
  color: var(--color-1st);
}
.mega-menu .dropdown {
  position: relative;
}
.mega-menu .dropdown:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}
.mega-menu .dropdown > .sub-menu {
  position: absolute;
  width: 200px;
  padding: 12px 0 10px;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 150ms ease-in-out;
}
.mega-menu .dropdown > .sub-menu > li > a {
  font-size: 14px;
  line-height: 29px;
  position: relative;
  display: block;
  padding: 0 30px 0 19px;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.mega-menu .dropdown > .sub-menu > li > a > i {
  font-size: 12px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.mega-menu > .fluid-menu {
  position: relative;
}
.mega-menu > .fluid-menu:hover > .fluid-menu-wrap {
  opacity: 1;
  visibility: visible;
}
.mega-menu > .fluid-menu > .fluid-menu-wrap {
  position: absolute;
  width: 720px;
  background: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  border-radius: 2px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 150ms ease-in-out;
}
.mega-menu .fluid-menu-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 20px 10px 0;
}
.mega-menu .fluid-menu-content .fluid-menu-list {
  flex: 0 0 33.3333333333%;
  width: 33.3333333333%;
  margin-bottom: 15px;
  padding: 0 15px;
}
.mega-menu .fluid-menu-content .fluid-menu-title {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 7px;
}
.mega-menu .fluid-menu-content .fluid-menu-title > a {
  color: #000;
}
.mega-menu .fluid-menu-content .fluid-menu-title > a:hover {
  color: var(--color-1st);
  color: var(--color-1st);
}
.mega-menu .fluid-menu-content .fluid-sub-menu-list li a {
  font-size: 13px;
  line-height: 29px;
  max-width: 100%;
  display: inline-block;
  color: #ccc;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}
.mega-menu .fluid-menu-content .fluid-sub-menu-list li a:hover {
  color: var(--color-1st);
  color: var(--color-1st);
}

@-webkit-keyframes menu-in-top {
  0% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes menu-in-top {
  0% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes menu-in-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(15px);
  }
}
@keyframes menu-in-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(15px);
  }
}
@-webkit-keyframes menu-in-bottom {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(15px);
  }
}
@keyframes menu-in-bottom {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(15px);
  }
}
@-webkit-keyframes menu-in-left {
  0% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes menu-in-left {
  0% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0);
  }
}
.footer .footer-top {
  padding: 45px 0;
  background-color: var(--color-1st);
  background-size: cover;
  background-repeat: no-repeat;
}
.footer .footer-bottom {
  padding: 15px 0;
}
.footer .footer-bottom .copyright {
  margin: 0;
  text-align: center;
  display: block;
  width: 100%;
  color: var(--color-1st);
}
.footer .footer-menu {
  background: var(--color-1st);
  border-bottom: 1px solid #fff;
}
.footer .footer-menu .container {
  display: flex;
}
.footer .footer-menu .menu--footer {
  margin-bottom: 0;
  padding: 0;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .footer .footer-menu {
    display: none;
  }
}
.footer .widget--footer {
  margin-bottom: 20px;
}
.footer .footer-about {
  font-size: 13px;
}
.footer .footer-info p {
  font-size: 13px;
}
.footer .footer-info i {
  width: 20px;
}
.footer .share-title {
  color: #fff;
  margin-right: 10px;
}
.footer .list--social {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (min-width: 1200px) {
  .footer .widget--footer {
    margin-bottom: 40px;
  }
  .footer .widget--footer:last-child {
    margin-bottom: 0;
  }
}

/*5. HELPERS */
.mt-0 {
  margin-top: 0px;
}

.mr-0 {
  margin-right: 0px;
}

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

.ml-0 {
  margin-left: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pr-0 {
  padding-right: 0px;
}

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

.pl-0 {
  padding-left: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mr-5 {
  margin-right: 5px;
}

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

.ml-5 {
  margin-left: 5px;
}

.pt-5 {
  padding-top: 5px;
}

.pr-5 {
  padding-right: 5px;
}

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

.pl-5 {
  padding-left: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mr-10 {
  margin-right: 10px;
}

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

.ml-10 {
  margin-left: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pr-10 {
  padding-right: 10px;
}

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

.pl-10 {
  padding-left: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mr-15 {
  margin-right: 15px;
}

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

.ml-15 {
  margin-left: 15px;
}

.pt-15 {
  padding-top: 15px;
}

.pr-15 {
  padding-right: 15px;
}

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

.pl-15 {
  padding-left: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mr-20 {
  margin-right: 20px;
}

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

.ml-20 {
  margin-left: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pr-20 {
  padding-right: 20px;
}

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

.pl-20 {
  padding-left: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mr-25 {
  margin-right: 25px;
}

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

.ml-25 {
  margin-left: 25px;
}

.pt-25 {
  padding-top: 25px;
}

.pr-25 {
  padding-right: 25px;
}

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

.pl-25 {
  padding-left: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mr-30 {
  margin-right: 30px;
}

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

.ml-30 {
  margin-left: 30px;
}

.pt-30 {
  padding-top: 30px;
}

.pr-30 {
  padding-right: 30px;
}

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

.pl-30 {
  padding-left: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mr-35 {
  margin-right: 35px;
}

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

.ml-35 {
  margin-left: 35px;
}

.pt-35 {
  padding-top: 35px;
}

.pr-35 {
  padding-right: 35px;
}

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

.pl-35 {
  padding-left: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mr-40 {
  margin-right: 40px;
}

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

.ml-40 {
  margin-left: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pr-40 {
  padding-right: 40px;
}

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

.pl-40 {
  padding-left: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mr-45 {
  margin-right: 45px;
}

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

.ml-45 {
  margin-left: 45px;
}

.pt-45 {
  padding-top: 45px;
}

.pr-45 {
  padding-right: 45px;
}

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

.pl-45 {
  padding-left: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mr-50 {
  margin-right: 50px;
}

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

.ml-50 {
  margin-left: 50px;
}

.pt-50 {
  padding-top: 50px;
}

.pr-50 {
  padding-right: 50px;
}

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

.pl-50 {
  padding-left: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mr-55 {
  margin-right: 55px;
}

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

.ml-55 {
  margin-left: 55px;
}

.pt-55 {
  padding-top: 55px;
}

.pr-55 {
  padding-right: 55px;
}

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

.pl-55 {
  padding-left: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mr-60 {
  margin-right: 60px;
}

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

.ml-60 {
  margin-left: 60px;
}

.pt-60 {
  padding-top: 60px;
}

.pr-60 {
  padding-right: 60px;
}

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

.pl-60 {
  padding-left: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mr-65 {
  margin-right: 65px;
}

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

.ml-65 {
  margin-left: 65px;
}

.pt-65 {
  padding-top: 65px;
}

.pr-65 {
  padding-right: 65px;
}

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

.pl-65 {
  padding-left: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mr-70 {
  margin-right: 70px;
}

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

.ml-70 {
  margin-left: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.pr-70 {
  padding-right: 70px;
}

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

.pl-70 {
  padding-left: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mr-75 {
  margin-right: 75px;
}

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

.ml-75 {
  margin-left: 75px;
}

.pt-75 {
  padding-top: 75px;
}

.pr-75 {
  padding-right: 75px;
}

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

.pl-75 {
  padding-left: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mr-80 {
  margin-right: 80px;
}

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

.ml-80 {
  margin-left: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.pr-80 {
  padding-right: 80px;
}

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

.pl-80 {
  padding-left: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mr-85 {
  margin-right: 85px;
}

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

.ml-85 {
  margin-left: 85px;
}

.pt-85 {
  padding-top: 85px;
}

.pr-85 {
  padding-right: 85px;
}

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

.pl-85 {
  padding-left: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mr-90 {
  margin-right: 90px;
}

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

.ml-90 {
  margin-left: 90px;
}

.pt-90 {
  padding-top: 90px;
}

.pr-90 {
  padding-right: 90px;
}

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

.pl-90 {
  padding-left: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mr-95 {
  margin-right: 95px;
}

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

.ml-95 {
  margin-left: 95px;
}

.pt-95 {
  padding-top: 95px;
}

.pr-95 {
  padding-right: 95px;
}

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

.pl-95 {
  padding-left: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mr-100 {
  margin-right: 100px;
}

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

.ml-100 {
  margin-left: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pr-100 {
  padding-right: 100px;
}

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

.pl-100 {
  padding-left: 100px;
}

html .bg--parallax {
  position: relative;
  z-index: 10;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: 50% 50%;
}

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

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

.bg--top-right {
  background-position: 100% 100% !important;
  background-size: cover !important;
}

.bg--top-left {
  background-position: 0% 100% !important;
  background-size: cover !important;
}

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

.panel--sidebar ul, .product ul, .product--detail .product__color ul, .product--detail.has-background .product__background ul, .table--oriented ul, .shop--sidebar .shop__left ul, .section--account ul, .header ul, .panel--sidebar ol, .product ol, .product--detail .product__color ol, .product--detail.has-background .product__background ol, .table--oriented ol, .shop--sidebar .shop__left ol, .section--account ol, .header ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

@-webkit-keyframes fadeInLeft {
  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);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 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);
  }
}
@-webkit-keyframes fadeInDown {
  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 {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes slideInRight {
  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);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 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);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
          animation-name: slideInUp;
}

@-webkit-keyframes slideInDown {
  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);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
          animation-name: slideInDown;
}

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

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

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

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
          animation-name: zoomOut;
}

.box-news > .image {
  display: block;
  margin-bottom: 8px;
}

.box-news .view-more {
  color: var(--color-danger);
  margin-top: 10px;
  display: inline-block;
}

.block_wrap {
  margin-bottom: 10px;
}
.block_wrap .title-box-category {
  position: relative;
  background: #ff387f;
  background: linear-gradient(90deg, #ff387f 0%, #ff5a65 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff387f",endColorstr="#ff5a65",GradientType=1);
  padding: 10px 15px;
  border-radius: 5px;
}
.block_wrap .title-box-category .main-cate {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0px;
}
.block_wrap .title-box-category .main-cate a, .block_wrap .title-box-category .main-cate span {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}
.block_wrap .block_inner {
  background: #fff;
  padding: 15px;
}
@media (min-width: 993px) {
  .block_wrap .block_inner .row {
    margin-right: -5px;
    margin-left: -5px;
  }
  .block_wrap .block_inner .row > div {
    padding: 0 5px;
  }
}
.block_wrap .block_inner .box-news:not(:last-child) {
  margin-bottom: 10px;
}
.block_wrap .block_inner .featured-news .title {
  text-transform: uppercase;
  font-size: 18px;
}
.block_wrap .block_inner .featured-news .title > a {
  line-height: 1.3;
  color: #ff0000;
  font-weight: bold;
}
.block_wrap .block_inner .other-news .style_img_left {
  flex-direction: row;
  display: flex;
}
.block_wrap .block_inner .other-news .style_img_left .image-wrapper {
  width: 40%;
  flex: 0 0 40%;
}
.block_wrap .block_inner .other-news .style_img_left .content {
  width: 100%;
  padding-left: 10px;
}
.block_wrap .block_inner .other-news .style_img_left .content .title {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}
.block_wrap .block_inner .other-news .style_img_left .content .title a {
  font-weight: bold;
}
.block_wrap .block_inner .other-news .style_img_left .content .description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
  line-height: 16px;
  color: #7d7d7d;
}
.block_wrap.block_template_2 .block_inner {
  padding: 15px 0;
}
.block_wrap.block_template_2 .block_inner .box-news {
  border-bottom: 1px solid #eee;
  padding: 0 15px;
}
.block_wrap.block_template_2 .block_inner .box-news:last-child {
  border: none;
}

.product-tabs .nav {
  background: #ff387f;
  background: linear-gradient(90deg, #ff387f 0%, #ff5a65 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff387f",endColorstr="#ff5a65",GradientType=1);
  border-radius: 5px;
  height: 35px;
}
.product-tabs .nav a {
  height: 100%;
  line-height: 35px;
  padding: 0 15px;
  color: #fff;
}
.product-tabs .nav a h2 {
  font-size: inherit;
  margin: 0;
  display: inline-block;
  color: #fff;
}
.product-tabs .nav .nav-item:last-child {
  margin-left: auto;
}
.product-tabs .nav-pills .nav-link.active, .product-tabs .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #ff7780;
}

.block_product .products {
  border-left: 1px solid #eee;
  border-top: 1px solid #eee;
}
.block_product .product {
  background: #fff;
  border-radius: 5px;
  margin-top: 5px;
}
.block_product .product .product__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.block_product .product .product__wrapper .product__content {
  padding: 10px;
}
.block_product .row {
  margin-left: -5px;
  margin-right: -5px;
}
.block_product .row .product-grid-item {
  padding-left: 5px;
  padding-right: 5px;
}
.block_product.product_new .product {
  margin-top: 0px;
  border-radius: 0;
}
.block_product.product_new .product:hover .product__wrapper {
  transform: none;
  background: #fff;
  box-shadow: none;
}
@media screen and (max-width: 1366px) {
  .block_product.product_new .product .product__actions li a {
    padding: 3px;
  }
}
.block_product.product_new .row {
  margin-left: 0;
  margin-right: 0;
}
.block_product.product_new .product-grid-item {
  padding: 10px 5px;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background: #fff;
}

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: 16px;
}

.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, .widget__links li:hover a {
  color: var(--color-2nd);
}

.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 0;
  height: 100%;
}
.product .product__wrapper {
  transition: all 0.3s ease-in-out;
  padding-bottom: 25px;
  height: 100%;
}
.product .product__wrapper .product__content {
  padding: 15px 15px;
  position: relative;
}
.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;
}

@media (min-width: 769px) {
  .shop__products .product {
    background: #fff;
    border: 1px solid #eee;
  }
}

@media (max-width: 767px) {
  .shop__products .row {
    border-top: 1px solid #ddd;
  }
  .shop__products .col-6 {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 0 10px;
  }
  .shop__products .col-6:nth-child(2n) {
    border-right: 1px solid transparent;
  }

  .product .product__wrapper .product__content {
    padding: 15px 0;
  }
  .product:hover .product__wrapper {
    background: #fff;
    box-shadow: none;
  }
}
.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;
}

.grecaptcha-badge {
  display: none !important;
}

.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 {
  -webkit-animation: shine 1.1s;
  animation: shine 1.1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
@media screen and (max-width: 768px) {
  .slider__content .slider__content__wrapper .slider__content__wrapper__content {
    display: none;
  }
}
.ps-block--feature {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 20px 15px;
  border-radius: 5px;
}
.ps-block--feature > * {
  width: 100%;
}
.ps-block--feature > .ps-block__left {
  max-width: 55px;
}
.ps-block--feature > .ps-block__left i {
  color: #fff;
  font-size: 3rem;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
}
.ps-block--feature > .ps-block__right p {
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.4em;
  color: #fff;
  margin-bottom: 5px;
}
.ps-block--feature > .ps-block__right small {
  display: block;
  font-size: 1.4rem;
  color: #fff;
  font-weight: bold;
}
@media (max-width: 991px) {
  .ps-block--feature {
    margin: 0 auto 1rem;
  }
}
@media (max-width: 767px) {
  .ps-block--feature {
    max-width: 100%;
  }
}

.ps-block--features {
  padding: 1rem 0;
}
.ps-block--features .ps-col-tiny > div:first-child > .ps-block--feature {
  background: #3ad18c;
  background: radial-gradient(circle, #3ad18c 0%, #149558 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3ad18c",endColorstr="#149558",GradientType=1);
}
.ps-block--features .ps-col-tiny > div:first-child > .ps-block--feature > .ps-block__left i {
  color: #2CBB78;
}
.ps-block--features .ps-col-tiny > div:nth-child(2) > .ps-block--feature {
  background: #fa8367;
  background: radial-gradient(circle, #fa8367 0%, #f65732 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fa8367",endColorstr="#f65732",GradientType=1);
}
.ps-block--features .ps-col-tiny > div:nth-child(2) > .ps-block--feature > .ps-block__left i {
  color: #F97454;
}
.ps-block--features .ps-col-tiny > div:nth-child(3) > .ps-block--feature {
  background: #48acd1;
  background: radial-gradient(circle, #48acd1 0%, #277694 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#48acd1",endColorstr="#277694",GradientType=1);
}
.ps-block--features .ps-col-tiny > div:nth-child(3) > .ps-block--feature > .ps-block__left i {
  color: #40A0C3;
}
.ps-block--features .ps-col-tiny > div:nth-child(4) > .ps-block--feature {
  background: #ffa75c;
  background: radial-gradient(circle, #ffa75c 0%, #ff8f31 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffa75c",endColorstr="#ff8f31",GradientType=1);
}
.ps-block--features .ps-col-tiny > div:nth-child(4) > .ps-block--feature > .ps-block__left i {
  color: #FFA04F;
}

.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 .panel--search {
  top: 40px;
}

footer .form--subscribe input {
  height: 30px;
  background: #fff;
}
footer .form--subscribe button {
  position: relative;
  top: 0;
  transform: none;
  right: 0;
  background: var(--color-2nd);
  margin-top: 5px;
  color: #fff;
}

.shop-container {
  width: 100%;
}

table tbody th, table tfoot th {
  border-bottom: 1px solid #E6E6E6;
  text-transform: none;
  font-size: 14px;
}

table td {
  padding: 10px 12px;
  border: none;
  border-bottom: 1px solid #E6E6E6;
  text-align: left;
  font-weight: inherit;
  min-width: 120px;
}

.main-wraper {
  background: #fff;
}

.promotions {
  display: block;
  text-align: center;
  margin: 10px 0;
  background: #fff;
}

.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\A0";
}

.category-nav {
  position: relative;
}
.category-nav .sub-toggle {
  display: none;
}

@media (min-width: 1201px) {
  .row.gutter-5 {
    margin-right: -5px;
    margin-left: -5px;
  }

  .row.gutter-5 > .col,
.row.gutter-5 > [class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
  }
}
.product-view-more {
  text-align: center;
}
.product-view-more a {
  background: #ff5667;
  margin-top: 10px;
  color: #fff;
  border-radius: 5px;
}

.home-widget .widget__title {
  height: 35px;
  font-weight: 600;
  line-height: 20px;
  width: 100%;
  display: flex;
  padding: 5px 25px 5px 25px;
  text-align: center;
  color: #fff;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
  background: #ff387f;
  background: linear-gradient(90deg, #ff387f 0%, #ff5a65 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff387f",endColorstr="#ff5a65",GradientType=1);
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.block-about .image-video {
  text-align: center;
}
.block-about .why_item:not(:last-child) {
  margin-bottom: 5px;
}
.block-about .why_item .why_block {
  background-color: #FFF;
  padding: 5px;
  height: 100%;
}
.block-about .why_item .why_block .ff_left {
  float: left;
  width: 60px;
  display: block;
}
.block-about .why_item .why_block .ff_right {
  float: left;
  display: block;
  width: calc(100% - 60px);
}
.block-about .why_item .why_block .ff_right .title {
  text-align: left;
  padding-left: 15px;
  font-weight: 600;
  font-size: 16px;
}
.block-about .why_item .why_block .ff_right .content {
  margin-bottom: 5px;
  text-align: justify;
  padding-left: 15px;
}
.block-about .why_item .why_block:hover {
  box-shadow: -4px 3px 13px 0px rgba(0, 0, 0, 0.75);
  background-color: var(--color-1st);
}
.block-about .why_item .why_block:hover .ff_right > * {
  color: #fff;
}

.block-counter .item-para {
  display: block;
  width: 200px;
  height: 200px;
  background-color: #fff;
  text-align: center;
  position: relative;
  margin: 0 auto;
  border-radius: 50%;
  margin-bottom: 30px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.block-counter .item-para .countWrap {
  position: absolute;
  top: 44%;
  left: 0;
  right: 0;
  margin: 0 auto;
  -khtml-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.block-counter .item-para .count {
  font-size: 24px;
  font-weight: 700 !important;
  color: #f58220;
  text-align: center;
}
.block-counter .item-para .count span {
  text-shadow: 5px 4px 3px rgba(51, 51, 51, 0.1);
}
@media (max-width: 991px) {
  .block-counter .item-para {
    width: 150px;
    height: 150px;
  }
}

.home-collection.type-2 .collection {
  padding: 10px;
  margin-bottom: 20px;
}
.home-collection.type-2 .collection:hover {
  box-shadow: -4px 3px 13px 0px rgba(0, 0, 0, 0.75);
  background-color: var(--color-1st);
}
.home-collection.type-2 .collection:hover * {
  color: #fff !important;
}

.box_service .title, .box_service .title a {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: rgba(42, 143, 172, 0.81);
  text-align: center;
  text-transform: uppercase;
}

.box_service:hover {
  box-shadow: -4px 3px 13px 0px rgba(0, 0, 0, 0.75);
  background-color: var(--color-1st);
}
.box_service:hover * {
  color: #fff !important;
}
.box_service .title {
  padding-top: 5px;
  padding-bottom: 5px;
}

.subcribe-wraper {
  min-height: 120px;
  padding: 15px 15px;
  background: var(--color-1st);
}
.subcribe-wraper .subcribe-title {
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 8px;
  margin-left: 0;
  margin-top: 2px;
  text-align: left;
}
.subcribe-wraper .form--subscribe .input-group {
  margin: 6px 0;
}
.subcribe-wraper .form--subscribe .input-group .form-control {
  background-color: #f1f1f1;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border: none;
  padding: 0px 0px;
  color: #444;
  min-height: 30px;
  box-shadow: none;
  padding-left: 10px;
}
.subcribe-wraper .form--subscribe .guiyeucau button {
  width: 100%;
  border-radius: 5px;
  font-weight: 700;
  color: #FFF;
  background: var(--color-2nd);
  position: relative;
  height: 40px;
  border: 1px solid var(--color-2nd);
}
.subcribe-wraper .form--subscribe .guiyeucau button:hover {
  background: var(--color-1st);
  border: 1px solid #fff;
}
@media (max-width: 991px) {
  .subcribe-wraper .form--subscribe .guiyeucau {
    margin-top: 5px;
  }
}

.top-nav-wrap .top-nav {
  padding: 5px 15px;
}
.top-nav-wrap .top-nav ul {
  margin: 0;
}
.top-nav-wrap .top-nav ul li {
  display: inline-block;
  padding: 0 10px;
}

.success-message, .error-message {
  background: #fff;
  margin-top: 10px;
  padding: 10px;
  border-left: 2px solid #28a745;
}

.error-message {
  border-left: 2px solid #dc3545;
}

.list-partners {
  list-style-type: none;
}
.list-partners .partner-image {
  display: inline-flex;
  height: 100px;
  margin: 0 10px;
  align-items: center;
  justify-content: center;
  max-width: 200px;
}
.list-partners .partner-image img {
  max-height: 100%;
  max-width: 100%;
  transition: 0.2s ease-in-out;
  display: block;
}

.simply-scroll, .simply-scroll .simply-scroll-clip {
  width: 100% !important;
}

#quote-carousel {
  padding: 20px;
  margin-top: 20px;
  visibility: visible;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  height: 360px;
  background-color: #FFF;
  position: relative;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
#quote-carousel .carousel-inner {
  width: 85%;
  text-align: center;
  margin: auto;
}
#quote-carousel blockquote {
  padding: 30px 30px;
  font-size: 14px;
  line-height: 1.714em;
  font-style: italic;
  border-width: 0 0 0 4px;
  border-style: solid;
  border-color: var(--color-1st);
  border-left: none;
  color: #868686;
  background-color: #f3f4f6;
}
#quote-carousel blockquote small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777777;
}
#quote-carousel .content {
  width: 100%;
  font-size: 16px;
  text-align: justify;
  -moz-text-align-last: center;
  text-align-last: center;
  color: #333;
}
#quote-carousel .content::before {
  content: "\F10D";
  font-family: "Fontawesome", serif;
  float: left;
  margin-right: 10px;
}
#quote-carousel .content:after {
  content: "\F10E";
  font-family: "Fontawesome", serif;
  margin-right: 10px;
  bottom: 0;
  position: absolute;
  right: 0;
}
#quote-carousel .thumb-image-wrap {
  text-align: center;
}
#quote-carousel .thumb-image-wrap .slick-track {
  display: flex;
  align-items: center;
}
#quote-carousel .thumb-image-wrap .thumb-image {
  width: 50px;
  height: 50px;
  cursor: pointer;
  border: 1px solid #ccc;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  opacity: 0.4;
  overflow: hidden;
  transition: all 0.4s ease-in;
  vertical-align: middle;
  margin: 5px;
}
#quote-carousel .thumb-image-wrap .thumb-image.slick-current {
  width: 80px;
  height: 80px;
  opacity: 1;
  transition: all 0.2s;
}

.home-blog .post:not(:last-child) {
  margin-bottom: 30px;
}
.home-blog .post .post__title {
  font-weight: 500;
  color: #5f5f5f;
}
.home-blog .post__wrapper {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 991px) {
  .home-blog .post__wrapper {
    max-width: 100%;
  }
}
@media (min-width: 993px) {
  .home-blog .post__wrapper {
    background: #ffffff;
    display: flex;
  }
  .home-blog .post__wrapper .post__thumbnail {
    flex: 0 0 56%;
    max-width: 56%;
    height: 165px;
  }
}

.products-carousel .owl-stage {
  display: flex;
}
.products-carousel .owl-stage .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.products-carousel .product__wrapper {
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}
.products-carousel .product__wrapper .product__content {
  padding: 10px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.products-carousel .product__wrapper .product__actions {
  bottom: 0;
  position: relative;
  margin-top: auto;
}

@media (max-width: 768px) {
  .container_banner {
    width: 100%;
    padding: 0;
  }

  .block-about iframe {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }
}