@charset "UTF-8";

[class^="col-"],
[class*=" col-"] {
  position: relative;
  width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-6 {
  flex-basis: 50%;
  max-width: 50%;
}

.col-12 {
  flex-basis: 100%;
  max-width: 100%;
}

@media (min-width: 320px) {
  .col-xs {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-4 {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }

  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-4 {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }

  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-8 {
    flex-basis: 66.6667%;
    max-width: 66.6667%;
  }

  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-1 {
    flex-basis: 8.3333%;
    max-width: 8.3333%;
  }

  .col-lg-2 {
    flex-basis: 16.6667%;
    max-width: 16.6667%;
  }

  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }

  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex-basis: 58.3333%;
    max-width: 58.3333%;
  }

  .col-lg-8 {
    flex-basis: 66.6667%;
    max-width: 66.6667%;
  }

  .col-lg-11 {
    flex-basis: 91.6667%;
    max-width: 91.6667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
}

@media (min-width: 1600px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
}

[class*=" c-"]>* {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  flex-grow: 0;
  flex-shrink: 0;
}

@media (min-width: 320px) {
  .c-xs-1>* {
    flex-basis: 100% !important;
    max-width: 100% !important;
  }

  .c-xs-3>* {
    flex-basis: 33.3333% !important;
    max-width: 33.3333% !important;
  }
}

@media (min-width: 576px) {
  .c-sm-4>* {
    flex-basis: 25% !important;
    max-width: 25% !important;
  }
}

*,
::after,
::before {
  box-sizing: border-box;
}

body {
  margin: 0;
  text-align: left;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-white {
  color: #fff !important;
}

.text-dark {
  color: #333 !important;
}

.bg-white {
  background-color: #fff !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-auto {
  margin: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.border-none {
  border: none !important;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

@media (min-width: 992px) {
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
}

.flex-column {
  flex-direction: column !important;
}

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-auto {
  height: auto !important;
}

.dropdown,
.dropleft,
.dropright,
.dropup {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.background-image-none {
  background-image: none !important;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

@media (min-width: 992px) {
  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }

  .order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }
}

@media (min-width: 768px) {
  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }

  .order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }
}

figure {
  margin: 0 0 1rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

.d-none {
  display: none !important;
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-block {
    display: block !important;
  }
}

.input-group-append .btn,
.input-group-prepend .btn {
  position: relative;
  z-index: 2;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (min-width: 992px) {
  .col-5col {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .col-7col {
    flex: 0 0 14.2857%;
    max-width: 14.2857%;
  }

  .col-8col {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

html {
  direction: ltr;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-size-adjust: 100%;
}

body {
  font: normal 300 1.4rem/1.86 "Poppins", sans-serif;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::-moz-selection {
  color: #fff;
}

::selection {
  color: #fff;
}

input:focus,
a:focus {
  outline: none;
}

p,
address {
  margin-bottom: 1.5rem;
}

ul,
ol {
  margin: 0 0 1.5rem;
}

.widget ul,
.page-numbers,
.social-icons {
  list-style: none;
  padding: 0;
}

.list-unstyled {
  list-style: none !important;
}

b,
strong {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

hr {
  border: none;
  border-top: 1px solid #ebebeb;
  margin: 3rem auto 2.5rem;
}

sub,
sup {
  position: relative;
  font-size: 70%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

mark {
  color: inherit;
  background-color: transparent;
}

select {
  border-radius: 0;
}

select:focus {
  outline: none;
}

.divider-dotted {
  align-self: stretch;
  border-left: 1px dotted #e5e5e5;
}

.img-placeholder {
  padding-top: 80%;
  background-color: #ebebeb;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes bouncedelay {

  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

.loading-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.5s ease-in-out 0.1s;
  background: #fff;
  opacity: 1;
  visibility: visible;
  z-index: 999999;
}

.bounce-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  margin: -9px 0 0 -35px;
  transition: 0.2s;
  text-align: center;
  z-index: 10000;
}

.bounce-loader .bounce1,
.bounce-loader .bounce2,
.bounce-loader .bounce3 {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #ccc;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  animation: 1.4s ease-in-out 0s normal both infinite bouncedelay;
}

.bounce-loader .bounce1 {
  animation-delay: -0.32s;
}

.bounce-loader .bounce2 {
  animation-delay: -0.16s;
}

body:not(.loaded) * {
  transition: none !important;
}

.loaded .loading-overlay {
  opacity: 0;
  visibility: hidden;
}

.molla-lazyload {
  padding-top: 100%;
  height: 0 !important;
  width: 100% !important;
}

.molla-lazyload[data-src$=".png"] {
  opacity: 0;
}

.molla-lazyload-back {
  background-image: none !important;
}

#wp-admin-bar-my-account .molla-lazyload.avatar {
  padding-top: 0 !important;
  height: auto !important;
  width: auto !important;
}

.boxed .page-wrapper,
.framed .page-wrapper {
  max-width: 96%;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.boxed .page-wrapper .sticky-header.fixed,
.framed .page-wrapper .sticky-header.fixed {
  max-width: 96%;
}

.boxed .page-wrapper {
  margin: 0 auto;
}

@media (min-width: 992px) {
  .header-col.hidden-desktop {
    display: none;
  }
}

@media (max-width: 991px) {
  .header-col.hidden-mob {
    display: none;
  }
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  text-decoration: none;
}

.text-dark {
  color: #333 !important;
}

.text-light {
  color: #ccc !important;
}

.lead {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.875;
  margin-bottom: 1.2rem;
}

img {
  max-width: 100%;
  height: auto;
}

blockquote {
  position: relative;
  margin: 0 0 2rem;
  color: #333333;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.67;
  border-left: 4px solid #cc9966;
  background-color: #fafafa;
  margin-top: 4.2rem;
  margin-bottom: 4.2rem;
}

blockquote p:last-child {
  margin-bottom: 0;
}

blockquote:before {
  color: #ebebeb;
  content: "\f10e";
  font-weight: normal;
  font-size: 3rem;
  line-height: 1;
  font-family: "molla";
  position: absolute;
  left: 3rem;
  top: 4rem;
  margin-top: -1.5rem;
}

blockquote,
blockquote.wp-block-quote,
blockquote.wp-block-quote.is-large,
blockquote.wp-block-quote.is-style-large {
  padding: 7rem 3rem 4rem 3rem;
  border-color: #cc9966;
  margin-top: 4.2rem;
  margin-bottom: 4.2rem;
}

ins {
  text-decoration: none;
}

em {
  font-size: 85%;
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

code {
  color: #e83e8c;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

p {
  font-weight: 400;
}

input::placeholder,
textarea::placeholder {
  font-weight: 400;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  font-weight: 400;
}

@media (min-width: 768px) {

  h1,
  .h1 {
    font-size: 5rem;
  }

  h2,
  .h2 {
    font-size: 4rem;
  }

  h3,
  .h3 {
    font-size: 3rem;
  }

  h4,
  .h4 {
    font-size: 2.4rem;
  }

  blockquote,
  blockquote.wp-block-quote,
  blockquote.wp-block-quote.is-large,
  blockquote.wp-block-quote.is-style-large {
    padding: 4rem 6rem 4rem 12rem;
  }

  blockquote:before,
  blockquote.wp-block-quote:before,
  blockquote.wp-block-quote.is-large:before,
  blockquote.wp-block-quote.is-style-large:before {
    left: 4rem;
    top: 50%;
  }
}

table {
  width: 100%;
}

select {
  max-width: 100%;
}

[class*="notice-"] {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 2px;
  margin-bottom: 15px;
}

[class*="notice-"].notice-error {
  color: #dc3232;
  background-color: rgba(220, 50, 50, 0.2);
}

[class*="notice-"].notice-success {
  color: #82b440;
  background-color: rgba(130, 180, 64, 0.2);
}

[class*="notice-"].notice-info {
  color: #4bb0da;
  background-color: rgba(75, 176, 218, 0.2);
}

[class*="notice-"] strong,
[class*="notice-"] p {
  color: inherit;
}

.grid {
  display: flex;
  flex-wrap: wrap;
}

.grid.float-grid {
  display: block;
}

.grid.float-grid .grid-space {
  clear: both;
}

.grid-item {
  padding: 1rem;
  float: left;
  transform: translate3d(0, 0, 0);
}

.creative-grid {
  display: grid;
}

.creative-grid.editor-mode>* {
  position: relative;
  overflow: hidden;
  border: 1px dashed rgba(34, 34, 34, 0.4);
}

.creative-grid.editor-mode>*:after {
  content: attr(data-grid-idx);
  position: absolute;
  top: 0;
  right: 0;
  width: 3.6rem;
  height: 3.6rem;
  line-height: 3.6rem;
  color: #fff;
  background-color: #71d7f7;
  z-index: 98;
  font-size: 1.3em;
  text-align: center;
}

.inner-wrap {
  display: flex;
  position: relative;
}

.container,
.alignwide {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.container-fluid {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.page-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  left: 0;
  transition: left 0.4s, right 0.4s ease;
}

.divider-active .content-divider .inner-wrap,
.divider-active .full-divider {
  border: 1px solid #f4f4f4;
  border-width: 0 0 1px 0;
}

.footer.divider-active .content-divider .inner-wrap,
.footer.divider-active .full-divider {
  border-width: 1px 0 0 0;
}

@media (max-width: 991px) {

  .sidebar-active:not(.right-sidebar-active) .page-wrapper,
  .mmenu-active .page-wrapper {
    left: 200px;
  }
}

.main {
  flex: 1;
  width: 100%;
}

.page-content {
  padding-bottom: 4rem;
  margin-top: 4rem;
}

@media (min-width: 1200px) {
  .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 1600px) {
  .container-fluid {
    padding-left: 70px;
    padding-right: 70px;
  }
}

@media (max-width: 479px) {

  .container,
  .elementor-section.elementor-section-boxed .elementor-container.container,
  .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.header {
  width: 100%;
  background-color: #fff;
  z-index: 1039;
}

.header .inner-wrap {
  align-items: center;
}

.fixed-header {
  position: absolute;
  left: 0;
  right: 0;
}

body.boxed .sticky-header.fixed,
body.framed .sticky-header.fixed {
  left: auto;
  right: auto;
}

.header p {
  margin-bottom: 0;
}

.header a {
  color: inherit;
}

.header .custom-html {
  display: flex;
  align-items: center;
}

.header-left,
.header-center,
.header-right,
.header-row-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-self: stretch;
}

.header-row-wrap {
  width: 100%;
}

.header-right .header-row-wrap {
  justify-content: inherit;
}

.header-right {
  margin-left: auto;
  align-self: stretch;
}

.header-has-center .header-left,
.header-has-center .header-right {
  flex: 1;
  margin: 0;
}

.header-has-center .header-right {
  justify-content: flex-end;
}

.header-center {
  margin-left: auto;
  margin-right: auto;
}

.divider {
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 1.5rem;
  background-color: #ccc;
}

.logo {
  display: block;
  margin: 0;
}

.logo img {
  display: block;
  max-width: 100%;
  height: auto;
  transition: width 0.3s;
}

.header .social-icon {
  font-size: 1.4rem;
}

.header-top {
  font-size: 1.4rem;
  line-height: 1.5;
}

.header-col {
  max-width: 100%;
}

.header-col .nav-dropdown>* {
  margin-left: 2.9rem;
}

.header-col .nav-dropdown>*:first-child {
  margin-left: 0;
}

.header-dropdown {
  position: relative;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  margin: 0;
}

.header-dropdown>li>a,
.header-dropdown>li>span {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.header-dropdown.sf-arrows li>a,
.header-dropdown.sf-arrows li>span {
  padding-right: 1.8rem;
}

.header-dropdown a:hover,
.header-dropdown a:focus {
  text-decoration: none;
}

.header-dropdown .sf-with-ul>.sub-menu li {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 992px) {

  .header-dropdown>li>a,
  .header-dropdown>li>span {
    padding-top: 2px;
    padding-bottom: 2px;
  }
}

.megamenu .sub-menu {
  visibility: visible;
  opacity: 1;
}

.megamenu .sub-menu .sub-menu {
  background-color: transparent;
  background-image: none;
  border: none;
}

.sub-menu {
  position: absolute;
  left: -1.5rem;
  top: 100%;
  z-index: 20;
  padding: 0.6rem 0;
  min-width: 100%;
  visibility: hidden;
  opacity: 0;
  background-color: #fff;
  box-shadow: 2px 5px 8px rgba(51, 51, 51, 0.05),
    -2px 5px 8px rgba(51, 51, 51, 0.05);
  transition: opacity 0.25s, transform 0.25s;
  margin-top: 1px;
  list-style: none;
  margin: 0;
}

.sub-menu li {
  margin: 0;
}

.sub-menu a {
  padding: 0.3rem 1.5rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.header-dropdown:hover>li>.sub-menu,
.header-dropdown:focus>li>.sub-menu {
  visibility: visible;
  opacity: 1;
}

.header-right .sub-menu,
.header-right .header-dropdown .sub-menu {
  left: auto;
  right: 0;
}

.header-right .top-menu+.header-dropdown {
  margin-left: 2.5rem;
}

.header-left .sub-menu,
.header-left .header-dropdown .sub-menu {
  left: 0;
  right: auto;
}

.header-dropdown:not(.sf-arrows) .sub-menu {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.top-menu {
  position: relative;
  text-transform: capitalize;
  letter-spacing: -0.01em;
  margin: 0;
  padding: 0;
}

.top-menu.sf-arrows .top-link>a {
  padding-right: 1.8rem;
}

.top-menu .top-link>a {
  display: none;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.top-menu .nav-dropdown {
  margin-bottom: 0;
}

.top-menu .header-dropdown,
.top-menu .nav-dropdown {
  background-color: transparent;
}

.top-menu .nav-dropdown {
  display: flex;
  align-items: center;
}

.top-menu .nav-dropdown>* {
  display: flex;
  box-shadow: none;
}

.top-menu .nav-dropdown>*>.menu-item+.menu-item {
  margin-left: 2.9rem;
}

.top-menu a {
  display: inline-flex;
  align-items: center;
}

.top-menu i {
  font-size: 1.5rem;
  margin-right: 0.8rem;
}

.top-menu .wishlist-count {
  margin-left: 3px;
}

@media (max-width: 991px) {
  .top-menu i {
    display: none;
  }
}

.header-main .menu.sf-arrows>li>.sf-with-ul>a {
  padding-right: 1.5rem;
}

.shop-icons {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.shop-icons,
.shop-icons .shop-icon>a {
  align-self: stretch;
}

@keyframes animate_added {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
    background-color: #d26e4b;
  }

  100% {
    transform: translateY(0);
  }
}

.updated-count {
  animation: 0.6s ease-in animate_added;
}

.shop-icon {
  display: flex;
  align-self: stretch;
  align-items: center;
}

.shop-icon [class*="count"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: -3px;
  min-width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  color: #fff;
}

.shop-icon div.icon {
  height: 30px;
  position: relative;
  display: flex;
  align-items: center;
}

.shop-icon>a {
  position: relative;
  font-size: 32px;
  color: inherit;
  line-height: 1;
}

.shop-icon.account>a {
  font-size: 30px;
}

.shop-icon.wishlist>a {
  font-size: 28px;
}

.shop-icon .custom-label {
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.shop-icon>a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.shop-icon .cart-price {
  margin-left: 0.5rem;
  font-size: 1.3rem;
}

.shop-icon .cart-price:hover {
  cursor: default;
}

.shop-icon .wishlist-count {
  right: -5px;
}

.shop-icon p {
  transition: inherit;
}

.shop-icon+.shop-icon {
  margin-left: 3rem;
}

.shop-icon.hdir>a {
  flex-direction: row;
}

.shop-icon.hdir .custom-label {
  margin-left: 5px;
}

.shop-icon.label-hidden .custom-label {
  display: none;
}

.shop-icon.label-hidden div.icon {
  height: auto;
}

.shop-icon.price-hidden .cart-price {
  display: none;
}

.count-linear [class*="count"] {
  position: static;
  min-width: 2rem;
  height: 2rem;
  line-height: 2em;
  margin-left: 2px;
}

.cart-dropdown .dropdown-toggle,
.compare-dropdown .dropdown-toggle {
  text-decoration: none !important;
  line-height: 1;
}

.cart-dropdown .dropdown-toggle::after,
.compare-dropdown .dropdown-toggle::after {
  display: none;
}

.cart-dropdown .dropdown-menu,
.compare-dropdown .dropdown-menu {
  display: block;
  width: 300px;
  z-index: 100;
  font-size: 1.3rem;
  z-index: 1001;
  border: none;
  margin: 0;
  padding: 2.2rem 3rem 2.5rem;
  border-radius: 0;
  border: none;
  box-shadow: 5px 10px 16px rgba(51, 51, 51, 0.05),
    -5px 10px 16px rgba(51, 51, 51, 0.05);
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  right: -1px;
  left: auto;
  transition: visibility 0.25s, opacity 0.25s;
}

.cart-dropdown:hover .dropdown-menu,
.compare-dropdown:hover .dropdown-menu,
.cart-dropdown.show .dropdown-menu,
.compare-dropdown.show .dropdown-menu {
  visibility: visible;
  opacity: 1;
}

.cart_list {
  padding: 0;
  margin-bottom: 0;
}

.cart-popup.dropdown-menu .cart_list {
  margin-right: -6px;
  max-height: 280px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.cart-popup.dropdown-menu .cart_list::-webkit-scrollbar {
  width: 6px;
}

.cart-popup.dropdown-menu .cart_list::-webkit-scrollbar-thumb {
  background: rgba(194, 194, 194, 0.3);
  border-radius: 6px;
}

.woocommerce-mini-cart .quantity .amount {
  font-size: 1.3rem;
}

.cart-popup .total .amount {
  font-size: 1.5rem;
}

.cart_list li img,
.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
  margin-left: 10px;
}

.product-cart-details {
  flex: 1;
}

.cart_list.scrollable .remove {
  right: 0 !important;
}

.mini_cart_item .remove,
.cart-popup.widget_shopping_cart .cart_list li a.remove {
  font-family: none;
  position: absolute;
  top: 50%;
  left: auto;
  right: -0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  color: #cccccc;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  margin-top: -1.2rem;
}

.mini_cart_item .remove:hover,
.cart-popup.widget_shopping_cart .cart_list li a.remove:hover,
.mini_cart_item .remove:focus,
.cart-popup.widget_shopping_cart .cart_list li a.remove:focus {
  color: #333333;
}

.cart_list {
  margin-top: -1rem;
}

.cart_list .product-title {
  margin-bottom: 0.2rem;
}

.mini_cart_item,
.cart-popup.widget_shopping_cart .cart_list li {
  position: relative;
  padding: 1.6rem 2.4rem 1.6rem 0;
  display: flex;
  align-items: center;
  box-shadow: none;
  margin: 0 !important;
  border: none;
  border-bottom: 1px solid #ebebeb;
  box-shadow: none !important;
}

.mini_cart_item .product-image-container,
.cart-popup.widget_shopping_cart .cart_list li .product-image-container {
  margin: 0 0 0 auto;
}

.mini_cart_item a,
.cart-popup.widget_shopping_cart .cart_list li a {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-align: left;
  word-break: break-word;
  display: block;
}

.mini_cart_item img,
.cart-popup.widget_shopping_cart .cart_list li img {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.mini_cart_item .quantity,
.cart-popup.widget_shopping_cart .cart_list li .quantity {
  color: #999;
  margin-top: 0.4rem;
  display: block;
}

.widget_shopping_cart_content a.wc-forward {
  border: 1px solid #cc9966;
}

.widget_shopping_cart_content a.wc-forward:hover,
.widget_shopping_cart_content a.wc-forward:focus {
  color: #fff;
}

.widget_shopping_cart_content a.wc-forward:not(.checkout) {
  color: #fff;
}

.widget_shopping_cart_content a.checkout {
  border: 1px solid #cc9966;
  background-color: transparent;
}

.widget_shopping_cart_content a.checkout:hover,
.widget_shopping_cart_content a.checkout:focus {
  color: #fff;
}

.compare-dropdown {
  padding-left: 2.5rem;
}

.compare-dropdown .dropdown-toggle {
  font-size: 2.6rem;
}

.compare-products {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-product {
  position: relative;
  padding: 0.5rem 0;
  margin: 0;
  box-shadow: none !important;
}

.compare-product:hover {
  box-shadow: none;
}

.compare-product-title {
  color: #666666;
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.01em;
}

.compare-product-title a {
  color: inherit;
}

.compare-product-title a:hover,
.compare-product-title a:focus {
  color: #cc9966;
}

.compare-actions {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.compare-actions .action-link {
  font-size: 1.3rem;
  color: #666666;
}

.compare-actions .action-link:hover,
.compare-actions .action-link:focus {
  color: #cc9966;
  text-decoration: underline;
}

.compare-actions .btn {
  font-size: 1.3rem;
  min-width: 110px;
  margin-left: auto;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.cart-dropdown .dropdown-toggle {
  font-size: 32px;
}

.cart-dropdown .dropdown-toggle i {
  display: inline-block;
  margin-top: -3px;
}

.cart-dropdown .cart-price .amount {
  font-size: 1.3rem;
}

.cart-popup .total,
.woocommerce .widget_shopping_cart .total {
  padding: 1.5rem 0 0.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 1.1rem;
}

.cart-popup .total strong,
.woocommerce .widget_shopping_cart .total strong {
  font-weight: 400;
  position: relative;
  text-indent: -9999em;
}

.cart-popup .total strong:before,
.woocommerce .widget_shopping_cart .total strong:before {
  text-indent: 0;
  content: "total";
  position: absolute;
  left: 0;
}

.cart-popup .total .cart-total-price,
.woocommerce .widget_shopping_cart .total .cart-total-price {
  font-size: 1.5rem;
  margin-left: auto;
}

.cart-popup .buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0.5rem;
}

.cart-popup .buttons .button {
  font-size: 1.3rem;
  min-width: 110px;
  text-align: center;
  padding: 0.7rem 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  border-radius: 0;
  white-space: normal;
  transition: 0.3s;
}

.cart-popup .buttons .button.checkout:after {
  content: "\f274";
  font-family: "molla";
  margin-left: 1rem;
}

.cart-canvas {
  display: flex;
  flex-flow: column;
  font-size: 1.5rem;
}

.cart-canvas.cart-popup {
  color: #222;
}

.cart-canvas.widget_shopping_cart .widget_shopping_cart_content .total {
  color: #222;
  text-transform: capitalize;
}

.cart-canvas.widget_shopping_cart .widget_shopping_cart_content .total strong {
  font-weight: 700;
}

.cart-canvas .total strong,
.cart-canvas .total .amount,
.cart-canvas .cart-canvas-header h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.cart-canvas .product-image-container {
  order: -1;
}

.cart-canvas .cart_list {
  margin-top: 0;
}

.cart-canvas ul.cart_list .mini_cart_item img {
  margin: 0 20px 0 0;
}

.cart-canvas.widget_shopping_cart .cart_list li {
  padding: 2rem 2.4rem 2rem 0;
  align-items: flex-start;
}

.cart-canvas.widget_shopping_cart .cart_list li .quantity {
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}

.cart-canvas.widget_shopping_cart .cart_list li a {
  font-weight: 500;
  font-size: 1.5rem;
}

.cart-canvas.widget_shopping_cart .cart_list li img {
  width: 75px;
  height: 75px;
}

.cart-canvas.widget_shopping_cart .cart_list li a.remove {
  display: inline-block;
  text-indent: -9999px;
  color: #666 !important;
  top: 2rem;
  margin-top: 0;
}

.cart-canvas.widget_shopping_cart .cart_list li a.remove:before {
  content: "\f191";
  font-family: "molla";
  font-size: 17px;
  position: absolute;
  left: 0;
  text-indent: 0;
}

.cart-canvas .quantity .amount {
  font-weight: 700;
  font-size: 1.5rem;
}

.cart-canvas .cart-canvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ccc;
}

.cart-canvas .cart-canvas-header h4 {
  margin: 0;
}

.cart-canvas .widget_shopping_cart_content {
  display: flex;
  flex-flow: column;
  flex: 1;
}

.cart-canvas .cart_list {
  flex: 1;
  max-height: calc(100vh - 270px);
  overflow-x: hidden;
}

.cart-canvas .cart_list::-webkit-scrollbar {
  width: 4px;
  background: rgba(0, 0, 0, 0.1);
}

.cart-canvas .cart_list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
}

.cart-canvas .total {
  margin-bottom: 1rem;
}

.cart-canvas .buttons,
.cart-canvas .buttons .button {
  display: block;
}

.cart-canvas .buttons {
  margin-top: 0;
  padding-bottom: 0;
}

.cart-canvas .buttons .button+.button {
  margin-top: 1rem;
}

.cart-canvas .buttons .button {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
}

.cart-canvas .button.wc-forward:not(.checkout) {
  background-color: transparent;
}

.cart-canvas .button.wc-forward:not(.checkout):hover,
.cart-canvas .button.wc-forward:not(.checkout):focus {
  color: #fff;
}

.cart-canvas .button.checkout {
  color: #fff;
}

.cart-canvas p {
  margin-top: 2rem;
  font-size: inherit;
}

.cart-canvas .variation {
  display: block;
  font-size: 13px;
  color: #999;
  letter-spacing: 0;
}

.cart-canvas .product-title a+.variation {
  margin-top: 3px;
}

.cart-canvas.widget_shopping_cart .cart_list li div.quantity {
  margin-top: 10px;
}

.cart-canvas .quantity label {
  display: none;
}

.cart-canvas .quantity .input-group {
  max-width: 99px;
}

.cart-canvas .quantity .form-control {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.cart-canvas .quantity button {
  line-height: 1;
}

.canvas-close {
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: #666;
}

.canvas-close i {
  font-size: 1.7rem;
  position: relative;
  top: 1px;
  margin: 0 0 0 5px;
}

.search-toggle {
  position: relative;
  display: none;
  font-size: 2.4rem;
  line-height: 1;
  min-width: 2.5rem;
  padding: 0.3rem 0.2rem;
  font-weight: 400;
  color: #333;
  text-align: center;
  z-index: 11;
}

.search-toggle:hover,
.search-toggle:focus,
.search-toggle.active {
  outline: none !important;
}

.search-wrapper .live-search {
  flex: 1 1 auto;
  align-self: stretch;
}

.search-wrapper .btn {
  font-size: 14px;
}

.live-search-list {
  position: absolute;
  margin-top: 3px;
  left: 0;
  top: 100%;
  width: 100%;
  box-shadow: 5px 10px 16px rgba(51, 51, 51, 0.05),
    -5px 10px 16px rgba(51, 51, 51, 0.05);
  font-size: 14px;
  background: #fff;
  z-index: 11;
}

.live-search-list .autocomplete-suggestions {
  max-height: 400px;
  margin: 2rem 0;
  overflow-y: scroll;
}

.live-search-list .autocomplete-suggestions::-webkit-scrollbar {
  width: 6px;
}

.live-search-list .autocomplete-suggestions::-webkit-scrollbar-thumb {
  background: rgba(194, 194, 194, 0.3);
  border-radius: 6px;
}

.live-search-list .autocomplete-suggestion {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.live-search-list .autocomplete-suggestion:last-child {
  border-bottom: none;
}

.live-search-list .autocomplete-suggestion:hover {
  background-color: #f8f8f8;
}

.live-search-list .search-name {
  color: #666;
  line-height: 1.3;
  letter-spacing: 0.02em;
  word-break: break-all;
}

.live-search-list .search-price {
  display: block;
  margin-top: 10px;
  letter-spacing: -0.02em;
  color: #333;
}

.live-search-list img {
  max-width: 70px;
  margin-right: 15px;
}

.search-wrapper button.btn i {
  margin: 0;
}

.header-search {
  position: relative;
  margin: 0;
  font-size: 0;
  line-height: 1;
  padding: 0;
  border: none;
}

.header-search .search-toggle {
  display: block;
  color: inherit;
}

.header-search:not(.header-search-visible) .search-wrapper,
.header-search:not(.header-search-visible) .search-wrapper .btn {
  display: none;
}

.header-search.icon-left:not(.header-search-visible) input {
  padding-left: 5rem;
}

.header-search.icon-left .search-wrapper {
  left: -1.4rem;
  right: auto;
}

.header-search.icon-left .search-wrapper .btn {
  order: -1;
  left: -1px;
}

.header-search.icon-left .search-wrapper .btn-icon~input {
  padding-left: 0;
}

.header-search .search-wrapper {
  position: absolute;
  right: -1.4rem;
  top: 50%;
  transform: translateY(-50%);
  align-items: stretch;
  width: 100%;
  min-width: 270px;
  background-color: #fff;
  border: 1px solid #ebebeb;
  z-index: 10;
}

.header-search .search-wrapper .form-control {
  background-color: transparent;
}

.header-search .search-wrapper.show {
  display: flex;
}

.header-search .search-wrapper.show .form-control {
  padding-right: 5rem;
}

.header-search .search-wrapper .btn {
  font-size: 2rem;
}

.header-search .search-wrapper button.btn {
  position: relative;
  padding: 0.85rem 3rem;
}

.header-search form {
  margin: 0;
}

.header-search .select-custom {
  flex: 0 0 200px;
  max-width: 200px;
  padding-right: 0;
  margin: 0;
  align-self: stretch;
  border-radius: inherit;
}

.header-search .select-custom:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 2.6rem;
  margin-top: -1.3rem;
  background-color: #ebebeb;
}

.header-search .select-custom::after {
  right: 2rem;
  color: #999;
  font-size: 1.2rem;
}

.header-search .form-control,
.header-search select {
  line-height: 1;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0;
  border: none;
  margin: 0;
}

.header-search .form-control {
  flex: 1 1 auto;
  padding: 0.9rem 2rem;
  width: 100%;
  margin: 0;
  line-height: 20px;
  box-shadow: none;
}

.header-search select {
  width: 100%;
  border: none;
  line-height: 38px;
  height: 100%;
  color: #999;
  background-color: transparent;
  padding: 1px 4rem 1px 2rem;
  border-radius: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.header-search select:focus {
  outline: none !important;
}

.header-search option {
  font-size: 1.3rem;
  padding: 1px 0.3rem;
}

.header-search .btn {
  flex: 0 0 40px;
  align-self: stretch;
  max-width: 40px;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1;
  border: 0;
  margin: 0;
  cursor: pointer;
}

.header-search-visible .search-toggle {
  display: none;
}

.header-search-visible .search-wrapper {
  position: static;
  left: auto;
  right: auto;
  top: auto;
  transform: none;
  margin-top: 0;
  display: flex;
}

.mobile-menu-toggler {
  border: none;
  background: transparent;
  color: inherit;
  padding: 0.2rem 0.25rem;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header-left .mobile-menu-toggler {
  margin-right: 1rem;
}

.header-right .mobile-menu-toggler {
  margin-left: 1rem;
}

.header-bottom .mobile-menu-toggler {
  margin-top: 0.55rem;
  margin-bottom: 0.55rem;
}

.header-col>* {
  margin-right: 1.5rem;
}

.header-col>*:last-child,
.header-col>*.header-row-wrap {
  margin-right: 0;
}

@media (min-width: 992px) {
  .header .mobile-menu-toggler {
    display: none;
  }
}

.container-fluid .megamenu-container>ul {
  width: 1170px;
}

@media (max-width: 991px) {
  .top-menu .nav-dropdown .sub-menu {
    top: 0;
    transform: none;
  }

  .header-right .top-menu .nav-dropdown .sub-menu {
    left: auto;
    right: 100%;
  }

  .header-left .top-menu .nav-dropdown .sub-menu {
    left: 100%;
    right: auto;
  }

  header .top-menu .nav-dropdown>*,
  header .top-menu .nav-dropdown>li>ul {
    padding: 0;
    margin: 0;
    display: block;
  }

  .top-menu {
    display: flex;
    align-items: center;
    align-self: stretch;
  }

  .top-menu a {
    display: block;
  }

  .top-menu .top-link {
    display: flex;
    align-items: center;
    align-self: stretch;
  }

  .top-menu .top-link>a {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }

  .top-menu .top-link>a:after {
    font-family: "molla";
    content: "\f110";
    position: absolute;
    right: 0;
    top: 50%;
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1;
    transform: translateY(-50%);
  }

  .top-menu .nav-dropdown {
    display: block;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 20;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    width: max-content;
    min-width: 141px;
    max-width: 300px;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    margin-top: 1px;
    box-shadow: 2px 5px 8px rgba(51, 51, 51, 0.05),
      -2px 5px 8px rgba(51, 51, 51, 0.05);
    text-transform: capitalize;
  }

  .top-menu .nav-dropdown:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: -1px;
    left: 0;
  }

  .top-menu .top-link .nav-dropdown .menu-item-has-children>a {
    width: 100%;
  }

  .top-menu .top-link .nav-dropdown .menu-item-has-children>a:after {
    right: 1.8rem;
  }

  .top-menu:hover .nav-dropdown,
  .top-menu:focus .nav-dropdown {
    visibility: visible;
    opacity: 1;
  }

  .top-menu li+li {
    margin-left: 0 !important;
  }

  .top-menu a {
    padding: 0.3rem 1.5rem;
  }

  .header-search {
    display: none;
  }

  .menu.main-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-search .select-custom {
    flex: 0 0 180px;
    max-width: 180px;
  }
}

@media (max-width: 575px) {
  .header-search .select-custom {
    display: none;
  }

  .header .shop-icon+.shop-icon {
    margin-left: 2rem;
  }
}

@media (max-width: 991px) {
  .sticky-wrapper {
    height: auto !important;
  }
}

@keyframes menu-animation {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.main-nav {
  margin-left: 2rem;
  display: none;
}

.megamenu>ul>li {
  flex: 0 0 100%;
  max-width: 100%;
}

.menu .menu-col-1>ul>li {
  flex: 0 0 100%;
  max-width: 100%;
}

.menu .menu-col-2>ul>li {
  flex: 0 0 50%;
  max-width: 50%;
}

.menu .menu-col-3>ul>li {
  flex: 0 0 33.3334%;
  max-width: 33.3334%;
}

.menu .menu-col-4>ul>li {
  flex: 0 0 25%;
  max-width: 25%;
}

.menu .menu-col-5>ul>li {
  flex: 0 0 20%;
  max-width: 20%;
}

.menu .menu-col-6>ul>li {
  flex: 0 0 16.6667%;
  max-width: 16.6667%;
}

.menu,
.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu ul {
  animation-duration: 0.4s;
  animation-name: menu-animation;
}

.menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.menu.lazy-menu .sub-menu {
  padding: 0;
  height: 350px;
  min-height: 350px;
}

.menu li {
  position: relative;
}

.menu li:hover>ul,
.menu li.show>ul {
  top: 100%;
  visibility: visible;
  opacity: 1;
}

.menu .megamenu-container {
  position: static;
}

.menu ul {
  position: absolute;
  left: 0;
  top: -9999px;
  z-index: 1002;
}

.menu ul ul.sub-menu {
  top: -2rem;
  left: 100%;
}

.menu .megamenu>ul {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  z-index: 1002;
  padding: 0 2rem;
  left: 0;
  right: 0;
}

.menu .megamenu>ul ul {
  display: block;
  position: static;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  box-shadow: none;
  margin-top: 0;
  padding: 0;
  min-width: 0;
}

.menu .megamenu>ul>li {
  padding: 2rem 1rem;
}

.menu ul,
.menu .megamenu>ul {
  opacity: 0;
}

.menu .sub-menu.pos-left {
  left: 0;
  right: auto;
}

.menu .sub-menu.pos-center {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.menu .sub-menu.pos-right {
  left: auto;
  right: 0;
}

.menu a:not(.btn) {
  display: block;
  position: relative;
  text-decoration: none;
}

.menu a:not(.btn):focus {
  outline: none !important;
}

.container-fluid .megamenu-container {
  position: relative;
}

.sf-arrows>li>.menu-item-has-children>a {
  padding-right: 2rem;
}

.sf-arrows .menu-item-has-children>a {
  position: relative;
}

.sf-arrows .menu-item-has-children>a:after {
  font-family: "molla";
  content: "\f110";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  font-size: 1rem;
  line-height: 1;
}

.sf-arrows.header-dropdown .menu-item-has-children>a:after {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sf-arrows .sf-with-ul .menu-item-has-children>a:after {
  content: "\f112";
  right: 0;
}

.sf-with-ul>.sub-menu li {
  padding-left: 3rem;
  padding-right: 3rem;
}

.menu.sf-arrows .menu-subtitle.menu-item-has-children>a:after {
  content: "";
}

.menu-subtitle+.menu-subtitle {
  margin-top: 1rem;
}

.menu .megamenu>ul,
.menu ul,
.header-dropdown ul {
  box-shadow: 5px 10px 16px rgba(51, 51, 51, 0.05),
    -5px 10px 16px rgba(51, 51, 51, 0.05);
}

.header .sf-dividers ul a {
  border-bottom: 1px solid #ebebeb;
}

.menu {
  line-height: 1.5;
}

.menu li>a {
  color: #999999;
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 0;
  padding: 0.5rem 0;
}

.menu li>a span:not(.tip) {
  position: relative;
}

.menu>li>a {
  color: #333;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  padding: 3.95rem 3rem;
}

.menu ul {
  min-width: 218px;
  padding: 2rem 0;
}

.menu .megamenu>ul .banner>a {
  display: block;
  padding: 0;
  margin: 0;
}

.menu .megamenu>ul .btn {
  min-width: 210px;
  text-transform: uppercase;
}

.menu .megamenu .banner .btn {
  min-width: 0;
}

.menu .menu-col {
  padding-left: 3rem;
  padding-right: 3rem;
  margin-top: 2.2rem;
  padding-bottom: 2rem;
}

.menu .megamenu .menu-item-has-children>a {
  color: #333;
  font-weight: 400;
  text-transform: uppercase;
}

.menu .megamenu-action {
  padding-bottom: 2rem;
}

.menu ul+.menu-item-has-children {
  margin-top: 1.5rem;
}

.menu .menu-grid-col>a {
  display: none;
}

.menu .menu-grid-col>ul {
  display: block;
  visibility: visible;
  opacity: 1;
  position: static;
  padding: 0;
  box-shadow: none;
}

.scale-eff>li>a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 1px;
  transform-origin: right center;
  transform: scale(0, 1);
  transition: transform 0.3s ease;
  z-index: 1;
}

.fixed .scale-eff>li>a:before {
  top: 0;
}

.bottom-scale-eff>li>a:before {
  top: auto;
  bottom: 0;
}

.fixed .bottom-scale-eff>li>a:before {
  top: auto;
}

.scale-eff li:hover>a:before,
.scale-eff li.show>a:before,
.scale-eff li.active>a:before,
.scale-eff li.current-menu-item>a:before,
.scale-eff li.current-menu-ancestor>a:before {
  transform-origin: left center;
  transform: scale(1, 1);
}

.tip {
  color: #fff;
  display: block;
  position: absolute;
  left: 100%;
  bottom: 1.1rem;
  text-align: center;
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: 0;
  padding: 3px 1px 1px;
  min-width: 23px;
  z-index: 1;
  border-radius: 0;
  margin-left: 0.5rem;
  text-transform: uppercase;
}

.tip.tip-new {
  background-color: #ffcc02;
}

.tip.tip-hot {
  background-color: #ef837b;
}

.main-nav {
  margin-left: 0;
}

.menu .megamenu.megamenu-md {
  left: 0;
}

.menu>li+li {
  margin-left: 1rem;
}

.menu>li>a {
  padding: 1.65rem 1rem;
}

.sf-arrows .menu-item-has-children>a {
  padding-right: 3rem;
}

.menu.sf-arrows>li>.menu-item-has-children>a:after {
  right: 1rem;
}

.menu-item .flag {
  margin-right: 5px;
}

.menu-item .flag img {
  vertical-align: middle;
  max-width: 18px;
}

.header-dropdown.wcml_currency_switcher .wcml-spinner {
  display: none;
}

.molla-loading.megamenu-container {
  width: 100%;
}

@media (min-width: 992px) {
  .main-nav {
    display: block;
  }
}

.dropdown>.menu {
  display: none;
}

.dropdown-menu-wrapper {
  display: flex;
  align-self: stretch;
  align-items: center;
  width: 100%;
}

.dropdown-menu-wrapper .dropdown-toggle {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
  color: inherit;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  padding: 1rem 2rem;
  padding-left: 1.5rem;
  min-width: 100%;
  transition: background 0.4s, color 0.1s;
}

.dropdown-menu-wrapper .dropdown-toggle i {
  position: relative;
  top: 1px;
  border: none;
  font-size: 2.3rem;
  line-height: 1;
}

.dropdown-menu-wrapper .dropdown-toggle i:not(.normal-state) {
  display: none;
}

.dropdown-menu-wrapper.icon-left>a>i {
  order: -1;
  margin: 0 1.7rem 0 0;
}

.dropdown-menu-wrapper.icon-right .dropdown-toggle {
  justify-content: space-between;
}

.dropdown-menu-wrapper.dropdown.icon-hidden .dropdown-toggle i {
  display: none;
}

.dropdown-menu-wrapper:not(.open-toggle):hover .dropdown-menu,
.dropdown-menu-wrapper.show .dropdown-menu {
  display: block;
}

.dropdown-menu-wrapper:not(.open-toggle):hover .dropdown-toggle,
.dropdown-menu-wrapper.show .dropdown-toggle {
  color: #fff;
}

.dropdown-menu-wrapper:not(.open-toggle):hover .dropdown-toggle i,
.dropdown-menu-wrapper.show .dropdown-toggle i {
  display: block;
}

.dropdown-menu-wrapper:not(.open-toggle):hover .dropdown-toggle .normal-state,
.dropdown-menu-wrapper.show .dropdown-toggle .normal-state {
  display: none;
}

.dropdown-menu-wrapper .dropdown-menu {
  left: 0;
  width: 100%;
  margin: 0;
  border-radius: 0;
  border: none;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dropdown-menu-wrapper .dropdown-item {
  color: #666;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  border: 1px solid #ebebeb;
  border-top: none;
  padding: 0.9rem 1.9rem;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-menu-wrapper .dropdown-item.dropdown-item-lead {
  color: #333;
  font-weight: 500;
  background-color: #f9f9f9;
}

.dropdown-menu-wrapper .dropdown-item:hover,
.dropdown-menu-wrapper .dropdown-item:focus {
  background-color: #fff;
  outline: none !important;
}

.dropdown-menu-wrapper .dropdown-item:hover.dropdown-item-lead,
.dropdown-menu-wrapper .dropdown-item:focus.dropdown-item-lead {
  background-color: #f9f9f9;
}

.dropdown-menu-wrapper li p {
  padding: 0.9rem 1.9rem;
}

@media (max-width: 991px) {
  .dropdown-menu-wrapper {
    display: none;
  }
}

.menu-vertical,
.menu-vertical ul {
  margin: 0;
  padding: 0;
}

.menu-vertical li:hover .sub-menu {
  left: 100%;
  top: 0;
}

.menu-vertical>li>a {
  padding: 0.9rem 1.9rem;
}

.menu-vertical ul {
  min-width: 218px;
  padding: 1.6rem 0 2rem;
}

.menu-vertical .megamenu>ul {
  width: 893px;
  min-height: 100%;
}

.menu-vertical.sf-arrows>li>.menu-item-has-children>a {
  padding-right: 3rem;
}

.menu-vertical.sf-arrows .menu-item-has-children>a {
  position: relative;
}

.menu-vertical.sf-arrows .menu-item-has-children>a::after {
  content: "\f112";
  right: 1.8rem;
}

.menu-vertical>li {
  width: 100%;
}

.menu-vertical>li>a {
  display: block;
  color: #666;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  border: 1px solid #ebebeb;
  border-top: none;
}

.menu-vertical.menu li+li {
  margin: 0;
}

.menu-vertical i {
  display: inline-block;
  min-width: 3.4rem;
  margin-right: 1rem;
  color: #ccc;
  text-align: center;
}

.menu-vertical .menu-col {
  padding-left: 2rem;
  padding-right: 2rem;
  margin-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.menu-vertical .menu-col li>a {
  padding-left: 0;
  padding-right: 0;
}

.menu-vertical .menu-subtitle>a {
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #ebebeb;
}

@media (min-width: 992px) {
  .sticky-header.fixed {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1040;
  }

  .sticky-header.fixed.header-main .menu>li>a {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .sticky-wrapper .sticky-header.fixed {
    box-shadow: 0 3px 6px rgba(51, 51, 51, 0.05);
  }
}

.mobile-menu-container {
  position: fixed;
  left: -280px;
  top: 0;
  bottom: 0;
  z-index: 1069;
  background-color: #333;
  width: 100%;
  max-width: 280px;
  overflow-y: auto;
  box-shadow: 1px 0 6px 0 rgba(51, 51, 51, 0.5);
  will-change: transform;
  visibility: hidden;
  font-size: 10px;
  line-height: 1.5;
  transition: 0.4s;
}

.mobile-menu-container.molla-loading {
  position: fixed;
  opacity: 1;
}

.mobile-menu-container.molla-loading .mobile-menu-wrapper {
  opacity: 0;
}

.mobile-menu-container .mobile-menu-wrapper .btn i {
  margin: 0;
}

.mobile-menu-container .live-search-list {
  font-size: 12px;
}

.mobile-menu-container .live-search-list img {
  max-width: 50px;
  margin-right: 10px;
}

.mobile-menu-container .live-search-list .sale-price {
  margin-top: 5px;
}

.mobile-menu-container .tip {
  font-size: 8px;
}

.mobile-menu-wrapper {
  position: relative;
  padding: 42px 0;
  font-size: 1.2em;
}

.mobile-menu-wrapper .social-icons {
  justify-content: center;
  margin-bottom: 0;
}

.mobile-menu-wrapper .social-icons .social-icon {
  font-size: 1em;
  background-color: transparent;
  margin-bottom: 0;
  width: 30px;
  height: 30px;
}

.mobile-menu-wrapper .social-icons .social-icon+.social-icon {
  margin-left: 8px;
}

.mobile-menu-wrapper .social-icons .social-icon:hover,
.mobile-menu-wrapper .social-icons .social-icon:focus {
  background-color: transparent;
}

.mobile-menu-wrapper .social-icons-color .social-icon {
  border: 1px solid;
}

.mobile-menu-wrapper .menu-subtitle {
  margin: 0;
}

.mobile-menu-wrapper .mobile-search i {
  margin: 0;
}

.mobile-menu-wrapper .sub-menu {
  background-color: inherit;
}

.mobile-menu-wrapper .nav-link {
  color: #fff;
}

.mobile-menu-wrapper .mobile-search .search-wrapper .btn {
  padding: 8.5px 10px;
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 7px;
  right: 10px;
  padding: 0;
  z-index: 9;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  transition: color 0.35s;
}

.mobile-menu-overlay {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: -20px;
  background-color: rgba(25, 25, 25, 0.25);
  z-index: 1059;
  transition: 0.4s;
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 991px) {
  .mmenu-active .mobile-menu-overlay {
    visibility: visible;
    opacity: 1;
  }

  .mmenu-active .mobile-menu-container {
    visibility: visible;
    left: 0;
  }
}

.mobile-nav {
  padding: 0;
  margin: 0 0 25px;
}

.mobile-menu ul li.menu-item-has-children>a {
  padding-top: 6px;
  padding-bottom: 6px;
}

.mobile-menu {
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

.mobile-menu>li>a {
  text-transform: uppercase;
}

.mobile-menu .megamenu>.sub-menu {
  width: auto !important;
}

.mobile-menu .menu-grid-col>a {
  display: none;
}

.mobile-menu .menu-grid-col>ul>li>ul,
.mobile-menu .menu-grid-col>ul {
  border: none;
  padding: 0;
}

.mobile-menu .megamenu>ul .sub-menu {
  display: block;
}

.mobile-menu .megamenu>.sub-menu,
.mobile-menu>li:not(.megamenu) .sub-menu,
.mobile-menu .menu-subtitle>.sub-menu {
  padding: 7px 0 9px;
}

.mobile-menu .sub-menu {
  position: static;
  visibility: visible;
  opacity: 1;
  transition: none;
  box-shadow: none;
}

.mobile-menu .megamenu ul a {
  padding-left: 35px;
}

.mobile-menu li {
  display: block;
  position: relative;
}

.mobile-menu-wrapper .mobile-menu li a {
  border-color: rgba(255, 255, 255, 0.08);
}

.mobile-menu li a {
  position: relative;
  display: block;
  padding: 10px 45px 10px 20px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu li a:hover,
.mobile-menu li a:focus {
  text-decoration: none;
  outline: none !important;
}

.mobile-menu li ul {
  margin: 0;
  padding: 0;
  margin-bottom: 0;
}

.mobile-menu li ul li a {
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 35px;
  border-bottom: none;
}

.mobile-menu li ul li a:not(:hover):not(:focus) {
  color: rgba(255, 255, 255, 0.8);
}

.mobile-menu li ul li:last-child ul {
  border-bottom: none;
  padding-bottom: 0;
}

.mobile-menu li ul .menu-subtitle .sub-menu li a,
.mobile-menu li ul ul li a {
  padding-left: 50px;
}

.mobile-menu li ul ul ul li a {
  padding-left: 65px;
}

.mobile-menu li>.sub-menu,
.mobile-menu li.menu-subtitle>.sub-menu {
  display: none;
}

.mobile-menu li.menu-subtitle>a {
  display: block;
}

.mobile-menu .sf-with-ul>.sub-menu li {
  padding: 0;
}

.mobile-menu span:not(.mmenu-btn):not(.tip) {
  position: relative;
}

.mobile-menu i {
  width: 15px;
  margin-right: 10px;
  text-align: center;
  display: inline-block;
}

.mmenu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 10;
  width: 30px;
  height: 30px;
  font-size: 1em;
  margin-top: -15px;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  transition: color, transform 0.3s;
}

.mmenu-btn::after {
  font-family: "molla";
  content: "\f110";
  display: inline-block;
}

.open>a>.mmenu-btn {
  transform: rotate(-180deg);
}

.mobile-search {
  margin: 10px 0 15px;
  padding: 0 20px;
}

.mobile-search .form-control {
  height: auto;
  margin-bottom: 0;
  -webkit-appearance: none;
  font-size: 1em;
  line-height: 1.5;
  padding: 8px 15px;
  flex: 1 1 auto;
  background-color: #333;
  border-color: rgba(255, 255, 255, 0.1);
  border-right-width: 0;
}

.mobile-search .form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.mobile-search .form-control:focus {
  color: #fff;
  background-color: #333;
}

.mobile-search .live-search .form-control {
  height: 100%;
  width: 100%;
}

.mobile-search .search-wrapper .btn {
  font-size: 1em;
  min-width: 36px;
  padding: 8px 2px;
}

.mobile-menu-container .tab-content {
  padding: 0;
  margin: 0 0 25px;
  border: none;
}

.mobile-menu-container .tab-content .mobile-nav,
.mobile-menu-container .tab-content .mobile-cats-nav {
  margin-bottom: 0;
}

.mobile-menu-container .tab-pane {
  padding: 0;
}

.nav.nav-pills-mobile {
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 0 2px;
}

.nav.nav-pills-mobile .nav-item {
  flex-grow: 1;
  flex-basis: 0;
  margin: 0 0 -1px;
}

.nav.nav-pills-mobile .nav-link {
  font-weight: 600;
  font-size: 1.08em;
  line-height: 1.5;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  background: none;
  padding: 8px 20px;
  transition: 0.35s;
}

.mobile-cats-nav .mobile-menu>li>a {
  text-transform: capitalize;
}

.mobile-cats-menu>li>a {
  text-transform: none;
}

.mobile-cats-menu li a {
  position: relative;
  display: block;
  padding: 10px 45px 10px 20px;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-cats-menu li a.mobile-cats-lead {
  font-weight: 500;
  color: #fff;
}

.mobile-cats-menu li a:hover,
.mobile-cats-menu li a:focus {
  text-decoration: none;
  outline: none !important;
}

.mobile-menu-light {
  background-color: #fff;
}

.mobile-menu-light .mobile-menu-close:not(:hover):not(:focus) {
  color: #666;
}

.mobile-menu-light .social-icon {
  color: #999;
  border-color: #999;
}

.mobile-menu-light .mobile-menu li a {
  border-bottom-color: #efefef;
}

.mobile-menu-light .mobile-menu li a:not(:hover):not(:focus) {
  color: #666;
}

.mobile-menu-light .mobile-menu li ul {
  border-bottom-color: #efefef;
}

.mobile-menu-light .mobile-menu li ul li a:not(:hover):not(:focus) {
  color: #666;
}

.mobile-menu-light .mobile-menu li ul ul {
  border-top-color: #efefef;
}

.mobile-menu-light .mmenu-btn:not(:hover):not(:focus) {
  color: #666;
}

.mobile-menu-light .mobile-search .form-control {
  color: #666;
  background-color: #fff;
  border-color: #e5e5e5;
}

.mobile-menu-light .mobile-search .form-control::placeholder {
  color: #666;
}

.mobile-menu-light .mobile-search .form-control:focus {
  color: #666;
  background-color: #fff;
}

.mobile-menu-light .nav.nav-pills-mobile {
  border-bottom-color: #efefef;
}

.mobile-menu-light .nav.nav-pills-mobile .nav-item:not(:hover):not(:focus):not(.active) .nav-link {
  color: #333;
}

.mobile-menu-light .mobile-cats-menu li a {
  border-bottom-color: #efefef;
}

.mobile-menu-light .mobile-cats-menu li a:not(:hover):not(:focus) {
  color: #666;
}

.mobile-menu-light .mobile-cats-menu li a:not(:hover):not(:focus).mobile-cats-lead {
  color: #333;
}

.mobile-menu-light .nav-link {
  color: #333;
}

.widget li:not(:last-of-type) {
  margin-bottom: 0.9rem;
}

.widget li a {
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #666;
}

.widget .toggle {
  color: #666;
  font-size: 1rem;
  margin-left: auto;
}

.widget .count+.toggle {
  margin: 0 0 0 auto;
}

.widget .collapsed>a .toggle i:before {
  content: "\f110";
}

.widget .collapsed ul {
  display: none;
}

.widget .children {
  margin-bottom: 0;
}

.widget .children a {
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 1.5;
  color: #666;
  padding: 0.5rem 0;
}

.widget .children .cat-item {
  margin-bottom: 0;
}

.widget .widget-title {
  position: relative;
  display: block;
  color: #666;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.86;
  text-transform: capitalize;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  text-decoration: none;
  padding-right: 3rem;
}

.widget .widget-title a {
  color: inherit;
}

.widget .widget-title:after {
  color: #666;
  content: "\f110";
  display: block;
  font-family: "molla";
  font-size: 1.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.6rem;
  transition: transform 0.3s;
  margin-top: -1px;
}

.widget .widget-title.collapsed:after {
  content: "\e802";
  margin: 0;
}

.widget .widget-title:focus {
  outline: none !important;
}

.widget .widget-title:hover,
.widget .widget-title:focus {
  cursor: pointer;
}

.widget .widget-title:last-child:after {
  content: none;
}

.widget .widget-body {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.widget .woocommerce-widget-layered-nav .count {
  display: none;
}

.widget .item-count {
  min-width: 2.5rem;
  text-align: center;
  margin-left: auto;
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 1.6;
  border-radius: 0.6rem;
  color: #777;
  background-color: #f4f4f4;
}

.widget .yith-wcan-list li {
  padding-right: 1rem;
}

.widget.widget_categories .cat-item {
  padding-top: 0;
  padding-bottom: 0;
}

.widget .cat-item {
  position: relative;
  padding: 0.5rem 1.7rem 0.5rem 0;
}

.widget .cat-item .cat-item {
  padding-right: 0;
}

.widget .cat-item>a {
  display: flex;
  align-items: center;
}

.widget .cat-item.children {
  margin-bottom: 0;
}

.widget .cat-item.children li {
  margin: 0;
}

.widget .cat-item.children li:first-of-type {
  margin-top: 4px;
}

.widget .cat-item .count {
  margin-left: 10px;
}

.widget .cat-item .count {
  text-align: center;
  min-width: 2.5rem;
  height: 2rem;
  font-size: 1.3rem;
  line-height: 1.7;
  border-radius: 0.6rem;
  color: #777;
  background-color: #f4f4f4;
}

.widget.widget_price_filter {
  padding-bottom: 0.5rem;
}

.widget:last-child {
  margin-bottom: 1.5rem;
}

.widget .entry-meta a:hover,
.widget .entry-meta a:focus {
  box-shadow: none;
}

.widget .screen-reader-text,
.widget select {
  display: block;
}

.widget .screen-reader-text {
  margin-bottom: 1rem;
}

.widget.widget_pages .page_item {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.86;
}

.widget.widget_pages>ul>li>a {
  text-transform: uppercase;
}

.widget .menu {
  display: block;
}

.widget .menu li {
  margin: 0;
}

.widget .menu li a {
  padding: 0;
}

.widget .menu li {
  line-height: 27px;
}

.widget .menu>li>a {
  text-transform: uppercase;
  font-weight: 500;
}

.widget .menu ul {
  position: static;
  opacity: 1;
  visibility: visible;
  box-shadow: none;
}

.widget .menu ul.sub-menu {
  padding: 0;
}

.widget .menu ul li {
  padding: 0 0 0 6px;
}

.widget .menu>li>ul>li {
  padding: 0;
}

.widget_calendar table th,
.widget_calendar table td {
  text-align: center;
  vertical-align: middle;
}

.widget_calendar .wp-calendar-table {
  margin-bottom: 1rem;
}

.widget-related-products.widget .owl-carousel .owl-dots {
  margin-top: 0;
}

.widget_archive li li,
.widget_categories li li,
.widget_pages li li,
.widget_meta li li,
.widget_nav_menu li li {
  margin-left: 6px;
}

.widget>ul>li>ul>li {
  margin-left: 0;
}

.footer {
  width: 100%;
  background-color: #fff;
}

.footer a {
  color: inherit;
}

.footer .widget {
  margin-bottom: 3rem;
}

.footer .menu {
  display: flex;
  flex-flow: column wrap;
  align-items: flex-start;
}

.footer .menu li {
  display: inline-block;
  margin: 0;
}

.footer .menu a {
  padding: 0;
}

.footer .menu li+li {
  margin-top: 4px;
}

.footer .menu ul {
  padding: 4px 0;
  display: flex;
  flex-flow: column;
}

.footer .widget-title {
  padding: 0;
}

.footer .widget-title:after {
  content: none;
}

.footer .widget-title:hover {
  cursor: default;
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
  font-weight: 600;
}

.footer-bottom .inner-wrap {
  align-items: center;
  flex-direction: column;
}

.footer-bottom p,
.footer-bottom img,
.footer-bottom .widget {
  margin-bottom: 0;
}

.footer .footer-vertical .inner-wrap {
  flex-direction: column;
}

.footer-vertical .footer-center,
.footer-vertical .footer-right {
  margin-top: 2.5rem;
}

.footer-left,
.footer-right {
  flex: 1 1 auto;
}

.footer-left {
  order: 1;
}

.footer-center {
  order: 2;
}

.footer-right {
  order: 3;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
}

.footer-payments {
  display: block;
  margin-bottom: 0;
}

#scroll-top {
  width: 5rem;
  height: 5rem;
  position: fixed;
  right: 50px;
  bottom: 128px;
  z-index: 999;
  color: #cccccc;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  visibility: hidden;
  opacity: 0;
  border-radius: 0;
  border: none;
  background-color: #fafafa;
  font-size: 3rem;
  transition: 0.4s;
  transform: translateY(60px);
}

#scroll-top:hover,
#scroll-top:focus {
  color: #999;
  background-color: #eaeaea;
}

#scroll-top.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
}

.footer-bottom .social-icons {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.footer-bottom .social-icon {
  font-size: 1.3rem;
}

@media (min-width: 768px) {
  #scroll-top {
    display: flex;
  }
}

@media (min-width: 992px) {
  .footer-bottom .social-icons {
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 0;
  }

  .footer-bottom .inner-wrap {
    flex-direction: row;
  }

  .footer-payments {
    margin-right: 0;
  }
}

@media (max-width: 991px) {

  .footer-center,
  .footer-right {
    margin-top: 2.5rem;
  }

  #scroll-top {
    bottom: 60px;
  }
}

.title {
  font-size: 2.2rem;
  letter-spacing: -0.03em;
}

.heading {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
  word-break: break-word;
}

.heading .heading-content .heading-title,
.heading .heading-content .heading-subtitle {
  margin: 0;
}

.heading .title {
  margin-bottom: 0;
}

.heading.heading-center {
  text-align: center;
}

.heading.heading-center .title {
  margin-bottom: 1.5rem;
}

.heading.heading-center .title-lg {
  margin-bottom: 2.4rem;
}

.heading .toolbox {
  flex: none;
  width: auto;
}

@media (max-width: 991px) {
  .heading.heading-with-filter {
    display: block;
  }

  .heading.heading-with-filter>*+>* {
    margin-top: 2rem;
  }
}

.heading-border {
  border-bottom: 1px solid #ebebeb;
}

.title-separator {
  font-weight: 300;
  color: #cccccc;
}

.text-white .title-separator {
  color: #999999;
}

.title-desc {
  color: #999;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.heading-right {
  margin-top: 0.5rem;
}

.heading-title a {
  color: inherit;
}

.title-link {
  font-weight: 500;
  transition: 0.3s;
}

.title-link i {
  font-size: 1em;
}

.title-link i:last-child {
  margin-left: 0.5rem;
}

.heading-subtitle {
  margin-bottom: 0;
}

.heading-content {
  display: flex;
  flex-direction: column;
}

.t-decor-left,
.t-decor-right,
.t-decor-both {
  display: flex;
  align-items: center;
  width: 100%;
}

.t-decor-left:before,
.t-decor-right:before,
.t-decor-both:before,
.t-decor-left:after,
.t-decor-right:after,
.t-decor-both:after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: #f1f1f1;
}

.t-decor-left:before,
.t-decor-right:before,
.t-decor-both:before {
  margin-right: 2.5rem;
}

.t-decor-left:after,
.t-decor-right:after,
.t-decor-both:after {
  margin-left: 2.5rem;
}

.t-decor-left:after {
  display: none;
}

.t-decor-right:before {
  display: none;
}

@media (min-width: 768px) {
  .title {
    font-size: 2.4rem;
  }

  .title-lg {
    font-size: 3rem;
  }
}

@media (min-width: 992px) {
  .heading.heading-flex {
    align-items: center;
    flex-direction: row;
    text-align: left;
  }

  .heading-right {
    margin-top: 0;
    margin-left: auto;
  }
}

.page-header {
  padding: 5rem 0 5rem;
  background-color: #ebebeb;
}

.page-header .page-title {
  color: #333333;
  font: normal 400 3.2rem/1.1 "Poppins", sans-serif;
  letter-spacing: -0.025em;
  margin-bottom: 0;
  text-transform: capitalize;
}

.page-header .page-subtitle {
  display: block;
  font-weight: 400;
  font-size: 1.6rem;
  margin: 0.8rem 0 0;
}

.page-header .page-title,
.page-header .page-subtitle {
  word-break: break-word;
}

.page-header .woocommerce-breadcrumb {
  margin: 0;
  border: none;
  padding-bottom: 0;
}

.page-header .parallax-wrap+div {
  position: relative;
  z-index: 1;
}

.page-header .woocommerce-breadcrumb {
  background-color: transparent;
}

.page-header .breadcrumb {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .page-header .page-title {
    font-size: 3.6rem;
  }

  .page-header .page-subtitle {
    font-size: 1.8rem;
  }
}

@media (min-width: 992px) {
  .page-header .page-title {
    font-size: 4rem;
  }

  .page-header .page-subtitle {
    font-size: 2rem;
  }
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-breadcrumb {
  margin-bottom: 0;
}

.woocommerce .woocommerce-breadcrumb a,
.woocommerce-breadcrumb a,
.woocommerce .woocommerce-breadcrumb .breadcrumb-delimiter,
.woocommerce-breadcrumb .breadcrumb-delimiter {
  color: #999;
}

.woocommerce .woocommerce-breadcrumb .breadcrumb-delimiter i,
.woocommerce-breadcrumb .breadcrumb-delimiter i {
  font-size: 0.9em;
  position: relative;
  margin: 0 0.7rem;
}

.woocommerce .woocommerce-breadcrumb .filter-btn,
.woocommerce-breadcrumb .filter-btn {
  color: #333;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}

.woocommerce-breadcrumb {
  font-weight: 300;
}

.woocommerce-breadcrumb .filter-btn {
  margin-right: 3rem;
}

.woocommerce-breadcrumb.divider-active {
  margin-bottom: 2rem;
}

.breadcrumb-wrap .sidebar-toggler,
.breadcrumb-wrap .sidebar-toggler+.breadcrumb {
  display: inline-flex;
}

button:focus {
  outline: none;
}

.btn-wrap {
  display: flex;
  margin-bottom: 2rem;
}

.widget_shopping_cart_content .button,
.woocommerce .button {
  text-transform: capitalize;
}

.btn,
.woocommerce a.button,
input[type="submit"],
[class*="wp-block"] button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.85rem 5rem;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #212529;
  border-radius: 0;
  white-space: normal;
  background-color: transparent;
  border: 1px solid transparent;
  transition: 0.3s;
}

.btn span,
.woocommerce a.button span,
input[type="submit"] span,
[class*="wp-block"] button span {
  line-height: 1;
}

.btn i:first-child,
.woocommerce a.button i:first-child,
input[type="submit"] i:first-child,
[class*="wp-block"] button i:first-child {
  margin-left: 0;
  margin-right: 1rem;
}

.btn i,
.woocommerce a.button i,
input[type="submit"] i,
[class*="wp-block"] button i,
.btn.icon-after i,
.woocommerce a.button.icon-after i,
input[type="submit"].icon-after i,
[class*="wp-block"] button.icon-after i {
  margin-left: 1rem;
  margin-right: 0;
}

.btn:focus,
.woocommerce a.button:focus,
input[type="submit"]:focus,
[class*="wp-block"] button:focus {
  box-shadow: none;
}

.btn:focus,
.woocommerce a.button:focus,
input[type="submit"]:focus,
[class*="wp-block"] button:focus,
.btn:active,
.woocommerce a.button:active,
input[type="submit"]:active,
[class*="wp-block"] button:active {
  outline: none !important;
}

.btn:active:focus,
.woocommerce a.button:active:focus,
input[type="submit"]:active:focus,
[class*="wp-block"] button:active:focus {
  box-shadow: none !important;
}

.btn:hover,
.woocommerce a.button:hover,
input[type="submit"]:hover,
[class*="wp-block"] button:hover {
  color: #fff;
}

.btn span,
.btn i {
  vertical-align: middle;
}

.btn.btn-icon {
  background-color: transparent;
  color: #666;
}

.btn.btn-icon:hover,
.btn.btn-icon:focus,
.btn.btn-icon:active {
  background-color: transparent;
}

.woocommerce a.button,
input[type="submit"] {
  padding: 0.85rem 1rem;
}

.btn.icon-hidden i {
  width: 0;
  overflow: hidden;
  transition: width 0.3s, margin 0.3s, color 0s;
}

.btn.icon-hidden:not(:hover) i {
  margin: 0 !important;
}

.btn.icon-hidden:hover i {
  width: auto;
  margin-left: 1rem;
}

.btn.icon-hidden.btn-lg {
  min-width: 190px;
  padding: 1.3rem 1rem;
}

.btn.icon-hidden.btn-md {
  min-width: 170px;
  padding: 0.85rem 1rem;
}

.btn.icon-hidden.btn-sm {
  min-width: 130px;
  padding: 0.65rem 1rem;
}

.btn-rounded {
  border-radius: 0.2rem;
}

.btn-round {
  border-radius: 3rem;
}

.btn-lg {
  font-weight: 500;
  font-size: 1.5rem;
  padding: 1.3rem 7rem;
}

.btn-sm {
  font-size: 1.3rem;
  padding: 0.65rem 1.2rem;
}

.btn-more {
  position: relative;
  padding-top: 1.15rem;
  padding-bottom: 1.15rem;
  text-transform: capitalize;
}

.btn.btn-link {
  background-color: transparent !important;
}

.btn.btn-link {
  border-bottom: 1px solid transparent;
}

.btn-link {
  padding: 0.4rem 1rem;
  text-decoration: none;
  border: none;
  letter-spacing: 0;
}

.btn-link:hover,
.btn-link:focus {
  text-decoration: none;
}

.btn-hover-text {
  display: none;
}

.btn:hover .btn-text,
.btn:focus .btn-text {
  display: none;
}

.btn:hover .btn-hover-text,
.btn:focus .btn-hover-text {
  display: inline-block;
}

input[type="submit"],
[class*="wp-block"] button,
.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-dark,
.btn.btn-alert,
input[type="submit"]:hover,
[class*="wp-block"] button:hover,
.btn.btn-primary:hover,
.btn.btn-secondary:hover,
.btn.btn-dark:hover,
.btn.btn-alert:hover,
input[type="submit"]:focus,
[class*="wp-block"] button:focus,
.btn.btn-primary:focus,
.btn.btn-secondary:focus,
.btn.btn-dark:focus,
.btn.btn-alert:focus {
  color: #fff;
}

.btn.btn-outline,
.btn.btn-icon:active {
  background-color: transparent;
}

.btn-outline {
  border: 1px solid #ccc;
}

.btn.btn-outline:hover,
.btn.btn-outline:focus,
.btn:not(.btn-link):active {
  color: #fff;
}

.btn-dark {
  border-color: #343a40;
}

.btn-light {
  border-color: #fff;
}

.btn-light {
  color: #212529;
}

.btn-light:hover,
.btn-light:focus {
  color: #fff;
}

.btn.btn-shadow {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.btn.btn-shadow:hover,
.btn.btn-shadow:focus,
.btn.btn-shadow:active {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.btn.btn-shadow-hover:hover,
.btn.btn-shadow-hover:focus,
.btn.btn-shadow-hover:active {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.btn-aligned-justify>.btn {
  width: 100%;
}

.btn-aligned-left {
  text-align: left;
}

.btn-aligned-center {
  text-align: center;
}

.btn-aligned-right {
  text-align: right;
}

.yith-wcan-reset-navigation button {
  letter-spacing: 0;
}

.btn.btn-spinner {
  min-width: 0;
  color: #333333;
  padding: 13px 4px;
  font-size: 1rem;
  border: none;
  background: none;
}

.btn.btn-spinner i {
  margin: 0 !important;
}

.btn.btn-spinner:hover,
.btn.btn-spinner:focus,
.btn.btn-spinner:not(:disabled):not(.disabled):active {
  background-color: transparent;
}

.yith-wcwl-add-to-wishlist a:before,
.btn-product-icon:before,
.btn-product:before {
  font-family: "molla";
}

.btn-cart:before {
  content: "\e812";
  position: relative;
  top: -0.5px;
}

.btn-cart:not(.add_to_cart_button):not(.add_to_cart):before,
.btn-cart.product_type_variable:before,
.product-add-to-cart .btn-cart:not(.ajax_add_to_cart):before {
  content: "\e818";
  font-size: 19px;
}

.product-add-to-cart a.button.btn-cart {
  padding-left: 0;
  padding-right: 0;
}

section.background-color-none .banner-img .molla-lazyload {
  visibility: hidden;
}

.banner {
  font-size: 1rem;
  position: relative;
  margin-bottom: 2rem;
  -webkit-backface-visibility: hidden;
}

.banner.banner-full {
  height: 100vh;
}

.banner .banner-img img {
  height: 100%;
  object-fit: cover;
}

.creative-grid .banner {
  height: 100%;
}

@media (max-width: 575px) {
  .banner {
    font-size: 0.9rem;
  }
}

.banner .banner-img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.banner .banner-img img {
  display: block;
  width: 100%;
}

.banner .banner-img img:not(.molla-lazyload) {
  display: block !important;
}

.banner figure {
  margin-bottom: 0;
}

.banner.img-not-fixed {
  z-index: 1;
}

.banner .container,
.banner .banner-wrap-inner {
  min-height: inherit;
}

.banner .banner-wrap-inner {
  position: relative;
  height: 100%;
}

.elementor-widget-molla_banner .container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.banner .banner-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.banner-hover-default .banner-overlay:before {
  content: "";
  position: absolute;
  opacity: 0;
  transition: 0.5s;
}

.banner-hover-default .banner-overlay:before {
  background: rgba(0, 0, 0, 0.2);
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.banner-hover-default:hover .banner-overlay:before {
  opacity: 1;
}

.banner-hover-1 .banner-overlay:before,
.banner-hover-1 .banner-overlay:after {
  content: "";
  position: absolute;
  opacity: 1;
}

.banner-hover-1 .banner-overlay:before {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  left: 50%;
  right: 51%;
  top: 0;
}

.banner-hover-1 .banner-overlay:after {
  bottom: 50%;
  left: 0;
  right: 0;
  top: 50%;
}

.banner-hover-1:hover .banner-overlay:before,
.banner-hover-1:hover .banner-overlay:after {
  left: 0;
  right: 0;
  opacity: 0;
  transition: 0.5s linear;
}

.banner-hover-2 .banner-overlay {
  overflow: hidden;
}

.banner-hover-2 .banner-overlay:before,
.banner-hover-2 .banner-overlay:after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  height: 100%;
  left: 0;
  opacity: 0.4;
  top: 0;
  transition: 0.9s;
  width: 100%;
}

.banner-hover-2 .banner-overlay:before {
  transform: translate(105%, 0%);
}

.banner-hover-2 .banner-overlay:after {
  transform: translate(-105%, 0%);
}

.banner-hover-2:hover .banner-overlay:before,
.banner-hover-2:hover .banner-overlay:after {
  opacity: 0;
  transform: none;
}

.banner-hover-3 .banner-overlay {
  overflow: hidden;
}

.banner-hover-3 .banner-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 120%;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
  transition: 0.5s linear;
  backface-visibility: hidden;
}

.banner-hover-3:hover .banner-overlay:before {
  top: 100%;
  left: -100%;
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 200%, 0);
}

.banner-hover-4 .banner-overlay:before,
.banner-hover-4 .banner-overlay:after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
  transition: 0.5s;
}

.banner-hover-4 .banner-overlay:before {
  bottom: 0;
  left: 50%;
  right: 51%;
  top: 0;
}

.banner-hover-4 .banner-overlay:after {
  bottom: 50%;
  left: 0;
  right: 0;
  top: 50%;
}

.banner-hover-4:hover .banner-overlay:before,
.banner-hover-4:hover .banner-overlay:after {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.5;
}

.banner-scale figure {
  overflow: hidden;
}

.banner-scale figure img {
  transition: transform 0.4s;
}

.banner-scale:hover figure img {
  transform: scale(1.08);
}

.banner-scale .banner-overlay:before {
  z-index: 1;
}

.grid-item .banner-img img {
  height: 100%;
  object-fit: cover;
}

.grid-item .banner-img img.molla-lazyload {
  padding-top: 0 !important;
  height: 100% !important;
}

.banner.banner-menu img {
  height: 100%;
}

.banner-content {
  display: inline-block;
  position: absolute;
  z-index: 1;
}

.banner-content>.elementor-column-wrap,
.banner-content>.elementor-widget-wrap {
  height: 100%;
  -webkit-backface-visibility: hidden;
}

.content-static {
  position: static;
  transform: none;
}

.banner-title {
  color: #333333;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.banner-title a {
  color: inherit;
}

.banner-title a:hover,
.banner-title a:focus {
  text-decoration: none;
}

.banner-title.text-white a {
  color: #fff;
}

.banner-subtitle {
  color: #999999;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

.banner-subtitle a {
  color: inherit;
}

.banner-subtitle a:hover,
.banner-subtitle a:focus {
  text-decoration: none;
}

.banner-subtitle.text-white a {
  color: #fff;
}

.banner-link {
  font-weight: 400;
  display: inline-block;
}

.btn.banner-link {
  font-size: 1.4rem;
  line-height: 1;
  padding: 0.8rem 1.4rem;
  min-width: 0;
  text-transform: uppercase;
  text-decoration: none !important;
}

.btn.banner-link i {
  margin-right: 0;
  margin-left: 0;
}

.btn.banner-link i:first-child {
  margin-right: 0;
}

.btn.banner-link i:last-child {
  margin-left: 0.9rem;
}

.banner-overlay>a {
  position: relative;
}

.banner-overlay>a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(51, 51, 51, 0.25);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.banner-overlay.banner-overlay-light>a:after {
  background-color: rgba(255, 255, 255, 0.3);
}

.banner-overlay:hover>a:after,
.banner-overlay:focus>a:after {
  visibility: visible;
  opacity: 1;
}

.parallax-container {
  position: relative;
  overflow: hidden;
}

.parallax-container .banner-img img {
  opacity: 0;
  visibility: hidden;
}

.parallax-container .banner-content {
  z-index: 1;
}

.parallax-wrap {
  position: absolute;
  left: 0;
  right: 0;
  height: 170%;
}

.social-icons,
.yith-wcwl-share {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .sticky-sidebar>.social-icons {
    padding-top: 1.7rem;
    flex-flow: column wrap;
  }
}

.social-icons:not(.circle-type):not(.yith-wcwl-share)>a {
  width: auto;
  height: auto;
}

.circle-type .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  width: 4rem;
  height: 4rem;
  color: #999999;
  margin: 0;
  background-color: transparent;
  border: 1px solid #e1e2e6;
  border-radius: 50%;
  text-decoration: none;
  opacity: 1;
  transition: 0.35s;
}

.circle-type .social-icon:not(:last-child) {
  margin-right: 1rem;
}

.circle-type .social-icon.social-email {
  font-size: 1.8rem;
}

.circle-type .social-icon:hover,
.circle-type .social-icon:focus {
  color: #fff;
}

.social-icon,
.yith-wcwl-share li a {
  width: auto;
  height: auto;
  border: none;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:not(:last-child),
.yith-wcwl-share li a:not(:last-child) {
  margin-right: 2rem;
}

.social-label {
  margin-bottom: 0;
  margin-right: 2rem;
  line-height: 21px;
}

.sticky-content .social-label {
  line-height: 1;
  margin-bottom: 1rem;
}

.social-icons-sm .social-icon {
  font-size: 1.2rem;
  width: 3rem;
  height: 3rem;
}

.mobile-menu-container .circle-type .social-icon {
  border-color: #666;
}

.mobile-menu-light .circle-type .social-icon {
  border-color: #e1e2e6;
}

.social-icons-colored .social-facebook {
  color: #8f79ed;
}

.social-icons-colored.circle-type .social-icon.social-facebook {
  color: #fff;
  border-color: #8f79ed;
  background-color: #8f79ed;
}

.social-icons-colored.circle-type .social-icon.social-facebook:hover,
.social-icons-colored.circle-type .social-icon.social-facebook:focus {
  background-color: #fff !important;
  border-color: #d7d7d7 !important;
}

.social-icons-colored.circle-type .social-icon.social-facebook:hover.social-facebook,
.social-icons-colored.circle-type .social-icon.social-facebook:focus.social-facebook {
  color: #8f79ed;
}

.social-icons-colored .social-twitter {
  color: #79c8ed;
}

.social-icons-colored.circle-type .social-icon.social-twitter {
  color: #fff;
  border-color: #79c8ed;
  background-color: #79c8ed;
}

.social-icons-colored.circle-type .social-icon.social-twitter:hover,
.social-icons-colored.circle-type .social-icon.social-twitter:focus {
  background-color: #fff !important;
  border-color: #d7d7d7 !important;
}

.social-icons-colored.circle-type .social-icon.social-twitter:hover.social-twitter,
.social-icons-colored.circle-type .social-icon.social-twitter:focus.social-twitter {
  color: #79c8ed;
}

.social-icons-colored .social-instagram {
  color: #dd6d9a;
}

.social-icons-colored.circle-type .social-icon.social-instagram {
  color: #fff;
  border-color: #dd6d9a;
  background-color: #dd6d9a;
}

.social-icons-colored.circle-type .social-icon.social-instagram:hover,
.social-icons-colored.circle-type .social-icon.social-instagram:focus {
  background-color: #fff !important;
  border-color: #d7d7d7 !important;
}

.social-icons-colored.circle-type .social-icon.social-instagram:hover.social-instagram,
.social-icons-colored.circle-type .social-icon.social-instagram:focus.social-instagram {
  color: #dd6d9a;
}

.social-icons-colored .social-youtube {
  color: #e66262;
}

.social-icons-colored.circle-type .social-icon.social-youtube {
  color: #fff;
  border-color: #e66262;
  background-color: #e66262;
}

.social-icons-colored.circle-type .social-icon.social-youtube:hover,
.social-icons-colored.circle-type .social-icon.social-youtube:focus {
  background-color: #fff !important;
  border-color: #d7d7d7 !important;
}

.social-icons-colored.circle-type .social-icon.social-youtube:hover.social-youtube,
.social-icons-colored.circle-type .social-icon.social-youtube:focus.social-youtube {
  color: #e66262;
}

.social-icons-colored .social-pinterest {
  color: #e66262;
}

.social-icons-colored.circle-type .social-icon.social-pinterest {
  color: #fff;
  border-color: #e66262;
  background-color: #e66262;
}

.social-icons-colored.circle-type .social-icon.social-pinterest:hover,
.social-icons-colored.circle-type .social-icon.social-pinterest:focus {
  background-color: #fff !important;
  border-color: #d7d7d7 !important;
}

.social-icons-colored.circle-type .social-icon.social-pinterest:hover.social-pinterest,
.social-icons-colored.circle-type .social-icon.social-pinterest:focus.social-pinterest {
  color: #e66262;
}

.social-icons-colored .social-linkedin {
  color: #3399cc;
}

.social-icons-colored.circle-type .social-icon.social-linkedin {
  color: #fff;
  border-color: #3399cc;
  background-color: #3399cc;
}

.social-icons-colored.circle-type .social-icon.social-linkedin:hover,
.social-icons-colored.circle-type .social-icon.social-linkedin:focus {
  background-color: #fff !important;
  border-color: #d7d7d7 !important;
}

.social-icons-colored.circle-type .social-icon.social-linkedin:hover.social-linkedin,
.social-icons-colored.circle-type .social-icon.social-linkedin:focus.social-linkedin {
  color: #3399cc;
}

.social-icons-colored .social-tumblr {
  color: #2478ba;
}

.social-icons-colored.circle-type .social-icon.social-tumblr {
  color: #fff;
  border-color: #2478ba;
  background-color: #2478ba;
}

.social-icons-colored.circle-type .social-icon.social-tumblr:hover,
.social-icons-colored.circle-type .social-icon.social-tumblr:focus {
  background-color: #fff !important;
  border-color: #d7d7d7 !important;
}

.social-icons-colored.circle-type .social-icon.social-tumblr:hover.social-tumblr,
.social-icons-colored.circle-type .social-icon.social-tumblr:focus.social-tumblr {
  color: #2478ba;
}

.social-icons-colored .social-email {
  color: #111;
}

.social-icons-colored.circle-type .social-icon.social-email {
  color: #fff;
  border-color: #111;
  background-color: #111;
}

.social-icons-colored.circle-type .social-icon.social-email:hover,
.social-icons-colored.circle-type .social-icon.social-email:focus {
  background-color: #fff !important;
  border-color: #d7d7d7 !important;
}

.social-icons-colored.circle-type .social-icon.social-email:hover.social-email,
.social-icons-colored.circle-type .social-icon.social-email:focus.social-email {
  color: #111;
}

.social-icons-colored .social-googleplus {
  color: #3a589d;
}

.social-icons-colored.circle-type .social-icon.social-googleplus {
  color: #fff;
  border-color: #3a589d;
  background-color: #3a589d;
}

.social-icons-colored.circle-type .social-icon.social-googleplus:hover,
.social-icons-colored.circle-type .social-icon.social-googleplus:focus {
  background-color: #fff !important;
  border-color: #d7d7d7 !important;
}

.social-icons-colored.circle-type .social-icon.social-googleplus:hover.social-googleplus,
.social-icons-colored.circle-type .social-icon.social-googleplus:focus.social-googleplus {
  color: #3a589d;
}

.social-icons-colored .social-vk {
  color: #cb2320;
}

.social-icons-colored.circle-type .social-icon.social-vk {
  color: #fff;
  border-color: #cb2320;
  background-color: #cb2320;
}

.social-icons-colored.circle-type .social-icon.social-vk:hover,
.social-icons-colored.circle-type .social-icon.social-vk:focus {
  background-color: #fff !important;
  border-color: #d7d7d7 !important;
}

.social-icons-colored.circle-type .social-icon.social-vk:hover.social-vk,
.social-icons-colored.circle-type .social-icon.social-vk:focus.social-vk {
  color: #cb2320;
}

.social-icons-colored .social-whatsapp {
  color: #0072b7;
}

.social-icons-colored.circle-type .social-icon.social-whatsapp {
  color: #fff;
  border-color: #0072b7;
  background-color: #0072b7;
}

.social-icons-colored.circle-type .social-icon.social-whatsapp:hover,
.social-icons-colored.circle-type .social-icon.social-whatsapp:focus {
  background-color: #fff !important;
  border-color: #d7d7d7 !important;
}

.social-icons-colored.circle-type .social-icon.social-whatsapp:hover.social-whatsapp,
.social-icons-colored.circle-type .social-icon.social-whatsapp:focus.social-whatsapp {
  color: #0072b7;
}

@media (max-width: 991px) {
  .social-icons-vertical {
    margin-bottom: 2rem;
    justify-content: flex-start;
  }
}

.testimonial .icon:before {
  display: block;
  font-family: "molla";
  content: "\f10d";
  font-style: normal;
  font-weight: normal;
  font-size: 2.6rem;
  line-height: 1;
  color: #cc9966;
}

.testimonial {
  margin: 0;
  border: none;
  padding: 0;
  width: 100%;
  color: #999;
  font-size: 1.6rem;
  background-color: transparent;
}

.testimonial:before {
  content: none;
}

.testimonial img,
.owl-carousel .testimonial img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.testimonial cite {
  display: inline-block;
  font-style: normal;
  color: #333333;
}

.testimonial cite span {
  display: block;
}

.testimonial .avatar,
.testimonial cite,
.testimonial .comment {
  margin-bottom: 1.5rem;
}

.testimonial .avatar {
  display: inline-block;
}

.testimonial .content {
  flex: 1;
}

.testimonial .comment {
  font-size: 1.6rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial.aside,
.testimonial.aside_info .commenter {
  display: inline-flex;
}

.testimonial.aside .avatar,
.testimonial.aside_info .avatar {
  margin-right: 1.5rem;
}

.testimonial.top_info cite {
  display: block;
}

.testimonial .name {
  font-weight: 500;
  letter-spacing: -0.01em;
}

.testimonial .job {
  display: block;
  font-weight: 300;
  font-size: 1.4rem;
}

.testimonial .numeric:before {
  content: attr(data-rating);
  display: block;
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
}

.star-rating.fa-icon:before,
.star-rating.fa-icon span:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f005" "\f005" "\f005" "\f005" "\f005";
}

.star-rating.fa-icon.outline:before {
  font-weight: 400;
  content: "\f005" "\f005" "\f005" "\f005" "\f005";
}

.star-rating.outline:before {
  content: "\f31b" "\f31b" "\f31b" "\f31b" "\f31b";
}

.owl-testimonials.owl-theme .owl-nav [class*="owl-"] {
  top: 65px;
}

.owl-testimonials-photo.owl-theme .owl-nav [class*="owl-"] {
  top: 110px;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group .form-control,
.form-group .select-custom {
  margin-bottom: 0;
}

.form-control {
  padding: 0.85rem 2rem;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 300;
  color: #999999;
  background-color: #fafafa;
  border: 1px solid #ebebeb;
  border-radius: 0;
  max-width: 100%;
  margin-bottom: 2rem;
  transition: 0.3s;
  box-shadow: none;
}

select.form-control:not([size]):not([multiple]) {
  height: 40px;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url(../../images/select-bg.svg) 96% 49%/26px 60px no-repeat;
}

.screen-reader-text {
  margin-right: 1rem;
}

.form-control-white {
  border-color: #fff;
}

.form-control:focus {
  box-shadow: none;
  outline: none !important;
}

textarea.form-control {
  min-height: 130px;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.form-control-rounded {
  border-radius: 0.2rem;
}

input,
textarea {
  max-width: 100%;
}

.input-group {
  display: block;
}

.input-group-round .form-control {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.input-group-round>.input-group-append>.btn {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.input-spinner {
  position: relative;
}

.input-spinner .input-group-prepend,
.input-spinner .input-group-append {
  position: absolute;
  top: 0;
}

.input-spinner .input-group-prepend {
  left: 0;
}

.input-spinner .input-group-append {
  right: 0;
}

.input-spinner .form-control {
  padding: 0.85rem 2.6rem;
  height: auto;
  border-color: #dadada;
  background-color: #fff;
  margin: 0;
}

.input-spinner .form-control[disabled] {
  background-color: #f9f9f9;
}

label {
  color: #666666;
  font-weight: 300;
  font-size: 1.4rem;
  margin: 0 0 1.1rem;
}

.form-text {
  color: #999999;
  line-height: 1.5;
  margin-top: 0;
}

.form-control+.form-text {
  margin-top: -0.5rem;
  margin-bottom: 0.6rem;
}

small.form-text {
  font-size: 85%;
}

.required-field>label::after {
  content: "*";
  color: #e02b27;
  font-size: 1.2rem;
  margin: 0 0 0 0.45rem;
}

.required {
  color: #e02b27;
  font-size: 1.2rem;
}

.required+.form-footer {
  margin-top: 0.8rem;
}

.form-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 0.6rem;
}

.select-custom {
  background-color: #fff;
}

.select-custom select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none;
  position: relative;
  z-index: 1;
}

.select-custom select:focus {
  background-color: transparent;
}

.select-custom:after {
  font-family: "molla";
  content: "\f110";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.3rem;
}

.select-custom .form-control,
.select-custom .form-control-sm {
  background-color: transparent;
  padding-right: 4rem;
}

.toolbox .woocommerce-notices-wrapper {
  flex: 1 1 100%;
}

.select-custom,
.toolbox-sort form {
  position: relative;
  margin-bottom: 1rem;
}

.select-custom select,
.toolbox-sort form select {
  -webkit-appearance: none;
  appearance: none;
}

.form-group-custom-control {
  margin-top: 2rem;
}

.form-group-custom-control .custom-control {
  margin-top: 0;
  margin-bottom: 2rem;
}

.form-group-custom-control+.form-group-custom-control {
  margin-top: -0.5rem;
}

.form-group-custom-control .custom-control-label {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.woocommerce-form__label {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.woocommerce-form__label input:focus:not(:checked)~span:before,
.woocommerce-form__label input:focus:not(:checked)~label:before {
  border-color: #dadada;
}

input[type="checkbox"],
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
}

.woocommerce-checkout #payment ul.payment_methods li input {
  margin: 0;
}

.woocommerce input[type="checkbox"]~label,
.woocommerce input[type="checkbox"]~span,
.woocommerce input[type="radio"]~label,
.woocommerce input[type="radio"]~span {
  line-height: 1.3;
}

input[type="checkbox"]~label,
input[type="checkbox"]~span,
input[type="radio"]~label,
input[type="radio"]~span {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-bottom: 0;
  margin-top: 1px;
  font-size: 1.4rem;
  padding-left: 2.6rem;
  line-height: 1.3;
  letter-spacing: 0;
}

input[type="checkbox"]~label:before,
input[type="checkbox"]~span:before,
input[type="radio"]~label:before,
input[type="radio"]~span:before,
input[type="checkbox"]~label:after,
input[type="checkbox"]~span:after,
input[type="radio"]~label:after,
input[type="radio"]~span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
}

input[type="checkbox"]~label:before,
input[type="checkbox"]~span:before,
input[type="radio"]~label:before,
input[type="radio"]~span:before {
  background-color: #f9f9f9;
  border: 1px solid #dadada;
  box-shadow: none !important;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

input[type="checkbox"]~label:after,
input[type="checkbox"]~span:after,
input[type="radio"]~label:after,
input[type="radio"]~span:after {
  transition: opacity 0.1s;
}

input[type="checkbox"]~label:hover,
input[type="checkbox"]~span:hover,
input[type="radio"]~label:hover,
input[type="radio"]~span:hover {
  cursor: pointer;
}

input[type="checkbox"]~label:before,
input[type="checkbox"]~span:before {
  border-radius: 0;
}

input[type="checkbox"]~label:after,
input[type="checkbox"]~span:after {
  color: #fff;
  background-image: none;
  font-size: 1rem;
  font-family: "molla";
  content: "\ec2d";
  line-height: 1.6em;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}

input[type="checkbox"]:checked~span:before,
input[type="checkbox"]:checked~label:before {
  color: #fff;
  border-color: #333;
  background-color: #333;
}

input[type="checkbox"]:indeterminate~span:before,
input[type="checkbox"]:indeterminate~label:before {
  background-color: #333;
}

input[type="checkbox"]:disabled:checked~span:before,
input[type="checkbox"]:disabled:checked~label:before {
  background-color: rgba(51, 51, 51, 0.5);
}

input[type="checkbox"]:disabled:indeterminate~span:before,
input[type="checkbox"]:disabled:indeterminate~label:before {
  background-color: rgba(51, 51, 51, 0.5);
}

input[type="checkbox"]:checked~span:after,
input[type="checkbox"]:checked~label:after {
  background-image: none;
  opacity: 1;
  visibility: visible;
}

input[type="radio"]~label {
  position: relative;
}

input[type="radio"]~label:before {
  background-color: #f9f9f9;
  border-color: #dadada;
  border-radius: 50%;
}

input[type="radio"]:checked~label:before {
  background-color: #fff;
}

input[type="radio"]:checked~label:after {
  border-radius: 50%;
  width: 0.6rem;
  height: 0.6rem;
  top: 50%;
  left: 0.5rem;
  transform: translateY(-50%);
}

input[type="radio"]:checked~label:after {
  background-image: none !important;
  z-index: 2;
}

.form-control-tooltip {
  position: relative;
  padding-right: 4rem;
}

.form-control-tooltip .input-tooltip {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 2.4rem;
  color: #777;
  transform: translateY(-50%);
  transition: 0.3s;
}

.form-control-tooltip .input-tooltip:hover,
.form-control-tooltip .input-tooltip:focus {
  color: #000;
}

.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range,
.noUi-horizontal {
  height: 3px;
  top: 50%;
  transform: translateY(-50%);
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background-color: #fff;
  border: 1px solid #555;
}

#price_slider {
  position: relative;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

#price_slider:before {
  content: "";
  position: absolute;
  height: 3px;
  top: calc(50% - 1px);
  left: 0;
  right: 0;
  background: #ebebeb;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  background-color: transparent;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
  background-color: #333;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  color: #333333;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: -0.01em;
  text-align: center;
  white-space: nowrap;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  top: 100%;
  margin-top: 1rem;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  outline: none;
}

[class*="searchform"] .search-wrapper {
  display: flex;
}

[class*="searchform"] .search-wrapper input {
  margin-bottom: 0;
}

[class*="searchform"] .search-wrapper .btn {
  padding: 0.85rem 1rem;
  min-width: 0;
}

[class*="searchform"] .form-control {
  width: 100%;
  height: 100%;
}

.search-wrapper {
  position: relative;
}

.woocommerce form.comment-form>p,
.woocommerce .lost_reset_password.woocommerce-ResetPassword>p {
  padding: 0;
}

.wpcf7-display-none {
  display: none !important;
}

.wpcf7-form>p {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  margin: 0 auto;
  padding: 0 1rem;
}

form.wpcf7-form .ajax-loader {
  display: none;
  background-image: none;
}

.wpcf7-form-control {
  padding: 1.15rem 2rem;
  border-radius: 0;
  font-size: 1.4rem;
  color: #999;
  font-weight: 300;
  line-height: 1.5;
}

.wpcf7-form-control::placeholder {
  font-size: inherit;
}

.wpcf7-form .wpcf7-submit {
  font-weight: 400;
  white-space: nowrap;
  margin-bottom: 2rem;
  padding-left: 3.4rem;
  padding-right: 2.4rem;
}

.wpcf7-submit:after {
  content: "\f274";
  font-family: "molla";
  position: relative;
  top: -1px;
  margin-left: 1rem;
}

.wpcf7-form-control-wrap {
  display: block;
  flex: 1;
  margin-bottom: 2rem;
}

.wpcf7-form-control-wrap .wpcf7-form-control {
  height: 100%;
  margin-bottom: 0;
}

.wpcf7-form-control-wrap[class*="textarea-"] {
  flex: 0 0 100%;
  max-width: 100%;
}

.wpcf7-form-control-wrap[class*="textarea-"] textarea {
  height: 130px;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
  direction: ltr;
}

@media (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  select::-ms-expand {
    display: none;
  }

  select:focus::-ms-value {
    background: transparent;
    color: currentColor;
  }
}

.tooltip-wrapper {
  position: relative;
}

.tooltip-wrapper:hover .tooltip {
  opacity: 1;
  visibility: visible;
  margin: 0;
}

.tooltip {
  position: absolute;
  padding: 13px 20px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  left: 50%;
  margin: 0 0 -20px 0;
  transform: translateX(-50%);
  bottom: calc(100% + 20px);
  color: #333;
}

.tooltip:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top: 9px solid #fff;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
}

.tooltip:after {
  content: "";
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  height: 20px;
}

.tooltip.left-tooltip {
  top: 50%;
  right: calc(100% + 20px);
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
  margin: 0 -20px 0 0;
}

.tooltip.left-tooltip:before {
  top: 50%;
  right: auto;
  left: 100%;
  transform: translateY(-50%);
  border-left: 9px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.tooltip.left-tooltip:after {
  top: auto;
  left: 100%;
  width: 20px;
  height: 100%;
}

.tooltip.right-tooltip {
  top: 50%;
  left: calc(100% + 20px);
  bottom: auto;
  transform: translateY(-50%);
  margin: 0 0 0 -20px;
}

.tooltip.right-tooltip:before {
  top: 50%;
  right: 100%;
  left: auto;
  transform: translateY(-50%);
  border-right: 9px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.tooltip.right-tooltip:after {
  top: 0;
  left: auto;
  right: 100%;
  width: 20px;
  height: 100%;
}

.tooltip.bottom-tooltip {
  top: calc(100% + 20px);
  bottom: auto;
  margin: -20px 0 0 0;
}

.tooltip.bottom-tooltip:before {
  top: auto;
  bottom: 100%;
  transform: translateX(-50%);
  border-top: none;
  border-bottom: 9px solid #fff;
}

.tooltip.bottom-tooltip:after {
  top: auto;
  bottom: 100%;
  width: 100%;
  height: 20px;
}

table {
  margin-bottom: 3rem;
  border-spacing: 0;
}

table th,
table thead th,
table td {
  border-top: none;
  border-bottom: 1px solid #ebebeb;
}

table th,
table td {
  padding: 1rem;
  vertical-align: top;
}

.table th,
.woocommerce table.shop_table.cart th {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #999999;
  padding: 1.4rem 1rem 1.4rem 0;
}

.shop_table:not(.woocommerce-checkout-review-order-table) td.product-name {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #333333;
  margin-bottom: 0.2rem;
}

.shop_table:not(.woocommerce-checkout-review-order-table) td.product-name a {
  font-size: inherit;
  color: inherit;
}

@media (min-width: 768px) {
  .woocommerce table.shop_table.cart {
    border: none;
  }
}

ul.page-numbers {
  border-radius: 0;
  align-items: center;
  margin-bottom: 2rem;
  display: flex;
}

.pagination {
  flex: 0 0 100%;
  position: relative;
}

.page-links {
  clear: both;
}

.page-links>* {
  margin-left: 3px;
}

li .page-numbers,
.post-page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 4rem;
  font-weight: 400;
  font-size: 1.4rem;
  padding: 0 0.3rem;
  line-height: 1;
  color: #706f6c;
  border-radius: 0.3rem;
  background-color: transparent;
  border: 1px solid transparent;
}

li .page-numbers i,
.post-page-numbers i {
  font-size: 1.5rem;
}

li .page-numbers.prev,
.post-page-numbers.prev {
  margin-right: 1.7rem;
}

li .page-numbers.prev i,
.post-page-numbers.prev i {
  margin-left: 0;
  margin-right: 1rem;
}

li .page-numbers.next,
.post-page-numbers.next {
  margin-left: 1.8rem;
}

li .page-numbers.next i,
.post-page-numbers.next i {
  margin-left: 1rem;
  margin-right: 0;
}

li .page-numbers.current,
.post-page-numbers.current {
  background-color: transparent;
  border-color: #ebebeb;
}

li .page-numbers.prev,
.post-page-numbers.prev,
li .page-numbers.next,
.post-page-numbers.next {
  padding-left: 1rem;
  padding-right: 1rem;
  min-width: 80px;
}

li .page-numbers:hover,
.post-page-numbers:hover,
li .page-numbers:focus,
.post-page-numbers:focus {
  box-shadow: none;
  border-color: #ebebeb;
  text-decoration: none;
  background-color: transparent;
  outline: none !important;
}

li.disabled .page-numbers {
  border-color: transparent;
  color: #999;
  pointer-events: none;
  cursor: auto;
}

.page-item-total {
  color: #cccccc;
  font-size: 1.4rem;
  font-weight: 400;
  margin-left: 1.2rem;
}

ul.page-numbers li+li {
  margin-left: 0.4rem;
}

.owl-carousel .owl-nav [class*="owl-"] {
  opacity: 0;
  transition: 0.3s;
}

.owl-carousel button.owl-prev {
  transform: translateX(-100%);
}

.owl-carousel button.owl-next {
  transform: translateX(100%);
}

.owl-carousel:hover .owl-nav [class*="owl-"],
.owl-carousel:focus .owl-nav [class*="owl-"] {
  transform: translateX(0);
}

.owl-carousel:hover .owl-nav [class*="owl-"],
.owl-carousel:focus .owl-nav [class*="owl-"] {
  opacity: 1;
}

.owl-carousel:hover .owl-nav [class*="owl-"].disabled,
.owl-carousel:focus .owl-nav [class*="owl-"].disabled {
  opacity: 0.7;
}

.owl-carousel.owl-nav-show .owl-nav [class*="owl-"] {
  opacity: 1;
  transform: none;
}

.owl-carousel.owl-nav-show:hover .owl-nav [class*="owl-"],
.owl-carousel.owl-nav-show:focus .owl-nav [class*="owl-"] {
  transform: none;
}

.owl-carousel .owl-stage:after {
  content: none;
}

.owl-carousel.owl-image-org img {
  width: auto;
}

.owl-carousel:not(.owl-loaded)>* {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.owl-image-gallery.owl-loaded .owl-stage,
.owl-image-gallery.owl-loaded figure {
  display: flex;
}

.owl-image-gallery:not(.owl-image-org) .slide-image-wrap a,
.owl-image-gallery:not(.owl-image-org) .slide-image-wrap img {
  width: 100%;
  height: 100%;
}

.owl-image-gallery figure {
  height: 100%;
}

.owl-dots {
  margin-top: 10px;
}

.owl-dot {
  position: relative;
}

.owl-full:not(.owl-top) .owl-nav button.disabled {
  visibility: hidden;
  opacity: 0;
}

.owl-carousel .owl-carousel .owl-nav {
  display: none;
}

.owl-full.carousel-with-shadow .owl-nav [class*="owl-"] {
  height: 100%;
}

.owl-carousel.owl-nav-rounded .owl-nav [class*="owl-"] {
  font-size: 2.4rem;
  width: 6rem;
  height: 6rem;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(34, 34, 34, 0.2);
}

.owl-carousel.owl-nav-rounded .owl-nav [class*="owl-"]:not(.disabled):hover {
  background-color: #fff;
}

.owl-carousel.owl-nav-rounded.owl-nav-top .owl-nav [class*="owl-"] i {
  font-size: 1.4rem;
}

.owl-nav [class*="owl-"]:focus {
  outline: none;
}

.owl-full .owl-nav .owl-prev {
  left: auto;
  right: 100%;
  box-shadow: 10px 0 10px -10px rgba(0, 0, 0, 0.3);
}

.owl-full .owl-nav .owl-next {
  left: 100%;
  right: auto;
  box-shadow: -10px 0 10px -10px rgba(0, 0, 0, 0.3);
}

.owl-full .owl-nav .owl-prev:before,
.owl-full .owl-nav .owl-next:before {
  content: none;
}

.owl-nav-inside.owl-full .owl-nav .owl-prev {
  left: 0;
  right: auto;
}

.owl-nav-inside.owl-full .owl-nav .owl-next {
  left: auto;
  right: 0;
}

.owl-loading .owl-stage {
  display: flex;
}

.owl-carousel.owl-full .owl-nav [class*="owl-"]:hover,
.owl-full .owl-nav [class*="owl-"]:focus {
  background: #fff;
  text-decoration: none;
  outline: none !important;
}

.carousel-with-shadow .owl-stage-outer {
  padding: 1rem 1.5rem 2rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.carousel-with-shadow .owl-dots {
  margin: 0;
}

.carousel-with-shadow .owl-nav {
  margin-bottom: 0;
}

.carousel-equal-height .owl-stage,
.carousel-equal-height .owl-item {
  display: flex;
  align-items: stretch;
}

.carousel-equal-height .product {
  width: 100%;
}

.carousel-equal-height section,
.carousel-equal-height section>[class*="elementor-column"],
.carousel-equal-height section>[class*="elementor-column"]>.elementor-row,
.carousel-equal-height .owl-item>.elementor-element>.elementor-column-wrap>.elementor-widget-wrap>.elementor-widget,
.carousel-equal-height .owl-item>.elementor-element>.elementor-column-wrap>.elementor-widget-wrap>.elementor-widget>.elementor-widget-container,
.carousel-equal-height .owl-item>.elementor-element>.elementor-widget-wrap>.elementor-widget,
.carousel-equal-height .owl-item>.elementor-element>.elementor-widget-wrap>.elementor-widget>.elementor-widget-container,
.carousel-equal-height .owl-item>* {
  height: 100%;
}

@media (max-width: 479px) {
  .carousel-with-shadow .owl-stage-outer {
    padding: 1rem 1rem 2rem;
    margin-left: -1rem;
    margin-right: -1rem;
  }
}

.products .owl-stage,
.posts .owl-stage {
  display: flex;
}

.products .owl-item>div,
.posts .owl-item>div,
.posts .owl-item article {
  height: 100%;
}

.products-simple-loop.owl-carousel {
  text-align: center;
}

.products-simple-loop .owl-stage-outer {
  text-align: left;
  padding-bottom: 7rem;
  margin-bottom: -7rem;
}

.products-simple-loop .owl-dots {
  position: relative;
  display: inline-block;
}

.related-posts .owl-stage-outer {
  padding-bottom: 1rem;
}

.owl-nav-top .owl-nav {
  position: absolute;
  display: flex;
  align-items: center;
}

.owl-carousel.owl-nav-top .owl-nav [class*="owl-"] {
  position: static;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  width: 30px;
  height: 30px;
  margin-top: 0;
}

.owl-carousel.owl-nav-top .owl-nav .owl-prev {
  margin-right: 1rem;
}

.owl-carousel:not(.owl-loaded) {
  display: flex;
  display: -ms-flexbox;
  overflow: hidden;
  flex-wrap: nowrap;
}

.owl-carousel.products-classic-loop .owl-dots,
.owl-carousel.products-card-loop .owl-dots {
  margin-top: 3rem;
}

.owl-carousel.products-classic-loop .owl-stage-outer,
.owl-carousel.products-card-loop .owl-stage-outer {
  padding-bottom: 12rem;
  margin-bottom: -12rem;
}

.owl-carousel.products-classic-loop:after,
.owl-carousel.products-card-loop:after {
  content: "";
  display: table;
  clear: both;
}

.owl-carousel .owl-item>.elementor-column {
  width: 100%;
}

@media (max-width: 1199px) {
  .owl-carousel.owl-nav-outer .owl-nav button {
    display: none;
  }
}

.member {
  max-width: 376px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background-color: #fff;
  transition: 0.3s;
}

.member p {
  max-width: 240px;
  color: #ccc;
}

.member.text-center p {
  margin-left: auto;
  margin-right: auto;
}

.member.text-center .social-icons {
  justify-content: center;
}

.member img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.member-media {
  position: relative;
  margin: 0;
}

.member-content {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  overflow: hidden;
}

.member-title {
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0;
  margin-bottom: 0;
}

.member-title span {
  display: block;
  color: #999999;
  font-weight: 300;
  font-size: 1.4rem;
  margin-top: 0.3rem;
}

.member-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(102, 102, 102, 0.7);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.member-overlay .member-title {
  color: inherit;
  margin-bottom: 1.5rem;
}

.member-overlay .member-title span {
  color: #ebebeb;
}

.member-overlay .social-icons {
  margin-top: 2.7rem;
}

.member-overlay .social-icon {
  font-size: 1.5rem;
}

.member-overlay .social-icon+.social-icon {
  margin-left: 2.8rem;
}

.member-overlay .social-icon:not(:hover) {
  color: inherit;
}

.member-content,
.member-overlay {
  transition: 0.45s;
}

.member:hover .member-overlay {
  visibility: visible;
  opacity: 1;
}

.member:hover.member-anim .member-content {
  opacity: 0;
}

.member:hover.member-anim .member-overlay .member-title,
.member:hover.member-anim .member-overlay p,
.member:hover.member-anim .member-overlay .social-icons {
  animation-name: fadeInUpShort;
  animation-duration: 0.65s;
  animation-fill-mode: both;
}

.member:hover.member-anim .member-overlay p {
  animation-delay: 0.1s;
}

.member:hover.member-anim .member-overlay .social-icons {
  animation-delay: 0.2s;
}

.member:hover.member-anim .member-title {
  animation-name: fadeOutUpShort;
  animation-duration: 0.65s;
  animation-fill-mode: both;
}

.member-frame {
  background-color: #fff;
  max-width: 277px;
  margin-left: auto;
  margin-right: auto;
}

.member-frame .member-content {
  visibility: visible;
  opacity: 1;
  padding-top: 1.7rem;
  padding-bottom: 2.7rem;
}

.member-frame .member-overlay {
  color: #333333;
  background-color: rgba(249, 249, 249, 0.7);
}

.member-frame .member-overlay .social-icons {
  margin-top: 0;
  margin-bottom: 0;
}

@keyframes fadeInUpShort {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeOutUpShort {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
}

.mfp-close-btn-in .mfp-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  width: 3rem;
  height: 3rem;
  font-size: 1.8rem;
}

.mfp-close-btn-in .mfp-close:active {
  top: 1.5rem;
}

.icon-box {
  color: #999999;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  display: flex;
  flex-flow: column wrap;
}

.icon-box .icon-box-title {
  margin: 0;
}

.icon-box i {
  display: block;
}

.icon-box.icon-box-side {
  flex-flow: row;
}

.icon-box .icon-box-desc {
  margin: 0;
}

.icon-box.icon-inner-content {
  flex-flow: column;
}

.icon-box.icon-inner-content .icon-box-icon {
  display: flex;
  align-items: center;
}

.icon-box.icon-box-bordered {
  position: relative;
}

.icon-box.icon-box-bordered:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #ebebeb;
}

.icon-box-icon.icon-stacked i,
.icon-box-icon.icon-framed i {
  padding: 20px;
}

.icon-box-icon.icon-stacked i {
  color: #fff;
}

.icon-box-icon.icon-framed i {
  border: 2px solid;
  background-color: #fff;
}

.icon-box-icon:not(.icon-default).icon-circle i {
  border-radius: 50%;
}

.icon-box .icon-box-title {
  color: #333333;
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: -0.025em;
  margin-bottom: 0.9rem;
}

.icon-box-title,
.icon-box-desc {
  word-break: break-word;
}

.icon-box-icon {
  font-size: 4rem;
  line-height: 1;
}

.icon-box-content p:last-child {
  margin-bottom: 0;
}

.icon-box-left {
  position: relative;
  padding-left: 70px;
}

.icon-box-left .icon-box-icon {
  position: absolute;
  left: 0;
  top: -1rem;
}

.icon-box-circle .icon-box-icon {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  color: #fff;
  background-color: #cc9966;
}

.icon-box-circle.icon-box-left {
  padding-left: 100px;
}

.icon-box-circle.icon-box-left .icon-box-icon {
  left: 1rem;
}

.icon-box-card {
  background-color: #fafafa;
  padding: 6.5rem 2rem 6rem;
}

.icon-box-card .icon-box-title {
  font-weight: 600;
}

.icon-box-card .icon-box-icon {
  margin-bottom: 1.3rem;
}

.icon-boxes-container {
  background-color: #f7f7f7;
  padding-top: 2.8rem;
  padding-bottom: 2.8rem;
  margin-bottom: 0;
}

.icon-boxes-container.bg-dark .icon-box-icon {
  color: #666666;
}

.icon-boxes-container.bg-dark .icon-box-title {
  color: #fff;
}

.icon-box-side {
  display: flex;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 0;
}

.icon-box-side .icon-box-icon {
  display: inline-block;
  line-height: 0;
  text-align: center;
  margin-bottom: 0;
}

.icon-box-side .icon-box-title {
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .icon-box {
    margin-bottom: 4rem;
  }

  .icon-box-side {
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .icon-boxes-separator [class*="col-"]+[class*="col-"]:before {
    content: "";
    display: block;
    width: 1px;
    height: 5.3rem;
    background-color: #e9e9e9;
    position: absolute;
    left: -0.3rem;
    top: 50%;
    margin-top: -2.55rem;
  }
}

@media (max-width: 1199px) {
  .icon-box-sm br {
    display: none;
  }
}

@keyframes pulsate {
  0% {
    transform: scale(1.3);
    opacity: 0.8;
  }

  45% {
    transform: scale(2.1);
    opacity: 0;
  }
}

.elementor-element.elementor-widget-molla_hotspot {
  position: absolute;
  width: auto;
}

.hotspot-wrapper {
  color: #fff;
  z-index: 1;
}

.hotspot {
  display: block;
}

.hotspot-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  background-color: #222;
  transition: 0.3s;
}

.hotspot-inner:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: inherit;
  opacity: 0;
  z-index: -1;
  transform: translate3d(0, 0, 0);
  will-change: scale;
  -webkit-animation: pulsate 3.5s ease-out infinite;
  animation: pulsate 3.5s ease-out infinite;
}

.hotspot-inner:hover,
.hotspot-inner:focus {
  color: inherit;
}

.hotspot-inner.btn-quickview:before {
  content: none;
}

.hotspot-product .tooltip {
  width: 250px;
  padding: 3px;
}

.hotspot-product .product .product-title {
  margin-bottom: 10px;
}

.hotspot-product .product .price {
  margin-bottom: 5px;
}

.hotspot-product .product .price {
  font-size: 1.4rem;
}

.hotspot-product .product .btn-cart {
  border: none;
  text-transform: capitalize;
}

.hotspot-product .product .btn-cart:before {
  content: none;
}

.hotspot-product .product .product-action {
  display: inline-block;
  position: static;
  opacity: 1;
  transform: none;
}

.hotspot-product .product .product-action .btn-cart {
  padding: 1rem 0;
  background-color: transparent;
}

.hotspot-product .product .product-body {
  padding: 0 0 0 1.6rem;
}

.hotspot-product .added_to_cart {
  display: none;
}

@keyframes progress-bar-stripes {
  0% {
    background-position: 1rem 0;
  }

  100% {
    background-position: 0 0;
  }
}

.progress-bar {
  height: 15px;
  background-color: #ebebeb;
  border-radius: 3px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar .progress-size {
  position: relative;
  width: 0;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.progress-bar .progress-size.negative {
  width: 100%;
}

.progress-bar .progress-size:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background-size: 1rem 1rem;
  background-image: linear-gradient(45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent);
  animation: progress-bar-stripes 1s linear infinite;
}

.more-container {
  margin-top: 2rem;
  margin-bottom: 6rem;
}

.infinite-scroll~.more-container {
  margin: 0;
  padding-bottom: 20px;
}

.btn-more {
  border: 1px solid #d7d7d7;
}

.btn-more:hover,
.btn-more:focus {
  color: #fff;
}

.icon-box-card {
  background-color: transparent;
  padding: 2rem;
}

.icon-box-icon {
  color: #333;
  font-size: 3.4rem;
}

.mfp-ready.mfp-bg {
  opacity: 0.4;
}

.mfp-bg.molla-loading {
  position: fixed;
  height: 100vh !important;
}

.mfp-container .mfp-content .quickView-content {
  padding: 4rem;
  background-color: #fff;
}

.mfp-container .mfp-content .quickView-content::-webkit-scrollbar {
  display: none;
}

.mfp-container .mfp-content .quickView-content .carousel-dot img {
  transition: 0.3s;
  opacity: 0.6;
}

.mfp-container .mfp-content .quickView-content .carousel-dot.active img {
  opacity: 1;
  box-shadow: 0 0 0 1px #c96;
}

.mfp-container .mfp-content .quickView-content .carousel-dot:hover img,
.mfp-container .mfp-content .quickView-content .carousel-dot:focus img {
  opacity: 1;
}

.mfp-container .mfp-content .quickView-content .product-gallery-carousel,
.mfp-container .mfp-content .quickView-content .product-image-gallery {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  padding: 0;
}

.mfp-container .mfp-content .quickView-content .summary .ratings-text {
  display: none;
}

.mfp-container .mfp-content .quickView-content .ratings-container {
  display: flex;
}

.mfp-container .mfp-content .quickView-content .ratings-container .ratings-text {
  display: block;
}

@media (min-width: 992px),
(max-width: 767px) and (min-width: 576px) {
  .mfp-container .mfp-content .quickView-content.vertical .product-gallery-carousel {
    flex: 0 0 80%;
    max-width: 80%;
    padding: 0 5px;
    margin-bottom: 0;
  }

  .mfp-container .mfp-content .quickView-content.vertical .product-image-gallery {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 5px;
    margin-bottom: 0;
  }
}

.mfp-container .mfp-content .quickView-content .product-gallery .row {
  margin-left: 0;
  margin-right: 0;
}

.mfp-container .mfp-content .quickView-content .product-gallery a {
  max-width: none;
  flex: none;
}

.mfp-container .mfp-content .quickView-content .images {
  margin-bottom: 0;
}

.mfp-container .mfp-content .quickView-content .images>row {
  flex-flow: column;
}

.mfp-container .mfp-content .quickView-content.horizontal .product-image-gallery {
  margin-bottom: 0;
  order: 13;
}

.mfp-container .mfp-content .quickView-content .yith-wcwl-add-to-wishlist {
  padding: 7px 0;
}

.mfp-container .mfp-content .quickView-content .entry-summary {
  margin-bottom: 0;
  margin-top: 0;
}

.mfp-container .mfp-content .quickView-content .product_meta {
  padding: 1rem 0;
}

.mfp-container .mfp-content .quickView-content .product-meta-wrap {
  margin-right: 2rem;
}

.mfp-container .mfp-content .quickView-content .product-meta-wrap {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.mfp-container .mfp-content .quickView-content form.cart .quantity {
  margin-bottom: 2rem;
}

.mfp-container .mfp-content .quickView-content form.cart .button {
  margin-right: 4rem;
}

.mfp-container .mfp-content .quickView-content form.cart .yith-wcwl-add-to-wishlist {
  display: inline-block;
}

.mfp-molla-lightbox .mfp-content {
  width: 100%;
  height: 100%;
  display: inline-flex;
}

.mfp-molla-lightbox .mfp-container {
  animation-duration: 0.55s;
  animation-fill-mode: none;
  padding: 0;
}

.mfp-molla-lightbox .molla-lightbox-container {
  max-width: 100%;
  display: inline-flex;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.mfp-molla-lightbox .molla-lightbox-content {
  flex: 0 0 100%;
}

.mfp-molla-lightbox.mfp-bg {
  z-index: 1079;
}

.mfp-molla-lightbox.mfp-wrap {
  z-index: 1089;
}

.zoomWindowContainer .zoomWindow {
  height: 100% !important;
}

.quickView-content .product-gallery-carousel .owl-nav button {
  top: 50%;
  margin: 0;
  border: none;
  font-size: 3rem;
  color: #fff;
  transform: translateY(-50%);
}

.quickView-content .product-gallery-carousel .owl-nav .owl-prev {
  left: 30px;
  right: auto;
}

.quickView-content .product-gallery-carousel .owl-nav .owl-prev i:before {
  content: "\f111";
}

.quickView-content .product-gallery-carousel .owl-nav .owl-next {
  left: auto;
  right: 30px;
}

.quickView-content .product-gallery-carousel .owl-nav .owl-next i:before {
  content: "\f112";
}

.quickView-content .product-intro {
  margin-bottom: 0;
}

.quickView-content .entry-summary {
  -webkit-mask-image: linear-gradient(to top, transparent 5px, #000 20px);
  mask-image: linear-gradient(to top, transparent 5px, #000 20px);
  -webkit-overflow-scrolling: touch;
}

.quickView-content .entry-summary::-webkit-scrollbar {
  width: 4px;
  background: rgba(0, 0, 0, 0.1);
}

.quickView-content .entry-summary::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
}

.quickView-content .product form.grouped_form tr {
  display: block;
}

.mfp-container .mfp-content .quickView-content form.grouped_form .quantity {
  margin-bottom: 0;
}

.quickView-content .product form.grouped_form .woocommerce-grouped-product-list-item__quantity {
  display: block;
}

@media (min-width: 992px) {
  .quickView-content .entry-summary {
    max-height: 530px;
    overflow-y: auto;
  }

  .quickView-content.vertical .entry-summary {
    max-height: 500px;
    overflow-y: auto;
  }

  .quickView-content .summary.entry-summary {
    padding-right: 1rem;
  }
}

.container.quickView-container {
  width: 576px;
}

@media (min-width: 992px) {
  .container.quickView-container {
    width: 950px;
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .mfp-container .mfp-content .quickView-content .summary {
    margin-top: 2rem;
  }

  .quickView-content {
    max-height: 90vh;
    overflow: scroll;
  }
}

.quickView-container {
  position: relative;
}

.quickView-container button.mfp-close {
  color: #666;
  font-size: 1.8rem;
  top: 1.5rem;
  left: auto;
  right: 3rem;
  display: block;
  width: 2rem;
  height: 2rem;
}

@media (min-width: 1200px) {
  .quickView-content>.row .product-fullscreen {
    flex: 0 0 calc(50% + 2rem);
    max-width: calc(50% + 2rem);
    padding-left: 0;
    padding-right: 0;
  }
}

.mfp-wrap .mfp-content {
  transition: 0.35s;
  opacity: 0;
}

.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

@media (max-width: 575px) {
  .mfp-container .mfp-content .quickView-content {
    padding: 2rem;
  }

  .quickView-container button.mfp-close {
    top: 0.5rem;
    right: 2.5rem;
    font-size: 14px;
  }
}

@media (max-width: 479px) {
  .quickView-container button.mfp-close {
    right: 1.5rem;
  }
}

.section-scroll-nav,
.section-scroll-btn {
  position: fixed;
  z-index: 999;
  top: 50%;
  transform: translateY(-50%);
}

.section-scroll-nav {
  font-size: 1.3rem;
  right: 7rem;
}

.section-scroll-nav a {
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  transition: 0.3s;
}

.section-scroll-nav .active a {
  height: 18px;
  border-radius: 3rem;
}

.section-scroll-nav li:hover span {
  opacity: 1;
  padding-right: 1.5rem;
  right: calc(100% + 10px);
}

.section-scroll-nav li+li {
  margin-top: 10px;
}

.section-scroll-nav span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -9999px;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  white-space: nowrap;
  border-radius: 3px;
  color: #fff;
  background-color: #222;
  opacity: 0;
  transition: opacity 0.2s, padding 0.4s;
}

.section-scroll-nav ul {
  margin: 0;
}

@media (max-width: 991px) {
  .section-scroll-nav {
    right: 3rem;
  }
}

.section-scroll-btn {
  left: 7rem;
  transform: rotate(90deg);
}

.fit-video .wp-video,
.fit-video video {
  width: 100% !important;
  height: auto;
}

.owl-carousel .owl-item .mejs-poster-img {
  display: none;
}

.wpml-ls-menu-item .wpml-ls-flag {
  max-width: 18px;
}

.wpml-ls-menu-item .wpml-ls-display,
.wpml-ls-menu-item .wpml-ls-native {
  color: inherit;
}

.widget-title {
  color: #333;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.fill {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.canvas-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 340px;
  padding: 20px;
  z-index: 9999;
  transform: translateX(100%);
  background-color: #fff;
  transition: transform 0.4s;
}

.sidebar-overlay {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(25, 25, 25, 0.25);
  z-index: 1059;
  transition: 0.4s;
  visibility: hidden;
  opacity: 0;
}

.canvas-overlay {
  display: block;
}

.canvas-active .canvas-container {
  transform: none;
}

.canvas-active .canvas-overlay {
  opacity: 1;
  visibility: visible;
}

.canvas-active .sticky-header .canvas-container,
.canvas-active .sticky-header .canvas-overlay {
  min-height: 100vh;
}

@media (max-width: 575px) {
  .canvas-container {
    width: 280px;
  }
}

@keyframes tab_animation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.tabs>li>a:focus {
  outline: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs:before,
.woocommerce div.product .woocommerce-tabs ul.tabs:after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background-color: transparent;
  border: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-weight: 400;
  border-bottom: 2px solid transparent;
}

.tabs {
  border-bottom-right-radius: 0.3rem;
  border: 1px solid #d7d7d7;
  border-top-width: 0;
  border-right-width: 0;
  border-left-width: 0;
}

.tabs>li>a {
  color: #999999;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  padding: 0.85rem 2.2rem;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
  text-align: center;
  transition: 0.35s;
}

.tabs>li+li {
  margin-left: 1px;
}

.tabs.justify-content-center {
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.wc-tabs-wrapper .panel,
.wc-tab {
  animation: 0.3s linear tab_animation;
}

.tab-content-border {
  border: 1px solid #d7d7d7;
  border-radius: 0.3rem;
  border-top-left-radius: 0;
  border-top-width: 0;
}

.justify-content-center+.tab-content-border {
  border-top-left-radius: 0.3rem;
}

.tab-pane {
  padding: 1.4rem 2.2rem;
}

.tab-pane p:last-child {
  margin-bottom: 0;
}

.nav.nav-pills .nav-link {
  color: #999999;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  padding: 0.45rem 1rem;
  border-radius: 0;
  text-align: center;
  text-transform: uppercase;
  border: none;
  border-bottom: 1px solid transparent;
}

.nav.nav-pills .nav-link:focus {
  outline: none !important;
}

.nav.nav-pills .nav-item.show .nav-link,
.nav.nav-pills .nav-item.active .nav-link {
  border-bottom: 2px solid #d7d7d7;
}

.nav .nav-item+.nav-item {
  margin-left: 1.5rem;
}

.nav-pills+.tab-content .tab-pane {
  padding: 1.4rem 0;
}

.nav-pills+.tab-content .tab-pane p:last-child {
  margin-bottom: 0;
}

.tabs-vertical {
  display: flex;
  align-items: flex-start;
  align-items: stretch;
}

.tabs-vertical .tab-content-border {
  border-top-width: 1px;
  border-left-width: 0;
  border-bottom-left-radius: 0;
}

.tabs-vertical .nav {
  flex-shrink: 0;
}

.tabs-vertical .nav .nav-link {
  min-width: 100px;
}

.tabs-vertical .nav.nav-tabs {
  border-bottom-width: 0;
  border-right-width: 1px;
}

.tabs-vertical .nav.nav-tabs .nav-link {
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0.3rem;
}

.tabs-vertical .nav.nav-tabs .nav-item {
  margin-bottom: 0;
  margin-right: -1px;
}

.tabs-vertical .nav.nav-tabs .nav-item+.nav-item {
  margin-left: 0;
  margin-top: 1px;
}

.tabs-vertical .nav.nav-tabs .nav-item.show .nav-link,
.tabs-vertical .nav.nav-tabs .nav-item.active .nav-link {
  border-color: #d7d7d7;
  border-right-color: transparent;
}

.fade:not(.show) {
  opacity: 0;
}

.fade {
  transition: opacity 0.15s linear;
}

.nav-link {
  display: block;
}

.tab-pane {
  display: block;
  position: relative;
  visibility: hidden;
  height: 0 !important;
  opacity: 0;
  top: 0;
  transition: opacity 0.3s, visibility 0.3s, top 0.3s;
}

.tab-pane:not(.active) {
  top: 13px;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.vertical .tab-pane:not(.active) {
  top: auto;
}

.tab-pane.active {
  opacity: 1;
  height: auto !important;
  visibility: visible;
}

.nav.nav-border-anim .nav-link {
  position: relative;
  border-bottom: none;
}

.nav.nav-border-anim .nav-link:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
  transform-origin: right center;
  transform: scale(0, 1);
  transition: transform 0.3s ease;
}

.form-tab .nav.nav-border-anim .nav-link:before {
  height: 0.2rem;
}

.nav.nav-border-anim .active .nav-link:before {
  transform-origin: left center;
  transform: scale(1, 1);
}

.nav.nav-border-anim.nav-pills-mobile .nav-link:before {
  height: 0.2rem;
}

.nav-filter li+li {
  margin-left: 0.8rem;
}

.filter-toggler {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #333333;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 34px;
  letter-spacing: -0.01em;
  margin-right: 3rem;
  padding-left: 2.4rem;
}

.filter-toggler i {
  margin-right: 0.8rem;
}

.filter-toggler:before {
  content: "\f131";
  display: block;
  position: absolute;
  left: -0.2rem;
  top: 50%;
  margin-top: -0.5px;
  transform: translateY(-50%);
  font-family: "molla";
  font-size: 1.9rem;
  line-height: 1;
}

@media (min-width: 992px) {
  .filter-toggler.active:before {
    content: "\f191";
  }
}

@media (max-width: 991px) {
  .filter-toggler:before {
    content: "\f131";
  }

  .sidebar-active .filter-toggler:before {
    content: "\f191";
  }

  .nav-filter.product-filter {
    display: flex !important;
  }
}

.nav-filter {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}

.nav-filter a {
  display: inline-block;
  padding: 0.4rem 1rem;
}

.tab-section {
  display: flex;
  flex-flow: row wrap;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.tab-section .nav,
.tab-section .tab-pane {
  flex: 0 0 100%;
}

.tab-section .tab-pane {
  padding: 1.4rem 2.2rem;
}

.tab-section.vertical {
  flex-wrap: nowrap;
}

.tab-section.vertical .nav,
.tab-section.vertical .tab-pane {
  flex-basis: auto;
}

.tab-section.vertical .nav .nav-item+.nav-item {
  margin-left: 0;
}

.tab-section .nav-item {
  transition: background-color 0.3s;
}

.tab-section .nav .active a {
  position: relative;
}

.tab-section .nav .active a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  right: 0;
  bottom: -1px;
  background-color: #fff;
}

.tab-section.vertical>.nav .active a::after {
  right: -1px;
  bottom: 0;
  width: 1px;
  height: 100%;
}

.tab-section.vertical .nav {
  flex-direction: column;
}

.tab-section .nav.nav-pills .active a:after,
.tab-section .nav.nav-border-anim .active a:after {
  content: none;
}

.tab-section .tab-pane:not(.active) {
  width: 0;
  min-width: 0;
}

.tab-section .tab-pane.active {
  flex: 1 1 auto;
}

@media (min-width: 992px) {
  .nav-pills+.tab-content .tab-pane {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

#customer_login {
  position: relative;
}

#customer_login .tab-content {
  padding: 0;
  border: none;
  border-top: 1px solid #dadada;
}

#customer_login .tab-content form {
  margin: 0;
  padding: 0;
}

#customer_login .tab-content form>* {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 1.3rem;
}

#customer_login .tab-content form .form-footer .form-row {
  margin-right: 1rem;
  margin-bottom: 1rem;
}

#customer_login .tab-content form .lost_password {
  margin-bottom: 1rem;
}

#customer_login .woocommerce-form-row label {
  margin-bottom: 1.1rem;
}

.dashboard-wrap {
  margin-top: 3rem;
  padding-bottom: 4rem;
  margin-bottom: 1rem;
}

.woocommerce-MyAccount-content p {
  color: #999;
}

.woocommerce-MyAccount-content strong {
  font-weight: 400;
  color: #333;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
}

.mfp-login-form.mfp-ready .mfp-content {
  opacity: 0;
}

.mfp-login-form .mfp-content {
  max-width: 575px;
  transform: translateY(-30px);
}

.mfp-login-form.mfp-removing .mfp-content {
  transform: translateY(-30px) !important;
}

.form-box {
  max-width: 575px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding: 2.2rem 4rem 4.4rem;
  box-shadow: 0 3px 16px rgba(51, 51, 51, 0.1);
}

.form-box .socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -10px;
}

.form-box .social-button {
  width: 217.5px;
  margin: 10px;
  padding: 8.5px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 300;
  border: 1px solid #ebebeb;
  color: #333;
}

.form-box .social-button:hover,
.form-box .social-button:focus,
.form-box .social-button:active {
  background-color: #f5f6f9;
  border-color: #ebebeb;
  color: #333;
}

.form-box .social-button span {
  line-height: 1.5;
}

.form-box .social-button.facebook i {
  color: #36c;
  min-width: 14px;
}

.form-box .social-button.google i {
  color: #c33;
}

.form-box .social-button.twitter i {
  color: #1aa9e1;
}

.form-box button.button {
  min-width: 115px;
  line-height: 1.5;
  text-transform: uppercase;
}

.form-box button.button:after {
  content: "\f274";
  font-family: "molla";
  margin-left: 1rem;
  line-height: 1;
}

.form-box button.button.btn-g i {
  color: #cc3333;
  min-width: 2.6rem;
}

.form-box button.button.btn-f i {
  color: #3366cc;
}

.form-box button.button:hover,
.form-box button.button:focus {
  background-color: #f5f6f9;
}

.form-box .nav.nav-pills {
  color: #333333;
  border-bottom: 1px solid #ebebeb;
}

.form-box .nav.nav-pills .nav-item {
  margin-bottom: -2px;
}

.form-box .nav.nav-pills .nav-item+.nav-item {
  margin-left: 0;
}

.form-box .nav.nav-pills .nav-item.active .nav-link {
  color: inherit;
}

.form-box .nav.nav-pills .nav-link {
  text-transform: capitalize;
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: -0.025em;
  color: inherit;
  border-bottom-width: 0.2rem;
  padding: 0.9rem 1rem;
}

.form-box .nav-fill .nav-item {
  flex: 1;
}

.form-box .tab-content .tab-pane {
  padding: 0;
}

.form-box .form-group {
  margin-bottom: 1.3rem;
}

.form-box .tab-content .form-footer {
  padding-top: 0.6rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 2.3rem;
  justify-content: space-between;
}

.form-box .tab-content .form-footer input[type="checkbox"]~span {
  margin-top: 0;
}

.form-box .tab-content .form-footer .form-row {
  margin-bottom: 0;
  padding-top: 0;
}

.form-box .tab-content .form-footer>* {
  padding: 0;
}

.form-box .tab-content .form-footer .btn {
  margin-left: auto;
  margin-top: 1rem;
  order: 2;
  width: 100%;
}

.form-box .tab-content .form-footer a {
  color: inherit;
  border: none;
}

.form-box .tab-content .form-footer .custom-control {
  margin: 0;
}

.form-box .tab-content .form-footer .forgot-link {
  order: -1;
  width: 100%;
  margin-bottom: 0.6rem;
}

@media (max-width: 479px) {
  .form-box {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.woocommerce-breadcrumb.divider-active+.logged-out {
  margin-top: -2rem;
}

.myaccount-content.logged-out>div {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

#customer_login .form-footer .form-row {
  display: flex;
  align-items: center;
}

#customer_login .woocommerce-form-register .form-footer .custom-checkbox label {
  margin: 1rem 0;
}

#customer_login .tab-content {
  padding-top: 2rem;
}

.form-choice {
  color: #333333;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.form-choice p {
  margin-bottom: 2.7rem;
}

.form-choice .col-sm-6:not(:last-child) {
  margin-bottom: 0.6rem;
}

@media (min-width: 576px) {
  .form-choice .col-sm-6:not(:last-child) {
    margin-bottom: 0;
  }

  .form-tab .form-footer .btn {
    width: auto;
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .form-box {
    padding: 3.7rem 6rem 6.4rem;
  }

  .myaccount-content.logged-out>div {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .form-tab .nav.nav-pills .nav-link {
    font-size: 2.4rem;
  }

  .form-tab .form-footer .btn {
    margin-left: 0;
    margin-right: 1.6rem;
    order: -1;
  }

  .form-tab .form-footer .forgot-link {
    order: 2;
    width: auto;
    margin-bottom: 0;
    margin-left: auto;
  }
}

.p-relative {
  position: relative !important;
}

.mt-5 {
  margin-top: 2.5rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.mb-7 {
  margin-bottom: 3.5rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.mb-6 {
  margin-bottom: 3rem !important;
}

.pt-10 {
  padding-top: 5rem !important;
}

.pb-10 {
  padding-bottom: 5rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mb-8 {
  margin-bottom: 4rem !important;
}

@media (min-width: 992px) {
  .mb-lg-1 {
    margin-bottom: 0.5rem !important;
  }
}

@media (max-width: 991px) {
  .mt-lg-max-0 {
    margin-top: 0 !important;
  }

  .mb-lg-max-0 {
    margin-bottom: 0 !important;
  }

  .pt-lg-max-0 {
    padding-top: 0 !important;
  }

  .pb-lg-max-0 {
    padding-bottom: 0 !important;
  }
}

.sp-20 {
  margin-left: -10px;
  margin-right: -10px;
  width: calc(100% + 20px);
}

.sp-20>* {
  padding: 10px !important;
}

.sp-10 {
  margin-left: -5px;
  margin-right: -5px;
  width: calc(100% + 10px);
}

.sp-10>* {
  padding: 5px !important;
}

.t-x-left {
  transform: translateX(0);
}

.t-x-left.t-y-top {
  transform: translate(0, 0);
}

.t-x-left.t-y-center {
  transform: translate(0, -50%);
}

.t-x-center {
  transform: translateX(-50%);
}

.t-x-center.t-y-top {
  transform: translate(-50%, 0);
}

.t-x-center.t-y-center {
  transform: translate(-50%, -50%);
}

.t-y-top {
  transform: translateY(0);
}

.t-y-center {
  transform: translateY(-50%);
}

.elementor-section {
  display: flex;
  justify-content: center;
}

.elementor-section .elementor-container {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.elementor-section-with-masonry {
  flex-wrap: wrap;
}

.elementor-section>.elementor-column-gap-narrow {
  width: calc(100% + 10px);
  margin-left: -5px;
  margin-right: -5px;
}

.elementor-section>.elementor-column-gap-extended {
  width: calc(100% + 30px);
  margin-left: -15px;
  margin-right: -15px;
}

.elementor-section>.elementor-column-gap-wide {
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
}

.elementor-section>.elementor-column-gap-wider {
  width: calc(100% + 60px);
  margin-left: -30px;
  margin-right: -30px;
}

.elementor-element.elementor-section>.elementor-container.container-fluid {
  max-width: 1920px;
  width: 100%;
}

.elementor-widget-wrap.owl-carousel.owl-loaded.owl-drag {
  display: block;
}

.elementor-editor-active .elementor.elementor-edit-area-active .owl-item .elementor-element.elementor-section {
  margin-top: 0;
}

[class*="elementor-col"] {
  padding: 0;
}

.elementor-element .banner {
  margin-bottom: 0;
}

.banner .banner-content {
  width: auto;
}

.banner.img-not-fixed .banner-content {
  width: 100%;
}

.banner .banner-content-inner {
  height: 100%;
}

.banner-content>.elementor-column-wrap>.elementor-widget-wrap,
.banner-content>.elementor-widget-wrap.molla-elementor-column-wrap {
  display: block;
}

.elementor .elementor-widget-heading hr {
  margin: 1rem auto;
}

.elementor-section>.elementor-container {
  padding-left: 0;
  padding-right: 0;
}

.elementor .elementor-widget-wrap.owl-carousel.owl-loaded {
  display: block;
}

.elementor-row .elementor-column {
  min-height: 0;
}

.background-image-none>.elementor-background-overlay {
  z-index: 1;
}

.elementor-background-overlay {
  background-color: transparent;
  opacity: 0;
}

.elementor-background-overlay~.nav-filter {
  position: relative;
}

.accordion .panel-body>.elementor-element {
  flex: 1 1 100%;
  width: 100%;
}

.btn.btn-video.elementor-custom-embed-image-overlay {
  position: static;
  transform: none;
  width: auto;
}

.elementor-custom-embed-image-overlay.parallax-container img {
  visibility: hidden;
}

.banner>.elementor-widget-video {
  flex-grow: 0;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991px) {
  .elementor-lightbox .elementor-video-container {
    width: 90%;
  }
}

.swiper-slide-inner {
  display: flex;
  align-items: center;
}

body:not(.loaded) .swiper-slide {
  width: auto;
  flex: 1;
}

body.elementor-editor-active .elementor.elementor-edit-mode .elementor-element.elementor-section.parallax-container {
  overflow: hidden;
}

.elementor-section .elementor-column.grid-item .elementor-section {
  margin: 0;
}

.elementor-section .elementor-column.grid-item .elementor-section,
.elementor-section .elementor-column.grid-item .elementor-section .elementor-container,
.elementor-section .elementor-column.grid-item .elementor-section .elementor-row {
  height: 100%;
}

.elementor-section .elementor-column.grid-item .elementor-section .elementor-container {
  max-width: 100%;
}

.elementor-column.grid-item .elementor-widget-wrap.owl-carousel,
.elementor-column.grid-item .elementor-widget-wrap.owl-carousel>.owl-stage-outer,
.elementor-column.grid-item .elementor-widget-wrap.owl-carousel>.owl-stage-outer>.owl-stage,
.elementor-column.grid-item .elementor-widget-wrap.owl-carousel>.owl-stage-outer>.owl-stage>.owl-item {
  height: 100%;
}

.grid-item .elementor-widget-molla_banner,
.grid-item .elementor-widget-molla_banner .elementor-widget-container,
.grid-item .elementor-widget-molla_banner .banner {
  height: 100%;
}

.heading-content .elementor-heading-title {
  margin: 0;
}

.elementor-heading-title a {
  color: inherit;
}

.elementor-widget-molla_button .btn span,
.btn.banner-elem span {
  line-height: inherit;
}

.elementor-tab-content>* {
  color: inherit;
}

.elementor-tab-content>*:last-child {
  margin-bottom: 0;
}

.molla-section-video .elementor-widget-container {
  overflow: visible;
}

.molla-section-video {
  width: 100%;
  flex: 0 0 100%;
}

.molla-section-video>.elementor-wrapper:not(.video-fixed) {
  padding: 0;
  height: auto;
  overflow: hidden;
}

.molla-section-video>.elementor-wrapper:not(.video-fixed) video {
  position: absolute;
  height: 100%;
  object-fit: cover;
}

.molla-section-video .elementor-open-lightbox:not(.video-fixed)>.elementor-custom-embed-image-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.molla-section-video .elementor-open-lightbox:not(.video-fixed)>.elementor-custom-embed-image-overlay img {
  height: 100%;
  object-fit: cover;
}

.molla-section-video .elementor-open-lightbox:not(.video-fixed)>.elementor-custom-embed-image-overlay img.molla-lazyload {
  padding-top: 0 !important;
}

.dialog-type-lightbox {
  background-color: rgba(51, 51, 51, 0.6);
}

.elementor-widget-molla_product .side,
.elementor-widget-molla_product .side ul {
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
}

.elementor-widget-molla_product .side li+li {
  margin: 0 0 8px;
}

.elementor-widget-molla_product .side li a {
  display: inline;
  padding: 0;
}

.banner .item-inline {
  display: inline-block;
}

.banner .item-block {
  display: block;
}

.banner .btn.item-inline {
  display: inline-flex;
}

.elementor-widget-molla_stretch_banner,
.elementor-widget-molla_stretch_banner .elementor-widget-container,
.elementor-widget-molla_stretch_banner .banner {
  height: 100%;
}

.animating-item {
  opacity: 0;
  will-change: transform, filter;
}

.animating-item.owl-animated {
  opacity: 1;
}

.owl-item:not(.active) .animating-item {
  animation-name: none;
}

.elementor-studio-section-button {
  position: relative;
  overflow: hidden;
  background: #c96;
  vertical-align: middle;
  margin-top: -5px;
}

.elementor-studio-section-button img {
  width: 17px;
  transition: margin-top 0.2s;
  margin: 0;
}

.elementor-studio-section-button:hover img {
  margin-top: -70px;
}

.elementor-studio-section-button:hover i {
  transform: none;
}

.elementor-studio-section-button i {
  position: absolute;
  transform: translateY(60px);
  transition: transform 0.2s;
}

@media (min-width: 1200px) {
  .elementor-section.elementor-section-boxed>.elementor-container.container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }

  .elementor-section.elementor-section-boxed>.container-fluid.elementor-column-gap-narrow {
    padding-left: 20px;
    padding-right: 20px;
  }

  .elementor-section.elementor-section-boxed>.container-fluid.elementor-column-gap-extended {
    padding-left: 15px;
    padding-right: 15px;
  }

  .elementor-section.elementor-section-boxed>.container-fluid.elementor-column-gap-wide {
    padding-left: 10px;
    padding-right: 10px;
  }

  .elementor-section.elementor-section-boxed>.container-fluid.elementor-column-gap-wider {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 1600px) {
  .elementor-section.elementor-section-boxed>.elementor-container.container-fluid {
    padding-left: 70px;
    padding-right: 70px;
  }

  .elementor-section.elementor-section-boxed>.container-fluid.elementor-column-gap-narrow {
    padding-left: 60px;
    padding-right: 60px;
  }

  .elementor-section.elementor-section-boxed>.container-fluid.elementor-column-gap-extended {
    padding-left: 55px;
    padding-right: 55px;
  }

  .elementor-section.elementor-section-boxed>.container-fluid.elementor-column-gap-wide {
    padding-left: 50px;
    padding-right: 50px;
  }

  .elementor-section.elementor-section-boxed>.container-fluid.elementor-column-gap-wider {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 479px) {
  .full-inner .elementor-top-section.elementor-section-boxed>.elementor-column-gap-no {
    width: calc(100% - 20px);
  }

  .full-inner .elementor-top-section.elementor-section-boxed>.elementor-column-gap-narrow {
    width: calc(100% - 10px);
  }

  .full-inner .elementor-top-section.elementor-section-boxed>.elementor-column-gap-extended {
    width: calc(100% + 10px);
  }

  .full-inner .elementor-top-section.elementor-section-boxed>.elementor-column-gap-wide {
    width: calc(100% + 20px);
  }

  .full-inner .elementor-top-section.elementor-section-boxed>.elementor-column-gap-wider {
    width: calc(100% + 40px);
  }
}

.eicon-vertical-divider {
  transform: rotate(90deg);
}

.custom-header .elementor-widget {
  width: auto;
  align-self: center;
  margin-right: 2rem;
  margin-bottom: 0;
}

.custom-header .elementor-widget:last-child {
  margin-right: 0;
}

.custom-header .shop-icon p {
  margin-bottom: 0;
}

.custom-header .top-menu a {
  color: inherit;
}

.custom-header .header-dropdown {
  padding: 0;
}

.custom-header .header-dropdown a {
  color: inherit;
}

.custom-header .search-wrapper {
  min-width: 0;
}

.custom-header .search-wrapper input.form-control::placeholder {
  color: inherit;
}

.custom-header .nav-dropdown>*+* {
  margin-left: 20px;
}

.custom-header .nav-dropdown a,
.custom-header .top-menu span {
  color: inherit;
}

.sidebar-wrapper aside .elementor-preset.elementor-column {
  max-width: 50%;
  width: 50%;
}

.wp-block-column:not(:first-child),
.editor-styles-wrapper .block-editor-block-list__block.wp-block-column:not(:first-child) {
  margin: 0;
}

.wp-block-gallery[class*="columns"] li.blocks-gallery-item {
  margin: 0;
}

.wp-block-gallery .blocks-gallery-item figure {
  position: relative;
}

.wp-block-gallery .blocks-gallery-item figcaption {
  left: 0;
  right: 0;
}

.wp-block-gallery>.blocks-gallery-grid {
  margin-left: 0;
  margin-right: 0;
}

.wp-block-gallery>.blocks-gallery-grid li.blocks-gallery-item {
  margin-right: 0;
}

.wp-block-gallery.alignleft {
  margin-right: 4px;
}

.wp-block-gallery.alignright {
  margin-left: 4px;
}

.container .wp-block-gallery.alignwide {
  width: auto;
}

.blocks-gallery-caption,
.wp-block-embed figcaption,
.wp-block-image figcaption {
  margin-left: auto;
  margin-right: auto;
}

.blocks-gallery-grid,
.menu .megamenu>ul .blocks-gallery-grid {
  display: flex;
  flex: 1 1 100%;
}

.gallery[class*="gallery-columns"] {
  display: flex;
  flex-flow: row wrap;
}

.gallery[class*="gallery-columns"] .gallery-item {
  margin-bottom: 0;
  text-align: center;
}

.wp-block-cover {
  color: #fff;
}

.wp-block-cover p {
  font-size: 2em;
  margin-bottom: 0;
  padding: 14px;
}

.wp-block-cover-image.has-background-dim,
.wp-block-cover.has-background-dim {
  background-color: #000;
}

.wp-block-cover .wp-block-cover__inner-container {
  width: auto;
}

.wp-block-cover .wp-block-cover__inner-container p {
  font-size: 2em !important;
  line-height: 1.25;
  z-index: 1;
  margin-bottom: 0;
  max-width: 580px;
  padding: 14px;
}

.wp-block-cover .wp-block-cover__inner-container p a {
  color: inherit;
}

.section .wp-block[data-align="wide"] {
  width: auto;
  padding: 0;
}

.wp-block-pullquote blockquote {
  text-align: left;
}

.size-full {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.alignright {
  margin: 4px 0 7px 14px;
  float: right;
  clear: both;
}

.alignleft {
  margin: 4px 14px 7px 0;
  float: left;
  clear: both;
}

div.wp-block-columns {
  padding: 0;
}

.page-content .alignwide {
  margin-left: auto;
  margin-right: auto;
}

.gallery-columns-1 .gallery-item {
  flex: 0 0 calc(100% / 1);
  width: calc(100% / 1);
}

.gallery-columns-2 .gallery-item {
  flex: 0 0 calc(100% / 2);
  width: calc(100% / 2);
}

.gallery-columns-3 .gallery-item {
  flex: 0 0 calc(100% / 3);
  width: calc(100% / 3);
}

.gallery-columns-4 .gallery-item {
  flex: 0 0 calc(100% / 4);
  width: calc(100% / 4);
}

.gallery-columns-5 .gallery-item {
  flex: 0 0 calc(100% / 5);
  width: calc(100% / 5);
}

.gallery-columns-6 .gallery-item {
  flex: 0 0 calc(100% / 6);
  width: calc(100% / 6);
}

.blocks-gallery-grid.columns-1 .blocks-gallery-image,
.blocks-gallery-grid.columns-1 .blocks-gallery-item,
.wp-block-gallery.columns-1 .blocks-gallery-image,
.wp-block-gallery.columns-1 .blocks-gallery-item {
  flex: 0 0 calc(100% / 1);
  width: calc(100% / 1);
}

.blocks-gallery-grid.columns-2 .blocks-gallery-image,
.blocks-gallery-grid.columns-2 .blocks-gallery-item,
.wp-block-gallery.columns-2 .blocks-gallery-image,
.wp-block-gallery.columns-2 .blocks-gallery-item {
  flex: 0 0 calc(100% / 2);
  width: calc(100% / 2);
}

.blocks-gallery-grid.columns-3 .blocks-gallery-image,
.blocks-gallery-grid.columns-3 .blocks-gallery-item,
.wp-block-gallery.columns-3 .blocks-gallery-image,
.wp-block-gallery.columns-3 .blocks-gallery-item {
  flex: 0 0 calc(100% / 3);
  width: calc(100% / 3);
}

.blocks-gallery-grid.columns-4 .blocks-gallery-image,
.blocks-gallery-grid.columns-4 .blocks-gallery-item,
.wp-block-gallery.columns-4 .blocks-gallery-image,
.wp-block-gallery.columns-4 .blocks-gallery-item {
  flex: 0 0 calc(100% / 4);
  width: calc(100% / 4);
}

.blocks-gallery-grid.columns-5 .blocks-gallery-image,
.blocks-gallery-grid.columns-5 .blocks-gallery-item,
.wp-block-gallery.columns-5 .blocks-gallery-image,
.wp-block-gallery.columns-5 .blocks-gallery-item {
  flex: 0 0 calc(100% / 5);
  width: calc(100% / 5);
}

.blocks-gallery-grid.columns-6 .blocks-gallery-image,
.blocks-gallery-grid.columns-6 .blocks-gallery-item,
.wp-block-gallery.columns-6 .blocks-gallery-image,
.wp-block-gallery.columns-6 .blocks-gallery-item {
  flex: 0 0 calc(100% / 6);
  width: calc(100% / 6);
}

.editor-styles-wrapper [data-block] {
  margin: 0 0 28px 0;
}

ul.wp-block-gallery li:before,
ul.blocks-gallery-grid li:before {
  content: none;
}

.blocks-gallery-grid .blocks-gallery-image figcaption,
.blocks-gallery-grid .blocks-gallery-item figcaption,
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
  width: auto;
}

.wp-caption {
  background: transparent;
  border: none;
  color: #767676;
  margin: 0 0 24px 0;
  max-width: 100%;
  padding: 0;
  text-align: left;
}

.wp-caption.alignleft {
  margin: 7px 14px 7px 0;
  text-align: left;
}

.wp-caption.aligncenter {
  margin: 7px auto;
  text-align: center;
}

.wp-caption.alignright {
  margin: 7px 0 7px 14px;
  text-align: right;
}

.wp-caption-text {
  font-size: 12px;
  font-style: italic;
  line-height: 1.5;
  padding: 10px;
}

.wp-block-code {
  background-color: #f7f7f7;
  color: #212529;
  max-height: 400px;
  overflow: scroll;
}

.wp-block-code code {
  color: inherit;
}

.is-style-squared .wp-block-button__link {
  border-radius: 0;
}

.wp-block-calendar a {
  text-decoration: none;
}

@media (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  .page-wrapper {
    display: block;
  }
}

@media (max-width: 599px) {
  .wp-block-gallery[class*="columns-"] .blocks-gallery-item {
    flex: 0 0 50%;
    width: 50%;
  }
}

.woocommerce div.product div.images,
.woocommerce-page div.product div.images,
.woocommerce div.product div.summary,
.woocommerce-page div.product div.summary {
  float: none;
  width: auto;
}

.woocommerce div.product div.images {
  margin-bottom: 0;
  opacity: 1 !important;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
input.input-text,
textarea,
input[type*="text"],
input[type*="email"],
input[type*="password"],
input[type*="search"],
input[type*="tel"],
.select2-container .select2-selection--single,
select {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 40px;
  padding: 0.85rem 2rem;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 300;
  color: #999999;
  background-color: #fafafa;
  border: 1px solid #e7e7e7;
  border-radius: 0;
  margin-bottom: 0;
  transition: border-color 0.3s, background-color 0.3s, color 0.3s;
  box-shadow: none;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
input.input-text:focus,
textarea:focus,
input[type*="text"]:focus,
input[type*="email"]:focus,
input[type*="password"]:focus,
input[type*="search"]:focus,
input[type*="tel"]:focus,
.select2-container .select2-selection--single:focus,
select:focus {
  outline: none;
}

input[type*="password"],
select {
  display: inline-block;
  width: auto;
}

.woocommerce #respond input#submit.added:after,
.woocommerce a.button.added:after,
.woocommerce button.button.added:after,
.woocommerce input.button.added:after {
  content: "";
  margin: 0;
}

.woocommerce form .form-row [placeholder]:focus::-webkit-input-placeholder {
  opacity: 1;
}

.woocommerce form .form-row [placeholder]:focus::placeholder {
  opacity: 1;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
}

.woocommerce form .form-row textarea,
textarea {
  padding: 1.5rem 2rem;
}

.password-input {
  width: 100%;
}

.woocommerce form .form-row textarea {
  min-height: 150px;
}

.select2-container--open .select2-selection--single,
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
select:focus {
  color: #999999;
  background-color: #fff;
  box-shadow: none;
  outline: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-notice,
.woocommerce-message {
  padding: 1rem 2rem 1rem 3.5rem;
  margin: 0 0 2rem;
}

.woocommerce .woocommerce-error .button,
.woocommerce .woocommerce-info .button,
.woocommerce .woocommerce-message .button,
.woocommerce-page .woocommerce-error .button,
.woocommerce-page .woocommerce-info .button,
.woocommerce-page .woocommerce-message .button {
  float: none;
  margin-right: 10px;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message,
.woocommerce-notice {
  padding-left: 1.1rem;
  padding-right: 1.1rem;
  background-color: transparent !important;
  border-radius: 0.3rem;
  border: 1px dashed #d7d7d7;
}

.woocommerce-error:before,
.woocommerce-info:before,
.woocommerce-message:before,
.woocommerce-notice:before,
.woocommerce-error:after,
.woocommerce-info:after,
.woocommerce-message:after,
.woocommerce-notice:after {
  display: none;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background-color: transparent;
  border: 1px solid;
  border-radius: 0;
  font-weight: 400;
  transition: color 0.3s, background-color 0.3s;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:focus,
.woocommerce a.button:focus,
.woocommerce button.button:focus,
.woocommerce input.button:focus {
  color: #fff;
}

.woocommerce form .form-row .required {
  color: inherit;
  font-weight: inherit;
}

.woocommerce form .form-row {
  display: block;
  margin: 0 0 1.3rem;
}

.comment-respond label {
  display: block;
  line-height: 2;
  margin-bottom: 2px;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  width: 50%;
}

.woocommerce-checkout #payment,
.woocommerce-checkout #payment div.payment_box {
  background-color: transparent;
}

.woocommerce-checkout #payment:before,
.woocommerce-checkout #payment div.payment_box:before {
  display: none;
}

.woocommerce ul#shipping_method li label {
  display: inline-block;
}

.woocommerce table.shop_table {
  border-collapse: collapse;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  text-align: left;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
  border-color: #e7e7e7;
}

.woocommerce table.wishlist_table thead th {
  border: none;
}

.woocommerce .widget_shopping_cart .buttons a,
.woocommerce.widget_shopping_cart .buttons a {
  margin: 0;
}

.woocommerce .widget_shopping_cart .buttons:before,
.woocommerce .widget_shopping_cart .buttons:after {
  display: none;
}

.woocommerce .widget_shopping_cart .total,
.woocommerce.widget_shopping_cart .total {
  border-top: none;
}

.woocommerce form.woocommerce-form-login .woocommerce-form__label {
  margin: 0;
}

.woocommerce form.woocommerce-form-login .form-row {
  display: flex;
}

.woocommerce form.woocommerce-form-login .woocommerce-form-login__submit {
  margin-right: 1em;
  order: -1;
}

.myaccount-content .woocommerce form.login,
.myaccount-content .woocommerce form.register,
.mfp-content form.login,
.mfp-content form.register {
  border: none;
}

.woocommerce-form-register button.woocommerce-form-register__submit {
  margin-right: 1em;
}

.woocommerce .cart-collaterals .cart_totals tr td,
.woocommerce .cart-collaterals .cart_totals tr th {
  border: none;
}

.cart-collaterals .cart_totals table,
.woocommerce-checkout table.woocommerce-checkout-review-order-table {
  border: none;
}

.cart-collaterals .cart_totals table tr,
.woocommerce-checkout table.woocommerce-checkout-review-order-table tr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ebebeb;
}

.cart-collaterals .cart_totals table .order-total,
.woocommerce-checkout table.woocommerce-checkout-review-order-table .order-total {
  border: none;
}

.cart-collaterals .cart_totals table th,
.woocommerce-checkout table.woocommerce-checkout-review-order-table th,
.cart-collaterals .cart_totals table td,
.woocommerce-checkout table.woocommerce-checkout-review-order-table td,
.cart-collaterals .cart_totals table tfoot th,
.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot th,
.cart-collaterals .cart_totals table tfoot td,
.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot td {
  border: none;
}

.cart-collaterals .cart_totals table table,
.woocommerce-checkout table.woocommerce-checkout-review-order-table table {
  margin-bottom: 0;
}

.cart-collaterals .cart_totals table thead tr,
.woocommerce-checkout table.woocommerce-checkout-review-order-table thead tr {
  border: none;
}

.woocommerce ul#shipping_method .amount {
  font-weight: 400;
}

.cart-collaterals .cart_totals table th,
.cart-collaterals .cart_totals table td,
.cart-collaterals .cart_totals table tfoot th,
.cart-collaterals .cart_totals table tfoot td {
  padding: 0;
}

.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-totals,
.woocommerce-checkout .cart-collaterals .cart_totals .woocommerce-shipping-totals {
  flex-flow: column wrap;
  align-items: flex-start;
}

.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-totals td,
.woocommerce-checkout .cart-collaterals .cart_totals .woocommerce-shipping-totals td {
  text-align: left;
  width: 100%;
}

.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-totals #shipping_method,
.woocommerce-checkout .cart-collaterals .cart_totals .woocommerce-shipping-totals #shipping_method {
  margin-bottom: 1.4rem;
}

.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-totals #shipping_method label,
.woocommerce-checkout .cart-collaterals .cart_totals .woocommerce-shipping-totals #shipping_method label {
  margin-left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

p.comment-form-cookies-consent {
  flex: 0 0 100%;
}

p.comment-form-cookies-consent label {
  margin: 0;
}

.woocommerce div.product .woocommerce-tabs .panel,
.woocommerce div.product .sticky-bar form.cart {
  margin-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  float: none;
  width: auto;
}

.woocommerce .col2-set,
.woocommerce-page .col2-set {
  display: flex;
  flex-flow: row wrap;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
  float: none;
  flex: 0 0 50%;
  max-width: 50%;
}

#order_review_heading,
.cart_totals>h2 {
  padding-bottom: 1.7rem;
}

.woocommerce .quantity .qty {
  width: 131px;
  background-color: #fff;
  text-align: center;
}

.customize-partial-edit-shortcut-button {
  display: none;
}

.yith-wcwl-add-button a i {
  display: none;
}

.woocommerce-form-row label {
  margin-bottom: 2px;
}

.woocommerce .col2-set,
.woocommerce-page .col2-set {
  width: auto;
}

.blockOverlay {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff !important;
  opacity: 0.6 !important;
}

.woocommerce .add_to_wishlist .blockOverlay {
  background: transparent !important;
}

.woocommerce .blockUI.blockOverlay::before {
  background: none;
}

.yith-wcan-loading {
  background: none;
  height: auto;
}

.woocommerce #respond input#submit.loading,
.woocommerce a.button.loading,
.woocommerce button.button.loading,
.woocommerce input.button.loading,
.blockOverlay,
.molla-loading,
.yith-wcan-loading {
  position: relative;
  opacity: 0.45;
}

.woocommerce #respond input#submit.loading:after,
.woocommerce a.button.loading:after,
.woocommerce button.button.loading:after,
.woocommerce input.button.loading:after,
.blockOverlay:after,
.molla-loading:after,
.yith-wcan-loading:after {
  animation: spin 650ms infinite linear;
  border: 2px solid #fff;
  border-radius: 32px;
  border-top: 2px solid rgba(0, 0, 0, 0.4) !important;
  border-right: 2px solid rgba(0, 0, 0, 0.4) !important;
  border-bottom: 2px solid rgba(0, 0, 0, 0.4) !important;
  content: "";
  display: block;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  left: 50%;
  margin-left: -10px;
  right: auto;
  position: absolute;
  width: 20px;
}

form .blockOverlay:after,
.mini_cart_item .blockOverlay:after,
.cart_totals .blockOverlay:after,
.molla-loading .blockOverlay:after {
  border-top-color: #333;
}

form .blockOverlay:before,
.cart_totals .blockOverlay:before,
.mini_cart_item .blockOverlay:before {
  display: none !important;
}

.molla-loading:after,
.yith-wcan-loading:after {
  position: absolute;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  margin-left: -12px;
}

.more-container span.molla-loading {
  margin-left: 2rem;
}

.woocommerce p.stars a {
  border: none;
}

.woocommerce-product-attributes-item__value p {
  font-style: normal;
}

form .select2-container .select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
}

.woocommerce .sidebar .widget_layered_nav ul.yith-wcan li span,
.woocommerce-page .sidebar .widget_layered_nav ul.yith-wcan li span {
  cursor: pointer;
}

.woocommerce div.product div.summary {
  margin-bottom: 0;
}

.woocommerce form .show-password-input,
.woocommerce-page form .show-password-input {
  top: auto;
}

.woocommerce .lost_reset_password .form-row-first {
  width: 100%;
}

.woocommerce #reviews #comments ol.commentlist li .meta {
  margin-right: 5rem;
}

.woocommerce #reviews .commentlist {
  padding: 0;
}

.woocommerce #reviews #comments .meta em {
  display: block;
}

.woocommerce ul.order_details li {
  margin-bottom: 1rem;
}

.woocommerce ul.order_details li {
  font-size: 1.4rem;
}

.woocommerce ul.order_details li strong {
  font-weight: 500;
}

.woocommerce .woocommerce-customer-details address {
  border-width: 1px;
}

.woocommerce .woocommerce-customer-details .woocommerce-column {
  padding: 0;
  flex: none;
}

.woocommerce .woocommerce-customer-details .woocommerce-column+.woocommerce-column {
  margin-left: auto;
}

.woocommerce .widget_layered_nav ul.yith-wcan-label li a,
.woocommerce-page .widget_layered_nav ul.yith-wcan-label li a,
.woocommerce .widget_layered_nav ul.yith-wcan-label li span,
.woocommerce-page .widget_layered_nav ul.yith-wcan-label li span {
  background-color: #fff;
  border-color: #d7d7d7;
  color: #666;
  line-height: 3.4rem;
  min-width: 4rem;
  height: 4rem;
  text-align: center;
  transition: 0.3s;
}

.woocommerce .widget_layered_nav ul.yith-wcan-label li a:hover,
.woocommerce-page .widget_layered_nav ul.yith-wcan-label li a:hover,
.woocommerce .widget_layered_nav ul.yith-wcan-label li span:hover,
.woocommerce-page .widget_layered_nav ul.yith-wcan-label li span:hover {
  background-color: transparent;
}

.woocommerce .widget_layered_nav ul.yith-wcan-label li.chosen a,
.woocommerce-page .widget_layered_nav ul.yith-wcan-label li.chosen a {
  background-color: transparent;
}

.woocommerce .product form.cart.row::after,
.woocommerce .product form.cart.row::before {
  content: none;
}

.woocommerce .product .summary .stock {
  font-size: inherit;
  color: inherit;
  line-height: 1;
}

@media (min-width: 992px) {
  .shop-table-wrapper .col-lg-4 {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .shop-table-wrapper .col-lg-8 {
    flex: 0 0 70%;
    max-width: 70%;
  }
}