.components-custom-select-control {
  position: relative
}

.components-custom-select-control__label {
  display: block;
  margin-bottom: 8px
}

.components-custom-select-control__button {
  border: 1px solid #757575;
  border-radius: 2px;
  min-height: 30px;
  min-width: 130px;
  position: relative;
  text-align: left
}

.components-custom-select-control__button.components-custom-select-control__button {
  padding-right: 24px
}

.components-custom-select-control__button:focus:not(:disabled) {
  border-color: var(--wp-admin-theme-color);
  box-shadow: 0 0 0 .5px var(--wp-admin-theme-color)
}

.components-custom-select-control__button .components-custom-select-control__button-icon {
  height: 100%;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0
}

.components-custom-select-control__menu {
  background-color: #fff;
  max-height: 400px;
  min-width: 100%;
  overflow: auto;
  padding: 0;
  position: absolute;
  z-index: 1000000
}

.components-custom-select-control__menu:focus {
  border: 1px solid #1e1e1e;
  border-radius: 2px;
  outline: none;
  transition: none
}

.components-custom-select-control__item {
  align-items: center;
  display: flex;
  list-style-type: none;
  padding: 10px 5px 10px 25px;
  cursor: default
}

.components-custom-select-control__item.is-highlighted {
  background: #ddd
}

.components-custom-select-control__item-icon {
  margin-left: -20px;
  margin-right: 0
}

.components-spinner {
  display: inline-block;
  background-color: #949494;
  width: 18px;
  height: 18px;
  opacity: .7;
  margin: 5px 11px 0;
  border-radius: 100%;
  position: relative
}

.components-spinner:before {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 3px;
  left: 3px;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  transform-origin: 6px 6px;
  -webkit-animation: components-spinner__animation 1s linear infinite;
  animation: components-spinner__animation 1s linear infinite
}

@-webkit-keyframes components-spinner__animation {
  0% {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(1turn)
  }
}

@keyframes components-spinner__animation {
  0% {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(1turn)
  }
}

.components-snackbar {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 13px;
  background-color: #1e1e1e;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .3);
  color: #fff;
  padding: 16px 24px;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
  cursor: pointer
}

@media(min-width:600px) {
  .components-snackbar {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
  }
}

.components-snackbar:focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px var(--wp-admin-theme-color)
}

.components-snackbar__action.components-button {
  margin-left: 32px;
  color: #fff;
  height: auto;
  flex-shrink: 0;
  line-height: 1.4;
  padding: 0
}

.components-snackbar__action.components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary) {
  text-decoration: underline;
  background-color: transparent
}

.components-snackbar__action.components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary):focus {
  color: #fff;
  box-shadow: none;
  outline: 1px dotted #fff
}

.components-snackbar__action.components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover {
  color: var(--wp-admin-theme-color)
}

.components-snackbar__content {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  line-height: 1.4
}

.components-snackbar-list {
  position: absolute;
  z-index: 100000;
  width: 100%;
  box-sizing: border-box
}

.components-snackbar-list__notice-container {
  position: relative;
  padding-top: 8px
}

.components-combobox-control {
  width: 100%
}

input.components-combobox-control__input[type=text] {
  width: 100%;
  border: none;
  box-shadow: none;
  padding: 2px;
  margin: 0;
  line-height: inherit;
  min-height: auto
}

input.components-combobox-control__input[type=text]:focus {
  outline: none;
  box-shadow: none
}

.components-combobox-control__suggestions-container {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  box-shadow: 0 0 0 transparent;
  transition: box-shadow .1s linear;
  border-radius: 2px;
  border: 1px solid #757575;
  font-size: 16px;
  line-height: normal;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 8px;
  padding: 4px
}

@media(prefers-reduced-motion:reduce) {
  .components-combobox-control__suggestions-container {
    transition-duration: 0s
  }
}

@media(min-width:600px) {
  .components-combobox-control__suggestions-container {
    font-size: 13px;
    line-height: normal
  }
}

.components-combobox-control__suggestions-container:focus {
  border-color: var(--wp-admin-theme-color);
  box-shadow: 0 0 0 .5px var(--wp-admin-theme-color);
  outline: 2px solid transparent
}

.components-combobox-control__suggestions-container::-webkit-input-placeholder {
  color: rgba(30, 30, 30, .62)
}

.components-combobox-control__suggestions-container::-moz-placeholder {
  opacity: 1;
  color: rgba(30, 30, 30, .62)
}

.components-combobox-control__suggestions-container:-ms-input-placeholder {
  color: rgba(30, 30, 30, .62)
}

.is-dark-theme .components-combobox-control__suggestions-container::-webkit-input-placeholder {
  color: hsla(0, 0%, 100%, .65)
}

.is-dark-theme .components-combobox-control__suggestions-container::-moz-placeholder {
  opacity: 1;
  color: hsla(0, 0%, 100%, .65)
}

.is-dark-theme .components-combobox-control__suggestions-container:-ms-input-placeholder {
  color: hsla(0, 0%, 100%, .65)
}

.components-combobox-control__suggestions-container:focus-within {
  border-color: var(--wp-admin-theme-color);
  box-shadow: 0 0 0 .5px var(--wp-admin-theme-color);
  outline: 2px solid transparent
}

.components-combobox-control__reset.components-button {
  display: flex;
  height: 24px;
  min-width: 24px;
  padding: 0
}

.wc-block-link-button {
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  box-shadow: none;
  display: inline;
  text-shadow: none;
  text-decoration: underline
}

.wc-block-link-button,
.wc-block-link-button:active,
.wc-block-link-button:focus,
.wc-block-link-button:hover {
  background: transparent
}

.wc-block-suspense-placeholder {
  -webkit-animation: loading-fade 1.2s ease-in-out infinite;
  animation: loading-fade 1.2s ease-in-out infinite;
  background-color: var(--global--color-primary, #e0e0e0)!important;
  color: var(--global--color-primary, #e0e0e0)!important;
  outline: 0!important;
  border: 0!important;
  box-shadow: none;
  pointer-events: none;
  max-width: 100%
}

.wc-block-suspense-placeholder>* {
  visibility: hidden
}

@media screen and (prefers-reduced-motion:reduce) {
  .wc-block-suspense-placeholder {
    -webkit-animation: none;
    animation: none
  }
}

.wc-block-suspense-placeholder:after {
  content: " "
}

.wc-block-grid__products .wc-block-grid__product-image {
  text-decoration: none;
  display: block;
  position: relative
}

.wc-block-grid__products .wc-block-grid__product-image a {
  text-decoration: none;
  border: 0;
  outline: 0;
  box-shadow: none
}

.wc-block-grid__products .wc-block-grid__product-image img {
  height: auto;
  width: 100%
}

.wc-block-grid__products .wc-block-grid__product-image img[hidden] {
  display: none
}

.wc-block-grid__products .wc-block-grid__product-image img[alt=""] {
  border: 1px solid #f2f2f2
}

.edit-post-visual-editor .editor-block-list__block .wc-block-grid__product-title,
.editor-styles-wrapper .wc-block-grid__product-title,
.wc-block-grid__product-title {
  font-family: inherit;
  line-height: 1.2em;
  font-weight: 700;
  padding: 0;
  color: inherit;
  font-size: inherit;
  display: block
}

.wc-block-grid__product-price {
  display: block
}

.wc-block-grid__product-price .wc-block-grid__product-price__regular {
  margin-right: .5em
}

.wc-block-grid__product-add-to-cart.wp-block-button {
  word-break: break-word;
  white-space: normal
}

.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link {
  word-break: break-word;
  white-space: normal;
  margin: 0 auto!important;
  display: inline-flex;
  justify-content: center;
  text-align: center;
  padding: .5em 1em;
  font-size: 1em
}

.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link.loading {
  opacity: .25
}

.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link.added:after {
  font-family: WooCommerce;
  content: "";
  margin-left: .5em;
  display: inline-block;
  width: auto;
  height: auto
}

.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link.loading:after {
  font-family: WooCommerce;
  content: "";
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  margin-left: .5em;
  display: inline-block;
  width: auto;
  height: auto
}

.has-5-columns:not(.alignfull) .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after,
.has-6-columns .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after,
.has-7-columns .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after,
.has-8-columns .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after,
.has-9-columns .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after {
  content: "";
  margin: 0
}

.wc-block-grid__product-rating {
  display: block
}

.wc-block-grid__product-rating .star-rating,
.wc-block-grid__product-rating .wc-block-grid__product-rating__stars {
  overflow: hidden;
  position: relative;
  width: 5.3em;
  height: 1.618em;
  line-height: 1.618;
  font-size: 1em;
  font-family: star;
  font-weight: 400;
  margin: 0 auto;
  text-align: left
}

.wc-block-grid__product-rating .star-rating:before,
.wc-block-grid__product-rating .wc-block-grid__product-rating__stars:before {
  content: "SSSSS";
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  opacity: .5;
  color: #aaa;
  white-space: nowrap
}

.wc-block-grid__product-rating .star-rating span,
.wc-block-grid__product-rating .wc-block-grid__product-rating__stars span {
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  padding-top: 1.5em
}

.wc-block-grid__product-rating .star-rating span:before,
.wc-block-grid__product-rating .wc-block-grid__product-rating__stars span:before {
  content: "SSSSS";
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  color: #000;
  white-space: nowrap
}

.wc-block-grid__product-onsale {
  font-size: .875em;
  padding: .25em .75em;
  display: inline-block;
  width: auto;
  border: 1px solid #43454b;
  border-radius: 3px;
  color: #43454b;
  background: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 9;
  position: relative
}

.wc-block-grid__product .wc-block-grid__product-image,
.wc-block-grid__product .wc-block-grid__product-title {
  margin: 0 0 12px
}

.wc-block-grid__product .wc-block-grid__product-add-to-cart,
.wc-block-grid__product .wc-block-grid__product-onsale,
.wc-block-grid__product .wc-block-grid__product-price,
.wc-block-grid__product .wc-block-grid__product-rating {
  margin: 0 auto 12px
}

.theme-twentysixteen .wc-block-grid .price ins {
  color: #77a464
}

.theme-twentynineteen .wc-block-grid__product {
  font-size: .88889em
}

.theme-twentynineteen .wc-block-components-product-sale-badge,
.theme-twentynineteen .wc-block-components-product-title,
.theme-twentynineteen .wc-block-grid__product-onsale,
.theme-twentynineteen .wc-block-grid__product-title {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif
}

.theme-twentynineteen .wc-block-grid__product-title:before {
  display: none
}

.theme-twentynineteen .wc-block-components-product-sale-badge,
.theme-twentynineteen .wc-block-grid__product-onsale {
  line-height: 1
}

.theme-twentynineteen .editor-styles-wrapper .wp-block-button .wp-block-button__link:not(.has-text-color) {
  color: #fff
}

.theme-twentytwenty .wc-block-grid__product-link {
  color: #000
}

.theme-twentytwenty .wc-block-components-product-title,
.theme-twentytwenty .wc-block-grid__product-title {
  font-family: -apple-system, blinkmacsystemfont, Helvetica Neue, helvetica, sans-serif;
  color: #cd2653;
  font-size: 1em
}

.theme-twentytwenty .wp-block-columns .wc-block-components-product-title {
  margin-top: 0
}

.theme-twentytwenty .wc-block-components-product-price .woocommerce-Price-amount,
.theme-twentytwenty .wc-block-components-product-price__value,
.theme-twentytwenty .wc-block-grid__product-price .woocommerce-Price-amount,
.theme-twentytwenty .wc-block-grid__product-price__value {
  font-family: -apple-system, blinkmacsystemfont, Helvetica Neue, helvetica, sans-serif;
  font-size: .9em
}

.theme-twentytwenty .wc-block-components-product-price del,
.theme-twentytwenty .wc-block-grid__product-price del {
  opacity: .5
}

.theme-twentytwenty .wc-block-components-product-price ins,
.theme-twentytwenty .wc-block-grid__product-price ins {
  text-decoration: none
}

.theme-twentytwenty .star-rating,
.theme-twentytwenty .wc-block-grid__product-rating {
  font-size: .7em
}

.theme-twentytwenty .star-rating .wc-block-components-product-rating__stars,
.theme-twentytwenty .star-rating .wc-block-grid__product-rating__stars,
.theme-twentytwenty .wc-block-grid__product-rating .wc-block-components-product-rating__stars,
.theme-twentytwenty .wc-block-grid__product-rating .wc-block-grid__product-rating__stars {
  line-height: 1
}

.theme-twentytwenty .wc-block-components-product-button>.wp-block-button__link,
.theme-twentytwenty .wc-block-grid__product-add-to-cart>.wp-block-button__link {
  font-family: -apple-system, blinkmacsystemfont, Helvetica Neue, helvetica, sans-serif
}

.theme-twentytwenty .wc-block-components-product-sale-badge,
.theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-onsale {
  background: #cd2653;
  color: #fff;
  font-family: -apple-system, blinkmacsystemfont, Helvetica Neue, helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  text-transform: uppercase
}

.theme-twentytwenty .wc-block-grid__products .wc-block-components-product-sale-badge {
  position: static
}

.theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-image .wc-block-components-product-sale-badge {
  position: absolute
}

.theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-onsale:not(.wc-block-components-product-sale-badge) {
  position: absolute;
  right: 4px;
  top: 4px;
  z-index: 1
}

.theme-twentytwenty .wc-block-active-filters__title,
.theme-twentytwenty .wc-block-attribute-filter__title,
.theme-twentytwenty .wc-block-price-filter__title,
.theme-twentytwenty .wc-block-stock-filter__title {
  font-size: 1em
}

.theme-twentytwenty .wc-block-active-filters .wc-block-active-filters__clear-all {
  font-size: .75em
}

.theme-twentytwenty .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link {
  font-size: .75em;
  padding: .5em
}

@media only screen and (min-width:768px) {
  .theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-onsale {
    font-size: .875em;
    padding: .5em
  }
}

@media only screen and (min-width:1168px) {
  .theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-onsale {
    font-size: .875em;
    padding: .5em
  }
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  overflow-wrap: normal!important;
  word-wrap: normal!important;
  padding: 0;
  position: absolute!important;
  width: 1px
}

.screen-reader-text:focus {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
  clip: auto!important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #2b2d2f;
  display: block;
  font-size: .875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000
}

.wc-block-components-product-add-to-cart-attribute-picker {
  margin: 0;
  flex-basis: 100%
}

.wc-block-components-product-add-to-cart-attribute-picker label {
  display: block;
  font-size: 1em
}

.wc-block-components-product-add-to-cart-attribute-picker .wc-block-components-product-add-to-cart-attribute-picker__container {
  position: relative
}

.wc-block-components-product-add-to-cart-attribute-picker .wc-block-components-product-add-to-cart-attribute-picker__select {
  margin: 0 0 .75em
}

.wc-block-components-product-add-to-cart-attribute-picker .wc-block-components-product-add-to-cart-attribute-picker__select select {
  min-width: 60%;
  min-height: 1.75em
}

.wc-block-components-product-add-to-cart-attribute-picker .wc-block-components-product-add-to-cart-attribute-picker__select.has-error {
  margin-bottom: 24px
}

.wc-block-components-product-add-to-cart-attribute-picker .wc-block-components-product-add-to-cart-attribute-picker__select.has-error select {
  border-color: #cc1818
}

.wc-block-components-product-add-to-cart-attribute-picker .wc-block-components-product-add-to-cart-attribute-picker__select.has-error select:focus {
  outline-color: #cc1818
}

.wc-block-components-product-add-to-cart {
  margin: 0;
  display: flex;
  flex-wrap: wrap
}

.wc-block-components-product-add-to-cart .wc-block-components-product-add-to-cart-button {
  margin: 0 0 .75em
}

.wc-block-components-product-add-to-cart .wc-block-components-product-add-to-cart-button .wc-block-components-button__text {
  display: block
}

.wc-block-components-product-add-to-cart .wc-block-components-product-add-to-cart-button .wc-block-components-button__text>svg {
  fill: currentColor;
  vertical-align: top;
  width: 1.5em;
  height: 1.5em;
  margin: -.25em 0 -.25em .5em
}

.wc-block-components-product-add-to-cart .wc-block-components-product-add-to-cart-quantity {
  margin: 0 1em .75em 0;
  flex-basis: 5em;
  padding: .618em;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
  color: #43454b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .125);
  text-align: center
}

.is-loading .wc-block-components-product-add-to-cart .wc-block-components-product-add-to-cart-button,
.is-loading .wc-block-components-product-add-to-cart .wc-block-components-product-add-to-cart-quantity,
.wc-block-components-product-add-to-cart--placeholder .wc-block-components-product-add-to-cart-button,
.wc-block-components-product-add-to-cart--placeholder .wc-block-components-product-add-to-cart-quantity {
  -webkit-animation: loading-fade 1.2s ease-in-out infinite;
  animation: loading-fade 1.2s ease-in-out infinite;
  background-color: var(--global--color-primary, #e0e0e0)!important;
  color: var(--global--color-primary, #e0e0e0)!important;
  outline: 0!important;
  border: 0!important;
  box-shadow: none;
  pointer-events: none;
  max-width: 100%
}

.is-loading .wc-block-components-product-add-to-cart .wc-block-components-product-add-to-cart-button>*,
.is-loading .wc-block-components-product-add-to-cart .wc-block-components-product-add-to-cart-quantity>*,
.wc-block-components-product-add-to-cart--placeholder .wc-block-components-product-add-to-cart-button>*,
.wc-block-components-product-add-to-cart--placeholder .wc-block-components-product-add-to-cart-quantity>* {
  visibility: hidden
}

@media screen and (prefers-reduced-motion:reduce) {
  .is-loading .wc-block-components-product-add-to-cart .wc-block-components-product-add-to-cart-button,
  .is-loading .wc-block-components-product-add-to-cart .wc-block-components-product-add-to-cart-quantity,
  .wc-block-components-product-add-to-cart--placeholder .wc-block-components-product-add-to-cart-button,
  .wc-block-components-product-add-to-cart--placeholder .wc-block-components-product-add-to-cart-quantity {
    -webkit-animation: none;
    animation: none
  }
}

.wc-block-grid .wc-block-components-product-add-to-cart {
  justify-content: center
}

.wc-block-components-product-add-to-cart-notice {
  margin: 0
}

.wp-block-button.wc-block-components-product-button {
  word-break: break-word;
  white-space: normal;
  margin-top: 0;
  margin-bottom: 12px
}

.wp-block-button.wc-block-components-product-button .wc-block-components-product-button__button {
  word-break: break-word;
  white-space: normal;
  margin: 0 auto;
  display: inline-flex;
  justify-content: center
}

.wp-block-button.wc-block-components-product-button .wc-block-components-product-button__button--placeholder {
  -webkit-animation: loading-fade 1.2s ease-in-out infinite;
  animation: loading-fade 1.2s ease-in-out infinite;
  background-color: var(--global--color-primary, #e0e0e0)!important;
  color: var(--global--color-primary, #e0e0e0)!important;
  outline: 0!important;
  border: 0!important;
  box-shadow: none;
  pointer-events: none;
  max-width: 100%;
  min-width: 8em;
  min-height: 3em
}

.wp-block-button.wc-block-components-product-button .wc-block-components-product-button__button--placeholder>* {
  visibility: hidden
}

@media screen and (prefers-reduced-motion:reduce) {
  .wp-block-button.wc-block-components-product-button .wc-block-components-product-button__button--placeholder {
    -webkit-animation: none;
    animation: none
  }
}

.is-loading .wc-block-components-product-button>.wc-block-components-product-button__button {
  -webkit-animation: loading-fade 1.2s ease-in-out infinite;
  animation: loading-fade 1.2s ease-in-out infinite;
  background-color: var(--global--color-primary, #e0e0e0)!important;
  color: var(--global--color-primary, #e0e0e0)!important;
  outline: 0!important;
  border: 0!important;
  box-shadow: none;
  pointer-events: none;
  max-width: 100%;
  min-width: 8em;
  min-height: 3em
}

.is-loading .wc-block-components-product-button>.wc-block-components-product-button__button>* {
  visibility: hidden
}

@media screen and (prefers-reduced-motion:reduce) {
  .is-loading .wc-block-components-product-button>.wc-block-components-product-button__button {
    -webkit-animation: none;
    animation: none
  }
}

.theme-twentytwentyone .editor-styles-wrapper .wc-block-components-product-button .wp-block-button__link {
  background-color: var(--button--color-background);
  color: var(--button--color-text);
  border-color: var(--button--color-background)
}

.wc-block-components-product-category-list {
  margin-top: 0;
  margin-bottom: .75em
}

.wc-block-components-product-category-list ul {
  margin: 0;
  padding: 0;
  display: inline
}

.wc-block-components-product-category-list ul li {
  display: inline;
  list-style: none
}

.wc-block-components-product-category-list ul li:after {
  content: ", "
}

.wc-block-components-product-category-list ul li:last-child:after {
  content: ""
}

.editor-styles-wrapper .wc-block-grid__products .wc-block-grid__product .wc-block-components-product-image,
.wc-block-components-product-image {
  margin-top: 0;
  margin-bottom: 12px;
  text-decoration: none;
  display: block;
  position: relative
}

.editor-styles-wrapper .wc-block-grid__products .wc-block-grid__product .wc-block-components-product-image a,
.wc-block-components-product-image a {
  text-decoration: none;
  border: 0;
  outline: 0;
  box-shadow: none
}

.editor-styles-wrapper .wc-block-grid__products .wc-block-grid__product .wc-block-components-product-image img,
.wc-block-components-product-image img {
  vertical-align: middle;
  width: 100%
}

.editor-styles-wrapper .wc-block-grid__products .wc-block-grid__product .wc-block-components-product-image img[hidden],
.wc-block-components-product-image img[hidden] {
  display: none
}

.editor-styles-wrapper .wc-block-grid__products .wc-block-grid__product .wc-block-components-product-image img[alt=""],
.wc-block-components-product-image img[alt=""] {
  border: 1px solid #f2f2f2
}

.editor-styles-wrapper .wc-block-grid__products .wc-block-grid__product .wc-block-components-product-image .wc-block-components-product-sale-badge--align-left,
.wc-block-components-product-image .wc-block-components-product-sale-badge--align-left {
  position: absolute;
  left: 4px;
  top: 4px;
  right: auto;
  margin: 0
}

.editor-styles-wrapper .wc-block-grid__products .wc-block-grid__product .wc-block-components-product-image .wc-block-components-product-sale-badge--align-center,
.wc-block-components-product-image .wc-block-components-product-sale-badge--align-center {
  position: absolute;
  top: 4px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  margin: 0
}

.editor-styles-wrapper .wc-block-grid__products .wc-block-grid__product .wc-block-components-product-image .wc-block-components-product-sale-badge--align-right,
.wc-block-components-product-image .wc-block-components-product-sale-badge--align-right {
  position: absolute;
  right: 4px;
  top: 4px;
  left: auto;
  margin: 0
}

.is-loading .wc-block-components-product-image {
  -webkit-animation: loading-fade 1.2s ease-in-out infinite;
  animation: loading-fade 1.2s ease-in-out infinite;
  background-color: var(--global--color-primary, #e0e0e0)!important;
  color: var(--global--color-primary, #e0e0e0)!important;
  outline: 0!important;
  border: 0!important;
  box-shadow: none;
  pointer-events: none;
  max-width: 100%
}

.is-loading .wc-block-components-product-image>* {
  visibility: hidden
}

@media screen and (prefers-reduced-motion:reduce) {
  .is-loading .wc-block-components-product-image {
    -webkit-animation: none;
    animation: none
  }
}

.wc-block-components-product-rating {
  display: block;
  margin-top: 0;
  margin-bottom: 12px
}

.wc-block-components-product-rating__stars {
  overflow: hidden;
  position: relative;
  width: 5.3em;
  height: 1.618em;
  line-height: 1.618;
  font-size: 1em;
  font-family: star;
  font-weight: 400;
  margin: 0 auto;
  text-align: left
}

.wc-block-components-product-rating__stars:before {
  content: "SSSSS";
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  opacity: .5;
  color: #aaa;
  white-space: nowrap
}

.wc-block-components-product-rating__stars span {
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  padding-top: 1.5em
}

.wc-block-components-product-rating__stars span:before {
  content: "SSSSS";
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  color: #000;
  white-space: nowrap
}

.wc-block-single-product .wc-block-components-product-rating__stars {
  margin: 0
}

.wc-block-components-product-sale-badge {
  margin: 0 auto 12px;
  font-size: .875em;
  padding: .25em .75em;
  display: inline-block;
  width: auto;
  border: 1px solid #43454b;
  border-radius: 3px;
  color: #43454b;
  background: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 9;
  position: static
}

.wc-block-components-product-sku {
  margin-top: 0;
  margin-bottom: 12px;
  display: block;
  text-transform: uppercase;
  font-size: .875em
}

.wc-block-components-product-stock-indicator {
  margin-top: 0;
  margin-bottom: .75em;
  display: block;
  font-size: .875em
}

.wc-block-components-product-stock-indicator--in-stock {
  color: #4ab866
}

.wc-block-components-product-stock-indicator--out-of-stock {
  color: #cc1818
}

.wc-block-components-product-stock-indicator--available-on-backorder,
.wc-block-components-product-stock-indicator--low-stock {
  color: #f0b849
}

.wc-block-components-product-summary {
  margin-top: 0;
  margin-bottom: 12px
}

.is-loading .wc-block-components-product-summary:before {
  -webkit-animation: loading-fade 1.2s ease-in-out infinite;
  animation: loading-fade 1.2s ease-in-out infinite;
  background-color: var(--global--color-primary, #e0e0e0)!important;
  color: var(--global--color-primary, #e0e0e0)!important;
  outline: 0!important;
  border: 0!important;
  box-shadow: none;
  pointer-events: none;
  max-width: 100%;
  content: ".";
  display: block;
  width: 100%;
  height: 6em
}

.is-loading .wc-block-components-product-summary:before>* {
  visibility: hidden
}

@media screen and (prefers-reduced-motion:reduce) {
  .is-loading .wc-block-components-product-summary:before {
    -webkit-animation: none;
    animation: none
  }
}

.wc-block-components-product-tag-list {
  margin-top: 0;
  margin-bottom: .75em
}

.wc-block-components-product-tag-list ul {
  margin: 0;
  padding: 0;
  display: inline
}

.wc-block-components-product-tag-list ul li {
  display: inline;
  list-style: none
}

.wc-block-components-product-tag-list ul li:after {
  content: ", "
}

.wc-block-components-product-tag-list ul li:last-child:after {
  content: ""
}

.wc-block-components-product-title {
  margin-top: 0;
  margin-bottom: 12px
}

.wc-block-grid .wc-block-components-product-title {
  line-height: 1.5;
  font-weight: 700;
  padding: 0;
  color: inherit;
  font-size: inherit;
  display: block
}

.is-loading .wc-block-components-product-title:before {
  -webkit-animation: loading-fade 1.2s ease-in-out infinite;
  animation: loading-fade 1.2s ease-in-out infinite;
  background-color: var(--global--color-primary, #e0e0e0)!important;
  color: var(--global--color-primary, #e0e0e0)!important;
  outline: 0!important;
  border: 0!important;
  box-shadow: none;
  pointer-events: none;
  max-width: 100%;
  content: ".";
  display: inline-block;
  width: 7em
}

.is-loading .wc-block-components-product-title:before>* {
  visibility: hidden
}

@media screen and (prefers-reduced-motion:reduce) {
  .is-loading .wc-block-components-product-title:before {
    -webkit-animation: none;
    animation: none
  }
}

.is-loading .wc-block-grid .wc-block-components-product-title:before {
  width: 10em
}

.wc-block-components-product-title--align-left {
  text-align: left
}

.wc-block-components-product-title--align-center {
  text-align: center
}

.wc-block-components-product-title--align-right {
  text-align: right
}

.wc-block-components-error {
  display: flex;
  padding: 40px 0;
  margin: 40px 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #757575;
  text-align: center
}

.wc-block-components-error__header {
  font-size: 2em;
  margin: 0;
  color: #646970
}

.wc-block-components-error__image {
  width: 25%;
  margin: 0 0 24px
}

.wc-block-components-error__text {
  margin: 1em 0 0;
  color: #8c8f94;
  font-size: 1.25em;
  max-width: 60ch
}

.wc-block-components-error__message {
  margin: 1em auto 0;
  font-style: italic;
  color: #8c8f94;
  max-width: 60ch
}

.wc-block-error__button {
  margin: 40px 0 0
}

.wc-block-components-button:not(.is-link) {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  align-items: center;
  background-color: #1e1e1e;
  color: #fff;
  display: inline-flex;
  font-weight: 700;
  min-height: 3em;
  justify-content: center;
  line-height: 1;
  padding: 0 1em;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  position: relative
}

.wc-block-components-button:not(.is-link):active,
.wc-block-components-button:not(.is-link):disabled,
.wc-block-components-button:not(.is-link):focus,
.wc-block-components-button:not(.is-link):hover {
  background-color: #1e1e1e;
  color: #fff
}

.wc-block-components-button:not(.is-link) .wc-block-components-button__text {
  display: block
}

.wc-block-components-button:not(.is-link) .wc-block-components-button__text>svg {
  fill: currentColor
}

.wc-block-components-button:not(.is-link) .wc-block-components-spinner+.wc-block-components-button__text {
  visibility: hidden
}

.wc-block-components-form {
  counter-reset: checkout-step
}

.wc-block-components-form .wc-block-components-checkout-step {
  position: relative;
  border: none;
  padding: 0 0 0 24px;
  background: none;
  margin: 0
}

.is-mobile .wc-block-components-form .wc-block-components-checkout-step,
.is-small .wc-block-components-form .wc-block-components-checkout-step {
  padding-left: 0
}

.wc-block-components-checkout-step--disabled {
  opacity: .6
}

.wc-block-components-checkout-step__container {
  position: relative
}

.wc-block-components-checkout-step__content>* {
  margin-bottom: 1em
}

.wc-block-components-checkout-step--with-step-number .wc-block-components-checkout-step__content>:last-child {
  margin-bottom: 0;
  padding-bottom: 1.5em
}

.wc-block-components-checkout-step__heading {
  display: flex;
  justify-content: space-between;
  align-content: center;
  flex-wrap: wrap;
  margin: .75em 0 1em;
  position: relative;
  align-items: center;
  gap: 1em
}

.wc-block-components-checkout-step:first-child .wc-block-components-checkout-step__heading,
.wc-block-components-express-payment-continue-rule+.wc-block-components-checkout-step .wc-block-components-checkout-step__heading {
  margin-top: 0
}

.wc-block-components-checkout-step__title {
  margin: 0 12px 0 0
}

.wc-block-components-checkout-step__heading-content {
  font-size: .75em
}

.wc-block-components-checkout-step__heading-content a {
  font-weight: 700;
  color: inherit
}

.wc-block-components-checkout-step__description {
  font-size: .875em;
  line-height: 1.25;
  margin-bottom: 16px
}

.wc-block-components-checkout-step--with-step-number .wc-block-components-checkout-step__title:before {
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  counter-increment: checkout-step;
  content: " " counter(checkout-step) ".";
  content: " " counter(checkout-step) "."/"";
  position: absolute;
  width: 24px;
  left: -24px;
  top: 0;
  text-align: center;
  transform: translateX(-50%)
}

.wc-block-components-checkout-step--with-step-number .wc-block-components-checkout-step__container:after {
  content: "";
  height: 100%;
  border-left: 1px solid;
  opacity: .3;
  position: absolute;
  left: -24px;
  top: 0
}

.is-mobile .wc-block-components-checkout-step--with-step-number .wc-block-components-checkout-step__title:before,
.is-small .wc-block-components-checkout-step--with-step-number .wc-block-components-checkout-step__title:before {
  position: static;
  transform: none;
  left: auto;
  top: auto;
  content: counter(checkout-step) ". ";
  content: counter(checkout-step) ". "/""
}

.is-mobile .wc-block-components-checkout-step--with-step-number .wc-block-components-checkout-step__container:after,
.is-small .wc-block-components-checkout-step--with-step-number .wc-block-components-checkout-step__container:after {
  content: unset
}

.editor-styles-wrapper .wp-block h4.wc-block-components-checkout-step__title {
  font-size: 1em;
  line-height: 24px;
  margin: 0 12px 0 0
}

.wc-block-components-order-summary .wc-block-components-panel__button {
  padding-top: 0;
  margin-top: 0
}

.wc-block-components-order-summary .wc-block-components-panel__content {
  margin-bottom: 0
}

.wc-block-components-order-summary__content {
  display: table;
  width: 100%
}

.wc-block-components-order-summary-item {
  position: relative;
  font-size: .875em;
  display: flex;
  padding-bottom: 1px;
  padding-top: 16px;
  width: 100%
}

.wc-block-components-order-summary-item:after {
  border-style: solid;
  border-width: 0 0 1px;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  opacity: .3;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0
}

.wc-block-components-order-summary-item:first-child {
  padding-top: 0
}

.wc-block-components-order-summary-item:last-child>div {
  padding-bottom: 0
}

.wc-block-components-order-summary-item:last-child:after {
  display: none
}

.wc-block-components-order-summary-item .wc-block-components-product-metadata {
  font-size: 1em
}

.wc-block-components-order-summary-item__description,
.wc-block-components-order-summary-item__image {
  display: table-cell;
  vertical-align: top
}

.wc-block-components-order-summary-item__image {
  width: 48px;
  padding-bottom: 16px;
  position: relative
}

.wc-block-components-order-summary-item__image>img {
  width: 48px;
  max-width: 48px
}

.wc-block-components-order-summary-item__quantity {
  align-items: center;
  background: #fff;
  border: 2px solid;
  border-radius: 1em;
  box-shadow: 0 0 0 2px #fff;
  color: #000;
  display: flex;
  line-height: 1;
  min-height: 20px;
  padding: 0 .4em;
  position: absolute;
  justify-content: center;
  min-width: 20px;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
  white-space: nowrap;
  z-index: 1
}

.wc-block-components-order-summary-item__description {
  padding-left: 24px;
  padding-right: 12px;
  padding-bottom: 16px
}

.wc-block-components-order-summary-item__description .wc-block-components-product-metadata,
.wc-block-components-order-summary-item__description p {
  line-height: 1.375;
  margin-top: 4px
}

.wc-block-components-order-summary-item__total-price {
  font-weight: 700;
  margin-left: auto;
  text-align: right
}

.wc-block-components-order-summary-item__individual-prices {
  display: block
}

.wc-block-components-payment-method-icons {
  margin: 0 0 14px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center
}

.wc-block-components-payment-method-icons .wc-block-components-payment-method-icon {
  display: inline-block;
  margin: 0 4px 2px;
  padding: 0;
  width: auto;
  max-width: 38px;
  height: 24px;
  max-height: 24px
}

.wc-block-components-payment-method-icons--align-left {
  justify-content: flex-start
}

.wc-block-components-payment-method-icons--align-left .wc-block-components-payment-method-icon {
  margin-left: 0;
  margin-right: 8px
}

.wc-block-components-payment-method-icons--align-right {
  justify-content: flex-end
}

.wc-block-components-payment-method-icons--align-right .wc-block-components-payment-method-icon {
  margin-right: 0;
  margin-left: 8px
}

.wc-block-components-payment-method-icons:last-child {
  margin-bottom: 0
}

.is-mobile .wc-block-components-payment-method-icons .wc-block-components-payment-method-icon,
.is-small .wc-block-components-payment-method-icons .wc-block-components-payment-method-icon {
  height: 16px
}

.wc-block-components-payment-method-label--with-icon {
  display: inline-block;
  vertical-align: middle
}

.wc-block-components-payment-method-label--with-icon>img,
.wc-block-components-payment-method-label--with-icon>svg {
  vertical-align: middle;
  margin: -2px 4px 0 0
}

.is-mobile .wc-block-components-payment-method-label--with-icon>img,
.is-mobile .wc-block-components-payment-method-label--with-icon>svg,
.is-small .wc-block-components-payment-method-label--with-icon>img,
.is-small .wc-block-components-payment-method-label--with-icon>svg {
  display: none
}

.editor-styles-wrapper .wc-block-components-checkout-policies,
.wc-block-components-checkout-policies {
  font-size: .75em;
  text-align: center;
  list-style: none outside;
  line-height: 1;
  margin: 24px 0
}

.wc-block-components-checkout-policies__item {
  list-style: none outside;
  display: inline-block;
  padding: 0 .25em;
  margin: 0
}

.wc-block-components-checkout-policies__item:not(:first-child) {
  border-left: 1px solid #ccc
}

.wc-block-components-checkout-policies__item>a {
  color: inherit;
  padding: 0 .25em
}

.wc-block-components-product-badge {
  font-size: .75em;
  border-radius: 2px;
  border: 1px solid;
  display: inline-block;
  font-weight: 600;
  padding: 0 .66em;
  text-transform: uppercase;
  white-space: nowrap
}

.wc-block-components-product-details.wc-block-components-product-details {
  list-style: none;
  margin: .5em 0;
  padding: 0
}

.wc-block-components-product-details.wc-block-components-product-details:last-of-type {
  margin-bottom: 0
}

.wc-block-components-product-details.wc-block-components-product-details li {
  margin-left: 0
}

.wc-block-components-product-details__name,
.wc-block-components-product-details__value {
  display: inline-block
}

.is-large:not(.wc-block-checkout) .wc-block-components-product-details__name {
  font-weight: 700
}

img.wc-block-components-product-image[alt=""] {
  border: 1px solid #f2f2f2
}

.wc-block-components-product-metadata {
  font-size: .75em
}

.wc-block-components-product-metadata .wc-block-components-product-metadata__description>p,
.wc-block-components-product-metadata .wc-block-components-product-metadata__variation-data {
  margin: .25em 0
}

.wc-block-components-checkout-return-to-cart-button {
  box-shadow: none;
  color: inherit;
  padding-left: calc(24px + .25em);
  position: relative;
  text-decoration: none
}

.wc-block-components-checkout-return-to-cart-button svg {
  left: 0;
  position: absolute;
  transform: translateY(-50%);
  top: 50%
}

.wc-block-components-shipping-calculator-address {
  margin-bottom: 0
}

.wc-block-components-shipping-calculator-address__button {
  width: 100%;
  margin-top: 1.5em
}

.wc-block-components-shipping-calculator {
  padding: .5em 0 .75em
}

.wc-block-components-shipping-rates-control__package .wc-block-components-panel__button {
  margin-bottom: 0;
  margin-top: 0;
  padding-bottom: .75em;
  padding-top: .75em
}

.wc-block-components-shipping-rates-control__package .wc-block-components-panel__content,
.wc-block-components-shipping-rates-control__package .wc-block-components-radio-control,
.wc-block-components-shipping-rates-control__package .wc-block-components-radio-control .wc-block-components-radio-control__option-layout,
.wc-block-components-shipping-rates-control__package .wc-block-components-radio-control__option-layout {
  padding-bottom: 0
}

.wc-block-components-shipping-rates-control__package-items {
  font-size: .875em;
  display: block;
  list-style: none;
  margin: 0;
  padding: 0
}

.wc-block-components-shipping-rates-control__package-item {
  overflow-wrap: anywhere;
  word-break: break-word;
  -ms-word-break: break-all;
  display: inline-block;
  margin: 0;
  padding: 0
}

.wc-block-components-shipping-rates-control__package-item:not(:last-child):after {
  content: ", ";
  white-space: pre
}

.wc-block-components-totals-coupon .wc-block-components-panel__button {
  margin-top: 0;
  padding-top: 0
}

.wc-block-components-totals-coupon .wc-block-components-panel__content {
  padding-bottom: 0
}

.wc-block-components-totals-coupon__form {
  display: flex;
  width: 100%;
  margin-bottom: 0
}

.wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__input {
  margin-bottom: 0;
  margin-top: 0;
  flex-grow: 1
}

.wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button {
  height: 3em;
  flex-shrink: 0;
  margin-left: 8px;
  padding-left: 24px;
  padding-right: 24px;
  white-space: nowrap
}

.wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button.no-margin {
  margin: 0
}

.wc-block-components-totals-coupon__content {
  flex-direction: column;
  position: relative
}

.wc-block-components-totals-discount__coupon-list {
  list-style: none;
  margin: 0;
  padding: 0
}

.wc-block-components-totals-discount .wc-block-components-totals-item__value {
  color: #4ab866
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: 1.25em
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  font-weight: 700
}

.wc-block-components-totals-footer-item .wc-block-components-totals-footer-item-tax {
  margin-bottom: 0
}

.wc-block-components-totals-shipping fieldset.wc-block-components-totals-shipping__fieldset {
  background-color: transparent;
  margin: 0;
  padding: 0;
  border: 0
}

.wc-block-components-totals-shipping .wc-block-components-totals-shipping__via {
  margin-bottom: 16px
}

.wc-block-components-totals-shipping .wc-block-components-totals-shipping__options .wc-block-components-radio-control__description,
.wc-block-components-totals-shipping .wc-block-components-totals-shipping__options .wc-block-components-radio-control__label,
.wc-block-components-totals-shipping .wc-block-components-totals-shipping__options .wc-block-components-radio-control__secondary-description,
.wc-block-components-totals-shipping .wc-block-components-totals-shipping__options .wc-block-components-radio-control__secondary-label {
  flex-basis: 100%;
  text-align: left
}

.wc-block-components-totals-shipping .wc-block-components-shipping-rates-control__no-results-notice {
  margin: 0 0 .75em
}

.wc-block-components-totals-shipping .wc-block-components-totals-shipping__change-address-button {
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  background: transparent;
  box-shadow: none;
  display: inline;
  text-shadow: none;
  text-decoration: underline
}

.wc-block-components-totals-shipping .wc-block-components-totals-shipping__change-address-button:active,
.wc-block-components-totals-shipping .wc-block-components-totals-shipping__change-address-button:focus,
.wc-block-components-totals-shipping .wc-block-components-totals-shipping__change-address-button:hover {
  background: transparent;
  opacity: .8
}

.theme-twentytwentyone.theme-twentytwentyone.theme-twentytwentyone .wc-block-components-totals-shipping__change-address-button {
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  background: transparent;
  box-shadow: none;
  display: inline;
  text-shadow: none;
  text-decoration: underline
}

.theme-twentytwentyone.theme-twentytwentyone.theme-twentytwentyone .wc-block-components-totals-shipping__change-address-button:active,
.theme-twentytwentyone.theme-twentytwentyone.theme-twentytwentyone .wc-block-components-totals-shipping__change-address-button:focus,
.theme-twentytwentyone.theme-twentytwentyone.theme-twentytwentyone .wc-block-components-totals-shipping__change-address-button:hover {
  background: transparent
}

.editor-styles-wrapper .wc-block-components-checkbox-list,
.wc-block-components-checkbox-list {
  margin: 0;
  padding: 0;
  list-style: none outside
}

.editor-styles-wrapper .wc-block-components-checkbox-list li,
.wc-block-components-checkbox-list li {
  margin: 0 0 4px;
  padding: 0;
  list-style: none outside
}

.editor-styles-wrapper .wc-block-components-checkbox-list li.show-less button,
.editor-styles-wrapper .wc-block-components-checkbox-list li.show-more button,
.wc-block-components-checkbox-list li.show-less button,
.wc-block-components-checkbox-list li.show-more button {
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
  cursor: pointer
}

.editor-styles-wrapper .wc-block-components-checkbox-list.is-loading li,
.wc-block-components-checkbox-list.is-loading li {
  -webkit-animation: loading-fade 1.2s ease-in-out infinite;
  animation: loading-fade 1.2s ease-in-out infinite;
  background-color: var(--global--color-primary, #e0e0e0)!important;
  color: var(--global--color-primary, #e0e0e0)!important;
  outline: 0!important;
  border: 0!important;
  box-shadow: none;
  pointer-events: none;
  max-width: 100%
}

.editor-styles-wrapper .wc-block-components-checkbox-list.is-loading li>*,
.wc-block-components-checkbox-list.is-loading li>* {
  visibility: hidden
}

@media screen and (prefers-reduced-motion:reduce) {
  .editor-styles-wrapper .wc-block-components-checkbox-list.is-loading li,
  .wc-block-components-checkbox-list.is-loading li {
    -webkit-animation: none;
    animation: none
  }
}

.wc-block-components-chip {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  align-items: center;
  border: 0;
  display: inline-flex;
  padding: .125em .5em .25em;
  margin: 0 .365em .365em 0;
  border-radius: 0;
  line-height: 1;
  max-width: 100%
}

.wc-block-components-chip,
.wc-block-components-chip:active,
.wc-block-components-chip:focus,
.wc-block-components-chip:hover {
  background: #e0e0e0;
  color: #1e1e1e
}

.wc-block-components-chip.wc-block-components-chip--radius-small {
  border-radius: 3px
}

.wc-block-components-chip.wc-block-components-chip--radius-medium {
  border-radius: .433em
}

.wc-block-components-chip.wc-block-components-chip--radius-large {
  border-radius: 2em;
  padding-left: .75em;
  padding-right: .75em
}

.wc-block-components-chip .wc-block-components-chip__text {
  flex-grow: 1
}

.wc-block-components-chip.is-removable {
  padding-right: .5em
}

.wc-block-components-chip.is-removable .wc-block-components-chip__text {
  padding-right: .25em
}

.wc-block-components-chip .wc-block-components-chip__remove {
  font-size: .75em;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0
}

.wc-block-components-chip .wc-block-components-chip__remove-icon {
  vertical-align: middle
}

.theme-twentytwentyone .wc-block-components-chip,
.theme-twentytwentyone .wc-block-components-chip:active,
.theme-twentytwentyone .wc-block-components-chip:focus,
.theme-twentytwentyone .wc-block-components-chip:hover {
  background: #fff
}

.theme-twentytwentyone .wc-block-components-chip:active button.wc-block-components-chip__remove:not(:hover):not(:active):not(.has-background),
.theme-twentytwentyone .wc-block-components-chip:focus button.wc-block-components-chip__remove:not(:hover):not(:active):not(.has-background),
.theme-twentytwentyone .wc-block-components-chip:hover button.wc-block-components-chip__remove:not(:hover):not(:active):not(.has-background),
.theme-twentytwentyone .wc-block-components-chip button.wc-block-components-chip__remove:not(:hover):not(:active):not(.has-background) {
  background: transparent
}

.wc-block-components-chip__remove:focus,
.wc-block-components-chip__remove:hover,
button.wc-block-components-chip:focus>.wc-block-components-chip__remove,
button.wc-block-components-chip:hover>.wc-block-components-chip__remove {
  fill: #cc1818
}

.wc-block-components-chip__remove:disabled,
button.wc-block-components-chip:disabled>.wc-block-components-chip__remove {
  fill: #949494;
  cursor: not-allowed
}

.wc-block-components-combobox .wc-block-components-combobox-control,
.wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline
}

.wc-block-components-combobox .wc-block-components-combobox-control .components-base-control__field,
.wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control .components-base-control__field {
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline
}

.wc-block-components-combobox .wc-block-components-combobox-control .components-combobox-control__suggestions-container,
.wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control .components-combobox-control__suggestions-container {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  position: relative
}

.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
  color: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  font-size: 1em;
  box-sizing: border-box;
  outline: inherit;
  border: 1px solid #50575e;
  background: #fff;
  box-shadow: none;
  color: #2b2d2f;
  font-family: inherit;
  font-weight: 400;
  height: 3em;
  letter-spacing: inherit;
  line-height: 1;
  padding: 1.5em 16px .25em;
  text-align: left;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
  width: 100%;
  opacity: 1;
  border-radius: 0
}

.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input:focus,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input[aria-expanded=true],
.wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input:focus,
.wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input[aria-expanded=true] {
  background-color: #fff;
  color: #2b2d2f;
  outline: 0;
  box-shadow: 0 0 0 1px #50575e
}

.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input[aria-expanded=true],
.wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input[aria-expanded=true] {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0
}

.has-dark-controls .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.has-dark-controls .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
  background-color: rgba(0, 0, 0, .1);
  border-color: hsla(0, 0%, 100%, .4);
  color: #fff
}

.has-dark-controls .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input:focus,
.has-dark-controls .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input:focus {
  background-color: rgba(0, 0, 0, .1);
  color: #fff;
  box-shadow: 0 0 0 1px hsla(0, 0%, 100%, .4)
}

.wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list,
.wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list {
  position: absolute;
  z-index: 10;
  background-color: #fff;
  border: 1px solid #50575e;
  border-top: 0;
  margin: 3em 0 0;
  padding: 0;
  max-height: 300px;
  min-width: 100%;
  overflow: auto;
  color: #2b2d2f
}

.has-dark-controls .wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list,
.has-dark-controls .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list {
  background-color: #1e1e1e;
  color: #fff
}

.wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list .components-form-token-field__suggestion,
.wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list .components-form-token-field__suggestion {
  font-size: 1em;
  color: #757575;
  cursor: default;
  list-style: none;
  margin: 0;
  padding: .25em 16px
}

.wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list .components-form-token-field__suggestion.is-selected,
.wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list .components-form-token-field__suggestion.is-selected {
  background-color: #ddd
}

.has-dark-controls .wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list .components-form-token-field__suggestion.is-selected,
.has-dark-controls .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list .components-form-token-field__suggestion.is-selected {
  background-color: rgba(0, 0, 0, .4)
}

.wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list .components-form-token-field__suggestion.is-highlighted,
.wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list .components-form-token-field__suggestion:active,
.wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list .components-form-token-field__suggestion:focus,
.wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list .components-form-token-field__suggestion:hover,
.wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list .components-form-token-field__suggestion.is-highlighted,
.wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list .components-form-token-field__suggestion:active,
.wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list .components-form-token-field__suggestion:focus,
.wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list .components-form-token-field__suggestion:hover {
  background-color: #00669e;
  color: #fff
}

.wc-block-components-combobox .wc-block-components-combobox-control label.components-base-control__label,
.wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control label.components-base-control__label {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  font-size: 1em;
  line-height: 1.375;
  position: absolute;
  transform: translateY(.75em);
  transform-origin: top left;
  transition: all .2s ease;
  color: #757575;
  z-index: 1;
  margin: 0 0 0 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 32px);
  white-space: nowrap
}

.has-dark-controls .wc-block-components-combobox .wc-block-components-combobox-control label.components-base-control__label,
.has-dark-controls .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control label.components-base-control__label {
  color: hsla(0, 0%, 100%, .6)
}

@media screen and (prefers-reduced-motion:reduce) {
  .wc-block-components-combobox .wc-block-components-combobox-control label.components-base-control__label,
  .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control label.components-base-control__label {
    transition: none
  }
}

.wc-block-components-combobox.is-active .wc-block-components-combobox-control label.components-base-control__label,
.wc-block-components-combobox:focus-within .wc-block-components-combobox-control label.components-base-control__label,
.wc-block-components-form .wc-block-components-combobox.is-active .wc-block-components-combobox-control label.components-base-control__label,
.wc-block-components-form .wc-block-components-combobox:focus-within .wc-block-components-combobox-control label.components-base-control__label {
  transform: translateY(4px) scale(.75)
}

.wc-block-components-combobox.has-error .wc-block-components-combobox-control label.components-base-control__label,
.wc-block-components-form .wc-block-components-combobox.has-error .wc-block-components-combobox-control label.components-base-control__label {
  color: #cc1818
}

.wc-block-components-combobox.has-error .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-combobox.has-error .wc-block-components-combobox-control input.components-combobox-control__input:active,
.wc-block-components-combobox.has-error .wc-block-components-combobox-control input.components-combobox-control__input:focus,
.wc-block-components-combobox.has-error .wc-block-components-combobox-control input.components-combobox-control__input:hover,
.wc-block-components-form .wc-block-components-combobox.has-error .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-form .wc-block-components-combobox.has-error .wc-block-components-combobox-control input.components-combobox-control__input:active,
.wc-block-components-form .wc-block-components-combobox.has-error .wc-block-components-combobox-control input.components-combobox-control__input:focus,
.wc-block-components-form .wc-block-components-combobox.has-error .wc-block-components-combobox-control input.components-combobox-control__input:hover {
  border-color: #cc1818
}

.wc-block-components-combobox.has-error .wc-block-components-combobox-control input.components-combobox-control__input:focus,
.wc-block-components-form .wc-block-components-combobox.has-error .wc-block-components-combobox-control input.components-combobox-control__input:focus {
  box-shadow: 0 0 0 1px #cc1818
}

.wc-block-components-country-input {
  margin-top: 1.5em
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0
  }
  to {
    opacity: 1
  }
}

@keyframes fadein {
  0% {
    opacity: 0
  }
  to {
    opacity: 1
  }
}

@-webkit-keyframes slidein {
  0% {
    transform: translateX(0)
  }
  to {
    transform: translateX(-480px)
  }
}

@keyframes slidein {
  0% {
    transform: translateX(0)
  }
  to {
    transform: translateX(-480px)
  }
}

@media only screen and (max-width:480px) {
  @-webkit-keyframes slidein {
    0% {
      transform: translateX(0)
    }
    to {
      transform: translateX(-100vw)
    }
  }
  @keyframes slidein {
    0% {
      transform: translateX(0)
    }
    to {
      transform: translateX(-100vw)
    }
  }
}

.wc-block-components-drawer__screen-overlay {
  background-color: rgba(95, 95, 95, .35);
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity .3s;
  z-index: 9999;
  opacity: 1
}

.wc-block-components-drawer__screen-overlay--with-slide-out {
  transition: opacity .3s
}

.wc-block-components-drawer__screen-overlay--with-slide-in {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-name: fadein;
  animation-name: fadein
}

.wc-block-components-drawer__screen-overlay--is-hidden {
  pointer-events: none;
  opacity: 0
}

.wc-block-components-drawer {
  position: relative;
  background: #fff;
  display: block;
  height: 100%;
  left: 100%;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(-480px);
  width: 480px
}

.wc-block-components-drawer:after {
  border-style: solid;
  border-width: 0 0 0 1px;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  opacity: .3;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0
}

@media only screen and (max-width:480px) {
  .wc-block-components-drawer {
    transform: translateX(-100vw);
    width: 100vw
  }
}

.wc-block-components-drawer__screen-overlay--with-slide-out .wc-block-components-drawer {
  transition: transform .3s
}

.wc-block-components-drawer__screen-overlay--with-slide-in .wc-block-components-drawer {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-name: slidein;
  animation-name: slidein
}

.wc-block-components-drawer__screen-overlay--is-hidden .wc-block-components-drawer {
  transform: translateX(0)
}

@media screen and (prefers-reduced-motion:reduce) {
  .wc-block-components-drawer,
  .wc-block-components-drawer__screen-overlay {
    -webkit-animation-name: none!important;
    animation-name: none!important;
    transition: none!important
  }
}

.wc-block-components-drawer .components-modal__content {
  padding: 40px 16px
}

.wc-block-components-drawer .components-modal__header {
  position: relative
}

.wc-block-components-drawer .components-modal__header .components-button {
  border: 0;
  border-radius: 0;
  vertical-align: baseline;
  background: transparent;
  position: absolute;
  right: 0;
  top: 0;
  padding: 1em;
  margin: -1em
}

.wc-block-components-drawer .components-modal__header .components-button>span {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  overflow-wrap: normal!important;
  word-wrap: normal!important;
  padding: 0;
  position: absolute!important;
  width: 1px
}

.wc-block-components-drawer .components-modal__header-heading {
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  font-size: 1.25rem;
  word-break: break-word
}

.wc-block-components-dropdown-selector {
  max-width: 300px;
  position: relative;
  width: 100%
}

.wc-block-components-dropdown-selector__input-wrapper {
  background: #fff;
  border: 1px solid #50575e;
  color: #2b2d2f;
  align-items: center;
  border-radius: 0;
  cursor: text;
  display: flex;
  flex-wrap: wrap;
  padding: 2px 8px
}

.is-disabled .wc-block-components-dropdown-selector__input-wrapper {
  background-color: #e0e0e0
}

.is-multiple.has-checked>.wc-block-components-dropdown-selector__input-wrapper {
  padding: 2px 4px
}

.is-open>.wc-block-components-dropdown-selector__input-wrapper {
  border-radius: 0 4px 0 0
}

.wc-block-components-dropdown-selector__input {
  font-size: .875em;
  line-height: 1.2857142857;
  margin: .1875em 0;
  min-width: 0;
  padding: .1875em 0
}

.is-single .wc-block-components-dropdown-selector__input {
  width: 100%
}

.is-single .wc-block-components-dropdown-selector__input:active,
.is-single .wc-block-components-dropdown-selector__input:focus,
.is-single .wc-block-components-dropdown-selector__input:hover {
  outline: 0
}

.is-single.has-checked.is-open .wc-block-components-dropdown-selector__input {
  margin-bottom: 1.5px;
  margin-top: 1.5px
}

.is-single.has-checked:not(.is-open) .wc-block-components-dropdown-selector__input {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  overflow-wrap: normal!important;
  word-wrap: normal!important;
  padding: 0;
  position: absolute!important;
  width: 1px;
  position: absolute
}

.is-multiple .wc-block-components-dropdown-selector__input {
  flex: 1;
  min-width: 0
}

.is-multiple .wc-block-components-dropdown-selector__input,
.is-single .wc-block-components-dropdown-selector__input:first-child {
  background: transparent;
  border: 0
}

.is-multiple .wc-block-components-dropdown-selector__input:active,
.is-multiple .wc-block-components-dropdown-selector__input:focus,
.is-multiple .wc-block-components-dropdown-selector__input:hover,
.is-single .wc-block-components-dropdown-selector__input:first-child:active,
.is-single .wc-block-components-dropdown-selector__input:first-child:focus,
.is-single .wc-block-components-dropdown-selector__input:first-child:hover {
  outline: 0
}

.wc-block-components-dropdown-selector .wc-block-components-dropdown-selector__selected-value__label,
.wc-block-components-dropdown-selector .wc-block-components-dropdown-selector__selected-value__remove {
  background-color: transparent;
  border: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: none
}

.wc-block-components-dropdown-selector .wc-block-components-dropdown-selector__selected-value__label:active,
.wc-block-components-dropdown-selector .wc-block-components-dropdown-selector__selected-value__label:focus,
.wc-block-components-dropdown-selector .wc-block-components-dropdown-selector__selected-value__label:hover,
.wc-block-components-dropdown-selector .wc-block-components-dropdown-selector__selected-value__remove:active,
.wc-block-components-dropdown-selector .wc-block-components-dropdown-selector__selected-value__remove:focus,
.wc-block-components-dropdown-selector .wc-block-components-dropdown-selector__selected-value__remove:hover {
  background-color: transparent;
  text-decoration: none
}

.wc-block-components-dropdown-selector .wc-block-components-dropdown-selector__selected-value {
  font-size: .875em;
  align-items: center;
  color: #757575;
  display: inline-flex;
  margin: .1875em 0;
  padding: .1875em 0;
  width: 100%
}

.wc-block-components-dropdown-selector .wc-block-components-dropdown-selector__selected-value__label {
  flex-grow: 1;
  line-height: 1.2857142857;
  padding: 0;
  text-align: left
}

.wc-block-components-dropdown-selector .wc-block-components-dropdown-selector__selected-value__remove {
  background-color: transparent;
  border: 0;
  display: inline-block;
  line-height: 1;
  padding: 0 0 0 .3em
}

.wc-block-components-dropdown-selector .wc-block-components-dropdown-selector__selected-value__remove>svg {
  display: block
}

.wc-block-components-dropdown-selector .wc-block-components-dropdown-selector__selected-chip {
  font-size: .875em;
  margin-top: .1875em;
  margin-bottom: .1875em;
  line-height: 1.2857142857
}

.wc-block-components-dropdown-selector__list {
  background-color: #fff;
  margin: -1px 0 0;
  padding: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1
}

.wc-block-components-dropdown-selector__list:not(:empty) {
  border: 1px solid #9f9f9f
}

.wc-block-components-dropdown-selector__list-item {
  font-size: .875em;
  color: #757575;
  cursor: default;
  list-style: none;
  margin: 0;
  padding: 0 4px
}

.wc-block-components-dropdown-selector__list-item.is-selected {
  background-color: #ddd
}

.wc-block-components-dropdown-selector__list-item.is-highlighted,
.wc-block-components-dropdown-selector__list-item:active,
.wc-block-components-dropdown-selector__list-item:focus,
.wc-block-components-dropdown-selector__list-item:hover {
  background-color: #00669e;
  color: #fff
}

.wc-filter-element-label-list-count {
  opacity: .6
}

.wc-filter-element-label-list-count:before {
  content: " ("
}

.wc-filter-element-label-list-count:after {
  content: ")"
}

.wc-block-components-filter-submit-button {
  display: block;
  margin-left: auto;
  white-space: nowrap
}

.wc-block-components-formatted-money-amount {
  white-space: nowrap
}

.wc-block-components-load-more {
  text-align: center;
  width: 100%
}

.wc-block-components-loading-mask {
  position: relative;
  min-height: 34px;
  pointer-events: none
}

.wc-block-components-loading-mask .components-spinner {
  position: absolute;
  margin: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.wc-block-components-loading-mask .wc-block-components-loading-mask__children {
  opacity: .25
}

.wc-block-components-pagination {
  margin: 0 auto 16px
}

.wc-block-components-pagination__ellipsis,
.wc-block-components-pagination__page {
  font-size: 1em;
  color: #333;
  display: inline-block;
  font-weight: 400
}

.wc-block-components-pagination__page {
  border-color: transparent;
  padding: .3em .6em;
  min-width: 2.2em
}

@media(max-width:782px) {
  .wc-block-components-pagination__page {
    padding: .1em .2em;
    min-width: 1.6em
  }
}

.wc-block-components-pagination__page:not(.toggle) {
  background-color: transparent
}

.wc-block-components-pagination__ellipsis {
  padding: .3em
}

@media(max-width:782px) {
  .wc-block-components-pagination__ellipsis {
    padding: .1em
  }
}

.wc-block-components-pagination__page--active[disabled] {
  color: #333;
  font-weight: 700;
  opacity: 1!important
}

.wc-block-components-pagination__page--active[disabled]:focus,
.wc-block-components-pagination__page--active[disabled]:hover {
  background-color: inherit;
  color: #333;
  opacity: 1!important
}

html[dir=rtl] .wc-block-components-pagination-page--arrow span {
  display: inline-block;
  transform: scaleX(-1)
}

.wc-block-components-price-slider {
  margin-bottom: 24px
}

.wc-block-components-price-slider.wc-block-components-price-slider--has-filter-button .wc-block-components-price-slider__controls {
  justify-content: flex-end
}

.wc-block-components-price-slider.wc-block-components-price-slider--has-filter-button .wc-block-components-price-slider__controls .wc-block-components-price-slider__amount.wc-block-components-price-slider__amount--max {
  margin-left: 0;
  margin-right: 10px
}

.wc-block-components-price-slider.is-disabled .wc-block-components-price-slider__amount,
.wc-block-components-price-slider.is-disabled .wc-block-components-price-slider__button,
.wc-block-components-price-slider.is-disabled .wc-block-components-price-slider__range-input-wrapper,
.wc-block-components-price-slider.is-loading .wc-block-components-price-slider__amount,
.wc-block-components-price-slider.is-loading .wc-block-components-price-slider__button,
.wc-block-components-price-slider.is-loading .wc-block-components-price-slider__range-input-wrapper {
  -webkit-animation: loading-fade 1.2s ease-in-out infinite;
  animation: loading-fade 1.2s ease-in-out infinite;
  background-color: var(--global--color-primary, #e0e0e0)!important;
  color: var(--global--color-primary, #e0e0e0)!important;
  outline: 0!important;
  border: 0!important;
  pointer-events: none;
  max-width: 100%;
  box-shadow: none
}

.wc-block-components-price-slider.is-disabled .wc-block-components-price-slider__amount>*,
.wc-block-components-price-slider.is-disabled .wc-block-components-price-slider__button>*,
.wc-block-components-price-slider.is-disabled .wc-block-components-price-slider__range-input-wrapper>*,
.wc-block-components-price-slider.is-loading .wc-block-components-price-slider__amount>*,
.wc-block-components-price-slider.is-loading .wc-block-components-price-slider__button>*,
.wc-block-components-price-slider.is-loading .wc-block-components-price-slider__range-input-wrapper>* {
  visibility: hidden
}

@media screen and (prefers-reduced-motion:reduce) {
  .wc-block-components-price-slider.is-disabled .wc-block-components-price-slider__amount,
  .wc-block-components-price-slider.is-disabled .wc-block-components-price-slider__button,
  .wc-block-components-price-slider.is-disabled .wc-block-components-price-slider__range-input-wrapper,
  .wc-block-components-price-slider.is-loading .wc-block-components-price-slider__amount,
  .wc-block-components-price-slider.is-loading .wc-block-components-price-slider__button,
  .wc-block-components-price-slider.is-loading .wc-block-components-price-slider__range-input-wrapper {
    -webkit-animation: none;
    animation: none
  }
}

.wc-block-components-price-slider.is-disabled:not(.is-loading) .wc-block-components-price-slider__amount,
.wc-block-components-price-slider.is-disabled:not(.is-loading) .wc-block-components-price-slider__button,
.wc-block-components-price-slider.is-disabled:not(.is-loading) .wc-block-components-price-slider__range-input-wrapper {
  -webkit-animation: none;
  animation: none
}

.wc-block-components-price-slider__range-input-wrapper {
  padding: 0!important;
  border: 0!important;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 9px;
  clear: both;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1);
  background: #e1e1e1;
  margin: 15px 0
}

.wc-block-components-price-slider__range-input-progress {
  height: 9px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  --track-background: linear-gradient(90deg, transparent var(--low), var(--range-color) 0, var(--range-color) var(--high), transparent 0) no-repeat 0 100%/100% 100%;
  --range-color: #af7dd1;
  background: var(--track-background)
}

.wc-block-components-price-slider__controls {
  display: flex
}

.wc-block-components-price-slider__controls .wc-block-components-price-slider__amount {
  margin: 0;
  border-radius: 0;
  width: auto;
  max-width: 100px;
  min-width: 0
}

.wc-block-components-price-slider__controls .wc-block-components-price-slider__amount.wc-block-components-price-slider__amount--min {
  margin-right: 10px
}

.wc-block-components-price-slider__controls .wc-block-components-price-slider__amount.wc-block-components-price-slider__amount--max {
  margin-left: auto
}

.wc-block-components-price-slider__range-input {
  margin: 0;
  padding: 0!important;
  border: 0!important;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 0;
  display: block;
  position: relative;
  pointer-events: none;
  outline: none!important;
  position: absolute;
  left: 0;
  top: 0
}

.wc-block-components-price-slider__range-input::-webkit-slider-runnable-track {
  cursor: default;
  height: 1px;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

.wc-block-components-price-slider__range-input::-webkit-slider-thumb {
  background-color: transparent;
  background-position: 0 0;
  width: 28px;
  height: 23px;
  border: 0;
  padding: 0;
  vertical-align: top;
  cursor: pointer;
  z-index: 20;
  pointer-events: auto;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='56' height='46' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M25.318 9.942L16.9 3.8c-1.706-1.228-3.64-1.899-5.686-1.787H11.1c-4.89.335-8.985 4.356-9.099 9.27C1.888 16.645 6.21 21 11.67 21h.113c1.82 0 3.64-.67 5.118-1.787l8.417-6.255c.91-.893.91-2.234 0-3.016v0z' fill='%23fff' stroke='%23757575'/%3E%3Cpath d='M13 7v9m-3-9v9-9z' stroke='%23B8B8B8'/%3E%3Cpath d='M25.318 9.942L16.9 3.8c-1.706-1.228-3.64-1.899-5.686-1.787H11.1c-4.89.335-8.985 4.356-9.099 9.27C1.888 16.645 6.21 21 11.67 21h.113c1.82 0 3.64-.67 5.118-1.787l8.417-6.255c.91-.893.91-2.234 0-3.016v0z' fill='%23fff' stroke='%23757575'/%3E%3Cpath d='M13 7v9m-3-9v9-9z' stroke='%23B8B8B8'/%3E%3Cpath d='M25.318 32.942L16.9 26.8c-1.706-1.228-3.64-1.899-5.686-1.787H11.1c-4.89.335-8.985 4.356-9.099 9.27C1.888 39.645 6.21 44 11.67 44h.113c1.82 0 3.64-.67 5.118-1.787l8.417-6.255c.91-.893.91-2.234 0-3.016v0z' fill='%23F8F3F7' stroke='%23fff' stroke-opacity='.75' stroke-width='3'/%3E%3Cpath d='M25.318 32.942L16.9 26.8c-1.706-1.228-3.64-1.899-5.686-1.787H11.1c-4.89.335-8.985 4.356-9.099 9.27C1.888 39.645 6.21 44 11.67 44h.113c1.82 0 3.64-.67 5.118-1.787l8.417-6.255c.91-.893.91-2.234 0-3.016v0zM13 30v9m-3-9v9-9z' stroke='%23757575'/%3E%3Cpath d='M30.682 9.942L39.1 3.8c1.706-1.228 3.64-1.899 5.686-1.787h.114c4.89.335 8.985 4.356 9.099 9.27C54.112 16.645 49.79 21 44.33 21h-.113c-1.82 0-3.64-.67-5.118-1.787l-8.417-6.255c-.91-.893-.91-2.234 0-3.016v0z' fill='%23fff' stroke='%23757575'/%3E%3Cpath d='M43 7v9m3-9v9-9z' stroke='%23B8B8B8'/%3E%3Cpath d='M30.682 32.942L39.1 26.8c1.706-1.228 3.64-1.899 5.686-1.787h.114c4.89.335 8.985 4.356 9.099 9.27C54.112 39.645 49.79 44 44.33 44h-.113c-1.82 0-3.64-.67-5.118-1.787l-8.417-6.255c-.91-.893-.91-2.234 0-3.016v0z' fill='%23F8F3F7' stroke='%23fff' stroke-opacity='.75' stroke-width='3'/%3E%3Cpath d='M30.682 32.942L39.1 26.8c1.706-1.228 3.64-1.899 5.686-1.787h.114c4.89.335 8.985 4.356 9.099 9.27C54.112 39.645 49.79 44 44.33 44h-.113c-1.82 0-3.64-.67-5.118-1.787l-8.417-6.255c-.91-.893-.91-2.234 0-3.016v0zM43 30v9m3-9v9-9z' stroke='%23757575'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Cpath fill='%23fff' d='M0 0h56v46H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  -webkit-transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: -6px 0 0
}

.wc-block-components-price-slider__range-input::-webkit-slider-thumb:hover {
  background-position-y: -23px;
  transform: scale(1.1)
}

.wc-block-components-price-slider__range-input::-webkit-slider-progress {
  margin: 0;
  padding: 0!important;
  border: 0!important;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

.wc-block-components-price-slider__range-input::-moz-focus-outer {
  border: 0
}

.wc-block-components-price-slider__range-input::-moz-range-track {
  cursor: default;
  height: 1px;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

.wc-block-components-price-slider__range-input::-moz-range-progress {
  margin: 0;
  padding: 0!important;
  border: 0!important;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

.wc-block-components-price-slider__range-input::-moz-range-thumb {
  background-color: transparent;
  background-position: 0 0;
  width: 28px;
  height: 23px;
  border: 0;
  padding: 0;
  margin: 0;
  vertical-align: top;
  cursor: pointer;
  z-index: 20;
  pointer-events: auto;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='56' height='46' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M25.318 9.942L16.9 3.8c-1.706-1.228-3.64-1.899-5.686-1.787H11.1c-4.89.335-8.985 4.356-9.099 9.27C1.888 16.645 6.21 21 11.67 21h.113c1.82 0 3.64-.67 5.118-1.787l8.417-6.255c.91-.893.91-2.234 0-3.016v0z' fill='%23fff' stroke='%23757575'/%3E%3Cpath d='M13 7v9m-3-9v9-9z' stroke='%23B8B8B8'/%3E%3Cpath d='M25.318 9.942L16.9 3.8c-1.706-1.228-3.64-1.899-5.686-1.787H11.1c-4.89.335-8.985 4.356-9.099 9.27C1.888 16.645 6.21 21 11.67 21h.113c1.82 0 3.64-.67 5.118-1.787l8.417-6.255c.91-.893.91-2.234 0-3.016v0z' fill='%23fff' stroke='%23757575'/%3E%3Cpath d='M13 7v9m-3-9v9-9z' stroke='%23B8B8B8'/%3E%3Cpath d='M25.318 32.942L16.9 26.8c-1.706-1.228-3.64-1.899-5.686-1.787H11.1c-4.89.335-8.985 4.356-9.099 9.27C1.888 39.645 6.21 44 11.67 44h.113c1.82 0 3.64-.67 5.118-1.787l8.417-6.255c.91-.893.91-2.234 0-3.016v0z' fill='%23F8F3F7' stroke='%23fff' stroke-opacity='.75' stroke-width='3'/%3E%3Cpath d='M25.318 32.942L16.9 26.8c-1.706-1.228-3.64-1.899-5.686-1.787H11.1c-4.89.335-8.985 4.356-9.099 9.27C1.888 39.645 6.21 44 11.67 44h.113c1.82 0 3.64-.67 5.118-1.787l8.417-6.255c.91-.893.91-2.234 0-3.016v0zM13 30v9m-3-9v9-9z' stroke='%23757575'/%3E%3Cpath d='M30.682 9.942L39.1 3.8c1.706-1.228 3.64-1.899 5.686-1.787h.114c4.89.335 8.985 4.356 9.099 9.27C54.112 16.645 49.79 21 44.33 21h-.113c-1.82 0-3.64-.67-5.118-1.787l-8.417-6.255c-.91-.893-.91-2.234 0-3.016v0z' fill='%23fff' stroke='%23757575'/%3E%3Cpath d='M43 7v9m3-9v9-9z' stroke='%23B8B8B8'/%3E%3Cpath d='M30.682 32.942L39.1 26.8c1.706-1.228 3.64-1.899 5.686-1.787h.114c4.89.335 8.985 4.356 9.099 9.27C54.112 39.645 49.79 44 44.33 44h-.113c-1.82 0-3.64-.67-5.118-1.787l-8.417-6.255c-.91-.893-.91-2.234 0-3.016v0z' fill='%23F8F3F7' stroke='%23fff' stroke-opacity='.75' stroke-width='3'/%3E%3Cpath d='M30.682 32.942L39.1 26.8c1.706-1.228 3.64-1.899 5.686-1.787h.114c4.89.335 8.985 4.356 9.099 9.27C54.112 39.645 49.79 44 44.33 44h-.113c-1.82 0-3.64-.67-5.118-1.787l-8.417-6.255c-.91-.893-.91-2.234 0-3.016v0zM43 30v9m3-9v9-9z' stroke='%23757575'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Cpath fill='%23fff' d='M0 0h56v46H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  -moz-transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

.wc-block-components-price-slider__range-input::-moz-range-thumb:hover {
  background-position-y: -23px;
  transform: scale(1.1)
}

.wc-block-components-price-slider__range-input::-ms-thumb {
  background-color: transparent;
  background-position: 0 0;
  width: 28px;
  height: 23px;
  border: 0;
  padding: 0;
  margin: 0;
  vertical-align: top;
  cursor: pointer;
  z-index: 20;
  pointer-events: auto;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='56' height='46' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M25.318 9.942L16.9 3.8c-1.706-1.228-3.64-1.899-5.686-1.787H11.1c-4.89.335-8.985 4.356-9.099 9.27C1.888 16.645 6.21 21 11.67 21h.113c1.82 0 3.64-.67 5.118-1.787l8.417-6.255c.91-.893.91-2.234 0-3.016v0z' fill='%23fff' stroke='%23757575'/%3E%3Cpath d='M13 7v9m-3-9v9-9z' stroke='%23B8B8B8'/%3E%3Cpath d='M25.318 9.942L16.9 3.8c-1.706-1.228-3.64-1.899-5.686-1.787H11.1c-4.89.335-8.985 4.356-9.099 9.27C1.888 16.645 6.21 21 11.67 21h.113c1.82 0 3.64-.67 5.118-1.787l8.417-6.255c.91-.893.91-2.234 0-3.016v0z' fill='%23fff' stroke='%23757575'/%3E%3Cpath d='M13 7v9m-3-9v9-9z' stroke='%23B8B8B8'/%3E%3Cpath d='M25.318 32.942L16.9 26.8c-1.706-1.228-3.64-1.899-5.686-1.787H11.1c-4.89.335-8.985 4.356-9.099 9.27C1.888 39.645 6.21 44 11.67 44h.113c1.82 0 3.64-.67 5.118-1.787l8.417-6.255c.91-.893.91-2.234 0-3.016v0z' fill='%23F8F3F7' stroke='%23fff' stroke-opacity='.75' stroke-width='3'/%3E%3Cpath d='M25.318 32.942L16.9 26.8c-1.706-1.228-3.64-1.899-5.686-1.787H11.1c-4.89.335-8.985 4.356-9.099 9.27C1.888 39.645 6.21 44 11.67 44h.113c1.82 0 3.64-.67 5.118-1.787l8.417-6.255c.91-.893.91-2.234 0-3.016v0zM13 30v9m-3-9v9-9z' stroke='%23757575'/%3E%3Cpath d='M30.682 9.942L39.1 3.8c1.706-1.228 3.64-1.899 5.686-1.787h.114c4.89.335 8.985 4.356 9.099 9.27C54.112 16.645 49.79 21 44.33 21h-.113c-1.82 0-3.64-.67-5.118-1.787l-8.417-6.255c-.91-.893-.91-2.234 0-3.016v0z' fill='%23fff' stroke='%23757575'/%3E%3Cpath d='M43 7v9m3-9v9-9z' stroke='%23B8B8B8'/%3E%3Cpath d='M30.682 32.942L39.1 26.8c1.706-1.228 3.64-1.899 5.686-1.787h.114c4.89.335 8.985 4.356 9.099 9.27C54.112 39.645 49.79 44 44.33 44h-.113c-1.82 0-3.64-.67-5.118-1.787l-8.417-6.255c-.91-.893-.91-2.234 0-3.016v0z' fill='%23F8F3F7' stroke='%23fff' stroke-opacity='.75' stroke-width='3'/%3E%3Cpath d='M30.682 32.942L39.1 26.8c1.706-1.228 3.64-1.899 5.686-1.787h.114c4.89.335 8.985 4.356 9.099 9.27C54.112 39.645 49.79 44 44.33 44h-.113c-1.82 0-3.64-.67-5.118-1.787l-8.417-6.255c-.91-.893-.91-2.234 0-3.016v0zM43 30v9m3-9v9-9z' stroke='%23757575'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Cpath fill='%23fff' d='M0 0h56v46H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  -ms-transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

.wc-block-components-price-slider__range-input::-ms-thumb:hover {
  background-position-y: -23px;
  transform: scale(1.1)
}

.wc-block-components-price-slider__range-input:focus::-webkit-slider-thumb {
  background-position-y: -23px;
  transform: scale(1.1)
}

.wc-block-components-price-slider__range-input:focus::-moz-range-thumb {
  background-position-y: -23px;
  transform: scale(1.1)
}

.wc-block-components-price-slider__range-input:focus::-ms-thumb {
  background-position-y: -23px;
  transform: scale(1.1)
}

.wc-block-components-price-slider__range-input.wc-block-components-price-slider__range-input--min {
  z-index: 21
}

.wc-block-components-price-slider__range-input.wc-block-components-price-slider__range-input--min::-webkit-slider-thumb {
  margin-left: -2px;
  background-position-x: left
}

.wc-block-components-price-slider__range-input.wc-block-components-price-slider__range-input--min::-moz-range-thumb {
  background-position-x: left;
  transform: translate(-2px, 4px)
}

.wc-block-components-price-slider__range-input.wc-block-components-price-slider__range-input--min::-ms-thumb {
  background-position-x: left
}

.wc-block-components-price-slider__range-input.wc-block-components-price-slider__range-input--max {
  z-index: 20
}

.wc-block-components-price-slider__range-input.wc-block-components-price-slider__range-input--max::-webkit-slider-thumb {
  background-position-x: right;
  margin-left: 2px
}

.wc-block-components-price-slider__range-input.wc-block-components-price-slider__range-input--max::-moz-range-thumb {
  background-position-x: right;
  transform: translate(2px, 4px)
}

.wc-block-components-price-slider__range-input.wc-block-components-price-slider__range-input--max::-ms-thumb {
  background-position-x: right
}

.rtl .wc-block-components-price-slider__range-input-progress {
  --track-background: linear-gradient(270deg, transparent var(--low), var(--range-color) 0, var(--range-color) var(--high), transparent 0) no-repeat 0 100%/100% 100%;
  --range-color: #af7dd1;
  background: var(--track-background)
}

@media (-ms-high-contrast:none),
screen and (-ms-high-contrast:active) {
  .wc-block-components-price-slider__range-input-wrapper {
    background: transparent;
    box-shadow: none;
    height: 24px
  }
  .wc-block-components-price-slider__range-input-progress {
    background: #af7dd1;
    width: 100%;
    top: 7px
  }
  .wc-block-components-price-slider__range-input {
    height: 24px;
    pointer-events: auto
  }
  .wc-block-components-price-slider__range-input::-ms-track {
    background: transparent;
    border-color: transparent;
    border-width: 7px 0;
    color: transparent
  }
  .wc-block-components-price-slider__range-input::-ms-fill-lower {
    background: #e1e1e1;
    box-shadow: inset 0 0 0 1px #b8b8b8
  }
  .wc-block-components-price-slider__range-input::-ms-fill-upper {
    background: transparent
  }
  .wc-block-components-price-slider__range-input::-ms-tooltip {
    display: none
  }
  .wc-block-components-price-slider__range-input::-ms-thumb {
    transform: translate(1px);
    pointer-events: auto
  }
  .wc-block-components-price-slider__range-input--max::-ms-fill-upper {
    background: #e1e1e1;
    box-shadow: inset 0 0 0 1px #b8b8b8
  }
  .wc-block-components-price-slider__range-input--max::-ms-fill-lower {
    background: transparent
  }
  .wc-block-components-price-slider.is-disabled .wc-block-components-price-slider__range-input-wrapper,
  .wc-block-components-price-slider.is-loading .wc-block-components-price-slider__range-input-wrapper {
    -webkit-animation: loading-fade 1.2s ease-in-out infinite;
    animation: loading-fade 1.2s ease-in-out infinite;
    background-color: var(--global--color-primary, #e0e0e0)!important;
    color: var(--global--color-primary, #e0e0e0)!important;
    outline: 0!important;
    border: 0!important;
    pointer-events: none;
    max-width: 100%;
    box-shadow: none
  }
  .wc-block-components-price-slider.is-disabled .wc-block-components-price-slider__range-input-wrapper>*,
  .wc-block-components-price-slider.is-loading .wc-block-components-price-slider__range-input-wrapper>* {
    visibility: hidden
  }
}

@media screen and (-ms-high-contrast:active)and (prefers-reduced-motion:reduce),
screen and (-ms-high-contrast:none)and (prefers-reduced-motion:reduce) {
  .wc-block-components-price-slider.is-disabled .wc-block-components-price-slider__range-input-wrapper,
  .wc-block-components-price-slider.is-loading .wc-block-components-price-slider__range-input-wrapper {
    -webkit-animation: none;
    animation: none
  }
}

@media (-ms-high-contrast:none),
screen and (-ms-high-contrast:active) {
  .wc-block-components-price-slider.is-disabled:not(.is-loading) .wc-block-components-price-slider__range-input-wrapper {
    -webkit-animation: none;
    animation: none
  }
}

@supports(-ms-ime-align:auto) {
  .wc-block-components-price-slider__range-input-wrapper {
    background: transparent;
    box-shadow: none;
    height: 24px
  }
  .wc-block-components-price-slider__range-input-progress {
    background: #af7dd1;
    width: 100%;
    top: 7px
  }
  .wc-block-components-price-slider__range-input {
    height: 24px;
    pointer-events: auto
  }
  .wc-block-components-price-slider__range-input::-ms-track {
    background: transparent;
    border-color: transparent;
    border-width: 7px 0;
    color: transparent
  }
  .wc-block-components-price-slider__range-input::-ms-fill-lower {
    background: #e1e1e1;
    box-shadow: inset 0 0 0 1px #b8b8b8
  }
  .wc-block-components-price-slider__range-input::-ms-fill-upper {
    background: transparent
  }
  .wc-block-components-price-slider__range-input::-ms-tooltip {
    display: none
  }
  .wc-block-components-price-slider__range-input::-ms-thumb {
    transform: translate(1px);
    pointer-events: auto
  }
  .wc-block-components-price-slider__range-input--max::-ms-fill-upper {
    background: #e1e1e1;
    box-shadow: inset 0 0 0 1px #b8b8b8
  }
  .wc-block-components-price-slider__range-input--max::-ms-fill-lower {
    background: transparent
  }
  .wc-block-components-price-slider.is-disabled .wc-block-components-price-slider__range-input-wrapper,
  .wc-block-components-price-slider.is-loading .wc-block-components-price-slider__range-input-wrapper {
    -webkit-animation: loading-fade 1.2s ease-in-out infinite;
    animation: loading-fade 1.2s ease-in-out infinite;
    background-color: var(--global--color-primary, #e0e0e0)!important;
    color: var(--global--color-primary, #e0e0e0)!important;
    outline: 0!important;
    border: 0!important;
    pointer-events: none;
    max-width: 100%;
    box-shadow: none
  }
  .wc-block-components-price-slider.is-disabled .wc-block-components-price-slider__range-input-wrapper>*,
  .wc-block-components-price-slider.is-loading .wc-block-components-price-slider__range-input-wrapper>* {
    visibility: hidden
  }
  @media screen and (prefers-reduced-motion:reduce) {
    .wc-block-components-price-slider.is-disabled .wc-block-components-price-slider__range-input-wrapper,
    .wc-block-components-price-slider.is-loading .wc-block-components-price-slider__range-input-wrapper {
      -webkit-animation: none;
      animation: none
    }
  }
  .wc-block-components-price-slider.is-disabled:not(.is-loading) .wc-block-components-price-slider__range-input-wrapper {
    -webkit-animation: none;
    animation: none
  }
}

.theme-twentytwentyone .wc-block-components-price-slider__range-input-wrapper {
  background: transparent;
  border: 3px solid;
  box-sizing: border-box
}

.theme-twentytwentyone .wc-block-components-price-slider__range-input-progress {
  --range-color: currentColor;
  margin: -3px
}

.theme-twentytwentyone .wc-block-price-filter__range-input {
  background: transparent;
  margin: -3px;
  width: calc(100% + 6px)
}

.theme-twentytwentyone .wc-block-price-filter__range-input:focus::-webkit-slider-thumb,
.theme-twentytwentyone .wc-block-price-filter__range-input:hover::-webkit-slider-thumb {
  filter: none
}

.theme-twentytwentyone .wc-block-price-filter__range-input:focus::-moz-range-thumb,
.theme-twentytwentyone .wc-block-price-filter__range-input:hover::-moz-range-thumb {
  filter: none
}

.theme-twentytwentyone .wc-block-price-filter__range-input:focus::-ms-thumb,
.theme-twentytwentyone .wc-block-price-filter__range-input:hover::-ms-thumb {
  filter: none
}

.theme-twentytwentyone .wc-block-price-filter__range-input::-webkit-slider-thumb {
  margin-top: -9px
}

.theme-twentytwentyone .wc-block-price-filter__range-input.wc-block-components-price-slider__range-input--max::-moz-range-thumb {
  transform: translate(2px, 1px)
}

.theme-twentytwentyone .wc-block-price-filter__range-input.wc-block-components-price-slider__range-input--min::-moz-range-thumb {
  transform: translate(-2px, 1px)
}

.theme-twentytwentyone .wc-block-price-filter__range-input::-ms-track {
  border-color: transparent!important
}

@media (-ms-high-contrast:none),
screen and (-ms-high-contrast:active) {
  .theme-twentytwentyone .wc-block-components-price-slider__range-input-wrapper {
    border: 0;
    height: auto;
    position: relative;
    height: 50px
  }
  .theme-twentytwentyone .wc-block-components-price-slider__range-input-progress {
    display: none
  }
  .theme-twentytwentyone .wc-block-price-filter__range-input {
    height: 100%;
    margin: 0;
    width: 100%
  }
}

.wc-block-components-product-sort-select {
  margin-bottom: 24px;
  text-align: left
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(1turn)
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(1turn)
  }
}

.wc-block-grid {
  text-align: center
}

.wc-block-grid__no-products {
  padding: 40px;
  text-align: center;
  width: 100%
}

.wc-block-grid__no-products .wc-block-grid__no-products-image {
  max-width: 150px;
  margin: 0 auto 1em;
  display: block;
  color: inherit
}

.wc-block-grid__no-products .wc-block-grid__no-products-title {
  display: block;
  margin: 0;
  font-weight: 700
}

.wc-block-grid__no-products .wc-block-grid__no-products-description {
  display: block;
  margin: .25em 0 1em
}

.wc-block-grid__products {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 -8px 16px;
  background-clip: padding-box
}

.wc-block-grid__product {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  float: none;
  width: auto;
  position: relative;
  text-align: center;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 16px solid transparent;
  list-style: none
}

.wc-block-grid__product.wc-block-grid__product {
  box-sizing: border-box
}

.theme-twentytwenty .wc-block-grid.has-aligned-buttons .wc-block-grid__product,
.wc-block-grid.has-aligned-buttons .wc-block-grid__product {
  display: flex;
  flex-direction: column
}

.theme-twentytwenty .wc-block-grid.has-aligned-buttons .wc-block-grid__product>:last-child,
.wc-block-grid.has-aligned-buttons .wc-block-grid__product>:last-child {
  margin-top: auto;
  margin-bottom: 0;
  padding-bottom: 12px
}

.theme-twentytwenty .wc-block-grid.has-1-columns .wc-block-grid__product,
.wc-block-grid.has-1-columns .wc-block-grid__product {
  flex: 1 0 100%;
  max-width: 100%
}

.theme-twentytwenty .wc-block-grid.has-2-columns .wc-block-grid__product,
.wc-block-grid.has-2-columns .wc-block-grid__product {
  flex: 1 0 50%;
  max-width: 50%
}

.theme-twentytwenty .wc-block-grid.has-3-columns .wc-block-grid__product,
.wc-block-grid.has-3-columns .wc-block-grid__product {
  flex: 1 0 33.33333%;
  max-width: 33.3333333333%
}

.theme-twentytwenty .wc-block-grid.has-4-columns .wc-block-grid__product,
.wc-block-grid.has-4-columns .wc-block-grid__product {
  flex: 1 0 25%;
  max-width: 25%
}

.theme-twentytwenty .wc-block-grid.has-5-columns .wc-block-grid__product,
.wc-block-grid.has-5-columns .wc-block-grid__product {
  flex: 1 0 20%;
  max-width: 20%
}

.theme-twentytwenty .wc-block-grid.has-6-columns .wc-block-grid__product,
.wc-block-grid.has-6-columns .wc-block-grid__product {
  flex: 1 0 16.66667%;
  max-width: 16.6666666667%
}

.theme-twentytwenty .wc-block-grid.has-7-columns .wc-block-grid__product,
.wc-block-grid.has-7-columns .wc-block-grid__product {
  flex: 1 0 14.28571%;
  max-width: 14.2857142857%
}

.theme-twentytwenty .wc-block-grid.has-8-columns .wc-block-grid__product,
.wc-block-grid.has-8-columns .wc-block-grid__product {
  flex: 1 0 12.5%;
  max-width: 12.5%
}

.theme-twentytwenty .wc-block-grid.has-6-columns .wc-block-grid__product,
.wc-block-grid.has-6-columns .wc-block-grid__product {
  font-size: .5em
}

.theme-twentytwenty .wc-block-grid.has-5-columns .wc-block-grid__product,
.theme-twentytwenty .wc-block-grid.has-6-columns.alignfull .wc-block-grid__product,
.wc-block-grid.has-5-columns .wc-block-grid__product,
.wc-block-grid.has-6-columns.alignfull .wc-block-grid__product {
  font-size: .58em
}

.theme-twentytwenty .wc-block-grid.has-4-columns:not(.alignwide):not(.alignfull) .wc-block-grid__product,
.theme-twentytwenty .wc-block-grid.has-5-columns.alignfull .wc-block-grid__product,
.wc-block-grid.has-4-columns:not(.alignwide):not(.alignfull) .wc-block-grid__product,
.wc-block-grid.has-5-columns.alignfull .wc-block-grid__product {
  font-size: .75em
}

.theme-twentytwenty .wc-block-grid.has-3-columns:not(.alignwide):not(.alignfull),
.wc-block-grid.has-3-columns:not(.alignwide):not(.alignfull) {
  font-size: .92em
}

@media(max-width:480px) {
  .wc-block-grid.has-2-columns .wc-block-grid__products {
    display: block
  }
  .wc-block-grid.has-2-columns .wc-block-grid__product {
    margin-left: auto;
    margin-right: auto;
    flex: 1 0 100%;
    max-width: 100%;
    padding: 0
  }
  .wc-block-grid.has-3-columns .wc-block-grid__products {
    display: block
  }
  .wc-block-grid.has-3-columns .wc-block-grid__product {
    margin-left: auto;
    margin-right: auto;
    flex: 1 0 100%;
    max-width: 100%;
    padding: 0
  }
  .wc-block-grid.has-4-columns .wc-block-grid__products {
    display: block
  }
  .wc-block-grid.has-4-columns .wc-block-grid__product {
    margin-left: auto;
    margin-right: auto;
    flex: 1 0 100%;
    max-width: 100%;
    padding: 0
  }
  .wc-block-grid.has-5-columns .wc-block-grid__products {
    display: block
  }
  .wc-block-grid.has-5-columns .wc-block-grid__product {
    margin-left: auto;
    margin-right: auto;
    flex: 1 0 100%;
    max-width: 100%;
    padding: 0
  }
  .wc-block-grid.has-6-columns .wc-block-grid__products {
    display: block
  }
  .wc-block-grid.has-6-columns .wc-block-grid__product {
    margin-left: auto;
    margin-right: auto;
    flex: 1 0 100%;
    max-width: 100%;
    padding: 0
  }
  .wc-block-grid.has-7-columns .wc-block-grid__products {
    display: block
  }
  .wc-block-grid.has-7-columns .wc-block-grid__product {
    margin-left: auto;
    margin-right: auto;
    flex: 1 0 100%;
    max-width: 100%;
    padding: 0
  }
  .wc-block-grid.has-8-columns .wc-block-grid__products {
    display: block
  }
  .wc-block-grid.has-8-columns .wc-block-grid__product {
    margin-left: auto;
    margin-right: auto;
    flex: 1 0 100%;
    max-width: 100%;
    padding: 0
  }
}

@media(min-width:481px)and (max-width:600px) {
  .wc-block-grid.has-2-columns .wc-block-grid__product {
    flex: 1 0 50%;
    max-width: 50%;
    padding: 0;
    margin: 0 0 24px
  }
  .wc-block-grid.has-2-columns .wc-block-grid__product:nth-child(odd) {
    padding-right: 8px
  }
  .wc-block-grid.has-2-columns .wc-block-grid__product:nth-child(2n) {
    padding-left: 8px
  }
  .wc-block-grid.has-3-columns .wc-block-grid__product {
    flex: 1 0 50%;
    max-width: 50%;
    padding: 0;
    margin: 0 0 24px
  }
  .wc-block-grid.has-3-columns .wc-block-grid__product:nth-child(odd) {
    padding-right: 8px
  }
  .wc-block-grid.has-3-columns .wc-block-grid__product:nth-child(2n) {
    padding-left: 8px
  }
  .wc-block-grid.has-4-columns .wc-block-grid__product {
    flex: 1 0 50%;
    max-width: 50%;
    padding: 0;
    margin: 0 0 24px
  }
  .wc-block-grid.has-4-columns .wc-block-grid__product:nth-child(odd) {
    padding-right: 8px
  }
  .wc-block-grid.has-4-columns .wc-block-grid__product:nth-child(2n) {
    padding-left: 8px
  }
  .wc-block-grid.has-5-columns .wc-block-grid__product {
    flex: 1 0 50%;
    max-width: 50%;
    padding: 0;
    margin: 0 0 24px
  }
  .wc-block-grid.has-5-columns .wc-block-grid__product:nth-child(odd) {
    padding-right: 8px
  }
  .wc-block-grid.has-5-columns .wc-block-grid__product:nth-child(2n) {
    padding-left: 8px
  }
  .wc-block-grid.has-6-columns .wc-block-grid__product {
    flex: 1 0 50%;
    max-width: 50%;
    padding: 0;
    margin: 0 0 24px
  }
  .wc-block-grid.has-6-columns .wc-block-grid__product:nth-child(odd) {
    padding-right: 8px
  }
  .wc-block-grid.has-6-columns .wc-block-grid__product:nth-child(2n) {
    padding-left: 8px
  }
  .wc-block-grid.has-7-columns .wc-block-grid__product {
    flex: 1 0 50%;
    max-width: 50%;
    padding: 0;
    margin: 0 0 24px
  }
  .wc-block-grid.has-7-columns .wc-block-grid__product:nth-child(odd) {
    padding-right: 8px
  }
  .wc-block-grid.has-7-columns .wc-block-grid__product:nth-child(2n) {
    padding-left: 8px
  }
  .wc-block-grid.has-8-columns .wc-block-grid__product {
    flex: 1 0 50%;
    max-width: 50%;
    padding: 0;
    margin: 0 0 24px
  }
  .wc-block-grid.has-8-columns .wc-block-grid__product:nth-child(odd) {
    padding-right: 8px
  }
  .wc-block-grid.has-8-columns .wc-block-grid__product:nth-child(2n) {
    padding-left: 8px
  }
}

.wc-block-components-product-name {
  font-size: 1em;
  overflow-wrap: anywhere;
  word-break: break-word;
  -ms-word-break: break-all
}

.wc-block-components-product-price--align-left {
  display: block;
  text-align: left
}

.wc-block-components-product-price--align-center {
  display: block;
  text-align: center
}

.wc-block-components-product-price--align-right {
  display: block;
  text-align: right
}

.wc-block-components-product-price__value.is-discounted {
  margin-left: .5em
}

.is-loading .wc-block-components-product-price:before {
  -webkit-animation: loading-fade 1.2s ease-in-out infinite;
  animation: loading-fade 1.2s ease-in-out infinite;
  background-color: var(--global--color-primary, #e0e0e0)!important;
  color: var(--global--color-primary, #e0e0e0)!important;
  outline: 0!important;
  border: 0!important;
  box-shadow: none;
  pointer-events: none;
  max-width: 100%;
  content: ".";
  display: inline-block;
  width: 5em
}

.is-loading .wc-block-components-product-price:before>* {
  visibility: hidden
}

@media screen and (prefers-reduced-motion:reduce) {
  .is-loading .wc-block-components-product-price:before {
    -webkit-animation: none;
    animation: none
  }
}

.wc-block-components-quantity-selector {
  display: flex;
  width: 107px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 0;
  box-sizing: content-box;
  margin: 0 0 .25em
}

.has-dark-controls .wc-block-components-quantity-selector {
  background-color: transparent;
  border-color: hsla(0, 0%, 100%, .4)
}

.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
  font-size: 1em;
  order: 2;
  min-width: 40px;
  flex: 1 1 auto;
  border: 0;
  padding: .4em 0;
  margin: 0;
  text-align: center;
  background: transparent;
  box-shadow: none;
  color: #000;
  line-height: 1;
  vertical-align: middle;
  -moz-appearance: textfield
}

.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input:focus {
  background: #f0f0f0;
  outline: 1px solid #ddd
}

.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input:disabled {
  color: #949494
}

.has-dark-controls .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
  color: #fff;
  background: transparent
}

.has-dark-controls .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input:focus {
  background: transparent
}

.has-dark-controls .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input:disabled {
  color: hsla(0, 0%, 100%, .3)
}

.wc-block-components-quantity-selector input::-webkit-inner-spin-button,
.wc-block-components-quantity-selector input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
  border: 0;
  padding: 0;
  margin: 0;
  background: none transparent;
  box-shadow: none;
  font-size: 1em;
  min-width: 30px;
  cursor: pointer;
  color: #1e1e1e;
  font-style: normal;
  text-align: center;
  text-decoration: none
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:focus {
  outline: 2px solid #ddd
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:focus,
.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:hover {
  border: 0;
  padding: 0;
  margin: 0;
  background: none transparent;
  box-shadow: none;
  color: #1e1e1e
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:focus:focus,
.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:hover:focus {
  outline: 2px solid #ddd
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:disabled {
  color: #949494;
  cursor: default;
  border: 0;
  padding: 0;
  margin: 0;
  background: none transparent;
  box-shadow: none
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:disabled:focus {
  outline: 2px solid #ddd
}

.has-dark-controls .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button,
.has-dark-controls .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:focus,
.has-dark-controls .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:hover {
  color: #fff
}

.has-dark-controls .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:disabled {
  color: hsla(0, 0%, 100%, .3)
}

.wc-block-components-quantity-selector>.wc-block-components-quantity-selector__button--minus {
  order: 1
}

.wc-block-components-quantity-selector>.wc-block-components-quantity-selector__button--plus {
  order: 3
}

.theme-twentyseventeen .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:focus,
.theme-twentyseventeen .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:hover {
  background: none transparent
}

.wc-block-components-radio-control__option {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  display: block;
  margin: 1em 0;
  padding: 0 0 0 2.5em;
  position: relative
}

.wc-block-components-radio-control__option:first-child {
  margin-top: 0
}

.wc-block-components-radio-control__option:last-child {
  margin-bottom: 0
}

.wc-block-components-radio-control__option-layout {
  display: table;
  width: 100%
}

.wc-block-components-radio-control__option .wc-block-components-radio-control__option-layout:after {
  display: none
}

.wc-block-components-radio-control__description-group,
.wc-block-components-radio-control__label-group {
  display: table-row
}

.wc-block-components-radio-control__description-group>span,
.wc-block-components-radio-control__label-group>span {
  display: table-cell
}

.wc-block-components-radio-control__description-group .wc-block-components-radio-control__secondary-description,
.wc-block-components-radio-control__description-group .wc-block-components-radio-control__secondary-label,
.wc-block-components-radio-control__label-group .wc-block-components-radio-control__secondary-description,
.wc-block-components-radio-control__label-group .wc-block-components-radio-control__secondary-label {
  text-align: right;
  min-width: 50%
}

.wc-block-components-radio-control__label,
.wc-block-components-radio-control__secondary-label {
  line-height: max(1.5rem, 24px)
}

.wc-block-components-radio-control__description,
.wc-block-components-radio-control__secondary-description {
  font-size: .875em;
  line-height: 20px
}

.wc-block-components-radio-control .wc-block-components-radio-control__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  border: 2px solid #50575e;
  border-radius: 50%;
  display: inline-block;
  height: 1.5em;
  min-height: 24px;
  min-width: 24px;
  width: 1.5em;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%)
}

.wc-block-components-radio-control .wc-block-components-radio-control__input:checked:before {
  background: #000;
  border-radius: 50%;
  content: "";
  display: block;
  height: .75em;
  left: 50%;
  margin: 0;
  min-height: 12px;
  min-width: 12px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: .75em
}

.has-dark-controls .wc-block-components-radio-control .wc-block-components-radio-control__input {
  border-color: hsla(0, 0%, 100%, .6);
  background-color: rgba(0, 0, 0, .1)
}

.has-dark-controls .wc-block-components-radio-control .wc-block-components-radio-control__input:checked:before {
  background: #fff
}

.theme-twentytwentyone .wc-block-components-radio-control .wc-block-components-radio-control__input:checked {
  border-width: 2px
}

.theme-twentytwentyone .wc-block-components-radio-control .wc-block-components-radio-control__input:checked:before {
  background-color: var(--form--color-text)
}

.theme-twentytwentyone .wc-block-components-radio-control .wc-block-components-radio-control__input:after {
  display: none
}

.is-loading .wc-block-components-review-list-item__text {
  -webkit-animation: loading-fade 1.2s ease-in-out infinite;
  animation: loading-fade 1.2s ease-in-out infinite;
  background-color: var(--global--color-primary, #e0e0e0)!important;
  color: var(--global--color-primary, #e0e0e0)!important;
  outline: 0!important;
  border: 0!important;
  box-shadow: none;
  pointer-events: none;
  max-width: 100%;
  display: block;
  width: 60%
}

.is-loading .wc-block-components-review-list-item__text>* {
  visibility: hidden
}

@media screen and (prefers-reduced-motion:reduce) {
  .is-loading .wc-block-components-review-list-item__text {
    -webkit-animation: none;
    animation: none
  }
}

.is-loading .wc-block-components-review-list-item__text:after {
  content: " "
}

.is-loading .wc-block-components-review-list-item__info .wc-block-components-review-list-item__image {
  -webkit-animation: loading-fade 1.2s ease-in-out infinite;
  animation: loading-fade 1.2s ease-in-out infinite;
  background-color: var(--global--color-primary, #e0e0e0)!important;
  color: var(--global--color-primary, #e0e0e0)!important;
  outline: 0!important;
  border: 0!important;
  box-shadow: none;
  pointer-events: none;
  max-width: 100%
}

.is-loading .wc-block-components-review-list-item__info .wc-block-components-review-list-item__image>* {
  visibility: hidden
}

@media screen and (prefers-reduced-motion:reduce) {
  .is-loading .wc-block-components-review-list-item__info .wc-block-components-review-list-item__image {
    -webkit-animation: none;
    animation: none
  }
}

.is-loading .wc-block-components-review-list-item__info .wc-block-components-review-list-item__image:after {
  content: " "
}

.is-loading .wc-block-components-review-list-item__info .wc-block-components-review-list-item__meta .wc-block-components-review-list-item__author {
  -webkit-animation: loading-fade 1.2s ease-in-out infinite;
  animation: loading-fade 1.2s ease-in-out infinite;
  background-color: var(--global--color-primary, #e0e0e0)!important;
  color: var(--global--color-primary, #e0e0e0)!important;
  outline: 0!important;
  border: 0!important;
  box-shadow: none;
  pointer-events: none;
  max-width: 100%;
  font-size: 1em;
  width: 80px
}

.is-loading .wc-block-components-review-list-item__info .wc-block-components-review-list-item__meta .wc-block-components-review-list-item__author>* {
  visibility: hidden
}

@media screen and (prefers-reduced-motion:reduce) {
  .is-loading .wc-block-components-review-list-item__info .wc-block-components-review-list-item__meta .wc-block-components-review-list-item__author {
    -webkit-animation: none;
    animation: none
  }
}

.is-loading .wc-block-components-review-list-item__info .wc-block-components-review-list-item__meta .wc-block-components-review-list-item__author:after {
  content: " "
}

.is-loading .wc-block-components-review-list-item__info .wc-block-components-review-list-item__meta .wc-block-components-review-list-item__product,
.is-loading .wc-block-components-review-list-item__info .wc-block-components-review-list-item__meta .wc-block-components-review-list-item__rating .wc-block-components-review-list-item__rating__stars>span {
  display: none
}

.is-loading .wc-block-components-review-list-item__info .wc-block-components-review-list-item__published-date {
  -webkit-animation: loading-fade 1.2s ease-in-out infinite;
  animation: loading-fade 1.2s ease-in-out infinite;
  background-color: var(--global--color-primary, #e0e0e0)!important;
  color: var(--global--color-primary, #e0e0e0)!important;
  outline: 0!important;
  border: 0!important;
  box-shadow: none;
  pointer-events: none;
  max-width: 100%;
  height: 1em;
  width: 120px
}

.is-loading .wc-block-components-review-list-item__info .wc-block-components-review-list-item__published-date>* {
  visibility: hidden
}

@media screen and (prefers-reduced-motion:reduce) {
  .is-loading .wc-block-components-review-list-item__info .wc-block-components-review-list-item__published-date {
    -webkit-animation: none;
    animation: none
  }
}

.is-loading .wc-block-components-review-list-item__info .wc-block-components-review-list-item__published-date:after {
  content: " "
}

.editor-styles-wrapper .wc-block-components-review-list-item__item,
.wc-block-components-review-list-item__item {
  margin: 0 0 48px;
  list-style: none
}

.wc-block-components-review-list-item__info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  margin-bottom: 24px
}

.wc-block-components-review-list-item__meta {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1
}

.wc-block-components-review-list-item__item--has-image .wc-block-components-review-list-item__info {
  -ms-grid-columns: calc(3em + 16px) 1fr;
  grid-template-columns: calc(3em + 16px) 1fr
}

.wc-block-components-review-list-item__item--has-image .wc-block-components-review-list-item__meta {
  -ms-grid-column: 2;
  grid-column: 2
}

.wc-block-components-review-list-item__image {
  align-items: center;
  display: flex;
  height: 3em;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  justify-content: center;
  position: relative;
  width: 3em
}

.wc-block-components-review-list-item__image>img {
  display: block;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain
}

.wc-block-components-review-list-item__verified {
  width: 21px;
  height: 21px;
  text-indent: 21px;
  margin: 0;
  line-height: 21px;
  overflow: hidden;
  position: absolute;
  right: -7px;
  bottom: -7px
}

.wc-block-components-review-list-item__verified:before {
  width: 21px;
  height: 21px;
  background: transparent url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="21" height="21" fill="none"%3E%3Ccircle cx="10.5" cy="10.5" r="10.5" fill="%23fff"/%3E%3Cpath fill="%23008A21" fill-rule="evenodd" d="M2.1667 10.5003c0-4.6 3.7333-8.3333 8.3333-8.3333s8.3334 3.7333 8.3334 8.3333S15.1 18.8337 10.5 18.8337s-8.3333-3.7334-8.3333-8.3334zm2.5 0l4.1666 4.1667 7.5001-7.5-1.175-1.1833-6.325 6.325-2.9917-2.9834-1.175 1.175z" clip-rule="evenodd"/%3E%3Cmask id="a" width="17" height="17" x="2" y="2" maskUnits="userSpaceOnUse"%3E%3Cpath fill="%23fff" fill-rule="evenodd" d="M2.1667 10.5003c0-4.6 3.7333-8.3333 8.3333-8.3333s8.3334 3.7333 8.3334 8.3333S15.1 18.8337 10.5 18.8337s-8.3333-3.7334-8.3333-8.3334zm2.5 0l4.1666 4.1667 7.5001-7.5-1.175-1.1833-6.325 6.325-2.9917-2.9834-1.175 1.175z" clip-rule="evenodd"/%3E%3C/mask%3E%3Cg mask="url(%23a)"%3E%3Cpath fill="%23008A21" d="M.5.5h20v20H.5z"/%3E%3C/g%3E%3C/svg%3E') 50% no-repeat;
  display: block;
  content: ""
}

.wc-block-components-review-list-item__meta {
  display: flex;
  align-items: center;
  flex-flow: row wrap
}

.wc-block-components-review-list-item__meta:after {
  order: 3;
  content: "";
  flex-basis: 100%
}

.wc-block-components-review-list-item__author,
.wc-block-components-review-list-item__product {
  display: block;
  font-weight: 700;
  order: 1;
  margin-right: 8px
}

.wc-block-components-review-list-item__product+.wc-block-components-review-list-item__author {
  font-weight: 400;
  order: 4
}

.wc-block-components-review-list-item__published-date {
  order: 5
}

.wc-block-components-review-list-item__product+.wc-block-components-review-list-item__author+.wc-block-components-review-list-item__published-date {
  padding-left: 8px;
  position: relative
}

.wc-block-components-review-list-item__product+.wc-block-components-review-list-item__author+.wc-block-components-review-list-item__published-date:before {
  content: "";
  display: inline-block;
  margin-left: -8px;
  border-right: 1px solid;
  opacity: .5;
  height: 1em;
  vertical-align: middle;
  position: absolute;
  top: calc(50% + .1em);
  transform: translateY(-50%)
}

.wc-block-components-review-list-item__author:first-child+.wc-block-components-review-list-item__published-date:before,
.wc-block-components-review-list-item__rating+.wc-block-components-review-list-item__author+.wc-block-components-review-list-item__published-date:before {
  display: none
}

.wc-block-components-review-list-item__rating {
  order: 2
}

.wc-block-components-review-list-item__rating>.wc-block-components-review-list-item__rating__stars {
  font-size: 1em;
  display: block;
  top: 0;
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1;
  width: 5.3em;
  font-family: star;
  font-weight: 400
}

.wc-block-components-review-list-item__rating>.wc-block-components-review-list-item__rating__stars:before {
  content: "SSSSS";
  opacity: .25;
  float: left;
  top: 0;
  left: 0;
  position: absolute
}

.wc-block-components-review-list-item__rating>.wc-block-components-review-list-item__rating__stars span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em
}

.wc-block-components-review-list-item__rating>.wc-block-components-review-list-item__rating__stars span:before {
  content: "SSSSS";
  top: 0;
  position: absolute;
  left: 0;
  color: #e6a237
}

.wc-block-components-review-list-item__text p {
  font-size: inherit
}

.wc-block-components-review-list.wc-block-components-review-list {
  margin: 0
}

.wc-block-components-review-sort-select {
  text-align: right
}

.wc-block-components-sidebar-layout {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 16px;
  position: relative
}

.wc-block-components-sidebar-layout .wc-block-components-main {
  box-sizing: border-box;
  margin: 0;
  padding-right: 3.7735849057%;
  width: 65%
}

.wc-block-components-sidebar {
  box-sizing: border-box;
  margin: 0;
  padding-left: 2.2641509434%;
  width: 35%
}

.wc-block-components-sidebar .wc-block-components-panel>h2 {
  font-size: 1em;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline
}

.is-medium.wc-block-components-sidebar-layout,
.is-mobile.wc-block-components-sidebar-layout,
.is-small.wc-block-components-sidebar-layout {
  flex-direction: column;
  margin: 0 auto 16px
}

.is-medium.wc-block-components-sidebar-layout .wc-block-components-main,
.is-medium.wc-block-components-sidebar-layout .wc-block-components-sidebar,
.is-mobile.wc-block-components-sidebar-layout .wc-block-components-main,
.is-mobile.wc-block-components-sidebar-layout .wc-block-components-sidebar,
.is-small.wc-block-components-sidebar-layout .wc-block-components-main,
.is-small.wc-block-components-sidebar-layout .wc-block-components-sidebar {
  padding: 0;
  width: 100%
}

.is-large .wc-block-components-sidebar .wc-block-components-panel,
.is-large .wc-block-components-sidebar .wc-block-components-totals-item {
  padding-left: 16px;
  padding-right: 16px
}

.is-large .wc-block-components-sidebar .wc-block-components-panel .wc-block-components-totals-item {
  padding: 0
}

.wc-block-components-sidebar .wc-block-components-panel>h2 {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration: inherit;
  text-transform: inherit
}

.wc-block-components-sidebar .wc-block-components-panel>h2 .wc-block-components-panel__button {
  font-weight: 400
}

.theme-twentytwenty .wc-block-components-sidebar .wc-block-components-panel>h2 {
  font-size: 1.25em;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline
}

.wc-block-components-sort-select {
  margin-bottom: 12px
}

.wc-block-components-sort-select__label {
  margin-right: 12px;
  display: inline-block;
  font-weight: 400
}

.wc-block-components-sort-select__select {
  font-size: inherit;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content
}

.wc-block-components-spinner {
  position: absolute;
  width: 100%;
  height: 100%;
  color: inherit;
  box-sizing: content-box;
  text-align: center;
  font-size: 1.25em
}

.wc-block-components-spinner:after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -.5em 0 0 -.5em;
  width: 1em;
  height: 1em;
  box-sizing: border-box;
  transform-origin: 50% 50%;
  transform: translateZ(0) scale(.5);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 50%;
  border: .2em solid;
  border-left: .2em solid transparent;
  -webkit-animation: wc-block-components-spinner__animation 1s linear infinite;
  animation: wc-block-components-spinner__animation 1s linear infinite
}

@-webkit-keyframes wc-block-components-spinner__animation {
  0% {
    -webkit-animation-timing-function: cubic-bezier(.5856, .0703, .4143, .9297);
    animation-timing-function: cubic-bezier(.5856, .0703, .4143, .9297);
    transform: rotate(0deg)
  }
  to {
    transform: rotate(1turn)
  }
}

@keyframes wc-block-components-spinner__animation {
  0% {
    -webkit-animation-timing-function: cubic-bezier(.5856, .0703, .4143, .9297);
    animation-timing-function: cubic-bezier(.5856, .0703, .4143, .9297);
    transform: rotate(0deg)
  }
  to {
    transform: rotate(1turn)
  }
}

.wc-block-components-state-input {
  margin-top: 1.5em
}

.wc-block-components-tabs .wc-block-components-tabs__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%
}

.wc-block-components-tabs .wc-block-components-tabs__list>.wc-block-components-tabs__item {
  border: none;
  flex: auto;
  background: transparent;
  padding: 12px 16px;
  color: inherit;
  outline-offset: -1px;
  text-align: center;
  transition: box-shadow .1s linear;
  box-shadow: inset 0 -1px currentColor;
  border-radius: 0
}

.wc-block-components-tabs .wc-block-components-tabs__list>.wc-block-components-tabs__item.is-active {
  box-shadow: inset 0 -3px currentColor;
  font-weight: 600;
  position: relative
}

.wc-block-components-tabs .wc-block-components-tabs__list>.wc-block-components-tabs__item:focus {
  outline-offset: -1px;
  outline: 1px dotted currentColor
}

.wc-block-components-tabs .wc-block-components-tabs__list>.wc-block-components-tabs__item:active,
.wc-block-components-tabs .wc-block-components-tabs__list>.wc-block-components-tabs__item:hover {
  background: transparent
}

.wc-block-components-tabs .wc-block-components-tabs__list>.wc-block-components-tabs__item .wc-block-components-tabs__item-content {
  font-size: 1em;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  font-weight: 700
}

.wc-block-components-tabs .wc-block-components-tabs__list>.wc-block-components-tabs__item .wc-block-components-tabs__item-content>img,
.wc-block-components-tabs .wc-block-components-tabs__list>.wc-block-components-tabs__item .wc-block-components-tabs__item-content>svg {
  height: 1.2em;
  vertical-align: middle;
  margin: .2em 0 -.2em
}

.wc-block-components-tabs .wc-block-components-tabs__list>.wc-block-components-tabs__item .wc-block-components-tabs__item-content .wc-block-components-payment-method-icons {
  margin: .2em 0 -.2em
}

.wc-block-components-tabs .wc-block-components-tabs__list>.wc-block-components-tabs__item .wc-block-components-tabs__item-content .wc-block-components-payment-method-icons .wc-block-components-payment-method-icon {
  height: 1.2em;
  vertical-align: middle
}

.wc-block-components-tabs .wc-block-components-tabs__content {
  padding: 16px 0;
  text-transform: none
}

.wc-block-components-form .wc-block-components-text-input,
.wc-block-components-text-input {
  position: relative;
  margin-top: 1.5em;
  white-space: nowrap
}

.wc-block-components-form .wc-block-components-text-input label,
.wc-block-components-text-input label {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  font-size: 1em;
  position: absolute;
  transform: translateY(.75em);
  left: 0;
  top: 0;
  transform-origin: top left;
  line-height: 1.375;
  color: #757575;
  transition: transform .2s ease;
  margin: 0 0 0 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 32px);
  cursor: text
}

.has-dark-controls .wc-block-components-form .wc-block-components-text-input label,
.has-dark-controls .wc-block-components-text-input label {
  color: hsla(0, 0%, 100%, .6)
}

@media screen and (prefers-reduced-motion:reduce) {
  .wc-block-components-form .wc-block-components-text-input label,
  .wc-block-components-text-input label {
    transition: none
  }
}

.wc-block-components-form .wc-block-components-text-input input:-webkit-autofill+label,
.wc-block-components-text-input input:-webkit-autofill+label {
  transform: translateY(4px) scale(.75)
}

.wc-block-components-form .wc-block-components-text-input.is-active label,
.wc-block-components-text-input.is-active label {
  transform: translateY(4px) scale(.75)
}

.wc-block-components-form .wc-block-components-text-input input[type=email],
.wc-block-components-form .wc-block-components-text-input input[type=number],
.wc-block-components-form .wc-block-components-text-input input[type=tel],
.wc-block-components-form .wc-block-components-text-input input[type=text],
.wc-block-components-form .wc-block-components-text-input input[type=url],
.wc-block-components-text-input input[type=email],
.wc-block-components-text-input input[type=number],
.wc-block-components-text-input input[type=tel],
.wc-block-components-text-input input[type=text],
.wc-block-components-text-input input[type=url] {
  font-size: 1em;
  background-color: #fff;
  padding: .75em 16px;
  border-radius: 0;
  border: 1px solid #50575e;
  width: 100%;
  line-height: 1.375;
  font-family: inherit;
  margin: 0;
  box-sizing: border-box;
  height: 3em;
  min-height: 0;
  color: #2b2d2f
}

.wc-block-components-form .wc-block-components-text-input input[type=email]:focus,
.wc-block-components-form .wc-block-components-text-input input[type=number]:focus,
.wc-block-components-form .wc-block-components-text-input input[type=tel]:focus,
.wc-block-components-form .wc-block-components-text-input input[type=text]:focus,
.wc-block-components-form .wc-block-components-text-input input[type=url]:focus,
.wc-block-components-text-input input[type=email]:focus,
.wc-block-components-text-input input[type=number]:focus,
.wc-block-components-text-input input[type=tel]:focus,
.wc-block-components-text-input input[type=text]:focus,
.wc-block-components-text-input input[type=url]:focus {
  background-color: #fff;
  color: #2b2d2f;
  outline: 0;
  box-shadow: 0 0 0 1px #50575e
}

.has-dark-controls .wc-block-components-form .wc-block-components-text-input input[type=email],
.has-dark-controls .wc-block-components-form .wc-block-components-text-input input[type=number],
.has-dark-controls .wc-block-components-form .wc-block-components-text-input input[type=tel],
.has-dark-controls .wc-block-components-form .wc-block-components-text-input input[type=text],
.has-dark-controls .wc-block-components-form .wc-block-components-text-input input[type=url],
.has-dark-controls .wc-block-components-text-input input[type=email],
.has-dark-controls .wc-block-components-text-input input[type=number],
.has-dark-controls .wc-block-components-text-input input[type=tel],
.has-dark-controls .wc-block-components-text-input input[type=text],
.has-dark-controls .wc-block-components-text-input input[type=url] {
  background-color: rgba(0, 0, 0, .1);
  border-color: hsla(0, 0%, 100%, .4);
  color: #fff
}

.has-dark-controls .wc-block-components-form .wc-block-components-text-input input[type=email]:focus,
.has-dark-controls .wc-block-components-form .wc-block-components-text-input input[type=number]:focus,
.has-dark-controls .wc-block-components-form .wc-block-components-text-input input[type=tel]:focus,
.has-dark-controls .wc-block-components-form .wc-block-components-text-input input[type=text]:focus,
.has-dark-controls .wc-block-components-form .wc-block-components-text-input input[type=url]:focus,
.has-dark-controls .wc-block-components-text-input input[type=email]:focus,
.has-dark-controls .wc-block-components-text-input input[type=number]:focus,
.has-dark-controls .wc-block-components-text-input input[type=tel]:focus,
.has-dark-controls .wc-block-components-text-input input[type=text]:focus,
.has-dark-controls .wc-block-components-text-input input[type=url]:focus {
  background-color: rgba(0, 0, 0, .1);
  color: #fff;
  box-shadow: 0 0 0 1px hsla(0, 0%, 100%, .4)
}

.wc-block-components-form .wc-block-components-text-input input[type=number],
.wc-block-components-text-input input[type=number] {
  -moz-appearance: textfield
}

.wc-block-components-form .wc-block-components-text-input input[type=number]::-webkit-inner-spin-button,
.wc-block-components-form .wc-block-components-text-input input[type=number]::-webkit-outer-spin-button,
.wc-block-components-text-input input[type=number]::-webkit-inner-spin-button,
.wc-block-components-text-input input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0
}

.wc-block-components-form .wc-block-components-text-input.is-active input[type=email],
.wc-block-components-form .wc-block-components-text-input.is-active input[type=number],
.wc-block-components-form .wc-block-components-text-input.is-active input[type=tel],
.wc-block-components-form .wc-block-components-text-input.is-active input[type=text],
.wc-block-components-form .wc-block-components-text-input.is-active input[type=url],
.wc-block-components-text-input.is-active input[type=email],
.wc-block-components-text-input.is-active input[type=number],
.wc-block-components-text-input.is-active input[type=tel],
.wc-block-components-text-input.is-active input[type=text],
.wc-block-components-text-input.is-active input[type=url] {
  padding: 1.5em 0 .25em 16px
}

.wc-block-components-form .wc-block-components-text-input.has-error input,
.wc-block-components-form .wc-block-components-text-input.has-error input:active,
.wc-block-components-form .wc-block-components-text-input.has-error input:focus,
.wc-block-components-form .wc-block-components-text-input.has-error input:hover,
.wc-block-components-text-input.has-error input,
.wc-block-components-text-input.has-error input:active,
.wc-block-components-text-input.has-error input:focus,
.wc-block-components-text-input.has-error input:hover {
  border-color: #cc1818
}

.wc-block-components-form .wc-block-components-text-input.has-error input:focus,
.wc-block-components-text-input.has-error input:focus {
  box-shadow: 0 0 0 1px #cc1818
}

.wc-block-components-form .wc-block-components-text-input.has-error label,
.wc-block-components-text-input.has-error label {
  color: #cc1818
}

.wc-block-components-form .wc-block-components-text-input:only-child,
.wc-block-components-text-input:only-child {
  margin-top: 0
}

.wc-block-components-textarea {
  font-size: 1em;
  background-color: #fff;
  border: 1px solid #50575e;
  border-radius: 0;
  color: #2b2d2f;
  font-family: inherit;
  line-height: 1.375;
  margin: 0;
  padding: .75em 16px;
  width: 100%
}

.has-dark-controls .wc-block-components-textarea {
  background-color: rgba(0, 0, 0, .1);
  border-color: hsla(0, 0%, 100%, .4);
  color: #fff
}

.has-dark-controls .wc-block-components-textarea::-moz-placeholder {
  color: hsla(0, 0%, 100%, .6)
}

.has-dark-controls .wc-block-components-textarea:-ms-input-placeholder {
  color: hsla(0, 0%, 100%, .6)
}

.has-dark-controls .wc-block-components-textarea::placeholder {
  color: hsla(0, 0%, 100%, .6)
}

.theme-twentytwentyone .has-dark-controls .wc-block-components-textarea {
  background-color: rgba(0, 0, 0, .1);
  color: #fff
}

.theme-twentytwenty .wc-block-components-title.wc-block-components-title,
.wc-block-components-title.wc-block-components-title {
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  font-size: 1.25em;
  word-break: break-word
}

.wc-block-components-notices {
  display: block;
  margin-bottom: 2em
}

.wc-block-components-notices .wc-block-components-notices__notice {
  margin: 0;
  display: flex;
  flex-wrap: nowrap
}

.wc-block-components-notices .wc-block-components-notices__notice .components-notice__dismiss {
  background: transparent none;
  padding: 0;
  margin: 0 0 0 auto;
  border: 0;
  outline: 0;
  color: currentColor
}

.wc-block-components-notices .wc-block-components-notices__notice .components-notice__dismiss svg {
  fill: currentColor;
  vertical-align: text-top
}

.wc-block-components-notices .wc-block-components-notices__notice+.wc-block-components-notices__notice {
  margin-top: 1em
}

.theme-twentytwenty .wc-block-components-notices__notice,
.theme-twentytwentyone .wc-block-components-notices__notice {
  padding: 1.5rem 3rem
}

.wc-block-components-notices__snackbar {
  position: fixed;
  bottom: 20px;
  left: 16px;
  width: auto
}

@media(max-width:782px) {
  .wc-block-components-notices__snackbar {
    position: fixed;
    top: 10px;
    left: 0;
    bottom: auto
  }
}

@media(max-width:782px) {
  .wc-block-components-notices__snackbar .components-snackbar-list__notice-container {
    margin-left: 10px;
    margin-right: 10px
  }
}

.wc-block-components-validation-error {
  font-size: .75em;
  color: #cc1818;
  max-width: 100%;
  white-space: normal
}

.wc-block-components-validation-error>p {
  margin: 0;
  padding: 4px 0 0
}

.wc-block-components-select+.wc-block-components-validation-error {
  margin-bottom: 24px
}

.with-scroll-to-top__scroll-point {
  position: relative;
  top: -36px
}

.is-medium .wc-block-cart__sidebar,
.is-mobile .wc-block-cart__sidebar,
.is-small .wc-block-cart__sidebar {
  margin-bottom: 24px;
  order: 0
}

.editor-styles-wrapper .wc-block-cart__empty-cart__title,
.wc-block-cart__empty-cart__title {
  font-size: inherit
}

.wc-block-cart__submit {
  position: relative;
  margin: 0 0 16px
}

.wc-block-cart__submit-button {
  width: 100%;
  margin: 0
}

.wc-block-cart .wc-block-cart__submit-container {
  padding: 0
}

@media(min-width:783px) {
  .wc-block-cart .wc-block-cart__submit-container--sticky {
    display: none
  }
}

@media(max-width:782px) {
  .wc-block-cart .wc-block-cart__submit-container--sticky {
    background: #fff;
    bottom: 0;
    left: 0;
    padding: 16px;
    position: fixed;
    width: 100%;
    z-index: 9999
  }
  .wc-block-cart .wc-block-cart__submit-container--sticky:before {
    box-shadow: 0 -10px 20px 10px currentColor;
    color: hsla(0, 0%, 80%, .5);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
  }
}

.wc-block-cart .wc-block-components-shipping-calculator {
  white-space: nowrap
}

.wc-block-cart .wc-block-components-address-form .wc-block-components-country-input:first-of-type,
.wc-block-cart .wc-block-components-address-form .wc-block-components-state-input:first-of-type,
.wc-block-cart .wc-block-components-address-form .wc-block-components-text-input:first-of-type {
  margin-top: 0
}

table.wc-block-cart-items,
table.wc-block-cart-items td,
table.wc-block-cart-items th {
  background: none!important;
  border: 0;
  margin: 0
}

.editor-styles-wrapper table.wc-block-cart-items,
table.wc-block-cart-items {
  width: 100%
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__header,
table.wc-block-cart-items .wc-block-cart-items__header {
  font-size: .75em;
  text-transform: uppercase
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-image,
table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-image {
  width: 100px
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-product,
table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-product {
  visibility: hidden
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-total,
table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-total {
  width: 100px;
  text-align: right
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img {
  width: 100%;
  margin: 0
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link {
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  background: transparent;
  box-shadow: none;
  display: inline;
  text-shadow: none;
  text-decoration: underline;
  font-size: .75em;
  text-transform: none;
  white-space: nowrap
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:active,
.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:focus,
.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:hover,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:active,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:focus,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:hover {
  background: transparent
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total {
  font-size: 1em;
  text-align: right;
  line-height: inherit
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-metadata,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-metadata {
  margin-bottom: .75em
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row.is-disabled,
table.wc-block-cart-items .wc-block-cart-items__row.is-disabled {
  opacity: .5;
  pointer-events: none;
  transition: opacity .2s ease
}

.wc-block-cart .wc-block-components-totals-footer-item,
.wc-block-cart .wc-block-components-totals-taxes {
  margin: 0
}

.wc-block-cart--is-loading h2 span,
.wc-block-cart--is-loading th span,
.wc-block-mini-cart__drawer.is-loading h2 span,
.wc-block-mini-cart__drawer.is-loading th span {
  -webkit-animation: loading-fade 1.2s ease-in-out infinite;
  animation: loading-fade 1.2s ease-in-out infinite;
  background-color: var(--global--color-primary, #e0e0e0)!important;
  color: var(--global--color-primary, #e0e0e0)!important;
  outline: 0!important;
  border: 0!important;
  box-shadow: none;
  pointer-events: none;
  max-width: 100%;
  min-width: 84px;
  display: inline-block
}

.wc-block-cart--is-loading h2 span>*,
.wc-block-cart--is-loading th span>*,
.wc-block-mini-cart__drawer.is-loading h2 span>*,
.wc-block-mini-cart__drawer.is-loading th span>* {
  visibility: hidden
}

@media screen and (prefers-reduced-motion:reduce) {
  .wc-block-cart--is-loading h2 span,
  .wc-block-cart--is-loading th span,
  .wc-block-mini-cart__drawer.is-loading h2 span,
  .wc-block-mini-cart__drawer.is-loading th span {
    -webkit-animation: none;
    animation: none
  }
}

.wc-block-cart--is-loading h2 span:after,
.wc-block-cart--is-loading th span:after,
.wc-block-mini-cart__drawer.is-loading h2 span:after,
.wc-block-mini-cart__drawer.is-loading th span:after {
  content: " "
}

.wc-block-cart--is-loading h2 span,
.wc-block-mini-cart__drawer.is-loading h2 span {
  min-width: 33%
}

.wc-block-cart--is-loading .wc-block-components-product-metadata,
.wc-block-cart--is-loading .wc-block-components-product-price,
.wc-block-cart--is-loading .wc-block-components-quantity-selector,
.wc-block-mini-cart__drawer.is-loading .wc-block-components-product-metadata,
.wc-block-mini-cart__drawer.is-loading .wc-block-components-product-price,
.wc-block-mini-cart__drawer.is-loading .wc-block-components-quantity-selector {
  -webkit-animation: loading-fade 1.2s ease-in-out infinite;
  animation: loading-fade 1.2s ease-in-out infinite;
  background-color: var(--global--color-primary, #e0e0e0)!important;
  color: var(--global--color-primary, #e0e0e0)!important;
  outline: 0!important;
  border: 0!important;
  box-shadow: none;
  pointer-events: none;
  max-width: 100%
}

.wc-block-cart--is-loading .wc-block-components-product-metadata>*,
.wc-block-cart--is-loading .wc-block-components-product-price>*,
.wc-block-cart--is-loading .wc-block-components-quantity-selector>*,
.wc-block-mini-cart__drawer.is-loading .wc-block-components-product-metadata>*,
.wc-block-mini-cart__drawer.is-loading .wc-block-components-product-price>*,
.wc-block-mini-cart__drawer.is-loading .wc-block-components-quantity-selector>* {
  visibility: hidden
}

@media screen and (prefers-reduced-motion:reduce) {
  .wc-block-cart--is-loading .wc-block-components-product-metadata,
  .wc-block-cart--is-loading .wc-block-components-product-price,
  .wc-block-cart--is-loading .wc-block-components-quantity-selector,
  .wc-block-mini-cart__drawer.is-loading .wc-block-components-product-metadata,
  .wc-block-mini-cart__drawer.is-loading .wc-block-components-product-price,
  .wc-block-mini-cart__drawer.is-loading .wc-block-components-quantity-selector {
    -webkit-animation: none;
    animation: none
  }
}

.wc-block-cart--is-loading .wc-block-components-product-name,
.wc-block-mini-cart__drawer.is-loading .wc-block-components-product-name {
  -webkit-animation: loading-fade 1.2s ease-in-out infinite;
  animation: loading-fade 1.2s ease-in-out infinite;
  background-color: var(--global--color-primary, #e0e0e0)!important;
  color: var(--global--color-primary, #e0e0e0)!important;
  outline: 0!important;
  border: 0!important;
  box-shadow: none;
  pointer-events: none;
  max-width: 100%;
  min-width: 84px;
  display: inline-block
}

.wc-block-cart--is-loading .wc-block-components-product-name>*,
.wc-block-mini-cart__drawer.is-loading .wc-block-components-product-name>* {
  visibility: hidden
}

@media screen and (prefers-reduced-motion:reduce) {
  .wc-block-cart--is-loading .wc-block-components-product-name,
  .wc-block-mini-cart__drawer.is-loading .wc-block-components-product-name {
    -webkit-animation: none;
    animation: none
  }
}

.wc-block-cart--is-loading .wc-block-components-product-name:after,
.wc-block-mini-cart__drawer.is-loading .wc-block-components-product-name:after {
  content: " "
}

.wc-block-cart--is-loading .wc-block-components-product-metadata,
.wc-block-mini-cart__drawer.is-loading .wc-block-components-product-metadata {
  margin-top: .25em;
  min-width: 8em
}

.wc-block-cart--is-loading .wc-block-cart-item__remove-link,
.wc-block-mini-cart__drawer.is-loading .wc-block-cart-item__remove-link {
  visibility: hidden
}

.wc-block-cart--is-loading .wc-block-cart-item__image>a,
.wc-block-mini-cart__drawer.is-loading .wc-block-cart-item__image>a {
  -webkit-animation: loading-fade 1.2s ease-in-out infinite;
  animation: loading-fade 1.2s ease-in-out infinite;
  background-color: var(--global--color-primary, #e0e0e0)!important;
  color: var(--global--color-primary, #e0e0e0)!important;
  outline: 0!important;
  border: 0!important;
  box-shadow: none;
  pointer-events: none;
  max-width: 100%;
  display: block
}

.wc-block-cart--is-loading .wc-block-cart-item__image>a>*,
.wc-block-mini-cart__drawer.is-loading .wc-block-cart-item__image>a>* {
  visibility: hidden
}

@media screen and (prefers-reduced-motion:reduce) {
  .wc-block-cart--is-loading .wc-block-cart-item__image>a,
  .wc-block-mini-cart__drawer.is-loading .wc-block-cart-item__image>a {
    -webkit-animation: none;
    animation: none
  }
}

.wc-block-cart--is-loading .wc-block-components-product-price,
.wc-block-mini-cart__drawer.is-loading .wc-block-components-product-price {
  max-width: 3em;
  display: block;
  margin-top: .25em
}

.wc-block-cart--is-loading .wc-block-components-product-price:after,
.wc-block-mini-cart__drawer.is-loading .wc-block-components-product-price:after {
  content: " "
}

.wc-block-cart--is-loading .wc-block-cart__sidebar .components-card,
.wc-block-mini-cart__drawer.is-loading .wc-block-cart__sidebar .components-card {
  -webkit-animation: loading-fade 1.2s ease-in-out infinite;
  animation: loading-fade 1.2s ease-in-out infinite;
  background-color: var(--global--color-primary, #e0e0e0)!important;
  color: var(--global--color-primary, #e0e0e0)!important;
  outline: 0!important;
  border: 0!important;
  box-shadow: none;
  pointer-events: none;
  max-width: 100%;
  min-height: 460px
}

.wc-block-cart--is-loading .wc-block-cart__sidebar .components-card>*,
.wc-block-mini-cart__drawer.is-loading .wc-block-cart__sidebar .components-card>* {
  visibility: hidden
}

@media screen and (prefers-reduced-motion:reduce) {
  .wc-block-cart--is-loading .wc-block-cart__sidebar .components-card,
  .wc-block-mini-cart__drawer.is-loading .wc-block-cart__sidebar .components-card {
    -webkit-animation: none;
    animation: none
  }
}

.wc-block-cart--is-loading .wc-block-cart__sidebar .components-card:after,
.wc-block-mini-cart__drawer.is-loading .wc-block-cart__sidebar .components-card:after {
  content: " "
}

.wc-block-components-sidebar-layout.wc-block-cart--skeleton {
  display: none
}

.is-loading+.wc-block-components-sidebar-layout.wc-block-cart--skeleton {
  display: flex
}

.wc-block-cart-item__total-price-and-sale-badge-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end
}

.wc-block-cart-item__total-price-and-sale-badge-wrapper .wc-block-components-sale-badge {
  margin-top: 4px
}

.is-medium.wc-block-cart .wc-block-components-sidebar .wc-block-cart__totals-title,
.is-mobile .wc-block-cart-item__total .wc-block-components-sale-badge,
.is-mobile.wc-block-cart .wc-block-components-sidebar .wc-block-cart__totals-title,
.is-small .wc-block-cart-item__total .wc-block-components-sale-badge,
.is-small.wc-block-cart .wc-block-components-sidebar .wc-block-cart__totals-title {
  display: none
}

.is-medium table.wc-block-cart-items td,
.is-mobile table.wc-block-cart-items td,
.is-small table.wc-block-cart-items td {
  padding: 0
}

.is-medium table.wc-block-cart-items .wc-block-cart-item__remove-link,
.is-medium table.wc-block-cart-items .wc-block-cart-items__header,
.is-mobile table.wc-block-cart-items .wc-block-cart-item__remove-link,
.is-mobile table.wc-block-cart-items .wc-block-cart-items__header,
.is-small table.wc-block-cart-items .wc-block-cart-item__remove-link,
.is-small table.wc-block-cart-items .wc-block-cart-items__header {
  display: none
}

.is-medium table.wc-block-cart-items .wc-block-cart-items__row,
.is-mobile table.wc-block-cart-items .wc-block-cart-items__row,
.is-small table.wc-block-cart-items .wc-block-cart-items__row {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px 132px;
  grid-template-columns: 80px 132px;
  padding: 16px 0
}

.is-medium table.wc-block-cart-items .wc-block-cart-items__row:after,
.is-mobile table.wc-block-cart-items .wc-block-cart-items__row:after,
.is-small table.wc-block-cart-items .wc-block-cart-items__row:after {
  border-style: solid;
  border-width: 0 0 1px;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  opacity: .3;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0
}

.is-medium table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image,
.is-mobile table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image,
.is-small table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 1;
  grid-row-start: 1;
  padding-right: 16px
}

.is-medium table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product,
.is-mobile table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product,
.is-small table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 2;
  grid-column-end: 4;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
  padding: 0 16px 16px 0
}

.is-medium table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity,
.is-mobile table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity,
.is-small table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 2;
  grid-row-start: 2;
  vertical-align: bottom;
  padding-right: 16px;
  -ms-grid-row-align: end;
  align-self: end;
  padding-top: 16px
}

.is-medium table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total,
.is-mobile table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total,
.is-small table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total {
  -ms-grid-row: 1;
  grid-row-start: 1
}

.is-medium table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total .wc-block-components-formatted-money-amount,
.is-mobile table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total .wc-block-components-formatted-money-amount,
.is-small table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total .wc-block-components-formatted-money-amount {
  display: inline-block
}

.is-large.wc-block-cart {
  margin-bottom: 3em
}

.is-large.wc-block-cart .wc-block-cart-items {
  position: relative
}

.is-large.wc-block-cart .wc-block-cart-items:after {
  border-style: solid;
  border-width: 0 0 1px;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  opacity: .3;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0
}

.is-large.wc-block-cart .wc-block-cart-items th {
  padding: .25rem 16px .25rem 0;
  white-space: nowrap
}

.is-large.wc-block-cart .wc-block-cart-items td {
  position: relative;
  padding: 16px 0 16px 16px;
  vertical-align: top
}

.is-large.wc-block-cart .wc-block-cart-items td:after {
  border-style: solid;
  border-width: 1px 0 0;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  opacity: .3;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0
}

.is-large.wc-block-cart .wc-block-cart-items th:last-child {
  padding-right: 0
}

.is-large.wc-block-cart .wc-block-cart-items td:last-child {
  padding-right: 16px
}

.is-large.wc-block-cart .wc-block-cart__sidebar>div:not(.wc-block-components-totals-wrapper) {
  margin-left: 16px;
  margin-right: 16px
}

.is-large.wc-block-cart .wc-block-components-radio-control__input {
  left: 0
}

.is-large.wc-block-cart .wc-block-cart__totals-title {
  border: 0;
  border-radius: 0;
  margin: 0;
  vertical-align: baseline;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  box-shadow: none;
  display: inline;
  background: transparent;
  font-size: .75em;
  display: block;
  font-weight: 600;
  padding: .25rem 0;
  text-align: right;
  text-transform: uppercase
}

.is-large.wc-block-cart .wc-block-components-sidebar .wc-block-components-shipping-calculator,
.is-large.wc-block-cart .wc-block-components-sidebar .wc-block-components-shipping-rates-control__package:not(.wc-block-components-panel) {
  padding-left: 16px;
  padding-right: 16px
}

.is-large.wc-block-cart .wc-block-cart__payment-options {
  padding: 16px 0 0
}

.wp-block-woocommerce-cart.is-loading .wp-block-woocommerce-empty-cart-block {
  display: none
}

.wp-block-woocommerce-cart.is-loading .wp-block-woocommerce-filled-cart-block {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 16px;
  position: relative
}

.wp-block-woocommerce-cart.is-loading .wp-block-woocommerce-cart-items-block {
  box-sizing: border-box;
  margin: 0;
  padding-right: 3.7735849057%;
  width: 65%;
  min-height: 10em
}

.wp-block-woocommerce-cart.is-loading .wp-block-woocommerce-cart-line-items-block {
  min-height: 15em;
  display: block;
  -webkit-animation: loading-fade 1.2s ease-in-out infinite;
  animation: loading-fade 1.2s ease-in-out infinite;
  background-color: var(--global--color-primary, #e0e0e0)!important;
  color: var(--global--color-primary, #e0e0e0)!important;
  outline: 0!important;
  border: 0!important;
  box-shadow: none;
  pointer-events: none;
  max-width: 100%
}

.wp-block-woocommerce-cart.is-loading .wp-block-woocommerce-cart-line-items-block>* {
  visibility: hidden
}

@media screen and (prefers-reduced-motion:reduce) {
  .wp-block-woocommerce-cart.is-loading .wp-block-woocommerce-cart-line-items-block {
    -webkit-animation: none;
    animation: none
  }
}

.wp-block-woocommerce-cart.is-loading .wp-block-woocommerce-cart-totals-block {
  box-sizing: border-box;
  margin: 0;
  padding-left: 2.2641509434%;
  width: 35%;
  min-height: 12em
}

.wp-block-woocommerce-cart.is-loading .wp-block-woocommerce-cart-accepted-payment-methods-block,
.wp-block-woocommerce-cart.is-loading .wp-block-woocommerce-cart-express-payment-block,
.wp-block-woocommerce-cart.is-loading .wp-block-woocommerce-cart-order-summary-block,
.wp-block-woocommerce-cart.is-loading .wp-block-woocommerce-proceed-to-checkout-block {
  min-height: 3em;
  display: block;
  -webkit-animation: loading-fade 1.2s ease-in-out infinite;
  animation: loading-fade 1.2s ease-in-out infinite;
  background-color: var(--global--color-primary, #e0e0e0)!important;
  color: var(--global--color-primary, #e0e0e0)!important;
  outline: 0!important;
  border: 0!important;
  box-shadow: none;
  pointer-events: none;
  max-width: 100%;
  margin: 0 0 1em
}

.wp-block-woocommerce-cart.is-loading .wp-block-woocommerce-cart-accepted-payment-methods-block>*,
.wp-block-woocommerce-cart.is-loading .wp-block-woocommerce-cart-express-payment-block>*,
.wp-block-woocommerce-cart.is-loading .wp-block-woocommerce-cart-order-summary-block>*,
.wp-block-woocommerce-cart.is-loading .wp-block-woocommerce-proceed-to-checkout-block>* {
  visibility: hidden
}

@media screen and (prefers-reduced-motion:reduce) {
  .wp-block-woocommerce-cart.is-loading .wp-block-woocommerce-cart-accepted-payment-methods-block,
  .wp-block-woocommerce-cart.is-loading .wp-block-woocommerce-cart-express-payment-block,
  .wp-block-woocommerce-cart.is-loading .wp-block-woocommerce-cart-order-summary-block,
  .wp-block-woocommerce-cart.is-loading .wp-block-woocommerce-proceed-to-checkout-block {
    -webkit-animation: none;
    animation: none
  }
}

.wp-block-woocommerce-cart.is-loading .wp-block-woocommerce-cart-order-summary-block {
  height: 20em
}

@media only screen and (max-width:700px) {
  .wp-block-woocommerce-cart.is-loading {
    padding-top: 16px
  }
  .wp-block-woocommerce-cart.is-loading .wp-block-woocommerce-filled-cart-block {
    flex-direction: column;
    margin: 0 auto 16px
  }
  .wp-block-woocommerce-cart.is-loading .wp-block-woocommerce-cart-items-block,
  .wp-block-woocommerce-cart.is-loading .wp-block-woocommerce-cart-totals-block {
    padding: 0;
    width: 100%
  }
}

.wc-block-checkout-error {
  padding: 40px;
  text-align: center;
  width: 100%
}

.wc-block-checkout-error .wc-block-checkout-error__image {
  max-width: 150px;
  margin: 0 auto 1em;
  display: block;
  color: inherit
}

.wc-block-checkout-error .wc-block-checkout-error__title {
  display: block;
  margin: 0;
  font-weight: 700
}

.wc-block-checkout-error .wc-block-checkout-error__description {
  display: block;
  margin: .25em 0 1em
}

.wc-block-checkout-empty {
  padding: 40px;
  text-align: center;
  width: 100%
}

.wc-block-checkout-empty .wc-block-checkout-empty__image {
  max-width: 150px;
  margin: 0 auto 1em;
  display: block;
  color: inherit
}

.wc-block-checkout-empty .wc-block-checkout-empty__title {
  display: block;
  margin: 0;
  font-weight: 700
}

.wc-block-checkout-empty .wc-block-checkout-empty__description {
  display: block;
  margin: .25em 0 1em
}

.wc-block-checkout__actions {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.wc-block-checkout__actions .wc-block-components-checkout-place-order-button {
  width: 50%;
  padding: 1em;
  height: auto
}

.wc-block-checkout__actions .wc-block-components-checkout-place-order-button .wc-block-components-button__text {
  line-height: 24px
}

.wc-block-checkout__actions .wc-block-components-checkout-place-order-button .wc-block-components-button__text>svg {
  fill: #fff;
  vertical-align: top
}

.is-mobile .wc-block-checkout__actions .wc-block-components-checkout-return-to-cart-button {
  display: none
}

.is-mobile .wc-block-checkout__actions .wc-block-components-checkout-place-order-button {
  width: 100%
}

.is-large .wc-block-checkout__actions {
  position: relative;
  padding: 1.5em 0
}

.is-large .wc-block-checkout__actions:after {
  border-style: solid;
  border-width: 1px 0 0;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  opacity: .3;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0
}

.wc-block-checkout__form {
  margin: 0;
  max-width: 100%
}

.is-medium .wc-block-checkout__main,
.is-mobile .wc-block-checkout__main,
.is-small .wc-block-checkout__main {
  order: 1
}

.is-large .wc-block-checkout__billing-fields .wc-block-components-address-form,
.is-large .wc-block-checkout__shipping-fields .wc-block-components-address-form,
.is-medium .wc-block-checkout__billing-fields .wc-block-components-address-form,
.is-medium .wc-block-checkout__shipping-fields .wc-block-components-address-form,
.is-small .wc-block-checkout__billing-fields .wc-block-components-address-form,
.is-small .wc-block-checkout__shipping-fields .wc-block-components-address-form {
  margin-left: -6px;
  margin-right: -6px
}

.is-large .wc-block-checkout__billing-fields .wc-block-components-address-form:after,
.is-large .wc-block-checkout__shipping-fields .wc-block-components-address-form:after,
.is-medium .wc-block-checkout__billing-fields .wc-block-components-address-form:after,
.is-medium .wc-block-checkout__shipping-fields .wc-block-components-address-form:after,
.is-small .wc-block-checkout__billing-fields .wc-block-components-address-form:after,
.is-small .wc-block-checkout__shipping-fields .wc-block-components-address-form:after {
  content: "";
  clear: both;
  display: block
}

.is-large .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-country-input,
.is-large .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-state-input,
.is-large .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-text-input,
.is-large .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-country-input,
.is-large .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-state-input,
.is-large .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-text-input,
.is-medium .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-country-input,
.is-medium .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-state-input,
.is-medium .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-text-input,
.is-medium .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-country-input,
.is-medium .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-state-input,
.is-medium .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-text-input,
.is-small .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-country-input,
.is-small .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-state-input,
.is-small .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-text-input,
.is-small .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-country-input,
.is-small .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-state-input,
.is-small .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-text-input {
  float: left;
  margin-left: 6px;
  margin-right: 6px;
  position: relative;
  width: calc(50% - 12px)
}

.is-large .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-country-input:first-of-type,
.is-large .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-country-input:nth-of-type(2),
.is-large .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-state-input:first-of-type,
.is-large .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-state-input:nth-of-type(2),
.is-large .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-text-input:first-of-type,
.is-large .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-text-input:nth-of-type(2),
.is-large .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-country-input:first-of-type,
.is-large .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-country-input:nth-of-type(2),
.is-large .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-state-input:first-of-type,
.is-large .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-state-input:nth-of-type(2),
.is-large .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-text-input:first-of-type,
.is-large .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-text-input:nth-of-type(2),
.is-medium .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-country-input:first-of-type,
.is-medium .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-country-input:nth-of-type(2),
.is-medium .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-state-input:first-of-type,
.is-medium .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-state-input:nth-of-type(2),
.is-medium .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-text-input:first-of-type,
.is-medium .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-text-input:nth-of-type(2),
.is-medium .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-country-input:first-of-type,
.is-medium .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-country-input:nth-of-type(2),
.is-medium .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-state-input:first-of-type,
.is-medium .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-state-input:nth-of-type(2),
.is-medium .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-text-input:first-of-type,
.is-medium .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-text-input:nth-of-type(2),
.is-small .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-country-input:first-of-type,
.is-small .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-country-input:nth-of-type(2),
.is-small .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-state-input:first-of-type,
.is-small .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-state-input:nth-of-type(2),
.is-small .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-text-input:first-of-type,
.is-small .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-text-input:nth-of-type(2),
.is-small .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-country-input:first-of-type,
.is-small .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-country-input:nth-of-type(2),
.is-small .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-state-input:first-of-type,
.is-small .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-state-input:nth-of-type(2),
.is-small .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-text-input:first-of-type,
.is-small .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-text-input:nth-of-type(2) {
  margin-top: 0
}

.is-large .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-address-form__address_1,
.is-large .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-address-form__address_2,
.is-large .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-address-form__company,
.is-large .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-address-form__address_1,
.is-large .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-address-form__address_2,
.is-large .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-address-form__company,
.is-medium .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-address-form__address_1,
.is-medium .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-address-form__address_2,
.is-medium .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-address-form__company,
.is-medium .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-address-form__address_1,
.is-medium .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-address-form__address_2,
.is-medium .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-address-form__company,
.is-small .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-address-form__address_1,
.is-small .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-address-form__address_2,
.is-small .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-address-form__company,
.is-small .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-address-form__address_1,
.is-small .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-address-form__address_2,
.is-small .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-address-form__company {
  width: calc(100% - 12px)
}

.is-large .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-checkbox,
.is-large .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-checkbox,
.is-medium .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-checkbox,
.is-medium .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-checkbox,
.is-small .wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-checkbox,
.is-small .wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-checkbox {
  clear: both
}

.components-placeholder.wc-block-checkout__no-shipping-placeholder {
  margin-bottom: 16px
}

.components-placeholder.wc-block-checkout__no-shipping-placeholder * {
  pointer-events: all
}

.components-placeholder.wc-block-checkout__no-shipping-placeholder .components-placeholder__fieldset {
  display: block
}

.components-placeholder.wc-block-checkout__no-shipping-placeholder .components-placeholder__fieldset .components-button {
  background-color: #1e1e1e;
  color: #fff
}

.components-placeholder.wc-block-checkout__no-shipping-placeholder .components-placeholder__fieldset .wc-block-checkout__no-shipping-placeholder-description {
  display: block;
  margin: .25em 0 1em
}

.wc-block-checkout__shipping-option .wc-block-components-radio-control__option {
  position: relative;
  margin: 0;
  padding: .75em 0 .75em 2.5em
}

.wc-block-checkout__shipping-option .wc-block-components-radio-control__option:after {
  border-style: solid;
  border-width: 0 0 1px;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  opacity: .3;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0
}

.wc-block-checkout__shipping-option .wc-block-components-shipping-rates-control__no-results-notice {
  margin: .75em 0
}

.wc-block-checkout__terms {
  margin: 1.5em 0
}

.wc-block-checkout__terms textarea {
  top: -5px;
  position: relative
}

.wc-block-checkout__terms.wc-block-checkout__terms--disabled {
  opacity: .6
}

.wc-block-checkout__sidebar .wc-block-components-product-name {
  display: block;
  color: inherit;
  flex-grow: 1;
  flex-basis: 0%
}

.wc-block-checkout__sidebar .wc-block-components-totals-footer-item,
.wc-block-checkout__sidebar .wc-block-components-totals-taxes {
  margin: 0;
  padding: 0
}

.is-medium .wc-block-checkout__sidebar,
.is-mobile .wc-block-checkout__sidebar,
.is-small .wc-block-checkout__sidebar {
  margin-bottom: 24px;
  order: 0
}

.wc-block-checkout__add-note {
  margin: 1.5em 0
}

.is-medium .wc-block-checkout__add-note,
.is-mobile .wc-block-checkout__add-note,
.is-small .wc-block-checkout__add-note {
  position: relative;
  margin-bottom: 1em;
  margin-top: 1em;
  padding: 1em 0
}

.is-medium .wc-block-checkout__add-note:after,
.is-mobile .wc-block-checkout__add-note:after,
.is-small .wc-block-checkout__add-note:after {
  border-style: solid;
  border-width: 1px 0;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  opacity: .3;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0
}

.wc-block-checkout__add-note .wc-block-components-textarea {
  margin-top: 16px
}

.wc-block-checkout__order-notes.wc-block-components-checkout-step {
  padding-left: 0
}

.wp-block-woocommerce-checkout {
  margin: 0
}

.wp-block-woocommerce-checkout .with-scroll-to-top__scroll-point {
  top: -96px
}

.wp-block-woocommerce-checkout.is-loading {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 16px;
  position: relative
}

.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-totals-block {
  width: 35%;
  padding-left: 2.2641509434%
}

.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-fields-block {
  width: 65%;
  padding-right: 3.7735849057%
}

.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-fields-block,
.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-totals-block {
  box-sizing: border-box;
  margin: 0
}

.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-fields-block>div,
.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-totals-block>div {
  -webkit-animation: loading-fade 1.2s ease-in-out infinite;
  animation: loading-fade 1.2s ease-in-out infinite;
  background-color: var(--global--color-primary, #e0e0e0)!important;
  color: var(--global--color-primary, #e0e0e0)!important;
  outline: 0!important;
  border: 0!important;
  box-shadow: none;
  pointer-events: none;
  max-width: 100%;
  margin: 0 0 1.5em;
  display: none
}

.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-fields-block>div>*,
.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-totals-block>div>* {
  visibility: hidden
}

@media screen and (prefers-reduced-motion:reduce) {
  .wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-fields-block>div,
  .wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-totals-block>div {
    -webkit-animation: none;
    animation: none
  }
}

.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-fields-block .wp-block-woocommerce-checkout-contact-information-block,
.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-fields-block .wp-block-woocommerce-checkout-payment-block,
.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-totals-block .wp-block-woocommerce-checkout-contact-information-block,
.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-totals-block .wp-block-woocommerce-checkout-payment-block {
  min-height: 10em;
  display: block
}

.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-fields-block .wp-block-woocommerce-checkout-shipping-address-block,
.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-totals-block .wp-block-woocommerce-checkout-shipping-address-block {
  min-height: 24em;
  display: block
}

.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-fields-block .wp-block-woocommerce-checkout-actions-block,
.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-totals-block .wp-block-woocommerce-checkout-actions-block {
  width: 50%;
  min-height: 4em;
  margin-left: 50%;
  display: block
}

.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-fields-block .wp-block-woocommerce-checkout-order-summary-block,
.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-totals-block .wp-block-woocommerce-checkout-order-summary-block {
  min-height: 47em;
  display: block
}

.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-fields-block .wc-block-components-panel>h2,
.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-totals-block .wc-block-components-panel>h2 {
  font-size: 1em;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration: inherit;
  text-transform: inherit
}

.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-fields-block .wc-block-components-panel>h2 .wc-block-components-panel__button,
.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-totals-block .wc-block-components-panel>h2 .wc-block-components-panel__button {
  font-weight: 400
}

.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-fields-block .wc-block-components-panel,
.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-fields-block .wc-block-components-totals-item,
.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-totals-block .wc-block-components-panel,
.wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-totals-block .wc-block-components-totals-item {
  padding-left: 16px;
  padding-right: 16px
}

@media only screen and (max-width:700px) {
  .wp-block-woocommerce-checkout.is-loading {
    flex-direction: column;
    margin: 0 auto 16px
  }
  .wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-fields-block,
  .wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-totals-block {
    padding: 0;
    width: 100%
  }
  .wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-totals-block .wc-block-components-panel,
  .wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-totals-block .wc-block-components-totals-item {
    padding-left: 0;
    padding-right: 0
  }
}

.theme-twentytwenty .wp-block-woocommerce-checkout.is-loading .wp-block-woocommerce-checkout-totals-block .wc-block-components-panel>h2 {
  font-size: 1.25em;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline
}

.wc-block-mini-cart__badge,
.wc-block-mini-cart__quantity-badge {
  align-items: center;
  display: flex
}

.wc-block-mini-cart__badge {
  background: #fff;
  border: .15em solid;
  border-radius: 1em;
  box-sizing: border-box;
  color: #000;
  font-size: .875em;
  font-weight: 600;
  height: 1.4285714286em;
  justify-content: center;
  margin-left: -.7142857143em;
  min-width: 1.4285714286em;
  padding: 0 .25em;
  transform: translateY(-50%);
  white-space: nowrap;
  z-index: 1
}

.wc-block-mini-cart__icon {
  display: block;
  height: 1.5em;
  width: 1.5em;
  stroke: currentColor
}

.wc-block-mini-cart.wp-block-woocommerce-mini-cart {
  background-color: transparent!important;
  display: flex;
  justify-content: flex-end
}

.wc-block-mini-cart.wp-block-woocommerce-mini-cart.is-transparent .wc-block-mini-cart__button {
  background-color: transparent!important
}

.wc-block-mini-cart__button {
  align-items: center;
  border: none;
  color: inherit;
  display: flex;
  font-weight: 400;
  padding: .75em .5em
}

.wc-block-mini-cart__button:hover {
  opacity: .6
}

.wc-block-mini-cart__amount {
  display: none
}

@media screen and (min-width:768px) {
  .wc-block-mini-cart__amount {
    display: initial;
    font-weight: 600;
    margin-right: 8px
  }
}

.modal-open .wc-block-mini-cart__button {
  pointer-events: none
}

.wc-block-mini-cart__drawer {
  font-size: 1rem
}

.wc-block-mini-cart__drawer .components-modal__content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%
}

.wc-block-mini-cart__drawer .components-modal__header {
  margin: 16px 0
}

.wc-block-mini-cart__drawer .wc-block-mini-cart__items {
  flex-grow: 1;
  margin-right: -16px;
  overflow-y: auto;
  padding-right: 16px
}

.wc-block-mini-cart__drawer .wc-block-mini-cart__items .wc-block-cart-items__row:last-child:after {
  content: none
}

.wc-block-mini-cart__footer {
  border-top: 1px solid #ddd;
  margin-bottom: -40px;
  margin-left: -16px;
  margin-right: -16px;
  padding: 24px
}

.wc-block-components-totals-item.wc-block-mini-cart__footer-subtotal {
  font-weight: 600;
  margin-bottom: 16px
}

.wc-block-components-totals-item.wc-block-mini-cart__footer-subtotal .wc-block-components-totals-item__description {
  display: none;
  font-size: .75em;
  font-weight: 400
}

@media only screen and (min-width:480px) {
  .wc-block-components-totals-item.wc-block-mini-cart__footer-subtotal .wc-block-components-totals-item__description {
    display: unset
  }
}

.wc-block-mini-cart__footer-actions {
  display: flex;
  gap: 16px
}

.wc-block-mini-cart__footer-actions .wc-block-mini-cart__footer-cart.wc-block-components-button {
  background-color: transparent;
  border: 1px solid #1e1e1e;
  color: #1e1e1e;
  display: none;
  flex-grow: 1;
  font-weight: 600
}

@media only screen and (min-width:480px) {
  .wc-block-mini-cart__footer-actions .wc-block-mini-cart__footer-cart.wc-block-components-button {
    display: inline-flex
  }
}

.wc-block-mini-cart__footer-actions .wc-block-mini-cart__footer-checkout {
  border: 1px solid #1e1e1e;
  flex-grow: 1;
  font-weight: 600
}

.wc-block-mini-cart__footer .wc-block-components-payment-method-icons {
  margin-top: 16px
}

.wc-block-components-express-payment {
  margin: auto;
  position: relative
}

.wc-block-components-express-payment .wc-block-components-express-payment__event-buttons {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  text-align: center
}

.wc-block-components-express-payment .wc-block-components-express-payment__event-buttons>li {
  margin: 0
}

.wc-block-components-express-payment .wc-block-components-express-payment__event-buttons>li>img {
  width: 100%;
  height: 48px
}

.wc-block-components-express-payment--checkout {
  margin-top: 5px
}

.wc-block-components-express-payment--checkout .wc-block-components-express-payment__title-container {
  display: flex;
  flex-direction: row;
  left: 0;
  position: absolute;
  right: 0;
  top: -5px;
  vertical-align: middle
}

.wc-block-components-express-payment--checkout .wc-block-components-express-payment__title-container:before {
  border-left: 1px solid;
  border-top: 1px solid;
  border-radius: 5px 0 0 0;
  content: "";
  display: block;
  height: 4px;
  margin-right: 12px;
  opacity: .3;
  pointer-events: none;
  width: 10px
}

.wc-block-components-express-payment--checkout .wc-block-components-express-payment__title-container:after {
  border-right: 1px solid;
  border-top: 1px solid;
  border-radius: 0 5px 0 0;
  content: "";
  display: block;
  height: 4px;
  margin-left: 12px;
  opacity: .3;
  pointer-events: none;
  flex-grow: 1
}

.wc-block-components-express-payment--checkout .wc-block-components-express-payment__title {
  flex-grow: 0;
  transform: translateY(-50%)
}

.wc-block-components-express-payment--checkout .wc-block-components-express-payment__content {
  position: relative;
  padding: 1.5em 23px
}

.wc-block-components-express-payment--checkout .wc-block-components-express-payment__content:after {
  border-style: solid;
  border-width: 0 1px 1px;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  opacity: .3;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0 0 5px 5px
}

.wc-block-components-express-payment--checkout .wc-block-components-express-payment__content>p {
  margin-bottom: 1em
}

.wc-block-components-express-payment--checkout .wc-block-components-express-payment__event-buttons>li {
  display: inline-block;
  width: 50%
}

.wc-block-components-express-payment--checkout .wc-block-components-express-payment__event-buttons>li:nth-child(2n) {
  padding-left: 8px
}

.wc-block-components-express-payment--checkout .wc-block-components-express-payment__event-buttons>li:nth-child(odd) {
  padding-right: 8px
}

.wc-block-components-express-payment--cart .wc-block-components-express-payment__event-buttons>li {
  padding-bottom: 16px;
  text-align: center;
  width: 100%
}

.wc-block-components-express-payment--cart .wc-block-components-express-payment__event-buttons>li:last-child {
  padding-bottom: 0
}

.wc-block-components-express-payment-continue-rule {
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  margin: 24px 0
}

.wc-block-components-express-payment-continue-rule:before {
  margin-right: 10px
}

.wc-block-components-express-payment-continue-rule:after {
  margin-left: 10px
}

.wc-block-components-express-payment-continue-rule:after,
.wc-block-components-express-payment-continue-rule:before {
  content: " ";
  flex: 1;
  border-bottom: 1px solid;
  opacity: .3
}

.wc-block-components-express-payment-continue-rule--cart {
  margin: 16px 0;
  text-transform: uppercase
}

.theme-twentynineteen .wc-block-components-express-payment__title:before {
  display: none
}

.theme-twentytwenty .wc-block-components-express-payment .wc-block-components-express-payment__title {
  padding-left: 12px;
  padding-right: 12px
}

.components-placeholder.wc-block-checkout__no-payment-methods-placeholder {
  margin-bottom: 16px
}

.components-placeholder.wc-block-checkout__no-payment-methods-placeholder * {
  pointer-events: all
}

.components-placeholder.wc-block-checkout__no-payment-methods-placeholder .components-placeholder__fieldset {
  display: block
}

.components-placeholder.wc-block-checkout__no-payment-methods-placeholder .components-placeholder__fieldset .components-button {
  background-color: #1e1e1e;
  color: #fff
}

.components-placeholder.wc-block-checkout__no-payment-methods-placeholder .components-placeholder__fieldset .wc-block-checkout__no-payment-methods-placeholder-description {
  display: block;
  margin: .25em 0 1em
}

.components-notice.wc-block-checkout__no-payment-methods-notice {
  margin-bottom: 16px
}

.wc-block-card-elements {
  display: flex;
  width: 100%
}

.wc-block-card-elements .wc-block-components-validation-error {
  position: static
}

.wc-block-gateway-container {
  position: relative;
  margin-bottom: 1.5em;
  white-space: nowrap
}

.wc-block-gateway-container.wc-card-number-element {
  flex-basis: 15em;
  flex-grow: 1;
  min-width: min(15em, 60%)
}

.wc-block-gateway-container.wc-card-expiry-element {
  flex-basis: 7em;
  margin-left: 12px;
  min-width: min(7em, calc(24% - 12px))
}

.wc-block-gateway-container.wc-card-cvc-element {
  flex-basis: 7em;
  margin-left: 12px;
  min-width: min(5em, calc(16% - 12px))
}

.wc-block-gateway-container .wc-block-gateway-input {
  font-size: 1em;
  line-height: 1.375;
  background-color: #fff;
  padding: .75em 0 .75em 16px;
  border-radius: 0;
  border: 1px solid #50575e;
  width: 100%;
  font-family: inherit;
  margin: 0;
  box-sizing: border-box;
  height: 3em;
  color: #2b2d2f;
  cursor: text
}

.wc-block-gateway-container .wc-block-gateway-input:focus,
.wc-block-gateway-container:focus {
  background-color: #fff
}

.wc-block-gateway-container label {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  font-size: 1em;
  line-height: 1.375;
  position: absolute;
  transform: translateY(.75em);
  left: 0;
  top: 0;
  transform-origin: top left;
  color: #757575;
  transition: transform .2s ease;
  margin: 0 0 0 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 24px);
  cursor: text
}

@media screen and (prefers-reduced-motion:reduce) {
  .wc-block-gateway-container label {
    transition: none
  }
}

.wc-block-gateway-container.wc-inline-card-element label {
  margin-left: calc(24px + 1.5em)
}

.wc-block-gateway-container.wc-inline-card-element .wc-block-gateway-input.focused.empty+label,
.wc-block-gateway-container.wc-inline-card-element .wc-block-gateway-input:not(.empty)+label {
  margin-left: 16px;
  transform: translateY(4px) scale(.75)
}

.wc-block-gateway-container.wc-inline-card-element+.wc-block-components-validation-error {
  position: static;
  margin-top: -24px
}

.wc-block-gateway-container .wc-block-gateway-input.focused.empty,
.wc-block-gateway-container .wc-block-gateway-input:not(.empty) {
  padding: 1.5em 0 .25em 16px
}

.wc-block-gateway-container .wc-block-gateway-input.focused.empty+label,
.wc-block-gateway-container .wc-block-gateway-input:not(.empty)+label {
  transform: translateY(4px) scale(.75)
}

.wc-block-gateway-container .wc-block-gateway-input.has-error {
  border-color: #cc1818
}

.wc-block-gateway-container .wc-block-gateway-input.has-error:focus {
  outline-color: #cc1818
}

.wc-block-gateway-container .wc-block-gateway-input.has-error+label {
  color: #cc1818
}

.is-large .wc-card-cvc-element .wc-block-components-validation-error>p,
.is-large .wc-card-expiry-element .wc-block-components-validation-error>p,
.is-medium .wc-card-cvc-element .wc-block-components-validation-error>p,
.is-medium .wc-card-expiry-element .wc-block-components-validation-error>p {
  line-height: 16px;
  padding-top: 4px
}

.is-mobile .wc-card-cvc-element .wc-block-components-validation-error>p,
.is-mobile .wc-card-expiry-element .wc-block-components-validation-error>p,
.is-small .wc-card-cvc-element .wc-block-components-validation-error>p,
.is-small .wc-card-expiry-element .wc-block-components-validation-error>p {
  min-height: 28px
}

.wc-block-components-checkout-payment-methods * {
  pointer-events: all
}

.is-mobile .wc-block-card-elements,
.is-small .wc-block-card-elements {
  flex-wrap: wrap
}

.is-mobile .wc-block-gateway-container.wc-card-number-element,
.is-small .wc-block-gateway-container.wc-card-number-element {
  flex-basis: 100%
}

.is-mobile .wc-block-gateway-container.wc-card-expiry-element,
.is-small .wc-block-gateway-container.wc-card-expiry-element {
  flex-basis: calc(50% - 8px);
  margin-left: 0;
  margin-right: 8px
}

.is-mobile .wc-block-gateway-container.wc-card-cvc-element,
.is-small .wc-block-gateway-container.wc-card-cvc-element {
  flex-basis: calc(50% - 8px);
  margin-left: 8px
}

.wc-block-checkout__payment-method .wc-block-components-radio-control__option {
  padding-left: 56px
}

.wc-block-checkout__payment-method .wc-block-components-radio-control__option:after {
  content: none
}

.wc-block-checkout__payment-method .wc-block-components-radio-control__option .wc-block-components-radio-control__input {
  left: 16px
}

.wc-block-checkout__payment-method .wc-block-components-radio-control__option,
.wc-block-checkout__payment-method .wc-block-components-radio-control__option:first-child,
.wc-block-checkout__payment-method .wc-block-components-radio-control__option:last-child {
  margin: 0;
  padding-bottom: 1em;
  padding-top: 1em
}

.wc-block-checkout__payment-method .wc-block-components-radio-control__option-checked {
  font-weight: 700
}

.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option,
.wc-block-checkout__payment-method .wc-block-components-radio-control__option {
  position: relative
}

.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option:after,
.wc-block-checkout__payment-method .wc-block-components-radio-control__option:after {
  border-style: solid;
  border-width: 1px 1px 0;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  opacity: .3;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0
}

.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option:last-child:after,
.wc-block-checkout__payment-method .wc-block-components-radio-control__option:last-child:after {
  border-width: 1px
}

.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__option:after {
  border-width: 0
}

.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__label {
  display: flex;
  align-items: center;
  justify-content: flex-start
}

.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__label img {
  height: 24px;
  max-height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left
}

.wc-block-checkout__payment-method .wc-block-components-radio-control.disable-radio-control .wc-block-components-radio-control__option {
  padding-left: 16px
}

.wc-block-checkout__payment-method .wc-block-components-radio-control.disable-radio-control .wc-block-components-radio-control__input {
  display: none
}

.wc-block-checkout__payment-method .wc-block-components-checkout-step__description-payments-aligned {
  padding-top: 14px;
  height: 28px
}

.wc-block-components-radio-control-accordion-content {
  padding: 0 16px 1em
}

.wc-block-components-radio-control-accordion-content:empty {
  display: none
}

.wc-block-checkout__order-notes .wc-block-components-checkout-step__content {
  padding-bottom: 0
}

.wc-block-components-checkbox {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  align-items: flex-start;
  display: flex;
  position: relative;
  margin-top: 1.5em
}

.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox] {
  font-size: 1em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid #50575e;
  border-radius: 2px;
  box-sizing: border-box;
  height: 1.5em;
  width: 1.5em;
  margin: 0;
  min-height: 24px;
  min-width: 24px;
  overflow: hidden;
  position: static;
  vertical-align: middle;
  background-color: #fff
}

.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:checked {
  background: #fff;
  border-color: #50575e
}

.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:focus {
  outline: 2px solid #50575e;
  outline-offset: 2px
}

.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:after,
.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:before {
  content: ""
}

.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:not(:checked)+.wc-block-components-checkbox__mark {
  display: none
}

.has-dark-controls .wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox] {
  border-color: hsla(0, 0%, 100%, .6);
  background-color: rgba(0, 0, 0, .1)
}

.has-dark-controls .wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:checked {
  background: rgba(0, 0, 0, .1);
  border-color: hsla(0, 0%, 100%, .6)
}

.has-dark-controls .wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:focus {
  outline: 2px solid hsla(0, 0%, 100%, .6);
  outline-offset: 2px
}

.wc-block-components-checkbox.has-error,
.wc-block-components-checkbox.has-error a {
  color: #cc1818
}

.wc-block-components-checkbox.has-error .wc-block-components-checkbox__input,
.wc-block-components-checkbox.has-error .wc-block-components-checkbox__input:active,
.wc-block-components-checkbox.has-error .wc-block-components-checkbox__input:focus,
.wc-block-components-checkbox.has-error .wc-block-components-checkbox__input:hover {
  border-color: #cc1818
}

.wc-block-components-checkbox.has-error .wc-block-components-checkbox__input:focus {
  outline: 2px solid #cc1818;
  outline-offset: 2px
}

.wc-block-components-checkbox .wc-block-components-checkbox__mark {
  fill: #000;
  position: absolute;
  margin-left: .1875em;
  margin-top: .0625em;
  width: 1.125em;
  height: 1.125em
}

.has-dark-controls .wc-block-components-checkbox .wc-block-components-checkbox__mark {
  fill: #fff
}

.wc-block-components-checkbox .wc-block-components-checkbox__label,
.wc-block-components-checkbox>span {
  padding-left: 16px;
  vertical-align: middle;
  line-height: 1.5em
}

@media (-ms-high-contrast:none),
screen and (-ms-high-contrast:active) {
  .wc-block-components-checkbox__mark {
    display: none
  }
}

.theme-twentytwentyone .has-dark-controls .wc-block-components-checkbox__input[type=checkbox],
.theme-twentytwentyone .wc-block-components-checkbox__input[type=checkbox] {
  background-color: #fff;
  border-color: var(--form--border-color);
  position: relative
}

.theme-twentytwentyone .has-dark-controls .wc-block-components-checkbox__input[type=checkbox]:checked,
.theme-twentytwentyone .wc-block-components-checkbox__input[type=checkbox]:checked {
  background-color: #fff;
  border-color: var(--form--border-color)
}

.theme-twentytwentyone .wc-block-components-checkbox__mark {
  display: none
}

.wc-block-components-panel.has-border {
  position: relative
}

.wc-block-components-panel.has-border:after {
  border-style: solid;
  border-width: 1px 0;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  opacity: .3;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0
}

.wc-block-components-panel.has-border+.wc-block-components-panel.has-border:after {
  border-top-width: 0
}

.wc-block-components-panel.has-border.no-top-border {
  position: relative
}

.wc-block-components-panel.has-border.no-top-border:after {
  border-style: solid;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  opacity: .3;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  border-width: 0 0 1px
}

.wc-block-components-panel__button {
  border: 0;
  border-radius: 0;
  vertical-align: baseline;
  height: auto;
  line-height: 1;
  margin: .375em 0 0;
  padding: .375em 32px 0 0;
  position: relative;
  text-align: left;
  width: 100%;
  word-break: break-word
}

.wc-block-components-panel__button[aria-expanded=true] {
  padding-bottom: .375em;
  margin-bottom: .375em
}

.wc-block-components-panel__button,
.wc-block-components-panel__button:active,
.wc-block-components-panel__button:focus,
.wc-block-components-panel__button:hover {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  background: transparent;
  box-shadow: none
}

.wc-block-components-panel__button>.wc-block-components-panel__button-icon {
  fill: currentColor;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: auto
}

.wc-block-components-panel__content {
  padding-bottom: 1em
}

.wc-block-components-panel__content[hidden] {
  display: none
}

.theme-twentytwentyone.theme-twentytwentyone.theme-twentytwentyone .wc-block-components-panel__button {
  background-color: inherit;
  color: inherit
}

.theme-twentyseventeen .wc-block-components-panel__button,
.theme-twentytwenty .wc-block-components-panel__button {
  background: none transparent;
  color: inherit
}

.theme-twentyseventeen .wc-block-components-panel__button.wc-block-components-panel__button:focus,
.theme-twentyseventeen .wc-block-components-panel__button.wc-block-components-panel__button:hover,
.theme-twentytwenty .wc-block-components-panel__button.wc-block-components-panel__button:focus,
.theme-twentytwenty .wc-block-components-panel__button.wc-block-components-panel__button:hover {
  background: none transparent
}

.wc-block-components-totals-wrapper {
  position: relative;
  padding: 16px 0
}

.wc-block-components-totals-wrapper:after {
  border-style: solid;
  border-width: 1px 0 0;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  opacity: .3;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0
}

.wc-block-components-totals-wrapper:last-child {
  padding-bottom: 0
}

.wc-block-components-totals-wrapper.has-bottom-border:after {
  border-bottom-width: 1px
}

.wc-block-components-totals-wrapper.slot-wrapper {
  padding: 0
}

.wc-block-components-totals-wrapper.slot-wrapper>*>* {
  position: relative;
  padding: 16px 0
}

.wc-block-components-totals-wrapper.slot-wrapper>*>:after {
  border-style: solid;
  border-width: 0 0 1px;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  opacity: .3;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0
}

.wc-block-components-totals-wrapper.slot-wrapper>*>:last-child:after {
  border-bottom-width: 0
}

.wc-block-components-discounts-meta .wc-block-components-totals-wrapper:first-child {
  position: relative
}

.wc-block-components-discounts-meta .wc-block-components-totals-wrapper:first-child:after {
  border-style: solid;
  border-width: 1px 0 0;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  opacity: .3;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0
}

.wc-block-components-totals-item {
  display: flex;
  flex-wrap: wrap;
  margin: .75em 0 0;
  width: 100%
}

.wc-block-components-totals-item:first-child {
  margin-top: 0
}

.wc-block-components-totals-item__label {
  flex-grow: 1
}

.wc-block-components-totals-item__value {
  font-weight: 700;
  white-space: nowrap
}

.wc-block-components-totals-item__description {
  font-size: .875em;
  width: 100%
}

.wc-block-components-totals-item.wc-block-components-totals-taxes__grouped-rate {
  margin: 4px 0
}

.wc-block-components-totals-item.wc-block-components-totals-taxes__grouped-rate:first-child {
  margin-top: 0
}

.wc-block-components-totals-item.wc-block-components-totals-taxes__grouped-rate:last-child {
  margin-bottom: 0
}

.wc-block-product-categories {
  margin-bottom: 1em
}

.wc-block-product-categories.is-dropdown {
  display: flex
}

.wc-block-product-categories select {
  margin-right: .5em
}

.wc-block-product-categories-list--has-images {
  list-style: none outside
}

.wc-block-product-categories-list--has-images .wc-block-product-categories-list-item {
  margin: 4px 0 4px 60px;
  list-style: none outside;
  clear: both
}

.wc-block-product-categories-list--has-images .wc-block-product-categories-list-item ul {
  margin: 4px 0 0
}

.wc-block-product-categories-list--has-images .wc-block-product-categories-list-item__image {
  max-width: 50px;
  display: inline-block;
  padding: 0;
  margin: 0 .5em 0 -60px;
  position: relative;
  vertical-align: middle;
  border: 1px solid #eee
}

.wc-block-product-categories-list--has-images .wc-block-product-categories-list-item__image img {
  display: block;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0
}

.wc-block-product-categories-list-item-count:before {
  content: " ("
}

.wc-block-product-categories-list-item-count:after {
  content: ")"
}

.wp-block-woocommerce-product-categories.is-loading .wc-block-product-categories__placeholder {
  display: inline-block;
  height: 1em;
  width: 50%;
  min-width: 200px;
  background: currentColor;
  opacity: .2
}

.wc-block-product-categories__button {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 .5em;
  position: relative;
  overflow: hidden
}

.wc-block-product-categories__button svg {
  fill: currentColor;
  outline: none
}

.rtl .wc-block-product-categories__button svg {
  transform: rotate(180deg)
}

.wc-block-product-categories__button:active {
  color: currentColor
}

.wc-block-product-categories__button:disabled,
.wc-block-product-categories__button[aria-disabled=true] {
  cursor: default;
  opacity: .3
}

.wc-block-product-categories__button:disabled:focus,
.wc-block-product-categories__button[aria-disabled=true]:focus {
  box-shadow: none
}

.wc-block-featured-product {
  position: relative;
  background-color: #1e1e1e;
  background-size: cover;
  background-position: 50%;
  width: 100%;
  margin: 0 0 1.5em
}

.wc-block-featured-product,
.wc-block-featured-product .wc-block-featured-product__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: center
}

.wc-block-featured-product .wc-block-featured-product__wrapper {
  overflow: hidden;
  height: 100%
}

.wc-block-featured-product.has-left-content {
  justify-content: flex-start
}

.wc-block-featured-product.has-left-content .wc-block-featured-product__description,
.wc-block-featured-product.has-left-content .wc-block-featured-product__price,
.wc-block-featured-product.has-left-content .wc-block-featured-product__title,
.wc-block-featured-product.has-left-content .wc-block-featured-product__variation {
  margin-left: 0;
  text-align: left
}

.wc-block-featured-product.has-right-content {
  justify-content: flex-end
}

.wc-block-featured-product.has-right-content .wc-block-featured-product__description,
.wc-block-featured-product.has-right-content .wc-block-featured-product__price,
.wc-block-featured-product.has-right-content .wc-block-featured-product__title,
.wc-block-featured-product.has-right-content .wc-block-featured-product__variation {
  margin-right: 0;
  text-align: right
}

.wc-block-featured-product .wc-block-featured-product__description,
.wc-block-featured-product .wc-block-featured-product__price,
.wc-block-featured-product .wc-block-featured-product__title,
.wc-block-featured-product .wc-block-featured-product__variation {
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0;
  text-align: center
}

.wc-block-featured-product .wc-block-featured-product__description a,
.wc-block-featured-product .wc-block-featured-product__description a:active,
.wc-block-featured-product .wc-block-featured-product__description a:focus,
.wc-block-featured-product .wc-block-featured-product__description a:hover,
.wc-block-featured-product .wc-block-featured-product__price a,
.wc-block-featured-product .wc-block-featured-product__price a:active,
.wc-block-featured-product .wc-block-featured-product__price a:focus,
.wc-block-featured-product .wc-block-featured-product__price a:hover,
.wc-block-featured-product .wc-block-featured-product__title a,
.wc-block-featured-product .wc-block-featured-product__title a:active,
.wc-block-featured-product .wc-block-featured-product__title a:focus,
.wc-block-featured-product .wc-block-featured-product__title a:hover,
.wc-block-featured-product .wc-block-featured-product__variation a,
.wc-block-featured-product .wc-block-featured-product__variation a:active,
.wc-block-featured-product .wc-block-featured-product__variation a:focus,
.wc-block-featured-product .wc-block-featured-product__variation a:hover {
  color: #fff
}

.wc-block-featured-product .wc-block-featured-product__description,
.wc-block-featured-product .wc-block-featured-product__link,
.wc-block-featured-product .wc-block-featured-product__price,
.wc-block-featured-product .wc-block-featured-product__title,
.wc-block-featured-product .wc-block-featured-product__variation {
  width: 100%;
  padding: 16px 48px 0;
  z-index: 1
}

.wc-block-featured-product .wc-block-featured-product__title,
.wc-block-featured-product .wc-block-featured-product__variation {
  margin-top: 0;
  border: 0
}

.wc-block-featured-product .wc-block-featured-product__title:before,
.wc-block-featured-product .wc-block-featured-product__variation:before {
  display: none
}

.wc-block-featured-product .wc-block-featured-product__variation {
  font-style: italic;
  padding-top: 0
}

.wc-block-featured-product .wc-block-featured-product__description p {
  margin: 0;
  line-height: 1.5em
}

.wc-block-featured-product .wp-block-button.aligncenter {
  text-align: center
}

.wc-block-featured-product.has-background-dim:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: inherit;
  opacity: .5;
  z-index: 1
}

.wc-block-featured-product.has-background-dim.has-background-dim-10:before {
  opacity: .1
}

.wc-block-featured-product.has-background-dim.has-background-dim-20:before {
  opacity: .2
}

.wc-block-featured-product.has-background-dim.has-background-dim-30:before {
  opacity: .3
}

.wc-block-featured-product.has-background-dim.has-background-dim-40:before {
  opacity: .4
}

.wc-block-featured-product.has-background-dim.has-background-dim-50:before {
  opacity: .5
}

.wc-block-featured-product.has-background-dim.has-background-dim-60:before {
  opacity: .6
}

.wc-block-featured-product.has-background-dim.has-background-dim-70:before {
  opacity: .7
}

.wc-block-featured-product.has-background-dim.has-background-dim-80:before {
  opacity: .8
}

.wc-block-featured-product.has-background-dim.has-background-dim-90:before {
  opacity: .9
}

.wc-block-featured-product.has-background-dim.has-background-dim-100:before {
  opacity: 1
}

.wc-block-featured-product.alignleft,
.wc-block-featured-product.alignright {
  max-width: 290px;
  width: 100%
}

.wc-block-featured-product:after {
  display: block;
  content: "";
  font-size: 0;
  min-height: inherit
}

@supports((position:-webkit-sticky) or (position:sticky)) {
  .wc-block-featured-product:after {
    content: none
  }
}

.wc-block-featured-product.aligncenter,
.wc-block-featured-product.alignleft,
.wc-block-featured-product.alignright,
.wc-block-product-search .wc-block-product-search__fields {
  display: flex
}

.wc-block-product-search .wc-block-product-search__field {
  padding: 6px 8px;
  line-height: 1.8;
  flex-grow: 1
}

.wc-block-product-search .wc-block-product-search__button {
  display: flex;
  align-items: center;
  margin: 0 0 0 6px;
  cursor: pointer;
  padding: 0 .5em;
  position: relative;
  overflow: hidden
}

.wc-block-product-search .wc-block-product-search__button svg {
  fill: currentColor;
  outline: none
}

.rtl .wc-block-product-search .wc-block-product-search__button svg {
  transform: rotate(180deg)
}

.wc-block-product-search .wc-block-product-search__button:active {
  color: currentColor
}

.wc-block-product-search .wc-block-product-search__button:disabled,
.wc-block-product-search .wc-block-product-search__button[aria-disabled=true] {
  cursor: default;
  opacity: .3
}

.wc-block-product-search .wc-block-product-search__button:disabled:focus,
.wc-block-product-search .wc-block-product-search__button[aria-disabled=true]:focus {
  box-shadow: none
}

.wc-block-featured-category {
  position: relative;
  background-color: #1e1e1e;
  background-size: cover;
  background-position: 50%;
  width: 100%;
  margin: 0 0 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: center
}

.wc-block-featured-category .wc-block-featured-category__wrapper {
  overflow: hidden;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: center
}

.wc-block-featured-category.has-left-content {
  justify-content: flex-start
}

.wc-block-featured-category.has-left-content .wc-block-featured-category__description,
.wc-block-featured-category.has-left-content .wc-block-featured-category__price,
.wc-block-featured-category.has-left-content .wc-block-featured-category__title {
  margin-left: 0;
  text-align: left
}

.wc-block-featured-category.has-right-content {
  justify-content: flex-end
}

.wc-block-featured-category.has-right-content .wc-block-featured-category__description,
.wc-block-featured-category.has-right-content .wc-block-featured-category__price,
.wc-block-featured-category.has-right-content .wc-block-featured-category__title {
  margin-right: 0;
  text-align: right
}

.wc-block-featured-category .wc-block-featured-category__description,
.wc-block-featured-category .wc-block-featured-category__price,
.wc-block-featured-category .wc-block-featured-category__title {
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0;
  text-align: center
}

.wc-block-featured-category .wc-block-featured-category__description a,
.wc-block-featured-category .wc-block-featured-category__description a:active,
.wc-block-featured-category .wc-block-featured-category__description a:focus,
.wc-block-featured-category .wc-block-featured-category__description a:hover,
.wc-block-featured-category .wc-block-featured-category__price a,
.wc-block-featured-category .wc-block-featured-category__price a:active,
.wc-block-featured-category .wc-block-featured-category__price a:focus,
.wc-block-featured-category .wc-block-featured-category__price a:hover,
.wc-block-featured-category .wc-block-featured-category__title a,
.wc-block-featured-category .wc-block-featured-category__title a:active,
.wc-block-featured-category .wc-block-featured-category__title a:focus,
.wc-block-featured-category .wc-block-featured-category__title a:hover {
  color: #fff
}

.wc-block-featured-category .wc-block-featured-category__description,
.wc-block-featured-category .wc-block-featured-category__link,
.wc-block-featured-category .wc-block-featured-category__price,
.wc-block-featured-category .wc-block-featured-category__title {
  width: 100%;
  padding: 0 48px 16px;
  z-index: 1
}

.wc-block-featured-category .wc-block-featured-category__title {
  margin-top: 0
}

.wc-block-featured-category .wc-block-featured-category__title:before {
  display: none
}

.wc-block-featured-category .wc-block-featured-category__description p {
  margin: 0
}

.wc-block-featured-category .wp-block-button.aligncenter {
  text-align: center
}

.wc-block-featured-category.has-background-dim:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: inherit;
  opacity: .5;
  z-index: 1
}

.wc-block-featured-category.has-background-dim.has-background-dim-10:before {
  opacity: .1
}

.wc-block-featured-category.has-background-dim.has-background-dim-20:before {
  opacity: .2
}

.wc-block-featured-category.has-background-dim.has-background-dim-30:before {
  opacity: .3
}

.wc-block-featured-category.has-background-dim.has-background-dim-40:before {
  opacity: .4
}

.wc-block-featured-category.has-background-dim.has-background-dim-50:before {
  opacity: .5
}

.wc-block-featured-category.has-background-dim.has-background-dim-60:before {
  opacity: .6
}

.wc-block-featured-category.has-background-dim.has-background-dim-70:before {
  opacity: .7
}

.wc-block-featured-category.has-background-dim.has-background-dim-80:before {
  opacity: .8
}

.wc-block-featured-category.has-background-dim.has-background-dim-90:before {
  opacity: .9
}

.wc-block-featured-category.has-background-dim.has-background-dim-100:before {
  opacity: 1
}

.wc-block-featured-category.alignleft,
.wc-block-featured-category.alignright {
  max-width: 290px;
  width: 100%
}

.wc-block-featured-category:after {
  display: block;
  content: "";
  font-size: 0;
  min-height: inherit
}

@supports((position:-webkit-sticky) or (position:sticky)) {
  .wc-block-featured-category:after {
    content: none
  }
}

.wc-block-featured-category.aligncenter,
.wc-block-featured-category.alignleft,
.wc-block-featured-category.alignright {
  display: flex
}

.wc-block-attribute-filter {
  margin-bottom: 24px
}

.wc-block-attribute-filter.style-dropdown {
  display: flex;
  gap: 16px
}

.wc-block-attribute-filter .wc-block-attribute-filter-list {
  margin: 0;
  width: 100%
}

.wc-block-attribute-filter .wc-block-attribute-filter-list li {
  text-decoration: underline
}

.wc-block-attribute-filter .wc-block-attribute-filter-list li label {
  cursor: pointer
}

.wc-block-attribute-filter .wc-block-attribute-filter-list li input {
  cursor: pointer;
  display: inline-block
}

.wc-block-attribute-filter .wc-block-attribute-filter-dropdown {
  flex-grow: 1;
  max-width: unset;
  width: 0
}

.wc-block-attribute-filter .is-single .wc-block-attribute-filter-list-count,
.wc-block-attribute-filter .wc-block-dropdown-selector .wc-block-dropdown-selector__list .wc-block-attribute-filter-list-count {
  opacity: .6
}

.wc-block-attribute-filter .wc-block-components-dropdown-selector__input-wrapper {
  height: 100%
}

.wc-block-stock-filter {
  margin-bottom: 24px
}

.wc-block-stock-filter .wc-block-stock-filter-list {
  margin: 0
}

.wc-block-stock-filter .wc-block-stock-filter-list li {
  text-decoration: underline
}

.wc-block-stock-filter .wc-block-stock-filter-list li label {
  cursor: pointer
}

.wc-block-stock-filter .wc-block-stock-filter-list li input {
  cursor: pointer;
  display: inline-block
}

.wc-block-stock-filter .is-single,
.wc-block-stock-filter .wc-block-dropdown-selector .wc-block-dropdown-selector__list {
  opacity: .6
}

.wc-block-stock-filter .wc-block-stock-filter__button {
  margin-top: 8px
}

@-webkit-keyframes loading-fade {
  0% {
    opacity: .7
  }
  50% {
    opacity: 1
  }
  to {
    opacity: .7
  }
}

@keyframes loading-fade {
  0% {
    opacity: .7
  }
  50% {
    opacity: 1
  }
  to {
    opacity: .7
  }
}

.wc-block-active-filters {
  margin-bottom: 24px;
  overflow: hidden
}

.wc-block-active-filters .wc-block-active-filters__clear-all {
  font-size: 1em;
  float: right;
  border: none;
  padding: 0;
  text-decoration: underline;
  cursor: pointer
}

.wc-block-active-filters .wc-block-active-filters__clear-all,
.wc-block-active-filters .wc-block-active-filters__clear-all:active,
.wc-block-active-filters .wc-block-active-filters__clear-all:focus,
.wc-block-active-filters .wc-block-active-filters__clear-all:hover {
  background: transparent;
  color: inherit
}

.wc-block-active-filters .wc-block-active-filters__list {
  margin: 0 0 4px;
  padding: 0;
  list-style: none outside;
  clear: both
}

.wc-block-active-filters .wc-block-active-filters__list li {
  margin: 0;
  padding: 0;
  list-style: none outside;
  clear: both
}

.wc-block-active-filters .wc-block-active-filters__list li ul {
  margin: 0;
  padding: 0;
  list-style: none outside
}

.wc-block-active-filters .wc-block-active-filters__list li:first-child .wc-block-active-filters__list-item-type {
  margin: 0
}

.wc-block-active-filters .wc-block-active-filters__list-item-type {
  font-size: .75em;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 16px 0 0;
  display: block
}

.wc-block-active-filters .wc-block-active-filters__list-item-operator {
  font-weight: 400;
  font-style: italic
}

.wc-block-active-filters .wc-block-active-filters__list-item-name {
  font-weight: 700;
  display: block;
  position: relative;
  padding: 0 16px 0 0
}

.wc-block-active-filters .wc-block-active-filters__list-item-remove {
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 16px;
  width: 16px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 50%;
  margin: -8px 0 0;
  color: currentColor
}

.wc-block-active-filters .wc-block-active-filters__list--chips li,
.wc-block-active-filters .wc-block-active-filters__list--chips ul {
  display: inline
}

.wc-block-active-filters .wc-block-active-filters__list--chips .wc-block-active-filters__list-item-type {
  display: none
}

.wc-block-active-filters .wc-block-active-filters__list--chips .wc-block-components-chip {
  font-size: .875em;
  margin-top: .1875em;
  margin-bottom: .1875em
}

@media (min-width:768px) {}

.vc_row:before,
.vc_row:after {
  content: " ";
  display: table
}

.vc_row:after {
  clear: both
}

@media (max-width:767px) {
  .vc_hidden-xs {
    display: none!important
  }
}

@media (min-width:768px) and (max-width:991px) {
  .vc_hidden-sm {
    display: none!important
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .vc_hidden-md {
    display: none!important
  }
}

@media (min-width:1200px) {
  .vc_hidden-lg {
    display: none!important
  }
}

.vc_non_responsive .vc_row .vc_col-sm-1 {
  position: relative;
  float: left;
  width: 8.33333333%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-2 {
  position: relative;
  float: left;
  width: 16.66666667%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-3 {
  position: relative;
  float: left;
  width: 25%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-4 {
  position: relative;
  float: left;
  width: 33.33333333%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-5 {
  position: relative;
  float: left;
  width: 41.66666667%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-6 {
  position: relative;
  float: left;
  width: 50%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-7 {
  position: relative;
  float: left;
  width: 58.33333333%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-8 {
  position: relative;
  float: left;
  width: 66.66666667%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-9 {
  position: relative;
  float: left;
  width: 75%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-10 {
  position: relative;
  float: left;
  width: 83.33333333%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-11 {
  position: relative;
  float: left;
  width: 91.66666667%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-12 {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-offset-12 {
  margin-left: 100%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-11 {
  margin-left: 91.66666667%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-10 {
  margin-left: 83.33333333%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-9 {
  margin-left: 75%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-8 {
  margin-left: 66.66666667%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-7 {
  margin-left: 58.33333333%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-6 {
  margin-left: 50%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-5 {
  margin-left: 41.66666667%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-4 {
  margin-left: 33.33333333%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-3 {
  margin-left: 25%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-2 {
  margin-left: 16.66666667%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-1 {
  margin-left: 8.33333333%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-0 {
  margin-left: 0%
}

.vc_non_responsive .vc_row .vc_hidden-sm {
  display: none!important
}

.vc_non_responsive .vc_row .vc_col-sm-1\/5 {
  position: relative;
  float: left;
  width: 20%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-2\/5 {
  position: relative;
  float: left;
  width: 40%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-3\/5 {
  position: relative;
  float: left;
  width: 60%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-4\/5 {
  position: relative;
  float: left;
  width: 80%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-5\/5 {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-offset-5\/5 {
  margin-left: 100%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-4\/5 {
  margin-left: 80%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-3\/5 {
  margin-left: 60%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-2\/5 {
  margin-left: 40%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-1\/5 {
  margin-left: 20%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-0\/5 {
  margin-left: 0%
}

.vc_column_container {
  width: 100%
}

.vc_row {
  margin-left: -15px;
  margin-right: -15px
}

.vc_col-xs-1,
.vc_col-sm-1,
.vc_col-md-1,
.vc_col-lg-1,
.vc_col-xs-2,
.vc_col-sm-2,
.vc_col-md-2,
.vc_col-lg-2,
.vc_col-xs-3,
.vc_col-sm-3,
.vc_col-md-3,
.vc_col-lg-3,
.vc_col-xs-4,
.vc_col-sm-4,
.vc_col-md-4,
.vc_col-lg-4,
.vc_col-xs-5,
.vc_col-sm-5,
.vc_col-md-5,
.vc_col-lg-5,
.vc_col-xs-6,
.vc_col-sm-6,
.vc_col-md-6,
.vc_col-lg-6,
.vc_col-xs-7,
.vc_col-sm-7,
.vc_col-md-7,
.vc_col-lg-7,
.vc_col-xs-8,
.vc_col-sm-8,
.vc_col-md-8,
.vc_col-lg-8,
.vc_col-xs-9,
.vc_col-sm-9,
.vc_col-md-9,
.vc_col-lg-9,
.vc_col-xs-10,
.vc_col-sm-10,
.vc_col-md-10,
.vc_col-lg-10,
.vc_col-xs-11,
.vc_col-sm-11,
.vc_col-md-11,
.vc_col-lg-11,
.vc_col-xs-12,
.vc_col-sm-12,
.vc_col-md-12,
.vc_col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

.vc_col-xs-1,
.vc_col-xs-2,
.vc_col-xs-3,
.vc_col-xs-4,
.vc_col-xs-5,
.vc_col-xs-6,
.vc_col-xs-7,
.vc_col-xs-8,
.vc_col-xs-9,
.vc_col-xs-10,
.vc_col-xs-11,
.vc_col-xs-12 {
  float: left
}

[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-1,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-2,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-3,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-4,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-5,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-6,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-7,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-8,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-9,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-10,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-11,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-12 {
  float: right
}

.vc_col-xs-12 {
  width: 100%
}

.vc_col-xs-11 {
  width: 91.66666667%
}

.vc_col-xs-10 {
  width: 83.33333333%
}

.vc_col-xs-9 {
  width: 75%
}

.vc_col-xs-8 {
  width: 66.66666667%
}

.vc_col-xs-7 {
  width: 58.33333333%
}

.vc_col-xs-6 {
  width: 50%
}

.vc_col-xs-5 {
  width: 41.66666667%
}

.vc_col-xs-4 {
  width: 33.33333333%
}

.vc_col-xs-3 {
  width: 25%
}

.vc_col-xs-2 {
  width: 16.66666667%
}

.vc_col-xs-1 {
  width: 8.33333333%
}

.vc_col-xs-pull-12 {
  right: 100%
}

.vc_col-xs-pull-11 {
  right: 91.66666667%
}

.vc_col-xs-pull-10 {
  right: 83.33333333%
}

.vc_col-xs-pull-9 {
  right: 75%
}

.vc_col-xs-pull-8 {
  right: 66.66666667%
}

.vc_col-xs-pull-7 {
  right: 58.33333333%
}

.vc_col-xs-pull-6 {
  right: 50%
}

.vc_col-xs-pull-5 {
  right: 41.66666667%
}

.vc_col-xs-pull-4 {
  right: 33.33333333%
}

.vc_col-xs-pull-3 {
  right: 25%
}

.vc_col-xs-pull-2 {
  right: 16.66666667%
}

.vc_col-xs-pull-1 {
  right: 8.33333333%
}

.vc_col-xs-pull-0 {
  right: auto
}

.vc_col-xs-push-12 {
  left: 100%
}

.vc_col-xs-push-11 {
  left: 91.66666667%
}

.vc_col-xs-push-10 {
  left: 83.33333333%
}

.vc_col-xs-push-9 {
  left: 75%
}

.vc_col-xs-push-8 {
  left: 66.66666667%
}

.vc_col-xs-push-7 {
  left: 58.33333333%
}

.vc_col-xs-push-6 {
  left: 50%
}

.vc_col-xs-push-5 {
  left: 41.66666667%
}

.vc_col-xs-push-4 {
  left: 33.33333333%
}

.vc_col-xs-push-3 {
  left: 25%
}

.vc_col-xs-push-2 {
  left: 16.66666667%
}

.vc_col-xs-push-1 {
  left: 8.33333333%
}

.vc_col-xs-push-0 {
  left: auto
}

.vc_col-xs-offset-12 {
  margin-left: 100%
}

.vc_col-xs-offset-11 {
  margin-left: 91.66666667%
}

.vc_col-xs-offset-10 {
  margin-left: 83.33333333%
}

.vc_col-xs-offset-9 {
  margin-left: 75%
}

.vc_col-xs-offset-8 {
  margin-left: 66.66666667%
}

.vc_col-xs-offset-7 {
  margin-left: 58.33333333%
}

.vc_col-xs-offset-6 {
  margin-left: 50%
}

.vc_col-xs-offset-5 {
  margin-left: 41.66666667%
}

.vc_col-xs-offset-4 {
  margin-left: 33.33333333%
}

.vc_col-xs-offset-3 {
  margin-left: 25%
}

.vc_col-xs-offset-2 {
  margin-left: 16.66666667%
}

.vc_col-xs-offset-1 {
  margin-left: 8.33333333%
}

.vc_col-xs-offset-0 {
  margin-left: 0%
}

.vc_col-xs-1\/5,
.vc_col-sm-1\/5,
.vc_col-md-1\/5,
.vc_col-lg-1\/5,
.vc_col-xs-2\/5,
.vc_col-sm-2\/5,
.vc_col-md-2\/5,
.vc_col-lg-2\/5,
.vc_col-xs-3\/5,
.vc_col-sm-3\/5,
.vc_col-md-3\/5,
.vc_col-lg-3\/5,
.vc_col-xs-4\/5,
.vc_col-sm-4\/5,
.vc_col-md-4\/5,
.vc_col-lg-4\/5,
.vc_col-xs-5\/5,
.vc_col-sm-5\/5,
.vc_col-md-5\/5,
.vc_col-lg-5\/5 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

.vc_col-xs-1\/5,
.vc_col-xs-2\/5,
.vc_col-xs-3\/5,
.vc_col-xs-4\/5,
.vc_col-xs-5\/5 {
  float: left
}

.vc_col-xs-5\/5 {
  width: 100%
}

.vc_col-xs-4\/5 {
  width: 80%
}

.vc_col-xs-3\/5 {
  width: 60%
}

.vc_col-xs-2\/5 {
  width: 40%
}

.vc_col-xs-1\/5 {
  width: 20%
}

.vc_col-xs-pull-5\/5 {
  right: 100%
}

.vc_col-xs-pull-4\/5 {
  right: 80%
}

.vc_col-xs-pull-3\/5 {
  right: 60%
}

.vc_col-xs-pull-2\/5 {
  right: 40%
}

.vc_col-xs-pull-1\/5 {
  right: 20%
}

.vc_col-xs-pull-0\/5 {
  right: auto
}

.vc_col-xs-push-5\/5 {
  left: 100%
}

.vc_col-xs-push-4\/5 {
  left: 80%
}

.vc_col-xs-push-3\/5 {
  left: 60%
}

.vc_col-xs-push-2\/5 {
  left: 40%
}

.vc_col-xs-push-1\/5 {
  left: 20%
}

.vc_col-xs-push-0\/5 {
  left: auto
}

.vc_col-xs-offset-5\/5 {
  margin-left: 100%
}

.vc_col-xs-offset-4\/5 {
  margin-left: 80%
}

.vc_col-xs-offset-3\/5 {
  margin-left: 60%
}

.vc_col-xs-offset-2\/5 {
  margin-left: 40%
}

.vc_col-xs-offset-1\/5 {
  margin-left: 20%
}

.vc_col-xs-offset-0\/5 {
  margin-left: 0%
}

[dir="rtl"] .vc_rtl-columns-reverse .vc_col-xs-1\/5,
[dir="rtl"] .vc_rtl-columns-reverse .vc_col-xs-2\/5,
[dir="rtl"] .vc_rtl-columns-reverse .vc_col-xs-3\/5,
[dir="rtl"] .vc_rtl-columns-reverse .vc_col-xs-4\/5,
[dir="rtl"] .vc_rtl-columns-reverse .vc_col-xs-5\/5,
[dir="rtl"] .vc_rtl-columns-reverse .vc_non_responsive .vc_row .vc_col-sm-1\/5,
[dir="rtl"] .vc_rtl-columns-reverse .vc_non_responsive .vc_row .vc_col-sm-2\/5,
[dir="rtl"] .vc_rtl-columns-reverse .vc_non_responsive .vc_row .vc_col-sm-3\/5,
[dir="rtl"] .vc_rtl-columns-reverse .vc_non_responsive .vc_row .vc_col-sm-4\/5,
[dir="rtl"] .vc_rtl-columns-reverse .vc_non_responsive .vc_row .vc_col-sm-5\/5 {
  float: right
}

@media (min-width:768px) {
  .vc_col-sm-1,
  .vc_col-sm-2,
  .vc_col-sm-3,
  .vc_col-sm-4,
  .vc_col-sm-5,
  .vc_col-sm-6,
  .vc_col-sm-7,
  .vc_col-sm-8,
  .vc_col-sm-9,
  .vc_col-sm-10,
  .vc_col-sm-11,
  .vc_col-sm-12 {
    float: left
  }
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-1,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-2,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-3,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-4,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-5,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-6,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-7,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-8,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-9,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-10,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-11,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-12 {
    float: right
  }
  .vc_col-sm-12 {
    width: 100%
  }
  .vc_col-sm-11 {
    width: 91.66666667%
  }
  .vc_col-sm-10 {
    width: 83.33333333%
  }
  .vc_col-sm-9 {
    width: 75%
  }
  .vc_col-sm-8 {
    width: 66.66666667%
  }
  .vc_col-sm-7 {
    width: 58.33333333%
  }
  .vc_col-sm-6 {
    width: 50%
  }
  .vc_col-sm-5 {
    width: 41.66666667%
  }
  .vc_col-sm-4 {
    width: 33.33333333%
  }
  .vc_col-sm-3 {
    width: 25%
  }
  .vc_col-sm-2 {
    width: 16.66666667%
  }
  .vc_col-sm-1 {
    width: 8.33333333%
  }
  .vc_col-sm-pull-12 {
    right: 100%
  }
  .vc_col-sm-pull-11 {
    right: 91.66666667%
  }
  .vc_col-sm-pull-10 {
    right: 83.33333333%
  }
  .vc_col-sm-pull-9 {
    right: 75%
  }
  .vc_col-sm-pull-8 {
    right: 66.66666667%
  }
  .vc_col-sm-pull-7 {
    right: 58.33333333%
  }
  .vc_col-sm-pull-6 {
    right: 50%
  }
  .vc_col-sm-pull-5 {
    right: 41.66666667%
  }
  .vc_col-sm-pull-4 {
    right: 33.33333333%
  }
  .vc_col-sm-pull-3 {
    right: 25%
  }
  .vc_col-sm-pull-2 {
    right: 16.66666667%
  }
  .vc_col-sm-pull-1 {
    right: 8.33333333%
  }
  .vc_col-sm-pull-0 {
    right: auto
  }
  .vc_col-sm-push-12 {
    left: 100%
  }
  .vc_col-sm-push-11 {
    left: 91.66666667%
  }
  .vc_col-sm-push-10 {
    left: 83.33333333%
  }
  .vc_col-sm-push-9 {
    left: 75%
  }
  .vc_col-sm-push-8 {
    left: 66.66666667%
  }
  .vc_col-sm-push-7 {
    left: 58.33333333%
  }
  .vc_col-sm-push-6 {
    left: 50%
  }
  .vc_col-sm-push-5 {
    left: 41.66666667%
  }
  .vc_col-sm-push-4 {
    left: 33.33333333%
  }
  .vc_col-sm-push-3 {
    left: 25%
  }
  .vc_col-sm-push-2 {
    left: 16.66666667%
  }
  .vc_col-sm-push-1 {
    left: 8.33333333%
  }
  .vc_col-sm-push-0 {
    left: auto
  }
  .vc_col-sm-offset-12 {
    margin-left: 100%
  }
  .vc_col-sm-offset-11 {
    margin-left: 91.66666667%
  }
  .vc_col-sm-offset-10 {
    margin-left: 83.33333333%
  }
  .vc_col-sm-offset-9 {
    margin-left: 75%
  }
  .vc_col-sm-offset-8 {
    margin-left: 66.66666667%
  }
  .vc_col-sm-offset-7 {
    margin-left: 58.33333333%
  }
  .vc_col-sm-offset-6 {
    margin-left: 50%
  }
  .vc_col-sm-offset-5 {
    margin-left: 41.66666667%
  }
  .vc_col-sm-offset-4 {
    margin-left: 33.33333333%
  }
  .vc_col-sm-offset-3 {
    margin-left: 25%
  }
  .vc_col-sm-offset-2 {
    margin-left: 16.66666667%
  }
  .vc_col-sm-offset-1 {
    margin-left: 8.33333333%
  }
  .vc_col-sm-offset-0 {
    margin-left: 0%
  }
  .vc_col-sm-1\/5,
  .vc_col-sm-2\/5,
  .vc_col-sm-3\/5,
  .vc_col-sm-4\/5,
  .vc_col-sm-5\/5 {
    float: left
  }
  [dir="rtl"] .vc_rtl-columns-reverse .vc_col-sm-1\/5,
  [dir="rtl"] .vc_rtl-columns-reverse .vc_col-sm-2\/5,
  [dir="rtl"] .vc_rtl-columns-reverse .vc_col-sm-3\/5,
  [dir="rtl"] .vc_rtl-columns-reverse .vc_col-sm-4\/5,
  [dir="rtl"] .vc_rtl-columns-reverse .vc_col-sm-5\/5 {
    float: right
  }
  .vc_col-sm-5\/5 {
    width: 100%
  }
  .vc_col-sm-4\/5 {
    width: 80%
  }
  .vc_col-sm-3\/5 {
    width: 60%
  }
  .vc_col-sm-2\/5 {
    width: 40%
  }
  .vc_col-sm-1\/5 {
    width: 20%
  }
  .vc_col-sm-pull-5\/5 {
    right: 100%
  }
  .vc_col-sm-pull-4\/5 {
    right: 80%
  }
  .vc_col-sm-pull-3\/5 {
    right: 60%
  }
  .vc_col-sm-pull-2\/5 {
    right: 40%
  }
  .vc_col-sm-pull-1\/5 {
    right: 20%
  }
  .vc_col-sm-pull-0\/5 {
    right: auto
  }
  .vc_col-sm-push-5\/5 {
    left: 100%
  }
  .vc_col-sm-push-4\/5 {
    left: 80%
  }
  .vc_col-sm-push-3\/5 {
    left: 60%
  }
  .vc_col-sm-push-2\/5 {
    left: 40%
  }
  .vc_col-sm-push-1\/5 {
    left: 20%
  }
  .vc_col-sm-push-0\/5 {
    left: auto
  }
  .vc_col-sm-offset-5\/5 {
    margin-left: 100%
  }
  .vc_col-sm-offset-4\/5 {
    margin-left: 80%
  }
  .vc_col-sm-offset-3\/5 {
    margin-left: 60%
  }
  .vc_col-sm-offset-2\/5 {
    margin-left: 40%
  }
  .vc_col-sm-offset-1\/5 {
    margin-left: 20%
  }
  .vc_col-sm-offset-0\/5 {
    margin-left: 0%
  }
}

@media (min-width:992px) {
  .vc_col-md-1,
  .vc_col-md-2,
  .vc_col-md-3,
  .vc_col-md-4,
  .vc_col-md-5,
  .vc_col-md-6,
  .vc_col-md-7,
  .vc_col-md-8,
  .vc_col-md-9,
  .vc_col-md-10,
  .vc_col-md-11,
  .vc_col-md-12 {
    float: left
  }
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-md-1,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-md-2,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-md-3,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-md-4,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-md-5,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-md-6,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-md-7,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-md-8,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-md-9,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-md-10,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-md-11,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-md-12 {
    float: right
  }
  .vc_col-md-12 {
    width: 100%
  }
  .vc_col-md-11 {
    width: 91.66666667%
  }
  .vc_col-md-10 {
    width: 83.33333333%
  }
  .vc_col-md-9 {
    width: 75%
  }
  .vc_col-md-8 {
    width: 66.66666667%
  }
  .vc_col-md-7 {
    width: 58.33333333%
  }
  .vc_col-md-6 {
    width: 50%
  }
  .vc_col-md-5 {
    width: 41.66666667%
  }
  .vc_col-md-4 {
    width: 33.33333333%
  }
  .vc_col-md-3 {
    width: 25%
  }
  .vc_col-md-2 {
    width: 16.66666667%
  }
  .vc_col-md-1 {
    width: 8.33333333%
  }
  .vc_col-md-pull-12 {
    right: 100%
  }
  .vc_col-md-pull-11 {
    right: 91.66666667%
  }
  .vc_col-md-pull-10 {
    right: 83.33333333%
  }
  .vc_col-md-pull-9 {
    right: 75%
  }
  .vc_col-md-pull-8 {
    right: 66.66666667%
  }
  .vc_col-md-pull-7 {
    right: 58.33333333%
  }
  .vc_col-md-pull-6 {
    right: 50%
  }
  .vc_col-md-pull-5 {
    right: 41.66666667%
  }
  .vc_col-md-pull-4 {
    right: 33.33333333%
  }
  .vc_col-md-pull-3 {
    right: 25%
  }
  .vc_col-md-pull-2 {
    right: 16.66666667%
  }
  .vc_col-md-pull-1 {
    right: 8.33333333%
  }
  .vc_col-md-pull-0 {
    right: auto
  }
  .vc_col-md-push-12 {
    left: 100%
  }
  .vc_col-md-push-11 {
    left: 91.66666667%
  }
  .vc_col-md-push-10 {
    left: 83.33333333%
  }
  .vc_col-md-push-9 {
    left: 75%
  }
  .vc_col-md-push-8 {
    left: 66.66666667%
  }
  .vc_col-md-push-7 {
    left: 58.33333333%
  }
  .vc_col-md-push-6 {
    left: 50%
  }
  .vc_col-md-push-5 {
    left: 41.66666667%
  }
  .vc_col-md-push-4 {
    left: 33.33333333%
  }
  .vc_col-md-push-3 {
    left: 25%
  }
  .vc_col-md-push-2 {
    left: 16.66666667%
  }
  .vc_col-md-push-1 {
    left: 8.33333333%
  }
  .vc_col-md-push-0 {
    left: auto
  }
  .vc_col-md-offset-12 {
    margin-left: 100%
  }
  .vc_col-md-offset-11 {
    margin-left: 91.66666667%
  }
  .vc_col-md-offset-10 {
    margin-left: 83.33333333%
  }
  .vc_col-md-offset-9 {
    margin-left: 75%
  }
  .vc_col-md-offset-8 {
    margin-left: 66.66666667%
  }
  .vc_col-md-offset-7 {
    margin-left: 58.33333333%
  }
  .vc_col-md-offset-6 {
    margin-left: 50%
  }
  .vc_col-md-offset-5 {
    margin-left: 41.66666667%
  }
  .vc_col-md-offset-4 {
    margin-left: 33.33333333%
  }
  .vc_col-md-offset-3-5 {
    margin-left: 29.16666666%
  }
  .vc_col-md-offset-3 {
    margin-left: 25%
  }
  .vc_col-md-offset-2-5 {
    margin-left: 20.83333333%
  }
  .vc_col-md-offset-2 {
    margin-left: 16.66666667%
  }
  .vc_col-md-offset-1 {
    margin-left: 8.33333333%
  }
  .vc_col-md-offset-0 {
    margin-left: 0%
  }
  .vc_col-md-1\/5,
  .vc_col-md-2\/5,
  .vc_col-md-3\/5,
  .vc_col-md-4\/5,
  .vc_col-md-5\/5 {
    float: left
  }
  [dir="rtl"] .vc_rtl-columns-reverse .vc_col-sm-1\/5,
  [dir="rtl"] .vc_rtl-columns-reverse .vc_col-sm-2\/5,
  [dir="rtl"] .vc_rtl-columns-reverse .vc_col-sm-3\/5,
  [dir="rtl"] .vc_rtl-columns-reverse .vc_col-sm-4\/5,
  [dir="rtl"] .vc_rtl-columns-reverse .vc_col-sm-5\/5 {
    float: right
  }
  .vc_col-md-5\/5 {
    width: 100%
  }
  .vc_col-md-4\/5 {
    width: 80%
  }
  .vc_col-md-3\/5 {
    width: 60%
  }
  .vc_col-md-2\/5 {
    width: 40%
  }
  .vc_col-md-1\/5 {
    width: 20%
  }
  .vc_col-md-pull-5\/5 {
    right: 100%
  }
  .vc_col-md-pull-4\/5 {
    right: 80%
  }
  .vc_col-md-pull-3\/5 {
    right: 60%
  }
  .vc_col-md-pull-2\/5 {
    right: 40%
  }
  .vc_col-md-pull-1\/5 {
    right: 20%
  }
  .vc_col-md-pull-0\/5 {
    right: auto
  }
  .vc_col-md-push-5\/5 {
    left: 100%
  }
  .vc_col-md-push-4\/5 {
    left: 80%
  }
  .vc_col-md-push-3\/5 {
    left: 60%
  }
  .vc_col-md-push-2\/5 {
    left: 40%
  }
  .vc_col-md-push-1\/5 {
    left: 20%
  }
  .vc_col-md-push-0\/5 {
    left: auto
  }
  .vc_col-md-offset-5\/5 {
    margin-left: 100%
  }
  .vc_col-md-offset-4\/5 {
    margin-left: 80%
  }
  .vc_col-md-offset-3\/5 {
    margin-left: 60%
  }
  .vc_col-md-offset-2\/5 {
    margin-left: 40%
  }
  .vc_col-md-offset-1\/5 {
    margin-left: 20%
  }
  .vc_col-md-offset-0\/5 {
    margin-left: 0%
  }
}

@media (min-width:1200px) {
  .vc_col-lg-1,
  .vc_col-lg-2,
  .vc_col-lg-3,
  .vc_col-lg-4,
  .vc_col-lg-5,
  .vc_col-lg-6,
  .vc_col-lg-7,
  .vc_col-lg-8,
  .vc_col-lg-9,
  .vc_col-lg-10,
  .vc_col-lg-11,
  .vc_col-lg-12 {
    float: left
  }
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-1,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-2,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-3,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-4,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-5,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-6,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-7,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-8,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-9,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-10,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-11,
  [dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-12 {
    float: right
  }
  .vc_col-lg-12 {
    width: 100%
  }
  .vc_col-lg-11 {
    width: 91.66666667%
  }
  .vc_col-lg-10 {
    width: 83.33333333%
  }
  .vc_col-lg-9 {
    width: 75%
  }
  .vc_col-lg-8 {
    width: 66.66666667%
  }
  .vc_col-lg-7 {
    width: 58.33333333%
  }
  .vc_col-lg-6 {
    width: 50%
  }
  .vc_col-lg-5 {
    width: 41.66666667%
  }
  .vc_col-lg-4 {
    width: 33.33333333%
  }
  .vc_col-lg-3 {
    width: 25%
  }
  .vc_col-lg-2 {
    width: 16.66666667%
  }
  .vc_col-lg-1 {
    width: 8.33333333%
  }
  .vc_col-lg-pull-12 {
    right: 100%
  }
  .vc_col-lg-pull-11 {
    right: 91.66666667%
  }
  .vc_col-lg-pull-10 {
    right: 83.33333333%
  }
  .vc_col-lg-pull-9 {
    right: 75%
  }
  .vc_col-lg-pull-8 {
    right: 66.66666667%
  }
  .vc_col-lg-pull-7 {
    right: 58.33333333%
  }
  .vc_col-lg-pull-6 {
    right: 50%
  }
  .vc_col-lg-pull-5 {
    right: 41.66666667%
  }
  .vc_col-lg-pull-4 {
    right: 33.33333333%
  }
  .vc_col-lg-pull-3 {
    right: 25%
  }
  .vc_col-lg-pull-2 {
    right: 16.66666667%
  }
  .vc_col-lg-pull-1 {
    right: 8.33333333%
  }
  .vc_col-lg-pull-0 {
    right: auto
  }
  .vc_col-lg-push-12 {
    left: 100%
  }
  .vc_col-lg-push-11 {
    left: 91.66666667%
  }
  .vc_col-lg-push-10 {
    left: 83.33333333%
  }
  .vc_col-lg-push-9 {
    left: 75%
  }
  .vc_col-lg-push-8 {
    left: 66.66666667%
  }
  .vc_col-lg-push-7 {
    left: 58.33333333%
  }
  .vc_col-lg-push-6 {
    left: 50%
  }
  .vc_col-lg-push-5 {
    left: 41.66666667%
  }
  .vc_col-lg-push-4 {
    left: 33.33333333%
  }
  .vc_col-lg-push-3 {
    left: 25%
  }
  .vc_col-lg-push-2 {
    left: 16.66666667%
  }
  .vc_col-lg-push-1 {
    left: 8.33333333%
  }
  .vc_col-lg-push-0 {
    left: auto
  }
  .vc_col-lg-offset-12 {
    margin-left: 100%
  }
  .vc_col-lg-offset-11 {
    margin-left: 91.66666667%
  }
  .vc_col-lg-offset-10 {
    margin-left: 83.33333333%
  }
  .vc_col-lg-offset-9 {
    margin-left: 75%
  }
  .vc_col-lg-offset-8 {
    margin-left: 66.66666667%
  }
  .vc_col-lg-offset-7 {
    margin-left: 58.33333333%
  }
  .vc_col-lg-offset-6 {
    margin-left: 50%
  }
  .vc_col-lg-offset-5 {
    margin-left: 41.66666667%
  }
  .vc_col-lg-offset-4 {
    margin-left: 33.33333333%
  }
  .vc_col-lg-offset-3 {
    margin-left: 25%
  }
  .vc_col-lg-offset-2 {
    margin-left: 16.66666667%
  }
  .vc_col-lg-offset-1-5 {
    margin-left: 12.5%
  }
  .vc_col-lg-offset-1 {
    margin-left: 8.33333333%
  }
  .vc_col-lg-offset-0-5 {
    margin-left: 4.16666666%
  }
  .vc_col-lg-offset-0 {
    margin-left: 0%
  }
  .vc_col-lg-1\/5,
  .vc_col-lg-2\/5,
  .vc_col-lg-3\/5,
  .vc_col-lg-4\/5,
  .vc_col-lg-5\/5 {
    float: left
  }
  [dir="rtl"] .vc_rtl-columns-reverse .vc_col-sm-1\/5,
  [dir="rtl"] .vc_rtl-columns-reverse .vc_col-sm-2\/5,
  [dir="rtl"] .vc_rtl-columns-reverse .vc_col-sm-3\/5,
  [dir="rtl"] .vc_rtl-columns-reverse .vc_col-sm-4\/5,
  [dir="rtl"] .vc_rtl-columns-reverse .vc_col-sm-5\/5 {
    float: right
  }
  .vc_col-lg-5\/5 {
    width: 100%
  }
  .vc_col-lg-4\/5 {
    width: 80%
  }
  .vc_col-lg-3\/5 {
    width: 60%
  }
  .vc_col-lg-2\/5 {
    width: 40%
  }
  .vc_col-lg-1\/5 {
    width: 20%
  }
  .vc_col-lg-pull-5\/5 {
    right: 100%
  }
  .vc_col-lg-pull-4\/5 {
    right: 80%
  }
  .vc_col-lg-pull-3\/5 {
    right: 60%
  }
  .vc_col-lg-pull-2\/5 {
    right: 40%
  }
  .vc_col-lg-pull-1\/5 {
    right: 20%
  }
  .vc_col-lg-pull-0\/5 {
    right: auto
  }
  .vc_col-lg-push-5\/5 {
    left: 100%
  }
  .vc_col-lg-push-4\/5 {
    left: 80%
  }
  .vc_col-lg-push-3\/5 {
    left: 60%
  }
  .vc_col-lg-push-2\/5 {
    left: 40%
  }
  .vc_col-lg-push-1\/5 {
    left: 20%
  }
  .vc_col-lg-push-0\/5 {
    left: auto
  }
  .vc_col-lg-offset-5\/5 {
    margin-left: 100%
  }
  .vc_col-lg-offset-4\/5 {
    margin-left: 80%
  }
  .vc_col-lg-offset-3\/5 {
    margin-left: 60%
  }
  .vc_col-lg-offset-2\/5 {
    margin-left: 40%
  }
  .vc_col-lg-offset-1\/5 {
    margin-left: 20%
  }
  .vc_col-lg-offset-0\/5 {
    margin-left: 0%
  }
}

.vc_pull-right {
  float: right!important
}

.vc_pull-left {
  float: left!important
}

.vc_clearfix:before,
.vc_clearfix:after {
  content: " ";
  display: table
}

.vc_clearfix:after {
  clear: both
}

.vc_clearfix:before,
.vc_clearfix:after {
  content: " ";
  display: table
}

.vc_clearfix:after {
  clear: both
}

.vc_el-clearfix {
  clear: both
}

@media (max-width:767px) {
  .vc_el-clearfix-xs {
    clear: both
  }
}

@media (min-width:768px) and (max-width:991px) {
  .vc_el-clearfix-sm {
    clear: both
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .vc_el-clearfix-md {
    clear: both
  }
}

@media (min-width:1200px) {
  .vc_el-clearfix-lg {
    clear: both
  }
}

.vc_visible {
  display: block
}

@font-face {
  font-display: swap;
  font-family: 'vcpb-plugin-icons';
  src: url(//z9d7c4u6.rocketcdn.me/wp-content/plugins/js_composer/assets/fonts/vc_icons_v2/fonts/vcpb-plugin-icons.eot?f6ud62);
  src: url('//z9d7c4u6.rocketcdn.me/wp-content/plugins/js_composer/assets/fonts/vc_icons_v2/fonts/vcpb-plugin-icons.eot?f6ud62#iefix') format('embedded-opentype'), url(//z9d7c4u6.rocketcdn.me/wp-content/plugins/js_composer/assets/fonts/vc_icons_v2/fonts/vcpb-plugin-icons.ttf?f6ud62) format('truetype'), url(//z9d7c4u6.rocketcdn.me/wp-content/plugins/js_composer/assets/fonts/vc_icons_v2/fonts/vcpb-plugin-icons.woff?f6ud62) format('woff'), url('//z9d7c4u6.rocketcdn.me/wp-content/plugins/js_composer/assets/fonts/vc_icons_v2/fonts/vcpb-plugin-icons.svg?f6ud62#vcpb-plugin-icons') format('svg');
  font-weight: 400;
  font-style: normal
}

.vc-composer-icon {
  font-family: 'vcpb-plugin-icons'!important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.vc-c-icon-minimize:before {
  content: "\e91c"
}

.vc-c-icon-close:before {
  content: "\e5cd"
}

.vc-c-icon-1-6_4-6_1-6:before {
  content: "\e90e"
}

.vc-c-icon-add_template:before {
  content: "\e903"
}

.vc-c-icon-arrow_back:before {
  content: "\e5c4"
}

.vc-c-icon-arrow_drop_down:before {
  content: "\e5c5"
}

.vc-c-icon-arrow_drop_up:before {
  content: "\e5c7"
}

.vc-c-icon-arrow_forward:before {
  content: "\e5c8"
}

.vc-c-icon-check:before {
  content: "\e5ca"
}

.vc-c-icon-arrow_upward:before {
  content: "\e5d8"
}

.vc-c-icon-arrow_downward:before {
  content: "\e5db"
}

.vc-c-icon-sync:before {
  content: "\e627"
}

.vc-c-icon-search:before {
  content: "\e8b6"
}

.vc-c-icon-1-1:before {
  content: "\e900"
}

.vc-c-icon-1-2_1-2:before {
  content: "\e901"
}

.vc-c-icon-1-3_1-3_1-3:before {
  content: "\e902"
}

.vc-c-icon-1-4_1-2_1-4:before {
  content: "\e904"
}

.vc-c-icon-1-4_1-4_1-4_1-4:before {
  content: "\e905"
}

.vc-c-icon-1-4_3-4:before {
  content: "\e906"
}

.vc-c-icon-1-6_1-6_1-6_1-2:before {
  content: "\e907"
}

.vc-c-icon-1-6_1-6_1-6_1-6_1-6_1-6:before {
  content: "\e908"
}

.vc-c-icon-l_15_15_15_15_15:before {
  content: "\e909"
}

.vc-c-icon-1-6_2-3_1-6:before {
  content: "\e90a"
}

.vc-c-icon-2-3_1-3:before {
  content: "\e90b"
}

.vc-c-icon-5-6_1-6:before {
  content: "\e90c"
}

.vc-c-icon-add_element:before {
  content: "\e90d"
}

.vc-c-icon-add:before {
  content: "\e90f"
}

.vc-c-icon-cog:before {
  content: "\e910"
}

.vc-c-icon-content_copy:before {
  content: "\e911"
}

.vc-c-icon-delete_empty:before {
  content: "\e912"
}

.vc-c-icon-dragndrop:before {
  content: "\e913"
}

.vc-c-icon-fullscreen_exit:before {
  content: "\e914"
}

.vc-c-icon-fullscreen:before {
  content: "\e915"
}

.vc-c-icon-arrow_drop_right:before {
  content: "\e916"
}

.vc-c-icon-layout_default:before {
  content: "\e917"
}

.vc-c-icon-layout_landscape-smartphones:before {
  content: "\e918"
}

.vc-c-icon-layout_landscape-tablets:before {
  content: "\e919"
}

.vc-c-icon-layout_portrait-smartphones:before {
  content: "\e91a"
}

.vc-c-icon-layout_portrait-tablets:before {
  content: "\e91b"
}

.vc-c-icon-mode_edit:before {
  content: "\e91d"
}

.vc-c-icon-row_default_fe:before {
  content: "\e91e"
}

.vc-c-icon-text-block:before {
  content: "\e91f"
}

.wpb_alert p:last-child,
#content .wpb_alert p:last-child,
.wpb_text_column p:last-child,
.wpb_text_column *:last-child,
#content .wpb_text_column p:last-child,
#content .wpb_text_column *:last-child {
  margin-bottom: 0
}

.wpb_content_element,
ul.wpb_thumbnails-fluid>li,
.wpb_button {
  margin-bottom: 35px
}

.fb_like,
.twitter-share-button,
.entry-content .twitter-share-button,
.wpb_googleplus,
.wpb_pinterest,
.wpb_tab .wpb_content_element,
.wpb_accordion .wpb_content_element {
  margin-bottom: 21.73913043px
}

.vc_parallax {
  position: relative;
  overflow: hidden
}

.vc_parallax>* {
  position: relative;
  z-index: 1
}

.vc_parallax .vc_parallax-inner {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-attachment: scroll;
  background-color: transparent;
  background-image: inherit;
  background-size: cover;
  z-index: 0;
  background-position: 50% 0%
}

.vc_parallax-inner iframe {
  max-width: 1000%
}

.vc_video-bg-container {
  position: relative
}

.vc_video-bg {
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0
}

.vc_video-bg iframe {
  max-width: 1000%
}

.vc_row.vc_row-no-padding .vc_column-inner {
  padding-left: 0;
  padding-right: 0
}

.vc_row[data-vc-full-width] {
  -webkit-transition: opacity .5s ease;
  -o-transition: opacity .5s ease;
  transition: opacity .5s ease;
  overflow: hidden
}

.vc_row[data-vc-full-width].vc_hidden {
  opacity: 0
}

.vc_row-no-padding .vc_inner {
  margin-left: 0;
  margin-right: 0
}

.vc_row.vc_row-o-full-height {
  min-height: 100vh
}

.vc_row.vc_row-flex {
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.vc_row.vc_row-flex>.vc_column_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex
}

.vc_row.vc_row-flex>.vc_column_container>.vc_column-inner {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 1
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
  .vc_row.vc_row-flex>.vc_column_container>.vc_column-inner>* {
    min-height: 1em
  }
}

.vc_row.vc_row-flex::before,
.vc_row.vc_row-flex::after {
  display: none
}

.vc_row.vc_row-o-columns-stretch {
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch
}

.vc_row.vc_row-o-columns-top {
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start
}

.vc_row.vc_row-o-columns-bottom {
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end
}

.vc_row.vc_row-o-columns-middle {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center
}

.vc_row.vc_row-o-columns-top::after,
.vc_row.vc_row-o-columns-bottom::after,
.vc_row.vc_row-o-columns-middle::after {
  content: '';
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  display: block
}

.vc_row.vc_row-o-equal-height>.vc_column_container {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch
}

.vc_row.vc_row-o-content-top>.vc_column_container>.vc_column-inner {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.vc_row.vc_row-o-content-top:not(.vc_row-o-equal-height)>.vc_column_container {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start
}

.vc_row.vc_row-o-content-bottom>.vc_column_container>.vc_column-inner {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end
}

.vc_row.vc_row-o-content-bottom:not(.vc_row-o-equal-height)>.vc_column_container {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end
}

.vc_row.vc_row-o-content-middle>.vc_column_container>.vc_column-inner {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center
}

.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height)>.vc_column_container {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center
}

.vc_column-inner::before,
.vc_column-inner::after {
  content: " ";
  display: table
}

.vc_column-inner::after {
  clear: both
}

.vc_ie-flexbox-fixer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column
}

.vc_ie-flexbox-fixer>.vc_row {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto
}

.vc_row.vc_column-gap-1 {
  margin-left: -15.5px;
  margin-right: -15.5px
}

.vc_row.vc_column-gap-1>.vc_column_container {
  padding: .5px
}

.vc_row.vc_column-gap-2 {
  margin-left: -16px;
  margin-right: -16px
}

.vc_row.vc_column-gap-2>.vc_column_container {
  padding: 1px
}

.vc_row.vc_column-gap-3 {
  margin-left: -16.5px;
  margin-right: -16.5px
}

.vc_row.vc_column-gap-3>.vc_column_container {
  padding: 1.5px
}

.vc_row.vc_column-gap-4 {
  margin-left: -17px;
  margin-right: -17px
}

.vc_row.vc_column-gap-4>.vc_column_container {
  padding: 2px
}

.vc_row.vc_column-gap-5 {
  margin-left: -17.5px;
  margin-right: -17.5px
}

.vc_row.vc_column-gap-5>.vc_column_container {
  padding: 2.5px
}

.vc_row.vc_column-gap-10 {
  margin-left: -20px;
  margin-right: -20px
}

.vc_row.vc_column-gap-10>.vc_column_container {
  padding: 5px
}

.vc_row.vc_column-gap-15 {
  margin-left: -22.5px;
  margin-right: -22.5px
}

.vc_row.vc_column-gap-15>.vc_column_container {
  padding: 7.5px
}

.vc_row.vc_column-gap-20 {
  margin-left: -25px;
  margin-right: -25px
}

.vc_row.vc_column-gap-20>.vc_column_container {
  padding: 10px
}

.vc_row.vc_column-gap-25 {
  margin-left: -27.5px;
  margin-right: -27.5px
}

.vc_row.vc_column-gap-25>.vc_column_container {
  padding: 12.5px
}

.vc_row.vc_column-gap-30 {
  margin-left: -30px;
  margin-right: -30px
}

.vc_row.vc_column-gap-30>.vc_column_container {
  padding: 15px
}

.vc_row.vc_column-gap-35 {
  margin-left: -32.5px;
  margin-right: -32.5px
}

.vc_row.vc_column-gap-35>.vc_column_container {
  padding: 17.5px
}

.vc_column_container {
  padding-left: 0;
  padding-right: 0
}

.vc_column_container>.vc_column-inner {
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%
}

.vc_row-has-fill>.vc_column_container>.vc_column-inner,
.vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner,
.vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner,
.vc_col-has-fill>.vc_column-inner {
  padding-top: 35px
}

.vc_section {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: -15px;
  margin-right: -15px
}

.vc_section[data-vc-full-width] {
  -webkit-transition: opacity .5s ease;
  -o-transition: opacity .5s ease;
  transition: opacity .5s ease;
  overflow: hidden
}

.vc_section[data-vc-full-width].vc_hidden {
  opacity: 0
}

.vc_section[data-vc-full-width]>.vc_row {
  margin-left: 0;
  margin-right: 0
}

.vc_section[data-vc-stretch-content] {
  padding-left: 0;
  padding-right: 0
}

.vc_section.vc_row-o-full-height {
  min-height: 100vh
}

.vc_section.vc_section-flex {
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap
}

.vc_section.vc_section-flex .vc_vc_row {
  width: 100%
}

.vc_section.vc_section-flex::before,
.vc_section.vc_section-flex::after {
  display: none
}

.vc_section.vc_section-o-content-top {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.vc_section.vc_section-o-content-bottom {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}

.vc_section.vc_section-o-content-middle {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.vc_section.vc_section-o-content-top::after,
.vc_section.vc_section-o-content-bottom::after,
.vc_section.vc_section-o-content-middle::after {
  content: '';
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  display: block
}

.vc_section.vc_section-has-fill,
.vc_section.vc_section-has-fill+.vc_section,
.vc_section.vc_section-has-fill+.vc_row-full-width+.vc_section {
  padding-top: 35px
}

.vc_row.vc_column-gap-1>.vc_vc_column>.vc_column_container,
.vc_row.vc_column-gap-1>.vc_vc_column_inner>.vc_column_container {
  padding-left: .5px;
  padding-right: .5px
}

.vc_row.vc_column-gap-2>.vc_vc_column>.vc_column_container,
.vc_row.vc_column-gap-2>.vc_vc_column_inner>.vc_column_container {
  padding-left: 1px;
  padding-right: 1px
}

.vc_row.vc_column-gap-3>.vc_vc_column>.vc_column_container,
.vc_row.vc_column-gap-3>.vc_vc_column_inner>.vc_column_container {
  padding-left: 1.5px;
  padding-right: 1.5px
}

.vc_row.vc_column-gap-4>.vc_vc_column>.vc_column_container,
.vc_row.vc_column-gap-4>.vc_vc_column_inner>.vc_column_container {
  padding-left: 2px;
  padding-right: 2px
}

.vc_row.vc_column-gap-5>.vc_vc_column>.vc_column_container,
.vc_row.vc_column-gap-5>.vc_vc_column_inner>.vc_column_container {
  padding-left: 2.5px;
  padding-right: 2.5px
}

.vc_row.vc_column-gap-10>.vc_vc_column>.vc_column_container,
.vc_row.vc_column-gap-10>.vc_vc_column_inner>.vc_column_container {
  padding-left: 5px;
  padding-right: 5px
}

.vc_row.vc_column-gap-15>.vc_vc_column>.vc_column_container,
.vc_row.vc_column-gap-15>.vc_vc_column_inner>.vc_column_container {
  padding-left: 7.5px;
  padding-right: 7.5px
}

.vc_row.vc_column-gap-20>.vc_vc_column>.vc_column_container,
.vc_row.vc_column-gap-20>.vc_vc_column_inner>.vc_column_container {
  padding-left: 10px;
  padding-right: 10px
}

.vc_row.vc_column-gap-25>.vc_vc_column>.vc_column_container,
.vc_row.vc_column-gap-25>.vc_vc_column_inner>.vc_column_container {
  padding-left: 12.5px;
  padding-right: 12.5px
}

.vc_row.vc_column-gap-30>.vc_vc_column>.vc_column_container,
.vc_row.vc_column-gap-30>.vc_vc_column_inner>.vc_column_container {
  padding-left: 15px;
  padding-right: 15px
}

.vc_row.vc_column-gap-35>.vc_vc_column>.vc_column_container,
.vc_row.vc_column-gap-35>.vc_vc_column_inner>.vc_column_container {
  padding-left: 17.5px;
  padding-right: 17.5px
}

.vc_vc_column,
.vc_vc_column_inner {
  padding-left: 0;
  padding-right: 0
}

.vc_row.vc_row-flex>.vc_vc_column,
.vc_row.vc_row-flex>.vc_vc_column_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex
}

.vc_row.vc_row-flex>.vc_vc_column>.vc_column_container,
.vc_row.vc_row-flex>.vc_vc_column_inner>.vc_column_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%
}

.vc_row.vc_row-flex>.vc_vc_column>.vc_column_container>.vc_column-inner,
.vc_row.vc_row-flex>.vc_vc_column_inner>.vc_column_container>.vc_column-inner {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column
}

.vc_row.vc_row-o-equal-height>.vc_column_container {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch
}

.vc_row.vc_row-o-content-top>.vc_vc_column>.vc_column_container>.vc_column-inner,
.vc_row.vc_row-o-content-top>.vc_vc_column_inner>.vc_column_container>.vc_column-inner {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.vc_row.vc_row-o-content-top:not(.vc_row-o-equal-height)>.vc_vc_column>.vc_column_container,
.vc_row.vc_row-o-content-top:not(.vc_row-o-equal-height)>.vc_vc_column_inner>.vc_column_container {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start
}

.vc_row.vc_row-o-content-bottom>.vc_vc_column>.vc_column_container>.vc_column-inner,
.vc_row.vc_row-o-content-bottom>.vc_vc_column_inner>.vc_column_container>.vc_column-inner {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end
}

.vc_row.vc_row-o-content-bottom:not(.vc_row-o-equal-height)>.vc_vc_column>.vc_column_container,
.vc_row.vc_row-o-content-bottom:not(.vc_row-o-equal-height)>.vc_vc_column_inner>.vc_column_container {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end
}

.vc_row.vc_row-o-content-middle>.vc_vc_column>.vc_column_container>.vc_column-inner,
.vc_row.vc_row-o-content-middle>.vc_vc_column_inner>.vc_column_container>.vc_column-inner {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center
}

.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height)>.vc_vc_column>.vc_column_container,
.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height)>.vc_vc_column_inner>.vc_column_container {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center
}

.vc_empty-element>.vc_column-inner {
  min-height: 100px
}

.vc_row-has-fill>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner,
.vc_row-has-fill>.vc_vc_column_inner>.vc_column_container>.vc_column-inner,
.vc_row-has-fill+.vc_vc_row>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner,
.vc_row-has-fill+.vc_vc_row_inner>.vc_row>.vc_vc_column_inner>.vc_column_container>.vc_column-inner {
  padding-top: 35px
}

.vc_custom_heading a,
.vc_custom_heading a:hover,
.vc_custom_heading a:focus,
.vc_custom_heading a:visited {
  border: none;
  text-decoration: inherit;
  color: inherit
}

.vc_custom_heading a {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  opacity: 1
}

.vc_custom_heading a:hover {
  opacity: .85
}

.wpb_video_widget.vc_video-el-width-10 .wpb_wrapper {
  width: 10%
}

.wpb_video_widget.vc_video-el-width-20 .wpb_wrapper {
  width: 20%
}

.wpb_video_widget.vc_video-el-width-30 .wpb_wrapper {
  width: 30%
}

.wpb_video_widget.vc_video-el-width-40 .wpb_wrapper {
  width: 40%
}

.wpb_video_widget.vc_video-el-width-50 .wpb_wrapper {
  width: 50%
}

.wpb_video_widget.vc_video-el-width-60 .wpb_wrapper {
  width: 60%
}

.wpb_video_widget.vc_video-el-width-70 .wpb_wrapper {
  width: 70%
}

.wpb_video_widget.vc_video-el-width-80 .wpb_wrapper {
  width: 80%
}

.wpb_video_widget.vc_video-el-width-90 .wpb_wrapper {
  width: 90%
}

.wpb_video_widget.vc_video-el-width-100 .wpb_wrapper {
  width: 100%
}

.wpb_video_widget .wpb_video_wrapper {
  padding-top: 56.25%;
  position: relative;
  width: 100%
}

.wpb_video_widget .wpb_video_wrapper>div {
  padding-top: 0!important;
  position: static
}

.wpb_video_widget.vc_video-aspect-ratio-169 .wpb_video_wrapper {
  padding-top: 56.25%
}

.wpb_video_widget.vc_video-aspect-ratio-43 .wpb_video_wrapper {
  padding-top: 75%
}

.wpb_video_widget.vc_video-aspect-ratio-235 .wpb_video_wrapper {
  padding-top: 42.55319149%
}

.wpb_video_widget.vc_video-aspect-ratio-916 .wpb_video_wrapper {
  padding-top: 177.77777778%
}

.wpb_video_widget.vc_video-aspect-ratio-34 .wpb_video_wrapper {
  padding-top: 133.33333333%
}

.wpb_video_widget.vc_video-aspect-ratio-1235 .wpb_video_wrapper {
  padding-top: 235%
}

.wpb_video_widget.vc_video-align-left .wpb_wrapper {
  float: left
}

.wpb_video_widget.vc_video-align-center .wpb_wrapper {
  margin: 0 auto
}

.wpb_video_widget.vc_video-align-right .wpb_wrapper {
  float: right
}

.wpb_video_widget .wpb_wrapper {
  position: relative
}

.wpb_video_widget .wpb_wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  margin: 0;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

.wpb_video_wrapper .fluid-width-video-wrapper {
  padding-top: 0!important;
  position: static
}

.vc_progress_bar .vc_single_bar {
  background: #f7f7f7;
  position: relative;
  margin-bottom: 11.66666667px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .1) inset;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .1) inset;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px
}

.vc_progress_bar .vc_single_bar:last-child {
  margin-bottom: 0
}

.vc_progress_bar .vc_single_bar .vc_label {
  display: block;
  padding: .5em 1em;
  position: relative;
  z-index: 1
}

.vc_progress_bar .vc_single_bar .vc_bar {
  display: block;
  position: absolute;
  height: 100%;
  background-color: #e0e0e0;
  width: 0%;
  top: 0;
  left: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  transition: width 1s linear;
  -moz-transition: width 1s linear;
  -webkit-transition: width 1s linear;
  -o-transition: width 1s linear
}

.vc_progress_bar .vc_single_bar .vc_bar.striped {
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255, 255, 255, .15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .15)), color-stop(.75, rgba(255, 255, 255, .15)), color-stop(.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
  -moz-background-size: 40px 40px;
  -o-background-size: 40px 40px;
  background-size: 40px 40px
}

.vc_progress_bar .vc_single_bar .vc_bar.animated {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -moz-animation: progress-bar-stripes 2s linear infinite;
  -ms-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite
}

.vc_progress_bar.vc_progress-bar-color-bar_blue .vc_single_bar .vc_bar {
  background-color: #0074CC
}

.vc_progress_bar.vc_progress-bar-color-bar_blue .vc_single_bar .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_blue .vc_bar {
  background-color: #0074CC
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_blue .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-bar_turquoise .vc_single_bar .vc_bar {
  background-color: #49afcd
}

.vc_progress_bar.vc_progress-bar-color-bar_turquoise .vc_single_bar .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_turquoise .vc_bar {
  background-color: #49afcd
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_turquoise .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-bar_green .vc_single_bar .vc_bar {
  background-color: #5bb75b
}

.vc_progress_bar.vc_progress-bar-color-bar_green .vc_single_bar .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_green .vc_bar {
  background-color: #5bb75b
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_green .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-bar_orange .vc_single_bar .vc_bar {
  background-color: #faa732
}

.vc_progress_bar.vc_progress-bar-color-bar_orange .vc_single_bar .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_orange .vc_bar {
  background-color: #faa732
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_orange .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-bar_red .vc_single_bar .vc_bar {
  background-color: #da4f49
}

.vc_progress_bar.vc_progress-bar-color-bar_red .vc_single_bar .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_red .vc_bar {
  background-color: #da4f49
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_red .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-bar_black .vc_single_bar .vc_bar {
  background-color: #414141
}

.vc_progress_bar.vc_progress-bar-color-bar_black .vc_single_bar .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_black .vc_bar {
  background-color: #414141
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_black .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-blue .vc_single_bar .vc_bar {
  background-color: #5472D2
}

.vc_progress_bar.vc_progress-bar-color-blue .vc_single_bar .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-blue .vc_bar {
  background-color: #5472D2
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-blue .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-turquoise .vc_single_bar .vc_bar {
  background-color: #00C1CF
}

.vc_progress_bar.vc_progress-bar-color-turquoise .vc_single_bar .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-turquoise .vc_bar {
  background-color: #00C1CF
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-turquoise .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-pink .vc_single_bar .vc_bar {
  background-color: #FE6C61
}

.vc_progress_bar.vc_progress-bar-color-pink .vc_single_bar .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-pink .vc_bar {
  background-color: #FE6C61
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-pink .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-violet .vc_single_bar .vc_bar {
  background-color: #8D6DC4
}

.vc_progress_bar.vc_progress-bar-color-violet .vc_single_bar .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-violet .vc_bar {
  background-color: #8D6DC4
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-violet .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-peacoc .vc_single_bar .vc_bar {
  background-color: #4CADC9
}

.vc_progress_bar.vc_progress-bar-color-peacoc .vc_single_bar .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-peacoc .vc_bar {
  background-color: #4CADC9
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-peacoc .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-chino .vc_single_bar .vc_bar {
  background-color: #CEC2AB
}

.vc_progress_bar.vc_progress-bar-color-chino .vc_single_bar .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-chino .vc_bar {
  background-color: #CEC2AB
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-chino .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-mulled-wine .vc_single_bar .vc_bar {
  background-color: #50485B
}

.vc_progress_bar.vc_progress-bar-color-mulled-wine .vc_single_bar .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-mulled-wine .vc_bar {
  background-color: #50485B
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-mulled-wine .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-vista_blue .vc_single_bar .vc_bar {
  background-color: #75D69C
}

.vc_progress_bar.vc_progress-bar-color-vista_blue .vc_single_bar .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-vista_blue .vc_bar {
  background-color: #75D69C
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-vista_blue .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-vista-blue .vc_single_bar .vc_bar {
  background-color: #75D69C
}

.vc_progress_bar.vc_progress-bar-color-vista-blue .vc_single_bar .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-vista-blue .vc_bar {
  background-color: #75D69C
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-vista-blue .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-black .vc_single_bar .vc_bar {
  background-color: #2A2A2A
}

.vc_progress_bar.vc_progress-bar-color-black .vc_single_bar .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-black .vc_bar {
  background-color: #2A2A2A
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-black .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-grey .vc_single_bar .vc_bar {
  background-color: #EBEBEB
}

.vc_progress_bar.vc_progress-bar-color-grey .vc_single_bar .vc_label {
  color: #666;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-grey .vc_bar {
  background-color: #EBEBEB
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-grey .vc_label {
  color: #666;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-orange .vc_single_bar .vc_bar {
  background-color: #F7BE68
}

.vc_progress_bar.vc_progress-bar-color-orange .vc_single_bar .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-orange .vc_bar {
  background-color: #F7BE68
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-orange .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-sky .vc_single_bar .vc_bar {
  background-color: #5AA1E3
}

.vc_progress_bar.vc_progress-bar-color-sky .vc_single_bar .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-sky .vc_bar {
  background-color: #5AA1E3
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-sky .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-green .vc_single_bar .vc_bar {
  background-color: #6DAB3C
}

.vc_progress_bar.vc_progress-bar-color-green .vc_single_bar .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-green .vc_bar {
  background-color: #6DAB3C
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-green .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-juicy-pink .vc_single_bar .vc_bar {
  background-color: #F4524D
}

.vc_progress_bar.vc_progress-bar-color-juicy-pink .vc_single_bar .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-juicy-pink .vc_bar {
  background-color: #F4524D
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-juicy-pink .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-sandy-brown .vc_single_bar .vc_bar {
  background-color: #F79468
}

.vc_progress_bar.vc_progress-bar-color-sandy-brown .vc_single_bar .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-sandy-brown .vc_bar {
  background-color: #F79468
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-sandy-brown .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-purple .vc_single_bar .vc_bar {
  background-color: #B97EBB
}

.vc_progress_bar.vc_progress-bar-color-purple .vc_single_bar .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-purple .vc_bar {
  background-color: #B97EBB
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-purple .vc_label {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-white .vc_single_bar .vc_bar {
  background-color: #FFF
}

.vc_progress_bar.vc_progress-bar-color-white .vc_single_bar .vc_label {
  color: #666;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-white .vc_bar {
  background-color: #FFF
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-white .vc_label {
  color: #666;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0
  }
  to {
    background-position: 0 0
  }
}

@-moz-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0
  }
  to {
    background-position: 0 0
  }
}

@-ms-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0
  }
  to {
    background-position: 0 0
  }
}

@-o-keyframes progress-bar-stripes {
  from {
    background-position: 0 0
  }
  to {
    background-position: 40px 0
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0
  }
  to {
    background-position: 0 0
  }
}

.vc_separator {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center
}

.vc_separator h4 {
  line-height: 1em;
  font-size: 100%;
  margin: 0;
  word-wrap: break-word;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto
}

.vc_separator h4 .normal {
  font-size: 12px;
  font-weight: 400
}

.vc_separator .vc_sep_holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 10%
}

.vc_separator .vc_sep_holder .vc_sep_line {
  height: 1px;
  border-top: 1px solid #EBEBEB;
  display: block;
  position: relative;
  top: 1px;
  width: 100%
}

.vc_separator.vc_separator_align_center h4 {
  padding: 0 .8em
}

.vc_separator.vc_separator_align_left h4 {
  padding: 0 .8em 0 0
}

.vc_separator.vc_separator_align_left .vc_sep_holder.vc_sep_holder_l {
  display: none
}

.vc_separator.vc_separator_align_right h4 {
  padding: 0 0 0 .8em;
  margin: 0!important
}

.vc_separator.vc_separator_align_right .vc_sep_holder.vc_sep_holder_r {
  display: none
}

.vc_separator.vc_sep_double {
  height: 3px
}

.vc_separator.vc_sep_double .vc_sep_line {
  border-bottom: 1px solid #EBEBEB;
  border-top: 1px solid #EBEBEB;
  height: 3px
}

.vc_separator.vc_sep_dashed .vc_sep_line {
  border-top-style: dashed
}

.vc_separator.vc_sep_dotted .vc_sep_line {
  border-top-style: dotted
}

.vc_separator.vc_sep_shadow .vc_sep_line {
  border: none;
  position: relative;
  height: 20px;
  top: 0;
  overflow: hidden
}

.vc_separator.vc_sep_shadow .vc_sep_line::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: -20px;
  right: 0;
  height: 10px;
  border-radius: 100%
}

.vc_separator.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after {
  right: -100%;
  box-shadow: 10px 10px 10px 1px
}

.vc_separator.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after {
  left: -100%;
  box-shadow: -10px 10px 10px 1px
}

.vc_separator.vc_separator_no_text:not(.vc_sep_shadow) .vc_sep_holder_l {
  width: 100%
}

.vc_separator.vc_separator_no_text:not(.vc_sep_shadow) .vc_sep_holder_r {
  display: none
}

.vc_separator .vc_icon_element {
  margin-bottom: 0
}

.vc_separator .vc_icon_element:not(.vc_icon_element-have-style)+h4 {
  padding-left: 0
}

.vc_separator .vc_icon_element:not(.vc_icon_element-have-style) .vc_icon_element-size-xl {
  margin-left: .8em;
  margin-right: .8em
}

.vc_separator.vc_separator-has-text.vc_separator_align_center .vc_icon_element.vc_icon_element-have-style,
.vc_separator.vc_separator-has-text.vc_separator_align_right .vc_icon_element.vc_icon_element-have-style {
  margin-left: .8em
}

.vc_separator.vc_separator_align_left .vc_icon_element.vc_icon_element-have-style+h4 {
  padding-left: .8em
}

.vc_separator.vc_sep_border_width_1 .vc_sep_holder .vc_sep_line {
  border-top-width: 1px
}

.vc_separator.vc_sep_border_width_1.vc_sep_double .vc_sep_holder .vc_sep_line {
  border-bottom-width: 1px;
  top: 0
}

.vc_separator.vc_sep_border_width_1.vc_sep_shadow .vc_sep_line {
  top: 0
}

.vc_separator.vc_sep_border_width_1.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after {
  box-shadow: 10px 10px 10px 1px
}

.vc_separator.vc_sep_border_width_1.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after {
  box-shadow: -10px 10px 10px 1px
}

.vc_separator.vc_sep_border_width_2 .vc_sep_holder .vc_sep_line {
  border-top-width: 2px
}

.vc_separator.vc_sep_border_width_2.vc_sep_double .vc_sep_holder .vc_sep_line {
  border-bottom-width: 2px;
  top: -1px
}

.vc_separator.vc_sep_border_width_2.vc_sep_shadow .vc_sep_line {
  top: -1px
}

.vc_separator.vc_sep_border_width_2.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after {
  box-shadow: 10px 10px 10px 2px
}

.vc_separator.vc_sep_border_width_2.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after {
  box-shadow: -10px 10px 10px 2px
}

.vc_separator.vc_sep_border_width_3 .vc_sep_holder .vc_sep_line {
  border-top-width: 3px
}

.vc_separator.vc_sep_border_width_3.vc_sep_double .vc_sep_holder .vc_sep_line {
  border-bottom-width: 3px;
  top: -1px
}

.vc_separator.vc_sep_border_width_3.vc_sep_shadow .vc_sep_line {
  top: -1px
}

.vc_separator.vc_sep_border_width_3.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after {
  box-shadow: 10px 10px 10px 3px
}

.vc_separator.vc_sep_border_width_3.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after {
  box-shadow: -10px 10px 10px 3px
}

.vc_separator.vc_sep_border_width_4 .vc_sep_holder .vc_sep_line {
  border-top-width: 4px
}

.vc_separator.vc_sep_border_width_4.vc_sep_double .vc_sep_holder .vc_sep_line {
  border-bottom-width: 4px;
  top: -2px
}

.vc_separator.vc_sep_border_width_4.vc_sep_shadow .vc_sep_line {
  top: -2px
}

.vc_separator.vc_sep_border_width_4.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after {
  box-shadow: 10px 10px 10px 4px
}

.vc_separator.vc_sep_border_width_4.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after {
  box-shadow: -10px 10px 10px 4px
}

.vc_separator.vc_sep_border_width_5 .vc_sep_holder .vc_sep_line {
  border-top-width: 5px
}

.vc_separator.vc_sep_border_width_5.vc_sep_double .vc_sep_holder .vc_sep_line {
  border-bottom-width: 5px;
  top: -2px
}

.vc_separator.vc_sep_border_width_5.vc_sep_shadow .vc_sep_line {
  top: -2px
}

.vc_separator.vc_sep_border_width_5.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after {
  box-shadow: 10px 10px 10px 5px
}

.vc_separator.vc_sep_border_width_5.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after {
  box-shadow: -10px 10px 10px 5px
}

.vc_separator.vc_sep_border_width_6 .vc_sep_holder .vc_sep_line {
  border-top-width: 6px
}

.vc_separator.vc_sep_border_width_6.vc_sep_double .vc_sep_holder .vc_sep_line {
  border-bottom-width: 6px;
  top: -3px
}

.vc_separator.vc_sep_border_width_6.vc_sep_shadow .vc_sep_line {
  top: -3px
}

.vc_separator.vc_sep_border_width_6.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after {
  box-shadow: 10px 10px 10px 6px
}

.vc_separator.vc_sep_border_width_6.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after {
  box-shadow: -10px 10px 10px 6px
}

.vc_separator.vc_sep_border_width_7 .vc_sep_holder .vc_sep_line {
  border-top-width: 7px
}

.vc_separator.vc_sep_border_width_7.vc_sep_double .vc_sep_holder .vc_sep_line {
  border-bottom-width: 7px;
  top: -3px
}

.vc_separator.vc_sep_border_width_7.vc_sep_shadow .vc_sep_line {
  top: -3px
}

.vc_separator.vc_sep_border_width_7.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after {
  box-shadow: 10px 10px 10px 7px
}

.vc_separator.vc_sep_border_width_7.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after {
  box-shadow: -10px 10px 10px 7px
}

.vc_separator.vc_sep_border_width_8 .vc_sep_holder .vc_sep_line {
  border-top-width: 8px
}

.vc_separator.vc_sep_border_width_8.vc_sep_double .vc_sep_holder .vc_sep_line {
  border-bottom-width: 8px;
  top: -4px
}

.vc_separator.vc_sep_border_width_8.vc_sep_shadow .vc_sep_line {
  top: -4px
}

.vc_separator.vc_sep_border_width_8.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after {
  box-shadow: 10px 10px 10px 8px
}

.vc_separator.vc_sep_border_width_8.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after {
  box-shadow: -10px 10px 10px 8px
}

.vc_separator.vc_sep_border_width_9 .vc_sep_holder .vc_sep_line {
  border-top-width: 9px
}

.vc_separator.vc_sep_border_width_9.vc_sep_double .vc_sep_holder .vc_sep_line {
  border-bottom-width: 9px;
  top: -4px
}

.vc_separator.vc_sep_border_width_9.vc_sep_shadow .vc_sep_line {
  top: -4px
}

.vc_separator.vc_sep_border_width_9.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after {
  box-shadow: 10px 10px 10px 9px
}

.vc_separator.vc_sep_border_width_9.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after {
  box-shadow: -10px 10px 10px 9px
}

.vc_separator.vc_sep_border_width_10 .vc_sep_holder .vc_sep_line {
  border-top-width: 10px
}

.vc_separator.vc_sep_border_width_10.vc_sep_double .vc_sep_holder .vc_sep_line {
  border-bottom-width: 10px;
  top: -5px
}

.vc_separator.vc_sep_border_width_10.vc_sep_shadow .vc_sep_line {
  top: -5px
}

.vc_separator.vc_sep_border_width_10.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after {
  box-shadow: 10px 10px 10px 10px
}

.vc_separator.vc_sep_border_width_10.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after {
  box-shadow: -10px 10px 10px 10px
}

.vc_separator.vc_sep_color_blue .vc_sep_line {
  border-color: #5472D2
}

.vc_separator.vc_sep_color_blue.vc_sep_shadow .vc_sep_holder {
  color: #5472D2
}

.vc_separator.vc_sep_color_turquoise .vc_sep_line {
  border-color: #00C1CF
}

.vc_separator.vc_sep_color_turquoise.vc_sep_shadow .vc_sep_holder {
  color: #00C1CF
}

.vc_separator.vc_sep_color_pink .vc_sep_line {
  border-color: #FE6C61
}

.vc_separator.vc_sep_color_pink.vc_sep_shadow .vc_sep_holder {
  color: #FE6C61
}

.vc_separator.vc_sep_color_violet .vc_sep_line {
  border-color: #8D6DC4
}

.vc_separator.vc_sep_color_violet.vc_sep_shadow .vc_sep_holder {
  color: #8D6DC4
}

.vc_separator.vc_sep_color_peacoc .vc_sep_line {
  border-color: #4CADC9
}

.vc_separator.vc_sep_color_peacoc.vc_sep_shadow .vc_sep_holder {
  color: #4CADC9
}

.vc_separator.vc_sep_color_chino .vc_sep_line {
  border-color: #CEC2AB
}

.vc_separator.vc_sep_color_chino.vc_sep_shadow .vc_sep_holder {
  color: #CEC2AB
}

.vc_separator.vc_sep_color_mulled_wine .vc_sep_line {
  border-color: #50485B
}

.vc_separator.vc_sep_color_mulled_wine.vc_sep_shadow .vc_sep_holder {
  color: #50485B
}

.vc_separator.vc_sep_color_vista_blue .vc_sep_line {
  border-color: #75D69C
}

.vc_separator.vc_sep_color_vista_blue.vc_sep_shadow .vc_sep_holder {
  color: #75D69C
}

.vc_separator.vc_sep_color_black .vc_sep_line {
  border-color: #2A2A2A
}

.vc_separator.vc_sep_color_black.vc_sep_shadow .vc_sep_holder {
  color: #2A2A2A
}

.vc_separator.vc_sep_color_grey .vc_sep_line {
  border-color: #EBEBEB
}

.vc_separator.vc_sep_color_grey.vc_sep_shadow .vc_sep_holder {
  color: #EBEBEB
}

.vc_separator.vc_sep_color_orange .vc_sep_line {
  border-color: #F7BE68
}

.vc_separator.vc_sep_color_orange.vc_sep_shadow .vc_sep_holder {
  color: #F7BE68
}

.vc_separator.vc_sep_color_sky .vc_sep_line {
  border-color: #5AA1E3
}

.vc_separator.vc_sep_color_sky.vc_sep_shadow .vc_sep_holder {
  color: #5AA1E3
}

.vc_separator.vc_sep_color_green .vc_sep_line {
  border-color: #6DAB3C
}

.vc_separator.vc_sep_color_green.vc_sep_shadow .vc_sep_holder {
  color: #6DAB3C
}

.vc_separator.vc_sep_color_juicy_pink .vc_sep_line {
  border-color: #F4524D
}

.vc_separator.vc_sep_color_juicy_pink.vc_sep_shadow .vc_sep_holder {
  color: #F4524D
}

.vc_separator.vc_sep_color_sandy_brown .vc_sep_line {
  border-color: #F79468
}

.vc_separator.vc_sep_color_sandy_brown.vc_sep_shadow .vc_sep_holder {
  color: #F79468
}

.vc_separator.vc_sep_color_purple .vc_sep_line {
  border-color: #B97EBB
}

.vc_separator.vc_sep_color_purple.vc_sep_shadow .vc_sep_holder {
  color: #B97EBB
}

.vc_separator.vc_sep_color_white .vc_sep_line {
  border-color: #FFF
}

.vc_separator.vc_sep_color_white.vc_sep_shadow .vc_sep_holder {
  color: #FFF
}

.wpb_separator,
.vc_text_separator {
  border-bottom: 1px solid #EBEBEB
}

.vc_sep_width_10 {
  width: 10%
}

.vc_sep_width_20 {
  width: 20%
}

.vc_sep_width_30 {
  width: 30%
}

.vc_sep_width_40 {
  width: 40%
}

.vc_sep_width_50 {
  width: 50%
}

.vc_sep_width_60 {
  width: 60%
}

.vc_sep_width_70 {
  width: 70%
}

.vc_sep_width_80 {
  width: 80%
}

.vc_sep_width_90 {
  width: 90%
}

.vc_sep_width_100 {
  width: 100%
}

.vc_sep_pos_align_center {
  margin-left: auto;
  margin-right: auto
}

.vc_sep_pos_align_left {
  margin-left: 0;
  margin-right: auto
}

.vc_sep_pos_align_right {
  margin-left: auto;
  margin-right: 0
}

.wpb_separator {
  clear: both;
  height: 1px
}

.vc_text_separator {
  clear: both;
  height: 1px
}

.vc_text_separator div {
  display: inline-block;
  background-color: #FFF;
  padding: 1px 1em;
  position: relative;
  top: -9px
}

.separator_align_center {
  text-align: center
}

.separator_align_left {
  text-align: left
}

.separator_align_right {
  text-align: right
}

.vc-zigzag-wrapper {
  text-align: center
}

.vc-zigzag-wrapper.vc-zigzag-align-left {
  text-align: left
}

.vc-zigzag-wrapper.vc-zigzag-align-right {
  text-align: right
}

.vc-zigzag-inner {
  display: inline-block
}

.wpb_single_image a {
  border: none;
  outline: none
}

.wpb_single_image img {
  height: auto;
  max-width: 100%;
  vertical-align: top
}

.wpb_single_image img.vc_img-placeholder {
  width: 100%
}

.wpb_single_image .vc_single_image-wrapper {
  display: inline-block;
  vertical-align: top;
  max-width: 100%
}

.wpb_single_image .vc_single_image-wrapper.vc_box_rounded,
.wpb_single_image .vc_single_image-wrapper.vc_box_rounded img {
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none
}

.wpb_single_image .vc_single_image-wrapper.vc_box_outline,
.wpb_single_image .vc_single_image-wrapper.vc_box_outline_circle {
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 6px;
  border: 1px solid #EBEBEB
}

.wpb_single_image .vc_single_image-wrapper.vc_box_outline img,
.wpb_single_image .vc_single_image-wrapper.vc_box_outline_circle img {
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #EBEBEB
}

.wpb_single_image .vc_single_image-wrapper.vc_box_border,
.wpb_single_image .vc_single_image-wrapper.vc_box_border_circle {
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 6px;
  border: none
}

.wpb_single_image .vc_single_image-wrapper.vc_box_border img,
.wpb_single_image .vc_single_image-wrapper.vc_box_border_circle img {
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none
}

.wpb_single_image .vc_single_image-wrapper.vc_box_shadow,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_circle {
  border-radius: 0;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .1);
  box-shadow: 0 0 5px rgba(0, 0, 0, .1)
}

.wpb_single_image .vc_single_image-wrapper.vc_box_shadow img,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border img,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle img,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_circle img {
  border-radius: 0;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .1);
  box-shadow: 0 0 5px rgba(0, 0, 0, .1)
}

.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle {
  padding: 6px
}

.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_3d {
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 15px
}

.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_3d img {
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none
}

.wpb_single_image .vc_single_image-wrapper.vc_box_circle,
.wpb_single_image .vc_single_image-wrapper.vc_box_outline_circle,
.wpb_single_image .vc_single_image-wrapper.vc_box_border_circle,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_circle,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle {
  border-radius: 50%;
  -webkit-box-shadow: none;
  box-shadow: none;
  overflow: hidden
}

.wpb_single_image .vc_single_image-wrapper.vc_box_circle img,
.wpb_single_image .vc_single_image-wrapper.vc_box_outline_circle img,
.wpb_single_image .vc_single_image-wrapper.vc_box_border_circle img,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_circle img,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle img {
  border-radius: 50%;
  -webkit-box-shadow: none;
  box-shadow: none;
  overflow: hidden
}

.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_circle,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .1);
  box-shadow: 0 0 5px rgba(0, 0, 0, .1)
}

.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_circle img,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle img {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .1);
  box-shadow: 0 0 5px rgba(0, 0, 0, .1)
}

.wpb_single_image.vc_align_center {
  text-align: center
}

.wpb_single_image.vc_align_right {
  text-align: right
}

.wpb_single_image.vc_align_left {
  text-align: left
}

.wpb_single_image .vc_box_shadow_3d {
  position: relative;
  z-index: 0;
  display: inline-block;
  max-width: 100%
}

.wpb_single_image .vc_box_shadow_3d:after,
.wpb_single_image .vc_box_shadow_3d:before {
  content: "";
  position: absolute;
  -webkit-box-shadow: 0 15px 10px rgba(0, 0, 0, .6);
  box-shadow: 0 15px 10px rgba(0, 0, 0, .6);
  left: 5px;
  right: 50%;
  bottom: 8px;
  height: 30%;
  z-index: -1;
  border-radius: inherit;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: skewY(-6deg);
  -ms-transform: skewY(-6deg);
  transform: skewY(-6deg)
}

.wpb_single_image .vc_box_shadow_3d:after {
  left: 50%;
  right: 5px;
  -webkit-transform: skewY(6deg);
  -ms-transform: skewY(6deg);
  transform: skewY(6deg);
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0
}

.wpb_single_image .vc_figure {
  display: inline-block;
  vertical-align: top;
  margin: 0;
  max-width: 100%
}

.wpb_single_image .vc_figure-caption {
  margin-top: .2em;
  font-size: .8em
}

.wpb_single_image .vc_box_outline.vc_box_border_blue,
.wpb_single_image .vc_box_outline_circle.vc_box_border_blue {
  border-color: #5472D2
}

.wpb_single_image .vc_box_border.vc_box_border_blue,
.wpb_single_image .vc_box_border_circle.vc_box_border_blue {
  background-color: #5472D2
}

.wpb_single_image .vc_box_outline.vc_box_border_turquoise,
.wpb_single_image .vc_box_outline_circle.vc_box_border_turquoise {
  border-color: #00C1CF
}

.wpb_single_image .vc_box_border.vc_box_border_turquoise,
.wpb_single_image .vc_box_border_circle.vc_box_border_turquoise {
  background-color: #00C1CF
}

.wpb_single_image .vc_box_outline.vc_box_border_pink,
.wpb_single_image .vc_box_outline_circle.vc_box_border_pink {
  border-color: #FE6C61
}

.wpb_single_image .vc_box_border.vc_box_border_pink,
.wpb_single_image .vc_box_border_circle.vc_box_border_pink {
  background-color: #FE6C61
}

.wpb_single_image .vc_box_outline.vc_box_border_violet,
.wpb_single_image .vc_box_outline_circle.vc_box_border_violet {
  border-color: #8D6DC4
}

.wpb_single_image .vc_box_border.vc_box_border_violet,
.wpb_single_image .vc_box_border_circle.vc_box_border_violet {
  background-color: #8D6DC4
}

.wpb_single_image .vc_box_outline.vc_box_border_peacoc,
.wpb_single_image .vc_box_outline_circle.vc_box_border_peacoc {
  border-color: #4CADC9
}

.wpb_single_image .vc_box_border.vc_box_border_peacoc,
.wpb_single_image .vc_box_border_circle.vc_box_border_peacoc {
  background-color: #4CADC9
}

.wpb_single_image .vc_box_outline.vc_box_border_chino,
.wpb_single_image .vc_box_outline_circle.vc_box_border_chino {
  border-color: #CEC2AB
}

.wpb_single_image .vc_box_border.vc_box_border_chino,
.wpb_single_image .vc_box_border_circle.vc_box_border_chino {
  background-color: #CEC2AB
}

.wpb_single_image .vc_box_outline.vc_box_border_mulled_wine,
.wpb_single_image .vc_box_outline_circle.vc_box_border_mulled_wine {
  border-color: #50485B
}

.wpb_single_image .vc_box_border.vc_box_border_mulled_wine,
.wpb_single_image .vc_box_border_circle.vc_box_border_mulled_wine {
  background-color: #50485B
}

.wpb_single_image .vc_box_outline.vc_box_border_vista_blue,
.wpb_single_image .vc_box_outline_circle.vc_box_border_vista_blue {
  border-color: #75D69C
}

.wpb_single_image .vc_box_border.vc_box_border_vista_blue,
.wpb_single_image .vc_box_border_circle.vc_box_border_vista_blue {
  background-color: #75D69C
}

.wpb_single_image .vc_box_outline.vc_box_border_black,
.wpb_single_image .vc_box_outline_circle.vc_box_border_black {
  border-color: #2A2A2A
}

.wpb_single_image .vc_box_border.vc_box_border_black,
.wpb_single_image .vc_box_border_circle.vc_box_border_black {
  background-color: #2A2A2A
}

.wpb_single_image .vc_box_outline.vc_box_border_grey,
.wpb_single_image .vc_box_outline_circle.vc_box_border_grey {
  border-color: #EBEBEB
}

.wpb_single_image .vc_box_border.vc_box_border_grey,
.wpb_single_image .vc_box_border_circle.vc_box_border_grey {
  background-color: #EBEBEB
}

.wpb_single_image .vc_box_outline.vc_box_border_orange,
.wpb_single_image .vc_box_outline_circle.vc_box_border_orange {
  border-color: #F7BE68
}

.wpb_single_image .vc_box_border.vc_box_border_orange,
.wpb_single_image .vc_box_border_circle.vc_box_border_orange {
  background-color: #F7BE68
}

.wpb_single_image .vc_box_outline.vc_box_border_sky,
.wpb_single_image .vc_box_outline_circle.vc_box_border_sky {
  border-color: #5AA1E3
}

.wpb_single_image .vc_box_border.vc_box_border_sky,
.wpb_single_image .vc_box_border_circle.vc_box_border_sky {
  background-color: #5AA1E3
}

.wpb_single_image .vc_box_outline.vc_box_border_green,
.wpb_single_image .vc_box_outline_circle.vc_box_border_green {
  border-color: #6DAB3C
}

.wpb_single_image .vc_box_border.vc_box_border_green,
.wpb_single_image .vc_box_border_circle.vc_box_border_green {
  background-color: #6DAB3C
}

.wpb_single_image .vc_box_outline.vc_box_border_juicy_pink,
.wpb_single_image .vc_box_outline_circle.vc_box_border_juicy_pink {
  border-color: #F4524D
}

.wpb_single_image .vc_box_border.vc_box_border_juicy_pink,
.wpb_single_image .vc_box_border_circle.vc_box_border_juicy_pink {
  background-color: #F4524D
}

.wpb_single_image .vc_box_outline.vc_box_border_sandy_brown,
.wpb_single_image .vc_box_outline_circle.vc_box_border_sandy_brown {
  border-color: #F79468
}

.wpb_single_image .vc_box_border.vc_box_border_sandy_brown,
.wpb_single_image .vc_box_border_circle.vc_box_border_sandy_brown {
  background-color: #F79468
}

.wpb_single_image .vc_box_outline.vc_box_border_purple,
.wpb_single_image .vc_box_outline_circle.vc_box_border_purple {
  border-color: #B97EBB
}

.wpb_single_image .vc_box_border.vc_box_border_purple,
.wpb_single_image .vc_box_border_circle.vc_box_border_purple {
  background-color: #B97EBB
}

.wpb_single_image .vc_box_outline.vc_box_border_white,
.wpb_single_image .vc_box_outline_circle.vc_box_border_white {
  border-color: #FFF
}

.wpb_single_image .vc_box_border.vc_box_border_white,
.wpb_single_image .vc_box_border_circle.vc_box_border_white {
  background-color: #FFF
}

.vc_icon_element {
  line-height: 0;
  font-size: 14px;
  margin-bottom: 35px
}

.vc_icon_element.vc_icon_element-outer {
  box-sizing: border-box;
  text-align: center
}

.vc_icon_element.vc_icon_element-outer.vc_icon_element-align-left {
  text-align: left
}

.vc_icon_element.vc_icon_element-outer.vc_icon_element-align-center {
  text-align: center
}

.vc_icon_element.vc_icon_element-outer.vc_icon_element-align-right {
  text-align: right
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner {
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  width: 4em;
  height: 4em;
  box-sizing: content-box;
  position: relative
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner .vc_icon_element-icon {
  font-size: 2.15em;
  font-style: normal;
  line-height: 1!important;
  font-size-adjust: none;
  font-stretch: normal;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  -webkit-font-language-override: normal;
  font-language-override: normal;
  -webkit-font-kerning: auto;
  font-kerning: auto;
  font-synthesis: weight style;
  font-variant: normal;
  text-rendering: auto;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner .vc_icon_element-icon:before {
  font-style: normal;
  display: inline-block;
  text-decoration: inherit;
  width: inherit;
  height: inherit;
  font-size: 1em;
  text-align: center;
  text-rendering: optimizelegibility
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner .vc_icon_element-link,
.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner .vc_gitem-link {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  box-sizing: content-box;
  border: none
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xs {
  max-width: 100%!important;
  line-height: 1.2em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xs.vc_icon_element-have-style-inner {
  width: 2.5em!important;
  height: 2.5em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xs .vc_icon_element-icon {
  font-size: 1.2em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-sm {
  max-width: 100%!important;
  line-height: 1.6em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-sm.vc_icon_element-have-style-inner {
  width: 3.15em!important;
  height: 3.15em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-sm .vc_icon_element-icon {
  font-size: 1.6em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-md {
  max-width: 100%!important;
  line-height: 2.15em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-md.vc_icon_element-have-style-inner {
  width: 4em!important;
  height: 4em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-md .vc_icon_element-icon {
  font-size: 2.15em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-lg {
  max-width: 100%!important;
  line-height: 2.85em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-lg.vc_icon_element-have-style-inner {
  width: 5em!important;
  height: 5em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-lg .vc_icon_element-icon {
  font-size: 2.85em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xl {
  max-width: 100%!important;
  line-height: 5em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xl.vc_icon_element-have-style-inner {
  width: 7.15em!important;
  height: 7.15em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xl .vc_icon_element-icon {
  font-size: 5em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded {
  border-radius: 50%
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded .vc_icon_element-link,
.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded .vc_gitem-link {
  border-radius: 50%
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-outline {
  border-radius: 50%
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-outline .vc_icon_element-link,
.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-outline .vc_gitem-link {
  border-radius: 50%
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-less {
  border-radius: 5px
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-less .vc_icon_element-link,
.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-less .vc_gitem-link {
  border-radius: 5px
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-less-outline {
  border-radius: 5px
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-less-outline .vc_icon_element-link,
.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-less-outline .vc_gitem-link {
  border-radius: 5px
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-blue .vc_icon_element-icon {
  color: #5472D2
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-turquoise .vc_icon_element-icon {
  color: #00C1CF
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-pink .vc_icon_element-icon {
  color: #FE6C61
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-violet .vc_icon_element-icon {
  color: #8D6DC4
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-peacoc .vc_icon_element-icon {
  color: #4CADC9
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-chino .vc_icon_element-icon {
  color: #CEC2AB
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-mulled_wine .vc_icon_element-icon {
  color: #50485B
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-vista_blue .vc_icon_element-icon {
  color: #75D69C
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-black .vc_icon_element-icon {
  color: #2A2A2A
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-grey .vc_icon_element-icon {
  color: #EBEBEB
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-orange .vc_icon_element-icon {
  color: #F7BE68
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-sky .vc_icon_element-icon {
  color: #5AA1E3
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-green .vc_icon_element-icon {
  color: #6DAB3C
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-juicy_pink .vc_icon_element-icon {
  color: #F4524D
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-sandy_brown .vc_icon_element-icon {
  color: #F79468
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-purple .vc_icon_element-icon {
  color: #B97EBB
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-white .vc_icon_element-icon {
  color: #FFF
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-blue.vc_icon_element-outline {
  border-color: #5472D2
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-blue.vc_icon_element-background {
  background-color: #5472D2
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-turquoise.vc_icon_element-outline {
  border-color: #00C1CF
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-turquoise.vc_icon_element-background {
  background-color: #00C1CF
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-pink.vc_icon_element-outline {
  border-color: #FE6C61
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-pink.vc_icon_element-background {
  background-color: #FE6C61
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-violet.vc_icon_element-outline {
  border-color: #8D6DC4
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-violet.vc_icon_element-background {
  background-color: #8D6DC4
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-peacoc.vc_icon_element-outline {
  border-color: #4CADC9
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-peacoc.vc_icon_element-background {
  background-color: #4CADC9
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-chino.vc_icon_element-outline {
  border-color: #CEC2AB
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-chino.vc_icon_element-background {
  background-color: #CEC2AB
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-mulled_wine.vc_icon_element-outline {
  border-color: #50485B
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-mulled_wine.vc_icon_element-background {
  background-color: #50485B
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-vista_blue.vc_icon_element-outline {
  border-color: #75D69C
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-vista_blue.vc_icon_element-background {
  background-color: #75D69C
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-black.vc_icon_element-outline {
  border-color: #2A2A2A
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-black.vc_icon_element-background {
  background-color: #2A2A2A
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-grey.vc_icon_element-outline {
  border-color: #EBEBEB
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-grey.vc_icon_element-background {
  background-color: #EBEBEB
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-orange.vc_icon_element-outline {
  border-color: #F7BE68
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-orange.vc_icon_element-background {
  background-color: #F7BE68
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-sky.vc_icon_element-outline {
  border-color: #5AA1E3
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-sky.vc_icon_element-background {
  background-color: #5AA1E3
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-green.vc_icon_element-outline {
  border-color: #6DAB3C
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-green.vc_icon_element-background {
  background-color: #6DAB3C
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-juicy_pink.vc_icon_element-outline {
  border-color: #F4524D
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-juicy_pink.vc_icon_element-background {
  background-color: #F4524D
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-sandy_brown.vc_icon_element-outline {
  border-color: #F79468
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-sandy_brown.vc_icon_element-background {
  background-color: #F79468
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-purple.vc_icon_element-outline {
  border-color: #B97EBB
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-purple.vc_icon_element-background {
  background-color: #B97EBB
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-white.vc_icon_element-outline {
  border-color: #FFF
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-white.vc_icon_element-background {
  background-color: #FFF
}

.wpb_single_image .wpb_wrapper .vc_single_image-wrapper .zoomImg {
  border-radius: 0
}

.wpb_single_image [class*='_circle'] .vc-zoom-wrapper {
  border-radius: 50%
}

.wpb_single_image [class*='_rounded'] .vc-zoom-wrapper {
  border-radius: 0
}

.wpb_animate_when_almost_visible {
  opacity: 0;
  filter: alpha(opacity=0)
}

.wpb_animate_when_almost_visible:not(.wpb_start_animation) {
  -webkit-animation: none;
  -o-animation: none;
  animation: none
}

.wpb_top-to-bottom,
.top-to-bottom {
  -webkit-animation: wpb_ttb .7s 1 cubic-bezier(.175, .885, .32, 1.275);
  -o-animation: wpb_ttb .7s 1 cubic-bezier(.175, .885, .32, 1.275);
  animation: wpb_ttb .7s 1 cubic-bezier(.175, .885, .32, 1.275)
}

.wpb_bottom-to-top,
.bottom-to-top {
  -webkit-animation: wpb_btt .7s 1 cubic-bezier(.175, .885, .32, 1.275);
  -o-animation: wpb_btt .7s 1 cubic-bezier(.175, .885, .32, 1.275);
  animation: wpb_btt .7s 1 cubic-bezier(.175, .885, .32, 1.275)
}

.wpb_left-to-right,
.left-to-right {
  -webkit-animation: wpb_ltr .7s 1 cubic-bezier(.175, .885, .32, 1.275);
  -o-animation: wpb_ltr .7s 1 cubic-bezier(.175, .885, .32, 1.275);
  animation: wpb_ltr .7s 1 cubic-bezier(.175, .885, .32, 1.275)
}

.wpb_right-to-left,
.right-to-left {
  -webkit-animation: wpb_rtl .7s 1 cubic-bezier(.175, .885, .32, 1.275);
  -o-animation: wpb_rtl .7s 1 cubic-bezier(.175, .885, .32, 1.275);
  animation: wpb_rtl .7s 1 cubic-bezier(.175, .885, .32, 1.275)
}

.wpb_appear,
.appear {
  -webkit-animation: wpb_appear .7s 1 cubic-bezier(.175, .885, .32, 1.275);
  -o-animation: wpb_appear .7s 1 cubic-bezier(.175, .885, .32, 1.275);
  animation: wpb_appear .7s 1 cubic-bezier(.175, .885, .32, 1.275);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1)
}

.wpb_start_animation {
  opacity: 1;
  filter: alpha(opacity=100)
}

@-webkit-keyframes wpb_ttb {
  0% {
    -webkit-transform: translate(0, -10%);
    opacity: 0;
    filter: alpha(opacity=0)
  }
  100% {
    -webkit-transform: translate(0, 0);
    opacity: 1;
    filter: alpha(opacity=100)
  }
}

@-moz-keyframes wpb_ttb {
  0% {
    -moz-transform: translate(0, -10%);
    opacity: 0;
    filter: alpha(opacity=0)
  }
  100% {
    -moz-transform: translate(0, 0);
    opacity: 1;
    filter: alpha(opacity=100)
  }
}

@-o-keyframes wpb_ttb {
  0% {
    -o-transform: translate(0, -10%);
    opacity: 0;
    filter: alpha(opacity=0)
  }
  100% {
    -o-transform: translate(0, 0);
    opacity: 1;
    filter: alpha(opacity=100)
  }
}

@keyframes wpb_ttb {
  0% {
    -webkit-transform: translate(0, -10%);
    -ms-transform: translate(0, -10%);
    -o-transform: translate(0, -10%);
    transform: translate(0, -10%);
    opacity: 0;
    filter: alpha(opacity=0)
  }
  100% {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
    filter: alpha(opacity=100)
  }
}

@-webkit-keyframes wpb_btt {
  0% {
    -webkit-transform: translate(0, 10%);
    opacity: 0;
    filter: alpha(opacity=0)
  }
  100% {
    -webkit-transform: translate(0, 0);
    opacity: 1;
    filter: alpha(opacity=100)
  }
}

@-moz-keyframes wpb_btt {
  0% {
    -moz-transform: translate(0, 10%);
    opacity: 0;
    filter: alpha(opacity=0)
  }
  100% {
    -moz-transform: translate(0, 0);
    opacity: 1;
    filter: alpha(opacity=100)
  }
}

@-o-keyframes wpb_btt {
  0% {
    -o-transform: translate(0, 10%);
    opacity: 0;
    filter: alpha(opacity=0)
  }
  100% {
    -o-transform: translate(0, 0);
    opacity: 1;
    filter: alpha(opacity=100)
  }
}

@keyframes wpb_btt {
  0% {
    -webkit-transform: translate(0, 10%);
    -ms-transform: translate(0, 10%);
    -o-transform: translate(0, 10%);
    transform: translate(0, 10%);
    opacity: 0;
    filter: alpha(opacity=0)
  }
  100% {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
    filter: alpha(opacity=100)
  }
}

@-webkit-keyframes wpb_ltr {
  0% {
    -webkit-transform: translate(-10%, 0);
    opacity: 0;
    filter: alpha(opacity=0)
  }
  100% {
    -webkit-transform: translate(0, 0);
    opacity: 1;
    filter: alpha(opacity=100)
  }
}

@-moz-keyframes wpb_ltr {
  0% {
    -moz-transform: translate(-10%, 0);
    opacity: 0;
    filter: alpha(opacity=0)
  }
  100% {
    -moz-transform: translate(0, 0);
    opacity: 1;
    filter: alpha(opacity=100)
  }
}

@-o-keyframes wpb_ltr {
  0% {
    -o-transform: translate(-10%, 0);
    opacity: 0;
    filter: alpha(opacity=0)
  }
  100% {
    -o-transform: translate(0, 0);
    opacity: 1;
    filter: alpha(opacity=100)
  }
}

@keyframes wpb_ltr {
  0% {
    -webkit-transform: translate(-10%, 0);
    -ms-transform: translate(-10%, 0);
    -o-transform: translate(-10%, 0);
    transform: translate(-10%, 0);
    opacity: 0;
    filter: alpha(opacity=0)
  }
  100% {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
    filter: alpha(opacity=100)
  }
}

@-webkit-keyframes wpb_rtl {
  0% {
    -webkit-transform: translate(10%, 0);
    opacity: 0;
    filter: alpha(opacity=0)
  }
  100% {
    -webkit-transform: translate(0, 0);
    opacity: 1;
    filter: alpha(opacity=100)
  }
}

@-moz-keyframes wpb_rtl {
  0% {
    -moz-transform: translate(10%, 0);
    opacity: 0;
    filter: alpha(opacity=0)
  }
  100% {
    -moz-transform: translate(0, 0);
    opacity: 1;
    filter: alpha(opacity=100)
  }
}

@-o-keyframes wpb_rtl {
  0% {
    -o-transform: translate(10%, 0);
    opacity: 0;
    filter: alpha(opacity=0)
  }
  100% {
    -o-transform: translate(0, 0);
    opacity: 1;
    filter: alpha(opacity=100)
  }
}

@keyframes wpb_rtl {
  0% {
    -webkit-transform: translate(10%, 0);
    -ms-transform: translate(10%, 0);
    -o-transform: translate(10%, 0);
    transform: translate(10%, 0);
    opacity: 0;
    filter: alpha(opacity=0)
  }
  100% {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
    filter: alpha(opacity=100)
  }
}

@-webkit-keyframes wpb_appear {
  0% {
    -webkit-transform: scale(.5);
    opacity: .1;
    filter: alpha(opacity=10)
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100)
  }
}

@-moz-keyframes wpb_appear {
  0% {
    -moz-transform: scale(.5);
    opacity: .1;
    filter: alpha(opacity=10)
  }
  100% {
    -moz-transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100)
  }
}

@-o-keyframes wpb_appear {
  0% {
    -o-transform: scale(.5);
    opacity: .1;
    filter: alpha(opacity=10)
  }
  100% {
    -o-transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100)
  }
}

@keyframes wpb_appear {
  0% {
    -webkit-transform: scale(.5);
    -ms-transform: scale(.5);
    -o-transform: scale(.5);
    transform: scale(.5);
    opacity: .1;
    filter: alpha(opacity=10)
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100)
  }
}

.vc-spinner::before {
  content: '';
  width: 16px;
  height: 16px;
  display: inline-block;
  pointer-events: none;
  margin-top: 6px;
  background: url(../../../uploads/2021/images/spinner.gif) no-repeat;
  background-position-x: center;
  background-position-y: center
}

.vc-spinner.vc-spinner-complete::before {
  background-image: url(../../../uploads/2021/vc/tick.png)
}

.vc-spinner.vc-spinner-failed::before {
  background-image: url(../../../uploads/2021/vc/remove.png)
}

@-ms-viewport {
  width: device-width
}

html {
  -ms-overflow-style: scrollbar
}

.container,
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px
}

.no-gutters {
  margin-right: 0;
  margin-left: 0
}

.container-no-gutters,
.no-gutters>.col,
.no-gutters>[class*=col-] {
  padding-right: 0;
  padding-left: 0
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-2-5,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-20proc,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none
}

.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%
}

.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%
}

.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%
}

.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%
}

.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%
}

.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%
}

.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%
}

.order-first {
  -ms-flex-order: -1;
  order: -1
}

.order-last {
  -ms-flex-order: 13;
  order: 13
}

@media (min-width:576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
  }
  .order-sm-first {
    -ms-flex-order: -1;
    order: -1
  }
  .order-sm-last {
    -ms-flex-order: 13;
    order: 13
  }
}

@media (min-width:769px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%
  }
  .col-md-20proc {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
  }
  .order-md-first {
    -ms-flex-order: -1;
    order: -1
  }
  .order-md-last {
    -ms-flex-order: 13;
    order: 13
  }
}

@media (min-width:1025px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%
  }
  .col-lg-2-5 {
    -ms-flex: 0 0 20.833333%;
    flex: 0 0 20.833333%;
    max-width: 20.833333%
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
  }
  .col-lg-20_0 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%
  }
  .col-lg-14_3 {
    -ms-flex: 0 0 14.285714%;
    flex: 0 0 14.285714%;
    max-width: 14.285714%
  }
  .col-lg-12_5 {
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%
  }
  .col-lg-11_1 {
    -ms-flex: 0 0 11.111111%;
    flex: 0 0 11.111111%;
    max-width: 11.111111%
  }
  .col-lg-10_0 {
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%
  }
  .col-lg-9_1 {
    -ms-flex: 0 0 9.090909%;
    flex: 0 0 9.090909%;
    max-width: 9.090909%
  }
  .order-lg-first {
    -ms-flex-order: -1;
    order: -1
  }
  .order-lg-last {
    -ms-flex-order: 13;
    order: 13
  }
}

@media (min-width:1200px) {
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%
  }
}

.align-items-start {
  -ms-flex-align: start!important;
  align-items: flex-start!important
}

:root {
  --wd-text-line-height: 1.6;
  --wd-form-color: inherit;
  --wd-form-placeholder-color: inherit;
  --wd-form-bg: transparent;
  --wd-form-brd-color: #eee;
  --wd-form-brd-color-focus: rgba(129, 129, 129, .30);
  --wd-tags-mb: 20px;
  --wd-block-spacing: 20px;
  --color-gray-200: #f1f1f1;
  --color-gray-300: #bbb;
  --color-gray-400: #a5a5a5;
  --color-gray-500: #777;
  --color-gray-600: #666;
  --color-gray-700: #555;
  --color-gray-800: #333;
  --color-gray-900: #242424;
  --bgcolor-white: #fff;
  --bgcolor-gray-100: #f7f7f7;
  --brdcolor-gray-300: rgba(119, 119, 119, .2)
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

html {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: sans-serif
}

ol,
ul {
  list-style: none;
  margin-bottom: var(--list-mb);
  padding-left: var(--li-pl);
  --list-mb: 20px;
  --li-mb: 10px;
  --li-pl: 17px
}

caption,
th,
td {
  vertical-align: middle;
  text-align: left
}

q,
blockquote {
  quotes: none
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none
}

a img {
  border: none
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block
}

a,
button,
input {
  -ms-touch-action: manipulation;
  touch-action: manipulation
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  color: inherit;
  font: inherit
}

button {
  overflow: visible
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
  padding: 0;
  border: 0
}

body .fa.fa-envelope-o,
body .fa.fa-copyright,
body .fa.fa-location-arrow,
body .fa.fa-mobile {
  font-family: "woodmart-font";
  font-weight: 400
}

body .fa.fa-envelope-o:before {
  content: "\f132"
}

body .fa.fa-copyright:before {
  content: "\f173"
}

body .fa.fa-location-arrow:before {
  content: "\f160"
}

body .fa.fa-mobile:before {
  content: "\f159"
}

body {
  overflow-x: hidden;
  margin: 0;
  background-color: #FFF;
  color: var(--wd-text-color);
  text-rendering: optimizeLegibility;
  font-weight: var(--wd-text-font-weight);
  font-style: var(--wd-text-font-style);
  font-size: var(--wd-text-font-size);
  font-family: var(--wd-text-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: var(--wd-text-line-height)
}

p {
  margin-bottom: var(--wd-tags-mb)
}

a {
  color: var(--wd-link-color);
  text-decoration: none;
  transition: all .25s ease
}

a:hover,
a:focus,
a:active {
  outline: none;
  text-decoration: none
}

a:hover {
  color: var(--wd-link-color-hover)
}

a:focus {
  outline: none
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: var(--wd-link-color-hover)
}

label {
  display: block;
  margin-bottom: 5px;
  color: #666;
  vertical-align: middle;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}

em {
  font-style: italic
}

.elementor-default i:not([class]) {
  font-style: italic
}

big {
  font-size: larger
}

abbr {
  border-bottom: 1px dotted;
  color: #D62432;
  text-decoration: none
}

acronym {
  border-bottom: 1px dotted;
  text-decoration: none
}

.required {
  border: none;
  color: #E01020;
  font-size: 16px;
  line-height: 1
}

abbr[title] {
  border: none
}

dl {
  margin-bottom: 20px;
  margin-bottom: 20px
}

strong,
b {
  font-weight: 700
}

mark {
  display: inline-block;
  padding: 5px 8px;
  background-color: #F9F9F9;
  color: #242424;
  font-weight: 600;
  line-height: 1
}

code,
kbd {
  padding: 2px 5px
}

code,
kbd,
pre,
samp {
  -webkit-hyphens: none;
  hyphens: none;
  font-family: monospace, serif
}

ins {
  text-decoration: none
}

pre {
  overflow: auto;
  margin-bottom: 20px;
  padding: 20px;
  background: #F9F9F9;
  text-align: left;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word
}

dfn {
  font-style: italic
}

sub,
sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 1
}

sup {
  top: -.5em
}

sub {
  bottom: -.25em
}

var {
  font-style: italic
}

small {
  font-size: 80%
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: 35px;
  border: none;
  border-bottom: 1px solid currentColor;
  opacity: .2
}

iframe,
embed {
  max-width: 100%
}

blockquote {
  --wd-tags-mb: 10px;
  margin-bottom: 20px;
  padding-left: 30px;
  border-left: 2px solid var(--wd-primary-color);
  text-align: left;
  font-size: 110%
}

blockquote cite {
  display: block;
  margin-top: 10px;
  color: var(--wd-primary-color);
  font-weight: 600;
  font-size: 90%
}

blockquote cite a {
  color: inherit
}

cite {
  font-style: italic
}

address {
  margin-bottom: 20px;
  font-style: italic;
  font-size: 110%;
  line-height: 1.8
}

fieldset {
  margin-bottom: 20px;
  padding: 20px 40px;
  border: 2px solid #E6E6E6
}

fieldset legend {
  margin-bottom: 0;
  padding-right: 15px;
  padding-left: 15px;
  width: auto
}

.global-color-scheme-light fieldset {
  border-color: rgba(255, 255, 255, .25)
}

legend {
  text-transform: uppercase;
  font-size: 22px
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline
}

audio:not([controls]) {
  display: none;
  height: 0
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle
}

.svg-icon {
  display: inline-block
}

.svg-icon svg {
  width: inherit!important;
  height: inherit!important
}

svg:not(:root) {
  overflow: hidden
}

.wd-custom-icon,
picture.wd-custom-icon img {
  min-width: 100%;
  max-width: 38px;
  width: auto;
  height: auto
}

h1 {
  font-size: 28px
}

h2 {
  font-size: 24px
}

h3 {
  font-size: 22px
}

h4 {
  font-size: 18px
}

h5 {
  font-size: 16px
}

h6 {
  font-size: 12px
}

.element-title {
  text-transform: uppercase;
  font-size: 22px
}

legend,
h1,
h2,
h3,
h4,
h5,
h6,
.title {
  display: block;
  margin-bottom: var(--wd-tags-mb);
  color: var(--wd-title-color);
  text-transform: var(--wd-title-transform);
  font-weight: var(--wd-title-font-weight);
  font-style: var(--wd-title-font-style);
  font-family: var(--wd-title-font);
  line-height: 1.4
}

.wd-entities-title {
  display: block;
  color: var(--wd-entities-title-color);
  word-wrap: break-word;
  font-weight: var(--wd-entities-title-font-weight);
  font-style: var(--wd-entities-title-font-style);
  font-family: var(--wd-entities-title-font);
  text-transform: var(--wd-entities-title-transform);
  line-height: 1.4
}

a.wd-entities-title:hover,
.wd-entities-title a:hover {
  color: var(--wd-entities-title-color-hover)
}

ul ul,
ul ol,
ol ul,
ol ol {
  margin-top: var(--li-mb);
  margin-bottom: 0
}

li {
  margin-bottom: var(--li-mb)
}

li:last-child {
  margin-bottom: 0
}

ul {
  list-style: disc
}

ol {
  list-style: decimal
}

dl dt {
  color: #333;
  font-weight: 600
}

dl dt [class*="color-scheme-light"] {
  color: rgba(255, 255, 255, .9)
}

dl dd {
  margin-bottom: 20px
}

.unordered-list ul,
.unordered-list ol {
  margin-left: 20px
}

.unordered-list li:before {
  margin-right: 10px;
  font-size: 8px;
  content: "\f113";
  font-family: "woodmart-font"
}

.inline-list {
  margin-right: -15px;
  margin-left: -15px
}

.inline-list li {
  display: inline-block;
  padding: 5px 15px
}

.inline-list-with-border li {
  padding-top: 0;
  padding-bottom: 0
}

.inline-list-with-border li:not(:last-child) {
  border-right: 1px solid rgba(129, 129, 129, .2)
}

.inline-list,
.unordered-list,
.wd-sub-menu,
.textwidget .menu,
.unordered-list ul,
.wd-sub-menu ul,
.textwidget .menu ul,
.unordered-list ol,
.wd-sub-menu ol,
.textwidget .menu ol,
.wd-nav,
.comments-area .comment-list,
.comments-area .children,
nav[class*="-pagination"] ul {
  list-style: none;
  --li-pl: 0
}

.inline-list,
.wd-sub-menu,
.wd-sub-menu ul,
.wd-sub-menu ol,
.wd-nav,
.comments-area .comment-list,
.comments-area .children,
nav[class*="-pagination"] ul {
  --list-mb: 0;
  --li-mb: 0
}

.wd-z-index {
  position: relative;
  z-index: 35
}

.text-center {
  text-align: center
}

.text-right {
  text-align: right
}

.text-left {
  text-align: left
}

.wd-fontsize-xs {
  font-size: 14px
}

.wd-fontsize-s {
  font-size: 16px
}

.wd-fontsize-m {
  font-size: 18px
}

.wd-fontsize-l {
  font-size: 22px
}

.wd-fontsize-xl {
  font-size: 26px
}

.wd-fontsize-xxl {
  font-size: 36px
}

.wd-fontsize-xxxl {
  font-size: 46px
}

.text-larger {
  font-size: 110%
}

.wd-items-top {
  align-items: flex-start
}

.wd-items-middle {
  align-items: center
}

.wd-items-bottom {
  align-items: flex-end
}

.wd-justify-left {
  justify-content: flex-start
}

.wd-justify-center {
  justify-content: center
}

.wd-justify-right {
  justify-content: flex-end
}

[class*="color-scheme-light"] {
  --color-gray-300: rgba(255, 255, 255, .5);
  --color-gray-400: rgba(255, 255, 255, .6);
  --color-gray-500: rgba(255, 255, 255, .8);
  --color-gray-600: rgba(255, 255, 255, .8);
  --color-gray-700: rgba(255, 255, 255, .8);
  --color-gray-800: #fff;
  --color-gray-900: #fff;
  --bgcolor-white: #0d0d0d;
  --bgcolor-gray-100: #0d0d0d;
  --brdcolor-gray-300: rgba(255, 255, 255, .15);
  --wd-text-color: rgba(255, 255, 255, .8);
  --wd-title-color: #fff;
  --wd-widget-title-color: var(--wd-title-color);
  --wd-entities-title-color: #fff;
  --wd-entities-title-color-hover: rgba(255, 255, 255, .8);
  --wd-link-color: rgba(255, 255, 255, .9);
  --wd-link-color-hover: #fff;
  --wd-form-brd-color: rgba(255, 255, 255, .2);
  --wd-form-brd-color-focus: rgba(255, 255, 255, .3);
  --wd-form-placeholder-color: rgba(255, 255, 255, .6);
  color: var(--wd-text-color)
}

.color-scheme-dark {
  --color-gray-300: #bbb;
  --color-gray-400: #a5a5a5;
  --color-gray-500: #777;
  --color-gray-600: #666;
  --color-gray-700: #555;
  --color-gray-800: #333;
  --color-gray-900: #242424;
  --bgcolor-white: #fff;
  --bgcolor-gray-100: #f7f7f7;
  --brdcolor-gray-300: rgba(119, 119, 119, .2);
  --wd-text-color: #777;
  --wd-title-color: #242424;
  --wd-entities-title-color: #333;
  --wd-entities-title-color-hover: rgba(#333, .65);
  --wd-link-color: #333;
  --wd-link-color-hover: #242424;
  --wd-form-brd-color: rgba(129, 129, 129, .20);
  --wd-form-brd-color-focus: rgba(129, 129, 129, .30);
  --wd-form-placeholder-color: #777;
  color: var(--wd-text-color)
}

[class*="color-scheme-hover"] {
  transition: all .25s ease
}

[class*="color-scheme-hover"] .title {
  transition: all .25s ease
}

.color-scheme-hover-dark:hover {
  --color-gray-400: #a5a5a5;
  --bgcolor-gray-100: #f7f7f7;
  --wd-text-color: #777;
  --wd-title-color: #242424;
  --wd-link-color: #333;
  --wd-link-color-hover: #242424;
  color: var(--wd-text-color)
}

.color-scheme-hover-light:hover {
  --color-gray-400: rgba(255, 255, 255, .8);
  --brdcolor-gray-300: rgba(255, 255, 255, .15);
  --wd-text-color: rgba(255, 255, 255, .8);
  --wd-title-color: #fff;
  --wd-link-color: rgba(255, 255, 255, .9);
  --wd-link-color-hover: #fff;
  color: var(--wd-text-color)
}

.color-primary {
  color: var(--wd-primary-color)
}

.color-alt {
  color: var(--wd-alternative-color)
}

.color-title {
  color: var(--wd-title-color)
}

.color-black {
  color: #000
}

.color-white {
  color: #fff
}

.font-text {
  font-family: var(--wd-text-font)
}

.font-primary {
  font-family: var(--wd-title-font)
}

.font-alt {
  font-family: var(--wd-alternative-font);
  font-style: var(--wd-alternative-font-style)
}

.main-nav-style {
  font-weight: var(--wd-header-el-font-weight);
  font-style: var(--wd-header-el-font-style);
  font-size: var(--wd-header-el-font-size);
  font-family: var(--wd-header-el-font);
  text-transform: var(--wd-header-el-transform)
}

.main-nav-style .color-primary {
  color: #dc3936;
  font-weight: 700;
  opacity: 1;
}

.main-nav-style .color-primary:hover {
  color: #dc3936;
  opacity: .6;
}

.whb-color-light .main-nav-style .color-primary {
  color: var(--wd-link-color)
}

.whb-color-light .main-nav-style .color-primary:hover {
  color: var(--wd-link-color-hover)
}

.clear {
  clear: both;
  width: 100%
}

.cursor-pointer {
  cursor: pointer
}

.wd-nav li.color-primary {
  --nav-color: var(--wd-primary-color);
  --nav-color-hover: var(--wd-primary-color);
  --nav-color-active: var(--wd-primary-color)
}

.wd-fill {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.wd-display-none,
.wd-hide {
  display: none!important
}

.set-mb-s {
  --margin-bottom: 10px
}

.set-mb-s>* {
  margin-bottom: var(--margin-bottom)
}

.set-mb-m {
  --margin-bottom: 15px
}

.set-mb-m>* {
  margin-bottom: var(--margin-bottom)
}

.set-cont-mb-s {
  --wd-tags-mb: 10px
}

.reset-last-child>*:last-child {
  margin-bottom: 0
}

.wd-spacing-0 {
  margin-right: 0;
  margin-left: 0
}

.wd-spacing-0>[class*="col"] {
  margin-bottom: 0;
  padding-right: 0;
  padding-left: 0
}

.wd-spacing-2 {
  margin-right: -1px;
  margin-left: -1px
}

.elementor-default .wd-spacing-2 {
  margin-bottom: -2px
}

.wd-spacing-2>[class*="col"] {
  margin-bottom: 2px;
  padding-right: 1px;
  padding-left: 1px
}

.wd-spacing-6 {
  margin-right: -3px;
  margin-left: -3px
}

.elementor-default .wd-spacing-6 {
  margin-bottom: -6px
}

.wd-spacing-6>[class*="col"] {
  margin-bottom: 6px;
  padding-right: 3px;
  padding-left: 3px
}

.wd-spacing-10 {
  margin-right: -5px;
  margin-left: -5px
}

.elementor-default .wd-spacing-10 {
  margin-bottom: -10px
}

.wd-spacing-10>[class*="col"] {
  margin-bottom: 10px;
  padding-right: 5px;
  padding-left: 5px
}

.wd-spacing-20 {
  margin-right: -10px;
  margin-left: -10px
}

.elementor-default .wd-spacing-20 {
  margin-bottom: -20px
}

.wd-spacing-20>[class*="col"] {
  margin-bottom: 0;
  padding-right: 10px;
  padding-left: 10px
}

.wd-spacing-30 {
  margin-right: -15px;
  margin-left: -15px
}

.elementor-default .wd-spacing-30 {
  margin-bottom: -30px
}

.wd-spacing-30>[class*="col"] {
  margin-bottom: 30px;
  padding-right: 15px;
  padding-left: 15px
}

.wd-columns-1>div {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%
}

.wd-columns-2>div {
  flex: 0 0 50%;
  max-width: 50%;
  width: 50%
}

.wd-columns-3>div {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  width: 33.3333333333%
}

.wd-columns-4>div {
  flex: 0 0 25%;
  max-width: 25%;
  width: 25%
}

.wd-columns-5>div {
  flex: 0 0 20%;
  max-width: 20%;
  width: 20%
}

.wd-columns-6>div {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
  width: 16.6666666667%
}

.is_stuck {
  z-index: 2
}

[class*="wd-underline"] u {
  text-decoration: none
}

[class*="wd-underline-colored"] u {
  color: var(--wd-primary-color)
}

.wd-underline-colored-alt u {
  font-family: var(--wd-alternative-font);
  font-style: var(--wd-alternative-font-style)
}

.wd-underline-bordered u {
  border-bottom: 3px solid var(--wd-primary-color)
}

.wd-font-weight-100 {
  font-weight: 100!important
}

.wd-font-weight-200 {
  font-weight: 200!important
}

.wd-font-weight-300 {
  font-weight: 300!important
}

.wd-font-weight-400 {
  font-weight: 400!important
}

.wd-font-weight-500 {
  font-weight: 500!important
}

.wd-font-weight-600 {
  font-weight: 600!important
}

.wd-font-weight-700 {
  font-weight: 700!important
}

.wd-font-weight-800 {
  font-weight: 800!important
}

.wd-font-weight-900 {
  font-weight: 900!important
}

@keyframes wd-rotate {
  100% {
    transform: rotate(360deg)
  }
}

@keyframes wd-fadeIn {
  from {
    opacity: 0
  }
  to {
    opacity: 1
  }
}

@keyframes wd-fadeOut {
  from {
    opacity: 1
  }
  to {
    opacity: 0
  }
}

@keyframes wd-fadeInBottomShort {
  from {
    transform: translate3d(0, 20px, 0)
  }
  to {
    transform: none
  }
}

@keyframes wd-ShakePrev {
  25% {
    transform: translate3d(0, 0, 0)
  }
  50% {
    transform: translate3d(3px, 0, 0)
  }
  75% {
    transform: translate3d(-3px, 0, 0)
  }
}

@keyframes wd-ShakeNext {
  25% {
    transform: translate3d(0, 0, 0)
  }
  50% {
    transform: translate3d(-3px, 0, 0)
  }
  75% {
    transform: translate3d(3px, 0, 0)
  }
}

@keyframes wd-FadeInLoader {
  from {
    opacity: 0
  }
  to {
    opacity: .8
  }
}

@keyframes wd-SlideFromTop {
  from {
    transform: translateY(-150px)
  }
  to {
    transform: none
  }
}

@keyframes wd-SlideFromBottom {
  from {
    transform: translateY(150px)
  }
  to {
    transform: none
  }
}

@keyframes wd-SlideFromLeft {
  from {
    transform: translateX(-150px)
  }
  to {
    transform: none
  }
}

@keyframes wd-SlideFromRight {
  from {
    transform: translateX(150px)
  }
  to {
    transform: none
  }
}

@keyframes wd-RightFlipY {
  from {
    transform: translateX(100px) rotate3d(0, 1, 0, 90deg) scale(.6)
  }
  to {
    transform: perspective(1000px) translateY(0) rotate3d(0, 1, 0, 0deg) scale(1)
  }
}

@keyframes wd-LeftFlipY {
  from {
    transform: translateX(-100px) rotate3d(0, 1, 0, -90deg) scale(.6)
  }
  to {
    transform: perspective(1000px) translateY(0) rotate3d(0, 1, 0, 0deg) scale(1)
  }
}

@keyframes wd-TopFlipX {
  from {
    transform: translateY(-100px) rotate3d(1, 0, 0, 90deg) scale(.6)
  }
  to {
    transform: perspective(1000px) translateY(0) rotate3d(1, 0, 0, 0deg) scale(1)
  }
}

@keyframes wd-BottomFlipX {
  from {
    transform: translateY(100px) rotate3d(1, 0, 0, 90deg) scale(.6)
  }
  to {
    transform: perspective(1000px) translateY(0) rotate3d(1, 0, 0, 0deg) scale(1)
  }
}

@keyframes wd-ZoomIn {
  from {
    transform: scale(.7)
  }
  to {
    transform: none
  }
}

@keyframes wd-RotateZ {
  from {
    transform: matrix3d(.70592, .02465, .37557, -.00062, -.06052, .79532, .06156, -.0001, -.46435, -.10342, .87958, -.00146, -21.42566, 4.13698, 4.81749, .99197085)
  }
  to {
    transform: none
  }
}

table {
  margin-bottom: 35px;
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  line-height: 1.4
}

table th {
  padding: 15px 10px;
  border-bottom: 2px solid #EFEFEF;
  color: var(--wd-title-color);
  text-transform: uppercase;
  font-weight: var(--wd-title-font-weight);
  font-style: var(--wd-title-font-style);
  font-size: 16px;
  font-family: var(--wd-title-font)
}

table td {
  padding: 15px 12px;
  border-bottom: 1px solid #E6E6E6
}

table tbody th,
table tfoot th {
  border-bottom: 1px solid #E6E6E6;
  text-transform: none;
  font-size: 14px
}

[class*="color-scheme-light"] table th {
  border-color: rgba(255, 255, 255, .15)
}

[class*="color-scheme-light"] table td {
  border-color: rgba(255, 255, 255, .15)
}

[class*="color-scheme-light"] table tbody th,
[class*="color-scheme-light"] table tfoot th {
  border-color: rgba(255, 255, 255, .15)
}

.table-bordered-style th,
.table-bordered-style td {
  border: 1px solid #EFEFEF
}

[class*="color-scheme-light"] .table-bordered-style th,
[class*="color-scheme-light"] .table-bordered-style td {
  border-color: rgba(255, 255, 255, .4)
}

.responsive-table {
  overflow-x: auto;
  margin-bottom: 35px
}

.responsive-table table {
  margin-bottom: 0
}

.responsive-table .responsive-table {
  overflow-x: visible;
  margin-bottom: 0
}

input[type='email'],
input[type='search'],
input[type='number'],
input[type='url'],
input[type='tel'],
input[type='text'],
input[type='password'],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

input[type='email'],
input[type='date'],
input[type='search'],
input[type='number'],
input[type='text'],
input[type='tel'],
input[type='url'],
input[type='password'],
textarea,
select {
  padding: 0 15px;
  max-width: 100%;
  width: 100%;
  height: 42px;
  border: var(--wd-form-brd-width) solid var(--wd-form-brd-color);
  border-radius: var(--wd-form-brd-radius);
  color: #292A2C;
  background-color: var(--wd-form-bg);
  box-shadow: none;
  vertical-align: middle;
  font-size: 13px;
  font-weight: 500;
  transition: border-color .5s ease
}

input[type='email']:focus,
input[type='date']:focus,
input[type='search']:focus,
input[type='number']:focus,
input[type='text']:focus,
input[type='tel']:focus,
input[type='url']:focus,
input[type='password']:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--wd-form-brd-color-focus);
  transition: border-color .4s ease
}

::-webkit-input-placeholder {
  color: #58595b;
}

::-moz-placeholder {
  color: #58595b;
}

:-moz-placeholder {
  color: #58595b;
}

:-ms-input-placeholder {
  color: #58595b;
}

.search-products-input::-webkit-input-placeholder {
  color: #777 !important;
}

.search-products-input::-moz-placeholder {
  color: #777 !important;
}

.search-products-input:-moz-placeholder {
  color: #777 !important;
}

.search-products-input:-ms-input-placeholder {
  color: #777 !important;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  margin-top: 0;
  margin-right: 5px;
  padding: 0;
  vertical-align: middle
}

input[type="search"] {
  box-sizing: content-box;
  -webkit-appearance: textfield
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none
}

input[type="number"] {
  padding: 0;
  text-align: center
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto
}

input[type="date"]::-webkit-inner-spin-button {
  display: none
}

input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0
}

input[type="date"]::-webkit-clear-button {
  position: relative;
  right: 5px;
  width: 30px;
  opacity: .4;
  filter: grayscale(100%)
}

html:not(.browser-Firefox) input[type="date"] {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='rgba(0, 0, 0, 0.3)' data-name='calendar' width='24' height='24' viewBox='0 0 236 220'><path d='M211.6 24H184V10a10 10 0 0 0-20 0v14H72V10a10 10 0 0 0-20 0v14H24.4C10.95 24 0 35.5 0 49.64v144.72C0 208.5 10.95 220 24.4 220h187.2c13.45 0 24.4-11.5 24.4-25.64V49.64C236 35.5 225.05 24 211.6 24zM24.4 44H52v10a10 10 0 0 0 20 0V44h92v10a10 10 0 0 0 20 0V44h27.6c2.38 0 4.4 2.59 4.4 5.64V80H20V49.64c0-3.05 2-5.64 4.4-5.64zm187.2 156H24.4c-2.38 0-4.4-2.59-4.4-5.64V100h196v94.36c0 3.05-2 5.64-4.4 5.64z'/></svg>");
  background-position: right 15px top 50%;
  background-size: auto 15px;
  background-repeat: no-repeat
}

html:not(.browser-Firefox) [class*="color-scheme-light"] input[type='date'] {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' id='calendar' fill='rgba(255, 255, 255, 0.6)' data-name='calendar' width='24' height='24' viewBox='0 0 236 220'>  <title>cal</title>  <path d='M211.6,24H184V10a10,10,0,0,0-20,0V24H72V10a10,10,0,0,0-20,0V24H24.4C10.95,24,0,35.5,0,49.64V194.36C0,208.5,10.95,220,24.4,220H211.6c13.45,0,24.4-11.5,24.4-25.64V49.64C236,35.5,225.05,24,211.6,24ZM24.4,44H52V54a10,10,0,0,0,20,0V44h92V54a10,10,0,0,0,20,0V44h27.6c2.38,0,4.4,2.59,4.4,5.64V80H20V49.64C20,46.59,22,44,24.4,44ZM211.6,200H24.4c-2.38,0-4.4-2.59-4.4-5.64V100H216v94.36C216,197.41,214,200,211.6,200Z'/></svg>")
}

textarea {
  overflow: auto;
  padding: 10px 15px;
  min-height: 190px
}

select {
  padding-right: 30px;
  background-position: right 10px top 50%;
  background-size: auto 18px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSIgZmlsbD0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNiYmIiPjxwYXRoIGQ9Ik02IDlsNiA2IDYtNiIvPjwvc3ZnPg==)
}

select::-ms-expand {
  display: none
}

input:-webkit-autofill {
  border-color: #E6E6E6;
  -webkit-box-shadow: 0 0 0 1000px #FFF inset;
  -webkit-text-fill-color: #777
}

input:focus:-webkit-autofill {
  border-color: #D9D9D9
}

[class*="color-scheme-light"] select option {
  background-color: #101010
}

[class*="color-scheme-light"] input[type="date"]::-webkit-clear-button {
  opacity: .6;
  filter: grayscale(100%) invert(100%) saturate(800%)
}

.form-style-underlined label {
  margin-bottom: -5px
}

.form-style-underlined input[type='email'],
.form-style-underlined input[type='date'],
.form-style-underlined input[type='search'],
.form-style-underlined input[type='number'],
.form-style-underlined input[type='text'],
.form-style-underlined input[type='tel'],
.form-style-underlined input[type='url'],
.form-style-underlined input[type='password'],
.form-style-underlined select,
.form-style-underlined textarea {
  padding: 0 2px;
  border-top-style: none;
  border-right-style: none;
  border-left-style: none
}

.form-style-underlined select {
  background-position: right 0 top 50%
}

.form-style-underlined textarea {
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 80px
}

.form-style-underlined .wd-with-cat .wd-search-cat>a {
  height: auto
}

.form-style-underlined .wd-search-full-screen input[type="text"] {
  padding-right: 0
}

.form-style-underlined .wd-search-dropdown input[type="text"] {
  padding-left: 15px
}

.form-style-underlined .wd-pf-title {
  padding-left: 0;
  padding-right: 30px;
  border-top: none;
  border-right: none;
  border-left: none
}

.form-style-underlined .wd-pf-title:after {
  right: 7px
}

.form-style-underlined .comment-form-comment {
  margin-bottom: 30px
}

.form-style-underlined .wd-dropdown-register .form-row-username,
.form-style-underlined .wd-dropdown-register .form-row-password {
  margin-bottom: 25px
}

[class*="color-scheme-light"] select {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSIgZmlsbD0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9InJnYmEoMjU1LCAyNTUsIDI1NSwgMC42KSI+PHBhdGggZD0iTTYgOWw2IDYgNi02Ii8+PC9zdmc+)
}

.btn,
.button,
button,
[type="submit"],
[type="button"] {
  padding: 12px 20px;
  font-size: 13px;
  line-height: 18px;
  background-color: #F3F3F3;
  color: #3E3E3E;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
  border-radius: 0;
  box-shadow: none;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: none;
  letter-spacing: 0;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.header-categories-nav {
  margin-right: 20px;
}

.header-categories-nav-wrap {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn:hover,
.button:hover,
button:hover,
[type="submit"]:hover,
[type="button"]:hover {
  color: #3E3E3E;
  box-shadow: none;
  text-decoration: none
}

.btn:focus,
.button:focus,
button:focus,
[type="submit"]:focus,
[type="button"]:focus {
  outline: none
}

button[disabled],
input[disabled] {
  /*opacity: 0.6!important;
  cursor: default*/
}

.wd-loader:after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid #BBB;
  border-left-color: #000;
  border-radius: 50%;
  vertical-align: middle
}

[class*="color-scheme-light"] .wd-loader:after {
  border-color: rgba(255, 255, 255, .15);
  border-left-color: #fff
}

.woodmart-add-btn {
  width: 100%;
}

.wd-scroll-content {
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: 50vh;
  scrollbar-width: thin
}

.wd-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 380;
  margin: 15px 0 0;
  background-color: #FFF;
  background-position: bottom right;
  background-clip: border-box;
  background-repeat: no-repeat;
  box-shadow: 0 0 3px rgba(0, 0, 0, .15);
  text-align: left;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(.19, 1, .22, 1), visibility 0.4s cubic-bezier(.19, 1, .22, 1), transform 0.4s cubic-bezier(.19, 1, .22, 1);
  transform: translateY(15px) translateZ(0);
  pointer-events: none
}

.wd-dropdown:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 15px;
}

.wd-dropdown-search-cat {
  right: 0;
  left: auto;
  margin: var(--wd-form-brd-width) 0 0!important;
  box-shadow: none;
  border: 2px solid var(--wd-search-cat-brd-color);
  border-top: 0;
}

.wd-nav-vertical .wd-dropdown-menu {
  margin: 0;
  top: 0;
  left: 100%
}

.wd-nav-vertical .wd-dropdown-menu:after {
  height: auto
}

.wd-dropdown-results {
  margin: 0!important;
  right: calc((var(--wd-form-brd-radius) / 1.5));
  left: calc((var(--wd-form-brd-radius) / 1.5))
}

.wd-dropdown-results:after {
  width: auto!important;
  height: auto!important
}

.wd-dropdown.color-scheme-light,
.color-scheme-light .wd-dropdown,
.wd-dropdown-menu.wd-design-default.color-scheme-light .wd-dropdown {
  background-color: #101010
}

.wd-event-hover:hover>.wd-dropdown,
.wd-event-click.wd-opened>.wd-dropdown,
.wd-dropdown.wd-opened {
  visibility: visible;
  opacity: 1;
  transform: none;
  pointer-events: visible;
  pointer-events: unset
}

.wpb-js-composer .wd-dropdown-menu>.container>p {
  display: none
}

.dropdowns-loading .dropdown-load-ajax.menu-mega-dropdown:not(.dropdown-with-height)>.wd-dropdown-menu {
  min-height: 400px
}

.dropdowns-loaded .dropdown-load-ajax>.wd-dropdown-menu>.container {
  animation: wd-fadeIn .3s ease
}

.dropdown-html-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, .6)
}

.dropdown-html-placeholder:after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 1px solid #BBB;
  border-left-color: #000;
  border-radius: 50%;
  vertical-align: middle
}

.dropdowns-loading .dropdown-html-placeholder:after {
  animation: wd-rotate 450ms infinite linear
}

.color-scheme-light .dropdown-html-placeholder {
  background-color: rgba(0, 0, 0, .6)
}

.color-scheme-light .dropdown-html-placeholder:after {
  border-color: rgba(255, 255, 255, .15);
  border-left-color: #fff
}

.wd-dropdown-menu.wd-design-default,
.wd-dropdown-menu.wd-design-default .wd-dropdown {
  padding: 12px 20px;
  width: 220px
}

.wd-dropdown-menu.wd-design-default>.container {
  padding: 0;
  width: auto
}

.wd-dropdown-menu.wd-design-default .wd-dropdown {
  top: 0;
  left: 100%;
  margin: 0 0 0 20px
}

.wd-dropdown-menu.wd-design-default .wd-dropdown:after {
  top: 0;
  right: 100%;
  bottom: 0;
  left: auto;
  width: 20px;
  height: auto
}

.wd-dropdown-menu.wd-design-default .menu-item-has-children>a:after {
  margin-left: auto;
  color: rgba(82, 82, 82, .45);
  font-weight: 600;
  font-size: 55%;
  line-height: 1;
  font-family: "woodmart-font";
  content: "\f113"
}

.wd-dropdown-menu.wd-design-default.color-scheme-light .menu-item-has-children>a:after {
  color: rgba(255, 255, 255, .6)
}

.wd-dropdown-menu.wd-design-sized .wd-sub-menu>li,
.wd-dropdown-menu.wd-design-full-width .wd-sub-menu>li {
  width: 200px;
  margin-bottom: 25px
}

.wd-dropdown-menu.wd-design-sized .vc_row .wd-sub-menu>li,
.wd-dropdown-menu.wd-design-full-width .vc_row .wd-sub-menu>li {
  width: auto
}

.wd-dropdown-menu.wd-design-sized .elementor-element .wd-sub-menu>li,
.wd-dropdown-menu.wd-design-full-width .elementor-element .wd-sub-menu>li {
  width: auto;
  margin-bottom: 0
}

.wd-dropdown-menu.wd-design-sized,
.wd-nav-vertical .wd-dropdown-menu.wd-design-full-width {
  padding: 30px 35px 0 35px
}

.wd-dropdown-menu.wd-design-sized>.container,
.wd-nav-vertical .wd-dropdown-menu.wd-design-full-width>.container {
  padding: 0;
  width: auto
}

.wd-dropdown-menu.wd-design-full-width {
  padding-top: 30px;
  width: 100vw
}

.platform-Windows .wd-dropdown-menu.wd-design-full-width {
  padding-left: 17px
}

.wd-side-hidden.color-scheme-light {
  background-color: #101010
}

.widget-heading {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  flex-direction: row;
  justify-content: flex-end;
  padding: 20px 20px;
  border-bottom: 1px solid rgba(119, 119, 119, .2);
  border-bottom: 2px solid #eee;
}

@media (max-width: 767px) {
  .widget-heading {
    padding-top: 17.5px;
    padding-bottom: 17.5px;
  }
}

.widget-heading .widget-title {
  flex: 1 1 auto;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
}

.widget-heading .close-side-widget {
  flex: 0 0 auto;
  text-transform: uppercase
}

.widget-heading .close-side-widget>a {
  height: 25px
}

[class*="color-scheme-light"] .widget-heading {
  border-color: rgba(255, 255, 255, .15)
}

.wd-side-hidden {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 500;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 340px;
  background-color: #FFF;
  transition: transform 0.5s cubic-bezier(.19, 1, .22, 1)
}

.wd-side-hidden.wd-left {
  right: auto;
  left: 0;
  transform: translate3d(-100%, 0, 0)
}

.wd-side-hidden.wd-right {
  right: 0;
  left: auto;
  transform: translate3d(100%, 0, 0)
}

.wd-side-hidden.wd-opened {
  transform: none
}

@media (max-width:350px) {
  .wd-side-hidden {
    width: 270px!important
  }
}

.wd-sub-menu {
  --sub-menu-color: #848484;
  --sub-menu-color-hover: var(--wd-primary-color)
}

.wd-sub-menu li {
  position: relative
}

.wd-sub-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  color: var(--sub-menu-color);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  cursor: pointer;
}

.wd-sub-menu li a .wd-nav-icon {
  margin-right: 7px;
  font-size: 115%
}

.wd-sub-menu li a .menu-label {
  position: relative;
  margin-top: -20px;
  align-self: flex-start
}

.wd-sub-menu li a:hover {
  color: #3da54a
}

[class*="color-scheme-light"] .wd-sub-menu {
  --sub-menu-color: rgba(255, 255, 255, .6);
  --sub-menu-color-hover: #fff
}

.widget .wd-sub-menu {
  --li-mb: 0
}

.widget .wd-sub-menu ul {
  --li-mb: 0
}

.wd-dropdown-menu.wd-design-sized .wd-sub-menu>li>a,
.wd-dropdown-menu.wd-design-full-width .wd-sub-menu>li>a,
.mega-menu-list>li>a {
  --sub-menu-color: #333;
  --sub-menu-color-hover: var(--wd-primary-color);
  text-transform: uppercase;
  font-weight: 600
}

.wd-dropdown-menu.wd-design-sized.color-scheme-light .wd-sub-menu>li>a,
.wd-dropdown-menu.wd-design-full-width.color-scheme-light .wd-sub-menu>li>a,
[class*="color-scheme-light"] .mega-menu-list>li>a {
  --sub-menu-color: #fff;
  --sub-menu-color-hover: rgba(255, 255, 255, .6)
}

.searchform {
  --wd-submit-color: #777;
  --wd-submit-color-hover: #333;
  --wd-loader-ring-brd-color: #BBB;
  --wd-loader-highlight-brd-color: #000;
  --wd-search-cat-color: #777;
  --wd-search-cat-brd-color: var(--wd-form-brd-color);
  position: relative
}

.searchform input[type="text"] {
  padding-right: 50px;
  height: 46px;
  font-size: 13px;
  font-weight: 500;
}

.searchform input[type="text"]::-ms-clear {
  display: none
}

.searchform .searchsubmit {
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 0;
  width: 50px;
  border: none;
  background-color: transparent;
  box-shadow: none;
  color: var(--wd-submit-color);
  font-weight: 400;
  font-size: 0
}

.searchform .searchsubmit:hover {
  color: #DC3936;
  background-color: transparent;
}

.searchform .searchsubmit:after,
.searchform .searchsubmit img {
  font-size: 18px;
  transition: opacity .2s ease;
  content: "\f130";
  font-family: "woodmart-font"
}

.searchform .searchsubmit img {
  max-width: 24px
}

.searchform .searchsubmit:before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -9px;
  margin-left: -9px;
  opacity: 0;
  transition: opacity .1s ease;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid var(--wd-loader-ring-brd-color);
  border-left-color: var(--wd-loader-highlight-brd-color);
  border-radius: 50%;
  vertical-align: middle
}

.searchform .searchsubmit.wd-with-img:after {
  content: none
}

.searchform .searchsubmit.wd-with-img:hover {
  opacity: .6
}

/*
.searchform.search-loading .searchsubmit:before {
  opacity: 1;
  transition-duration: .2s;
  animation: wd-rotate 450ms infinite linear
}

.searchform.search-loading .searchsubmit:after,
.searchform.search-loading .searchsubmit img {
  opacity: 0;
  transition-duration: .1s
}*/

[class*="color-scheme-light"] .searchform {
  --wd-submit-color: #FFF;
  --wd-submit-color-hover: rgba(255, 255, 255, .8);
  --wd-loader-ring-brd-color: rgba(255, 255, 255, .4);
  --wd-loader-highlight-brd-color: #FFF
}

.wd-search-cat {
  display: flex;
  align-items: center;
  position: absolute;
  top: var(--wd-form-brd-width);
  right: 52px;
  bottom: var(--wd-form-brd-width)
}

.wd-search-cat>a {
  display: flex;
  align-items: center;
  padding-right: 15px;
  padding-left: 15px;
  width: 185px;
  height: 100%;
  border-right: 2px solid var(--wd-search-cat-brd-color);
  border-left: 2px solid var(--wd-search-cat-brd-color);
  color: var(--wd-search-cat-color);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

.wd-search-cat>a>span {
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap
}

.wd-search-cat>a:after {
  margin-left: 8px;
  font-weight: 600;
  font-size: 12px;
  content: "\f129";
  font-family: "woodmart-font"
}

.wd-dropdown-search-cat:after {
  height: var(--wd-form-brd-width)!important
}

.wd-dropdown-search-cat.wd-design-default {
  width: 250px
}

.wd-dropdown-search-cat .current-item>a {
  --sub-menu-color: #3da54a;
}

.wd-dropdown-search-cat .children li a {
  padding-left: 20px
}

.color-scheme-light .wd-dropdown-search-cat .current-item>a,
.wd-dropdown-search-cat.color-scheme-light .current-item>a {
  --sub-menu-color: #fff
}

.wpb-js-composer .wd-el-search {
  margin-bottom: 35px
}

.wd-el-search.wd-color-light .searchform {
  --wd-form-brd-color: rgba(255, 255, 255, .2);
  --wd-form-brd-color-focus: rgba(255, 255, 255, .3);
  --wd-form-color: rgba(255, 255, 255, .8);
  --wd-submit-color: #FFF;
  --wd-submit-color-hover: rgba(255, 255, 255, .8);
  --wd-loader-ring-brd-color: rgba(255, 255, 255, .4);
  --wd-loader-highlight-brd-color: #FFF;
  --wd-search-cat-color: rgba(255, 255, 255, .8);
  --wd-search-cat-brd-color: var(--wd-form-brd-color)
}

.wd-el-search.wd-color-dark .searchform {
  --wd-form-brd-color: rgba(129, 129, 129, .20);
  --wd-form-brd-color-focus: rgba(129, 129, 129, .30);
  --wd-form-color: #777;
  --wd-form-placeholder-color: var(--wd-form-color);
  --wd-submit-color: #777;
  --wd-submit-color-hover: #777;
  --wd-loader-ring-brd-color: #BBB;
  --wd-loader-highlight-brd-color: #000;
  --wd-search-cat-color: #777;
  --wd-search-cat-brd-color: var(--wd-form-brd-color)
}

.search-results-wrapper {
  position: relative;
  /*display: none*/
}

.autocomplete-suggestions {
  display: flex;
  flex-wrap: wrap;
  margin-top: -1px;
  margin-right: -1px
}

.autocomplete-suggestion {
  display: flex;
  flex: 1 1 285px;
  padding: 15px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-color: rgba(119, 119, 119, .2);
  cursor: pointer;
  line-height: 1;
  transition: all .25s ease
}

.autocomplete-suggestion .suggestion-thumb {
  flex: 0 0 auto;
  margin-right: 15px;
  max-width: 65px
}

.autocomplete-suggestion .wd-entities-title {
  font-size: 14px
}

.autocomplete-suggestion .wd-entities-title strong {
  text-decoration: underline
}

.autocomplete-suggestion .suggestion-sku {
  font-size: 12px
}

.autocomplete-suggestion.suggestion-divider {
  flex-basis: 100%!important;
  width: 100%;
  background-color: #F9F9F9;
  cursor: default
}

.autocomplete-suggestion.suggestion-divider h5 {
  margin-bottom: 0;
  text-transform: uppercase
}

.autocomplete-suggestion:hover,
.autocomplete-suggestion.autocomplete-selected {
  background-color: #F9F9F9
}

[class*="color-scheme-light"] .autocomplete-suggestion {
  border-color: rgba(255, 255, 255, .15)
}

[class*="color-scheme-light"] .autocomplete-suggestion.suggestion-divider {
  background-color: rgba(0, 0, 0, .3)
}

[class*="color-scheme-light"] .autocomplete-suggestion:hover,
[class*="color-scheme-light"] .autocomplete-suggestion.autocomplete-selected {
  background-color: rgba(0, 0, 0, .3)
}

.view-all-results {
  flex: 1 1 100%;
  height: 50px;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: rgba(119, 119, 119, .2);
  color: #333;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 50px;
  cursor: pointer;
  transition: all .25s ease
}

.view-all-results:hover {
  background-color: #F9F9F9
}

[class*="color-scheme-light"] .view-all-results {
  color: #fff;
  border-color: rgba(255, 255, 255, .15)
}

[class*="color-scheme-light"] .view-all-results:hover {
  background-color: rgba(0, 0, 0, .9)
}

.create-nav-msg a {
  font-weight: 600
}

.wd-nav-img,
.mega-menu-list img {
  display: inline-block;
  margin-right: 16px;
  max-height: 32px;
  height: 32px;
  width: auto!important
}

.wd-nav-img img,
.mega-menu-list img img {
  max-height: 18px
}

.wd-nav {
  --nav-gap: 15px;
  display: inline-flex;
  flex-wrap: wrap;
  margin-right: calc(var(--nav-gap) / -1);
  margin-left: calc(var(--nav-gap) / -1);
  text-align: left
}

.wd-nav>li {
  position: relative
}

.wd-nav>li>a {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  padding-right: var(--nav-gap);
  padding-left: var(--nav-gap);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 1.2
}

.wd-nav>li>a .wd-nav-icon {
  margin-right: 7px;
  font-size: 115%
}

.wd-nav>li>a .menu-label {
  left: calc(100% - 30px);
  margin-left: 0
}

.wd-nav>li.wd-has-children>a:after,
.wd-nav>li.menu-item-has-children>a:after {
  margin-left: 4px;
  font-weight: 400;
  font-style: normal;
  font-size: 50%;
  content: "\f129";
  font-family: "woodmart-font"
}

.wd-nav.wd-gap-m {
  --nav-gap: 15px
}

.wd-nav.wd-gap-l {
  --nav-gap: 20px
}

.wd-nav-opener {
  --nav-opener-color: #2d2a2a;
  --nav-opener-color-hover: var(--nav-opener-color);
  --nav-opener-color-active: rgba(45, 42, 42, .8);
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 50px;
  color: var(--nav-opener-color);
  cursor: pointer;
  transition: color .25s ease, background-color .25s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden
}

.wd-nav-opener:after {
  font-weight: 700;
  font-size: 12px;
  transition: transform .25s ease;
  content: "\f113";
  font-family: "woodmart-font"
}

.wd-nav-opener:hover {
  color: var(--nav-opener-color-hover)
}

.wd-nav-opener.wd-active {
  color: var(--nav-opener-color-active)
}

.wd-nav-opener.wd-active:after {
  transform: rotate(90deg)
}

.color-scheme-light .wd-nav-opener {
  --nav-opener-color: #fff;
  --nav-opener-color-active: rgba(255, 255, 255, .8)
}

.wd-nav[class*="wd-style-"] {
  --nav-color: #333;
  --nav-color-hover: rgba(51, 51, 51, .7);
  --nav-color-active: rgba(51, 51, 51, .7);
  --nav-chevron-color: rgba(82, 82, 82, .45)
}

.wd-nav[class*="wd-style-"]>li>a {
  color: #fff
}

.mobile-tab-title a {
  color: #333 !important;
}

.wd-nav[class*="wd-style-"]>li:hover>a {
  color: #C14C3B
}

.wd-nav[class*="wd-style-"]>li.current-menu-item>a,
.wd-nav[class*="wd-style-"]>li.wd-active>a {
  color: var(--nav-color-active)
}

.wd-nav[class*="wd-style-"]>li.wd-has-children>a:after,
.wd-nav[class*="wd-style-"]>li.menu-item-has-children>a:after {
  color: var(--nav-chevron-color)
}

.color-scheme-light .wd-nav[class*="wd-style-"],
.whb-color-light .wd-nav[class*="wd-style-"] {
  --nav-color: #fff;
  --nav-color-hover: rgba(255, 255, 255, .8);
  --nav-color-active: rgba(255, 255, 255, .8);
  --nav-chevron-color: rgba(255, 255, 255, .6)
}

.wd-nav.wd-style-default {
  --nav-color-hover: var(--wd-primary-color);
  --nav-color-active: var(--wd-primary-color)
}

.wd-nav.wd-style-bordered>li,
.wd-nav.wd-style-separated>li {
  display: flex;
  flex-direction: row
}

.wd-nav.wd-style-bordered>li:not(:last-child):after,
.wd-nav.wd-style-separated>li:not(:last-child):after {
  content: "";
  border-right: 1px solid #eee
}

.whb-color-light .wd-nav.wd-style-bordered>li:not(:last-child):after,
.whb-color-light .wd-nav.wd-style-separated>li:not(:last-child):after {
  border-color: rgba(255, 255, 255, .25)
}

.wd-nav.wd-style-separated>li {
  align-items: center
}

.wd-nav.wd-style-separated>li:not(:last-child):after {
  height: 18px
}

.wd-nav.wd-style-bordered>li {
  align-items: stretch
}

.wd-nav.wd-style-underline .nav-link-text {
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding-top: 1px;
  padding-bottom: 1px
}

.wd-nav.wd-style-underline .nav-link-text:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  height: 0;
  transition: width 0.4s cubic-bezier(.175, .885, .32, 1.15);
  background-color: var(--wd-primary-color)
}

.wd-nav.wd-style-underline>li:hover>a .nav-link-text:after,
.wd-nav.wd-style-underline>li.current-menu-item>a .nav-link-text:after,
.wd-nav.wd-style-underline>li.wd-active>a .nav-link-text:after {
  width: 100%
}

.menu-label {
  position: absolute;
  bottom: 85%;
  z-index: 1;
  display: inline-block;
  margin-left: -20px;
  padding: 2px 4px;
  color: #FFF;
  vertical-align: middle;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: .3px;
  font-weight: 600;
  font-size: 9px;
  font-family: var(--wd-text-font);
  line-height: 12px
}

.menu-label:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 10px;
  border: 4px solid;
  border-right-color: transparent!important;
  border-bottom-color: transparent!important;
  border-right-width: 7px;
  border-left-width: 0
}

.menu-label-black {
  background-color: #000;
  color: #FFF
}

.menu-label-black:before {
  border-color: #000
}

.menu-label-grey {
  background-color: #ECECEC;
  color: #333
}

.menu-label-grey:before {
  border-color: #ECECEC
}

.menu-label-orange {
  background-color: #FBBC34
}

.menu-label-orange:before {
  border-color: #FBBC34
}

.menu-label-blue {
  background-color: #00A1BE
}

.menu-label-blue:before {
  border-color: #00A1BE
}

.menu-label-white {
  background-color: #FFF;
  color: #333
}

.menu-label-white:before {
  border-color: #FFF
}

.menu-label-primary {
  background-color: var(--wd-primary-color)
}

.menu-label-primary:before {
  border-color: var(--wd-primary-color)
}

.menu-label-secondary {
  background-color: var(--wd-alternative-color)
}

.menu-label-secondary:before {
  border-color: var(--wd-alternative-color)
}

.menu-label-red {
  background-color: #D41212
}

.menu-label-red:before {
  border-color: #D41212
}

.menu-label-green {
  background-color: #65B32E
}

.menu-label-green:before {
  border-color: #65B32E
}

.whb-top-bar .wd-nav>li>a .menu-label,
.whb-clone .wd-nav>li>a .menu-label,
.wd-nav-vertical>li>a .menu-label {
  position: static;
  margin-left: 5px;
  opacity: 1
}

.whb-top-bar .wd-nav>li>a .menu-label:before,
.whb-clone .wd-nav>li>a .menu-label:before,
.wd-nav-vertical>li>a .menu-label:before {
  content: none
}

.wd-nav-vertical {
  display: flex;
  margin-right: 0;
  margin-left: 0;
  position: relative
}

.wd-nav-vertical>li {
  flex: 1 1 100%;
  max-width: 100%;
  width: 100%
}

.wd-nav-vertical>li:not(:last-child) {
  border-bottom: 2px solid rgba(129, 129, 129, .15);
  border-bottom: 2px solid #eee;
  background-color: transparent;
}

.dropdown-categories-inner .wd-nav-vertical>li:not(:last-child) {
  border-bottom: 2px solid #e5e5e5;
}

.dropdown-categories-inner .wd-nav-vertical>li:last-child,
.dropdown-categories-inner .wd-nav-vertical>li:last-child a {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.wd-nav-vertical>li>a {
  padding: 11px 18px;
  padding-left: 6px;
  line-height: 18px;
  color: #292A2C;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  background-color: transparent;
}

.dropdown-categories-inner .wd-nav-vertical>li>a {
  background-color: #f6f6f6;
}

.wd-nav-vertical>li:hover>a {
  background-color: #eee;
  color: rgba(51, 51, 51, .9)
}

.dropdown-categories-inner .wd-nav-vertical>li:hover>a {
  background-color: #e5e5e5;
}

.wd-nav-vertical>li.menu-mega-dropdown {
  position: static
}

.wd-nav-vertical>li.menu-item-has-children>a:after {
  color: rgba(82, 82, 82, .45);
  margin-left: auto;
  font-weight: 600;
  font-size: 60%;
  content: "\f113"
}

.wd-nav-vertical .wd-dropdown-menu.wd-design-sized,
.wd-nav-vertical .wd-dropdown-menu.wd-design-full-width {
  min-height: 100%
}

.wd-nav-vertical .wd-dropdown-menu.wd-design-full-width {
  width: 800px
}

.platform-Windows .wd-nav-vertical .wd-dropdown-menu.wd-design-full-width {
  padding-left: 35px
}

[class*="color-scheme-light"] .wd-nav-vertical>li:not(:last-child) {
  border-color: rgba(255, 255, 255, .15)
}

[class*="color-scheme-light"] .wd-nav-vertical>li>a {
  color: #fff
}

[class*="color-scheme-light"] .wd-nav-vertical>li:hover>a {
  background-color: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .8)
}

[class*="color-scheme-light"] .wd-nav-vertical>li.menu-item-has-children>a:after {
  color: rgba(255, 255, 255, .6)
}

.comment-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px
}

.comment-form>p,
.comment-form .comment-form-images,
.comment-form .comment-form-rating {
  flex: 1 1 220px;
  margin-bottom: 10px;
  padding-right: 10px;
  padding-left: 10px
}

.comment-form .woocommerce-error,
.comment-form .comment-notes,
.comment-form .comment-form-comment,
.comment-form .form-submit,
.comment-form .comment-form-rating,
.comment-form .comment-form-cookies-consent,
.comment-form .comment-form-images {
  flex-basis: 100%;
  max-width: 100%;
  width: 100%
}

.comment-form .woocommerce-error {
  margin-right: 10px;
  margin-left: 10px
}

.comment-form .comment-form-cookies-consent label {
  display: inline
}

.comment-form .comment-notes,
.comment-form .comment-form-rating {
  margin-bottom: 20px
}

.comment-form .form-submit {
  margin-top: 15px
}

.comment-form .submit {
  border-radius: var(--btn-accent-brd-radius);
  color: var(--btn-accent-color);
  box-shadow: var(--btn-accent-box-shadow);
  background-color: var(--btn-accent-bgcolor)
}

.comment-form .submit:hover {
  color: var(--btn-accent-color-hover);
  box-shadow: var(--btn-accent-box-shadow-hover);
  background-color: var(--btn-accent-bgcolor-hover)
}

.comment-form .submit:active {
  box-shadow: var(--btn-accent-box-shadow-active);
  bottom: var(--btn-accent-bottom-active)
}

.comment-form-img-message:before {
  margin-right: 7px;
  content: "\f100";
  font-family: "woodmart-font"
}

#comments .avatar,
.wd-user-panel .avatar {
  flex: 1 0 auto;
  margin-left: 0
}

.comments-area .comments-title,
.comments-area .comment-reply-title {
  text-transform: uppercase;
  font-size: 22px
}

.comments-area .comment-reply-title small {
  vertical-align: middle
}

.comments-area .comment-list {
  margin-bottom: 50px;
  line-height: 1.6
}

.comments-area .comment {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(119, 119, 119, .2)
}

.comments-area .pingback {
  margin-bottom: 15px
}

.comments-area .pingback .comment-body {
  padding-left: 0
}

.comments-area .pingback a {
  font-weight: 600
}

.comments-area .children {
  margin-top: 30px;
  margin-left: 30px;
  border-top: 1px solid rgba(119, 119, 119, .2);
  line-height: 1.6
}

.comments-area #cancel-comment-reply-link {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  font-size: 0
}

.comments-area #cancel-comment-reply-link:after {
  font-size: 12px;
  content: "\f112";
  font-family: "woodmart-font"
}

.comments-area .comment-body {
  position: relative;
  padding-left: 95px
}

.comments-area .comment-awaiting-moderation {
  position: absolute;
  top: -24px;
  left: 95px
}

.comments-area .comment-awaiting-moderation+br {
  display: none
}

.comments-area .comment-edit-link {
  display: inline-block;
  margin-left: 5px;
  font-size: 0
}

.comments-area .comment-edit-link:after {
  vertical-align: middle;
  font-size: 12px;
  content: "\f116";
  font-family: "woodmart-font"
}

.comments-area .comment-author {
  float: left;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 20px
}

.comments-area .comment-author:first-letter {
  text-transform: uppercase
}

.comments-area .comment-author .fn {
  color: #2d2a2a;
  vertical-align: top;
  font-weight: 600;
  font-style: normal
}

.comments-area .comment-author .says {
  margin-left: 3px;
  vertical-align: top
}

.comments-area .comment-author img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 74px;
  width: 100%;
  border-radius: 50%
}

.comments-area .comment-meta {
  margin-bottom: 15px;
  text-align: right;
  font-size: 14px;
  line-height: 20px
}

.comments-area .comment-meta a {
  color: #BBB;
  vertical-align: middle
}

.comments-area .reply {
  margin-top: 15px
}

.comments-area .reply a {
  text-transform: uppercase;
  font-weight: 900;
  color: var(--wd-primary-color)
}

.comments-area .reply a:hover {
  color: var(--wd-primary-color);
  opacity: .7
}

.comments-area .comment-respond {
  margin-top: 30px
}

.comments-area .logged-in-as {
  margin-bottom: 20px;
  font-size: 0
}

.comments-area .logged-in-as>a {
  color: #3f3f3f;
  font-weight: 600;
  font-size: 14px
}

.comments-area .logged-in-as>a:not(:last-child) {
  margin-right: 12px;
  padding-right: 10px;
  border-right: 1px solid rgba(119, 119, 119, .2)
}

.comments-area .logged-in-as>a:hover {
  color: var(--wd-primary-color)
}

.comments-area .no-comments {
  color: #333;
  font-weight: 600
}

.global-color-scheme-light .comments-area .comment,
.global-color-scheme-light .comments-area .children {
  border-color: rgba(255, 255, 255, .15)
}

.global-color-scheme-light .comments-area .logged-in-as>a:not(:last-child) {
  border-color: rgba(255, 255, 255, .15)
}

.global-color-scheme-light .comments-area .comment-author .fn {
  color: #fff
}

.global-color-scheme-light .comments-area .comment-meta a {
  color: rgba(255, 255, 255, .6)
}

.global-color-scheme-light .comments-area .logged-in-as>a {
  color: rgba(255, 255, 255, .9)
}

.global-color-scheme-light .comments-area .logged-in-as>a:hover {
  color: #fff
}

.comments-area .children .comment:last-child {
  padding-bottom: 0;
  border-bottom: none
}

.wd-tltp .wd-tooltip-label,
.tooltip {
  position: absolute;
  z-index: 1070;
  visibility: hidden;
  text-transform: none;
  letter-spacing: .3px;
  font-weight: 400;
  font-size: 12px;
  opacity: 0;
  pointer-events: none
}

.wd-tltp:hover .wd-tooltip-label,
.tooltip.show {
  visibility: visible;
  opacity: 1;
  animation: wd-fadeInTooltip .3s ease
}

.wd-tltp .wd-tooltip-label,
.tooltip .tooltip-inner {
  padding: 0 15px!important;
  max-width: 200px;
  height: 34px;
  border-radius: 0;
  background-color: #000;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  line-height: 34px
}

.wd-tltp .wd-tooltip-label:before,
.tooltip .arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent
}

.wd-tltp-top .wd-tooltip-label:before,
.tooltip.bs-tooltip-top .arrow {
  left: 50%;
  border-width: 5px 5px 0;
  border-top-color: #000
}

.wd-tltp-left .wd-tooltip-label {
  top: 50%;
  right: 100%;
  margin-top: -17px;
  margin-right: 8px
}

.wd-tltp-left .wd-tooltip-label:before {
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000
}

.wd-tltp-right .wd-tooltip-label {
  top: 50%;
  left: 100%;
  margin-top: -17px;
  margin-left: 8px
}

.wd-tltp-right .wd-tooltip-label:before {
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000
}

.wd-tltp-top .wd-tooltip-label {
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 8px
}

.wd-tltp-top .wd-tooltip-label:before {
  top: 100%;
  margin-left: -5px
}

.wd-tltp {
  position: relative
}

.wd-tltp .wd-tooltip-label:before {
  content: ""
}

.tooltip.bs-tooltip-top {
  margin-top: -3px;
  padding: 5px 0
}

.tooltip.bs-tooltip-top .arrow {
  bottom: 0
}

@keyframes wd-fadeInTooltip {
  from {
    opacity: 0
  }
  to {
    opacity: .9
  }
}

.wd-notice,
div.wpcf7-response-output,
.mc4wp-alert,
.woocommerce-error,
.woocommerce-message,
.woocommerce-info,
.dokan-alert,
.dokan-message,
.dokan-info,
.dokan-error,
.dokan-store-contact .alert-success,
.yith_ywraq_add_item_product_message {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 30px;
  padding-left: 65px;
  min-height: 60px;
  border: none;
  line-height: 1.3
}

.wd-notice:before,
div.wpcf7-response-output:before,
.mc4wp-alert:before,
.woocommerce-error:before,
.woocommerce-message:before,
.woocommerce-info:before,
.dokan-alert:before,
.dokan-message:before,
.dokan-info:before,
.dokan-error:before,
.dokan-store-contact .alert-success:before,
.yith_ywraq_add_item_product_message:before {
  position: absolute;
  top: 50%;
  left: 24px;
  margin-top: -9px;
  font-size: 18px;
  line-height: 18px;
  font-family: "woodmart-font"
}

.wd-notice a,
div.wpcf7-response-output a,
.mc4wp-alert a,
.woocommerce-error a,
.woocommerce-message a,
.woocommerce-info a,
.dokan-alert a,
.dokan-message a,
.dokan-info a,
.dokan-error a,
.dokan-store-contact .alert-success a,
.yith_ywraq_add_item_product_message a {
  color: #FFF;
  text-decoration: underline
}

.wd-notice a:hover,
div.wpcf7-response-output a:hover,
.mc4wp-alert a:hover,
.woocommerce-error a:hover,
.woocommerce-message a:hover,
.woocommerce-info a:hover,
.dokan-alert a:hover,
.dokan-message a:hover,
.dokan-info a:hover,
.dokan-error a:hover,
.dokan-store-contact .alert-success a:hover,
.yith_ywraq_add_item_product_message a:hover {
  color: rgba(255, 255, 255, .8)
}

.wd-notice p:last-child,
div.wpcf7-response-output p:last-child,
.mc4wp-alert p:last-child,
.woocommerce-error p:last-child,
.woocommerce-message p:last-child,
.woocommerce-info p:last-child,
.dokan-alert p:last-child,
.dokan-message p:last-child,
.dokan-info p:last-child,
.dokan-error p:last-child,
.dokan-store-contact .alert-success p:last-child,
.yith_ywraq_add_item_product_message p:last-child {
  margin-bottom: 0
}

.wd-notice .amount,
div.wpcf7-response-output .amount,
.mc4wp-alert .amount,
.woocommerce-error .amount,
.woocommerce-message .amount,
.woocommerce-info .amount,
.dokan-alert .amount,
.dokan-message .amount,
.dokan-info .amount,
.dokan-error .amount,
.dokan-store-contact .alert-success .amount,
.yith_ywraq_add_item_product_message .amount {
  color: #FFF
}

.wd-notice>*,
div.wpcf7-response-output>*,
.mc4wp-alert>*,
.woocommerce-error>*,
.woocommerce-message>*,
.woocommerce-info>*,
.dokan-alert>*,
.dokan-message>*,
.dokan-info>*,
.dokan-error>*,
.dokan-store-contact .alert-success>*,
.yith_ywraq_add_item_product_message>* {
  margin-right: 10px;
  margin-left: 10px
}

.wd-notice .button,
div.wpcf7-response-output .button,
.mc4wp-alert .button,
.woocommerce-error .button,
.woocommerce-message .button,
.woocommerce-info .button,
.dokan-alert .button,
.dokan-message .button,
.dokan-info .button,
.dokan-error .button,
.dokan-store-contact .alert-success .button,
.yith_ywraq_add_item_product_message .button,
.wd-notice .wc-backward,
div.wpcf7-response-output .wc-backward,
.mc4wp-alert .wc-backward,
.woocommerce-error .wc-backward,
.woocommerce-message .wc-backward,
.woocommerce-info .wc-backward,
.dokan-alert .wc-backward,
.dokan-message .wc-backward,
.dokan-info .wc-backward,
.dokan-error .wc-backward,
.dokan-store-contact .alert-success .wc-backward,
.yith_ywraq_add_item_product_message .wc-backward {
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 0;
  border: none;
  border-bottom: 2px solid #FFF;
  background-color: transparent;
  color: #FFF;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600
}

.wd-notice .button:hover,
div.wpcf7-response-output .button:hover,
.mc4wp-alert .button:hover,
.woocommerce-error .button:hover,
.woocommerce-message .button:hover,
.woocommerce-info .button:hover,
.dokan-alert .button:hover,
.dokan-message .button:hover,
.dokan-info .button:hover,
.dokan-error .button:hover,
.dokan-store-contact .alert-success .button:hover,
.yith_ywraq_add_item_product_message .button:hover,
.wd-notice .wc-backward:hover,
div.wpcf7-response-output .wc-backward:hover,
.mc4wp-alert .wc-backward:hover,
.woocommerce-error .wc-backward:hover,
.woocommerce-message .wc-backward:hover,
.woocommerce-info .wc-backward:hover,
.dokan-alert .wc-backward:hover,
.dokan-message .wc-backward:hover,
.dokan-info .wc-backward:hover,
.dokan-error .wc-backward:hover,
.dokan-store-contact .alert-success .wc-backward:hover,
.yith_ywraq_add_item_product_message .wc-backward:hover {
  background-color: transparent;
  box-shadow: none;
  opacity: .7
}

.wd-notice .button:focus,
div.wpcf7-response-output .button:focus,
.mc4wp-alert .button:focus,
.woocommerce-error .button:focus,
.woocommerce-message .button:focus,
.woocommerce-info .button:focus,
.dokan-alert .button:focus,
.dokan-message .button:focus,
.dokan-info .button:focus,
.dokan-error .button:focus,
.dokan-store-contact .alert-success .button:focus,
.yith_ywraq_add_item_product_message .button:focus,
.wd-notice .wc-backward:focus,
div.wpcf7-response-output .wc-backward:focus,
.mc4wp-alert .wc-backward:focus,
.woocommerce-error .wc-backward:focus,
.woocommerce-message .wc-backward:focus,
.woocommerce-info .wc-backward:focus,
.dokan-alert .wc-backward:focus,
.dokan-message .wc-backward:focus,
.dokan-info .wc-backward:focus,
.dokan-error .wc-backward:focus,
.dokan-store-contact .alert-success .wc-backward:focus,
.yith_ywraq_add_item_product_message .wc-backward:focus {
  box-shadow: none
}

.wpcf7 form.sent .wpcf7-response-output,
.mc4wp-success,
.woocommerce-message,
.dokan-store-contact .alert-success,
.dokan-alert-success,
.dokan-message,
.yith_ywraq_add_item_product_message {
  background-color: var(--notices-success-bg);
  color: var(--notices-success-color)
}

.wpcf7 form.sent .wpcf7-response-output:before,
.mc4wp-success:before,
.woocommerce-message:before,
.dokan-store-contact .alert-success:before,
.dokan-alert-success:before,
.dokan-message:before,
.yith_ywraq_add_item_product_message:before {
  content: "\f107"
}

.wpcf7 form:not(.sent) .wpcf7-response-output,
.mc4wp-error,
.mc4wp-notice,
.woocommerce-error,
.woocommerce-info,
.dokan-alert-warning,
.dokan-alert-danger,
.dokan-alert-info,
.dokan-error,
.dokan-info {
  background-color: var(--notices-warning-bg);
  color: var(--notices-warning-color)
}

.wpcf7 form:not(.sent) .wpcf7-response-output:before,
.mc4wp-error:before,
.mc4wp-notice:before,
.woocommerce-error:before,
.woocommerce-info:before,
.dokan-alert-warning:before,
.dokan-alert-danger:before,
.dokan-alert-info:before,
.dokan-error:before,
.dokan-info:before {
  content: "\f100"
}

.wd-notice.wd-info {
  background-color: #4D93D1;
  color: #fff
}

.wd-notice.wd-info:before {
  content: "\f100"
}

@keyframes wd-fadeInUpBig {
  from {
    transform: translate3d(0, 100%, 0)
  }
  to {
    transform: none
  }
}

@keyframes wd-fadeOutDownBig {
  from {
    transform: none
  }
  to {
    transform: translate3d(0, 100%, 0)
  }
}

.wd-close-side {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, .7);
  transition: opacity 0.5s cubic-bezier(.19, 1, .22, 1), visibility 0s cubic-bezier(.19, 1, .22, 1) 0.5s
}

.global-color-scheme-light .wd-close-side {
  background-color: rgba(0, 0, 0, .8)
}

.wd-close-side-opened {
  opacity: 1;
  visibility: visible;
  transition: opacity .25s ease, visibility 0s ease
}

.wd-btn-arrow {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  color: #333;
  position: absolute;
  top: 50%;
  z-index: 250;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -25px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: all .25s ease
}

.wd-btn-arrow[class*="prev"] {
  /*transform: translateX(-30px)*/
}

.wd-btn-arrow[class*="prev"]:after {
  content: "\f114";
  font-family: "woodmart-font"
}

.wd-btn-arrow[class*="next"] {
  /*transform: translateX(30px)*/
}

.wd-btn-arrow[class*="next"]:after {
  content: "\f113";
  font-family: "woodmart-font"
}

.browser-Safari .wd-btn-arrow {
  visibility: visible
}

.wd-btn-arrow:after {
  font-size: 30px;
  line-height: 1
}

@media (max-width: 767px) {
  .wd-btn-arrow:after {
    font-weight: 500 !important;
    font-size: 20px !important;
  }
}

.wd-btn-arrow:hover {
  color: #3da54a
}

.wd-loop-footer {
  clear: both;
  text-align: center
}

.elementor-default .wd-loop-footer {
  margin-top: 35px
}

.wpb-js-composer .products-footer {
  margin-top: 1rem
}

nav[class*="-pagination"] ul {
  display: inline-block;
  font-size: 0
}

nav[class*="-pagination"] li {
  display: inline-block;
  margin-left: 1px;
  margin-right: 1px;
  vertical-align: middle;
  text-align: center
}

nav[class*="-pagination"] li .page-numbers {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
  margin-left: 2px;
  margin-right: 2px;
  min-width: 32px;
  height: 34px;
  color: #292A2C;
  font-weight: 600;
  font-size: .85rem;
  line-height: 34px;
  border-radius: 0;
  transition: all .2s ease
}

@media (max-width: 767px) {
  nav[class*="-pagination"] li .page-numbers {
    background-color: #eee;
  }
}

nav[class*="-pagination"] li .current {
  color: #FFF;
  background-color: #dc3936;
  cursor: default;
}

nav[class*="-pagination"] li .next,
nav[class*="-pagination"] li .prev {
  font-size: 0
}

nav[class*="-pagination"] li .next:before,
nav[class*="-pagination"] li .prev:before {
  font-size: 12px;
  content: "\f113";
  font-family: "woodmart-font"
}

nav[class*="-pagination"] li .prev:before {
  content: "\f114";
  font-family: "woodmart-font"
}

nav[class*="-pagination"] li:last-child {
  margin-right: 0
}

nav[class*="-pagination"] a:hover {
  background-color: #EEE
}

.woocommerce-Reviews nav[class*="-pagination"] {
  margin-top: 10px;
  margin-bottom: 15px
}

.global-color-scheme-light nav[class*="-pagination"] li .page-numbers {
  color: #fff
}

.global-color-scheme-light nav[class*="-pagination"] a:hover {
  background-color: rgba(0, 0, 0, .3);
  color: #fff
}

.breadcrumbs {
  font-size: 0
}

.breadcrumbs>span:after,
.breadcrumbs>a:after {
  content: "/";
  display: inline-block;
  padding: 0 8px
}

.breadcrumbs>span:last-child:after {
  content: none
}

.breadcrumbs,
.yoast-breadcrumb {
  line-height: 16px
}

.breadcrumbs>span,
.breadcrumbs>a,
.yoast-breadcrumb>span,
.yoast-breadcrumb>a {
  display: inline-block
}

.breadcrumbs a,
.breadcrumbs span,
.yoast-breadcrumb a,
.yoast-breadcrumb span {
  text-transform: uppercase;
  letter-spacing: .3px;
  font-weight: 600;
  font-size: 11px
}

.breadcrumbs span,
.yoast-breadcrumb span {
  transition: all .25s ease
}

[class*="color-scheme-light"] .breadcrumbs,
[class*="color-scheme-light"] .yoast-breadcrumb {
  color: #FFF
}

[class*="color-scheme-light"] .breadcrumbs a,
[class*="color-scheme-light"] .breadcrumbs span,
[class*="color-scheme-light"] .yoast-breadcrumb a,
[class*="color-scheme-light"] .yoast-breadcrumb span {
  color: #FFF
}

[class*="color-scheme-light"] .breadcrumbs a:hover,
[class*="color-scheme-light"] .yoast-breadcrumb a:hover {
  color: rgba(255, 255, 255, .7)
}

.wd-action-btn {
  display: inline-flex;
  vertical-align: middle;
  --action-btn-color: #292A2C;
  --action-btn-hover-color: rgba(51, 51, 51, .6)
}

.wd-action-btn>a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--action-btn-color);
  cursor: pointer
}

.wd-action-btn>a:hover {
  color: var(--action-btn-hover-color)
}

.wd-action-btn>a:before {
  font-family: "woodmart-font"
}

.wd-action-btn>a:after {
  opacity: 0;
  transition: opacity .2s ease;
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid #BBB;
  border-left-color: #333;
  border-radius: 50%;
  vertical-align: middle
}

.wd-action-btn>a.loading:before {
  opacity: 0
}

.wd-action-btn>a.loading:after {
  opacity: 1;
  animation: wd-rotate 450ms infinite linear
}

.wd-action-btn>a.added:before {
  content: "\f107"
}

.wd-action-btn.wd-style-icon .button {
  padding: 0;
  background-color: transparent;
  letter-spacing: 0
}

.wd-action-btn.wd-style-icon .button:hover {
  background-color: transparent;
  box-shadow: none
}

.wd-action-btn.wd-style-icon>a {
  position: relative;
  flex-direction: column;
  width: 50px;
  height: 50px;
  font-weight: 400;
  font-size: 0;
  line-height: 0
}

.wd-action-btn.wd-style-icon>a:before {
  /*
  font-size: 20px;
  transition: opacity .15s ease*/
}

.wd-action-btn.wd-style-icon>a:after {
  /*
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -9px;
  margin-left: -9px;
  width: 18px;
  height: 18px*/
}

.wd-action-btn.wd-style-text {
  font-size: 0;
  line-height: 1
}

.wd-action-btn.wd-style-text>a {
  position: relative;
  font-weight: 600;
  font-size: 13px;
  line-height: 1
}

.wd-action-btn.wd-style-text>a:before {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  width: 14px;
  height: 14px;
  font-weight: 400
}

.wd-action-btn.wd-style-text>a:after {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -7px
}

[class*="color-scheme-light"] .wd-action-btn {
  --action-btn-color: #fff;
  --action-btn-hover-color: rgba(255, 255, 255, .8)
}

[class*="color-scheme-light"] .wd-action-btn>a:after {
  border-color: rgba(255, 255, 255, .15);
  border-left-color: #fff
}

.wd-action-btn:empty {
  display: none
}

.wd-compare-icon>a:before {
  content: "\f128"
}

.wd-wishlist-icon>a:before {
  content: "\f106"
}

.wd-quick-view-icon>a:before {
  content: "\f130"
}

.wd-add-cart-icon>a:before {
  /*content: "\f123"*/
}

.wd-cross-icon>a:before {
  font-size: 10px;
  content: "\f112"
}

.wd-cross-icon.wd-style-text>a:before {
  font-weight: 600
}

.wd-chevron-icon>a:before {
  content: "\f129"
}

.widget,
.wd-widget,
div[class^="vc_wp"] {
  --wd-link-color: #727272;
  --wd-link-color-hover: #333;
  line-height: 1.4
}

.widget>ul,
.widget>ol,
.wd-widget>ul,
.wd-widget>ol,
div[class^="vc_wp"]>ul,
div[class^="vc_wp"]>ol {
  margin-top: 0
}

.widget ul,
.widget ol,
.wd-widget ul,
.wd-widget ol,
div[class^="vc_wp"] ul,
div[class^="vc_wp"] ol {
  --list-mb: 0;
  --li-mb: 15px;
  list-style: none;
  --li-pl: 0
}

[class*="color-scheme-light"] .widget,
[class*="color-scheme-light"] .wd-widget,
[class*="color-scheme-light"] div[class^="vc_wp"] {
  --wd-link-color: rgba(255, 255, 255, .8);
  --wd-link-color-hover: #FFF
}

.widgettitle,
.widget-title {
  margin-bottom: 1rem;
  color: #292A2C;
  font-weight: 700;
  /*color: var(--wd-widget-title-color);*/
  text-transform: var(--wd-widget-title-transform);
  /*font-weight: var(--wd-widget-title-font-weight);*/
  font-style: var(--wd-widget-title-font-style);
  font-size: 13px;
  font-family: var(--wd-widget-title-font)
}

.widget {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #eee
}

.widget:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none
}

[class*="color-scheme-light"] .widget {
  border-color: rgba(255, 255, 255, .25)
}

.woodmart-author-information {
  line-height: inherit
}

.woodmart-author-information .author-avatar img {
  border-radius: 50%
}

.textwidget>*:last-child {
  margin-bottom: 0
}

.alignleft {
  float: left;
  margin-top: 3px;
  margin-right: 25px;
  margin-bottom: 20px
}

.alignright {
  float: right;
  margin-top: 3px;
  margin-bottom: 20px;
  margin-left: 25px
}

.aligncenter {
  display: block;
  clear: both;
  margin: 0 auto;
  margin-bottom: 20px
}

.wp-caption {
  margin-bottom: 20px;
  padding: 0;
  max-width: 100%;
  border: none;
  background: transparent
}

.wp-caption.alignleft {
  margin-top: 3px;
  margin-right: 25px
}

.wp-caption.alignright {
  margin-top: 3px;
  margin-left: 25px
}

.wp-caption.aligncenter {
  margin: 0 auto;
  margin-top: 3px
}

.wp-caption .wp-caption-text,
.wp-caption-dd {
  padding: 5px 10px 5px 0;
  font-style: italic;
  line-height: 1.6;
  opacity: .8
}

.gallery-caption,
.bypostauthor {
  content: initial
}

.gallery {
  margin-left: -15px;
  margin-right: -15px
}

.gallery .gallery-item {
  padding-left: 15px;
  padding-right: 15px
}

.gallery .gallery-caption {
  margin-top: 10px;
  font-style: italic
}

body .wp-playlist {
  border: none;
  text-align: left
}

body .wp-playlist-item {
  border-color: rgba(119, 119, 119, .2)
}

body .wp-playlist-item:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px
}

body.global-color-scheme-light .wp-playlist-item {
  border-color: rgba(255, 255, 255, .15)
}

.website-wrapper {
  position: relative;
  overflow: hidden;
  background-color: #FFF
}

.global-color-scheme-light .website-wrapper {
  background-color: #1a1a1a
}

.main-page-wrapper {
  margin-top: 0;
  padding-top: 0;
  /*min-height: 50vh;*/
  background-color: #FFF
}

.global-color-scheme-light .main-page-wrapper {
  background-color: #1a1a1a
}

.site-content {
  margin-bottom: 3rem
}

@media (max-width: 767px) {
  .site-content {
    margin-bottom: 2rem
  }
}

.sidebar-container {
  margin-bottom: 40px
}

.sidebar-container .widget-heading {
  display: none
}

.subtitle-style-background[class*="subtitle"] {
  display: inline-block;
  padding: 6px 10px;
  font-weight: 600;
  line-height: 1.2;
  font-size: 14px
}

.subtitle-color-default.subtitle-style-default {
  color: var(--color-gray-400)
}

.subtitle-color-default.subtitle-style-background {
  background-color: #f1f1f1;
  color: #333
}

.subtitle-color-primary.subtitle-style-default {
  color: var(--wd-primary-color)
}

.subtitle-color-primary.subtitle-style-background {
  color: #fff;
  background-color: var(--wd-primary-color)
}

.subtitle-color-alt.subtitle-style-default {
  color: var(--wd-alternative-color)
}

.subtitle-color-alt.subtitle-style-background {
  color: #fff;
  background-color: var(--wd-alternative-color)
}

.btn.btn-scheme-light {
  color: #fff
}

.btn.btn-scheme-dark {
  color: #333
}

.btn.btn-scheme-hover-light:hover {
  color: #fff
}

.btn.btn-scheme-hover-dark:hover {
  color: #333
}

.btn.btn-color-default {
  background-color: #F3F3F3;
  color: #3E3E3E
}

.btn.btn-color-default:hover {
  color: #3E3E3E;
  box-shadow: inset 0 0 200px rgba(0, 0, 0, .1)
}

.btn.btn-color-black {
  background-color: #212121;
  color: #FFF
}

.btn.btn-color-black:hover {
  color: #FFF;
  box-shadow: inset 0 0 200px rgba(0, 0, 0, .1)
}

.btn.btn-color-white {
  background-color: #FFF;
  color: #333
}

.btn.btn-color-white:hover {
  color: #333;
  box-shadow: inset 0 0 200px rgba(0, 0, 0, .1)
}

.btn.btn-color-alt {
  color: #FFF;
  background-color: var(--wd-alternative-color)
}

.btn.btn-color-alt:hover {
  color: #FFF;
  box-shadow: inset 0 0 200px rgba(0, 0, 0, .1)
}

.btn.btn-color-primary {
  color: #FFF;
  background-color: var(--wd-primary-color)
}

.btn.btn-color-primary:hover {
  color: #FFF;
  box-shadow: inset 0 0 200px rgba(0, 0, 0, .1)
}

.btn-style-bordered.btn-color-default {
  border-color: #E9E9E9;
  color: #333
}

.btn-style-bordered.btn-color-default:hover {
  background-color: #E9E9E9;
  color: #333
}

.btn-style-bordered.btn-color-primary {
  color: var(--wd-primary-color);
  border-color: var(--wd-primary-color)
}

.btn-style-bordered.btn-color-primary:hover {
  color: #FFF;
  background-color: var(--wd-primary-color)
}

.btn-style-bordered.btn-color-alt {
  color: var(--wd-alternative-color);
  border-color: var(--wd-alternative-color)
}

.btn-style-bordered.btn-color-alt:hover {
  color: #FFF;
  background-color: var(--wd-alternative-color)
}

.btn-style-bordered.btn-color-black {
  border-color: #212121;
  color: #333
}

.btn-style-bordered.btn-color-black:hover {
  background-color: #212121;
  color: #FFF
}

.btn-style-bordered.btn-color-white {
  border-color: rgba(255, 255, 255, .5);
  color: #FFF
}

.btn-style-bordered.btn-color-white:hover {
  border-color: #FFF;
  background-color: transparent;
  color: #FFF
}

.btn-style-link.btn-color-default {
  border-color: #DFDFDF;
  color: #333
}

.btn-style-link.btn-color-default:hover {
  border-color: #C5C5C5;
  color: #333
}

.btn-style-link.btn-color-primary {
  color: #333;
  border-color: var(--wd-primary-color)
}

.btn-style-link.btn-color-primary:hover {
  color: #333;
  opacity: .6;
  border-color: var(--wd-primary-color)
}

.btn-style-link.btn-color-alt {
  color: #333;
  border-color: var(--wd-alternative-color)
}

.btn-style-link.btn-color-alt:hover {
  color: #333;
  border-color: var(--wd-alternative-color);
  opacity: .6
}

.btn-style-link.btn-color-black {
  border-color: #333;
  color: #333
}

.btn-style-link.btn-color-black:hover {
  border-color: #333;
  color: #333;
  opacity: .6
}

.btn-style-link.btn-color-white {
  border-color: rgba(255, 255, 255, .3);
  color: #FFF
}

.btn-style-link.btn-color-white:hover {
  border-color: #FFF;
  color: #FFF
}

.btn-color-custom.btn-style-3d:hover {
  opacity: 1!important
}

.btn-size-extra-small {
  padding: 6px 10px;
  font-size: 11px;
  line-height: 16px
}

.btn-size-small {
  padding: 10px 14px;
  font-size: 12px;
  line-height: 16px
}

.btn-size-default {
  padding: 12px 20px;
  font-size: 13px;
  line-height: 18px
}

.btn-size-large {
  padding: 14px 28px;
  font-size: 14px;
  line-height: 20px
}

.btn-size-extra-large {
  padding: 17px 40px;
  font-size: 16px;
  line-height: 22px
}

.btn-style-bordered.btn-size-extra-small {
  padding: 4px 10px
}

.btn-style-bordered.btn-size-small {
  padding: 8px 14px
}

.btn-style-bordered.btn-size-default {
  padding: 10px 20px
}

.btn-style-bordered.btn-size-large {
  padding: 12px 28px
}

.btn-style-bordered.btn-size-extra-large {
  padding: 15px 40px
}

.btn.btn-style-round {
  border-radius: 35px
}

.btn.btn-style-semi-round {
  border-radius: 5px
}

.btn.btn-style-3d {
  border: none;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .15);
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow 0s ease, opacity .25s ease
}

.btn.btn-style-3d:hover {
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .15);
  opacity: .8
}

.btn.btn-style-3d:active {
  top: 1px;
  box-shadow: none
}

.btn.btn-full-width {
  width: 100%
}

.btn.btn-style-link {
  padding: 0;
  border-width: 2px;
  border-style: solid;
  border-top: none;
  border-right: none;
  border-left: none;
  background-color: transparent!important
}

.btn.btn-style-link:hover {
  background-color: transparent!important;
  box-shadow: none
}

.btn.btn-style-bordered {
  border-width: 2px
}

.btn.btn-style-bordered:not(:hover) {
  background-color: transparent!important
}

.btn.btn-style-bordered:hover {
  box-shadow: none
}

.btn-shape-round {
  border-radius: 35px
}

.btn-shape-semi-round {
  border-radius: 5px
}

.btn i {
  margin-left: 3px
}

.btn-icon-pos-left {
  flex-direction: row-reverse
}

.btn-icon-pos-left .wd-btn-icon {
  margin-right: 5px
}

.btn-icon-pos-right {
  flex-direction: row
}

.btn-icon-pos-right .wd-btn-icon {
  margin-left: 5px
}

.wpb-js-composer .wd-button-wrapper.inline-element {
  margin-bottom: 10px
}

[class*="color-scheme-light"] .author-area .btn {
  border-color: rgba(255, 255, 255, .3);
  color: #FFF
}

[class*="color-scheme-light"] .author-area .btn:hover {
  border-color: #FFF;
  color: #FFF
}

.search-no-results .page-title .breadcrumbs,
.search-no-results .page-title .yoast-breadcrumb {
  display: none
}

.search-no-results.woocommerce .woocommerce-info {
  margin-bottom: 30px
}

@media (min-width:769px) {
  .searchform.wd-with-cat input[type="text"] {
    padding-right: 230px
  }
}

@media (min-width:1025px) {
  .wd-scroll {
    --scrollbar-track-bg: rgba(0, 0, 0, .05);
    --scrollbar-thumb-bg: rgba(0, 0, 0, .12)
  }
  .wd-scroll ::-webkit-scrollbar {
    width: 5px
  }
  .wd-scroll ::-webkit-scrollbar-track {
    background-color: var(--scrollbar-track-bg)
  }
  .wd-scroll ::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb-bg)
  }
  [class*="color-scheme-light"] .wd-scroll,
  .wd-scroll.color-scheme-light {
    --scrollbar-track-bg: rgba(255, 255, 255, .05);
    --scrollbar-thumb-bg: rgba(255, 255, 255, .12)
  }
  .admin-bar .cart-widget-side,
  .admin-bar .mobile-nav,
  .admin-bar #cboxClose,
  .admin-bar button.mfp-close,
  .admin-bar .wd-fs-close {
    top: 32px
  }
  .wrapper-full-width-content div[class*="wd-carousel-spacing"] .owl-nav>div[class*="prev"] {
    margin-left: 20px
  }
  .wrapper-full-width-content div[class*="wd-carousel-spacing"] .owl-nav>div[class*="next"] {
    margin-right: 20px
  }
}

@media (min-width:1200px) {
  .wrapper-full-width-content .container {
    max-width: 100%
  }
}

@media (max-width:1024px) {
  .wd-fontsize-xl,
  .wd-fontsize-xxl,
  .wd-fontsize-xxxl {
    font-size: 22px
  }
  .text-larger {
    font-size: inherit
  }
  .wd-side-hidden {
    width: 300px;
    z-index: 99999
  }
  .autocomplete-suggestion {
    padding: 10px
  }
  .autocomplete-suggestion .suggestion-thumb {
    max-width: 45px
  }
  .autocomplete-suggestion .wd-entities-title,
  .autocomplete-suggestion .price {
    font-size: 12px
  }
  .wd-nav-wrapper.wd-mb-action-swipe {
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    -webkit-mask-image: linear-gradient(to left, transparent, black 70px);
    mask-image: linear-gradient(to left, transparent, black 70px)
  }
  .wd-nav-wrapper.wd-mb-action-swipe .wd-nav {
    flex-wrap: nowrap
  }
  .wd-tltp:not(.wd-add-img-msg) .wd-tooltip-label {
    display: none!important
  }
  .wd-close-side {
    top: -150px;
    height: calc(100vh + 300px)
  }
  .wd-btn-arrow[class*="prev"],
  .wd-btn-arrow[class*="next"] {
    transform: translateX(0)
  }
  .wd-btn-arrow[class*="prev"] {
    justify-content: flex-start
  }
  .wd-btn-arrow[class*="next"] {
    justify-content: flex-end
  }
  .wd-btn-arrow {
    margin-top: -20px;
    width: 40px;
    height: 40px
  }
  .wd-btn-arrow:after {
    font-weight: 700;
    font-size: 14px
  }
  #wpadminbar {
    position: absolute
  }
}

@media (max-width:768px) {
  .wd-hide-sm {
    display: none!important
  }
  .wd-spacing-30,
  .wd-spacing-20 {
    margin-right: -5px;
    margin-left: -5px
  }
  .elementor-default .wd-spacing-30,
  .elementor-default .wd-spacing-20 {
    margin-bottom: -10px
  }
  .wd-spacing-30>[class*="col"],
  .wd-spacing-20>[class*="col"] {
    margin-bottom: 10px;
    padding-right: 5px;
    padding-left: 5px
  }
  div[class*="wd-columns-"]>div {
    flex-basis: 100%;
    max-width: 100%;
    width: 100%
  }
  .wd-search-cat {
    display: none
  }
  .comments-area .children {
    margin-left: 0
  }
  .comments-area .comment-author {
    float: none
  }
  .comments-area .comment-meta {
    text-align: left
  }
}

@media (min-width:769px) and (max-width:1024px) {
  .wd-hide-md-sm {
    display: none!important
  }
  .wd-columns-3>div {
    flex-basis: 50%;
    max-width: 50%;
    width: 50%
  }
  .wd-columns-4>div {
    flex-basis: 50%;
    max-width: 50%;
    width: 50%
  }
  .wd-columns-5>div {
    flex-basis: 50%;
    max-width: 50%;
    width: 50%
  }
  .wd-columns-6>div {
    flex-basis: 50%;
    max-width: 50%;
    width: 50%
  }
}

.xtemos-category-list .tab-preview-count {
  color: #46a50b
}

.xtemos-category-list .tab-preview-name:after {
  background-color: #46a50b
}

.xtemos-category-list .tab-preview-name {
  font-family: "Roboto", Arial, Helvetica, sans-serif
}

.xtemos-demos-animation-inner {
  overflow: hidden
}

.xtemos-demos-preview-wrapper {
  position: relative;
  z-index: 490
}

.xtemos-show-demos-preview {
  position: fixed;
  top: 65%;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  height: 65px;
  line-height: 65px;
  width: 65px;
  background-color: rgba(0, 0, 0, .85);
  -webkit-transition: transform .3s ease .4s, background-color .25s ease;
  transition: transform .3s ease .4s, background-color .25s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 800px;
  -webkit-perspective: 800px
}

.xtemos-show-demos-preview .xtemos-text-demo {
  display: block;
  position: relative;
  color: #fff;
  font-weight: 900;
  z-index: 2
}

.xtemos-show-demos-preview .xtemos-demo-count {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 65px;
  line-height: 65px;
  width: 65px;
  font-size: 42px;
  font-weight: 600;
  color: rgba(255, 255, 255, .1)
}

.xtemos-show-demos-preview:hover {
  background-color: #000
}

.xtemos-demos-preview {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(255, 255, 255, .98);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 800px;
  -webkit-perspective: 800px;
  transform: translateY(100%) translateZ(0);
  -webkit-transform: translateY(100%) translateZ(0);
  -webkit-transition: transform .4s ease, opacity .4s ease, visibility .4s ease;
  transition: transform .4s ease, opacity .4s ease, visibility .4s ease
}

.browser-Safari .xtemos-demos-preview,
.dropdowns-color-light .xtemos-demos-preview {
  visibility: visible
}

.dropdowns-color-light .xtemos-demos-preview,
.global-color-scheme-light .xtemos-demos-preview {
  background-color: #101010
}

.xtemos-demos-tab-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: stretch
}

.xtemos-demos-tab-wrapper .xtemos-demos-preview-info {
  flex: 0 0 auto
}

.xtemos-demos-tab-wrapper .xtemos-demo-tabs {
  flex: 1 1 auto
}

.xtemos-demos-preview-info {
  text-align: center;
  margin-bottom: 15px
}

.xtemos-demos-preview-info>.xtemos-demos-animation-inner {
  margin-bottom: 10px
}

.xtemos-demos-preview-info>.xtemos-demos-animation-inner:last-child {
  margin-bottom: 0
}

.xtemos-demos-preview-title {
  position: relative;
  color: #252525;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -.8px;
  margin-bottom: 0
}

.dropdowns-color-light .xtemos-demos-preview-title {
  color: #fff
}

.demos-search {
  position: relative;
  max-width: 550px;
  margin: 0 auto
}

.demos-search input {
  padding-left: 50px!important;
  padding-right: 0;
  border: none;
  border-bottom: 2px solid rgba(129, 129, 129, .2);
  border-radius: 0!important
}

.demos-search:after {
  content: "\f130";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: #4a4a4a;
  font-family: woodmart-font
}

.dropdowns-color-light .demos-search input,
.global-color-scheme-light .demos-search input {
  color: #fff;
  border-color: rgba(255, 255, 255, .25)
}

.dropdowns-color-light .demos-search input:focus,
.global-color-scheme-light .demos-search input:focus {
  border-color: rgba(255, 255, 255, .5)
}

.dropdowns-color-light .demos-search:after,
.global-color-scheme-light .demos-search:after {
  color: rgba(255, 255, 255, .8)
}

.dropdowns-color-light .demos-search :-moz-placeholder,
.dropdowns-color-light .demos-search :-ms-input-placeholder,
.dropdowns-color-light .demos-search ::-moz-placeholder,
.dropdowns-color-light .demos-search ::-webkit-input-placeholder,
.global-color-scheme-light .demos-search :-moz-placeholder,
.global-color-scheme-light .demos-search :-ms-input-placeholder,
.global-color-scheme-light .demos-search ::-moz-placeholder,
.global-color-scheme-light .demos-search ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, .6)
}

.xtemos-demos-preview-text {
  font-size: 110%;
  margin-bottom: 0
}

.dropdowns-color-light .xtemos-demos-preview-text {
  color: rgba(255, 255, 255, .8)
}

.xtemos-category-list {
  text-align: center;
  -webkit-user-select: none;
  user-select: none;
  list-style: none;
  margin: 0;
  padding: 0
}

.xtemos-category-list .xtemos-category-item {
  display: inline-block;
  font-size: 16px;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 600;
  color: #777;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  cursor: pointer;
  position: relative;
  transition: color .25s ease;
  -webkit-transition: color .25s ease
}

.xtemos-category-list .xtemos-category-item>a {
  transition: none;
  -webkit-transition: none
}

.xtemos-category-list .xtemos-category-item.active,
.xtemos-category-list .xtemos-category-item:hover {
  color: #333
}

.xtemos-category-list .xtemos-category-item.active .tab-preview-name:after,
.xtemos-category-list .xtemos-category-item:hover .tab-preview-name:after {
  width: 100%
}

.xtemos-category-list .tab-preview-name {
  position: relative;
  color: inherit;
  display: inline-block;
  padding-top: 1px;
  padding-bottom: 1px;
  margin-right: 2px;
  vertical-align: middle
}

.xtemos-category-list .tab-preview-name:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  transition: width .4s cubic-bezier(.175, .885, .32, 1.15);
  -webkit-transition: width .4s cubic-bezier(.175, .885, .32, 1.15)
}

.xtemos-category-list .tab-preview-count {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  vertical-align: super;
  display: inline-block
}

.dropdowns-color-light .xtemos-category-list .xtemos-category-item,
.global-color-scheme-light .xtemos-category-list .xtemos-category-item {
  color: rgba(255, 255, 255, .8)
}

.dropdowns-color-light .xtemos-category-list .xtemos-category-item.active,
.dropdowns-color-light .xtemos-category-list .xtemos-category-item:hover,
.global-color-scheme-light .xtemos-category-list .xtemos-category-item.active,
.global-color-scheme-light .xtemos-category-list .xtemos-category-item:hover {
  color: #fff
}

.xtemos-demo-tabs {
  position: relative;
  overflow: hidden
}

.xtemos-demo-tabs .xtemos-demo-tab-item {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
  -webkit-transition: transform .3s ease, opacity .3s ease, visibility .3s ease
}

.xtemos-demo-tabs .xtemos-demo-tab-item.active {
  opacity: 1;
  visibility: visible;
  transform: none
}

.xtemos-demo-tabs .wd-scroll ::-webkit-scrollbar-thumb,
.xtemos-demo-tabs .wd-scroll ::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, .05)!important
}

.dropdowns-color-light .xtemos-demo-tabs .wd-scroll ::-webkit-scrollbar-thumb,
.dropdowns-color-light .xtemos-demo-tabs .wd-scroll ::-webkit-scrollbar-track,
.global-color-scheme-light .xtemos-demo-tabs .wd-scroll ::-webkit-scrollbar-thumb,
.global-color-scheme-light .xtemos-demo-tabs .wd-scroll ::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, .1)!important
}

.xtemos-demo-tab-item .wd-scroll-content {
  padding-top: 15px;
  margin-bottom: -30px;
  max-height: 100%
}

.xtemos-demo-tab-item .wd-scroll-content,
.xtemos-demos-dropdown-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: center
}

.xtemos-demo-tab-item .wd-scroll-content .xtemos-demo-preview-item,
.xtemos-demos-dropdown-wrapper .xtemos-demo-preview-item {
  flex: 0 0 auto;
  max-width: 305px;
  width: 20%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px
}

.xtemos-demos-dropdown-wrapper {
  margin-left: -15px;
  margin-right: -15px
}

.xtemos-demo-preview-item {
  text-align: center
}

.xtemos-demo-preview-item .xtemos-demo-preview-item-inner {
  position: relative;
  transition: transform .3s ease;
  -webkit-transition: transform .3s ease
}

.xtemos-demo-preview-item.hide-by-search {
  display: none
}

.xtemos-demo-preview-item .xtemos-demo-image {
  position: relative;
  box-shadow: 0 0 9px rgba(0, 0, 0, .15);
  margin-bottom: 10px
}

.xtemos-demo-preview-item .xtemos-image-loading .xtemos-preview-loader {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease, visibility .3s ease
}

.xtemos-demo-preview-item .xtemos-image-loading .xtemos-preview-loader:after {
  animation: xtemos-load-spin .45s infinite linear
}

.xtemos-demo-preview-item .xtemos-demo-preview-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2
}

.xtemos-demo-preview-item img {
  width: 100%
}

.xtemos-demo-preview-item .xtemos-demo-name {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: #212121
}

.xtemos-demo-preview-item .xtemos-demo-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .2px;
  font-weight: 600;
  color: #fff;
  padding: 10px 15px;
  background-color: rgba(0, 0, 0, .7)
}

.dropdowns-color-light .xtemos-demo-preview-item .xtemos-demo-name,
.global-color-scheme-light .xtemos-demo-preview-item .xtemos-demo-name {
  color: #fff
}

.xtemos-demo-label {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 900;
  border: 20px solid transparent
}

.xtemos-demo-label span {
  position: absolute;
  top: -14px;
  left: -7px;
  font-size: 10px;
  font-weight: 900;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg)
}

.xtemos-demo-label.new {
  border-top: 20px solid #25a955;
  border-right: 20px solid #25a955
}

.xtemos-demo-label.hot {
  border-top: 20px solid #f44336;
  border-right: 20px solid #f44336
}

.xtemos-preview-loader {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, .8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease
}

.xtemos-preview-loader:after {
  content: "";
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #bbb;
  border-left-color: #000;
  border-radius: 50%
}

.dropdowns-color-light .xtemos-preview-loader,
.global-color-scheme-light .xtemos-preview-loader {
  background-color: rgba(0, 0, 0, .9)
}

.dropdowns-color-light .xtemos-preview-loader:after,
.global-color-scheme-light .xtemos-preview-loader:after {
  border-color: rgba(255, 255, 255, .15);
  border-left-color: #fff
}

.xtemos-demos-loading .xtemos-preview-loader {
  opacity: 1;
  visibility: visible
}

.xtemos-demos-loading .xtemos-preview-loader:after {
  animation: xtemos-load-spin .45s infinite linear
}

.xtemos-close-demos-preview {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0;
  height: 100px;
  width: 100px;
  z-index: 4;
  cursor: pointer;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -webkit-transition: transform .25s ease .4s;
  transition: transform .25s ease .4s
}

.xtemos-close-demos-preview:after,
.xtemos-close-demos-preview:before {
  content: "";
  width: 40px;
  height: 3px;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-top: -2px;
  margin-right: -20px;
  display: inline-block;
  background-color: #2d2a2a;
  -webkit-transition: all .25s ease;
  transition: all .25s ease
}

.xtemos-close-demos-preview:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg)
}

.xtemos-close-demos-preview:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg)
}

.xtemos-close-demos-preview:hover:after,
.xtemos-close-demos-preview:hover:before {
  opacity: .8
}

.dropdowns-color-light .xtemos-close-demos-preview:after,
.dropdowns-color-light .xtemos-close-demos-preview:before,
.global-color-scheme-light .xtemos-close-demos-preview:after,
.global-color-scheme-light .xtemos-close-demos-preview:before {
  background-color: #fff
}

.xtemos-preview-open {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
  transform: none;
  -webkit-transform: none
}

.xtemos-preview-open .xtemos-demos-preview-title {
  animation: xtemos-long-from-bottom .5s cubic-bezier(.165, .84, .44, 1) both .3s
}

.xtemos-preview-open .demos-search,
.xtemos-preview-open .xtemos-category-list-wrapper,
.xtemos-preview-open .xtemos-demo-tab-item .wd-scroll-content,
.xtemos-preview-open .xtemos-demos-preview-text {
  animation: xtemos-short-from-bottom .5s cubic-bezier(.165, .84, .44, 1) both .3s
}

.xtemos-preview-open .xtemos-close-demos-preview {
  transform: none;
  -webkit-transform: none
}

.xtemos-demos-open {
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -webkit-transition: transform .3s ease;
  transition: transform .3s ease
}

a.buy-woodmart {
  position: fixed;
  bottom: 40px;
  left: 40px;
  background-color: #101010;
  color: #fff;
  font-size: 14px;
  padding: 12px 20px 12px 16px;
  border-radius: 35px;
  line-height: 1;
  z-index: 379
}

a.buy-woodmart>span,
a.buy-woodmart>svg {
  vertical-align: middle
}

a.buy-woodmart>svg {
  fill: #81b441;
  width: 20px;
  height: 20px;
  margin-right: 7px;
  -webkit-transition: all .25s ease;
  transition: all .25s ease
}

a.buy-woodmart>svg path {
  color: inherit
}

a.buy-woodmart:focus,
a.buy-woodmart:hover {
  color: #fff;
  background-color: #7dbd2d
}

a.buy-woodmart:focus>svg,
a.buy-woodmart:hover>svg {
  fill: #fff
}

@keyframes xtemos-fadeIn {
  from {
    opacity: 0
  }
  to {
    opacity: 1
  }
}

@keyframes xtemos-long-from-bottom {
  from {
    transform: translate3d(0, 100%, 0);
    opacity: 0
  }
  to {
    transform: none;
    opacity: 1
  }
}

@keyframes xtemos-short-from-bottom {
  from {
    transform: translate3d(0, 30px, 0);
    opacity: 0
  }
  to {
    transform: none;
    opacity: 1
  }
}

@keyframes xtemos-load-spin {
  100% {
    transform: rotate(360deg)
  }
}

@media (min-width:1025px) {
  .xtemos-demos-preview .xtemos-demo-preview-item:hover .xtemos-demo-preview-item-inner {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px)
  }
}

@media (max-width:1024px) {
  .xtemos-demos-tab-wrapper {
    padding-top: 0
  }
  .xtemos-demo-tabs .xtemos-demo-tab-item {
    top: 45px
  }
  .xtemos-category-list .tab-preview-count,
  .xtemos-category-list .xtemos-category-item:last-child,
  .xtemos-demos-animation-inner,
  .xtemos-show-demos-preview,
  a.buy-woodmart {
    display: none
  }
  .xtemos-demos-tab-wrapper .wd-scroll-content {
    margin-left: 10px;
    margin-right: 10px
  }
  .xtemos-demo-tab-item .wd-scroll-content .xtemos-demo-preview-item {
    width: 33%;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 20px
  }
  .xtemos-category-list .xtemos-category-item {
    font-size: 14px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 0
  }
  .footer-logo {
    max-width: 260px!important
  }
}

@media (max-width:767px) {
  .xtemos-demos-preview-info {
    margin: 10px 12px 15px 12px
  }
  .xtemos-demo-tab-item .wd-scroll-content .xtemos-demo-preview-item {
    width: 50%
  }
  .xtemos-close-demos-preview {
    width: 40px;
    height: 40px;
    top: 12px;
    right: 10px
  }
  .demos-search input {
    padding-right: 40px
  }
  .xtemos-close-demos-preview:after,
  .xtemos-close-demos-preview:before {
    width: 22px;
    height: 2px;
    margin-right: -11px;
    background-color: #4a4a4a
  }
  .xtemos-demo-preview-item .xtemos-demo-text {
    font-size: 12px
  }
  .xtemos-category-item:first-child .tab-preview-name {
    font-size: 0
  }
  .xtemos-category-item:first-child .tab-preview-name:before {
    content: "demos";
    font-size: 14px
  }
}

.wd-pf-dropdown .cat-item-103,
.widget_product_categories .cat-item-103 {
  display: none!important
}

.woodmart-archive-shop .widget_product_categories {
  display: none
}

.footer-container.color-scheme-light svg path,
.footer-container.color-scheme-light svg polyline,
.footer-container.color-scheme-light svg rect {
  fill: #fff
}

.footer-container.color-scheme-light svg circle {
  stroke: #fff
}

.page-portfolio .portfolio-filter ul li:nth-child(4) {
  display: none
}

.portfolio-template-default .slider-type-portfolio figure {
  height: 293px
}

.postid-2960 .breadcrumbs-location-below_header .single-breadcrumbs-wrapper {
  margin-bottom: 45px!important
}

body:not(.page-template-portfolio):not(.page-id-2085) .portfolio-enlarge {
  display: none
}

body:not(.page-template-portfolio):not(.page-id-2085) .portfolio-entry .social-icons-wrapper {
  top: 5px
}

.widget_products .product_list_widget a>span.product-title {
  transition: color .25s ease;
  -webkit-transition: color .25s ease
}

.widget_products .product_list_widget a>span.product-title:hover {
  color: rgba(51, 51, 51, .7)
}

.widget_recent_comments ul li>a,
.widget_recent_entries ul li a {
  display: block;
  color: var(--wd-entities-title-color);
  word-wrap: break-word;
  font-weight: var(--wd-entities-title-font-weight);
  font-style: var(--wd-entities-title-font-style);
  font-family: var(--wd-entities-title-font);
  text-transform: var(--wd-entities-title-transform);
  line-height: 1.4
}

.widget_recent_comments ul li>a:hover,
.widget_recent_entries ul li a:hover {
  color: var(--wd-entities-title-color-hover)
}

.widget_recent_comments ul li>a {
  display: inline
}

.widget_recent_comments ul li .url {
  color: #2d2a2a;
  font-weight: 600
}

.widget_recent_comments ul li:before {
  display: inline-block;
  margin-right: 7px;
  color: #2d2a2a;
  font-weight: 400;
  font-size: 12px;
  content: "\f103";
  font-family: "woodmart-font"
}

[class*="color-scheme-light"] .widget_recent_comments ul li .url {
  color: #fff
}

[class*="color-scheme-light"] .widget_recent_comments ul li:before {
  color: #fff
}

.widget_recent_entries .post-date {
  display: block;
  margin-top: 5px;
  color: #BBB;
  font-size: 12px
}

[class*="color-scheme-light"] .widget_recent_entries .post-date {
  color: rgba(255, 255, 255, .8)
}

.woodmart-recent-posts li {
  display: flex;
  align-items: stretch;
  flex-direction: row;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(119, 119, 119, .2)
}

.woodmart-recent-posts li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none
}

.woodmart-recent-posts .recent-posts-thumbnail {
  flex: 0 0 auto;
  max-width: 50%;
  overflow: hidden;
  margin-right: 15px
}

.woodmart-recent-posts .recent-posts-thumbnail img {
  min-width: 60px
}

.woodmart-recent-posts .recent-posts-info {
  flex: 1 1 auto
}

.woodmart-recent-posts .wd-entities-title {
  margin-bottom: 8px;
  font-size: inherit
}

.woodmart-recent-posts .recent-posts-time,
.woodmart-recent-posts .recent-posts-comment {
  color: #BBB;
  font-size: 90%
}

.woodmart-recent-posts .recent-posts-time {
  margin-right: 5px
}

[class*="color-scheme-light"] .woodmart-recent-posts li {
  border-color: rgba(255, 255, 255, .2)
}

[class*="color-scheme-light"] .woodmart-recent-posts .recent-posts-time,
[class*="color-scheme-light"] .woodmart-recent-posts .recent-posts-comment {
  color: rgba(255, 255, 255, .8)
}

.widget_nav_mega_menu>.widget-title {
  margin-bottom: 0;
  padding: 20px;
  background-color: #F1F1F1;
  text-transform: uppercase
}

.widget_nav_mega_menu>.widget-title+.wd-nav-vertical {
  border-top: none
}

.widget_nav_mega_menu .wd-nav>li {
  margin-bottom: 0
}

.widget_nav_mega_menu .wd-nav-horizontal>li>a {
  height: 40px
}

.widget_nav_mega_menu .wd-nav-vertical {
  border: 1px solid rgba(129, 129, 129, .15)
}

.widget_nav_mega_menu .wd-sub-menu li {
  margin-bottom: 0
}

@media (max-width:1024px) {
  .wd-nav-mega .wd-dropdown-menu {
    display: none
  }
}

.widget_categories ul li,
.widget_pages ul li,
.widget_archive ul li,
.widget_nav_menu ul li {
  display: block;
  color: #BBB
}

.widget_categories ul li a,
.widget_pages ul li a,
.widget_archive ul li a,
.widget_nav_menu ul li a {
  display: inline-block;
  padding-right: 2px
}

.widget_categories ul li.current_page_item>a,
.widget_pages ul li.current_page_item>a,
.widget_archive ul li.current_page_item>a,
.widget_nav_menu ul li.current_page_item>a {
  color: #333;
  font-weight: 600
}

.widget_categories li ul,
.widget_pages li ul,
.widget_archive li ul,
.widget_nav_menu li ul {
  margin-top: 15px;
  padding-left: 15px
}

[class*="color-scheme-light"] .widget_categories ul li,
[class*="color-scheme-light"] .widget_pages ul li,
[class*="color-scheme-light"] .widget_archive ul li,
[class*="color-scheme-light"] .widget_nav_menu ul li {
  color: rgba(255, 255, 255, .6)
}

[class*="color-scheme-light"] .widget_categories ul li.current_page_item>a,
[class*="color-scheme-light"] .widget_pages ul li.current_page_item>a,
[class*="color-scheme-light"] .widget_archive ul li.current_page_item>a,
[class*="color-scheme-light"] .widget_nav_menu ul li.current_page_item>a {
  color: #FFF
}

.woodmart-woocommerce-layered-nav .count,
.widget_product_categories .count {
  padding-right: 5px;
  padding-left: 5px;
  min-width: 30px;
  height: 20px;
  border: 1px solid rgba(119, 119, 119, .2);
  border-radius: 35px;
  color: #777;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease
}

.woodmart-woocommerce-layered-nav .layered-nav-link:hover+.count,
.woodmart-woocommerce-layered-nav .layered-nav-link:focus+.count,
.woodmart-woocommerce-layered-nav .chosen .count,
.widget_product_categories .product-categories li a:hover+.count,
.widget_product_categories .product-categories li a:focus+.count,
.widget_product_categories .product-categories li.current-cat>.count {
  color: #FFF;
  background-color: var(--wd-primary-color);
  border-color: var(--wd-primary-color)
}

[class*="color-scheme-light"] .woodmart-woocommerce-layered-nav .count,
[class*="color-scheme-light"] .widget_product_categories .count {
  border-color: rgba(255, 255, 255, .3);
  color: rgba(255, 255, 255, .8)
}

.woodmart-woocommerce-layered-nav>.filter-pseudo-link {
  display: none
}

.woodmart-woocommerce-layered-nav .wd-scroll {
  display: flex;
  align-items: stretch;
  flex-direction: row
}

.woodmart-woocommerce-layered-nav ul {
  flex: 1 1 auto;
  padding-right: 5px
}

.woodmart-woocommerce-layered-nav li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px
}

.woodmart-woocommerce-layered-nav .layered-nav-link {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  flex-direction: row;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 5px
}

.woodmart-woocommerce-layered-nav .layered-nav-link:after {
  display: none;
  margin-left: 5px;
  font-weight: 600;
  font-size: 9px;
  line-height: 1;
  content: "\f112";
  font-family: "woodmart-font"
}

.woodmart-woocommerce-layered-nav .layered-nav-link:hover .filter-swatch span:after,
.woodmart-woocommerce-layered-nav .layered-nav-link:focus .filter-swatch span:after {
  opacity: 1
}

.woodmart-woocommerce-layered-nav .swatch-inner {
  display: inline-flex;
  align-items: center;
  flex-direction: row
}

.woodmart-woocommerce-layered-nav .layer-term-name {
  position: relative
}

.woodmart-woocommerce-layered-nav .chosen .layered-nav-link {
  color: #333;
  font-weight: 600
}

.woodmart-woocommerce-layered-nav .chosen .layered-nav-link:after {
  display: block
}

.woodmart-woocommerce-layered-nav .with-swatch-text .layered-nav-link {
  color: #333;
  font-weight: 600
}

.woodmart-woocommerce-layered-nav .with-swatch-text .layer-term-name {
  min-width: 20px;
  text-align: center
}

.woodmart-woocommerce-layered-nav .with-swatch-text .layer-term-name:after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  margin-top: 1px;
  height: 2px;
  background-color: #000;
  opacity: 0;
  transition: all .25s ease
}

.woodmart-woocommerce-layered-nav .with-swatch-text .layered-nav-link:hover,
.woodmart-woocommerce-layered-nav .with-swatch-text .layered-nav-link:focus {
  color: #777
}

.woodmart-woocommerce-layered-nav .with-swatch-text.chosen .layer-term-name:after {
  opacity: 1
}

.woodmart-woocommerce-layered-nav .swatches-brands .filter-swatch span {
  border-radius: 0
}

.woodmart-woocommerce-layered-nav .swatches-brands .filter-swatch span[style^="background-image"],
.woodmart-woocommerce-layered-nav .swatches-brands .filter-swatch span[style$="#ffffff;"] {
  border: none
}

.woodmart-woocommerce-layered-nav .swatches-brands .filter-swatch span:after {
  content: none
}

.woodmart-woocommerce-layered-nav .swatches-brands .layered-nav-link:hover .filter-swatch,
.woodmart-woocommerce-layered-nav .swatches-brands .layered-nav-link:focus .filter-swatch {
  opacity: .5
}

.woodmart-woocommerce-layered-nav .swatches-brands .chosen .layered-nav-link .filter-swatch {
  opacity: .5
}

.woodmart-woocommerce-layered-nav .swatches-display-inline {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap
}

.woodmart-woocommerce-layered-nav .swatches-display-inline li {
  margin-right: 10px
}

.woodmart-woocommerce-layered-nav .swatches-display-inline li:last-child {
  margin-bottom: 5px
}

.woodmart-woocommerce-layered-nav .swatches-display-inline .with-swatch-text .layer-term-name {
  padding-right: 4px;
  padding-left: 4px;
  min-width: 0
}

.woodmart-woocommerce-layered-nav .swatches-display-inline .count {
  min-width: 25px;
  font-size: 10px
}

.woodmart-woocommerce-layered-nav .swatches-display-inline.swatches-brands li {
  margin-right: 20px
}

.woodmart-woocommerce-layered-nav .swatches-display-inline.show-labels-off .with-swatch-text .layer-term-name {
  min-width: 25px
}

.woodmart-woocommerce-layered-nav .swatches-display-double {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -5px
}

.woodmart-woocommerce-layered-nav .swatches-display-double li {
  flex: 1 1 50%;
  padding-right: 5px;
  padding-left: 5px;
  max-width: 50%
}

.woodmart-woocommerce-layered-nav .swatches-display-double li:last-child {
  margin-bottom: 5px
}

.woodmart-woocommerce-layered-nav .swatches-small .with-swatch-text .layer-term-name {
  font-size: 14px
}

.woodmart-woocommerce-layered-nav .swatches-normal .with-swatch-text .layer-term-name {
  font-size: 16px
}

.woodmart-woocommerce-layered-nav .swatches-large .with-swatch-text .layer-term-name {
  font-size: 18px
}

.woodmart-woocommerce-layered-nav .show-labels-off .wc-layered-nav-term:not(.with-swatch-text) .layer-term-name {
  display: none
}

.woodmart-woocommerce-layered-nav .show-labels-off .count {
  display: none
}

.woodmart-woocommerce-layered-nav .show-labels-off .filter-swatch {
  margin-right: 0
}

.woodmart-woocommerce-layered-nav .show-labels-off .layered-nav-link {
  padding-right: 0
}

.woodmart-woocommerce-layered-nav .show-labels-off .layered-nav-link:after {
  content: none
}

[class*="color-scheme-light"] .woodmart-woocommerce-layered-nav .chosen .layered-nav-link {
  color: #FFF
}

[class*="color-scheme-light"] .woodmart-woocommerce-layered-nav .with-swatch-text .layered-nav-link {
  color: #FFF
}

[class*="color-scheme-light"] .woodmart-woocommerce-layered-nav .with-swatch-text .layer-term-name:after {
  background-color: #FFF
}

.wd-widget-layered-nav-dropdown-form,
.woocommerce-widget-layered-nav-dropdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end
}

.wd-widget-layered-nav-dropdown-form select[multiple="multiple"],
.woocommerce-widget-layered-nav-dropdown select[multiple="multiple"] {
  overflow: hidden;
  background-image: none
}

.wd-widget-layered-nav-dropdown-form select[multiple="multiple"] option,
.woocommerce-widget-layered-nav-dropdown select[multiple="multiple"] option {
  margin-top: 9px;
  padding: 0;
  background-color: transparent
}

.wd-widget-layered-nav-dropdown-form select[multiple="multiple"] option:not(:first-child),
.woocommerce-widget-layered-nav-dropdown select[multiple="multiple"] option:not(:first-child) {
  display: none
}

.wd-widget-layered-nav-dropdown__submit,
.woocommerce-widget-layered-nav-dropdown__submit {
  margin-top: 20px;
  padding: 10px 14px;
  font-size: 12px;
  line-height: 16px
}

.woodmart-woocommerce-layered-nav .filter-swatch {
  position: relative;
  margin-right: 10px;
  font-size: 0;
  transition: opacity .25s ease
}

.woodmart-woocommerce-layered-nav .filter-swatch>span {
  position: relative;
  display: block;
  border-radius: 50%;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle
}

.woodmart-woocommerce-layered-nav .filter-swatch>span[style^="background-image"],
.woodmart-woocommerce-layered-nav .filter-swatch>span[style$="#ffffff;"] {
  border: 1px solid rgba(0, 0, 0, .15)
}

.woodmart-woocommerce-layered-nav .filter-swatch>span:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .1);
  color: #FFF;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transition: opacity .2s ease;
  content: "\f107";
  font-family: "woodmart-font"
}

.woodmart-woocommerce-layered-nav .chosen .filter-swatch span:after {
  opacity: 1
}

.woodmart-woocommerce-layered-nav .swatches-small .filter-swatch>span {
  width: 15px;
  height: 15px
}

.woodmart-woocommerce-layered-nav .swatches-small .filter-swatch>span:after {
  font-size: 8px
}

.woodmart-woocommerce-layered-nav .swatches-small.swatches-brands .filter-swatch>span {
  width: 45px;
  height: 30px
}

.woodmart-woocommerce-layered-nav .swatches-normal .filter-swatch>span {
  width: 25px;
  height: 25px
}

.woodmart-woocommerce-layered-nav .swatches-normal .filter-swatch>span:after {
  font-size: 12px
}

.woodmart-woocommerce-layered-nav .swatches-normal.swatches-brands .filter-swatch>span {
  width: 60px;
  height: 30px
}

.woodmart-woocommerce-layered-nav .swatches-large .filter-swatch>span {
  width: 35px;
  height: 35px
}

.woodmart-woocommerce-layered-nav .swatches-large .filter-swatch>span:after {
  font-size: 14px
}

.woodmart-woocommerce-layered-nav .swatches-large.swatches-brands .filter-swatch>span {
  width: 90px;
  height: 40px
}

.widget_product_categories .widget-title {
  margin-bottom: 1rem;
  color: #292A2C;
  font-weight: 700;
}

.widget_product_categories .product-categories {
  margin-bottom: -5px
}

.widget_product_categories .product-categories li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0
}

.widget_product_categories .product-categories li a {
  display: block;
  flex: 1 1 calc(100% - 40px);
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 5px;
  width: calc(100% - 40px);
  text-decoration: none
}

.widget_product_categories .product-categories li.current-cat>a {
  color: #333;
  font-weight: 600
}

.widget_product_categories .children {
  flex: 1 1 auto;
  padding-left: 15px;
  width: 100%;
  margin-top: 0
}

.widget_product_categories .count {
  flex: 0 0 auto
}

.widget_product_categories .wd-cats-toggle {
  position: absolute;
  top: 7px;
  right: -25px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #BBB;
  text-align: center;
  font-weight: 600;
  font-size: 8px;
  line-height: 22px;
  cursor: pointer;
  transition: all .25s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden
}

.widget_product_categories .wd-cats-toggle:after {
  content: "\f129";
  font-family: "woodmart-font"
}

.widget_product_categories .wd-cats-toggle.toggle-active {
  transform: rotate(180deg)
}

.widget_product_categories .wd-cats-toggle:hover,
.widget_product_categories .wd-cats-toggle.toggle-active {
  background-color: #F9F9F9;
  color: #333
}

.categories-accordion-on .widget_product_categories .product-categories {
  padding-right: 25px
}

.categories-accordion-on .widget_product_categories .product-categories li {
  align-items: flex-start
}

.categories-accordion-on .widget_product_categories .count {
  margin-top: 8px
}

.categories-accordion-on .widget_product_categories .children {
  display: none
}

[class*="color-scheme-light"] .widget_product_categories .product-categories li.current-cat>a {
  color: #fff
}

[class*="color-scheme-light"] .widget_product_categories .wd-cats-toggle {
  color: rgba(255, 255, 255, .8)
}

[class*="color-scheme-light"] .widget_product_categories .wd-cats-toggle:hover,
[class*="color-scheme-light"] .widget_product_categories .wd-cats-toggle.toggle-active {
  background-color: #FFF;
  color: #333
}

@media (max-width:1024px) {
  .woodmart-woocommerce-layered-nav .wd-scroll {
    overflow-y: scroll;
    padding-right: 5px
  }
  .woodmart-woocommerce-layered-nav .wd-scroll-content {
    overflow: visible
  }
  .woodmart-woocommerce-layered-nav .swatches-display-double li {
    flex-basis: 100%;
    max-width: 100%
  }
  .woodmart-woocommerce-layered-nav .swatches-display-double li:last-child {
    margin-bottom: 0
  }
}

.widget_layered_nav ul li a:before,
.wd-widget-stock-status a:before {
  content: "";
  display: inline-block;
  margin-top: -2px;
  margin-right: 9px;
  width: 20px;
  height: 20px;
  border-radius: 0;
  background-color: #e6e6e6;
  border: 2px solid #e6e6e6;
  vertical-align: middle;
  transition: all .2s ease
}

.widget_layered_nav ul li a:after,
.wd-widget-stock-status a:after {
  position: absolute;
  top: 2px;
  left: 5px;
  color: #FFF;
  font-weight: 600;
  font-size: 10px;
  opacity: 0;
  content: "\f107";
  font-family: "woodmart-font"
}

[class*="color-scheme-light"] .widget_layered_nav ul li a:before,
[class*="color-scheme-light"] .wd-widget-stock-status a:before {
  border-color: rgba(255, 255, 255, .2)
}

.widget_layered_nav ul li a:hover:before,
.wd-widget-stock-status a:hover:before {
  background-color: #d5d5d5;
  border-color: #d5d5d5;
}

.widget_layered_nav ul .chosen a:before {
  background-color: var(--wd-primary-color);
  border-color: var(--wd-primary-color)
}

.widget_layered_nav ul .chosen a:after {
  opacity: 1
}

.widget_layered_nav ul li {
  display: flex;
  align-items: center;
  flex-direction: row
}

.widget_layered_nav ul li a {
  position: relative;
  flex: 1 1 auto;
  padding-right: 10px
}

.widget_layered_nav ul .chosen a {
  color: #333;
  font-weight: 600
}

.widget_layered_nav ul .count {
  color: #BBB
}

[class*="color-scheme-light"] .widget_layered_nav .chosen a {
  color: #FFF
}

[class*="color-scheme-light"] .widget_layered_nav .count {
  color: rgba(255, 255, 255, .8)
}

.wd-widget-stock-status a {
  display: block;
  position: relative
}

.wd-widget-stock-status a.wd-active {
  color: #292A2C;
  font-weight: 500
}

.wd-widget-stock-status a.wd-active:before {
  background-color: #dc3936;
  border-color: #dc3936
}

.wd-widget-stock-status a.wd-active:after {
  opacity: 1
}

[class*="color-scheme-light"] .wd-widget-stock-status a.wd-active {
  color: #fff
}

.product_list_widget>li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee
}

.product_list_widget>li:after {
  content: "";
  display: block;
  clear: both
}

.product_list_widget>li>a {
  display: block;
  margin-bottom: 8px
}

.product_list_widget>li img {
  float: left;
  margin-right: 15px;
  min-width: 65px;
  max-width: 65px
}

.product_list_widget>li .widget-product-wrap {
  display: flex;
  align-items: stretch;
  flex-direction: row
}

.product_list_widget>li .widget-product-img {
  flex: 0 0 auto;
  overflow: hidden;
  margin-right: 15px
}

.product_list_widget>li .widget-product-img img {
  float: none;
  margin-right: 0
}

.product_list_widget>li .widget-product-info {
  flex: 1 1 auto
}

.product_list_widget>li .wd-entities-title {
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.4;
  font-size: 13px;
  color: #292A2C;
  text-transform: uppercase
}

.product_list_widget>li .star-rating {
  margin-bottom: 4px;
  margin-right: 5px
}

.product_list_widget>li .price {
  display: block
}

.product_list_widget>li .reviewer {
  display: block;
  color: #BBB;
  font-size: 90%
}

.product_list_widget>li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none
}

[class*="color-scheme-light"] .product_list_widget>li {
  border-color: rgba(255, 255, 255, .2)
}

[class*="color-scheme-light"] .product_list_widget>li .reviewer {
  color: rgba(255, 255, 255, .8)
}

.widget_price_filter .price_slider {
  margin-bottom: 20px
}

.widget_price_filter #min_price,
.widget_price_filter #max_price {
  display: none
}

.widget_price_filter .price_slider_amount {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -10px
}

.widget_price_filter .price_slider_amount .button {
  order: 2;
  margin-bottom: 10px;
  padding: 10px 20px;
  width: 100px;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  border-radius: 0;
  color: #333;
  box-shadow: none;
  background-color: #eee;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.widget_price_filter .price_slider_amount .button:hover {
  color: #333;
  box-shadow: none;
  background-color: #e5e5e5;
  opacity: 1;
}

.widget_price_filter .price_slider_amount .button:active {
  box-shadow: none;
  bottom: var(--btn-default-bottom-active)
}

.widget_price_filter .price_slider_amount .price_label {
  order: 1;
  margin-bottom: 10px;
  color: #666;
  font-weight: 600;
  font-size: .85rem;
}

.widget_price_filter .price_slider_amount .price_label>span {
  color: #666;
  font-weight: 500
}

.widget_price_filter .price_slider_amount .clear {
  display: none
}

.widget_price_filter .ui-slider {
  position: relative
}

.widget_price_filter .ui-slider-horizontal {
  height: 20px;
  border: none;
  background: none;
  cursor: pointer;
  margin-bottom: 1rem;
}

.widget_price_filter .ui-slider-horizontal:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin-top: -1px;
  height: 2px;
  background-color: #eee
}

.widget_price_filter .ui-slider .ui-slider-range {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: block;
  margin-top: -1px;
  height: 2px;
  border: 0;
  border-radius: 0;
  background-image: none;
  background-color: #dc3936
}

.widget_price_filter .ui-slider .ui-slider-handle {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-top: -15px;
  margin-left: -15px;
  width: 30px;
  height: 30px;
  outline: none;
  border: none;
  border-radius: 0;
  background: none;
  background-color: transparent!important;
  cursor: ew-resize
}

.widget_price_filter .ui-slider .ui-slider-handle:after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 15px;
  background-color: #dc3936;
  border-radius: 0;
}

.widget_price_filter .ui-slider-range-min {
  left: -1px
}

.widget_price_filter .ui-slider-range-max {
  right: -1px
}

.login-see-prices .widget_price_filter {
  display: none
}

[class*="color-scheme-light"] .widget_price_filter .price_slider_amount .price_label {
  color: rgba(255, 255, 255, .8)
}

[class*="color-scheme-light"] .widget_price_filter .price_slider_amount .price_label>span {
  color: #FFF
}

[class*="color-scheme-light"] .widget_price_filter .ui-slider-horizontal:before {
  background-color: rgba(255, 255, 255, .4)
}

@media (max-width:575px) {
  .footer-widget-collapse>*:not(.widget-title):not(:first-child) {
    display: none;
    margin-top: 20px
  }
  .footer-widget-collapse .widget-title {
    position: relative;
    margin-bottom: 0;
    padding-right: 22px
  }
  .footer-widget-collapse .widget-title:after {
    position: absolute;
    top: calc(50% - 12px);
    right: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: #333;
    vertical-align: middle;
    text-align: center;
    font-weight: 600;
    font-size: 10px;
    line-height: 24px;
    transition: all .25s ease;
    content: "\f129";
    font-family: "woodmart-font"
  }
  .footer-widget-collapse.footer-widget-opened .widget-title:after {
    transform: rotate(180deg)
  }
  [class*="color-scheme-light"] .footer-widget-collapse .widget-title:after {
    color: #fff
  }
  [class*="color-scheme-light"] .footer-widget-collapse.footer-widget-opened .widget-title:after {
    background-color: #FFF;
    color: #333
  }
}

div.wpcf7 .wpcf7-spinner {
  position: relative;
  visibility: hidden;
  margin-left: -5px
}

div.wpcf7 .wpcf7-spinner:before {
  position: absolute;
  top: 0;
  left: 20px;
  margin-top: 2px;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #BBB;
  border-left-color: #000;
  border-radius: 50%;
  vertical-align: middle
}

div.wpcf7 .ajax-error {
  display: none
}

div.wpcf7 form.submitting .wpcf7-spinner {
  visibility: visible
}

div.wpcf7 form.submitting .wpcf7-spinner:before {
  animation: wd-rotate 450ms infinite linear
}

[class*="color-scheme-light"] div.wpcf7 .wpcf7-spinner:before {
  border-color: rgba(255, 255, 255, .15);
  border-left-color: #fff
}

.wpcf7-list-item {
  display: inline-block;
  margin-right: 10px
}

.wpcf7-radio input {
  margin-left: 5px
}

.wpcf7-not-valid-tip {
  display: block;
  color: red
}

div.wpcf7-response-output {
  display: none;
  margin: 0 0 20px
}

form.sent div.wpcf7-response-output,
form.invalid div.wpcf7-response-output,
form.unaccepted div.wpcf7-response-output,
form.spam div.wpcf7-response-output,
form.failed div.wpcf7-response-output,
form.aborted div.wpcf7-response-output {
  display: flex
}

.wpcf7-form.wd-style-with-bg {
  --wd-form-bg: #fff;
  --wd-form-color: #777;
  --wd-form-brd-color: rgba(129, 129, 129, .2);
  --wd-form-brd-color-focus: rgba(129, 129, 129, .3);
  --wd-form-placeholder-color: #777
}

.wpb_content_element .mc4wp-form {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center
}

.wpb_content_element .mc4wp-form>div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-right: -3px;
  margin-left: -3px
}

.wpb_content_element .mc4wp-form>div>p {
  margin-bottom: 20px!important;
  margin-right: 3px;
  margin-left: 3px
}

.wpb_content_element .mc4wp-form>div>p:first-child {
  flex: 1 1 200px;
  max-width: 290px;
  width: 100%
}

.wpb_content_element .mc4wp-form>div>p>br {
  display: none
}

.wpb_content_element .mc4wp-form label {
  display: none
}

.wpb_content_element .mc4wp-form .mc4wp-response {
  margin-right: 0;
  margin-left: 0
}

.text-right .wpb_content_element .mc4wp-form>div {
  justify-content: flex-end
}

.text-left .wpb_content_element .mc4wp-form>div {
  justify-content: flex-start
}

body:not(.notifications-sticky) .wpb_content_element .mc4wp-alert,
body .mfp-content .wpb_content_element .mc4wp-alert {
  margin-bottom: 20px
}

.wpb_content_element .widget_mc4wp_form_widget .mc4wp-form {
  margin-bottom: 0
}

.wpb_content_element .widget_mc4wp_form_widget .mc4wp-form p {
  margin-bottom: 10px
}

.mc4wp-form input[type="submit"] {
  border-radius: var(--btn-accent-brd-radius);
  color: var(--btn-accent-color);
  box-shadow: var(--btn-accent-box-shadow);
  background-color: var(--btn-accent-bgcolor)
}

.mc4wp-form input[type="submit"]:hover {
  color: var(--btn-accent-color-hover);
  box-shadow: var(--btn-accent-box-shadow-hover);
  background-color: var(--btn-accent-bgcolor-hover)
}

.mc4wp-form input[type="submit"]:active {
  box-shadow: var(--btn-accent-box-shadow-active);
  bottom: var(--btn-accent-bottom-active)
}

.mc4wp-form .row {
  margin-bottom: -10px
}

.mc4wp-form [class*="col"] {
  margin-bottom: 10px
}

.mc4wp-form .col {
  flex: 1 1 200px
}

.mc4wp-form-fields {
  display: inline-block;
  width: 100%;
  max-width: var(--wd-max-width)
}

body:not(.notifications-sticky) .mc4wp-alert {
  margin-top: 20px;
  margin-bottom: 0
}

.mc4wp-alert>p {
  margin-bottom: 0
}

@media (min-width:1025px) {
  .mc4wp-form input[type="submit"] {
    padding-right: 35px;
    padding-left: 35px
  }
}

.wpb-js-composer .wpb_revslider_element {
  margin-bottom: 0
}

.hermes .tp-arr-imgholder {
  background-size: cover
}

.wd-bg-position-top {
  background-position: center top;
  object-position: center top
}

.wd-bg-position-bottom {
  background-position: center bottom;
  object-position: center bottom
}

.wd-bg-position-left {
  background-position: left center;
  object-position: left center
}

.wd-bg-position-right {
  background-position: right center;
  object-position: right center
}

.wd-bg-position-center {
  background-position: center;
  object-position: center
}

body .wd-bg-left-top {
  background-position: left top!important
}

body .wd-bg-left-center {
  background-position: left center!important
}

body .wd-bg-left-bottom {
  background-position: left bottom!important
}

body .wd-bg-right-top {
  background-position: right top!important
}

body .wd-bg-right-center {
  background-position: right center!important
}

body .wd-bg-right-bottom {
  background-position: right bottom!important
}

body .wd-bg-center-top {
  background-position: center top!important
}

body .wd-bg-center-center {
  background-position: center center!important
}

body .wd-bg-center-bottom {
  background-position: center bottom!important
}

body [class*="wd-bg-"]>.vc_column-inner {
  background-position: inherit!important
}

.position-relative {
  position: relative
}

.z-index-10 {
  z-index: 10
}

.z-index-h {
  z-index: 35
}

.z-index-100 {
  z-index: 100
}

.z-index-1000 {
  z-index: 1000
}

.parallax-bg {
  background-attachment: fixed!important
}

.opacity-video-bg .vc_video-bg {
  opacity: .6
}

.title-uppercase {
  text-transform: uppercase
}

.add-border {
  border-bottom: 1px solid
}

.border-width-1 {
  border-width: 1px
}

.border-width-2 {
  border-width: 2px
}

.border-width-3 {
  border-width: 3px
}

.border-width-4 {
  border-width: 4px
}

.border-color-primary {
  border-color: var(--wd-primary-color)
}

.border-color-alternative {
  border-color: var(--wd-alternative-color)
}

.box-shadow-style-1 {
  box-shadow: 0 0 3px rgba(0, 0, 0, .15)
}

.box-shadow-style-2 {
  box-shadow: 0 10px 20px -9px rgba(0, 0, 0, .5)
}

.box-shadow-style-3 {
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .1)
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none!important
}

.wd-width-10 {
  max-width: 10%
}

.wd-width-20 {
  max-width: 20%
}

.wd-width-30 {
  max-width: 30%
}

.wd-width-40 {
  max-width: 40%
}

.wd-width-50 {
  max-width: 50%
}

.wd-width-60 {
  max-width: 60%
}

.wd-width-70 {
  max-width: 70%
}

.wd-width-80 {
  max-width: 80%
}

.wd-width-90 {
  max-width: 90%
}

.wd-width-custom {
  max-width: var(--wd-max-width)
}

.wd-wpb {
  margin-bottom: 30px
}

@keyframes wd-SlideFromTop {
  from {
    transform: translateY(-150px)
  }
  to {
    transform: none
  }
}

@keyframes wd-SlideFromBottom {
  from {
    transform: translateY(150px)
  }
  to {
    transform: none
  }
}

@keyframes wd-SlideFromLeft {
  from {
    transform: translateX(-150px)
  }
  to {
    transform: none
  }
}

@keyframes wd-SlideFromRight {
  from {
    transform: translateX(150px)
  }
  to {
    transform: none
  }
}

@keyframes wd-RightFlipY {
  from {
    transform: translateX(100px) rotate3d(0, 1, 0, 90deg) scale(.6)
  }
  to {
    transform: perspective(1000px) translateY(0) rotate3d(0, 1, 0, 0deg) scale(1)
  }
}

@keyframes wd-LeftFlipY {
  from {
    transform: translateX(-100px) rotate3d(0, 1, 0, -90deg) scale(.6)
  }
  to {
    transform: perspective(1000px) translateY(0) rotate3d(0, 1, 0, 0deg) scale(1)
  }
}

@keyframes wd-TopFlipX {
  from {
    transform: translateY(-100px) rotate3d(1, 0, 0, 90deg) scale(.6)
  }
  to {
    transform: perspective(1000px) translateY(0) rotate3d(1, 0, 0, 0deg) scale(1)
  }
}

@keyframes wd-BottomFlipX {
  from {
    transform: translateY(100px) rotate3d(1, 0, 0, 90deg) scale(.6)
  }
  to {
    transform: perspective(1000px) translateY(0) rotate3d(1, 0, 0, 0deg) scale(1)
  }
}

@keyframes wd-ZoomIn {
  from {
    transform: scale(.7)
  }
  to {
    transform: none
  }
}

@keyframes wd-RotateZ {
  from {
    transform: matrix3d(.70592, .02465, .37557, -.00062, -.06052, .79532, .06156, -.0001, -.46435, -.10342, .87958, -.00146, -21.42566, 4.13698, 4.81749, .99197085)
  }
  to {
    transform: none
  }
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs .vc_tta-tab .vc_tta-title-text {
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding-top: 1px;
  padding-bottom: 1px;
  position: relative
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs .vc_tta-tab .vc_tta-title-text:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.4s cubic-bezier(.175, .885, .32, 1.15);
  background-color: var(--wd-primary-color)
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs .vc_tta-tab>a:hover .vc_tta-title-text:after,
.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs .vc_tta-tab.vc_active .vc_tta-title-text:after {
  width: 100%
}

.wd-row-gradient-enable {
  position: relative
}

.wd-parallax {
  background-attachment: fixed!important;
  background-size: cover!important
}

.attachment_fixed-yes {
  background-attachment: fixed
}

.vc_row.wd-disable-overflow,
.vc_section.wd-disable-overflow {
  overflow: visible!important
}

.inline-element {
  display: inline-block;
  vertical-align: middle
}

.inline-element:not(:last-child) {
  margin-right: 15px
}

.text-left .inline-element {
  margin-left: 0
}

.text-left .inline-element:not(:last-child) {
  margin-right: 15px
}

.text-right .inline-element {
  margin-right: 0
}

.text-right .inline-element:not(:first-child) {
  margin-left: 15px
}

.text-center .inline-element {
  margin-right: 7px;
  margin-left: 7px
}

.vc_row-full-width {
  float: left;
  width: 100%
}

.compose-mode .vc_column-inner .vc_controls>.vc_controls-out-tl {
  right: -1px;
  left: auto;
  z-index: 2000
}

.vc_row[data-vc-full-width].wpb_animate_when_almost_visible {
  transition: none!important
}

.vc_row.vc_row-flex>.vc_column_container>.vc_column-inner {
  z-index: auto
}

.vc_row-no-padding .vc_row-fluid {
  margin-right: 0;
  margin-left: 0
}

.wpb_widgetised_column>.wpb_wrapper>*:last-child {
  margin-bottom: 0
}

.widgetarea-head .wpb_widgetised_column {
  margin-bottom: 0
}

.wpb_animate_when_almost_visible[class*="color-scheme-hover"] {
  transition: all .25s ease
}

.wd-slide-from-bottom,
.wd-slide-from-top,
.wd-slide-from-left,
.wd-slide-from-right,
.wd-left-flip-y,
.wd-right-flip-y,
.wd-top-flip-x,
.wd-bottom-flip-x,
.wd-zoom-in,
.wd-rotate-z {
  transition: opacity 0.7s cubic-bezier(0, .87, .58, 1);
  -webkit-animation-fill-mode: none!important;
  animation-fill-mode: none!important
}

.wd-slide-from-bottom.animated,
.wd-slide-from-top.animated,
.wd-slide-from-left.animated,
.wd-slide-from-right.animated,
.wd-left-flip-y.animated,
.wd-right-flip-y.animated,
.wd-top-flip-x.animated,
.wd-bottom-flip-x.animated,
.wd-zoom-in.animated,
.wd-rotate-z.animated {
  animation-duration: .7s;
  animation-timing-function: cubic-bezier(0, .87, .58, 1)
}

.wd-slide-from-top {
  animation-name: wd-SlideFromTop
}

.wd-slide-from-bottom {
  animation-name: wd-SlideFromBottom
}

.wd-slide-from-left {
  animation-name: wd-SlideFromLeft
}

.wd-slide-from-right {
  animation-name: wd-SlideFromRight
}

.wd-right-flip-y {
  animation-name: wd-RightFlipY
}

.wd-left-flip-y {
  animation-name: wd-LeftFlipY
}

.wd-top-flip-x {
  animation-name: wd-TopFlipX
}

.wd-bottom-flip-x {
  animation-name: wd-BottomFlipX
}

.wd-zoom-in {
  animation-name: wd-ZoomIn
}

.wd-rotate-z {
  animation-name: wd-RotateZ;
  will-change: animation
}

.wpb_wrapper>.wpb_animate_when_almost_visible:nth-child(2) {
  transition-delay: .1s;
  animation-delay: .1s
}

.wpb_wrapper>.wpb_animate_when_almost_visible:nth-child(3) {
  transition-delay: .2s;
  animation-delay: .2s
}

.wpb_wrapper>.wpb_animate_when_almost_visible:nth-child(4) {
  transition-delay: .3s;
  animation-delay: .3s
}

.wpb_wrapper>.wpb_animate_when_almost_visible:nth-child(5) {
  transition-delay: .4s;
  animation-delay: .4s
}

.wpb_wrapper>.wpb_animate_when_almost_visible:nth-child(6) {
  transition-delay: .5s;
  animation-delay: .5s
}

.wpb_wrapper>.wpb_animate_when_almost_visible:nth-child(7) {
  transition-delay: .6s;
  animation-delay: .6s
}

.vc_progress_bar .vc_single_bar {
  border-radius: 0;
  box-shadow: none
}

.vc_progress_bar .vc_single_bar .vc_label {
  padding: .6em 1.2em;
  text-transform: uppercase;
  text-shadow: none!important;
  letter-spacing: .2px;
  font-weight: 600;
  font-size: 12px
}

.vc_progress_bar .vc_single_bar .vc_bar {
  border-radius: 0;
  transition: width .8s ease
}

.wpb_single_image .vc_single_image-wrapper[class*="vc_box_shadow"],
.wpb_single_image .vc_single_image-wrapper[class*="vc_box_shadow"] img {
  box-shadow: 0 0 9px rgba(0, 0, 0, .12)
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-accordion .vc_tta-panel-heading {
  margin-top: 0!important;
  margin-bottom: 0!important;
  border: none!important
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-accordion .vc_tta-panel-heading .vc_tta-panel-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-accordion .vc_tta-panel-title {
  font-family: var(--wd-text-font)
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-accordion .vc_tta-panel-title>a {
  padding-top: 18px;
  padding-bottom: 18px
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-accordion.vc_tta-color-white .vc_tta-panels {
  border-top: 2px solid rgba(119, 119, 119, .17)
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-accordion.vc_tta-color-white .vc_tta-panel {
  border-bottom: 1px solid rgba(119, 119, 119, .2)
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-accordion.vc_tta-color-white .vc_tta-panel.vc_active .vc_tta-panel-title>a {
  color: #333
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-accordion.vc_tta-color-white .vc_tta-panel-heading:hover {
  background-color: transparent
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-accordion.vc_tta-color-white .vc_tta-panel-title>a {
  padding-right: 0;
  padding-left: 0
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-accordion.vc_tta-color-white .vc_tta-panel-title.vc_tta-controls-icon-position-right .vc_tta-controls-icon {
  right: 5px
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-accordion.vc_tta-color-white .vc_tta-panel-title.vc_tta-controls-icon-position-right>a {
  padding-right: 25px;
  padding-left: 5px
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-accordion.vc_tta-color-white .vc_tta-panel-title.vc_tta-controls-icon-position-left .vc_tta-controls-icon {
  left: 5px
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-accordion.vc_tta-color-white .vc_tta-panel-title.vc_tta-controls-icon-position-left>a {
  padding-right: 5px;
  padding-left: 25px
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-accordion.vc_tta-color-white .vc_tta-panel-title:hover>a {
  color: #333
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-accordion.vc_tta-color-white .vc_tta-panel-body {
  padding-top: 0;
  padding-right: 5px;
  padding-left: 5px;
  border: none
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs .vc_tta-tabs-container {
  position: relative
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs .vc_tta-tab {
  color: #333
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs .vc_tta-tab>a {
  padding: 10px 15px;
  border: none;
  background-color: transparent;
  color: inherit;
  font-weight: var(--wd-title-font-weight);
  font-style: var(--wd-title-font-style);
  font-size: 16px;
  font-family: var(--wd-title-font);
  line-height: 1.4;
  opacity: .7;
  transition: all .25s ease
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs .vc_tta-tab>a:hover {
  border: none;
  background-color: transparent;
  opacity: 1
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs .vc_tta-tab.vc_active>a {
  border: none;
  background-color: transparent;
  opacity: 1
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs .vc_tta-panel {
  overflow: hidden;
  margin: 0
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs .vc_tta-panel.vc_active .vc_tta-panel-body {
  position: relative;
  z-index: 2;
  visibility: visible;
  opacity: 1;
  -webkit-transition: transform .25s ease .25s, opacity .25s ease .25s, visibility .25s ease .25s;
  transition: transform .25s ease .25s, opacity .25s ease .25s, visibility .25s ease .25s;
  -webkit-transform: translateY(0);
  transform: translateY(0)
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs .vc_tta-panel-body {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  display: block!important;
  visibility: hidden;
  padding-top: 10px!important;
  padding-bottom: 10px!important;
  height: auto!important;
  opacity: 0;
  -webkit-transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
  transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
  -webkit-transform: translateY(20px);
  transform: translateY(20px)
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs-position-left .vc_tta-panel .vc_tta-panel-body,
.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs-position-right .vc_tta-panel .vc_tta-panel-body,
.wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs-position-bottom .vc_tta-panel .vc_tta-panel-body {
  -webkit-transform: translateY(10px);
  transform: translateY(10px)
}

.wpb-js-composer.global-color-scheme-light .vc_tta.vc_general.vc_tta-style-classic.vc_tta-accordion.vc_tta-color-white .vc_tta-panel {
  border-color: rgba(255, 255, 255, .15)
}

[class*="color-scheme-light"] .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs .vc_tta-tab {
  color: #fff
}

.wpb_video_wrapper {
  position: relative;
  overflow: hidden
}

.wpb_video_wrapper .wd-video-poster-wrapper,
.wpb_video_wrapper .wd-video-poster-wrapper:after,
.wpb_video_wrapper .wd-video-poster {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px
}

.wpb_video_wrapper .wd-video-poster-wrapper {
  position: absolute!important;
  z-index: 2;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.5s cubic-bezier(0, 0, .44, 1.18), visibility 0.5s cubic-bezier(0, 0, .44, 1.18);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden
}

.wpb_video_wrapper .wd-video-poster-wrapper:after {
  content: "";
  z-index: 2;
  background-color: rgba(0, 0, 0, .15);
  transition: background-color 0.5s cubic-bezier(0, 0, .44, 1.18)
}

.wpb_video_wrapper .wd-video-poster-wrapper.hidden-poster {
  visibility: hidden;
  opacity: 0
}

.wpb_video_wrapper .wd-video-poster {
  margin: -1px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.5s cubic-bezier(0, 0, .44, 1.18)
}

.wpb_video_wrapper .button-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  margin-top: -50px;
  margin-left: -50px;
  padding-left: 5px;
  width: 100px;
  height: 100px;
  border: 4px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 95px;
  transition: border-color 0.5s cubic-bezier(0, 0, .44, 1.18)
}

.wpb_video_wrapper .button-play:after {
  display: inline-block;
  font-size: 32px;
  transition: transform 0.5s cubic-bezier(0, 0, .44, 1.18);
  content: "\f101";
  font-family: "woodmart-font"
}

.wpb_video_wrapper:hover .wd-video-poster-wrapper:after {
  background-color: rgba(0, 0, 0, .3)
}

.wpb_video_wrapper:hover .button-play {
  border-color: rgba(255, 255, 255, .6)
}

.wpb_video_wrapper:hover .button-play:after {
  transform: scale(.8)
}

.wpb_video_wrapper:hover .wd-video-poster {
  transform: scale(1.09)
}

@media (min-width:1025px) {
  [data-vc-full-width] {
    position: relative;
    box-sizing: border-box;
    width: 100vw;
    left: calc(50% - 50vw + 15px)
  }
  .vc_section[data-vc-full-width]>.vc_row[data-vc-full-width] {
    left: calc(50% - 50vw)
  }
  .platform-Windows [data-vc-full-width] {
    width: calc(100vw - 17px);
    left: calc(50% - 50vw + 8.5px + 15px)
  }
  .platform-Windows .vc_section[data-vc-full-width]>.vc_row[data-vc-full-width] {
    left: calc(50% - 50vw + 8.5px)
  }
}

@media (min-width:1200px) {
  .hidden-lg {
    display: none!important
  }
  .visible-lg {
    display: block!important
  }
}

@media (max-width:1024px) {
  .wd-width-10 {
    max-width: 30%
  }
  .wd-width-20 {
    max-width: 40%
  }
  .wd-width-30 {
    max-width: 50%
  }
  .wd-width-40 {
    max-width: 60%
  }
  .wd-width-50 {
    max-width: 70%
  }
  .wd-width-60 {
    max-width: 80%
  }
  .wd-width-70 {
    max-width: 90%
  }
  body .tablet-bg-img-hidden,
  .wpb_column.tablet-bg-img-hidden>div {
    background-image: none!important
  }
  .wd-parallax {
    background-attachment: scroll!important
  }
  .wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs-position-top .vc_tta-tabs-container:after,
  .wpb-js-composer .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs-position-bottom .vc_tta-tabs-container:after {
    content: ""
  }
}

@media (max-width:768px) {
  .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs .vc_tta-tabs-container {
    display: block;
    mask-image: linear-gradient(to left, transparent 5px, #000 40px);
    -webkit-mask-image: linear-gradient(to left, transparent 5px, #000 40px)
  }
  .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs .vc_tta-panel-heading {
    display: none
  }
  .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs-position-top .vc_tta-tabs-container,
  .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs-position-bottom .vc_tta-tabs-container {
    overflow: hidden
  }
  .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs-position-top .vc_tta-tabs-container:after,
  .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs-position-bottom .vc_tta-tabs-container:after {
    content: ""
  }
  .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs-position-top .vc_tta-tabs-list,
  .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs-position-bottom .vc_tta-tabs-list {
    overflow-y: auto;
    white-space: nowrap
  }
  .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs-position-top .vc_tta-tabs-list::-webkit-scrollbar,
  .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs-position-bottom .vc_tta-tabs-list::-webkit-scrollbar {
    display: none
  }
  .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs-position-left,
  .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs-position-right {
    display: block
  }
  .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs-position-left .vc_tta-tab,
  .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs-position-right .vc_tta-tab {
    display: inline-block
  }
  .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs-position-left.vc_tta-o-no-fill .vc_tta-panel-body,
  .vc_tta.vc_general.vc_tta-style-classic.vc_tta-tabs-position-right.vc_tta-o-no-fill .vc_tta-panel-body {
    padding-right: 0!important;
    padding-left: 0!important
  }
}

@media (max-width:767px) {
  body .mobile-bg-img-hidden,
  .wpb_column.mobile-bg-img-hidden>div {
    background-image: none!important
  }
  body .reset-element-margin,
  .reset-margin>.vc_column-inner,
  .reset-margin-mobile>.vc_column-inner {
    margin-right: 0!important;
    margin-left: 0!important
  }
  .hidden-xs {
    display: none!important
  }
  .visible-xs {
    display: block!important
  }
  .row-reverse-mobile:not(.vc_row-flex) {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box
  }
  .row-reverse-mobile>.wpb_column:nth-child(1) {
    order: 12
  }
  .row-reverse-mobile>.wpb_column:nth-child(2) {
    order: 11
  }
  .row-reverse-mobile>.wpb_column:nth-child(3) {
    order: 10
  }
  .row-reverse-mobile>.wpb_column:nth-child(4) {
    order: 9
  }
  .row-reverse-mobile>.wpb_column:nth-child(5) {
    order: 8
  }
  .row-reverse-mobile>.wpb_column:nth-child(6) {
    order: 7
  }
  .row-reverse-mobile>.wpb_column:nth-child(7) {
    order: 6
  }
  .row-reverse-mobile>.wpb_column:nth-child(8) {
    order: 5
  }
  .row-reverse-mobile>.wpb_column:nth-child(9) {
    order: 4
  }
  .row-reverse-mobile>.wpb_column:nth-child(10) {
    order: 3
  }
  .row-reverse-mobile>.wpb_column:nth-child(11) {
    order: 2
  }
  .row-reverse-mobile>.wpb_column:nth-child(12) {
    order: 1
  }
}

@media (max-width:575px) {
  [class*="wd-width-"]:not(.wd-width-custom) {
    max-width: 100%
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .hidden-md {
    display: none!important
  }
  .visible-md {
    display: block!important
  }
}

@media (min-width:768px) and (max-width:1024px) {
  .reset-margin-tablet>.vc_column-inner {
    margin-right: 0!important;
    margin-left: 0!important
  }
}

@media (min-width:768px) and (max-width:991px) {
  .hidden-sm {
    display: none!important
  }
  .visible-sm {
    display: block!important
  }
  .row-reverse-tablet:not(.vc_row-flex) {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box
  }
  .row-reverse-tablet>.wpb_column:nth-child(1) {
    order: 12
  }
  .row-reverse-tablet>.wpb_column:nth-child(2) {
    order: 11
  }
  .row-reverse-tablet>.wpb_column:nth-child(3) {
    order: 10
  }
  .row-reverse-tablet>.wpb_column:nth-child(4) {
    order: 9
  }
  .row-reverse-tablet>.wpb_column:nth-child(5) {
    order: 8
  }
  .row-reverse-tablet>.wpb_column:nth-child(6) {
    order: 7
  }
  .row-reverse-tablet>.wpb_column:nth-child(7) {
    order: 6
  }
  .row-reverse-tablet>.wpb_column:nth-child(8) {
    order: 5
  }
  .row-reverse-tablet>.wpb_column:nth-child(9) {
    order: 4
  }
  .row-reverse-tablet>.wpb_column:nth-child(10) {
    order: 3
  }
  .row-reverse-tablet>.wpb_column:nth-child(11) {
    order: 2
  }
  .row-reverse-tablet>.wpb_column:nth-child(12) {
    order: 1
  }
}

td.product-name a,
.product-title {
  display: block;
  color: var(--wd-entities-title-color);
  word-wrap: break-word;
  font-weight: var(--wd-entities-title-font-weight);
  font-style: var(--wd-entities-title-font-style);
  font-family: var(--wd-entities-title-font);
  text-transform: var(--wd-entities-title-transform);
  line-height: 1.4
}

td.product-name a:hover,
.product-title a:hover,
a.product-title:hover {
  color: var(--wd-entities-title-color-hover)
}

.wc-item-meta,
.wc-item-meta ul,
.wc-item-meta ol,
ul.variation,
.wd-pf-results,
.wd-pf-dropdown ul {
  list-style: none;
  --li-pl: 0
}

.wc-item-meta,
.wc-item-meta ul,
.wc-item-meta ol,
.wd-pf-results,
.wd-pf-dropdown ul {
  --list-mb: 0;
  --li-mb: 0
}

p.stock {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2
}

p.stock:before {
  display: inline-block;
  margin-right: 5px;
  vertical-align: text-top
}

p.stock.in-stock {
  color: #333
}

p.stock.in-stock:before {
  content: "\f107";
  font-family: "woodmart-font";
  color: var(--wd-primary-color)
}

p.stock.out-of-stock {
  color: #B50808
}

[class*="color-scheme-light"] p.stock .in-stock {
  color: #fff
}

.shop_table tr td:last-child,
.shop_table tr th:last-child {
  text-align: right
}

tr.order-total th {
  font-size: 18px
}

tr.order-total strong .amount {
  font-size: 22px
}

tr.order-total td strong {
  display: block
}

th.product-remove,
th.product-thumbnail {
  font-size: 0
}

th.product-name {
  text-align: left
}

th.product-thumbnail {
  width: 10px
}

th.product-remove {
  width: 40px
}

td.product-name {
  text-align: left
}

td.product-name a {
  display: inline-block;
  font-size: 14px
}

td.product-name p {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 90%
}

td.product-name ul.variation {
  margin-top: 5px
}

td.product-price .amount {
  color: #DC3936;
  font-weight: 700;
  font-size: 13px
}

td.product-price del {
  color: #BDBDBD
}

td.product-price del .amount {
  color: #BDBDBD;
  font-size: 90%
}

td.product-price ins {
  padding: 0;
  background-color: transparent;
  text-decoration: none;
  opacity: 1
}

td.product-subtotal span {
  font-size: 16px
}

td.product-thumbnail>a {
  display: block;
  overflow: hidden
}

td.product-thumbnail img {
  min-width: 80px;
  max-width: 80px
}

td.woocommerce-orders-table__cell-order-actions a {
  margin-right: 5px;
  padding: 10px 14px;
  font-size: 12px;
  line-height: 16px;
  border-radius: var(--btn-shop-brd-radius);
  color: var(--btn-shop-color);
  box-shadow: var(--btn-shop-box-shadow);
  background-color: var(--btn-shop-bgcolor)
}

td.woocommerce-orders-table__cell-order-actions a:hover {
  color: var(--btn-shop-color-hover);
  box-shadow: var(--btn-shop-box-shadow-hover);
  background-color: var(--btn-shop-bgcolor-hover)
}

td.woocommerce-orders-table__cell-order-actions a:active {
  box-shadow: var(--btn-shop-box-shadow-active);
  bottom: var(--btn-shop-bottom-active)
}

td.woocommerce-orders-table__cell-order-actions a:last-child {
  margin-right: 0
}

td.product-remove {
  padding: 0;
  text-align: center
}

td.product-total .amount {
  color: #777;
  font-weight: 400
}

[class*="color-scheme-light"] td.product-total .amount {
  color: #FFF
}

.global-color-scheme-light td.product-price .amount {
  color: rgba(255, 255, 255, .8)
}

.global-color-scheme-light td.product-price del {
  color: rgba(255, 255, 255, .6)
}

.global-color-scheme-light td.product-price del .amount {
  color: rgba(255, 255, 255, .6)
}

td.product-remove a,
.woocommerce-remove-coupon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #333;
  font-size: 0
}

td.product-remove a:before,
.woocommerce-remove-coupon:before {
  font-weight: 600;
  font-size: 10px;
  content: "\f112";
  font-family: "woodmart-font"
}

td.product-remove a:hover,
.woocommerce-remove-coupon:hover {
  color: rgba(51, 51, 51, .6)
}

.global-color-scheme-light td.product-remove a,
.global-color-scheme-light .woocommerce-remove-coupon {
  color: #fff
}

.global-color-scheme-light td.product-remove a:hover,
.global-color-scheme-light .woocommerce-remove-coupon:hover {
  color: rgba(255, 255, 255, .8)
}

.product-labels {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  max-width: 50%;
  transition: opacity .3s ease
}

.product-label {
  min-width: 50px;
  color: #FFF;
  text-align: center;
  text-transform: uppercase;
  word-break: break-all;
  letter-spacing: .4px;
  font-weight: 600;
  line-height: 1.2
}

.product-label img {
  width: 100%
}

.product-label:not(:last-child) {
  margin-bottom: 10px
}

.product-label.onsale {
  background-color: var(--wd-primary-color)
}

.product-label.featured {
  background-color: #E22D2D
}

.product-label.new {
  background-color: #438E44
}

.product-label.out-of-stock {
  background-color: rgba(255, 255, 255, .9);
  color: #2d2a2a
}

.product-label.attribute-label:not(.label-with-img) {
  background-color: rgba(255, 255, 255, .9);
  color: #2d2a2a
}

.global-color-scheme-light .product-label.out-of-stock,
.global-color-scheme-light .product-label.attribute-label:not(.label-with-img) {
  background-color: #101010;
  color: #fff
}

.labels-rectangular {
  top: 15px;
  left: 0
}

.labels-rectangular .product-label {
  padding: 5px 10px;
  font-size: 12px
}

.labels-rectangular .label-with-img {
  padding: 0;
  max-width: 50px
}

.labels-rounded {
  top: 7px;
  left: 7px
}

.labels-rounded .product-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 7px;
  min-height: 50px;
  border-radius: 35px;
  font-size: 14px
}

.browser-Internet .labels-rounded .product-label {
  height: 50px
}

.labels-rounded .label-with-img {
  padding: 0;
  min-height: auto;
  max-width: 55px
}

[class*="color-scheme-light"] .wd-product-countdown>span {
  background-color: #101010;
  color: #FFF
}

[class*="color-scheme-light"] .wd-product-countdown>span span {
  color: rgba(255, 255, 255, .8)
}

.wd-more-desc {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  max-height: calc(var(--wd-text-line-height) * 3em + 10px)
}

.wd-more-desc table {
  margin-bottom: 0
}

.wd-more-desc .wd-more-desc-inner {
  line-height: var(--wd-text-line-height);
  --wd-tags-mb: 10px
}

.wd-more-desc .wd-more-desc-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: calc(var(--wd-text-line-height) * 1em - 3px);
  background: linear-gradient(to bottom, rgba(255, 255, 255, .8) 0, #fff 100%);
  color: #000;
  text-align: center;
  text-decoration: none;
  line-height: var(--wd-text-line-height);
  transition: transform .25s ease;
  transform: translateY(calc(var(--wd-text-line-height) * 1em + 3px))
}

.wd-more-desc .wd-more-desc-btn span:after {
  font-weight: 700;
  font-size: 20px;
  content: "\f109";
  font-family: "woodmart-font"
}

.wd-more-desc .wd-more-desc-btn:hover {
  color: #000
}

.wd-more-desc .wd-more-desc-btn:not(.wd-shown) {
  display: none
}

.wd-more-desc.wd-more-desc-full {
  max-height: none
}

.wd-more-desc.wd-more-desc-full .wd-more-desc-btn {
  display: none
}

[class*="color-scheme-light"] .wd-more-desc .wd-more-desc-btn {
  background: linear-gradient(to bottom, rgba(16, 16, 16, .8) 0, #101010 100%);
  color: #fff
}

[class*="color-scheme-light"] .wd-more-desc .wd-more-desc-btn:hover {
  color: #fff
}

.woocommerce-breadcrumb {
  display: inline-flex;
  display: inline;
  align-items: center;
  flex-wrap: wrap;
  color: #292A2C
}

.woocommerce-breadcrumb a {
  margin-right: 6px;
  margin-right: 0;
}

.woocommerce-breadcrumb,
.yoast-breadcrumb {
  vertical-align: middle;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 1.4
}

.woocommerce-breadcrumb a,
.yoast-breadcrumb a {
  color: #666;
  font-weight: 600;
  font-size: 13px;
}

.woocommerce-breadcrumb a:hover,
.yoast-breadcrumb a:hover {
  color: #292A2C
}

.global-color-scheme-light .woocommerce-breadcrumb a,
.global-color-scheme-light .yoast-breadcrumb a {
  color: rgba(255, 255, 255, .6)
}

.global-color-scheme-light .woocommerce-breadcrumb a:hover,
.global-color-scheme-light .yoast-breadcrumb a:hover {
  color: #fff
}

.woocommerce-breadcrumb .breadcrumb-last,
.yoast-breadcrumb .breadcrumb_last {
  margin-right: 8px;
  font-weight: 600
}

.woocommerce-breadcrumb .breadcrumb-last:last-child,
.yoast-breadcrumb .breadcrumb_last:last-child {
  margin-right: 0
}

.global-color-scheme-light .woocommerce-breadcrumb .breadcrumb-last,
.global-color-scheme-light .yoast-breadcrumb .breadcrumb_last {
  color: #fff
}

.star-rating {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  letter-spacing: 2px;
  font-weight: 400;
  color: #EABE12;
  font-family: "woodmart-font"
}

.star-rating:before {
  content: "\f149" "\f149" "\f149" "\f149" "\f149";
  color: #C9C9C9
}

.star-rating span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  text-indent: 99999px
}

.star-rating span:before {
  content: "\f148" "\f148" "\f148" "\f148" "\f148";
  position: absolute;
  top: 0;
  left: 0;
  text-indent: 0
}

[class*="color-scheme-light"] .star-rating:before {
  color: rgba(255, 255, 255, .6)
}

div.quantity {
  display: inline-flex;
  vertical-align: top;
  white-space: nowrap;
  font-size: 0
}

div.quantity input[type=number]::-webkit-inner-spin-button,
div.quantity input[type=number]::-webkit-outer-spin-button,
div.quantity input[type="number"] {
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

div.quantity input[type="number"],
div.quantity input[type="button"] {
  display: inline-block;
  color: #777
}

div.quantity input[type="number"] {
  width: 30px;
  height: 42px;
  border-radius: 0;
  border-right: none;
  border-left: none
}

.browser-Firefox div.quantity input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield
}

div.quantity input[type="button"] {
  padding: 0 5px;
  min-width: 25px;
  height: 42px;
  border: var(--wd-form-brd-width) solid #eee;
  background: #eee;
  box-shadow: none
}

div.quantity input[type="button"]:hover {
  background-color: #ddd;
  border-color: #ddd !important
}

div.quantity .minus {
  border-top-left-radius: var(--wd-form-brd-radius);
  border-bottom-left-radius: var(--wd-form-brd-radius)
}

div.quantity .plus {
  border-top-right-radius: var(--wd-form-brd-radius);
  border-bottom-right-radius: var(--wd-form-brd-radius)
}

div.quantity.hidden {
  display: none!important
}

[class*="color-scheme-light"] div.quantity input[type="number"],
[class*="color-scheme-light"] div.quantity input[type="button"] {
  color: #FFF
}

.form-style-underlined div.quantity input[type="number"] {
  border-top-style: solid
}

.amount {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  color: #dc3936
}

[class*="color-scheme-light"] .amount {
  color: #fff
}

del .amount {
  color: #BDBDBD;
  font-weight: 400
}

[class*="color-scheme-light"] del .amount {
  color: rgba(255, 255, 255, .6)
}

.price {
  color: var(--wd-primary-color)
}

.price .amount {
  font-size: inherit
}

.price del {
  color: #BDBDBD;
  font-size: 90%
}

.price ins {
  padding: 0;
  background-color: transparent;
  text-decoration: none;
  opacity: 1;
  color: var(--wd-primary-color)
}

[class*="color-scheme-light"] .price {
  color: #FFF
}

[class*="color-scheme-light"] .price del {
  color: rgba(255, 255, 255, .6)
}

[class*="color-scheme-light"] .price ins {
  color: #fff
}

.woocommerce-price-suffix {
  color: #777
}

a.login-to-prices-msg {
  font-weight: 600;
  color: var(--wd-primary-color)
}

a.login-to-prices-msg:hover {
  opacity: .6;
  color: var(--wd-primary-color)
}

.hide-larger-price .price {
  word-spacing: -1em;
  visibility: hidden
}

.hide-larger-price .price *:not(.price) {
  word-spacing: normal;
  visibility: visible
}

.hide-larger-price .price>span:nth-child(2) {
  display: none
}

.hide-larger-price .price>ins,
.hide-larger-price .price>small {
  margin-left: 4px
}

.browser-Safari .hide-larger-price .price>ins,
.browser-Safari .hide-larger-price .price>small {
  margin-left: calc(1em + 4px)
}

.browser-Safari .hide-larger-price .wd-sticky-btn-cart .price {
  white-space: nowrap
}

.swatches-select {
  display: inline-block;
  vertical-align: middle
}

.wd-swatch {
  position: relative;
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 5px;
  color: #1B1919;
  vertical-align: middle;
  text-align: center;
  font-weight: 600;
  line-height: 1;
  cursor: pointer
}

.wd-swatch:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  border-bottom: 2px solid transparent;
  border-color: #000;
  opacity: 0;
  transition: opacity .2s ease
}

.wd-swatch.text-only:after {
  bottom: -4px
}

.wd-swatch.swatch-with-bg {
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  font-size: 0
}

.wd-swatch.swatch-with-bg[style$="#ffffff"] {
  border: 1px solid rgba(0, 0, 0, .15)
}

.wd-swatch:hover:after,
.wd-swatch.active-swatch:after {
  opacity: 1
}

[class*="color-scheme-light"] .wd-swatch {
  color: #fff
}

.swatch-on-single {
  min-width: 25px;
  font-size: 16px
}

.swatch-on-single.text-only.swatch-size-large {
  font-size: 18px
}

.swatch-on-single.text-only.swatch-size-xlarge {
  font-size: 24px
}

.swatch-on-single.swatch-with-bg {
  width: 25px;
  height: 25px
}

.swatch-on-single.swatch-with-bg.swatch-size-large {
  width: 45px;
  height: 45px
}

.swatch-on-single.swatch-with-bg.swatch-size-xlarge {
  width: 70px;
  height: 70px
}

.swatch-on-single.swatch-enabled {
  cursor: pointer
}

.swatch-on-single.swatch-disabled {
  opacity: .4;
  cursor: default
}

.swatch-on-single:not(:last-child) {
  margin-right: 15px
}

.swatch-on-grid {
  min-width: 15px;
  font-size: 14px
}

.swatch-on-grid.text-only.swatch-size-large {
  font-size: 16px
}

.swatch-on-grid.text-only.swatch-size-xlarge {
  font-size: 18px
}

.swatch-on-grid.swatch-with-bg {
  width: 15px;
  height: 15px
}

.swatch-on-grid.swatch-with-bg.swatch-size-large {
  width: 25px;
  height: 25px
}

.swatch-on-grid.swatch-with-bg.swatch-size-xlarge {
  width: 35px;
  height: 35px
}

.swatch-on-grid:not(:last-child) {
  margin-right: 8px
}

.swatch-on-grid.wd-hidden {
  display: none
}

.wd-swatches-divider {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  transition: opacity .25s ease
}

.wd-swatches-divider:hover {
  opacity: .7
}

.swatch-size-large+.wd-swatches-divider {
  font-size: 14px
}

.swatch-size-xlarge+.wd-swatches-divider {
  font-size: 16px
}

[class*="color-scheme-light"] .wd-swatches-divider {
  color: #fff
}

.wd-all-shown .wd-swatches-divider {
  display: none
}

.product-grid-item:not(.product-swatched) .swatch-on-grid:after {
  opacity: 0
}

.woocommerce-notices-wrapper:empty {
  display: none
}

ul.woocommerce-error,
ul.woocommerce-message,
ul.woocommerce-info {
  list-style: none;
  --li-pl: 0;
  align-items: stretch;
  flex-direction: column;
  justify-content: center
}

ul.woocommerce-error li .button,
ul.woocommerce-message li .button,
ul.woocommerce-info li .button {
  float: right;
  margin-top: 0;
  margin-right: 5px;
  margin-bottom: 0;
  margin-left: 5px
}

.wd-stock-progress-bar .stock-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 5px;
  color: #777
}

.wd-stock-progress-bar .stock-info span {
  margin-left: 3px;
  color: #333;
  font-weight: 600
}

.wd-stock-progress-bar .progress-area,
.wd-stock-progress-bar .progress-bar {
  height: 7px
}

.wd-stock-progress-bar .progress-area {
  width: 100%;
  background-color: #F4F4F4
}

.wd-stock-progress-bar .progress-bar {
  background-color: var(--wd-primary-color)
}

[class*="color-scheme-light"] .wd-stock-progress-bar .stock-info {
  color: rgba(255, 255, 255, .8)
}

[class*="color-scheme-light"] .wd-stock-progress-bar .stock-info span {
  color: #fff
}

[class*="color-scheme-light"] .wd-stock-progress-bar .progress-area {
  background-color: #101010
}

ul.variation {
  --li-mb: 5px;
  --list-mb: 0;
  font-size: 12px;
  color: #B2B2B2;
  --wd-tags-mb: 0
}

ul.variation li p {
  display: inline;
  font-size: inherit
}

[class*="color-scheme-light"] ul.variation {
  color: rgba(255, 255, 255, .6)
}

.wc-item-meta {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.2
}

.wc-item-meta strong,
.wc-item-meta p {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 5px
}

.wc-item-meta strong {
  color: #333
}

.global-color-scheme-light .wc-item-meta strong {
  color: #fff
}

.blockOverlay {
  z-index: 340!important;
  background-image: none!important;
  animation: wd-FadeInLoader .6s ease forwards
}

.blockOverlay:before {
  content: none!important
}

.blockOverlay:after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  border: 1px solid #BBB;
  border-left-color: #000;
  border-radius: 50%;
  vertical-align: middle;
  animation: wd-rotate 450ms infinite linear
}

.global-color-scheme-light .blockOverlay {
  background-color: rgba(0, 0, 0, .5)!important
}

.global-color-scheme-light .blockOverlay:after {
  border-color: rgba(255, 255, 255, .15);
  border-left-color: #fff
}

[class*="screen-reader"] {
  position: absolute!important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px)
}

.col2-set {
  display: flex;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px
}

.col2-set .col-1,
.col2-set .col-2 {
  flex: 1 0 50%;
  padding-right: 15px;
  padding-left: 15px;
  max-width: 50%
}

p.form-row-first,
p.form-row-last {
  overflow: visible;
  width: 48%
}

p.form-row-first {
  float: left
}

p.form-row-last {
  float: right
}

p.form-row-wide {
  clear: both
}

.single_add_to_cart_button:after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -9px;
  margin-left: -9px;
  opacity: 0;
  transition: opacity 0s ease;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-left-color: #fff;
  border-radius: 50%;
  vertical-align: middle
}

.loading.single_add_to_cart_button {
  color: transparent!important
}

.loading.single_add_to_cart_button:after {
  opacity: 1;
  transition: opacity .25s ease;
  animation: wd-rotate 450ms infinite linear
}

.woocommerce-product-details__short-description {
  margin-bottom: 20px
}

.woocommerce-product-details__short-description>*:last-child {
  margin-bottom: 0
}

.woocommerce-product-details__short-description table {
  margin-bottom: 20px
}

.shop_attributes th,
.shop_attributes td {
  padding-right: 0;
  padding-left: 0
}

.shop_attributes th p,
.shop_attributes td p {
  margin-bottom: 0
}

.shop_attributes td {
  text-align: right
}

.shop_attributes tr:last-child th,
.shop_attributes tr:last-child td {
  border: none
}

.wd-pf-dropdown .filter-swatch {
  position: relative;
  margin-right: 10px;
  font-size: 0;
  transition: opacity .25s ease
}

.wd-pf-dropdown .filter-swatch>span {
  position: relative;
  display: block;
  border-radius: 50%;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle
}

.wd-pf-dropdown .filter-swatch>span[style^="background-image"],
.wd-pf-dropdown .filter-swatch>span[style$="#ffffff;"] {
  border: 1px solid rgba(0, 0, 0, .15)
}

.wd-pf-dropdown .filter-swatch>span:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .1);
  color: #FFF;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transition: opacity .2s ease;
  content: "\f107";
  font-family: "woodmart-font"
}

.wd-pf-dropdown .pf-value:hover .filter-swatch span:after,
.wd-pf-dropdown .pf-active>.pf-value .filter-swatch span:after {
  opacity: 1
}

.wd-pf-dropdown .swatches-small .filter-swatch>span {
  width: 15px;
  height: 15px
}

.wd-pf-dropdown .swatches-small .filter-swatch>span:after {
  font-size: 8px
}

.wd-pf-dropdown .swatches-small.swatches-brands .filter-swatch>span {
  width: 45px;
  height: 30px
}

.wd-pf-dropdown .swatches-normal .filter-swatch>span {
  width: 25px;
  height: 25px
}

.wd-pf-dropdown .swatches-normal .filter-swatch>span:after {
  font-size: 12px
}

.wd-pf-dropdown .swatches-normal.swatches-brands .filter-swatch>span {
  width: 60px;
  height: 30px
}

.wd-pf-dropdown .swatches-large .filter-swatch>span {
  width: 35px;
  height: 35px
}

.wd-pf-dropdown .swatches-large .filter-swatch>span:after {
  font-size: 14px
}

.wd-pf-dropdown .swatches-large.swatches-brands .filter-swatch>span {
  width: 90px;
  height: 40px
}

.quick-shop-wrapper .variations_form {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
  height: 100%
}

.quick-shop-wrapper .variations_form:before {
  content: ""
}

.quick-shop-wrapper .variations_form .woocommerce-variation {
  -webkit-animation: none;
  animation: none
}

.quick-shop-wrapper .variations_form .woocommerce-variation-description p {
  margin-bottom: 10px
}

.quick-shop-wrapper .variations_form .woocommerce-variation-price .price,
.quick-shop-wrapper .variations_form .woocommerce-variation-availability p.stock .price {
  margin-right: 5px;
  margin-bottom: 10px;
  margin-left: 5px
}

.quick-shop-wrapper table.variations {
  margin-bottom: 10px
}

.quick-shop-wrapper table.variations .reset_variations {
  bottom: -30px
}

.quick-shop-wrapper .variation-swatch-selected .variations {
  margin-bottom: 40px
}

.woocommerce-product-rating {
  margin-bottom: 20px
}

.woocommerce-product-rating .star-rating {
  margin-right: 5px
}

.woocommerce-review-link {
  color: #777
}

.woocommerce-review-link:hover {
  color: #2d2a2a
}

.global-color-scheme-light .woocommerce-review-link {
  color: rgba(255, 255, 255, .6)
}

.global-color-scheme-light .woocommerce-review-link:hover {
  color: #fff
}

.product-image-summary .wd-stock-progress-bar {
  margin-bottom: 20px
}

.single_add_to_cart_button {
  border-radius: var(--btn-shop-brd-radius);
  color: var(--btn-shop-color);
  box-shadow: var(--btn-shop-box-shadow);
  background-color: var(--btn-shop-bgcolor)
}

.single_add_to_cart_button:hover {
  color: var(--btn-shop-color-hover);
  box-shadow: var(--btn-shop-box-shadow-hover);
  background-color: var(--btn-shop-bgcolor-hover)
}

.single_add_to_cart_button:active {
  box-shadow: var(--btn-shop-box-shadow-active);
  bottom: var(--btn-shop-bottom-active)
}

.single_add_to_cart_button+.added_to_cart {
  display: none
}

.variations_form .variations {
  transition: margin-bottom .3s ease
}

.variations_form .variations label {
  margin-bottom: 0;
  margin-right: 20px;
  color: #2d2a2a;
  white-space: nowrap;
  font-weight: 600
}

.variations_form .variations label:after {
  content: ":";
  margin-left: 2px
}

.variations_form .variations tr:last-child td {
  padding-bottom: 0
}

.variations_form .variations td {
  padding: 0;
  padding-bottom: 20px;
  border: none;
  vertical-align: middle
}

.variations_form .variations .value {
  position: relative;
  width: 100%
}

.variations_form .variations .value select {
  display: inline-block;
  max-width: 260px
}

.variations_form .variations .with-swatches select {
  display: none
}

.variations_form .wd-attr-selected:empty {
  display: none
}

.variations_form .reset_variations {
  display: inline-flex!important;
  align-items: center;
  visibility: hidden!important;
  margin-left: 10px;
  color: #3f3f3f;
  vertical-align: middle;
  font-size: 12px;
  line-height: 1;
  opacity: 0!important;
  pointer-events: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden
}

.variations_form .reset_variations:before {
  display: inline-block;
  margin-right: 5px;
  font-weight: 600;
  font-size: 70%;
  content: "\f112";
  font-family: "woodmart-font"
}

.variations_form .reset_variations:hover {
  color: #818181
}

.variations_form.variation-swatch-selected .reset_variations {
  visibility: visible!important;
  opacity: 1!important;
  pointer-events: visible
}

.variations_form.wd-swatches-name td {
  display: block
}

.variations_form.wd-swatches-name .label {
  margin-bottom: 5px;
  padding-bottom: 0
}

.variations_form.wd-swatches-name .label label,
.variations_form.wd-swatches-name .label span {
  display: inline-block;
  vertical-align: middle;
  line-height: 1
}

.variations_form.wd-swatches-name .label label {
  margin-right: 0
}

.variations_form.wd-swatches-name .label span {
  margin-left: 5px
}

.variations_form .woocommerce-variation {
  animation: wd-fadeInBottomShort .2s ease
}

.variations_form .woocommerce-variation:after {
  content: "";
  display: block;
  clear: both
}

.variations_form .woocommerce-variation-price,
.variations_form .woocommerce-variation-availability {
  display: inline;
  vertical-align: middle
}

.variations_form .woocommerce-variation-price .price {
  display: inline-block;
  margin-bottom: 20px;
  margin-right: 15px;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1.2
}

.variations_form .woocommerce-variation-availability p.stock {
  display: inline-block;
  vertical-align: middle
}

.variations_form .woocommerce-variation-description p {
  margin-bottom: 10px
}

[class*="color-scheme-light"] .variations_form label {
  color: #fff
}

[class*="color-scheme-light"] .variations_form .reset_variations {
  color: rgba(255, 255, 255, .9)
}

[class*="color-scheme-light"] .variations_form .reset_variations:hover {
  color: #fff
}

.product-image-summary .variations {
  margin-bottom: 25px
}

.product-image-summary .wd-price-outside .price>.price {
  font-size: inherit
}

.product-image-summary .wd-price-outside .woocommerce-variation {
  height: auto!important;
  animation: none
}

.product-image-summary .wd-price-outside .woocommerce-variation-price {
  display: none
}

.wd-more-desc table th,
.woocommerce-product-details__short-description table th {
  font-weight: 600;
  font-family: var(--wd-text-font)
}

.wd-more-desc table td,
.woocommerce-product-details__short-description table td,
.wd-more-desc table th,
.woocommerce-product-details__short-description table th {
  padding: 5px;
  border-bottom-style: dashed
}

.wd-more-desc table tr td:last-child,
.woocommerce-product-details__short-description table tr td:last-child {
  text-align: right
}

.wd-more-desc table tr:last-child td,
.woocommerce-product-details__short-description table tr:last-child td,
.wd-more-desc table tr:last-child th,
.woocommerce-product-details__short-description table tr:last-child th {
  border-bottom: none
}

.wd-more-desc table p,
.woocommerce-product-details__short-description table p {
  margin-bottom: 0
}

.wd-product-filters {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px
}

.wd-product-filters .wd-pf-checkboxes {
  flex: 1 1 200px;
  width: 0
}

.wd-product-filters>div {
  margin-bottom: 10px;
  padding-right: 5px;
  padding-left: 5px
}

.wd-pf-btn button {
  padding-right: 40px;
  padding-left: 40px;
  border-radius: var(--btn-shop-brd-radius);
  color: var(--btn-shop-color);
  box-shadow: var(--btn-shop-box-shadow);
  background-color: var(--btn-shop-bgcolor)
}

.wd-pf-btn button:hover {
  color: var(--btn-shop-color-hover);
  box-shadow: var(--btn-shop-box-shadow-hover);
  background-color: var(--btn-shop-bgcolor-hover)
}

.wd-pf-btn button:active {
  box-shadow: var(--btn-shop-box-shadow-active);
  bottom: var(--btn-shop-bottom-active)
}

.wd-pf-checkboxes {
  position: relative
}

.wd-pf-title {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  padding-left: 15px;
  padding-right: 40px;
  height: 42px;
  border-radius: var(--wd-form-brd-radius);
  border: var(--wd-form-brd-width) solid var(--wd-form-brd-color);
  color: #333;
  line-height: 1;
  cursor: pointer;
  transition: border-color .5s ease;
  user-select: none
}

.wd-pf-title .title-text {
  flex: 1 0 auto;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px
}

.wd-pf-title:after {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -6px;
  color: #B7B7B7;
  font-size: 12px;
  transition: transform .2s ease;
  content: "\f129";
  font-family: "woodmart-font";
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden
}

.wd-pf-title:hover {
  border-color: rgba(129, 129, 129, .3)
}

.opened .wd-pf-title:after {
  transform: rotate(-180deg)
}

.wd-product-filters.color-scheme-light .wd-pf-title {
  border-color: rgba(255, 255, 255, .15);
  color: #fff
}

.wd-product-filters.color-scheme-light .wd-pf-title:after {
  color: rgba(255, 255, 255, .8)
}

.wd-product-filters.color-scheme-light .wd-pf-title:hover {
  border-color: rgba(255, 255, 255, .4)
}

.wd-pf-results {
  overflow: hidden;
  white-space: nowrap;
  line-height: 1
}

.wd-pf-results li {
  position: relative;
  display: inline-block;
  margin-left: 5px;
  padding: 4px 8px;
  background-color: #F1F1F1;
  color: #333;
  font-weight: 600;
  font-size: 12px;
  transition: all .25s ease
}

.wd-pf-results li:after {
  position: absolute;
  top: 50%;
  left: 7px;
  margin-top: -4px;
  font-size: 8px;
  opacity: 0;
  transition: opacity .2s ease;
  content: "\f112";
  font-family: "woodmart-font"
}

.wd-pf-results li:hover {
  padding-left: 20px
}

.wd-pf-results li:hover:after {
  opacity: 1
}

.wd-product-filters.color-scheme-light .wd-pf-results li {
  background-color: #101010;
  color: #fff
}

.wd-pf-dropdown {
  position: absolute;
  top: 100%;
  right: calc((var(--wd-form-brd-radius) / 2) + 6px);
  left: calc((var(--wd-form-brd-radius) / 2) + 6px);
  z-index: 300;
  display: none;
  overflow: hidden;
  width: auto;
  height: auto;
  background-color: #FFF;
  box-shadow: 0 0 3px rgba(0, 0, 0, .15)
}

.wd-pf-dropdown .pf-value {
  display: flex;
  align-items: center;
  flex-direction: row;
  padding-top: 8px;
  padding-right: 18px;
  padding-bottom: 8px;
  padding-left: 18px;
  color: #777;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  transition: all .25s ease
}

.wd-pf-dropdown .pf-value:hover {
  background-color: #F9F9F9;
  color: #777
}

.wd-pf-dropdown .pf-active>.pf-value {
  color: #333;
  font-weight: 600
}

.wd-pf-dropdown .swatches-brands .filter-swatch span {
  border: none!important;
  border-radius: 0
}

.wd-pf-dropdown .swatches-brands:not(.show-labels-off) .filter-swatch span:after {
  content: none
}

.wd-pf-dropdown .swatches-brands.show-labels-off .filter-swatch span:after {
  border-radius: 0;
  background-color: rgba(255, 255, 255, .6);
  color: #2d2a2a
}

.wd-pf-dropdown .show-labels-off {
  padding: 10px
}

.wd-pf-dropdown .show-labels-off .filter-swatch {
  margin-right: 0
}

.wd-pf-dropdown .show-labels-off li {
  display: inline-block
}

.wd-pf-dropdown .show-labels-off .pf-value:hover {
  background-color: transparent!important
}

.wd-pf-dropdown .show-labels-off .swatch-inner {
  margin: 6px;
  padding: 0
}

.wd-pf-dropdown .show-labels-off li:not(.with-swatch-text) .layer-term-name {
  display: none
}

.wd-product-filters.color-scheme-light .wd-pf-dropdown {
  background-color: #101010
}

.wd-product-filters.color-scheme-light .wd-pf-dropdown .pf-value {
  color: rgba(255, 255, 255, .8)
}

.wd-product-filters.color-scheme-light .wd-pf-dropdown .pf-value:hover {
  background-color: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .8)
}

.wd-product-filters.color-scheme-light .wd-pf-dropdown .pf-active>.pf-value {
  color: #fff
}

.wd-product-filters.color-scheme-light .wd-pf-dropdown .swatches-brands.show-labels-off .filter-swatch span:after {
  background-color: rgba(0, 0, 0, .6);
  color: #fff
}

.wd-pf-price-range .wd-pf-dropdown {
  padding: 20px
}

.wd-pf-price-range .ui-slider-horizontal {
  margin-bottom: 20px
}

.wd-pf-price-range .filter_price_slider_amount {
  margin-right: -20px;
  margin-bottom: -20px;
  margin-left: -20px;
  padding: 6px 20px;
  border-top: 1px solid rgba(119, 119, 119, .2);
  background-color: #F9F9F9;
  text-align: center
}

.wd-pf-price-range .price_label {
  color: #2d2a2a;
  font-weight: 600
}

.wd-pf-price-range .price_label .from:after {
  content: "-";
  margin-right: 10px;
  margin-left: 10px
}

.wd-product-filters.color-scheme-light .wd-pf-price-range .filter_price_slider_amount {
  background-color: rgba(0, 0, 0, .3)
}

.wd-product-filters.color-scheme-light .wd-pf-price-range .price_label {
  color: #fff
}

.global-color-scheme-light .wd-pf-price-range .filter_price_slider_amount {
  border-color: rgba(255, 255, 255, .15)
}

.wd-pf-categories .children .pf-value {
  padding-left: 35px
}

.wd-pf-categories .children .children .pf-value {
  padding-left: 55px
}

.add_to_cart_inline ins {
  padding: 0;
  text-decoration: none
}

.add_to_cart_inline>a {
  margin-left: 10px
}

.add_to_cart_inline>a.added {
  display: none
}

.add_to_cart_inline>a:after {
  border-color: #FFF
}

.track_order {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-left: -5px;
  margin-right: -5px
}

.track_order p {
  padding-left: 5px;
  padding-right: 5px
}

.track_order p:first-child {
  flex: 1 1 100%;
  max-width: 100%;
  width: 100%;
  font-size: 110%;
  text-align: center;
  margin-bottom: 30px
}

.track_order .button {
  min-width: 130px
}

.track_order .form-row {
  float: none;
  width: auto
}

.track_order .form-row-first,
.track_order .form-row-last {
  flex: 1 1 auto
}

.track_order .clear {
  display: none
}

button[name="track"] {
  border-radius: var(--btn-shop-brd-radius);
  color: var(--btn-shop-color);
  box-shadow: var(--btn-shop-box-shadow);
  background-color: var(--btn-shop-bgcolor)
}

button[name="track"]:hover {
  color: var(--btn-shop-color-hover);
  box-shadow: var(--btn-shop-box-shadow-hover);
  background-color: var(--btn-shop-bgcolor-hover)
}

button[name="track"]:active {
  box-shadow: var(--btn-shop-box-shadow-active);
  bottom: var(--btn-shop-bottom-active)
}

.woocommerce-store-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 351;
  margin: 0;
  padding: 12px 60px;
  color: #FFF;
  text-align: center;
  font-weight: 600;
  min-height: 55px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background-color: var(--wd-primary-color)
}

.woocommerce-store-notice .woocommerce-store-notice__dismiss-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  background-color: rgba(0, 0, 0, .1);
  color: #FFF;
  font-size: 0;
  transition: background-color .25s ease
}

.woocommerce-store-notice .woocommerce-store-notice__dismiss-link:after {
  font-weight: 600;
  font-size: 14px;
  content: "\f112";
  font-family: "woodmart-font"
}

.woocommerce-store-notice .woocommerce-store-notice__dismiss-link:hover {
  background-color: rgba(0, 0, 0, .2)
}

.shop-content-area>.woocommerce-notices-wrapper {
  margin-bottom: 30px
}

.woocommerce-cart .woocommerce-notices-wrapper [role="alert"] {
  margin-bottom: 30px
}

.woocommerce-cart .row>.woocommerce-notices-wrapper {
  margin-right: 15px;
  margin-left: 15px;
  max-width: 100%;
  width: 100%
}

.wd-registration-page {
  margin-right: auto;
  margin-left: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  max-width: 1000px
}

.wd-registration-page.wd-no-registration {
  max-width: 450px
}

#customer_login {
  margin-right: -40px;
  margin-left: -40px
}

#customer_login>.col-md-6 {
  padding: 25px 40px
}

#customer_login>div:not(:first-child):last-child {
  border-left: 1px solid rgba(119, 119, 119, .2)
}

.global-color-scheme-light #customer_login>div:not(:first-child):last-child {
  border-color: rgba(255, 255, 255, .15)
}

.wd-login-title {
  text-transform: uppercase;
  font-size: 22px
}

.col-register-text {
  text-align: center
}

.wd-switch-to-register {
  border-radius: var(--btn-default-brd-radius);
  color: var(--btn-default-color);
  box-shadow: var(--btn-default-box-shadow);
  background-color: var(--btn-default-bgcolor)
}

.wd-switch-to-register:hover {
  color: var(--btn-default-color-hover);
  box-shadow: var(--btn-default-box-shadow-hover);
  background-color: var(--btn-default-bgcolor-hover)
}

.wd-switch-to-register:active {
  box-shadow: var(--btn-default-box-shadow-active);
  bottom: var(--btn-default-bottom-active)
}

.registration-info,
.login-info {
  margin-bottom: 20px
}

.wd-register-tabs .col-register,
.wd-register-tabs .col-login {
  animation: wd-fadeIn .7s ease
}

.wd-register-tabs .col-register {
  display: none
}

.active-register .col-register {
  display: block
}

.active-register .col-login {
  display: none
}

.with-login-reg-info .registration-info,
.with-login-reg-info .login-info {
  animation: wd-fadeIn .7s ease
}

.with-login-reg-info .login-info {
  display: none
}

.with-login-reg-info.active-register .registration-info {
  display: none
}

.with-login-reg-info.active-register .login-info {
  display: block
}

.login:not(.hidden-form) {
  display: block!important
}

.login-form-footer {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -10px
}

.login-form-footer .lost_password,
.login-form-footer .woocommerce-form-login__rememberme {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
}

.login-form-footer .lost_password {
  order: 2;
  color: #292A2C
}

.login-form-footer .lost_password:hover {
  color: #292A2C;
  text-decoration: none;
  opacity: .7
}

.login-form-footer .woocommerce-form-login__rememberme {
  order: 1
}

.global-color-scheme-light .login-form-footer .lost_password {
  color: rgba(255, 255, 255, .8)
}

.global-color-scheme-light .login-form-footer .lost_password:hover {
  color: #fff;
  opacity: 1
}

.register .button,
.login .button,
.lost_reset_password .button {
  width: 100%;
  border-radius: var(--btn-shop-brd-radius);
  color: var(--btn-shop-color);
  box-shadow: var(--btn-shop-box-shadow);
  background-color: var(--btn-shop-bgcolor)
}

.register .button:hover,
.login .button:hover,
.lost_reset_password .button:hover {
  color: var(--btn-shop-color-hover);
  box-shadow: var(--btn-shop-box-shadow-hover);
  background-color: var(--btn-shop-bgcolor-hover)
}

.register .button:active,
.login .button:active,
.lost_reset_password .button:active {
  box-shadow: var(--btn-shop-box-shadow-active);
  bottom: var(--btn-shop-bottom-active)
}

.wd-login-divider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 30px;
  text-transform: uppercase
}

.wd-login-divider span {
  margin-right: 20px;
  margin-left: 20px
}

.wd-login-divider:after,
.wd-login-divider:before {
  content: "";
  flex: 1 0 0%;
  border-bottom: 1px solid rgba(119, 119, 119, .2)
}

[class*="color-scheme-light"] .wd-login-divider:after,
[class*="color-scheme-light"] .wd-login-divider:before {
  border-color: rgba(255, 255, 255, .15)
}

.social-login-title {
  margin-top: 20px;
  margin-bottom: 20px
}

.register-or {
  display: none
}

.register>p {
  position: relative
}

#reg_password:focus+.woocommerce-password-strength+.woocommerce-password-hint {
  visibility: visible;
  opacity: 1
}

.woocommerce-password-hint {
  position: absolute;
  right: 0;
  bottom: 100%;
  visibility: hidden;
  margin-bottom: -10px;
  padding: 20px;
  max-width: 300px;
  width: 100%;
  background: #FFF;
  box-shadow: 0 0 4px rgba(0, 0, 0, .15);
  opacity: 0;
  transition: opacity .5s, visibility .5s
}

.woocommerce-password-hint:after {
  position: absolute;
  top: 100%;
  left: 30px;
  color: #FFF;
  text-shadow: 0 2px 3px rgba(0, 0, 0, .1);
  font-size: 26px;
  line-height: 7px;
  content: "\f150";
  font-family: "woodmart-font"
}

.global-color-scheme-light .woocommerce-password-hint {
  background-color: #101010
}

.global-color-scheme-light .woocommerce-password-hint:after {
  color: #101010
}

.woocommerce-password-strength {
  margin-top: 20px;
  margin-bottom: -10px;
  padding: 10px 20px
}

.woocommerce-password-strength.short,
.woocommerce-password-strength.bad {
  background-color: #E0B252;
  color: #FFF
}

.woocommerce-password-strength.strong,
.woocommerce-password-strength.good {
  background: #459647;
  color: #FFF;
  font-weight: 700
}

.woocommerce-password-strength:empty {
  display: none;
  margin: 0;
  padding: 0
}

.lost_reset_password {
  margin-right: auto;
  margin-left: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  max-width: 470px
}

.lost_reset_password .form-row-first {
  padding-top: 20px;
  border-top: 1px solid rgba(119, 119, 119, .2)
}

.lost_reset_password p {
  width: 100%;
  font-size: 110%
}

.global-color-scheme-light .lost_reset_password .form-row-first {
  border-color: rgba(255, 255, 255, .15)
}

.woocommerce-lost-password .site-content .woocommerce>p {
  margin-right: auto;
  margin-left: auto;
  max-width: 470px;
  text-align: center;
  font-size: 110%
}

.woocommerce-lost-password .site-content .woocommerce>p:before {
  display: block;
  margin-bottom: 10px;
  color: rgba(135, 135, 135, .15);
  font-weight: 400;
  font-size: 180px;
  line-height: 180px;
  content: "\f125";
  font-family: "woodmart-font"
}

.woocommerce-MyAccount-content .woocommerce-Message {
  margin-bottom: 30px!important
}

.wd-empty-page {
  position: relative;
  margin-top: 5vw;
  margin-bottom: 15px;
  color: var(--wd-title-color);
  text-align: center;
  font-weight: var(--wd-title-font-weight);
  font-style: var(--wd-title-font-style);
  font-size: 48px;
  font-family: var(--wd-title-font);
  line-height: 1.2
}

.wd-empty-page:before {
  display: block;
  margin-bottom: 20px;
  color: rgba(135, 135, 135, .15);
  font-weight: 400;
  font-size: 180px;
  line-height: 180px
}

.global-color-scheme-light .wd-empty-page {
  color: #fff
}

.global-color-scheme-light .wd-empty-page:before {
  color: rgba(255, 255, 255, .6)
}

.wd-empty-page-text {
  margin-bottom: 0;
  text-align: center;
  font-size: 110%
}

.wd-empty-page-text+.return-to-shop {
  margin-top: 25px;
  margin-bottom: 5vw
}

.wd-empty-page-text+.return-to-shop .button {
  padding: 14px 28px;
  font-size: 14px;
  line-height: 20px
}

.return-to-shop {
  text-align: center
}

.return-to-shop .button {
  border-radius: var(--btn-shop-brd-radius);
  color: var(--btn-shop-color);
  box-shadow: none;
  background-color: var(--btn-shop-bgcolor)
}

.return-to-shop .button:hover {
  color: var(--btn-shop-color-hover);
  box-shadow: none;
  background-color: var(--btn-shop-bgcolor-hover)
}

.return-to-shop .button:active {
  box-shadow: none;
  bottom: var(--btn-shop-bottom-active)
}

.widget_shopping_cart .return-to-shop {
  margin-bottom: 0;
}

@media (max-width:1024px) {
  p.form-row-first,
  p.form-row-last {
    float: none;
    width: 100%
  }
  .product-design-default .variations_form .reset_variations,
  .popup-quick-view .variations_form .reset_variations {
    position: absolute;
    bottom: -30px;
    left: 0;
    margin-left: 0
  }
  .product-design-default .variations_form.variation-swatch-selected .variations,
  .popup-quick-view .variations_form.variation-swatch-selected .variations {
    margin-bottom: 50px
  }
  .woocommerce-lost-password .site-content .woocommerce>p:before {
    font-size: 110px;
    line-height: 110px
  }
  .wd-empty-page {
    font-size: 42px
  }
  .wd-empty-page:before {
    font-size: 140px;
    line-height: 140px
  }
}

@media (max-width:768px) {
  .table-responsive-label {
    display: inline-block
  }
  .shop_table_responsive {
    display: block
  }
  .shop_table_responsive thead,
  .shop_table_responsive th {
    display: none
  }
  .shop_table_responsive tbody,
  .shop_table_responsive tfoot,
  .shop_table_responsive tr {
    display: block
  }
  .shop_table_responsive tr {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(129, 129, 129, .2)
  }
  .shop_table_responsive tr:last-child {
    margin-bottom: 0
  }
  .shop_table_responsive td {
    display: block;
    margin-bottom: 8px;
    padding: 0 0 8px;
    border-bottom: none;
    text-align: right
  }
  .shop_table_responsive td:before {
    content: attr(data-title);
    float: left;
    padding-top: 3px;
    color: #2d2a2a;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px
  }
  .shop_table_responsive td:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none
  }
  .global-color-scheme-light .shop_table_responsive tr {
    border-color: rgba(255, 255, 255, .15)
  }
  .global-color-scheme-light .shop_table_responsive td:before {
    color: #fff
  }
  .woocommerce-cart-form__contents tr,
  .group_table tr {
    margin-bottom: 25px;
    padding-bottom: 25px;
    padding-left: 115px;
    min-height: 136px
  }
  .woocommerce-cart-form__contents td,
  .group_table td {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 5px;
    padding: 0
  }
  .woocommerce-cart-form__contents td>*,
  .group_table td>* {
    margin-bottom: 5px
  }
  .woocommerce-cart-form__contents td:before,
  .group_table td:before {
    flex: 1 1 auto;
    margin-bottom: 5px;
    padding-top: 0;
    text-align: left;
    font-size: 11px
  }
  .woocommerce-cart-form__contents td:not(:last-child),
  .group_table td:not(:last-child) {
    border-bottom: 1px dashed rgba(129, 129, 129, .2)
  }
  .woocommerce-cart-form__contents td.product-thumbnail,
  .group_table td.product-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
    max-height: 115px;
    border-bottom: none
  }
  .woocommerce-cart-form__contents td.product-thumbnail img,
  .group_table td.product-thumbnail img {
    min-width: 100px;
    max-width: 100px
  }
  .woocommerce-cart-form__contents td.product-remove,
  .group_table td.product-remove {
    position: absolute;
    top: -7px;
    right: -7px;
    z-index: 1;
    margin-bottom: 0;
    padding-bottom: 0;
    border: none
  }
  .woocommerce-cart-form__contents td.product-name,
  .group_table td.product-name {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    text-align: left
  }
  .woocommerce-cart-form__contents td.product-name>a,
  .woocommerce-cart-form__contents td.product-name>label,
  .group_table td.product-name>a,
  .group_table td.product-name>label {
    margin-bottom: 10px;
    padding-right: 30px
  }
  .woocommerce-cart-form__contents td.product-name:before,
  .group_table td.product-name:before {
    content: none
  }
  .woocommerce-cart-form__contents td.product-quantity input[type="button"],
  .woocommerce-cart-form__contents td.product-quantity input[type="number"],
  .group_table td.product-quantity input[type="button"],
  .group_table td.product-quantity input[type="number"] {
    height: 30px
  }
  .woocommerce-cart-form__contents td.product-quantity input[type="number"],
  .group_table td.product-quantity input[type="number"] {
    width: 25px
  }
  .global-color-scheme-light .woocommerce-cart-form__contents td,
  .global-color-scheme-light .group_table td {
    border-color: rgba(255, 255, 255, .15)
  }
  .group_table {
    padding-top: 20px
  }
  .col2-set .col-1,
  .col2-set .col-2 {
    flex-basis: 100%;
    max-width: 100%
  }
  .quick-shop-wrapper .swatch-on-single.text-only {
    font-size: 14px
  }
  .quick-shop-wrapper .swatch-on-single.swatch-with-bg {
    min-width: 17px;
    width: 17px;
    height: 17px
  }
  .quick-shop-wrapper .swatch-on-single:not(:last-child) {
    margin-right: 10px
  }
  .quick-shop-wrapper .variation-swatch-selected .variations {
    margin-bottom: 30px
  }
  .quick-shop-wrapper table.variations .label {
    margin-bottom: 2px
  }
  .quick-shop-wrapper table.variations .reset_variations {
    bottom: -23px
  }
  .variations_form td {
    display: block
  }
  .variations_form .label {
    margin-bottom: 5px
  }
  .variations_form .label label,
  .variations_form .label span {
    display: inline-block;
    vertical-align: middle;
    line-height: 1
  }
  .variations_form .label label {
    margin-right: 0
  }
  .variations_form .label span {
    margin-left: 5px
  }
  .wd-registration-page {
    padding-top: 0;
    padding-bottom: 0
  }
  #customer_login>.col-md-6 {
    padding-top: 0;
    padding-bottom: 0
  }
  #customer_login>div:not(:first-child):last-child {
    border: none
  }
  .register-or {
    display: flex
  }
  .col-register {
    margin-top: 30px
  }
  .wd-register-tabs .col-register {
    margin-top: 0
  }
  .woocommerce-lost-password .site-content .woocommerce>p {
    font-size: 100%
  }
  .woocommerce-lost-password .site-content .woocommerce>p:before {
    font-size: 80px;
    line-height: 80px
  }
  .wd-empty-page {
    font-size: 32px
  }
  .wd-empty-page:before {
    font-size: 110px;
    line-height: 110px
  }
  .wd-empty-page-text {
    font-size: 100%
  }
  .wd-empty-page-text br {
    display: none
  }
}

@media (max-width:575px) {
  .product-grid-item .wd-stock-progress-bar .stock-info {
    justify-content: center
  }
  .product-grid-item .wd-stock-progress-bar .total-sold {
    display: none
  }
  .product-image-summary .product-images .labels-rounded {
    top: 10px;
    right: 10px
  }
  .product-image-summary .product-images .labels-rounded .product-label {
    min-width: 40px;
    min-height: 40px
  }
  .browser-Internet .product-image-summary .product-images .labels-rounded .product-label {
    height: 40px
  }
  .product-image-summary .product-images .labels-rounded .label-with-img {
    min-height: auto
  }
  .wd-empty-page {
    font-size: 28px
  }
  .wd-empty-page:before {
    font-size: 86px;
    line-height: 86px
  }
}

.wd-header-nav.wd-full-height .wd-nav>li>.wd-dropdown-menu {
  margin: 0!important
}

.wd-header-nav.wd-full-height .wd-nav>li>.wd-dropdown-menu:after {
  width: auto!important;
  height: auto!important
}

.wd-nav-mobile li a .menu-label {
  position: static;
  margin-left: 5px;
  opacity: 1;
  margin-top: 0;
  align-self: auto
}

.wd-nav-mobile li a .menu-label:before {
  content: none
}

.whb-header {
  margin-bottom: 0
}

.whb-flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between
}

.whb-column {
  display: flex;
  align-items: center;
  flex-direction: row;
  max-height: inherit
}

.whb-col-left,
.whb-mobile-left {
  justify-content: flex-start;
  margin-left: -10px
}

.whb-col-right,
.whb-mobile-right {
  justify-content: flex-end;
  margin-right: 0
}

.whb-col-mobile {
  flex: 1 1 auto;
  justify-content: center;
  margin-right: -10px;
  margin-left: -10px
}

.whb-flex-flex-middle .whb-col-center {
  flex: 1 1 0%
}

.whb-flex-equal-sides .whb-col-left,
.whb-flex-equal-sides .whb-col-right {
  flex: 1 1 0%
}

.whb-general-header .whb-mobile-left,
.whb-general-header .whb-mobile-right {
  flex: 1 1 0%
}

.whb-empty-column+.whb-mobile-right {
  flex: 1 1 auto
}

.wd-header-overlap .page-title {
  margin-top: 0
}

.whb-overcontent {
  min-height: .2px
}

.whb-overcontent .whb-main-header {
  position: absolute
}

body:not(.single-product) .whb-overcontent,
.whb-overcontent.whb-custom-header {
  margin-bottom: 0;
  padding-top: 0!important
}

.whb-with-shadow {
  box-shadow: 0 1px 8px rgba(0, 0, 0, .1)
}

.whb-main-header {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  z-index: 390;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden
}

.whb-clone {
  position: fixed;
  z-index: 391;
  visibility: hidden;
  opacity: 0;
  transition: opacity .1s ease, visibility .1s ease, transform .3s ease;
  animation: wd-fadeOutUpBig .1s ease;
  pointer-events: none
}

.whb-clone .whb-flex-row {
  border: none
}

.whb-clone.whb-sticked {
  visibility: visible;
  opacity: 1;
  transform: translateZ(0);
  animation: wd-fadeInDownBig .3s ease;
  pointer-events: visible;
  pointer-events: unset
}

.whb-clone.whb-sticked .whb-not-sticky-row {
  display: block
}

.whb-clone .wd-header-main-nav {
  text-align: center
}

.whb-clone.whb-hide-on-scroll {
  transform: translateY(-100%);
  animation: none
}

.whb-clone.whb-scroll-up {
  transform: none
}

.whb-sticky-prepared .whb-main-header {
  position: absolute
}

.whb-scroll-stick .whb-flex-row {
  transition: height .2s ease, max-height .2s ease
}

.whb-scroll-stick.whb-sticked .whb-flex-row {
  transition-duration: .3s
}

.whb-scroll-stick.whb-scroll-down .whb-main-header,
.whb-scroll-stick.whb-scroll-up .whb-main-header {
  transition: transform .3s ease
}

.whb-scroll-stick.whb-scroll-down .whb-main-header {
  transform: translateY(-100%)
}

.whb-scroll-stick.whb-scroll-up .whb-main-header {
  transform: none
}

.whb-scroll-slide.whb-sticked .whb-main-header {
  animation: wd-fadeInDownBig .4s ease
}

.whb-scroll-slide.whb-scroll-down .whb-main-header,
.whb-scroll-slide.whb-scroll-up .whb-main-header {
  transition: transform .3s ease
}

.whb-scroll-slide.whb-hide-on-scroll.whb-sticked .whb-main-header {
  transform: translateY(-100%);
  animation: none
}

.whb-scroll-slide.whb-hide-on-scroll.whb-scroll-up .whb-main-header {
  transform: none
}

.whb-sticked .whb-main-header {
  position: fixed;
  transform: translateZ(0)
}

.whb-sticked .whb-row {
  transition: background-color .3s ease
}

.whb-sticked .whb-not-sticky-row {
  display: none
}

.whb-sticky-shadow.whb-sticked .whb-main-header {
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1)
}

.whb-sticky-shadow.whb-sticked .whb-row:last-child {
  border-bottom: none
}

.whb-sticky-shadow.whb-sticked .whb-row:last-child .whb-flex-row {
  border-bottom: none
}

.whb-sticky-shadow+.whb-clone {
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
  box-shadow: none;
  border-bottom: 2px solid #eee;
}

.whb-sticky-shadow+.whb-clone .whb-row {
  border-bottom: none
}

.whb-row {
  transition: background-color .2s ease
}

.whb-color-dark:not(.whb-with-bg) {
  background-color: #FFF
}

.whb-color-light:not(.whb-with-bg) {
  background-color: #212121
}

body:not(.single-product) .whb-overcontent:not(.whb-sticked) .whb-row:not(.whb-with-bg) {
  background-color: transparent
}

@keyframes wd-fadeInDownBig {
  from {
    transform: translate3d(0, -100%, 0)
  }
  to {
    transform: none
  }
}

@keyframes wd-fadeOutUpBig {
  from {
    transform: none
  }
  to {
    transform: translate3d(0, -100%, 0)
  }
}

.wd-header-nav,
.site-logo {
  padding-right: 10px;
  padding-left: 10px
}

.wd-header-nav.wd-full-height,
.wd-header-nav.wd-full-height .wd-nav,
.wd-header-nav.wd-full-height .wd-nav>li,
.wd-header-nav.wd-full-height .wd-nav>li>a,
.wd-header-divider.wd-full-height,
.wd-header-divider.wd-full-height:before {
  height: 100%
}

.wd-header-nav {
  flex: 1 1 auto
}

.wd-nav-main:not(.wd-offsets-calculated) .wd-dropdown-menu {
  opacity: 0;
  pointer-events: none
}

.wd-nav-main>li>a,
.wd-nav-secondary>li>a {
  height: 40px;
  font-weight: var(--wd-header-el-font-weight);
  font-style: var(--wd-header-el-font-style);
  font-size: var(--wd-header-el-font-size);
  font-family: var(--wd-header-el-font);
  text-transform: var(--wd-header-el-transform)
}

.whb-top-bar .wd-nav-secondary>li>a {
  font-weight: 500;
  font-size: 13px
}

.wd-nav-secondary:not(.wd-offsets-calculated) .wd-dropdown-menu {
  opacity: 0;
  pointer-events: none
}

.site-logo {
  max-height: 40px
}

.whb-sticked .site-logo {
  max-height: 25px
}

@media (max-width: 767px) {
  .site-logo {
    max-height: 25px;
  }
}

.wd-logo {
  max-height: inherit
}

.wd-logo picture {
  max-height: inherit
}

.wd-logo picture img {
  max-width: inherit
}

.wd-logo img {
  padding-top: 0;
  padding-bottom: 0;
  transform: translateZ(0);
  max-height: inherit;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 800px;
  -webkit-perspective: 800px
}

.wd-logo img[src$=".svg"] {
  height: 100%
}

.browser-Internet .wd-logo img[src$=".svg"] {
  height: auto
}

.wd-switch-logo .wd-sticky-logo {
  display: none;
  animation: wd-fadeIn .5s ease
}

.whb-sticked .wd-switch-logo .wd-main-logo,
.whb-clone .wd-switch-logo .wd-main-logo {
  display: none
}

.whb-sticked .wd-switch-logo .wd-sticky-logo,
.whb-clone .wd-switch-logo .wd-sticky-logo {
  display: block
}

.wd-header-divider:before {
  content: "";
  display: block;
  height: 18px;
  border-right: 2px solid #eee
}

.whb-color-dark .wd-header-divider:before {
  border-color: #eee
}

.whb-color-light .wd-header-divider:before {
  border-color: rgba(255, 255, 255, .25)
}

.whb-col-right .wd-header-divider:last-child,
.whb-mobile-right .wd-header-divider:last-child,
.whb-col-mobile .wd-header-divider:last-child {
  padding-right: 10px
}

.whb-col-left .wd-header-divider:first-child,
.whb-mobile-left .wd-header-divider:first-child,
.whb-col-mobile .wd-header-divider:first-child {
  padding-left: 10px
}

.whb-col-center .wd-header-divider:first-child {
  padding-left: 10px
}

.whb-col-center .wd-header-divider:last-child {
  padding-right: 10px
}

.wd-header-mobile-nav .wd-tools-icon:before {
  font-size: 24px;
  /*
  content: "\f15a";
  font-family: "woodmart-font"*/
}

.mobile-nav .searchform {
  z-index: 2;
  box-shadow: 0 -1px 9px rgba(0, 0, 0, .17);
  box-shadow: none;
}

.mobile-nav .searchform input[type="text"] {
  padding-right: 50px;
  padding-left: 20px;
  height: 60px;
  border: none;
  font-size: 13px;
  font-weight: 500
}

.mobile-nav .wd-dropdown-results {
  position: static
}

.mobile-nav .autocomplete-suggestion {
  padding: 10px 20px
}

.mobile-nav .create-nav-msg {
  padding: 20px
}

.wd-nav-mobile {
  display: flex;
  display: none;
  margin-right: 0;
  margin-left: 0;
  animation: wd-fadeIn 1s ease;
  --nav-mobile-link-color: #333;
  --nav-mobile-link-color-hover: var(--wd-primary-color);
  --nav-mobile-link-color-current: var(--wd-primary-color);
  --nav-mobile-link-brdcolor: rgba(129, 129, 129, .2);
  --nav-mobile-link-bg-active: rgba(0, 0, 0, .04)
}

.wd-nav-mobile>li {
  flex: 1 1 100%;
  max-width: 100%;
  width: 100%
}

.wd-nav-mobile>li>a {
  color: var(--nav-mobile-link-color)
}

.wd-nav-mobile li {
  display: flex;
  flex-wrap: wrap
}

.wd-nav-mobile li a {
  flex: 1 1 0%;
  padding: 15px 20px;
  /*min-height: 50px;*/
  color: #292A2C;
  border-bottom: 2px solid rgba(129, 129, 129, .20);
  font-weight: 700;
}

.wd-nav-mobile li.menu-item-has-children>a:after {
  content: none
}

.wd-nav-mobile li.menu-item-has-children:not(.menu-item-has-block)>a {
  margin-right: -50px;
  padding-right: 55px
}

.wd-nav-mobile li:active>a,
.wd-nav-mobile li.opener-page>a {
  background-color: var(--nav-mobile-link-bg-active)
}

.wd-nav-mobile li.current-menu-item>a {
  color: var(--nav-mobile-link-color-current)
}

.wd-nav-mobile .wd-with-icon>a:before {
  margin-right: 7px;
  font-size: 12px;
  line-height: 1;
  font-family: "woodmart-font"
}

.wd-nav-mobile .menu-item-account>a:before {
  content: "\f124"
}

.wd-nav-mobile .menu-item-wishlist>a:before {
  content: "\f106"
}

.wd-nav-mobile .menu-item-compare>a:before {
  content: "\f128"
}

.wd-nav-mobile ul {
  display: none;
  flex: 1 1 100%;
  order: 3
}

.wd-nav-mobile.wd-active {
  display: block
}

.color-scheme-light .wd-nav-mobile {
  --nav-mobile-link-color: #fff;
  --nav-mobile-link-brdcolor: rgba(255, 255, 255, .15);
  --nav-mobile-link-bg-active: rgba(0, 0, 0, .9)
}

.wd-nav-mob-tab {
  display: flex;
  margin: 0;
  border-bottom: 0;
  background-color: #eee
}

.wd-nav-mob-tab>li {
  flex: 1 0 50%;
  max-width: 50%
}

.wd-nav-mob-tab>li>a {
  padding: 0;
  font-weight: 900
}

.wd-nav-mob-tab>li.wd-active>a {
  background-color: #dc3936;
  color: #fff !important;

}

.wd-nav-mob-tab.wd-style-underline {
  --nav-color: #909090;
  --nav-color-hover: #333;
  --nav-color-active: #333
}

.wd-nav-mob-tab.wd-style-underline .nav-link-text {
  flex: 1 1 auto;
  padding: 15px 15px;
  text-align: center;
  font-weight: 700;
}

.wd-nav-mob-tab.wd-style-underline .nav-link-text:after {
  top: auto;
  bottom: -1px
}

.wd-nav-mob-tab.wd-style-underline:after {
  top: auto;
  bottom: -1px
}

.wd-nav-mob-tab.wd-swap {
  flex-direction: row-reverse
}

.wd-nav-mob-tab:not(.wd-swap) li:first-child .nav-link-text:after,
.wd-nav-mob-tab.wd-swap li:last-child .nav-link-text:after {
  right: 0;
  left: auto
}

.mobile-nav .wd-nav-opener {
  border-left: 1px solid var(--nav-mobile-link-brdcolor);
  --nav-opener-color-active: #fff
}

.mobile-nav .wd-nav-opener.wd-active {
  background-color: var(--wd-primary-color)
}

.mobile-nav .menu-item-has-block .wd-nav-opener {
  display: none
}

.widgetarea-mobile {
  padding: 20px
}

.mobile-menu-widget {
  margin: 0 -20px 20px -20px;
  padding: 0 20px 20px 20px;
  border-bottom: 1px solid rgba(119, 119, 119, .2)
}

.mobile-menu-widget:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none
}

.color-scheme-light .mobile-menu-widget {
  border-color: rgba(255, 255, 255, .15)
}

@media (min-width:1025px) {
  .whb-hidden-lg,
  .whb-hidden-desktop {
    display: none
  }
  .admin-bar .whb-clone {
    top: 32px
  }
  .admin-bar .whb-sticked .whb-main-header {
    top: 32px
  }
  .whb-full-width .whb-row>.container,
  .whb-full-width+.whb-clone .whb-row>.container {
    max-width: 100%;
    width: 95%
  }
  .wd-nav-mobile>li>a:hover {
    color: var(--nav-mobile-link-color-hover)
  }
}

@media (max-width:1024px) {
  .whb-visible-lg,
  .whb-hidden-mobile {
    display: none
  }
}

@media (max-width:768px) {
  .wd-header-mobile-nav.wd-style-text .wd-tools-text {
    display: none
  }
}

.wd-tools-element {
  --wd-header-el-color: #333;
  --wd-header-el-color-hover: rgba(51, 51, 51, .6);
  position: relative
}

.wd-tools-element>a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  color: var(--wd-header-el-color);
  line-height: 1;
  padding-right: 10px;
  padding-left: 10px
}

.wd-tools-element .wd-tools-icon {
  position: relative;
  font-size: 0
}

.wd-tools-element .wd-tools-text {
  margin-left: 8px;
  text-transform: var(--wd-header-el-transform);
  white-space: nowrap;
  font-weight: 600;
  font-style: var(--wd-header-el-font-style);
  font-size: var(--wd-header-el-font-size);
  font-family: var(--wd-header-el-font)
}

.wd-tools-element:hover>a {
  color: var(--wd-header-el-color-hover)
}

.wd-tools-element.wd-style-icon .wd-tools-text {
  display: none
}

.wd-tools-element.wd-style-icon.wd-with-count {
  margin-right: 5px
}

.wd-tools-element.wd-style-text.wd-with-count .wd-tools-text {
  margin-left: 14px
}

.whb-top-bar .wd-tools-element .wd-tools-icon:before {
  font-size: 14px
}

.whb-top-bar .wd-tools-element .wd-tools-text {
  font-weight: 400;
  font-size: 12px
}

.whb-color-light .wd-tools-element {
  --wd-header-el-color: #FFF;
  --wd-header-el-color-hover: rgba(255, 255, 255, .8)
}

.wd-tools-custom-icon .wd-tools-icon:before,
.wd-tools-custom-icon .wd-tools-icon:after {
  display: none
}

.wd-tools-custom-icon .wd-custom-icon {
  transition: all .25s ease
}

.wd-tools-custom-icon:hover .wd-custom-icon {
  opacity: .6
}

.wd-tools-element .wd-tools-count {
  position: absolute;
  top: -5px;
  right: -9px;
  z-index: 1;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--wd-primary-color);
  color: #FFF;
  text-align: center;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 9px;
  line-height: 15px
}

.whb-top-bar .wd-tools-element .wd-tools-count {
  width: 13px;
  height: 13px;
  line-height: 13px
}

.whb-column>.info-box-wrapper,
.wd-header-text,
.whb-column>.wd-button-wrapper,
.whb-column>.wd-social-icons,
.wd-header-html {
  padding-right: 15px;
  padding-left: 15px
}

.wpb-js-composer .whb-column>.info-box-wrapper .wd-info-box {
  margin-bottom: 0
}

.wd-header-text {
  flex: 1 1 auto
}

.wd-header-text p:first-child:empty {
  display: none
}

.wd-header-text.wd-inline {
  flex: 0 0 auto
}

.whb-top-bar .wd-header-text {
  font-size: 12px;
  line-height: 1.2
}

.whb-color-light .wd-header-text {
  --color-gray-300: rgba(255, 255, 255, .5);
  --color-gray-400: rgba(255, 255, 255, .6);
  --color-gray-500: rgba(255, 255, 255, .8);
  --color-gray-600: rgba(255, 255, 255, .8);
  --color-gray-700: rgba(255, 255, 255, .8);
  --color-gray-800: #fff;
  --color-gray-900: #fff;
  --bgcolor-white: #0d0d0d;
  --bgcolor-gray-100: #0d0d0d;
  --brdcolor-gray-300: rgba(255, 255, 255, .15);
  --wd-text-color: rgba(255, 255, 255, .8);
  --wd-title-color: #fff;
  --wd-widget-title-color: var(--wd-title-color);
  --wd-entities-title-color: #fff;
  --wd-entities-title-color-hover: rgba(255, 255, 255, .8);
  --wd-link-color: rgba(255, 255, 255, .9);
  --wd-link-color-hover: #fff;
  --wd-form-brd-color: rgba(255, 255, 255, .2);
  --wd-form-brd-color-focus: rgba(255, 255, 255, .3);
  --wd-form-placeholder-color: rgba(255, 255, 255, .6);
  color: var(--wd-text-color)
}

.whb-column>.wd-social-icons:not(.icons-design-default) .wd-social-icon {
  margin-right: 0;
  margin-left: 0
}

.whb-column>.wd-social-icons:not(.icons-design-default) .wd-social-icon:not(:last-child) {
  margin-right: 8px
}

.wd-header-wishlist .wd-tools-icon:before {
  font-size: 20px;
  content: "\f106";
  font-family: "woodmart-font"
}

.wd-header-compare .wd-tools-icon:before {
  font-size: 20px;
  content: "\f128";
  font-family: "woodmart-font"
}

.wd-social-icons {
  vertical-align: middle;
  font-size: 0
}

.wd-social-icons .wd-social-icon {
  display: inline-block;
  margin: 4px;
  text-align: center;
  font-size: 0
}

.wd-social-icons .wd-icon {
  display: inline-block;
  vertical-align: middle;
  font-family: "woodmart-font"
}

.wd-social-icons p {
  display: inline-block;
  margin: 0
}

.social-facebook .wd-icon:before {
  content: "\f180"
}

.social-twitter .wd-icon:before {
  content: "\f154"
}

.social-instagram .wd-icon:before {
  content: "\f163"
}

.social-email .wd-icon:before {
  content: "\f157"
}

.social-pinterest .wd-icon:before {
  content: "\f156"
}

.social-youtube .wd-icon:before {
  content: "\f162"
}

.social-tumblr .wd-icon:before {
  content: "\f165"
}

.social-linkedin .wd-icon:before {
  content: "\f158"
}

.social-vimeo .wd-icon:before {
  content: "\f177"
}

.social-flickr .wd-icon:before {
  content: "\f164"
}

.social-github .wd-icon:before {
  content: "\f155"
}

.social-dribbble .wd-icon:before {
  content: "\f166"
}

.social-behance .wd-icon:before {
  content: "\f170"
}

.social-soundcloud .wd-icon:before {
  content: "\f172"
}

.social-spotify .wd-icon:before {
  content: "\f171"
}

.social-skype .wd-icon:before {
  content: "\f167"
}

.social-ok .wd-icon:before {
  content: "\f176"
}

.social-whatsapp .wd-icon:before {
  content: "\f175"
}

.social-vk .wd-icon:before {
  content: "\f168"
}

.social-snapchat .wd-icon:before {
  content: "\f178"
}

.social-tg .wd-icon:before {
  content: "\f179"
}

.social-viber .wd-icon:before {
  content: "\f181";
  content: "\f181"
}

.social-tiktok .wd-icon:before {
  content: "\f133"
}

.icons-design-default .wd-social-icon {
  margin: 0!important;
  padding: 6px;
  width: auto;
  height: auto!important;
  color: rgba(0, 0, 0, .6)!important
}

.icons-design-default .wd-social-icon .wd-icon {
  line-height: 1!important
}

.icons-design-default .wd-social-icon:hover {
  color: rgba(0, 0, 0, .8)!important
}

.icons-design-default.color-scheme-light .wd-social-icon,
[class*="color-scheme-light"] .icons-design-default .wd-social-icon {
  color: #fff!important
}

.icons-design-default.color-scheme-light .wd-social-icon:hover,
[class*="color-scheme-light"] .icons-design-default .wd-social-icon:hover {
  color: rgba(255, 255, 255, .6)!important
}

.icons-design-simple .wd-social-icon {
  background-color: #F2F2F2;
  color: rgba(0, 0, 0, .4)!important
}

.icons-design-simple .wd-social-icon:hover {
  color: #fff!important;
  background-color: var(--wd-primary-color)
}

.icons-design-simple.color-scheme-light .wd-social-icon,
.color-scheme-light .icons-design-simple .wd-social-icon {
  background-color: rgba(255, 255, 255, .3);
  color: #fff!important
}

.icons-design-colored-alt .wd-social-icon {
  background-color: #EFEFEF;
  color: rgba(0, 0, 0, .4)!important
}

.icons-design-colored-alt.color-scheme-light .wd-social-icon,
.color-scheme-light .icons-design-colored-alt .wd-social-icon {
  background-color: rgba(255, 255, 255, .3);
  color: #fff!important
}

.icons-design-bordered .wd-social-icon {
  border: 2px solid #CCC;
  background-color: transparent;
  color: rgba(0, 0, 0, .4)!important
}

.icons-design-bordered .wd-social-icon .wd-icon {
  margin-top: -2px
}

.icons-design-bordered.color-scheme-light .wd-social-icon,
.color-scheme-light .icons-design-bordered .wd-social-icon {
  border: 2px solid rgba(255, 255, 255, .4);
  color: #fff!important
}

.icons-design-colored .wd-social-icon {
  color: #fff!important
}

.icons-design-colored .wd-social-icon:hover {
  box-shadow: inset 0 0 200px rgba(0, 0, 0, .15);
  color: #fff!important
}

.icons-design-colored .social-facebook {
  background-color: #365493
}

.icons-design-colored .social-twitter {
  background-color: #3CF
}

.icons-design-colored .social-instagram {
  background-color: #774430
}

.icons-design-colored .social-email {
  background-color: #F89A1E
}

.icons-design-colored .social-pinterest {
  background-color: #CB2027
}

.icons-design-colored .social-youtube {
  background-color: #CB2027
}

.icons-design-colored .social-tumblr {
  background-color: #36465D
}

.icons-design-colored .social-linkedin {
  background-color: #0274B3
}

.icons-design-colored .social-vimeo {
  background-color: #1AB7EA
}

.icons-design-colored .social-flickr {
  background-color: #FE0072
}

.icons-design-colored .social-github {
  background-color: #171515
}

.icons-design-colored .social-dribbble {
  background-color: #EC5E95
}

.icons-design-colored .social-behance {
  background-color: #1F6FFC
}

.icons-design-colored .social-soundcloud {
  background-color: #F9490D
}

.icons-design-colored .social-spotify {
  background-color: #2EBD59
}

.icons-design-colored .social-skype {
  background-color: #00AFF0
}

.icons-design-colored .social-ok {
  background-color: #EE8208
}

.icons-design-colored .social-whatsapp {
  background-color: #1EBEA5
}

.icons-design-colored .social-vk {
  background-color: #4C75A3
}

.icons-design-colored .social-snapchat {
  background-color: #FFFC00
}

.icons-design-colored .social-tg {
  background-color: #37AEE2
}

.icons-design-colored .social-viber {
  background-color: #834995
}

.icons-design-colored .social-tiktok {
  background-color: #010101
}

.icons-design-colored-alt .wd-social-icon:hover,
.icons-design-bordered .wd-social-icon:hover {
  color: #fff!important
}

.icons-design-colored-alt .social-facebook:hover,
.icons-design-bordered .social-facebook:hover {
  border-color: #365493;
  background-color: #365493
}

.icons-design-colored-alt .social-twitter:hover,
.icons-design-bordered .social-twitter:hover {
  border-color: #3CF;
  background-color: #3CF
}

.icons-design-colored-alt .social-instagram:hover,
.icons-design-bordered .social-instagram:hover {
  border-color: #774430;
  background-color: #774430
}

.icons-design-colored-alt .social-email:hover,
.icons-design-bordered .social-email:hover {
  border-color: #F89A1E;
  background-color: #F89A1E
}

.icons-design-colored-alt .social-youtube:hover,
.icons-design-bordered .social-youtube:hover {
  border-color: #CB2027;
  background-color: #CB2027
}

.icons-design-colored-alt .social-pinterest:hover,
.icons-design-bordered .social-pinterest:hover {
  border-color: #CB2027;
  background-color: #CB2027
}

.icons-design-colored-alt .social-tumblr:hover,
.icons-design-bordered .social-tumblr:hover {
  border-color: #36465D;
  background-color: #36465D
}

.icons-design-colored-alt .social-linkedin:hover,
.icons-design-bordered .social-linkedin:hover {
  border-color: #0274B3;
  background-color: #0274B3
}

.icons-design-colored-alt .social-vimeo:hover,
.icons-design-bordered .social-vimeo:hover {
  border-color: #1AB7EA;
  background-color: #1AB7EA
}

.icons-design-colored-alt .social-flickr:hover,
.icons-design-bordered .social-flickr:hover {
  border-color: #FE0072;
  background-color: #FE0072
}

.icons-design-colored-alt .social-github:hover,
.icons-design-bordered .social-github:hover {
  border-color: #171515;
  background-color: #171515
}

.icons-design-colored-alt .social-dribbble:hover,
.icons-design-bordered .social-dribbble:hover {
  border-color: #EC5E95;
  background-color: #EC5E95
}

.icons-design-colored-alt .social-behance:hover,
.icons-design-bordered .social-behance:hover {
  border-color: #1F6FFC;
  background-color: #1F6FFC
}

.icons-design-colored-alt .social-soundcloud:hover,
.icons-design-bordered .social-soundcloud:hover {
  border-color: #F9490D;
  background-color: #F9490D
}

.icons-design-colored-alt .social-spotify:hover,
.icons-design-bordered .social-spotify:hover {
  border-color: #2EBD59;
  background-color: #2EBD59
}

.icons-design-colored-alt .social-skype:hover,
.icons-design-bordered .social-skype:hover {
  border-color: #00AFF0;
  background-color: #00AFF0
}

.icons-design-colored-alt .social-ok:hover,
.icons-design-bordered .social-ok:hover {
  border-color: #EE8208;
  background-color: #EE8208
}

.icons-design-colored-alt .social-whatsapp:hover,
.icons-design-bordered .social-whatsapp:hover {
  border-color: #1EBEA5;
  background-color: #1EBEA5
}

.icons-design-colored-alt .social-vk:hover,
.icons-design-bordered .social-vk:hover {
  border-color: #4C75A3;
  background-color: #4C75A3
}

.icons-design-colored-alt .social-snapchat:hover,
.icons-design-bordered .social-snapchat:hover {
  border-color: #FFFC00;
  background-color: #FFFC00
}

.icons-design-colored-alt .social-tg:hover,
.icons-design-bordered .social-tg:hover {
  border-color: #37AEE2;
  background-color: #37AEE2
}

.icons-design-colored-alt .social-viber:hover,
.icons-design-bordered .social-viber:hover {
  border-color: #834995;
  background-color: #834995
}

.icons-design-colored-alt .social-tiktok:hover,
.icons-design-bordered .social-tiktok:hover {
  border-color: #010101;
  background-color: #010101
}

.icons-size-small .wd-social-icon,
.icons-size- .wd-social-icon {
  width: 30px;
  height: 30px
}

.wd-social-icons.icons-size-small .wd-icon,
.wd-social-icons.icons-size- .wd-icon {
  font-size: 14px;
  line-height: 30px
}

.icons-size-default .wd-social-icon {
  width: 40px;
  height: 40px
}

.wd-social-icons.icons-size-default .wd-icon {
  font-size: 18px;
  line-height: 40px
}

.icons-size-large .wd-social-icon {
  width: 60px;
  height: 60px
}

.wd-social-icons.icons-size-large .wd-icon {
  font-size: 22px;
  line-height: 60px
}

.social-form-circle .wd-social-icon {
  border-radius: 50%
}

.social-follow {
  font-size: 1rem;
  padding-right: 15px;
}

@media (min-width:1025px) {
  .wd-social-icons .whatsapp-mobile {
    display: none!important
  }
}

@media (max-width:1024px) {
  .wd-social-icons .whatsapp-desktop {
    display: none!important
  }
}

.whb-col-right .wd-search-dropdown {
  right: 0;
  left: auto
}

.wd-header-search .wd-tools-icon:before {
  font-size: 19px;
  transition: opacity .3s ease;
  content: "\f130";
  font-family: "woodmart-font"
}

.wd-header-search .wd-tools-icon:after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -7.5px;
  margin-left: -7.5px;
  width: 15px;
  height: 15px;
  font-size: 15px;
  opacity: 0;
  content: "\f112";
  font-family: "woodmart-font"
}

.wd-search-opened .wd-header-search .wd-tools-icon:after {
  opacity: 1;
  transition: opacity .3s ease
}

.wd-search-opened .wd-header-search .wd-tools-icon:before {
  opacity: 0;
  transition: none
}

.whb-top-bar .wd-header-search .wd-tools-icon:before {
  font-size: 13px
}

.whb-top-bar .wd-header-search .wd-tools-icon:after {
  font-size: 10px
}

.wd-search-dropdown {
  width: 300px
}

.wd-search-dropdown input[type="text"] {
  height: 70px;
  border: none
}

.whb-color-light .searchform.wd-style-default {
  --wd-form-brd-color: rgba(255, 255, 255, .2);
  --wd-form-brd-color-focus: rgba(255, 255, 255, .3);
  --wd-form-color: rgba(255, 255, 255, .8);
  --wd-submit-color: #FFF;
  --wd-submit-color-hover: rgba(255, 255, 255, .8);
  --wd-loader-ring-brd-color: rgba(255, 255, 255, .4);
  --wd-loader-highlight-brd-color: #FFF;
  --wd-search-cat-color: rgba(255, 255, 255, .8);
  --wd-search-cat-brd-color: var(--wd-form-brd-color)
}

.whb-color-dark .searchform.wd-style-default {
  --wd-form-brd-color: rgba(129, 129, 129, .20);
  --wd-form-brd-color-focus: rgba(129, 129, 129, .30);
  --wd-form-color: #777;
  --wd-form-placeholder-color: var(--wd-form-color);
  --wd-submit-color: #777;
  --wd-submit-color-hover: #777;
  --wd-loader-ring-brd-color: #BBB;
  --wd-loader-highlight-brd-color: #000;
  --wd-search-cat-color: #777;
  --wd-search-cat-brd-color: var(--wd-form-brd-color)
}

[class*="wd-header-search-form"] {
  padding-right: 10px;
  padding-left: 10px;
  flex: 1 1 auto
}

[class*="wd-header-search-form"] input[type='text'] {
  min-width: 290px
}

.wd-header-search-form-mobile input[type="text"] {
  min-width: 100%;
  height: 42px;
  font-size: 14px
}

.searchform.wd-style-with-bg input[type="text"] {
  background-color: #FFF
}

.searchform.wd-style-with-bg .searchsubmit {
  right: 0;
  width: 52px;
  border-top-right-radius: var(--wd-form-brd-radius);
  border-bottom-right-radius: var(--wd-form-brd-radius);
  color: #FFF;
  background-color: var(--wd-primary-color)
}

.searchform.wd-style-with-bg .searchsubmit:hover {
  color: #FFF;
  box-shadow: inset 0 0 200px rgba(0, 0, 0, .1)
}

.searchform.wd-style-with-bg .searchsubmit:before {
  border-color: rgba(255, 255, 255, .4);
  border-left-color: #FFF
}

.global-color-scheme-light .searchform.wd-style-with-bg {
  --wd-form-brd-color: rgba(129, 129, 129, .20);
  --wd-form-brd-color-focus: rgba(129, 129, 129, .30);
  --wd-form-color: #777;
  --wd-form-placeholder-color: var(--wd-form-color);
  --wd-search-cat-color: #777;
  --wd-search-cat-brd-color: var(--wd-form-brd-color)
}

.whb-col-right .wd-dropdown-my-account {
  right: 0;
  left: auto
}

.wd-header-my-account .wd-tools-icon:before {
  font-size: 19px;
  content: "\f124";
  font-family: "woodmart-font"
}

.wd-account-style-text .wd-tools-icon {
  display: none
}

.wd-account-style-text .wd-tools-text {
  margin-left: 0;
  font-weight: 600;
}

.wd-account-style-icon:not(.wd-with-username) .wd-tools-text {
  display: none
}

@media (max-width:1024px) {
  .wd-header-my-account .wd-dropdown {
    display: none
  }
}

.cart-widget-side {
  display: flex;
  flex-direction: column
}

.cart-widget-side .widget_shopping_cart {
  position: relative;
  flex: 1 1 100%
}

.cart-widget-side .widget_shopping_cart_content {
  display: flex;
  flex: 1 1 auto;
  align-items: stretch;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.cart-widget-side .shopping-cart-widget-body {
  position: relative;
  flex: 1 1 auto
}

.cart-widget-side .wd-scroll-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: 100%
}

.cart-widget-side .woocommerce-mini-cart .mini_cart_item {
  margin-bottom: 0;
  padding: 20px;
  transition: background-color .3s ease
}

.cart-widget-side .woocommerce-mini-cart .mini_cart_item:hover {
  /*background-color: #F9F9F9*/
}

.cart-widget-side .woocommerce-mini-cart .remove {
  top: 19px;
  right: 17px
}

.cart-widget-side .shopping-cart-widget-footer {
  flex: 0 0 auto;
  padding-bottom: 20px
}

.cart-widget-side .shopping-cart-widget-footer>p {
  padding-right: 20px;
  padding-left: 20px
}

.cart-widget-side .woocommerce-mini-cart__total {
  margin-top: 0
}

.cart-widget-side .wd-empty-mini-cart {
  margin-top: 20px;
  padding-left: 15px;
  padding-right: 15px
}

.cart-widget-side.color-scheme-light .widget_shopping_cart .mini_cart_item:hover {
  background-color: rgba(0, 0, 0, .3)
}

.woodmart-scroll {
  position: relative;
  flex: 1 1 auto;
  /*overflow: hidden;*/
  width: 100%;
  height: 100%;
}

.widget_shopping_cart .has-scrollbar .woodmart-scroll-content {
  overflow: scroll;
  overflow-x: hidden;
}

.woodmart-scroll .woodmart-scroll-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.widget_shopping_cart .empty {
  position: relative;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: none;
  color: #333;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}

.cart-widget-side .widget_shopping_cart .empty {
  margin-top: 20px;
  margin-bottom: 5px;
}

.cart-widget-side .widget_shopping_cart .empty:before {
  display: block;
  margin-bottom: 20px;
  color: rgba(135,135,135,.15);
  font-weight: 400;
  font-size: 86px;
  line-height: 86px;
  content: "\f147";
  font-family: woodmart-font;
}

.cart-widget-side .widget_shopping_cart .woodmart-scroll-content {
  position: absolute;
  padding-right: 0;
  max-height: none;
}

.woocommerce-cart .cart-widget-side,
.woocommerce-cart .wd-dropdown-cart,
.woocommerce-checkout .cart-widget-side,
.woocommerce-checkout .wd-dropdown-cart {
  display: none
}

.whb-col-right .wd-dropdown-cart {
  right: 0;
  left: auto
}

.wd-header-cart.wd-design-2 .wd-cart-number,
.wd-header-cart.wd-design-5 .wd-cart-number {
  position: absolute;
  top: -5px;
  right: -9px;
  z-index: 1;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: #C14C3B;
  color: #FFF;
  text-align: center;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 11px;
  line-height: 18px
}

.whb-top-bar .wd-header-cart.wd-design-2 .wd-cart-number,
.whb-top-bar .wd-header-cart.wd-design-5 .wd-cart-number {
  width: 13px;
  height: 13px;
  line-height: 13px
}

.wd-header-cart .wd-tools-icon:before {
  font-size: 20px;
  content: "\f105";
  font-family: "woodmart-font"
}

.wd-header-cart .wd-tools-icon.wd-icon-alt:before {
  content: "\f126";
  font-family: "woodmart-font"
}

.wd-header-cart .wd-cart-subtotal .amount {
  color: inherit;
  font-weight: inherit;
  font-size: inherit
}

.wd-header-cart .wd-cart-number>span {
  display: none
}

.wd-header-cart.wd-design-2 .wd-tools-text {
  margin-left: 15px
}

.wd-header-cart.wd-design-2 .subtotal-divider {
  display: none
}

.wd-header-cart.wd-design-4 .wd-tools-text {
  margin-left: 6px
}

.wd-header-cart.wd-design-4 .wd-cart-number {
  display: inline-block;
  padding: 0 2px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-color: var(--wd-primary-color);
  color: #FFF;
  text-align: center;
  font-weight: 700;
  font-size: 10px;
  line-height: 19px
}

.wd-header-cart.wd-design-4 .subtotal-divider,
.wd-header-cart.wd-design-4 .wd-cart-subtotal {
  display: none
}

.whb-top-bar .wd-header-cart.wd-design-4 .wd-cart-number {
  width: 16px;
  height: 16px;
  line-height: 16px
}

.wd-header-cart.wd-design-5 {
  margin-right: 5px
}

@media (max-width: 767px) {
  .wd-header-cart.wd-design-5 {
    margin-right: 0;
  }
}

.wd-header-cart.wd-design-5 .wd-tools-text {
  display: none
}

.wd-dropdown-cart {
  padding: 20px;
  width: 330px
}

@media (max-width:1024px) {
  .wd-dropdown-cart {
    display: none
  }
}

li:hover .cart-info .wd-entities-title {
  color: var(--wd-entities-title-color-hover)
}

.woocommerce-mini-cart>li {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: row
}

.woocommerce-mini-cart>li a {
  margin-bottom: 0
}

.woocommerce-mini-cart .remove {
  position: absolute;
  top: 1px;
  right: 0;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #292A2C;
  text-align: center;
  font-size: 0;
  line-height: 20px
}

.woocommerce-mini-cart .remove:after {
  font-weight: 700;
  font-size: 9px;
  content: "\f112";
  font-family: "woodmart-font"
}

.woocommerce-mini-cart .remove:hover {
  background-color: transparent;
  color: #C14C3B;
  box-shadow: none;
}

[class*="color-scheme-light"] .woocommerce-mini-cart .remove {
  color: #fff
}

[class*="color-scheme-light"] .woocommerce-mini-cart .remove:hover {
  background-color: rgba(0, 0, 0, .3)
}

.woocommerce-mini-cart .blockOverlay {
  display: none!important
}

.cart-item-link {
  z-index: 1;
  font-size: 0
}

.cart-item-image {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  margin-right: 15px
}

.cart-item-image img {
  float: none!important;
  margin-right: 0!important;
  transition: opacity .6s ease
}

.cart-item-image:after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
  opacity: 0;
  transition: opacity .6s ease;
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 0, 0, .1);
  border-left-color: rgba(0, 0, 0, .8);
  border-radius: 50%;
  vertical-align: middle
}

.removing-process .cart-item-image:after,
.wd-loading .cart-item-image:after {
  opacity: 1;
  animation: wd-rotate 450ms infinite linear
}

.removing-process .cart-item-image img,
.wd-loading .cart-item-image img {
  opacity: .2
}

[class*="color-scheme-light"] .cart-item-image:after {
  border-color: rgba(255, 255, 255, .15);
  border-left-color: #fff
}

.cart-info {
  flex: 1 1 auto;
  padding-right: 30px
}

.cart-info .wd-entities-title {
  transition: all .25s ease
}

.cart-info .wd-entities-title p {
  margin-top: 5px;
  margin-bottom: 5px;
  color: var(--wd-text-color);
  font-weight: var(--wd-text-font-weight);
  font-style: var(--wd-text-font-style);
  font-family: var(--wd-text-font);
  font-size: 90%
}

.cart-info .variation {
  margin-bottom: 6px
}

.cart-info span.quantity {
  display: block;
  color: #BBB;
  font-size: 90%
}

.cart-info div.quantity {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 8px;
  transition: opacity .6s ease
}

.cart-info div.quantity input[type="button"],
.cart-info div.quantity input[type="number"] {
  height: 32px;
  border-color: #eee;
}

.cart-info li.wd-loading>a {
  pointer-events: none
}

.cart-info li.wd-loading div.quantity {
  opacity: .6;
  cursor: none;
  pointer-events: none
}

[class*="color-scheme-light"] .cart-info span.quantity {
  color: rgba(255, 255, 255, .8)
}

.shopping-cart-widget-footer>p {
  margin-bottom: 0
}

.shopping-cart-widget-footer>p:last-child {
  margin-bottom: 0
}

.woocommerce-mini-cart__total {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 2px solid #eee
}

.woocommerce-mini-cart__total strong {
  color: #292A2C;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px
}

.woocommerce-mini-cart__total .amount {
  font-weight: 700;
  font-size: 14px
}

[class*="color-scheme-light"] .woocommerce-mini-cart__total {
  border-color: rgba(255, 255, 255, .15)
}

[class*="color-scheme-light"] .woocommerce-mini-cart__total strong {
  color: #fff
}

.woocommerce-mini-cart__buttons {
  display: block;
  margin-bottom: 0;
  text-align: center
}

.woocommerce-mini-cart__buttons a {
  margin-bottom: 10px;
  width: 100%
}

.woocommerce-mini-cart__buttons a:last-child {
  margin-bottom: 0
}

.woocommerce-mini-cart__buttons .btn-cart {
  border-radius: var(--btn-default-brd-radius);
  color: var(--btn-default-color);
  box-shadow: var(--btn-default-box-shadow);
  background-color: var(--btn-default-bgcolor)
}

.woocommerce-mini-cart__buttons .btn-cart:hover {
  color: var(--btn-default-color-hover);
  box-shadow: var(--btn-default-box-shadow-hover);
  background-color: var(--btn-default-bgcolor-hover)
}

.woocommerce-mini-cart__buttons .btn-cart:active {
  box-shadow: var(--btn-default-box-shadow-active);
  bottom: var(--btn-default-bottom-active)
}

.woocommerce-mini-cart__buttons .checkout {
  border-radius: var(--btn-shop-brd-radius);
  color: var(--btn-shop-color);
  box-shadow: none;
  background-color: #3da54a
}

.woocommerce-mini-cart__buttons .checkout:hover {
  color: var(--btn-shop-color-hover);
  box-shadow: none;
  background-color: var(--btn-shop-bgcolor-hover)
}

.woocommerce-mini-cart__buttons .checkout:active {
  box-shadow: none;
  bottom: var(--btn-shop-bottom-active)
}

.wd-empty-mini-cart {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center
}

.wd-empty-mini-cart:before {
  display: block;
  margin-bottom: 20px;
  color: rgba(135, 135, 135, .15);
  font-size: 86px;
  line-height: 1;
  content: "\f147";
  font-family: "woodmart-font"
}

.wd-empty-mini-cart .title {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px
}

.wd-empty-mini-cart .btn {
  border-radius: var(--btn-shop-brd-radius);
  color: var(--btn-shop-color);
  box-shadow: var(--btn-shop-box-shadow);
  background-color: var(--btn-shop-bgcolor)
}

.wd-empty-mini-cart .btn:hover {
  color: var(--btn-shop-color-hover);
  box-shadow: var(--btn-shop-box-shadow-hover);
  background-color: var(--btn-shop-bgcolor-hover)
}

.wd-empty-mini-cart .btn:active {
  box-shadow: var(--btn-shop-box-shadow-active);
  bottom: var(--btn-shop-bottom-active)
}

[class*="color-scheme-light"] .wd-empty-mini-cart:before {
  color: rgba(255, 255, 255, .15)
}

.wd-dropdown-cats,
.wd-dropdown-cats .wd-dropdown-menu {
  margin: 0!important
}

.wd-dropdown-cats:after,
.wd-dropdown-cats .wd-dropdown-menu:after {
  width: auto!important;
  height: auto!important
}

.whb-sticky-real.whb-sticked .wd-header-cats:not(:hover) .wd-dropdown-cats.wd-opened {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(.19, 1, .22, 1), visibility 0.4s cubic-bezier(.19, 1, .22, 1), transform 0.4s cubic-bezier(.19, 1, .22, 1);
  transform: translateY(15px) translateZ(0);
  pointer-events: none
}

.whb-header-bottom .wd-header-cats,
.whb-top-bar .wd-header-cats,
.whb-header-bottom .menu-opener,
.whb-top-bar .menu-opener {
  height: 100%
}

.wd-header-cats {
  position: relative;
  margin-right: 20px;
  margin-left: 10px
}

.menu-opener {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  min-width: 270px;
  max-width: 320px;
  height: 50px;
  color: #333;
  text-transform: var(--wd-header-el-transform);
  letter-spacing: 0;
  font-weight: var(--wd-header-el-font-weight);
  font-style: var(--wd-header-el-font-style);
  font-size: var(--wd-header-el-font-size);
  font-family: var(--wd-header-el-font);
  line-height: 1;
  transition: all 0.25s ease
}

.menu-opener .menu-opener-icon {
  flex: 0 0 auto;
  margin-right: 12px
}

.menu-opener .menu-opener-icon:not(.custom-icon):after {
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  content: "\f15a";
  font-family: "woodmart-font"
}

.menu-opener:after {
  margin-left: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 12px;
  content: "\f129";
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
  font-family: "woodmart-font"
}

.menu-opener:not(.has-bg) {
  background-color: #666
}

.menu-opener.color-scheme-light {
  color: #FFF;
  font-weight: 700;
}

.wd-dropdown-cats {
  right: 0;
  z-index: 299;
  /*border: 1px solid rgba(129, 129, 129, .15);*/
  border-top: none;
  box-shadow: none
}

.wd-dropdown-cats.color-scheme-light,
.global-color-scheme-light .wd-dropdown-cats {
  border-color: rgba(255, 255, 255, .15)
}

.wd-nav-vertical>li.wd-more-cat-btn>a {
  justify-content: center;
  padding: 10px;
  background-color: #F9F9F9;
  font-weight: 600;
  font-size: 12px;
  line-height: 1
}

.wd-nav-vertical>li.wd-more-cat-btn>a:after {
  display: inline-block;
  font-style: normal;
  content: "\f129";
  font-family: "woodmart-font"
}

.wd-nav-vertical>li.wd-more-cat-btn:hover>a {
  background-color: #F2F2F2
}

.wd-show-cat .wd-nav-vertical>li.wd-more-cat-btn>a:after {
  transform: rotate(180deg)
}

[class*="color-scheme-light"] .wd-nav-vertical>li.wd-more-cat-btn>a {
  background-color: #1a1a1a
}

.title-wrapper [class*="title"] {
  display: inline-block
}

.title-wrapper .title {
  margin-bottom: 0
}

.title-wrapper .img-wrapper {
  margin-top: 10px
}

.subtitle-color-black.subtitle-style-default {
  color: #000
}

.subtitle-color-black.subtitle-style-background {
  background-color: #333;
  color: #fff
}

.subtitle-color-white.subtitle-style-default {
  color: rgba(255, 255, 255, .8)
}

.subtitle-color-white.subtitle-style-background {
  background-color: rgba(255, 255, 255, .8);
  color: #212121
}

.wd-title-color-white {
  --wd-text-color: rgba(255, 255, 255, .8);
  --wd-title-color: #fff;
  color: var(--wd-text-color)
}

.subtitle-color-gradient.subtitle-style-default {
  color: var(--color-gray-400)
}

.subtitle-color-gradient.subtitle-style-background {
  background-color: #f1f1f1;
  color: #333
}

.wd-title-color-gradient .title {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent
}

.wd-title-style-simple .liner-continer {
  position: relative;
  padding-bottom: 10px
}

.wd-title-style-simple .liner-continer:after {
  content: " ";
  position: absolute;
  top: 100%;
  left: calc(50% - 20px);
  width: 40px;
  height: 2px
}

.wd-title-style-simple.text-left .liner-continer:after {
  left: 0
}

.wd-title-style-simple.text-right .liner-continer:after {
  right: 0;
  left: auto
}

.wd-title-style-simple.wd-title-color-default .liner-continer:after {
  background-color: rgba(119, 119, 119, .17)
}

.wd-title-style-simple.wd-title-color-primary .liner-continer:after {
  background-color: var(--wd-primary-color)
}

.wd-title-style-simple.wd-title-color-alt .liner-continer:after {
  background-color: var(--wd-alternative-color)
}

.wd-title-style-simple.wd-title-color-black .liner-continer:after {
  background-color: #000
}

.wd-title-style-simple.wd-title-color-white .liner-continer:after {
  background-color: #fff
}

.wd-title-style-bordered .liner-continer {
  display: flex;
  align-items: center;
  flex-direction: row
}

.wd-title-style-bordered .liner-continer:before,
.wd-title-style-bordered .liner-continer:after {
  content: "";
  display: block;
  flex: 1 1 auto;
  border-bottom: 1px solid rgba(119, 119, 119, .2)
}

.wd-title-style-bordered .liner-continer:before {
  margin-right: 20px
}

.wd-title-style-bordered .liner-continer:after {
  margin-left: 20px
}

.wd-title-style-bordered.text-left .liner-continer:before {
  display: none
}

.wd-title-style-bordered.text-right .liner-continer:after {
  display: none
}

.wd-title-style-bordered.wd-title-color-white .liner-continer:before,
.wd-title-style-bordered.wd-title-color-white .liner-continer:after,
[class*="color-scheme-light"] .wd-title-style-bordered .liner-continer:before,
[class*="color-scheme-light"] .wd-title-style-bordered .liner-continer:after {
  border-color: rgba(255, 255, 255, .3)
}

.wd-title-style-underlined .liner-continer {
  border-bottom: 2px solid var(--brdcolor-gray-300)
}

.wd-title-style-underlined .title {
  margin-bottom: -2px;
  padding-bottom: 10px;
  border-bottom: 2px solid transparent
}

.wd-title-style-underlined.wd-title-color-default .title {
  border-color: #CCC
}

.wd-title-style-underlined.wd-title-color-primary .title {
  border-color: var(--wd-primary-color)
}

.wd-title-style-underlined.wd-title-color-alt .title {
  border-color: var(--wd-alternative-color)
}

.wd-title-style-underlined.wd-title-color-black .title {
  border-color: #000
}

.wd-title-style-underlined.wd-title-color-white .liner-continer {
  border-color: rgba(255, 255, 255, .5)
}

.wd-title-style-underlined.wd-title-color-white .title {
  border-color: #fff
}

.wd-title-style-underlined-2 {
  --margin-bottom: 15px
}

.wd-title-style-underlined-2 .title {
  border-bottom: 2px solid;
  line-height: .85
}

.wd-title-style-underlined-2 .title.wd-fontsize-xxl {
  border-width: 3px
}

.wd-title-style-underlined-2 .title.wd-fontsize-xxxl {
  border-width: 4px
}

.wd-title-style-underlined-2:not(.wd-title-color-gradient) .title {
  text-shadow: 1px 1px #fff, 1px -1px #fff, -1px 1px #fff, -1px -1px #fff
}

.wd-title-style-underlined-2:not(.wd-title-color-gradient) .title.wd-fontsize-xxxl {
  text-shadow: 2px 2px #fff, 2px -2px #fff, -2px 2px #fff, -2px -2px #fff
}

.wd-title-style-underlined-2.wd-title-color-default .title {
  border-color: #CCC
}

.wd-title-style-underlined-2.wd-title-color-primary .title {
  border-color: var(--wd-primary-color)
}

.wd-title-style-underlined-2.wd-title-color-alt .title {
  border-color: var(--wd-alternative-color)
}

.wd-title-style-underlined-2.wd-title-color-black .title {
  border-color: #000
}

.wd-title-style-underlined-2.wd-title-color-white .title {
  border-color: #fff
}

.wd-title-style-underlined-2.wd-title-color-white .title,
[class*="color-scheme-light"] .wd-title-style-underlined-2 .title {
  text-shadow: none!important
}

.wd-title-style-shadow {
  padding: 25px;
  box-shadow: 0 0 8px rgba(0, 0, 0, .12)
}

.wpb-js-composer .title-wrapper {
  min-width: 100%
}

.wpb-js-composer .title-wrapper .liner-continer {
  min-width: inherit;
  max-width: inherit
}

.wpb-js-composer .title-wrapper [class*="title"] {
  max-width: inherit
}

.wpb-js-composer .title-wrapper.wd-title-empty .liner-continer {
  margin-bottom: 0
}

.wpb-js-composer .title-wrapper.wd-title-empty .liner-continer .title {
  display: none
}

@media (max-width:1024px) {
  .title-subtitle.wd-fontsize-m,
  .title-after_title.wd-fontsize-s {
    font-size: 14px
  }
  .wd-title-style-underlined-2 .title.wd-fontsize-xxl,
  .wd-title-style-underlined-2 .title.wd-fontsize-xxxl {
    border-width: 2px
  }
  .wd-title-style-underlined-2:not(.wd-title-color-gradient) .title.wd-fontsize-xxxl {
    text-shadow: 1px 1px #fff, 1px -1px #fff, -1px 1px #fff, -1px -1px #fff
  }
}

@media (max-width:575px) {
  .title-wrapper .title-subtitle {
    font-size: 12px
  }
  .title-wrapper .title {
    font-size: 20px
  }
}

.wd-lazy-load {
  width: 100%;
  transition: all .3s ease;
  transform: translateZ(0)
}

.owl-carousel .wd-lazy-load {
  transform: none
}

.wd-lazy-blur {
  filter: blur(2vw)
}

.wd-lazy-blur.wd-loaded {
  filter: blur(0)
}

.wd-lazy-fade {
  opacity: 1
}

.wd-lazy-fade.wd-loaded {
  opacity: 1
}

.brands-widget .brand-item img.wd-lazy-load {
  object-fit: contain
}

.category-grid-item {
  text-align: center
}

.category-grid-item img {
  width: 100%
}

.category-grid-item .wrapp-category {
  position: relative
}

.category-grid-item .category-image-wrapp {
  position: relative;
  overflow: hidden
}

.category-grid-item .hover-mask {
  padding: 10px
}

.category-grid-item .category-image {
  display: block;
  margin: -1px;
  transition: transform 0.5s cubic-bezier(0, 0, .44, 1.18)
}

.category-grid-item .category-link {
  z-index: 5
}

.category-grid-item .wd-entities-title {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 20px
}

.category-grid-item .count {
  display: none;
  padding: 0;
  background-color: transparent;
  color: rgba(88, 88, 88, .35)
}

.category-grid-item .more-products {
  font-size: 16px
}

.category-grid-item .more-products>a {
  color: inherit
}

.category-grid-item:hover .category-image {
  transform: scale3d(1.1, 1.1, 1)
}

.categories-style-masonry-first:not([style]) {
  display: block
}

.categories-style-masonry-first:not([style]):after {
  content: "";
  display: block;
  clear: both
}

.categories-style-masonry-first:not([style]) .category-grid-item {
  float: left
}

.categories-style-carousel .owl-stage-outer,
.categories-style-carousel .owl-carousel:not(.owl-loaded) {
  padding-top: 2px;
  padding-bottom: 2px
}

.cat-design-alt img {
  width: auto
}

.cat-design-alt.categories-with-shadow .category-image-wrapp {
  box-shadow: 1px 1px 2px rgba(0, 0, 0, .12)
}

/*@media (min-width:1025px) {
  .categories-style-masonry-first .category-grid-item:first-child .wd-entities-title {
    font-size: 28px
  }
}*/

@media (max-width:768px) {
  .category-grid-item .wd-entities-title {
    font-size: 16px
  }
  .category-grid-item .more-products {
    font-size: 14px
  }
  .category-grid-item:hover .category-image {
    transform: none
  }
  .categories-style-masonry-first .category-grid-item {
    flex-basis: 50%;
    max-width: 50%;
    width: 50%
  }
  /*
  .categories-style-masonry-first .category-grid-item:first-child {
    flex-basis: 100%;
    max-width: 100%;
    width: 100%
  }*/
}

@media (min-width:769px) {
  .cat-design-default .wrapp-category {
    overflow: hidden
  }
  .cat-design-default .hover-mask {
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    transition: transform .25s ease;
    transform: translateY(100%) translateZ(0);
    text-align: left;
    padding: 0
  }
  .cat-design-default .wd-entities-title {
    position: absolute;
    bottom: 100%;
    left: 0;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 600;
  }
  .cat-design-default .more-products {
    margin-top: 5px;
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
    transform: translateY(15px) translateZ(0)
  }
  .cat-design-default.categories-with-shadow .wrapp-category {
    box-shadow: 1px 1px 2px rgba(0, 0, 0, .12);
    box-shadow: none;
  }
  .cat-design-default:hover .hover-mask {
    transform: translateY(0) translateZ(0)
  }
  .cat-design-default:hover .more-products {
    opacity: 1;
    transform: translateY(0) translateZ(0)
  }
}

@media (min-width: 768px) {
  .cat-design-default:not(.without-product-count) .hover-mask {
    -webkit-transform: translateY(calc(-50% + 20px)) translateZ(0);
    transform: translateY(calc(-50% + 20px)) translateZ(0);
  }

  .cat-design-default:not(.without-product-count):hover .hover-mask {
    -webkit-transform: translateY(-50%) translateZ(0);
    transform: translateY(-50%) translateZ(0);
  }
}

/*
.cat-design-default .category-image-wrapp:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: #000;
  opacity: .1;
  transition: opacity .5s cubic-bezier(0,0,.44,1.18);
}

.cat-design-default:hover .category-image-wrapp:after {
  opacity: .4;
}
*/

.wd-products-tabs .products-tabs-title {
  list-style: none;
  --li-pl: 0;
  --list-mb: 0;
  --li-mb: 0;
  margin-right: -15px;
  margin-left: -15px;
  color: var(--wd-title-color);
  font-weight: var(--wd-title-font-weight);
  font-style: var(--wd-title-font-style);
  font-family: var(--wd-title-font)
}

.wd-products-tabs.tabs-design-default .products-tabs-title .tab-label,
.wd-products-tabs.tabs-design-alt .products-tabs-title .tab-label {
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding-top: 1px;
  padding-bottom: 1px
}

.wd-products-tabs.tabs-design-default .products-tabs-title .tab-label:after,
.wd-products-tabs.tabs-design-alt .products-tabs-title .tab-label:after {
  content: '';
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.4s cubic-bezier(.175, .885, .32, 1.15);
  background-color: #dc3936
}

.wd-products-tabs.tabs-design-default .products-tabs-title li:hover .tab-label:after,
.wd-products-tabs.tabs-design-default .products-tabs-title li.active-tab-title .tab-label:after,
.wd-products-tabs.tabs-design-alt .products-tabs-title li:hover .tab-label:after,
.wd-products-tabs.tabs-design-alt .products-tabs-title li.active-tab-title .tab-label:after {
  width: 100%
}

.wd-products-tabs .tabs-navigation-wrapper {
  position: relative
}

.wd-products-tabs .wd-tabs-header {
  position: relative
}

.wd-products-tabs .open-title-menu {
  display: none
}

.wd-products-tabs .tabs-name {
  text-transform: uppercase;
  font-size: 22px
}

.wd-products-tabs .tabs-name>span {
  vertical-align: middle
}

.wd-products-tabs .tabs-name .img-wrapper {
  margin-right: 10px
}

.wd-products-tabs .img-wrapper {
  display: inline-block
}

.wd-products-tabs .products-tabs-title li {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  padding: 0 15px;
  color: inherit;
  vertical-align: bottom;
  text-transform: none;
  font-weight: 500;
  font-size: .85rem;
  line-height: 1.4;
  text-transform: uppercase;
  opacity: 1;
  color: #292A2C;
  cursor: pointer;
  transition: opacity .25s ease, color .25s ease
}

.wd-products-tabs .products-tabs-title li:hover,
.wd-products-tabs .products-tabs-title li.active-tab-title {
  opacity: 1
}

.wd-products-tabs .products-tabs-title .tab-label {
  position: relative
}

.wd-products-tabs .wd-tab-content {
  visibility: visible;
  opacity: 1;
  transition: transform .25s ease, opacity .25s ease, visibility 0s ease;
  transform: none
}

.wd-products-tabs .wd-tab-content.loading {
  visibility: hidden;
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease, visibility 0s ease .3s;
  transform: translateY(30px);
  pointer-events: none
}

.wd-products-tabs.tabs-design-default .wd-tab-content.loading .wrap-loading-arrow,
.wd-products-tabs.tabs-design-alt .wd-tab-content.loading .wrap-loading-arrow {
  display: none
}

.wd-products-tabs.tabs-design-default .wd-tabs-header {
  margin-bottom: 15px
}

.wd-products-tabs.tabs-design-default .tabs-name {
  margin-bottom: 10px
}

.wd-products-tabs.tabs-design-default .products-tabs-title .img-wrapper {
  margin-bottom: 10px
}

.wd-products-tabs.tabs-design-alt .wd-tabs-header {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px
}

.wd-products-tabs.tabs-design-alt .tabs-name,
.wd-products-tabs.tabs-design-alt .tabs-navigation-wrapper {
  margin-bottom: 10px
}

.wd-products-tabs.tabs-design-alt .products-tabs-title li {
  align-items: center;
  flex-direction: row;
  vertical-align: middle
}

.wd-products-tabs.tabs-design-alt .products-tabs-title .img-wrapper {
  margin-right: 10px
}

.wd-products-tabs.tabs-design-simple .wd-tabs-header {
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  margin-bottom: 20px;
  border-bottom: 2px solid #EAEAEA
}

.wd-products-tabs.tabs-design-simple .tabs-name {
  position: relative;
  z-index: 1;
  margin-bottom: -2px;
  margin-right: 25px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--wd-primary-color);
  vertical-align: middle
}

.wd-products-tabs.tabs-design-simple .tabs-name>span {
  vertical-align: bottom
}

.wd-products-tabs.tabs-design-simple .tabs-name .img-wrapper {
  margin-left: 4px
}

.wd-products-tabs.tabs-design-simple .products-tabs-title li {
  align-items: flex-end;
  flex-direction: row;
  font-size: 14px
}

.wd-products-tabs.tabs-design-simple .products-tabs-title li.active-tab-title {
  color: var(--wd-primary-color)
}

.wd-products-tabs.tabs-design-simple .products-tabs-title .img-wrapper {
  margin-right: 10px
}

.wd-products-tabs.tabs-design-simple .owl-nav,
.wd-products-tabs.tabs-design-simple .wrap-loading-arrow {
  position: absolute;
  top: -62px;
  animation: wd-fadeIn .5s ease both .3s
}

.wd-products-tabs.tabs-design-simple .owl-nav>div,
.wd-products-tabs.tabs-design-simple .wrap-loading-arrow>div {
  position: static;
  visibility: visible;
  margin-top: 0;
  width: 30px;
  height: 40px;
  opacity: 1;
  transform: none;
  pointer-events: visible
}

.wd-products-tabs.tabs-design-simple .owl-nav>div:after,
.wd-products-tabs.tabs-design-simple .wrap-loading-arrow>div:after {
  font-weight: 700;
  font-size: 14px
}

.wd-products-tabs.tabs-design-simple .owl-nav>div[class*="prev"],
.wd-products-tabs.tabs-design-simple .owl-nav>div[class*="next"],
.wd-products-tabs.tabs-design-simple .wrap-loading-arrow>div[class*="prev"],
.wd-products-tabs.tabs-design-simple .wrap-loading-arrow>div[class*="next"] {
  margin: 0;
  padding: 0
}

.wd-products-tabs.tabs-design-simple .wrap-loading-arrow {
  right: -10px
}

.wd-products-tabs.tabs-design-simple .owl-nav {
  right: 0
}

.wd-products-tabs.tabs-design-simple .wd-carousel-spacing-30 .owl-nav {
  right: 5px
}

.wd-products-tabs.tabs-design-simple .owl-loaded:after,
.wd-products-tabs.tabs-design-simple .owl-loaded:before {
  content: none
}

.wd-products-tabs.tabs-design-simple .wd-products-loader .wd-loader {
  position: absolute;
  top: 30px
}

.wd-products-tabs.tabs-design-simple .wd-tab-content.loading .owl-nav,
.wd-products-tabs.tabs-design-simple .wd-tab-content.loading .wrap-loading-arrow {
  display: none
}

.wd-products-tabs.element-loading .wd-tab-content .wd-products-loader {
  display: none!important
}

[class*="color-scheme-light"] .wd-products-tabs .products-tabs-title li {
  color: #fff
}

[class*="color-scheme-light"] .wd-products-tabs.tabs-design-simple .wd-tabs-header {
  border-color: rgba(255, 255, 255, .15)
}

.wd-tabs-loader {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  visibility: hidden;
  margin-top: 50px;
  text-align: center;
  opacity: 0;
  pointer-events: none
}

.browser-Safari .wd-tabs-loader {
  visibility: visible
}

.element-loading .wd-tabs-loader {
  visibility: visible;
  opacity: 1;
  transition: opacity .3s ease, visibility .3s ease
}

.element-loading .wd-tabs-loader .wd-loader:after {
  animation: wd-rotate 450ms infinite linear
}

@media (max-width:1024px) {
  .wd-products-tabs.tabs-design-simple .owl-nav>div,
  .wd-products-tabs.tabs-design-simple .wrap-loading-arrow>div {
    justify-content: center
  }
}

@media (max-width:768px) {
  .wd-products-tabs .tabs-name .svg-icon {
    width: 25px!important;
    height: 25px!important
  }
  .wd-products-tabs .tabs-name .img-wrapper img {
    max-height: 25px;
    width: auto
  }
  .wd-products-tabs .tabs-navigation-wrapper {
    overflow: hidden
  }
  .wd-products-tabs .tabs-navigation-wrapper .svg-icon {
    width: 25px!important;
    height: 25px!important
  }
  .wd-products-tabs .tabs-navigation-wrapper .img-wrapper img {
    max-height: 25px;
    width: auto
  }
  .wd-products-tabs .products-tabs-title {
    /*
    overflow-y: auto;
    margin-right: -10px;
    margin-left: -10px;
    white-space: nowrap;
    padding-bottom: 2px;
    mask-image: linear-gradient(to left, transparent 5px, #000 40px);
    -webkit-mask-image: linear-gradient(to left, transparent 5px, #000 40px)*/
  }
  .wd-products-tabs .products-tabs-title::-webkit-scrollbar {
    /*
    display: none
    */
  }
  .wd-products-tabs .products-tabs-title li {
    padding-right: 10px;
    padding-left: 10px;
  }
  .wd-products-tabs.tabs-design-alt .tabs-name,
  .wd-products-tabs.tabs-design-alt .tabs-navigation-wrapper {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%
  }
  .wd-products-tabs.tabs-design-simple .wd-tabs-header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 10px;
    border-bottom: none
  }
  .wd-products-tabs.tabs-design-simple .tabs-name {
    margin-right: 0
  }
  .wd-products-tabs.tabs-design-simple .tabs-navigation-wrapper {
    flex: 1 1 auto;
    padding-top: 10px;
    max-width: 100%;
    width: 100%;
    border-top: 2px solid #EAEAEA
  }
  .wd-products-tabs.tabs-design-simple .owl-nav,
  .wd-products-tabs.tabs-design-simple .wrap-loading-arrow {
    top: -103px
  }
  .wd-products-tabs.tabs-design-simple .owl-carousel .owl-nav {
    right: -5px
  }
  [class*="color-scheme-light"] .wd-products-tabs.tabs-design-simple .tabs-navigation-wrapper {
    border-color: rgba(255, 255, 255, .15)
  }
}

.show-arrow .wrap-loading-arrow>div {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  pointer-events: visible
}

.wrap-loading-arrow>div.disabled {
  color: var(--color-gray-400);
  cursor: default
}

.wd-products-element {
  position: relative
}

.pagination-arrows {
  position: relative;
  visibility: visible;
  opacity: 1;
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  transform: none
}

.pagination-arrows+.products-footer {
  margin-top: 0
}

.pagination-arrows.loading {
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  pointer-events: none
}

.browser-Safari .pagination-arrows.loading {
  visibility: visible
}

.wd-animated-products .product-grid-item {
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  transform: scale(.7)
}

.wd-animated-products .product-grid-item.wd-animated {
  opacity: 1;
  transform: none
}

.wrap-loading-arrow>div {
  position: fixed
}

.wd-products-loader {
  text-align: center
}

.wd-products-loader .wd-loader {
  position: fixed;
  top: 50%;
  visibility: hidden;
  margin-top: -15px;
  margin-left: -15px;
  opacity: 0;
  transition: opacity .15s ease, visibility .15s ease;
  pointer-events: none
}

.browser-Safari .wd-products-loader .wd-loader {
  visibility: visible
}

.element-loading .wd-products-loader .wd-loader:after {
  animation: wd-rotate 450ms infinite linear
}

.element-loading .wd-products-loader:not(.hidden-loader) .wd-loader {
  visibility: visible;
  opacity: 1;
  transition-duration: .3s
}

.element-loading .wd-products-loader:not(.hidden-loader) .wd-loader:after {
  animation: wd-rotate 450ms infinite linear
}

@media (max-width:1024px) {
  .wrap-loading-arrow>div {
    transition: all .15s ease
  }
}

.wd-buttons[class*="wd-pos-r"] .wd-tooltip-label {
  top: 50%;
  right: 100%;
  margin-top: -17px;
  margin-right: 8px
}

.wd-buttons[class*="wd-pos-r"] .wd-tooltip-label:before {
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000
}

.product-grid-item {
  text-align: center
}

.product-grid-item .product-element-top {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden
}

.product-grid-item .product-element-top:after {
  position: absolute;
  top: 50%;
  left: 50%;
  visibility: hidden;
  margin-top: -16px;
  margin-left: -16px;
  opacity: 0;
  transition: opacity .1s ease, visibility .1s ease;
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 1px solid #BBB;
  border-left-color: #000;
  border-radius: 50%;
  vertical-align: middle
}

.product-grid-item .product-element-top:hover .hover-img {
  opacity: 1;
  transform: scale(1.09)
}

.product-grid-item .swatches-on-grid {
  margin-bottom: 5px
}

.product-grid-item .swatches-on-grid:empty {
  display: none
}

.product-grid-item .product-image-link img,
.product-grid-item .hover-img img {
  padding: 10px;
  padding-bottom: 0;
  max-height: 200px;
  width: auto;
}

.product-grid-item .product-image-link {
  display: block
}

.product-grid-item .hover-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF;
  opacity: 0;
  transition: opacity 0.3s ease, transform 1s cubic-bezier(0, 0, .44, 1.18)
}

.product-grid-item .hover-img>a {
  display: block;
  flex: 1 1 100%;
  max-width: 100%;
  width: 100%
}

.product-grid-item .wd-entities-title {
  margin-bottom: 5px;
  font-size: inherit
}

.product-grid-item .wd-product-cats,
.product-grid-item .wd-product-brands-links {
  margin-bottom: 5px;
  color: #9E9E9E;
  font-size: 95%
}

.product-grid-item .wd-product-cats a,
.product-grid-item .wd-product-brands-links a {
  display: inline-block;
  color: #9E9E9E
}

.product-grid-item .wd-product-cats a:hover,
.product-grid-item .wd-product-brands-links a:hover {
  color: #5C5C5C
}

.product-grid-item .wd-product-countdown,
.product-grid-item .wd-stock-progress-bar {
  margin-top: 10px
}

.product-grid-item .star-rating {
  margin-bottom: 5px
}

.product-grid-item .price {
  display: block;
  margin-bottom: 0;
  line-height: 1.3
}

.product-grid-item .added_to_cart {
  display: none!important
}

.product-grid-item.product-swatched .hover-img {
  display: none
}

.product-grid-item.wd-loading-image .hover-img {
  display: none
}

.product-grid-item.wd-loading-image .product-image-link {
  opacity: .4
}

.product-grid-item.wd-loading-image .product-element-top:after {
  visibility: visible;
  opacity: 1;
  transition: opacity .25s ease, visibility .25s ease;
  animation: wd-rotate 450ms infinite linear
}

.product-grid-item.quick-shop-shown .product-element-top .hover-img,
.product-grid-item.wd-loading-quick-shop .product-element-top .hover-img {
  opacity: 0;
  transition: opacity 0.25s ease, transform 2s cubic-bezier(0, 0, .44, 1.18)
}

.wd-spacing-0 .product-grid-item:not([class*="wd-hover-info"]),
.wd-spacing-2 .product-grid-item:not([class*="wd-hover-info"]) {
  margin-bottom: 10px
}

[class*="color-scheme-light"] .product-grid-item .product-element-top:after {
  border-color: rgba(255, 255, 255, .15);
  border-left-color: #fff
}

[class*="color-scheme-light"] .product-grid-item .wd-product-cats,
[class*="color-scheme-light"] .product-grid-item .wd-product-brands-links {
  color: rgba(255, 255, 255, .6)
}

[class*="color-scheme-light"] .product-grid-item .wd-product-cats a,
[class*="color-scheme-light"] .product-grid-item .wd-product-brands-links a {
  color: rgba(255, 255, 255, .6)
}

[class*="color-scheme-light"] .product-grid-item .wd-product-cats a:hover,
[class*="color-scheme-light"] .product-grid-item .wd-product-brands-links a:hover {
  color: #fff
}

.quick-shop-wrapper {
  z-index: 10;
  background-color: rgba(255, 255, 255, .95);
  transition: transform .3s ease;
  transform: translate3d(0, 103%, 0)
}

.quick-shop-wrapper .quick-shop-form {
  padding: 45px 10px 0 10px;
  height: 100%;
  text-align: center;
  max-height: 100%
}

.quick-shop-wrapper div.quantity {
  display: none!important
}

.quick-shop-wrapper .woocommerce-variation-add-to-cart {
  position: relative;
  display: flex;
  align-items: stretch;
  flex-direction: row;
  justify-content: space-between;
  order: 1;
  margin-right: -10px;
  margin-left: -10px
}

.quick-shop-wrapper .single_add_to_cart_button {
  margin-bottom: calc(-1 * var(--btn-shop-bottom-active));
  flex: 1 1 auto;
  border-radius: 0!important
}

.quick-shop-wrapper .single_add_to_cart_button:before {
  display: inline-block;
  margin-right: 10px;
  margin-left: -9px;
  vertical-align: bottom;
  font-weight: 400;
  font-size: 19px;
  content: "\f123";
  font-family: "woodmart-font"
}

.quick-shop-wrapper .quick-shop-close {
  position: absolute;
  top: 5px;
  right: 8px;
  z-index: 5;
  opacity: 0;
  transition: opacity .2s ease .0s;
  text-transform: uppercase
}

.quick-shop-wrapper .quick-shop-close>a {
  letter-spacing: .6px;
  font-size: 12px;
  height: 30px
}

.quick-shop-wrapper .quick-shop-close>a:before {
  font-size: 9px
}

[class*="color-scheme-light"] .quick-shop-wrapper {
  background-color: rgba(0, 0, 0, .9)
}

.quick-shop-shown .wd-buttons,
.wd-loading-quick-shop .wd-buttons {
  opacity: 0
}

.quick-shop-shown .product-labels,
.wd-loading-quick-shop .product-labels {
  opacity: 0
}

.wd-loading-quick-shop .product-element-top:after {
  visibility: visible;
  opacity: 1;
  transition: opacity .25s ease, visibility .25s ease;
  animation: wd-rotate 450ms infinite linear
}

.wd-loading-quick-shop .product-image-link {
  opacity: .2
}

.quick-shop-shown .quick-shop-wrapper {
  transition: transform .4s ease;
  transform: translate3d(0, 0, 0)
}

.quick-shop-shown .quick-shop-close {
  opacity: 1;
  transition: all .25s ease .35s
}

.wd-buttons {
  z-index: 2;
  display: flex;
  flex-direction: column;
  background: #FFF;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, .1);
  transition: all .3s ease
}

.wd-buttons .wd-action-btn>a {
  height: 45px
}

.wd-buttons.wd-pos-r-t {
  position: absolute;
  top: 10px;
  right: 10px
}

.wd-buttons.wd-pos-r-b {
  position: absolute;
  right: 10px;
  bottom: 10px
}

.wd-buttons[class*="wd-pos-r"] {
  opacity: 0;
  transform: translateX(20px) translateZ(0)
}

.product-grid-item:hover .wd-buttons[class*="wd-pos-r"] {
  opacity: 1;
  transform: translateY(0) translateZ(0)
}

.product-grid-item.product-swatched .wd-buttons[class*="wd-pos-r"],
.product-grid-item.quick-shop-shown .wd-buttons[class*="wd-pos-r"],
.product-grid-item[class*="wd-loading"] .wd-buttons[class*="wd-pos-r"] {
  opacity: 0;
  transform: translateX(20px) translateZ(0)
}

.product-grid-item.product-swatched:not(.quick-shop-shown):not([class*="wd-loading"]) .product-element-top:hover .wd-buttons[class*="wd-pos-r"] {
  opacity: 1;
  transform: translateY(0) translateZ(0)
}

[class*="color-scheme-light"] .wd-buttons {
  background-color: #101010
}

.wd-add-btn-replace .add-to-cart-loop {
  overflow: hidden;
  padding: 0
}

.wd-add-btn-replace .add-to-cart-loop .wd-tooltip-label {
  display: none
}

.wd-add-btn-replace .add-to-cart-loop span {
  display: block;
  transition: transform .25s ease, opacity .15s ease
}

.wd-add-btn-replace .add-to-cart-loop:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 20px;
  transition: opacity .15s ease, transform .25s ease;
  transform: translateY(100%);
  content: "\f123";
  font-family: "woodmart-font"
}

.wd-add-btn-replace .add-to-cart-loop:after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -9px;
  margin-left: -9px;
  opacity: 0;
  transition: opacity .2s ease;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-left-color: #fff;
  border-radius: 50%;
  vertical-align: middle
}

.wd-add-btn-replace .add-to-cart-loop:hover:before {
  transform: translateY(0) translateZ(0)
}

.wd-add-btn-replace .add-to-cart-loop:hover span {
  transform: translateY(-100%) translateZ(0)
}

.wd-add-btn-replace .add-to-cart-loop.loading:before {
  opacity: 0
}

.wd-add-btn-replace .add-to-cart-loop.loading:after {
  opacity: 1;
  animation: wd-rotate 450ms infinite linear
}

.wd-add-btn-replace .add-to-cart-loop.loading span {
  opacity: 0
}

.title-line-one .product-grid-item .wd-entities-title,
.title-line-two .product-grid-item .wd-entities-title {
  overflow: hidden;
  line-height: 18px
}

.title-line-one .product-grid-item .wd-entities-title {
  max-height: 18px
}

.title-line-two .product-grid-item .wd-entities-title {
  max-height: 36px
}

.slider-type-product .owl-stage-outer,
.slider-type-product .owl-carousel:not(.owl-loaded) {
  padding-top: 3px;
  padding-bottom: 3px
}

.quick-shop-wrapper table.variations label {
  margin-right: 0
}

.quick-shop-wrapper table.variations tr {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  margin-bottom: 10px
}

.quick-shop-wrapper table.variations tr:last-child {
  margin-bottom: 0
}

.quick-shop-wrapper table.variations td {
  padding-bottom: 0;
  text-align: center
}

.quick-shop-wrapper table.variations .label {
  margin-bottom: 5px
}

.quick-shop-wrapper table.variations .reset_variations {
  position: absolute;
  left: 50%;
  margin-left: 0;
  transform: translateX(-50%)
}

.quick-shop-wrapper .swatches-on-single {
  padding-bottom: 0;
  transition: padding .25s ease
}

@media (max-width:1024px) {
  .product-grid-item .hover-img {
    display: none
  }
  .product-grid-item .wd-buttons {
    opacity: 1;
    transform: none
  }
  .wd-buttons {
    border-radius: 35px
  }
  .wd-buttons .wd-action-btn>a {
    width: 35px;
    height: 35px
  }
  .wd-buttons .wd-action-btn>a:before {
    font-size: 14px
  }
  .wd-buttons .wd-action-btn>a:after {
    margin-top: -7px;
    margin-left: -7px;
    width: 14px;
    height: 14px
  }
  .wd-buttons .wd-quick-view-icon,
  .wd-buttons .wd-compare-btn {
    display: none
  }
}

@media (max-width:768px) {
  .quick-shop-wrapper .quick-shop-close {
    top: 0;
    right: 0;
    padding-right: 0
  }
  .quick-shop-wrapper .quick-shop-close>a {
    width: 30px;
    font-size: 0
  }
  .quick-shop-wrapper .quick-shop-close>a:before {
    margin-right: 0
  }
  .quick-shop-wrapper .quick-shop-form {
    padding-top: 10px
  }
  .quick-shop-wrapper select {
    height: 35px
  }
  .quick-shop-wrapper .single_add_to_cart_button {
    font-size: 0;
    white-space: nowrap
  }
  .quick-shop-wrapper .single_add_to_cart_button:before {
    margin-right: 0;
    margin-left: 0
  }
}

@media (max-width:575px) {
  .product-grid-item.col-6 .wd-entities-title,
  .product-grid-item.col-6 .wd-product-cats,
  .product-grid-item.col-6 .wd-product-brands-links {
    font-size: 12px
  }
  .product-grid-item.col-6 .price,
  .product-grid-item.col-6 .star-rating {
    font-size: 14px
  }
  .wd-more-desc {
    max-height: 80px;
    font-size: 12px
  }
  .wd-more-desc-inner {
    line-height: 20px
  }
  .wd-more-desc-inner p {
    line-height: inherit
  }
  .wd-more-desc-full {
    max-height: none
  }
  .product-label {
    min-width: 40px
  }
  .product-label:not(:last-child) {
    margin-bottom: 5px
  }
  .labels-rectangular .product-label {
    padding-right: 5px;
    padding-left: 5px;
    font-size: 10px
  }
  .labels-rectangular .label-with-img {
    padding-right: 0;
    padding-left: 0
  }
  .labels-rounded .product-label {
    min-height: 40px;
    font-size: 10px
  }
  .browser-Internet .labels-rounded .product-label {
    height: 40px
  }
  .labels-rounded .label-with-img {
    min-height: auto
  }
  .title-line-one .product-grid-item.col-6 .wd-entities-title,
  .title-line-two .product-grid-item.col-6 .wd-entities-title {
    line-height: 15px
  }
  .title-line-one .product-grid-item.col-6 .wd-entities-title {
    max-height: 15px
  }
  .title-line-two .product-grid-item.col-6 .wd-entities-title {
    max-height: 30px
  }
}

.wd-hover-base .wd-product-countdown {
  display: flex;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-top: 5px;
  border-top: 1px solid rgba(129, 129, 129, .2)
}

.wd-hover-base .wd-product-countdown>span {
  flex: 1 1 auto;
  margin: 0;
  min-width: 0;
  background-color: transparent;
  box-shadow: none
}

[class*="color-scheme-light"] .wd-hover-base .wd-product-countdown {
  border-color: rgba(255, 255, 255, .15)
}

.wd-hover-base .product-wrapper {
  position: relative;
  transition: transform .3s ease
}

.wd-hover-base .content-product-imagin {
  position: absolute;
  top: -15px;
  right: -15px;
  bottom: 0;
  left: -15px;
  visibility: hidden;
  background-color: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, .15);
  opacity: 0;
  border-radius: 0;
  transform: scale(.98)
}

.wd-hover-base .product-element-top {
  margin-bottom: 0
}

.wd-hover-base .product-information {
  position: relative;
  padding: 10px
}

.wd-hover-base .product-information:hover .wd-more-desc-btn {
  transform: none
}

.wd-hover-base .quick-shop-close {
  top: -5px
}

.wd-hover-base .wrapp-product-price {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  justify-content: flex-end;
  transition: transform .3s ease
}

.wd-hover-base .fade-in-block {
  position: absolute;
  top: calc(100% - 5px);
  right: 0;
  left: 0;
  visibility: hidden;
  padding: 0 10px 10px 10px;
  opacity: 0
}

.wd-hover-base .wrapp-swatches {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  min-height: 47px;
  border-top: 1px solid rgba(0, 0, 0, .07);
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  background-color: #FFF;
  transition: transform .3s ease;
  transform: translateY(102%) translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}

.wd-hover-base .wrapp-swatches:empty {
  display: none
}

.wd-hover-base .swatches-on-grid {
  margin-bottom: 0
}

.wd-hover-base .wd-compare-btn {
  margin-left: auto
}

.wd-hover-base .wd-bottom-actions {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between
}

.wd-hover-base .wd-bottom-actions .wrap-wishlist-button {
  text-align: left;
  flex: 1 0 0%
}

.wd-hover-base .wd-bottom-actions .wrap-quickview-button {
  text-align: right;
  flex: 1 0 0%
}

.wd-hover-base .wd-bottom-actions .wd-action-btn.wd-style-icon>a,
.wd-hover-base .wd-compare-btn>a {
  width: 35px;
  height: 35px
}

.wd-hover-base.quick-shop-shown .add-to-cart-loop {
  opacity: .3;
  pointer-events: none
}

.wd-hover-base .wd-bottom-actions:not(.wd-add-small-btn) .wd-add-btn>a {
  border-radius: var(--btn-shop-brd-radius);
  color: var(--btn-shop-color);
  /*box-shadow: var(--btn-shop-box-shadow);*/
  background-color: #dc3936
}

.wd-hover-base .wd-bottom-actions:not(.wd-add-small-btn) .wd-add-btn>a:hover {
  color: var(--btn-shop-color-hover);
  /*box-shadow: var(--btn-shop-box-shadow-hover);*/
  background-color: #dc3936
}

.wd-hover-base .wd-bottom-actions:not(.wd-add-small-btn) .wd-add-btn>a:active {
  /*box-shadow: var(--btn-shop-box-shadow-active);*/
  bottom: var(--btn-shop-bottom-active)
}

.wd-hover-base .wd-bottom-actions:not(.wd-add-small-btn) .add-to-cart-loop span {
  padding: 10px 20px;
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
}

.wd-hover-base .wd-bottom-actions.wd-add-small-btn>div {
  border-left: 1px none rgba(0, 0, 0, .1)
}

.wd-hover-base .wd-bottom-actions.wd-add-small-btn>div:not(:empty)+div:not(:empty),
.wd-hover-base .wd-bottom-actions.wd-add-small-btn>div:not(:empty)+div:empty+div:not(:empty) {
  border-style: solid
}

.wd-hover-base .wd-bottom-actions.wd-add-small-btn>div:empty {
  display: none
}

.wd-hover-base .wd-bottom-actions.wd-add-small-btn .wd-action-btn {
  width: 100%
}

.wd-hover-base .wd-bottom-actions.wd-add-small-btn .wd-action-btn>a {
  width: inherit
}

.wd-hover-base .wd-bottom-actions.wd-add-small-btn .wd-add-btn {
  flex: 1 0 0%
}

.wd-hover-base:not(.hover-ready) .wd-bottom-actions .wd-action-btn>a {
  transition: none
}

.wd-hover-base.has-stars.purchasable .fade-in-block,
.wd-hover-base.has-stars.product-type-external .fade-in-block {
  top: calc(100% - 10px);
  padding-bottom: 5px
}

.wd-hover-base.has-stars.purchasable .wrapp-product-price,
.wd-hover-base.has-stars.product-type-external .wrapp-product-price {
  height: 60px
}

.wd-hover-base.has-stars.purchasable .product-rating-price,
.wd-hover-base.has-stars.purchasable .star-rating,
.wd-hover-base.has-stars.purchasable .wrapp-product-price .price,
.wd-hover-base.has-stars.product-type-external .product-rating-price,
.wd-hover-base.has-stars.product-type-external .star-rating,
.wd-hover-base.has-stars.product-type-external .wrapp-product-price .price {
  overflow: hidden;
  height: 30px;
  line-height: 30px
}

.wd-hover-base.has-stars.purchasable .star-rating,
.wd-hover-base.has-stars.purchasable .wrapp-product-price .price,
.wd-hover-base.has-stars.purchasable .wd-product-cats,
.wd-hover-base.has-stars.purchasable .wd-product-brands-links,
.wd-hover-base.has-stars.product-type-external .star-rating,
.wd-hover-base.has-stars.product-type-external .wrapp-product-price .price,
.wd-hover-base.has-stars.product-type-external .wd-product-cats,
.wd-hover-base.has-stars.product-type-external .wd-product-brands-links {
  margin-bottom: 0
}

.wd-hover-base.has-stars.purchasable .wd-product-cats+.wd-product-brands-links,
.wd-hover-base.has-stars.product-type-external .wd-product-cats+.wd-product-brands-links {
  margin-top: 5px
}

.wd-hover-base.has-stars.purchasable:hover .wrapp-product-price,
.wd-hover-base.has-stars.purchasable.state-hover .wrapp-product-price,
.wd-hover-base.has-stars.product-type-external:hover .wrapp-product-price,
.wd-hover-base.has-stars.product-type-external.state-hover .wrapp-product-price {
  transform: translateY(-30px) translateZ(0)
}

.wd-hover-base.product-in-carousel {
  overflow: hidden
}

.wd-hover-base.product-in-carousel .content-product-imagin {
  display: none
}

.wd-hover-base.product-in-carousel .quick-shop-close {
  top: 5px;
  right: 10px
}

.wd-hover-base.product-in-carousel .product-information {
  position: static
}

.wd-hover-base.product-in-carousel .fade-in-block {
  position: static;
  visibility: visible;
  padding: 0;
  opacity: 1
}

.browser-Safari .wd-hover-base.product-in-carousel .fade-in-block {
  pointer-events: visible;
  pointer-events: unset
}

.platform-iOS .wd-hover-base.product-in-carousel .fade-in-block {
  clip: rect(auto auto auto auto)
}

.wd-hover-base.product-in-carousel .hover-content {
  display: none
}

.catalog-mode-on .wd-hover-base .wd-add-btn,
.login-see-prices .wd-hover-base .wd-add-btn {
  display: none
}

.catalog-mode-on .wd-hover-base .wd-bottom-actions:not(.wd-add-small-btn),
.login-see-prices .wd-hover-base .wd-bottom-actions:not(.wd-add-small-btn) {
  padding-top: 10px;
  padding-bottom: 10px
}

.wd-hover-base:hover .wrapp-swatches,
.wd-hover-base.state-hover .wrapp-swatches {
  transform: none
}

.wd-hover-base.state-hover .wd-more-desc-btn {
  transform: none
}

.wd-hover-base.hover-ready:hover .product-wrapper,
.wd-hover-base.hover-ready.state-hover .product-wrapper {
  z-index: 20;
  transform: translateY(-5px) translateZ(0)
}

.wd-hover-base.hover-ready:hover .content-product-imagin,
.wd-hover-base.hover-ready.state-hover .content-product-imagin {
  visibility: visible;
  opacity: 1;
  transition: opacity .3s ease, visibility .0s ease, transform .3s ease;
  transform: scale(1)
}

.wd-hover-base.hover-ready:hover .fade-in-block,
.wd-hover-base.hover-ready.state-hover .fade-in-block {
  visibility: visible;
  opacity: 1;
  transition: opacity .3s ease, visibility .0s ease
}

.wd-hover-base.wd-loading-quick-shop .wrapp-swatches,
.wd-hover-base.quick-shop-shown .wrapp-swatches {
  transform: translateY(103%) translateZ(0)
}

.browser-Safari .wd-hover-base .fade-in-block {
  visibility: visible;
  pointer-events: none
}

.browser-Safari .wd-hover-base.hover-ready:hover .fade-in-block,
.browser-Safari .wd-hover-base.hover-ready.state-hover .fade-in-block {
  pointer-events: visible;
  pointer-events: unset
}

.platform-iOS .wd-hover-base .fade-in-block {
  clip: rect(0 0 0 0);
  opacity: 1
}

.platform-iOS .wd-hover-base.hover-ready:hover .fade-in-block,
.platform-iOS .wd-hover-base.hover-ready.state-hover .fade-in-block {
  clip: rect(auto auto auto auto)
}

[class*="color-scheme-light"] .wd-hover-base .content-product-imagin {
  background-color: #101010
}

[class*="color-scheme-light"] .wd-hover-base .wrapp-swatches {
  border-color: rgba(255, 255, 255, .15);
  background-color: #101010
}

[class*="color-scheme-light"] .wd-hover-base .wd-bottom-actions.wd-add-small-btn>div {
  border-color: rgba(255, 255, 255, .15)
}

@media (max-width:1024px) {
  .wd-hover-base .content-product-imagin {
    top: -10px;
    right: -10px;
    left: -10px
  }
}

@media (max-width:768px) {
  .wd-hover-base .wrapp-swatches {
    min-height: 40px
  }
  .wd-hover-base .product-compare-button {
    display: none
  }
  .wd-hover-base .quick-shop-close {
    top: -5px;
    right: -5px
  }
  .wd-hover-base.product-no-swatches .wrapp-swatches {
    display: none
  }
}

.popup-added_to_cart {
  max-width: 450px;
  text-align: center
}

.popup-added_to_cart h3 {
  text-transform: uppercase
}

.popup-added_to_cart .btn {
  margin: 5px 10px
}

.popup-added_to_cart .view-cart {
  border-radius: var(--btn-shop-brd-radius);
  color: var(--btn-shop-color);
  box-shadow: var(--btn-shop-box-shadow);
  background-color: var(--btn-shop-bgcolor)
}

.popup-added_to_cart .view-cart:hover {
  color: var(--btn-shop-color-hover);
  box-shadow: var(--btn-shop-box-shadow-hover);
  background-color: var(--btn-shop-bgcolor-hover)
}

.popup-added_to_cart .view-cart:active {
  box-shadow: var(--btn-shop-box-shadow-active);
  bottom: var(--btn-shop-bottom-active)
}

[class*="color-scheme-light"] .popup-added_to_cart .close-popup {
  border-color: rgba(255, 255, 255, .5);
  color: #FFF
}

[class*="color-scheme-light"] .popup-added_to_cart .close-popup:hover {
  border-color: #FFF;
  background-color: transparent;
  color: #FFF
}

.mfp-bg {
  position: fixed;
  z-index: 1102;
  overflow: hidden;
  background-color: rgba(0, 0, 0, .7)
}

.global-color-scheme-light .mfp-bg {
  background-color: rgba(0, 0, 0, .8)
}

.mfp-wrap {
  position: fixed;
  z-index: 1103;
  outline: none!important;
  -webkit-backface-visibility: hidden
}

.mfp-container {
  position: absolute;
  padding: 0 8px;
  text-align: center
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle
}

.mfp-content {
  position: relative;
  z-index: 1105;
  display: inline-block;
  margin: 0 auto;
  vertical-align: middle;
  text-align: left
}

.mfp-inline-holder .mfp-content {
  width: 100%;
  cursor: auto
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  user-select: none
}

.mfp-hide {
  display: none!important
}

.mfp-preloader {
  position: absolute;
  top: 50%;
  right: 8px;
  left: 8px;
  z-index: 1104;
  margin-top: -.8em;
  width: auto;
  color: #CCC;
  text-align: center
}

.mfp-preloader a {
  color: #CCC
}

.mfp-preloader a:hover {
  color: #FFF
}

.mfp-s-ready .mfp-preloader,
.mfp-s-error .mfp-content {
  display: none
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px
}

.mfp-iframe-holder .mfp-content {
  max-width: 900px;
  width: 100%;
  line-height: 0
}

.mfp-iframe-scaler {
  overflow: hidden;
  padding-top: 56.25%;
  width: 100%;
  height: 0
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  background: #000
}

.wd-popup {
  margin: 25px auto;
  padding: 30px;
  width: 100%;
  background-color: #FFF
}

[class*="color-scheme-light"] .wd-popup {
  background-color: #101010
}

.mfp-move-horizontal .mfp-with-anim {
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  transform: translateX(-100px)
}

.mfp-move-horizontal .mfp-with-anim .summary-inner {
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  transform: translateY(30px)
}

.mfp-move-horizontal.mfp-bg {
  opacity: 0;
  transition: opacity .25s ease, visibility 0s ease .25s
}

.mfp-move-horizontal.mfp-ready .mfp-with-anim,
.mfp-move-horizontal.mfp-ready .mfp-with-anim .summary-inner {
  opacity: 1;
  transform: none
}

.mfp-move-horizontal.mfp-ready.mfp-bg {
  opacity: 1;
  transition: opacity .25s ease, visibility 0s ease
}

.mfp-move-horizontal.mfp-removing .mfp-with-anim {
  opacity: 0;
  transform: translateX(100px)
}

.mfp-move-horizontal.mfp-removing.mfp-bg {
  opacity: 0
}

.mfp-move-horizontal.mfp-removing .mfp-close {
  display: none
}

.mfp-bg,
.mfp-wrap,
.mfp-container,
.mfp-iframe-scaler iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

button.mfp-close {
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: 1104;
  padding: 0;
  width: 50px;
  height: 50px;
  background: none;
  color: #FFF;
  text-align: center;
  font-weight: 400;
  font-size: 0;
  opacity: 1;
  cursor: pointer;
  transition: all .25s ease;
  touch-action: manipulation;
  opacity: 0;
  transition: all .25s ease, opacity 0s ease 0s
}

button.mfp-close:after {
  display: inline-block;
  font-size: 16px;
  line-height: 50px;
  content: "\f112";
  font-family: "woodmart-font"
}

button.mfp-close:hover {
  background-color: rgba(0, 0, 0, .3);
  box-shadow: none;
  color: #FFF;
  opacity: 1
}

.mfp-ready button.mfp-close {
  opacity: 1;
  transition: all .25s ease, opacity .3s ease .35s
}

.flickity-page-dots {
  list-style: none;
  --li-pl: 0;
  --list-mb: 0;
  --li-mb: 0;
  --dot-color: #bbb;
  --dot-color-hover: #333;
  --dot-color-active: #333;
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  z-index: 2;
  text-align: center;
  animation: wd-fadeIn .6s ease
}

.flickity-button {
  position: absolute;
  top: 50%;
  z-index: 250;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -25px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: all .25s ease;
  --arrow-color: #333;
  --arrow-color-hover: #777;
  --arrow-bgcolor: #fff;
  background-color: transparent;
  font-weight: 400;
  padding: 0;
  color: var(--arrow-color)
}

.flickity-button:after {
  font-size: 24px;
  line-height: 1
}

.wd-slider {
  position: relative;
  overflow: hidden
}

.wd-slider:not(.flickity-enabled) {
  display: flex
}

.flickity-enabled:focus {
  outline: none
}

.flickity-viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  height: 100%;
  flex-basis: 100%
}

.wd-enabled .flickity-viewport {
  transition: height .3s
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%
}

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing
}

.flickity-enabled.wd-dragging .wd-slide {
  pointer-events: none
}

.wd-slider-wrapper.wd-full-width-content .wd-slide-container {
  max-width: none
}

.slider-in-container .wd-slide-container {
  padding-right: 5%;
  padding-left: 5%;
  width: 100%
}

.wd-slide {
  position: relative;
  display: flex;
  overflow: hidden;
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%
}

.wd-slide-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat
}

.wd-slide-container {
  z-index: 2;
  display: flex;
  padding-top: 35px;
  padding-bottom: 35px
}

.wd-slide-inner {
  position: relative;
  width: 100%
}

.wd-slide-container.slide-without-padding {
  padding: 0
}

.wd-slider-wrapper.anim-fade .wd-slide {
  pointer-events: none;
  z-index: 0
}

.wd-slider-wrapper.anim-fade .wd-slide.is-selected {
  pointer-events: auto;
  z-index: 1
}

.wd-slider-wrapper.anim-distortion .flickity-slider {
  transform: none!important
}

.wd-slider-wrapper.anim-distortion .wd-slide {
  left: 0!important
}

.wd-slider-wrapper.anim-distortion canvas {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0
}

.wd-slider-wrapper.anim-distortion .wd-slide-container {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(.19, 1, .22, 1)
}

.wd-slider-wrapper.anim-distortion .is-selected .wd-slide-container {
  opacity: 1;
  pointer-events: visible;
  pointer-events: unset
}

.wd-slider-wrapper.anim-distortion:not(.wd-canvas-image-loaded) .wd-slide {
  z-index: 0
}

.wd-slider-wrapper.anim-distortion:not(.wd-canvas-image-loaded) .wd-slide.is-selected {
  z-index: 1
}

body:not(.elementor-editor-active) .wd-slide [class*="wd-animation"]:not(.wd-animated) {
  transition: all .35s ease
}

.flickity-button>svg {
  display: none
}

.flickity-button.previous {
  left: 0;
  padding-right: 2px
}

.flickity-button.previous:after {
  content: "\f114";
  font-family: "woodmart-font"
}

.flickity-button.next {
  right: 0;
  padding-left: 2px
}

.flickity-button.next:after {
  content: "\f113";
  font-family: "woodmart-font"
}

.flickity-button:hover {
  box-shadow: none;
  color: var(--arrow-color-hover)
}

.pagin-scheme-light .flickity-button {
  --arrow-color: #fff;
  --arrow-color-hover: rgba(255, 255, 255, .8);
  --arrow-bgcolor: #333
}

.arrows-style-2 .flickity-button,
.arrows-style-3 .flickity-button {
  background-color: var(--arrow-bgcolor);
  box-shadow: 0 0 4px rgba(0, 0, 0, .1)
}

.arrows-style-2 .flickity-button:after,
.arrows-style-3 .flickity-button:after {
  font-size: 18px
}

.arrows-style-3 .flickity-button {
  border-radius: 50%
}

.arrows-style-3 .flickity-button.previous {
  left: 15px
}

.arrows-style-3 .flickity-button.next {
  right: 15px
}

.flickity-page-dots li {
  display: inline-block;
  cursor: pointer
}

.pagin-scheme-light .flickity-page-dots {
  --dot-color: rgba(255, 255, 255, .5);
  --dot-color-hover: #fff;
  --dot-color-active: #fff
}

.pagin-style-1 .flickity-page-dots li {
  margin: 5px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--dot-color);
  border-radius: 50%;
  -webkit-transition: all .25s ease;
  transition: all .25s ease
}

.pagin-style-1 .flickity-page-dots li:not(.is-selected):hover {
  border-color: var(--dot-color-hover)
}

.pagin-style-1 .flickity-page-dots li.is-selected {
  background-color: var(--dot-color-active);
  border-color: var(--dot-color-active)
}

.pagin-style-2 .flickity-page-dots {
  bottom: 15px;
  counter-reset: section;
  --dot-color: #333
}

.pagin-style-2 .flickity-page-dots li {
  padding: 2px 15px;
  color: var(--dot-color);
  white-space: nowrap;
  line-height: 1
}

.pagin-style-2 .flickity-page-dots li:before,
.pagin-style-2 .flickity-page-dots li:after {
  display: inline-block;
  color: inherit;
  vertical-align: middle
}

.pagin-style-2 .flickity-page-dots li:before {
  content: "0" counter(section);
  margin-right: 5px;
  counter-increment: section;
  font-weight: 600;
  font-size: 15px
}

.pagin-style-2 .flickity-page-dots li:after {
  content: "";
  width: 15px;
  height: 2px;
  background-color: currentColor;
  transition: width .3s ease
}

.pagin-style-2 .flickity-page-dots li:hover:after {
  width: 35px
}

.pagin-style-2 .flickity-page-dots li.is-selected:after {
  width: 45px
}

.pagin-style-2.pagin-scheme-light .flickity-page-dots {
  --dot-color: #fff
}

@media (max-width:1024px) {
  .flickity-button {
    margin-top: -20px;
    width: 40px;
    height: 40px
  }
  .flickity-button:after {
    font-weight: 700;
    font-size: 14px
  }
  .wd-items-md-top {
    align-items: flex-start
  }
  .wd-items-md-middle {
    align-items: center
  }
  .wd-items-md-bottom {
    align-items: flex-end
  }
  .wd-justify-md-left {
    justify-content: flex-start
  }
  .wd-justify-md-center {
    justify-content: center
  }
  .wd-justify-md-right {
    justify-content: flex-end
  }
  .arrows-style-1 .flickity-button.previous {
    justify-content: flex-start
  }
  .arrows-style-1 .flickity-button.next {
    justify-content: flex-end
  }
  .arrows-style-2 .flickity-button:after,
  .arrows-style-3 .flickity-button:after {
    font-size: 14px
  }
  .arrows-style-3 .flickity-button.previous {
    left: 10px
  }
  .arrows-style-3 .flickity-button.next {
    right: 10px
  }
}

@media (max-width:768px) {
  .wd-items-sm-top {
    align-items: flex-start
  }
  .wd-items-sm-middle {
    align-items: center
  }
  .wd-items-sm-bottom {
    align-items: flex-end
  }
  .wd-justify-sm-left {
    justify-content: flex-start
  }
  .wd-justify-sm-center {
    justify-content: center
  }
  .wd-justify-sm-right {
    justify-content: flex-end
  }
  .flickity-page-dots {
    display: none
  }
}

[class*="wd-animation"] {
  opacity: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden
}

[class*="wd-animation"],
[class*="wd-animation"].elementor-element[class*="elementor-element-"] {
  transition-property: opacity, transform;
  transition-timing-function: ease, cubic-bezier(0, .87, .58, 1)
}

[class*="wd-animation"].wd-animation-slow.wd-animated {
  transition-duration: .25s, 1.6s
}

[class*="wd-animation"].wd-animation-normal.wd-animated {
  transition-duration: .25s, 1s
}

[class*="wd-animation"].wd-animation-fast.wd-animated {
  transition-duration: .25s, .6s
}

[class*="wd-animation"]:not(.wd-animated) {
  will-change: transform, opacity
}

[class*="wd-animation"].wd-animation-ready.wd-animated {
  opacity: 1;
  transform: none
}

.wd-animation-slide-from-top.wd-animation-ready {
  transform: translateY(-150px)
}

.wd-animation-slide-from-bottom.wd-animation-ready {
  transform: translateY(150px)
}

.wd-animation-slide-from-left.wd-animation-ready {
  transform: translateX(-500px)
}

.wd-animation-slide-short-from-left.wd-animation-ready {
  transform: translateX(-150px)
}

.wd-animation-slide-from-right.wd-animation-ready {
  transform: translateX(500px)
}

.wd-animation-zoom-in.wd-animation-ready {
  transform: scale(.6)
}

.wd-animation-bottom-flip-x.wd-animation-ready {
  transform: translateY(100px) rotate3d(1, 0, 0, 90deg) scale(.6)
}

.wd-animation-top-flip-x.wd-animation-ready {
  transform: translateY(-100px) rotate3d(1, 0, 0, 90deg) scale(.6)
}

.wd-animation-bottom-flip-x.wd-animation-ready.wd-animated,
.wd-animation-top-flip-x.wd-animation-ready.wd-animated {
  transform: perspective(1000px) translateY(0) rotate3d(1, 0, 0, 0deg) scale(1)
}

.wd-animation-left-flip-y.wd-animation-ready {
  transform: translateX(-100px) rotate3d(0, 1, 0, -90deg) scale(.6)
}

.wd-animation-right-flip-y.wd-animation-ready {
  transform: translateX(100px) rotate3d(0, 1, 0, 90deg) scale(.6)
}

.wd-animation-left-flip-y.wd-animation-ready.wd-animated,
.wd-animation-right-flip-y.wd-animation-ready.wd-animated {
  transform: perspective(1000px) translateY(0) rotate3d(0, 1, 0, 0deg) scale(1)
}

.wd-info-box {
  position: relative;
  display: flex;
  align-items: stretch;
  flex-direction: column
}

.wd-info-box .box-icon-wrapper {
  flex: 0 0 auto;
  line-height: 0
}

.wd-info-box .info-box-icon {
  display: inline-block;
  transition: all .25s ease
}

.wd-info-box .info-svg-wrapper {
  display: inline-block
}

.wd-info-box .info-svg-wrapper svg {
  width: inherit!important;
  height: inherit!important
}

.wd-info-box .info-box-subtitle,
.wd-info-box .info-box-title {
  margin-bottom: 10px;
  transition: all .25s ease
}

.wd-info-box .info-box-subtitle:not(.subtitle-style-background),
.wd-info-box .info-box-title {
  line-height: 1.3
}

.wd-info-box .info-box-content {
  position: relative;
  flex: 1 1 auto
}

.wd-info-box .info-box-inner p:first-child:empty,
.wd-info-box .info-box-inner p:first-child:empty~p:last-child {
  display: none
}

.wd-info-box .info-btn-wrapper {
  margin-top: 15px
}

.wd-info-box.color-scheme-hover-light:hover .info-svg-wrapper svg {
  fill: #fff!important
}

.wd-info-box.color-scheme-hover-light:hover .info-box-icon {
  color: #fff
}

.wd-info-box.color-scheme-hover-light:hover .title {
  color: #fff!important
}

.wd-info-box.color-scheme-hover-light:hover .btn-style-link {
  border-color: rgba(255, 255, 255, .3);
  color: #FFF
}

.wd-info-box.color-scheme-hover-light:hover .btn-style-link:hover {
  border-color: #FFF;
  color: #FFF
}

.box-icon-align-top .box-icon-wrapper {
  margin-bottom: 15px
}

.box-icon-align-left {
  flex-direction: row
}

.box-icon-align-left .box-icon-wrapper {
  margin-right: 20px;
  max-width: 50%
}

.box-icon-align-right {
  flex-direction: row-reverse
}

.box-icon-align-right .box-icon-wrapper {
  margin-left: 20px;
  max-width: 50%
}

.browser-Internet .whb-column .box-icon-align-left .box-icon-wrapper,
.browser-Internet .whb-column .box-icon-align-right .box-icon-wrapper {
  max-width: none
}

.box-title-style-underlined {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--brdcolor-gray-300)
}

.box-with-icon .info-box-icon {
  overflow: hidden
}

.box-icon-wrapper.box-with-text {
  font-weight: 700;
  line-height: 1;
  color: var(--wd-primary-color)
}

.box-with-text.text-size-small {
  font-size: 38px
}

.box-with-text.text-size-default {
  font-size: 52px
}

.box-with-text.text-size-large {
  font-size: 74px
}

.box-icon-with-bg .info-box-icon {
  padding: 20px;
  background-color: #f1f1f1
}

.box-icon-with-border .info-box-icon {
  padding: 18px;
  border: 2px solid #f1f1f1
}

.box-icon-with-bg .info-box-icon,
.box-icon-with-border .info-box-icon {
  border-radius: 50%;
  text-align: center
}

.box-icon-with-bg.box-with-text .info-box-icon,
.box-icon-with-border.box-with-text .info-box-icon {
  padding: 0 10px;
  border-radius: 100px
}

.box-icon-with-bg.text-size-small .info-box-icon,
.box-icon-with-border.text-size-small .info-box-icon {
  min-width: 85px;
  height: 85px;
  line-height: 85px
}

.box-icon-with-bg.text-size-default .info-box-icon,
.box-icon-with-border.text-size-default .info-box-icon {
  min-width: 100px;
  height: 100px;
  line-height: 100px
}

.box-icon-with-bg.text-size-large .info-box-icon,
.box-icon-with-border.text-size-large .info-box-icon {
  min-width: 130px;
  height: 130px;
  line-height: 130px
}

.box-btn-hover .info-btn-wrapper {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  margin-top: 0;
  padding-top: 15px;
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
  transform: translateY(15px)
}

.box-btn-hover:hover .info-btn-wrapper {
  opacity: 1;
  transform: none
}

.wpb-js-composer .info-box-wrapper.inline-element {
  max-width: 100%
}

.wpb-js-composer .info-box-carousel .inline-element {
  display: block;
  margin-right: 0!important;
  margin-left: 0!important
}

.wpb-js-composer .info-box-carousel .inline-element .wd-info-box {
  display: inline-flex
}

.box-style-shadow {
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, .12);
  transition: box-shadow .7s ease
}

.box-style-shadow:hover {
  box-shadow: 0 0 9px rgba(0, 0, 0, .2)
}

.box-style-bg-hover {
  padding: 30px;
  box-shadow: 2px 3px 14px transparent
}

.box-style-bg-hover .info-svg-wrapper svg {
  transition: fill .25s ease
}

.box-style-bg-hover .box-icon-wrapper,
.box-style-bg-hover .info-box-content {
  z-index: 1
}

.box-style-bg-hover:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity .25s ease
}

.box-style-bg-hover:hover {
  box-shadow: 2px 3px 14px rgba(0, 0, 0, .16)
}

.box-style-bg-hover:hover:after {
  opacity: 1
}

.box-style-border .info-box-content {
  padding: 30px;
  border: 3px solid var(--brdcolor-gray-300)
}

.box-style-border .box-icon-wrapper {
  position: relative;
  z-index: 2
}

.box-style-border.box-icon-align-left {
  align-items: center
}

.box-style-border.box-icon-align-left .info-box-content {
  padding-left: 50px
}

.box-style-border.box-icon-align-left .info-box-icon {
  margin-right: -50px
}

.box-style-border.box-icon-align-right {
  align-items: center
}

.box-style-border.box-icon-align-right .info-box-content {
  padding-right: 50px
}

.box-style-border.box-icon-align-right .info-box-icon {
  margin-left: -50px
}

.box-style-border.box-icon-align-top .box-icon-wrapper {
  margin-bottom: -25px;
  padding-right: 30px;
  padding-left: 30px
}

.box-style-border.box-icon-align-top .info-box-content {
  padding-top: 35px
}

.box-style-border.box-btn-static .info-btn-wrapper {
  margin-top: 0;
  margin-bottom: -30px;
  transform: translateY(50%)
}

.box-style-border.box-btn-hover .info-btn-wrapper {
  margin-top: -15px;
  margin-right: 30px;
  margin-left: 30px;
  padding-top: 0
}

.box-style-border.box-btn-hover.box-icon-align-left .info-btn-wrapper {
  margin-left: 50px
}

.box-style-border.box-btn-hover.box-icon-align-right .info-btn-wrapper {
  margin-right: 50px
}

.elementor-default .info-box-carousel-wrapper .box-style-border.with-btn {
  margin-bottom: 30px
}

.with-animation .info-svg-wrapper path {
  stroke: var(--wd-primary-color)
}

.wpb-js-composer .info-box-carousel-wrapper {
  margin-bottom: 30px
}

.wpb-js-composer .info-box-carousel-wrapper .wd-info-box {
  margin-bottom: 0
}

.info-box-carousel-wrapper .owl-stage-outer,
.info-box-carousel-wrapper .owl-carousel:not(.owl-loaded) {
  padding-top: 5px;
  padding-bottom: 5px
}

@media (max-width:1024px) {
  .box-with-text.text-size-large {
    font-size: 52px
  }
  .box-icon-with-bg.text-size-large .info-box-icon,
  .box-icon-with-border.text-size-large .info-box-icon {
    min-width: 100px;
    height: 100px;
    line-height: 100px
  }
  .box-btn-hover .info-btn-wrapper {
    position: static;
    opacity: 1;
    transform: none
  }
  .box-style-border.box-btn-hover .info-btn-wrapper {
    position: absolute
  }
}

.wd-text-block-wrapper {
  min-width: 100%
}

.wd-text-block-wrapper [class*="title"] {
  display: inline-block;
  max-width: inherit
}

.wd-text-block-wrapper.inline-element {
  min-width: auto
}

.wd-text-block-wrapper.color-scheme-dark {
  color: #333
}

.wd-text-block-wrapper.color-scheme-light {
  color: #fff
}

.woodmart-text-block p:empty:before {
  content: none
}

.woodmart-text-block p:first-child:empty {
  margin-bottom: 0
}

.woodmart-text-block p:first-child:empty~p:last-child {
  margin-bottom: calc(-1 * var(--wd-tags-mb))
}

.woodmart-text-block * {
  color: inherit;
  font-size: inherit;
  line-height: inherit
}

.woodmart-text-block .color-primary {
  color: var(--wd-primary-color)
}

.wd-text-block:not(.inline-element).text-left {
  margin-right: auto
}

.wd-text-block:not(.inline-element).text-center {
  margin-left: auto;
  margin-right: auto
}

.wd-text-block:not(.inline-element).text-right {
  margin-left: auto
}

.entry-meta-list {
  list-style: none;
  --li-pl: 0;
  --list-mb: 0;
  --li-mb: 0
}

.wd-entry-meta {
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 10px;
  vertical-align: middle;
  font-weight: 400;
  font-size: 0
}

.wd-entry-meta .meta-featured-post:before {
  font-size: 14px;
  content: "\f104";
  font-family: "woodmart-font"
}

.wd-entry-meta .meta-author {
  font-size: 14px
}

.wd-entry-meta .meta-author .avatar {
  display: inline-block;
  margin: 0 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  vertical-align: top
}

.wd-entry-meta .meta-author a {
  text-transform: capitalize
}

.wd-entry-meta .meta-date {
  vertical-align: top;
  font-size: 14px
}

.wd-entry-meta .meta-reply {
  display: inline-block
}

.wd-entry-meta .meta-reply a {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px
}

.wd-entry-meta .meta-reply a:after {
  display: inline-block;
  font-size: 16px;
  content: "\f103";
  font-family: "woodmart-font"
}

.wd-entry-meta .meta-reply .replies-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #A4A4A4;
  color: #FFF;
  text-align: center;
  font-size: 9px;
  line-height: 14px
}

.wd-entry-meta .meta-reply .replies-count-label {
  display: none
}

[class*="color-scheme-light"] .wd-entry-meta .meta-reply .replies-count,
.blog-design-mask .wd-entry-meta .meta-reply .replies-count {
  background-color: var(--wd-primary-color)
}

.entry-meta-list li {
  display: inline-block;
  margin-right: 10px;
  color: #A4A4A4;
  vertical-align: middle;
  line-height: 1.4
}

.entry-meta-list li a {
  color: #A4A4A4
}

.entry-meta-list li a:hover {
  color: #777
}

.entry-meta-list li.modified-date,
.entry-meta-list li:last-child {
  margin-right: 0
}

.blog-design-mask .entry-meta-list li,
[class*="color-scheme-light"] .entry-meta-list li {
  color: rgba(255, 255, 255, .6)
}

.blog-design-mask .entry-meta-list li a,
[class*="color-scheme-light"] .entry-meta-list li a {
  color: rgba(255, 255, 255, .6)
}

.blog-design-mask .entry-meta-list li a:hover,
[class*="color-scheme-light"] .entry-meta-list li a:hover {
  color: rgba(255, 255, 255, .8)
}

.wd-post-date.wd-style-with-bg {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  display: inline-block;
  min-width: 53px;
  background-color: #FFF;
  box-shadow: 0 0 9px rgba(0, 0, 0, .1);
  box-shadow: none;
  color: #333;
  text-align: center;
  line-height: 1
}

.wd-post-date.wd-style-with-bg>span {
  display: block
}

.wd-post-date.wd-style-with-bg .post-date-day {
  padding-top: 6px;
  padding-bottom: 4px;
  font-size: 24px;
  font-weight: 500;
}

.wd-post-date.wd-style-with-bg .post-date-month {
  padding-top: 2px;
  padding-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .3px;
  font-weight: 700;
  font-size: 12px
}

[class*="color-scheme-light"] .wd-post-date.wd-style-with-bg {
  background-color: #101010;
  color: #fff
}

.wd-post-cat.wd-style-with-bg {
  display: inline-block;
  overflow: hidden;
  padding-right: 15px;
  padding-left: 15px;
  height: 25px;
  background-color: #3da54a;
  color: #FFF;
  line-height: 25px
}

.wd-post-cat.wd-style-with-bg>a {
  display: inline-block;
  color: #FFF;
  vertical-align: top;
  text-transform: uppercase;
  letter-spacing: .3px;
  font-weight: 700;
  font-size: 12px
}

.wd-post-cat.wd-style-with-bg>a:hover {
  color: rgba(255, 255, 255, .8)
}

.wd-entry-content:after {
  content: "";
  display: block;
  clear: both
}

.wd-entry-content p:last-child {
  margin-bottom: 0
}

.page-links {
  margin-top: 10px
}

.post-page-numbers {
  padding: 0 5px
}

.post-gallery-slider {
  overflow: hidden
}

.post-gallery-slider div.owl-nav>div {
  background-color: #FFF;
  box-shadow: 0 0 4px rgba(0, 0, 0, .1)
}

.post-gallery-slider div.owl-nav>div:after {
  font-size: 18px;
  line-height: 18px
}

[class*="color-scheme-light"] .post-gallery-slider .owl-nav>div {
  background-color: #101010
}

.site-content>.author-info {
  margin: 25px 15px 40px 15px
}

footer.entry-author .author-info {
  margin-top: 80px;
  margin-bottom: 25px
}

.author-info {
  position: relative;
  padding: 50px 25px 25px;
  background-color: #F9F9F9;
  text-align: center
}

.author-info .avatar {
  display: inline-block;
  overflow: hidden;
  max-width: 74px;
  border: 3px solid #FFF;
  border-radius: 50%
}

.author-info .author-avatar {
  position: absolute;
  top: 0;
  left: 50%;
  margin-top: -37px;
  margin-left: -37px
}

.author-info .author-description {
  min-height: 74px
}

.author-info .author-title {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px
}

.author-info .author-bio {
  margin-bottom: 0
}

.author-info .author-link {
  display: block;
  margin-top: 10px;
  font-weight: 600
}

.author-info .author-link span {
  display: none
}

.global-color-scheme-light .author-info {
  background-color: #101010
}

.global-color-scheme-light .author-info .avatar {
  border-color: #101010
}

@media (max-width:1024px) {
  .post-gallery-slider .owl-nav>div[class*="prev"],
  .post-gallery-slider .owl-nav>div[class*="next"] {
    justify-content: center
  }
  .post-gallery-slider .owl-nav>div[class*="prev"] {
    padding-left: 0
  }
  .post-gallery-slider .owl-nav>div[class*="next"] {
    padding-right: 0
  }
  .post-gallery-slider .owl-nav>div:after {
    font-weight: 400
  }
}

@media (max-width:768px) {
  .post-gallery-slider .owl-nav>div:after {
    font-size: 14px;
    line-height: 14px
  }
}

@media (max-width:575px) {
  .wd-entry-meta .meta-author {
    font-size: 0
  }
  .wd-entry-meta .meta-author a {
    font-size: 14px
  }
  .wd-post-date {
    top: 10px;
    left: 10px
  }
}

.wpb-js-composer .blog-post-loop:not([class*="col-"]) {
  margin-bottom: 0
}

.elementor-default .blog-post-loop:not([class*="col-"]):not(:last-child) {
  margin-bottom: 50px
}

.blog-post-loop .wd-entry-content>div[class*="wpb_"] {
  display: none
}

.blog-post-loop .wd-entry-content twitterwidget {
  margin: 10px auto
}

.blog-post-loop .wd-entry-content p {
  margin-bottom: 15px
}

.blog-post-loop .wd-entry-content .read-more-section {
  margin-bottom: 0;
  line-height: 1
}

.blog-post-loop .entry-thumbnail img {
  width: 100%
}

.blog-post-loop .entry-header {
  position: relative;
  text-align: center
}

.blog-post-loop .article-body-container {
  position: relative;
  z-index: 1;
  padding: 20px;
  background-color: #FFF;
  text-align: center
}

.blog-post-loop .post-title {
  margin-bottom: 15px
}

.blog-post-loop:hover .post-image-mask:after,
.blog-post-loop:hover .post-image-mask:before,
.blog-post-loop:hover .post-image-mask span {
  opacity: 1;
  animation: wd-fadeInLeft .3s ease
}

.blog-post-loop:hover .post-image-mask:before {
  transition-delay: .2s;
  animation-delay: .2s
}

.blog-post-loop:hover .post-image-mask span {
  transition-delay: .1s;
  animation-delay: .1s
}

.blog-post-loop:hover .post-img-wrapp a {
  transform: scale(1.05)
}

.blog-post-loop:hover .post-img-wrapp a:after {
  /*opacity: 1*/
}

[class*="color-scheme-light"] .blog-post-loop .article-body-container {
  background-color: #101010
}

.blog-style-shadow .article-body-container {
  box-shadow: 0 0 4px rgba(0, 0, 0, .12);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow .25s ease
}

.blog-style-shadow:hover .article-body-container {
  box-shadow: 0 0 9px rgba(0, 0, 0, .2)
}

.post-img-wrapp {
  overflow: hidden;
  vertical-align: middle;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 0;
}

.post-img-wrapp a {
  display: block;
  margin: -2px;
  transition: transform .25s ease, opacity .25s ease;
  transform: scale(1)
}

.post-img-wrapp a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .5);
  opacity: 0;
  transition: opacity .25s ease
}

.post-image-mask {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -5px;
  margin-left: -22px;
  text-align: center;
  font-size: 0
}

.post-image-mask:after,
.post-image-mask:before {
  content: ""
}

.post-image-mask:after,
.post-image-mask:before,
.post-image-mask span {
  display: inline-block;
  margin-right: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FFF;
  vertical-align: middle;
  opacity: 0;
  transition: opacity .2s ease;
  animation: wd-fadeOutRight .3s ease
}

.post-image-mask:after {
  margin-right: 0
}

.post-image-mask span {
  transition-delay: .1s;
  animation-delay: .1s
}

.post-image-mask:before {
  transition-delay: .15s;
  animation-delay: .15s
}

@keyframes wd-fadeOutRight {
  from {
    transform: none
  }
  to {
    transform: translate3d(50px, 0, 0)
  }
}

.hovered-social-icons {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  color: #A4A4A4;
  vertical-align: middle;
  font-size: 0;
  transition: all .25s ease
}

.hovered-social-icons .wd-tooltip-label {
  height: auto;
  pointer-events: auto;
  line-height: 1;
  padding: 5px!important
}

.hovered-social-icons .wd-tooltip-label:after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 10px
}

.hovered-social-icons:after {
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  content: "\f117";
  font-family: "woodmart-font"
}

.hovered-social-icons:hover {
  color: #777
}

.blog-design-mask .hovered-social-icons,
[class*="color-scheme-light"] .hovered-social-icons {
  color: rgba(255, 255, 255, .6)
}

.blog-design-mask .hovered-social-icons:hover,
[class*="color-scheme-light"] .hovered-social-icons:hover {
  color: rgba(255, 255, 255, .8)
}

.meta-categories-wrapp {
  position: absolute;
  top: -13px;
  right: 15px;
  left: 15px;
  overflow: hidden;
  height: 25px;
  line-height: 25px
}

.wpb-js-composer .wd-spacing-0+.blog-footer,
.wpb-js-composer .wd-spacing-2+.blog-footer,
.wpb-js-composer .wd-spacing-6+.blog-footer {
  margin-top: 15px
}

.format-quote .post-title,
.format-quote .post-image-mask,
.format-quote .meta-post-categories,
.format-quote .post-date,
.format-quote .entry-meta,
.format-quote .entry-header,
.format-quote .hovered-social-icons,
.format-quote .share-with-lines {
  display: none
}

.format-quote .entry-header {
  z-index: 2;
  margin-bottom: 0
}

.format-quote .post-img-wrapp {
  background: transparent
}

.format-quote .post-img-wrapp a {
  margin: 0
}

.format-quote .post-img-wrapp a:after {
  content: none
}

.format-quote .post-img-wrapp img {
  display: inline-block;
  max-height: 75px;
  width: auto;
  border-radius: 50%
}

.format-quote blockquote {
  margin-bottom: 0;
  padding-left: 0;
  border-left: none;
  color: #777;
  text-align: center
}

.format-quote blockquote cite,
.format-quote blockquote cite a {
  font-size: 16px
}

.format-quote.has-post-thumbnail .entry-header {
  display: block
}

.format-quote:not(.post-single-page) .article-body-container:before {
  position: absolute;
  right: 30px;
  bottom: 15px;
  display: inline-block;
  color: rgba(0, 0, 0, .06);
  font-size: 96px;
  line-height: 90px;
  content: "\f131";
  font-family: "woodmart-font"
}

.format-quote:hover .post-img-wrapp a {
  opacity: 1;
  transform: none
}

[class*="color-scheme-light"] .format-quote:not(.post-single-page) .article-body-container:before {
  color: rgba(255, 255, 255, .1)
}

.format-link .entry-content a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #F7F7F7;
  font-size: 22px
}

.format-link .entry-content a:hover {
  background-color: #F1F1F1
}

[class*="color-scheme-light"] .format-link .entry-content a {
  background-color: rgba(0, 0, 0, .3)
}

[class*="color-scheme-light"] .format-link .entry-content a:hover {
  background-color: rgba(0, 0, 0, .9)
}

.slider-type-post .owl-stage-outer,
.slider-type-post .owl-carousel:not(.owl-loaded) {
  padding-top: 0;
  padding-bottom: 0
}

@media (min-width: 768px) {
  .slider-type-post .owl-stage-outer,
  .slider-type-post .owl-carousel:not(.owl-loaded) {
    padding-bottom: 9px
  }
}

@keyframes wd-fadeInLeft {
  from {
    transform: translate3d(-50px, 0, 0)
  }
  to {
    transform: none
  }
}

.wpb-js-composer .post-slide {
  margin-bottom: 0!important
}

.post-slide:not(.has-post-thumbnail) .post-date {
  display: none
}

.post-slide:not(.has-post-thumbnail) .meta-categories-wrapp {
  position: static;
  margin-bottom: 15px
}

.owl-items-lg-4 .post-slide .wd-entry-meta .meta-author {
  font-size: 0
}

.owl-items-lg-4 .post-slide .wd-entry-meta .meta-author a {
  font-size: 14px
}

.read-more-section {
  margin-top: 20px;
  margin-bottom: 0;
  line-height: 1
}

.read-more-section a {
  position: relative;
  display: inline-block;
  border-bottom: none;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 13px;
  color: #dc3936
}

.read-more-section a:after {
  display: none !important;
  position: absolute;
  bottom: 0;
  left: 100%;
  display: inline-block;
  margin-left: 5px;
  height: 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 5px;
  opacity: 0;
  transition: opacity .35s ease;
  content: "\f109";
  font-family: "woodmart-font"
}

.read-more-section a:hover {
  color: #dc3936;
  opacity: .6;
}

.read-more-section a:hover:after {
  opacity: 1;
  animation: wd-ShakeNext 1s ease infinite
}

@media (min-width:1025px) {
  .owl-items-lg-4 .post-slide .post-title {
    font-size: 20px
  }
}

@media (max-width:1024px) {
  .blog-post-loop:hover .post-img-wrapp a {
    transform: none
  }
  .post-img-wrapp a:after {
    content: none
  }
  .post-image-mask {
    display: none
  }
  .wd-blog-holder [class*="blog-design-default"] .post-title,
  .wd-blog-holder .blog-design-small-images:not(.has-post-thumbnail) .post-title {
    font-size: 28px
  }
}

@media (max-width:768px) {
  .wpb-js-composer .blog-post-loop {
    margin-bottom: 30px
  }
  .elementor-default .blog-post-loop:not([class*="col-"]):not(:last-child) {
    margin-bottom: 30px
  }
  .wd-blog-holder [class*="blog-design-default"] .wd-entry-content {
    font-size: inherit
  }
  .wd-blog-holder [class*="blog-design-default"] .post-title,
  .wd-blog-holder .blog-design-small-images:not(.has-post-thumbnail) .post-title {
    font-size: 24px;
    line-height: 1.4
  }
  .wd-blog-holder .blog-design-default.format-quote .article-body-container,
  .wd-blog-holder .blog-design-small-images.format-quote .article-body-container {
    padding-right: 35px;
    padding-left: 35px
  }
}

@media (max-width:575px) {
  .blog-post-loop .article-body-container {
    padding-right: 15px;
    padding-left: 15px
  }
  .wpb-js-composer .blog-post-loop.blog-style-flat {
    margin-bottom: 45px
  }
  .elementor-default .blog-post-loop.blog-style-flat:not([class*="col-"]):not(:last-child) {
    margin-bottom: 45px
  }
  .blog-post-loop.blog-style-flat .article-body-container {
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0
  }
  .hovered-social-icons {
    display: none
  }
  .wd-blog-holder [class*="blog-design-default"] .article-body-container {
    margin-right: 0;
    margin-left: 0
  }
  .wd-blog-holder [class*="blog-design-default"].has-post-thumbnail .article-body-container {
    margin-top: 0
  }
  .wd-blog-holder [class*="blog-design-default"]:not(.has-post-thumbnail) .post-date {
    display: none
  }
  .wd-blog-holder [class*="blog-design-default"] .post-title,
  .wd-blog-holder .blog-design-small-images:not(.has-post-thumbnail) .post-title {
    font-size: 20px
  }
}

.blog-design-masonry .post-title {
  font-size: 24px;
  line-height: 1.4
}

.blog-design-masonry.has-post-thumbnail .post-date {
  top: 10px;
  left: 10px
}

.blog-design-masonry.blog-style-flat .article-body-container {
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  background-color: transparent
}

.blog-design-masonry.blog-style-shadow .article-body-container {
  box-shadow: none
}

.blog-design-masonry.blog-style-shadow .article-inner {
  box-shadow: 0 0 4px rgba(0, 0, 0, .12);
  transition: box-shadow .35s ease
}

.blog-design-masonry.blog-style-shadow:hover .article-inner {
  box-shadow: 0 0 9px rgba(0, 0, 0, .2)
}

.blog-design-masonry.blog-style-shadow:hover .article-body-container {
  box-shadow: none
}

.blog-design-masonry:not(.has-post-thumbnail) .post-date {
  display: none
}

.blog-design-masonry.format-quote .article-inner {
  padding: 25px
}

.blog-design-masonry.format-quote:not(.post-single-page) .article-body-container {
  padding: 0
}

.blog-design-masonry.format-quote:not(.post-single-page) .article-body-container:before {
  right: 0;
  bottom: -20px
}

.blog-design-masonry.format-quote .post-date {
  display: none
}

.blog-design-masonry.format-quote .entry-header {
  display: none;
  margin-bottom: 15px
}

.blog-design-masonry.format-quote.has-post-thumbnail .entry-header {
  display: block
}

.blog-design-masonry.col-lg-3 .post-title {
  font-size: 18px
}

.blog-design-masonry.col-lg-3.blog-style-flat .article-body-container {
  padding-top: 20px
}

@media (max-width:1024px) {
  .blog-design-masonry .post-title {
    font-size: 20px
  }
}

.owl-carousel:hover .owl-nav>div {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  pointer-events: visible
}

.slider-title {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
  text-align: left;
  text-transform: uppercase;
  font-size: 22px
}

.slider-title:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--wd-primary-color)
}

.owl-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  -webkit-tap-highlight-color: transparent
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
  line-height: 0
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}

.owl-carousel .owl-item {
  position: relative;
  float: left;
  min-height: 1px;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-touch-callout: none
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none
}

.owl-carousel.owl-loaded {
  display: block
}

.owl-carousel.owl-loading {
  display: block;
  opacity: 0
}

.owl-carousel.owl-hidden {
  opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab
}

.owl-carousel.owl-rtl {
  direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
  float: right
}

.owl-carousel .owl-item.animated {
  animation-duration: 600ms;
  animation-fill-mode: both
}

.owl-carousel .owl-item.fadeOut {
  animation-name: wd-fadeOut
}

.owl-carousel .owl-animated-in {
  z-index: 0
}

.owl-carousel .owl-animated-out {
  z-index: 1
}

.owl-height {
  transition: height 500ms ease-in-out
}

.owl-carousel:not(.owl-loaded) {
  display: flex;
  overflow: hidden
}

[data-hide_pagination_control="no"] .owl-carousel:not(.owl-loaded) {
  padding-bottom: 41px!important
}

.owl-loaded:after,
.owl-loaded:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px
}

.owl-loaded:before {
  right: -50px
}

.owl-loaded:after {
  left: -50px
}

.owl-dots {
  margin-top: 5px;
  text-align: center
}

.owl-dots .owl-dot {
  display: inline-block;
  margin-top: 10px
}

.owl-dots .owl-dot span {
  display: block;
  margin: 5px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--color-gray-300);
  border-radius: 50%;
  -webkit-transition: all .25s ease;
  transition: all .25s ease
}

.owl-dots .owl-dot:not(.active):hover span {
  border-color: var(--color-gray-800)
}

.owl-dots .owl-dot.active span {
  background-color: var(--color-gray-800);
  border-color: var(--color-gray-800)
}

.owl-nav>div[class*="prev"] {
  left: 0
}

.owl-nav>div[class*="next"] {
  right: 0
}

.wd-carousel-spacing-0 .owl-nav>div[class*="prev"] {
  left: -50px
}

.wd-carousel-spacing-0 .owl-nav>div[class*="next"] {
  right: -50px
}

.wd-carousel-spacing-2 .owl-nav>div[class*="prev"] {
  left: -49px
}

.wd-carousel-spacing-2 .owl-nav>div[class*="next"] {
  right: -49px
}

.wd-carousel-spacing-6 .owl-nav>div[class*="prev"] {
  left: -47px
}

.wd-carousel-spacing-6 .owl-nav>div[class*="next"] {
  right: -47px
}

.wd-carousel-spacing-10 .owl-nav>div[class*="prev"] {
  left: -45px
}

.wd-carousel-spacing-10 .owl-nav>div[class*="next"] {
  right: -45px
}

.wd-carousel-spacing-20 .owl-nav>div[class*="prev"] {
  left: -50px
}

.wd-carousel-spacing-20 .owl-nav>div[class*="next"] {
  right: -50px
}

.wd-carousel-spacing-30 .owl-nav>div[class*="prev"] {
  left: -35px
}

.wd-carousel-spacing-30 .owl-nav>div[class*="next"] {
  right: -35px
}

.wd-carousel-spacing-0 {
  margin-right: 0;
  margin-left: 0
}

.wd-carousel-spacing-0 .owl-item,
.wd-carousel-spacing-0 .owl-carousel:not(.owl-loaded)>div {
  padding-right: 0;
  padding-left: 0
}

.wd-carousel-spacing-2 {
  margin-right: -1px;
  margin-left: -1px
}

.wd-carousel-spacing-2 .owl-item,
.wd-carousel-spacing-2 .owl-carousel:not(.owl-loaded)>div {
  padding-right: 1px;
  padding-left: 1px
}

.wd-carousel-spacing-6 {
  margin-right: -3px;
  margin-left: -3px
}

.wd-carousel-spacing-6 .owl-item,
.wd-carousel-spacing-6 .owl-carousel:not(.owl-loaded)>div {
  padding-right: 3px;
  padding-left: 3px
}

.wd-carousel-spacing-10 {
  margin-right: -5px;
  margin-left: -5px
}

.wd-carousel-spacing-10 .owl-item,
.wd-carousel-spacing-10 .owl-carousel:not(.owl-loaded)>div {
  padding-right: 5px;
  padding-left: 5px
}

.wd-carousel-spacing-20 {
  margin-right: -10px;
  margin-left: -10px
}

.wd-carousel-spacing-20 .owl-item,
.wd-carousel-spacing-20 .owl-carousel:not(.owl-loaded)>div {
  padding-right: 10px;
  padding-left: 10px
}

.wd-carousel-spacing-30 {
  margin-right: -15px;
  margin-left: -15px
}

.wd-carousel-spacing-30 .owl-item,
.wd-carousel-spacing-30 .owl-carousel:not(.owl-loaded)>div {
  padding-right: 15px;
  padding-left: 15px
}

@media (min-width:1025px) {
  .owl-items-lg-1:not(.owl-loaded)>div {
    width: 100%;
    flex: 0 0 100%
  }
  .owl-items-lg-2:not(.owl-loaded)>div {
    width: 50%;
    flex: 0 0 50%
  }
  .owl-items-lg-3:not(.owl-loaded)>div {
    width: 33.3333333333%;
    flex: 0 0 33.3333333333%
  }
  .owl-items-lg-4:not(.owl-loaded)>div {
    width: 25%;
    flex: 0 0 25%
  }
  .owl-items-lg-5:not(.owl-loaded)>div {
    width: 20%;
    flex: 0 0 20%
  }
  .owl-items-lg-6:not(.owl-loaded)>div {
    width: 16.6666666667%;
    flex: 0 0 16.6666666667%
  }
  .owl-items-lg-7:not(.owl-loaded)>div {
    width: 14.2857142857%;
    flex: 0 0 14.2857142857%
  }
  .owl-items-lg-8:not(.owl-loaded)>div {
    width: 12.5%;
    flex: 0 0 12.5%
  }
}

@media (max-width:1024px) {
  .owl-nav>div {
    visibility: visible;
    opacity: 1;
    pointer-events: visible
  }
  .owl-nav>div[class*="prev"] {
    left: 5px
  }
  .owl-nav>div[class*="next"] {
    right: 5px
  }
  div[class*="wd-carousel-spacing"] .owl-nav>div[class*="prev"] {
    margin-left: 35px
  }
  div[class*="wd-carousel-spacing"] .owl-nav>div[class*="next"] {
    margin-right: 35px
  }
  .wpb-js-composer .slider-type-product,
  .wpb-js-composer .slider-type-post,
  .wpb-js-composer .categories-style-carousel {
    margin-bottom: 20px
  }
  .owl-loaded:after,
  .owl-loaded:before {
    content: none
  }
  .disable-owl-mobile .owl-carousel {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px!important;
    mask-image: linear-gradient(to left, transparent 5px, #000 40px);
    -webkit-mask-image: linear-gradient(to left, transparent 5px, #000 40px)
  }
  .disable-owl-mobile .owl-carousel>div {
    display: block!important;
    flex: 0 0 auto
  }
  .disable-owl-mobile.banners-carousel-wrapper .content-banner {
    animation: none
  }
  .disable-owl-mobile[data-hide_pagination_control="no"] .owl-carousel {
    padding-bottom: 10px!important
  }
  .disable-owl-mobile.slider-type-post .owl-carousel {
    padding-bottom: 11px!important
  }
}

@media (max-width:768px) {
  .wd-carousel-spacing-20,
  .wd-carousel-spacing-30 {
    margin-right: -5px;
    margin-left: -5px
  }
  .wd-carousel-spacing-20 .owl-item,
  .wd-carousel-spacing-20 .owl-carousel:not(.owl-loaded)>div,
  .wd-carousel-spacing-30 .owl-item,
  .wd-carousel-spacing-30 .owl-carousel:not(.owl-loaded)>div {
    padding-right: 5px;
    padding-left: 5px
  }
  .wd-carousel-spacing-20 .owl-nav>div[class*="prev"],
  .wd-carousel-spacing-30 .owl-nav>div[class*="prev"] {
    left: -30px
  }
  .wd-carousel-spacing-20 .owl-nav>div[class*="next"],
  .wd-carousel-spacing-30 .owl-nav>div[class*="next"] {
    right: -30px
  }
}

@media (max-width:575px) {
  .owl-items-xs-1:not(.owl-loaded)>div {
    width: 100%;
    flex: 0 0 100%
  }
  .owl-items-xs-2:not(.owl-loaded)>div {
    width: 50%;
    flex: 0 0 50%
  }
}

@media (min-width:769px) and (max-width:1024px) {
  .owl-items-md-1:not(.owl-loaded)>div {
    width: 100%;
    flex: 0 0 100%
  }
  .owl-items-md-2:not(.owl-loaded)>div {
    width: 50%;
    flex: 0 0 50%
  }
  .owl-items-md-3:not(.owl-loaded)>div {
    width: 33.3333333333%;
    flex: 0 0 33.3333333333%
  }
  .owl-items-md-4:not(.owl-loaded)>div {
    width: 25%;
    flex: 0 0 25%
  }
}

@media (min-width:576px) and (max-width:768px) {
  .owl-items-sm-1:not(.owl-loaded)>div {
    width: 100%;
    flex: 0 0 100%
  }
  .owl-items-sm-2:not(.owl-loaded)>div {
    width: 50%;
    flex: 0 0 50%
  }
  .owl-items-sm-3:not(.owl-loaded)>div {
    width: 33.3333333333%;
    flex: 0 0 33.3333333333%
  }
}

.brands-widget .brand-item {
  text-align: center
}

.brands-widget .brand-item a {
  display: block;
  padding: 20px
}

.brands-widget .brand-item img {
  max-height: 60px;
  width: auto;
  height: auto
}

.brands-carousel .owl-carousel:not(.owl-loaded),
.brands-carousel .owl-stage {
  display: flex;
  align-items: center
}

.brands-list .brand-item {
  margin-bottom: 15px;
  text-align: left
}

.brands-list .brand-item a {
  padding: 0;
  color: #777
}

.brands-list .brand-item a:hover {
  color: var(--wd-primary-color)
}

[class*="color-scheme-light"] .brands-list .brand-item a {
  color: rgba(255, 255, 255, .9)
}

[class*="color-scheme-light"] .brands-list .brand-item a:hover {
  color: #fff
}

.brands-style-bordered .brand-item {
  border-width: 1px;
  border-color: rgba(119, 119, 119, .2)
}

.brands-style-bordered.brands-grid {
  overflow: hidden
}

.brands-style-bordered.brands-grid .row {
  margin-right: -2px;
  margin-bottom: -2px
}

.brands-style-bordered.brands-grid .brand-item {
  border-right-style: solid;
  border-bottom-style: solid
}

.brands-style-bordered.brands-carousel .brand-item {
  border-right-style: solid
}

.brands-style-bordered.brands-carousel .owl-stage-outer,
.brands-style-bordered.brands-carousel .owl-carousel:not(.owl-loaded) {
  border: 1px solid rgba(119, 119, 119, .2)
}

.brands-style-bordered.brands-carousel .owl-stage-outer {
  margin-right: 1px;
  margin-left: 1px
}

.brands-style-bordered.brands-carousel .owl-item:last-child .brand-item {
  border-right-style: none
}

.brands-style-bordered.brands-list .row {
  margin-right: -10px;
  margin-left: -10px
}

.brands-style-bordered.brands-list .brand-item {
  margin-bottom: 10px;
  padding-right: 10px;
  padding-left: 10px
}

.brands-style-bordered.brands-list .brand-item>a {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(119, 119, 119, .2)
}

.brands-style-bordered[data-hide_pagination_control="no"] .owl-carousel:not(.owl-loaded) {
  padding-bottom: 0!important
}

[class*="color-scheme-light"] .brands-style-bordered .brand-item {
  border-color: rgba(255, 255, 255, .15)
}

[class*="color-scheme-light"] .brands-style-bordered.brands-carousel .owl-stage-outer,
[class*="color-scheme-light"] .brands-style-bordered.brands-carousel .owl-carousel:not(.owl-loaded) {
  border-color: rgba(255, 255, 255, .15)
}

[class*="color-scheme-light"] .brands-style-bordered.brands-list .brand-item>a {
  border-color: rgba(255, 255, 255, .15)
}

.brands-hover-simple .brand-item img {
  filter: grayscale(100%);
  transition: filter .3s ease
}

.brands-hover-simple .brand-item:hover img {
  filter: grayscale(0)
}

.brands-hover-alt .brand-item img {
  opacity: .5;
  filter: grayscale(100%);
  transition: filter .3s ease, opacity .3s ease
}

.brands-hover-alt .brand-item:hover img {
  opacity: 1;
  filter: grayscale(0)
}

.wd-images-gallery div:not(.wd-btn-arrow) {
  align-items: inherit;
  justify-content: inherit
}

.wd-images-gallery .owl-stage,
.wd-images-gallery .wd-gallery-item {
  display: flex
}

.wd-gallery-item {
  overflow: hidden
}

.wd-gallery-item>a {
  display: block
}

.wpb-js-composer .wd-images-gallery.view-carousel,
.wpb-js-composer .wd-images-gallery.view-justified {
  margin-bottom: 30px
}

@media (max-width:1024px) {
  .wd-images-gallery.disable-owl-mobile {
    justify-content: flex-start
  }
  .wpb-js-composer .wd-images-gallery.view-carousel,
  .wpb-js-composer .wd-images-gallery.view-justified {
    margin-bottom: 20px
  }
}

.footer-sidebar {
  padding-top: 40px;
  padding-bottom: 10px;
  align-items: end;
}

.footer-column {
  margin-bottom: 30px
}

[class*="color-scheme-light"] .footer-widget {
  --wd-link-color: rgba(255, 255, 255, .6)
}

.wd-prefooter {
  padding-bottom: 40px;
  background-color: #FFF
}

.global-color-scheme-light .wd-prefooter {
  background-color: #1a1a1a
}

.copyrights-wrapper {
  border-top: 1px solid rgba(119, 119, 119, .2);
  border-top: 1px solid #ddd;
  border-top: 0;
}

[class*="color-scheme-light"] .copyrights-wrapper {
  border-color: rgba(255, 255, 255, .1)
}

.min-footer {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  margin-right: -15px;
  margin-left: -15px;
  padding-top: 20px;
  padding-bottom: 20px
}

.min-footer>div {
  flex: 1 0 100%;
  padding-right: 15px;
  padding-left: 15px;
  max-width: 100%;
  line-height: 1.2
}

.min-footer .col-right {
  text-align: right
}

.copyrights-centered .min-footer {
  align-items: stretch;
  flex-wrap: wrap;
  text-align: center
}

.copyrights-centered .min-footer .col-right {
  text-align: center
}

.copyrights-centered .min-footer>div {
  flex-basis: 100%;
  margin-bottom: 15px;
  max-width: 100%
}

.copyrights-centered .min-footer>div:last-child {
  margin-bottom: 0
}

@media (max-width:1024px) {
  .min-footer {
    align-items: stretch;
    flex-wrap: wrap;
    text-align: center
  }
  .min-footer .col-right {
    text-align: center
  }
  .min-footer>div {
    flex-basis: 100%;
    margin-bottom: 15px;
    max-width: 100%
  }
  .min-footer>div:last-child {
    margin-bottom: 0
  }
}

.scrollToTop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 350;
  width: 40px;
  height: 40px;
  border-radius: 0;
  background-color: #dc3936;
  box-shadow: none;
  color: #fff;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateX(100%)
}

.scrollToTop.button-show {
  opacity: 1;
  transform: none;
  pointer-events: visible
}

.scrollToTop .wd-tooltip-label {
  display: none
}

.scrollToTop:after {
  display: inline-block;
  font-weight: 600;
  font-size: 13px;
  line-height: 40px;
  content: "\f115";
  font-family: "woodmart-font"
}

.scrollToTopAfter:after {
  display: inline-block;
}

.scrollToTop:hover {
  color: #fff;
  background-color: #dc3936;
  opacity: .8;
}

.wd-search-opened .scrollToTop {
  display: none
}

.global-color-scheme-light .scrollToTop {
  background-color: rgba(0, 0, 0, .9);
  color: #fff
}

.global-color-scheme-light .scrollToTop:hover {
  color: rgba(255, 255, 255, .6)
}

@media (max-width:1024px) {
  .scrollToTop {
    right: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px
  }
  .scrollToTop:after {
    font-size: 14px;
    line-height: 40px
  }
}

.wd-popup.wd-promo-popup {
  display: none;
  max-width: 800px
}

.mfp-wrap .wd-popup.wd-promo-popup {
  display: block
}

@media (max-width:1024px) {
  .wd-promo-popup-wrapper>.mfp-container {
    position: fixed;
    overflow-y: auto
  }
}

.wd-toolbar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 350;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 5px;
  height: 55px;
  background-color: #fff;
  box-shadow: 0 0 9px rgba(0, 0, 0, .12)
}

.wd-toolbar>a {
  display: flex;
  align-items: center;
  justify-content: center
}

.wd-toolbar>a,
.wd-toolbar>div {
  flex: 1 0 20%
}

.wd-toolbar>a,
.wd-toolbar>div a {
  height: 45px
}

.wd-toolbar .wd-header-cart.wd-design-5 {
  margin-right: 0
}

.wd-toolbar.wd-toolbar-label-show>a,
.wd-toolbar.wd-toolbar-label-show>div a {
  position: relative;
  padding-bottom: 15px
}

.wd-toolbar.wd-toolbar-label-show .wd-toolbar-label {
  display: block
}

.global-color-scheme-light .wd-toolbar {
  background-color: #101010
}

.global-color-scheme-light .wd-toolbar a {
  color: #FFF
}

.global-color-scheme-light .wd-toolbar a:hover {
  color: rgba(255, 255, 255, .8)
}

.wd-toolbar-label {
  position: absolute;
  right: 10px;
  bottom: 3px;
  left: 10px;
  display: none;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
  font-size: 11px;
  line-height: 1;
  padding: 1px 0
}

.wd-toolbar-item .wd-tools-icon:before {
  font-size: 19px
}

.wd-toolbar-shop .wd-tools-icon:before {
  content: "\f146";
  font-family: "woodmart-font"
}

.wd-toolbar-blog .wd-tools-icon:before {
  content: "\f145";
  font-family: "woodmart-font"
}

.wd-toolbar-home .wd-tools-icon:before {
  content: "\f144";
  font-family: "woodmart-font"
}

.wd-toolbar-link .wd-tools-icon:before {
  content: "\f140";
  font-family: "woodmart-font"
}

.wd-toolbar-link .wd-custom-icon {
  min-width: auto
}

.wd-toolbar-link .wd-custom-icon img {
  width: auto;
  height: 20px
}

@media (min-width:1025px) {
  .wd-toolbar {
    display: none
  }
}

@media (max-width:1024px) {
  .sticky-toolbar-on {
    padding-bottom: 0
  }
  .sticky-toolbar-on .wd-sticky-btn {
    bottom: 0
  }
  /*
  .sticky-toolbar-on .scrollToTop {
    bottom: 67px
  }
  */
  .sticky-toolbar-on .wd-sticky-btn-shown.scrollToTop {
    bottom: 152px
  }
}

@media (max-width:768px) {
  .sticky-toolbar-on .wd-sticky-btn-shown.scrollToTop {
    bottom: 123px
  }
}

@media (max-width:575px) {
  .sticky-toolbar-on .wd-sticky-btn-shown.scrollToTop {
    bottom: 109px
  }
}

.login-form-side .woocommerce-notices-wrapper {
  padding: 20px 15px 0 15px
}

.login-form-side .woocommerce-form-login {
  padding: 25px 20px 25px 20px;
  border-bottom: 1px solid #eee
}

.login-form-side.color-scheme-light .woocommerce-form-login {
  border-color: rgba(255, 255, 255, .15)
}

.login-form-side .login.hidden-form {
  display: none
}

.create-account-question {
  --wd-tags-mb: 15px;
  padding: 25px 20px;
  border-bottom: 2px solid #eee;
  border-bottom: 0;
  text-align: center
}

.create-account-question p {
  color: #292A2C;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
}

/*
.create-account-question:before {
  display: block;
  margin-bottom: 15px;
  color: rgba(135, 135, 135, .15);
  font-size: 54px;
  line-height: 1;
  content: "\f124";
  font-family: "woodmart-font"
}
*/

.create-account-question i {
  font-size: 3.5rem;
  margin-bottom: 15px;
  color: #eee;
}

.color-scheme-light .create-account-question {
  border-color: rgba(255, 255, 255, .15)
}

.color-scheme-light .create-account-question p {
  color: #fff
}

.color-scheme-light .create-account-question:before {
  color: rgba(255, 255, 255, .6)
}

.color-scheme-light .create-account-question .create-account-button {
  border-color: rgba(255, 255, 255, .3);
  color: #FFF
}

.color-scheme-light .create-account-question .create-account-button:hover {
  border-color: #FFF;
  color: #FFF
}

.wd-social-login {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px
}

.social-login-btn {
  flex: 1 1 200px;
  padding-right: 5px;
  padding-left: 5px
}

.social-login-btn:not(:last-child) {
  margin-bottom: 15px
}

.social-login-btn .btn {
  display: block;
  color: #FFF;
  border-radius: var(--btn-shop-brd-radius)
}

.social-login-btn .btn:before {
  position: absolute;
  top: 50%;
  font-weight: 400;
  transform: translateY(-50%);
  font-family: "woodmart-font"
}

.social-login-btn .btn:hover {
  color: #FFF;
  box-shadow: inset 0 0 200px rgba(0, 0, 0, .15)
}

.social-login-btn .login-vk-link {
  background-color: #597DA3
}

.social-login-btn .login-vk-link:before {
  left: calc(10px + (var(--btn-shop-brd-radius) / 4));
  font-size: 22px;
  content: "\f168"
}

.social-login-btn .login-fb-link {
  background-color: #3B5998
}

.social-login-btn .login-fb-link:before {
  left: calc(9px + (var(--btn-shop-brd-radius) / 4));
  font-size: 28px;
  content: "\f174"
}

.social-login-btn .login-goo-link {
  background-color: #4285F4
}

.social-login-btn .login-goo-link:before {
  content: '';
  left: calc(8px + (var(--btn-shop-brd-radius) / 4));
  width: 26px;
  height: 26px;
  border-radius: 2px;
  background: no-repeat center/16px url(../../../themes/woodmart/inc/admin/assets/images/google-btn-icon.svg) #fff
}
xw

@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s
}

@-webkit-keyframes bounce {
  0%,
  100%,
  20%,
  53%,
  80% {
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
  40%,
  43% {
    transition-timing-function: cubic-bezier(.755, .050, .855, .060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0)
  }
  70% {
    transition-timing-function: cubic-bezier(.755, .050, .855, .060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0)
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0)
  }
}

@keyframes bounce {
  0%,
  100%,
  20%,
  53%,
  80% {
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
  40%,
  43% {
    transition-timing-function: cubic-bezier(.755, .050, .855, .060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0)
  }
  70% {
    transition-timing-function: cubic-bezier(.755, .050, .855, .060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0)
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0)
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom
}

@-webkit-keyframes flash {
  0%,
  100%,
  50% {
    opacity: 1
  }
  25%,
  75% {
    opacity: 0
  }
}

@keyframes flash {
  0%,
  100%,
  50% {
    opacity: 1
  }
  25%,
  75% {
    opacity: 0
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05)
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05)
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
  30% {
    -webkit-transform: scale3d(1.25, .75, 1);
    transform: scale3d(1.25, .75, 1)
  }
  40% {
    -webkit-transform: scale3d(.75, 1.25, 1);
    transform: scale3d(.75, 1.25, 1)
  }
  50% {
    -webkit-transform: scale3d(1.15, .85, 1);
    transform: scale3d(1.15, .85, 1)
  }
  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1)
  }
  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1)
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
  30% {
    -webkit-transform: scale3d(1.25, .75, 1);
    transform: scale3d(1.25, .75, 1)
  }
  40% {
    -webkit-transform: scale3d(.75, 1.25, 1);
    transform: scale3d(.75, 1.25, 1)
  }
  50% {
    -webkit-transform: scale3d(1.15, .85, 1);
    transform: scale3d(1.15, .85, 1)
  }
  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1)
  }
  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1)
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand
}

@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0)
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0)
  }
}

@keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0)
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0)
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg)
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg)
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg)
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg)
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg)
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg)
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg)
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg)
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg)
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg)
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
  10%,
  20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
  10%,
  20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
  }
  100% {
    -webkit-transform: none;
    transform: none
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
  }
  100% {
    -webkit-transform: none;
    transform: none
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble
}

@-webkit-keyframes bounceIn {
  0%,
  100%,
  20%,
  40%,
  60%,
  80% {
    transition-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1)
  }
  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9)
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03)
  }
  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97)
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

@keyframes bounceIn {
  0%,
  100%,
  20%,
  40%,
  60%,
  80% {
    transition-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1)
  }
  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9)
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03)
  }
  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97)
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: .75s;
  animation-duration: .75s
}

@-webkit-keyframes bounceInDown {
  0%,
  100%,
  60%,
  75%,
  90% {
    transition-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0)
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0)
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0)
  }
  100% {
    -webkit-transform: none;
    transform: none
  }
}

@keyframes bounceInDown {
  0%,
  100%,
  60%,
  75%,
  90% {
    transition-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0)
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0)
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0)
  }
  100% {
    -webkit-transform: none;
    transform: none
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {
  0%,
  100%,
  60%,
  75%,
  90% {
    transition-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0)
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0)
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0)
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0)
  }
  100% {
    -webkit-transform: none;
    transform: none
  }
}

@keyframes bounceInLeft {
  0%,
  100%,
  60%,
  75%,
  90% {
    transition-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0)
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0)
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0)
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0)
  }
  100% {
    -webkit-transform: none;
    transform: none
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {
  0%,
  100%,
  60%,
  75%,
  90% {
    transition-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0)
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0)
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0)
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0)
  }
  100% {
    -webkit-transform: none;
    transform: none
  }
}

@keyframes bounceInRight {
  0%,
  100%,
  60%,
  75%,
  90% {
    transition-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0)
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0)
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0)
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0)
  }
  100% {
    -webkit-transform: none;
    transform: none
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {
  0%,
  100%,
  60%,
  75%,
  90% {
    transition-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0)
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0)
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0)
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0)
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes bounceInUp {
  0%,
  100%,
  60%,
  75%,
  90% {
    transition-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0)
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0)
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0)
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0)
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9)
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1)
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9)
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1)
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
  -webkit-animation-duration: .75s;
  animation-duration: .75s
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0)
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0)
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0)
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0)
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0)
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0)
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0)
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0)
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0)
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0)
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transition-timing-function: ease-in
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transition-timing-function: ease-in
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}

.flipInX {
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible!important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transition-timing-function: ease-in
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transition-timing-function: ease-in
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}

.flipInY {
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible!important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible!important
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0
  }
}

.flipOutY {
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible!important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-animation-duration: .75s;
  animation-duration: .75s
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
  }
}

@keyframes rollOut {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }
  50% {
    opacity: 1
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }
  50% {
    opacity: 1
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }
  100% {
    opacity: 0
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }
  100% {
    opacity: 0
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%)
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%)
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp
}

.rs-p-wp-fix {
  display: none!important;
  margin: 0!important;
  height: 0px!important
}

.wp-block-themepunch-revslider {
  position: relative
}

rs-modal {
  position: fixed!important;
  z-index: 9999999!important;
  pointer-events: none!important
}

rs-modal.rs-modal-auto {
  top: auto;
  bottom: auto;
  left: auto;
  right: auto
}

rs-modal.rs-modal-fullwidth,
rs-modal.rs-modal-fullscreen {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

rs-modal rs-fullwidth-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%
}

rs-module-wrap.rs-modal {
  display: none;
  max-height: 100%!important;
  overflow: auto!important;
  pointer-events: auto!important
}

rs-module-wrap.hideallscrollbars.rs-modal {
  overflow: hidden!important;
  max-width: 100%!important
}

rs-modal-cover {
  width: 100%;
  height: 100%;
  z-index: 0;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  pointer-events: auto
}

body>rs-modal-cover {
  position: fixed;
  z-index: 9999995!important
}

rs-sbg-px {
  pointer-events: none
}

.rs-forceuntouchable,
.rs-forceuntouchable * {
  pointer-events: none!important
}

.rs-forcehidden * {
  visibility: hidden!important
}

.rs_splitted_lines {
  display: block;
  white-space: nowrap!important
}

.rs-go-fullscreen {
  position: fixed!important;
  width: 100%!important;
  height: 100%!important;
  top: 0px!important;
  left: 0px!important;
  z-index: 9999999!important;
  background: #fff
}

.rtl {
  direction: rtl
}

@font-face {
  font-family: 'revicons';
  src: url('../fonts/revicons.eot?5510888');
  src: url('../fonts/revicons.eot?5510888#iefix') format('embedded-opentype'), url('../fonts/revicons.woff?5510888') format('woff'), url('../fonts/revicons.ttf?5510888') format('truetype'), url('../fonts/revicons.svg?5510888#revicons') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap
}

[class^="revicon-"]:before,
[class*=" revicon-"]:before {
  font-family: "revicons";
  font-style: normal;
  font-weight: 400;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: .2em
}

rs-module i[class^="fa-"],
rs-module i[class*=" fa-"],
.rb-modal-wrapper i[class^="fa-"],
.rb-modal-wrapper i[class*=" fa-"],
#waitaminute i[class^="fa-"],
#waitaminute i[class*=" fa-"],
#objectlibrary i[class^="fa-"],
#objectlibrary i[class*=" fa-"],
#rs_overview i[class^="fa-"],
#rs_overview i[class*=" fa-"],
#rs_overview_menu i[class^="fa-"],
#rs_overview_menu i[class*=" fa-"],
#builderView i[class^="fa-"],
#builderView i[class*=" fa-"] {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

rs-module [class^="fa-"]:before,
rs-module [class*=" fa-"]:before,
.rb-modal-wrapper [class^="fa-"]:before,
.rb-modal-wrapper [class*=" fa-"]:before,
#rs_overview [class^="fa-"]:before,
#rs_overview [class*=" fa-"]:before,
#objectlibrary [class^="fa-"]:before,
#objectlibrary [class*=" fa-"]:before,
#waitaminute [class^="fa-"]:before,
#waitaminute [class*=" fa-"]:before,
#rs_overview_menu [class^="fa-"]:before,
#rs_overview_menu [class*=" fa-"]:before,
#builderView [class^="fa-"]:before,
#builderView [class*=" fa-"]:before {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: 400;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: auto;
  margin-right: 0;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: inherit;
  margin-left: 0
}

rs-module .sr-only,
#objectlibrary .sr-only,
#waitaminute .sr-only,
#rs_overview .sr-only,
#rs_overview_menu .sr-only,
.rb-modal-wrapper .sr-only,
#builderView .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0
}

rs-module .sr-only-focusable:active,
rs-module .sr-only-focusable:focus,
#waitaminute .sr-only-focusable:active,
#waitaminute .sr-only-focusable:focus,
#objectlibrary .sr-only-focusable:active,
#objectlibrary .sr-only-focusable:focus,
#rs_overview .sr-only-focusable:active,
#rs_overview .sr-only-focusable:focus,
#rs_overview_menu .sr-only-focusable:active,
#rs_overview_menu .sr-only-focusable:focus,
.rb-modal-wrapper .sr-only-focusable:active,
.rb-modal-wrapper .sr-only-focusable:focus,
#builderView .sr-only-focusable:active,
#builderView .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto
}

.revicon-search-1:before {
  content: '\e802'
}

.revicon-pencil-1:before {
  content: '\e831'
}

.revicon-picture-1:before {
  content: '\e803'
}

.revicon-cancel:before {
  content: '\e80a'
}

.revicon-info-circled:before {
  content: '\e80f'
}

.revicon-trash:before {
  content: '\e801'
}

.revicon-left-dir:before {
  content: '\e817'
}

.revicon-right-dir:before {
  content: '\e818'
}

.revicon-down-open:before {
  content: '\e83b'
}

.revicon-left-open:before {
  content: '\e819'
}

.revicon-right-open:before {
  content: '\e81a'
}

.revicon-angle-left:before {
  content: '\e820'
}

.revicon-angle-right:before {
  content: '\e81d'
}

.revicon-left-big:before {
  content: '\e81f'
}

.revicon-right-big:before {
  content: '\e81e'
}

.revicon-magic:before {
  content: '\e807'
}

.revicon-picture:before {
  content: '\e800'
}

.revicon-export:before {
  content: '\e80b'
}

.revicon-cog:before {
  content: '\e832'
}

.revicon-login:before {
  content: '\e833'
}

.revicon-logout:before {
  content: '\e834'
}

.revicon-video:before {
  content: '\e805'
}

.revicon-arrow-combo:before {
  content: '\e827'
}

.revicon-left-open-1:before {
  content: '\e82a'
}

.revicon-right-open-1:before {
  content: '\e82b'
}

.revicon-left-open-mini:before {
  content: '\e822'
}

.revicon-right-open-mini:before {
  content: '\e823'
}

.revicon-left-open-big:before {
  content: '\e824'
}

.revicon-right-open-big:before {
  content: '\e825'
}

.revicon-left:before {
  content: '\e836'
}

.revicon-right:before {
  content: '\e826'
}

.revicon-ccw:before {
  content: '\e808'
}

.revicon-arrows-ccw:before {
  content: '\e806'
}

.revicon-palette:before {
  content: '\e829'
}

.revicon-list-add:before {
  content: '\e80c'
}

.revicon-doc:before {
  content: '\e809'
}

.revicon-left-open-outline:before {
  content: '\e82e'
}

.revicon-left-open-2:before {
  content: '\e82c'
}

.revicon-right-open-outline:before {
  content: '\e82f'
}

.revicon-right-open-2:before {
  content: '\e82d'
}

.revicon-equalizer:before {
  content: '\e83a'
}

.revicon-layers-alt:before {
  content: '\e804'
}

.revicon-popup:before {
  content: '\e828'
}

.tp-fullwidth-forcer {
  z-index: 0;
  pointer-events: none
}

rs-module-wrap {
  visibility: hidden
}

rs-module-wrap,
rs-module-wrap * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

rs-module-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block
}

.rs-fixedscrollon rs-module-wrap {
  position: fixed!important;
  top: 0px!important;
  z-index: 1000;
  left: 0!important
}

.rs-stickyscrollon rs-module-wrap {
  position: sticky!important;
  top: 0;
  z-index: 1000
}

.rs-stickyscrollon {
  overflow: visible!important
}

rs-fw-forcer {
  display: block;
  width: 100%;
  pointer-events: none
}

rs-module {
  position: relative;
  overflow: hidden;
  display: block
}

rs-module.disableVerticalScroll {
  -ms-touch-action: pan-x;
  touch-action: pan-x
}

rs-pzimg-wrap,
rs-sbg-effectwrap,
rs-sbg {
  display: block;
  pointer-events: none
}

rs-sbg-effectwrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

rs-carousel-wrap rs-column rs-layer img {
  width: 0;
  height: 0
}

rs-sbg-px,
rs-sbg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block
}

a.rs-layer,
a.rs-layer:-webkit-any-link {
  text-decoration: none
}

a[x-apple-data-detectors] {
  color: inherit!important;
  text-decoration: none!important;
  font-size: inherit!important;
  font-family: inherit!important;
  font-weight: inherit!important;
  line-height: inherit!important
}

.entry-content rs-module a,
rs-module a {
  box-shadow: none
}

.rs-ov-hidden {
  overflow: hidden!important
}

.rs-forceoverflow,
.rs-forceoverflow rs-module-wrap,
.rs-forceoverflow rs-module,
.rs-forceoverflow rs-slides,
.rs-forceoverflow rs-slide {
  overflow: visible!important
}

.tp-simpleresponsive img,
rs-module img {
  max-width: none!important;
  transition: none;
  margin: 0;
  padding: 0;
  border: none
}

rs-module .no-slides-text {
  font-weight: 700;
  text-align: center;
  padding-top: 80px
}

rs-slides,
rs-slide,
rs-slide:before {
  position: absolute;
  text-indent: 0em;
  top: 0;
  left: 0
}

rs-slide,
rs-slide:before {
  display: block;
  visibility: hidden
}

.rs-layer .rs-untoggled-content {
  display: block
}

.rs-layer .rs-toggled-content {
  display: none
}

.rs-tc-active.rs-layer>.rs-toggled-content {
  display: block
}

.rs-tc-active.rs-layer>.rs-untoggled-content {
  display: none
}

.rs-layer-video {
  overflow: hidden
}

.rs_html5vidbasicstyles {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden
}

rs-module rs-layer,
rs-module .rs-layer {
  opacity: 0;
  position: relative;
  visibility: hidden;
  white-space: nowrap;
  display: block;
  -webkit-font-smoothing: antialiased!important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-osx-font-smoothing: grayscale;
  z-index: 1;
  font-display: swap
}

rs-layer-wrap,
rs-mask,
rs-module-wrap,
rs-module .rs-layer,
rs-module img {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none
}

rs-module rs-mask-wrap .rs-layer,
rs-module rs-mask-wrap *:last-child,
.wpb_text_column rs-module rs-mask-wrap .rs-layer,
.wpb_text_column rs-module rs-mask-wrap *:last-child {
  margin-bottom: 0
}

.rs-svg svg {
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: top
}

rs-layer:not(.rs-wtbindex),
.rs-layer:not(.rs-wtbindex),
rs-alyer *:not(.rs-wtbindex),
.rs-layer *:not(.rs-wtbindex) {
  outline: none!important
}

rs-carousel-wrap {
  cursor: url(../../../plugins/revslider/public/assets/css/openhand.cur), move
}

rs-carousel-wrap.dragged {
  cursor: url(../../../plugins/revslider/public/assets/css/closedhand.cur), move
}

rs-carousel-wrap.noswipe {
  cursor: default
}

rs-carousel-wrap {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0
}

rs-carousel-space {
  clear: both;
  display: block;
  width: 100%;
  height: 0;
  position: relative
}

.tp_inner_padding {
  box-sizing: border-box;
  max-height: none!important
}

.rs-layer.rs-selectable {
  -moz-user-select: text;
  -khtml-user-select: text;
  -webkit-user-select: text;
  -o-user-select: text
}

rs-px-mask {
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
  position: relative
}

rs-module embed,
rs-module iframe,
rs-module object,
rs-module audio,
rs-module video {
  max-width: none!important;
  border: none
}

rs-bg-elem {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  pointer-events: none
}

.tp-blockmask,
.tp-blockmask_in,
.tp-blockmask_out {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1000;
  transform: scaleX(0) scaleY(0)
}

rs-zone {
  position: absolute;
  width: 100%;
  left: 0;
  box-sizing: border-box;
  min-height: 50px;
  font-size: 0;
  pointer-events: none
}

rs-row-wrap,
rs-column,
rs-cbg-mask-wrap {
  display: block;
  visibility: hidden
}

rs-layer-wrap,
rs-parallax-wrap,
rs-loop-wrap,
rs-mask-wrap {
  display: block
}

rs-column-wrap>rs-loop-wrap {
  z-index: 1
}

rs-layer-wrap,
rs-mask-wrap,
rs-cbg-mask-wrap {
  transform-style: flat
}

@media not all and (min-resolution:.001dpcm) {
  @media {
    rs-carousel-wrap rs-layer-wrap,
    rs-carousel-wrap rs-loop-wrap {
      -webkit-backface-visibility: hidden;
      -webkit-transform-style: preserve-3d
    }
  }
}

.safarifix rs-layer-wrap {
  perspective: 1000000
}

@-moz-document url-prefix() {
  rs-layer-wrap,
  rs-mask-wrap,
  rs-cbg-mask-wrap {
    perspective: none
  }
}

rs-mask-wrap {
  overflow: hidden
}

rs-fullwidth-wrap {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  max-width: none!important
}

.rev_row_zone_top {
  top: 0
}

.rev_row_zone_bottom {
  bottom: 0
}

.rev_row_zone_middle {
  top: 50%;
  transform: perspective(1px) translateY(-50%)
}

rs-column-wrap .rs-parallax-wrap {
  vertical-align: top
}

.rs-layer img,
rs-layer img {
  vertical-align: top
}

rs-row,
rs-row.rs-layer {
  display: table;
  position: relative;
  width: 100%!important;
  table-layout: fixed;
  box-sizing: border-box;
  vertical-align: top;
  height: auto;
  font-size: 0
}

rs-column-wrap {
  display: table-cell;
  position: relative;
  vertical-align: top;
  height: auto;
  box-sizing: border-box;
  font-size: 0
}

rs-column {
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 100%!important;
  height: auto!important;
  white-space: normal!important
}

rs-cbg-mask-wrap {
  position: absolute;
  z-index: 0;
  box-sizing: border-box
}

rs-column-wrap rs-cbg-mask-wrap {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0
}

rs-column-bg {
  position: absolute;
  z-index: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%
}

.rs-pelock * {
  pointer-events: none!important
}

rs-column .rs-parallax-wrap,
rs-column rs-loop-wrap,
rs-column rs-mask-wrap {
  text-align: inherit
}

rs-column rs-mask-wrap {
  display: inline-block
}

rs-column .rs-parallax-wrap rs-loop-wrap,
rs-column .rs-parallax-wrap rs-mask-wrap,
rs-column .rs-parallax-wrap {
  position: relative!important;
  left: auto!important;
  top: auto!important;
  line-height: 0
}

rs-column .rs-parallax-wrap rs-loop-wrap,
rs-column .rs-parallax-wrap rs-mask-wrap,
rs-column .rs-parallax-wrap,
rs-column .rev_layer_in_column {
  vertical-align: top
}

.rev_break_columns {
  display: block!important
}

.rev_break_columns rs-column-wrap.rs-parallax-wrap {
  display: block!important;
  width: 100%!important
}

.rev_break_columns rs-column-wrap.rs-parallax-wrap.rs-layer-hidden,
.tp-forcenotvisible,
.tp-hide-revslider,
rs-row-wrap.rs-layer-hidden,
rs-column-wrap.rs-layer-hidden,
.rs-layer.rs-layer-hidden,
.rs-layer-audio.rs-layer-hidden,
.rs-parallax-wrap.rs-layer-hidden {
  visibility: hidden!important;
  display: none!important
}

rs-layer.rs-nointeraction,
.rs-layer.rs-nointeraction {
  pointer-events: none!important
}

rs-static-layers {
  position: absolute;
  z-index: 101;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden
}

rs-static-layers.rs-stl-back {
  z-index: 0
}

.rs-layer rs-fcr {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 0 solid transparent;
  border-top: 40px solid #00A8FF;
  position: absolute;
  right: 100%;
  top: 0
}

.rs-layer rs-fcrt {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 40px solid #00A8FF;
  position: absolute;
  right: 100%;
  top: 0
}

.rs-layer rs-bcr {
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 40px solid #00A8FF;
  position: absolute;
  left: 100%;
  top: 0
}

.rs-layer rs-bcrt {
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid #00A8FF;
  position: absolute;
  left: 100%;
  top: 0
}

.tp-layer-inner-rotation {
  position: relative!important
}

img.tp-slider-alternative-image {
  width: 100%;
  height: auto
}

.noFilterClass {
  filter: none!important
}

rs-bgvideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block
}

.rs-layer.rs-fsv {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%
}

.rs-layer.rs-fsv audio,
.rs-layer.rs-fsv video,
.rs-layer.rs-fsv iframe,
.rs-layer.rs-fsv iframe audio,
.rs-layer.rs-fsv iframe video {
  width: 100%;
  height: 100%
}

.rs-fsv video {
  background: #000
}

.fullcoveredvideo rs-poster {
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0
}

.videoisplaying .html5vid rs-poster {
  display: none
}

.tp-video-play-button {
  background: #000;
  background: rgba(0, 0, 0, .3);
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #FFF;
  z-index: 3;
  margin-top: -25px;
  margin-left: -25px;
  line-height: 50px!important;
  text-align: center;
  cursor: pointer;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  z-index: 4;
  opacity: 0;
  transition: opacity 300ms ease-out!important
}

.rs-ISM .tp-video-play-button {
  opacity: 1;
  transition: none!important;
  z-index: 6
}

.rs-audio .tp-video-play-button {
  display: none!important
}

.rs-layer .html5vid {
  width: 100%!important;
  height: 100%!important
}

.tp-video-play-button i {
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center!important;
  vertical-align: top;
  line-height: 50px!important;
  font-size: 30px!important
}

.rs-layer:hover .tp-video-play-button {
  opacity: 1;
  display: block;
  z-index: 6
}

.rs-layer .tp-revstop {
  display: none;
  width: 15px;
  border-right: 5px solid #fff!important;
  border-left: 5px solid #fff!important;
  transform: translateX(50%) translateY(50%);
  height: 20px;
  margin-left: 11px!important;
  margin-top: 5px!important
}

.videoisplaying .revicon-right-dir {
  display: none
}

.videoisplaying .tp-revstop {
  display: block
}

.videoisplaying .tp-video-play-button {
  display: none
}

.fullcoveredvideo .tp-video-play-button {
  display: none!important
}

.rs-fsv .rs-fsv audio {
  object-fit: contain!important
}

.rs-fsv .rs-fsv video {
  object-fit: contain!important
}

.rs-layer-video .html5vid.hidefullscreen video::-webkit-media-controls-fullscreen-button {
  display: none
}

@supports not (-ms-high-contrast:none) {
  .rs-fsv .fullcoveredvideo audio {
    object-fit: cover!important
  }
  .rs-fsv .fullcoveredvideo video {
    object-fit: cover!important
  }
}

.rs-fullvideo-cover {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: transparent;
  z-index: 5
}

.rs-nolc .tp-video-play-button,
rs-bgvideo video::-webkit-media-controls-start-playback-button,
rs-bgvideo video::-webkit-media-controls,
rs-bgvideo audio::-webkit-media-controls {
  display: none!important
}

.rs-audio .tp-video-controls {
  opacity: 1!important;
  visibility: visible!important
}

rs-module h1.rs-layer,
rs-module h2.rs-layer,
rs-module h3.rs-layer,
rs-module h4.rs-layer,
rs-module h5.rs-layer,
rs-module h6.rs-layer,
rs-module div.rs-layer,
rs-module span.rs-layer,
rs-module p.rs-layer {
  margin: 0;
  padding: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0
}

rs-module h1.rs-layer:before,
rs-module h2.rs-layer:before,
rs-module h3.rs-layer:before,
rs-module h4.rs-layer:before,
rs-module h5.rs-layer:before,
rs-module h6.rs-layer:before {
  content: none
}

rs-dotted {
  background-repeat: repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: block;
  pointer-events: none
}

rs-sbg-wrap rs-dotted {
  z-index: 31
}

rs-dotted.twoxtwo {
  background: url(../../../plugins/revslider/public/assets/assets/gridtile.png)
}

rs-dotted.twoxtwowhite {
  background: url(../../../plugins/revslider/public/assets/assets/gridtile_white.png)
}

rs-dotted.threexthree {
  background: url(../../../plugins/revslider/public/assets/assets/gridtile_3x3.png)
}

rs-dotted.threexthreewhite {
  background: url(../../../plugins/revslider/public/assets/assets/gridtile_3x3_white.png)
}

.tp-shadowcover {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  position: absolute;
  z-index: -1
}

.tp-shadow1 {
  box-shadow: 0 10px 6px -6px rgba(0, 0, 0, .8)
}

.tp-shadow2:before,
.tp-shadow2:after,
.tp-shadow3:before,
.tp-shadow4:after {
  z-index: -2;
  position: absolute;
  content: "";
  bottom: 10px;
  left: 10px;
  width: 50%;
  top: 85%;
  max-width: 300px;
  background: transparent;
  box-shadow: 0 15px 10px rgba(0, 0, 0, .8);
  transform: rotate(-3deg)
}

.tp-shadow2:after,
.tp-shadow4:after {
  transform: rotate(3deg);
  right: 10px;
  left: auto
}

.tp-shadow5 {
  position: relative;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .3), 0 0 40px rgba(0, 0, 0, .1) inset
}

.tp-shadow5:before,
.tp-shadow5:after {
  content: "";
  position: absolute;
  z-index: -2;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, .6);
  top: 30%;
  bottom: 0;
  left: 20px;
  right: 20px;
  border-radius: 100px / 20px
}

.rev-btn,
.rev-btn:visited {
  outline: none!important;
  box-shadow: none;
  text-decoration: none!important;
  box-sizing: border-box;
  cursor: pointer
}

.rev-btn.rev-uppercase,
.rev-btn.rev-uppercase:visited {
  text-transform: uppercase
}

.rev-btn i {
  font-size: inherit;
  font-weight: 400;
  position: relative;
  top: 0;
  transition: opacity 0.2s ease-out, margin 0.2s ease-out;
  margin-left: 0;
  line-height: inherit
}

.rev-btn.rev-hiddenicon i {
  font-size: inherit;
  font-weight: 400;
  position: relative;
  top: 0;
  transition: opacity 0.2s ease-out, margin 0.2s ease-out;
  opacity: 0;
  margin-left: 0px!important;
  width: 0px!important
}

.rev-btn.rev-hiddenicon:hover i {
  opacity: 1!important;
  margin-left: 10px!important;
  width: auto!important
}

.rev-burger {
  position: relative;
  box-sizing: border-box;
  padding: 22px 14px 22px 14px;
  border-radius: 50%;
  border: 1px solid rgba(51, 51, 51, .25);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  cursor: pointer
}

.rev-burger span {
  display: block;
  width: 30px;
  height: 3px;
  background: #333;
  transition: .7s;
  pointer-events: none;
  transform-style: flat!important
}

.rev-burger span:nth-child(2) {
  margin: 3px 0
}

.quick_style_example_wrap .rev-burger:hover :first-child,
#dialog_addbutton .rev-burger:hover :first-child,
.open .rev-burger :first-child,
.open.rev-burger :first-child {
  transform: translateY(6px) rotate(-45deg)
}

.quick_style_example_wrap .rev-burger:hover :nth-child(2),
#dialog_addbutton .rev-burger:hover :nth-child(2),
.open .rev-burger :nth-child(2),
.open.rev-burger :nth-child(2) {
  transform: rotate(-45deg);
  opacity: 0
}

.quick_style_example_wrap .rev-burger:hover :last-child,
#dialog_addbutton .rev-burger:hover :last-child,
.open .rev-burger :last-child,
.open.rev-burger :last-child {
  transform: translateY(-6px) rotate(-135deg)
}

.rev-burger.revb-white {
  border: 2px solid rgba(255, 255, 255, .2)
}

.rev-b-span-light span,
.rev-burger.revb-white span {
  background: #fff
}

.rev-burger.revb-whitenoborder {
  border: 0
}

.rev-burger.revb-whitenoborder span {
  background: #fff
}

.rev-burger.revb-darknoborder {
  border: 0
}

.rev-b-span-dark span,
.rev-burger.revb-darknoborder span {
  background: #333
}

.rev-burger.revb-whitefull {
  background: #fff;
  border: none
}

.rev-burger.revb-whitefull span {
  background: #333
}

.rev-burger.revb-darkfull {
  background: #333;
  border: none
}

.rev-burger.revb-darkfull span {
  background: #fff
}

@keyframes rev-ani-mouse {
  0% {
    opacity: 1;
    top: 29%
  }
  15% {
    opacity: 1;
    top: 70%
  }
  50% {
    opacity: 0;
    top: 70%
  }
  100% {
    opacity: 0;
    top: 29%
  }
}

.rev-scroll-btn {
  display: inline-block;
  position: relative;
  left: 0;
  right: 0;
  text-align: center;
  cursor: pointer;
  width: 35px;
  height: 55px;
  box-sizing: border-box;
  border: 3px solid #fff;
  border-radius: 23px
}

.rev-scroll-btn>* {
  display: inline-block;
  line-height: 18px;
  font-size: 13px;
  font-weight: 400;
  color: #7f8c8d;
  color: #fff;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 2px
}

.rev-scroll-btn>*:hover,
.rev-scroll-btn>*:focus,
.rev-scroll-btn>*.active {
  color: #fff
}

.rev-scroll-btn>*:hover,
.rev-scroll-btn>*:focus,
.rev-scroll-btn>*:active,
.rev-scroll-btn>*.active {
  opacity: .8
}

.rev-scroll-btn.revs-fullwhite {
  background: #fff
}

.rev-scroll-btn.revs-fullwhite span {
  background: #333
}

.rev-scroll-btn.revs-fulldark {
  background: #333;
  border: none
}

.rev-scroll-btn.revs-fulldark span {
  background: #fff
}

.rev-scroll-btn span {
  position: absolute;
  display: block;
  top: 29%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  animation: rev-ani-mouse 2.5s linear infinite;
  background: #fff
}

.rev-scroll-btn.rev-b-span-dark {
  border-color: #333
}

.rev-scroll-btn.rev-b-span-dark span,
.rev-scroll-btn.revs-dark span {
  background: #333
}

.rev-control-btn {
  position: relative;
  display: inline-block;
  z-index: 5;
  color: #FFF;
  font-size: 20px;
  line-height: 60px;
  font-weight: 400;
  font-style: normal;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  text-align: center;
  background-color: #000;
  border-radius: 50px;
  text-shadow: none;
  background-color: rgba(0, 0, 0, .5);
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  cursor: pointer
}

.rev-cbutton-dark-sr {
  border-radius: 3px
}

.rev-cbutton-light {
  color: #333;
  background-color: rgba(255, 255, 255, .75)
}

.rev-cbutton-light-sr {
  color: #333;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, .75)
}

.rev-sbutton {
  line-height: 37px;
  width: 37px;
  height: 37px
}

.rev-sbutton-blue {
  background-color: #3B5998
}

.rev-sbutton-lightblue {
  background-color: #00A0D1
}

.rev-sbutton-red {
  background-color: #DD4B39
}

rs-progress {
  visibility: hidden;
  position: absolute;
  z-index: 200;
  width: 100%;
  height: 100%
}

rs-progress-bar,
.rs-progress-bar {
  display: block;
  z-index: 20;
  box-sizing: border-box;
  background-clip: content-box;
  position: absolute;
  vertical-align: top;
  line-height: 0;
  width: 100%;
  height: 100%
}

rs-progress-bgs {
  display: block;
  z-index: 15;
  box-sizing: border-box;
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0
}

rs-progress-bg {
  display: block;
  background-clip: content-box;
  position: absolute;
  width: 100%;
  height: 100%
}

rs-progress-gap {
  display: block;
  background-clip: content-box;
  position: absolute;
  width: 100%;
  height: 100%
}

rs-progress-vis {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0
}

.rs-layer img {
  background: transparent;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF, endColorstr=#00FFFFFF)
}

.rs-layer.slidelink {
  cursor: pointer;
  width: 100%;
  height: 100%
}

.rs-layer.slidelink a {
  width: 100%;
  height: 100%;
  display: block
}

.rs-layer.slidelink a div {
  width: 3000px;
  height: 1500px;
  background: url(../../../plugins/revslider/public/assets/assets/coloredbg.png) repeat
}

.rs-layer.slidelink a span {
  background: url(../../../plugins/revslider/public/assets/assets/coloredbg.png) repeat;
  width: 100%;
  height: 100%;
  display: block
}

.rs-layer .rs-starring {
  display: inline-block
}

.rs-layer .rs-starring .star-rating {
  float: none;
  display: inline-block;
  vertical-align: top;
  color: #FFC321!important
}

.rs-layer .rs-starring .star-rating,
.rs-layer .rs-starring-page .star-rating {
  position: relative;
  height: 1em;
  width: 5.4em;
  font-family: star;
  font-size: 1em!important
}

.rs-layer .rs-starring .star-rating:before,
.rs-layer .rs-starring-page .star-rating:before {
  content: "\73\73\73\73\73";
  color: #E0DADF;
  float: left;
  top: 0;
  left: 0;
  position: absolute
}

.rs-layer .rs-starring .star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
  font-size: 1em!important
}

.rs-layer .rs-starring .star-rating span:before,
.rs-layer .rs-starring .star-rating span:before {
  content: "\53\53\53\53\53";
  top: 0;
  position: absolute;
  left: 0
}

rs-loader {
  top: 50%;
  left: 50%;
  z-index: 10000;
  position: absolute
}

rs-loader.off {
  display: none!important
}

rs-loader.spinner0 {
  width: 40px;
  height: 40px;
  background-color: #fff;
  background-image: url('../images/loader.gif');
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, .15);
  margin-top: -20px;
  margin-left: -20px;
  animation: tp-rotateplane 1.2s infinite ease-in-out;
  border-radius: 3px
}

rs-loader.spinner1 {
  width: 40px;
  height: 40px;
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, .15);
  margin-top: -20px;
  margin-left: -20px;
  animation: tp-rotateplane 1.2s infinite ease-in-out;
  border-radius: 3px
}

rs-loader.spinner5 {
  background-image: url(../../../plugins/revslider/public/assets/assets/loader.gif);
  background-repeat: no-repeat;
  background-position: 10px 10px;
  background-color: #fff;
  margin: -22px -22px;
  width: 44px;
  height: 44px;
  border-radius: 3px
}

@keyframes tp-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg)
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg)
  }
}

rs-loader.spinner2 {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  background-color: red;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, .15);
  border-radius: 100%;
  animation: tp-scaleout 1.0s infinite ease-in-out
}

@keyframes tp-scaleout {
  0% {
    transform: scale(0)
  }
  100% {
    transform: scale(1);
    opacity: 0
  }
}

rs-loader.spinner3 {
  margin: -9px 0 0 -35px;
  width: 70px;
  text-align: center
}

rs-loader.spinner3 .bounce1,
rs-loader.spinner3 .bounce2,
rs-loader.spinner3 .bounce3 {
  width: 18px;
  height: 18px;
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, .15);
  border-radius: 100%;
  display: inline-block;
  animation: tp-bouncedelay 1.4s infinite ease-in-out;
  animation-fill-mode: both
}

rs-loader.spinner3 .bounce1 {
  animation-delay: -0.32s
}

rs-loader.spinner3 .bounce2 {
  animation-delay: -0.16s
}

@keyframes tp-bouncedelay {
  0%,
  80%,
  100% {
    transform: scale(0)
  }
  40% {
    transform: scale(1)
  }
}

rs-loader.spinner4 {
  margin: -20px 0 0 -20px;
  width: 40px;
  height: 40px;
  text-align: center;
  animation: tp-rotate 2.0s infinite linear
}

rs-loader.spinner4 .dot1,
rs-loader.spinner4 .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #fff;
  border-radius: 100%;
  animation: tp-bounce 2.0s infinite ease-in-out;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, .15)
}

rs-loader.spinner4 .dot2 {
  top: auto;
  bottom: 0;
  animation-delay: -1.0s
}

@keyframes tp-rotate {
  100% {
    transform: rotate(360deg)
  }
}

@keyframes tp-bounce {
  0%,
  100% {
    transform: scale(0)
  }
  50% {
    transform: scale(1)
  }
}

rs-layer iframe {
  visibility: hidden
}

rs-layer.rs-ii-o iframe {
  visibility: visible
}

rs-layer input[type="text"],
rs-layer input[type="email"],
rs-layer input[type="url"],
rs-layer input[type="password"],
rs-layer input[type="search"],
rs-layer input[type="number"],
rs-layer input[type="tel"],
rs-layer input[type="range"],
rs-layer input[type="date"],
rs-layer input[type="month"],
rs-layer input[type="week"],
rs-layer input[type="time"],
rs-layer input[type="datetime"],
rs-layer input[type="datetime-local"] {
  display: inline-block
}

rs-layer input::placeholder {
  vertical-align: middle;
  line-height: inherit!important
}

a.rs-layer {
  transition: none
}

rs-thumbs-wrap,
rs-tabs-wrap,
rs-thumbs,
rs-thumb,
rs-tab,
rs-bullet,
rs-bullets,
rs-navmask,
rs-tabs,
rs-arrow {
  display: block
}

.tp-thumbs.navbar,
.tp-bullets.navbar,
.tp-tabs.navbar {
  border: none;
  min-height: 0;
  margin: 0;
  border-radius: 0
}

.tp-tabs,
.tp-thumbs,
.tp-bullets {
  position: absolute;
  display: block;
  z-index: 1000;
  top: 0;
  left: 0
}

.tp-tab,
.tp-thumb {
  cursor: pointer;
  position: absolute;
  opacity: .5;
  box-sizing: border-box
}

.tp-arr-imgholder,
rs-poster,
.tp-thumb-image,
.tp-tab-image {
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0
}

rs-poster {
  cursor: pointer;
  z-index: 3
}

.tp-tab.rs-touchhover,
.tp-tab.selected,
.tp-thumb.rs-touchhover,
.tp-thumb.selected {
  opacity: 1
}

.tp-tab-mask,
.tp-thumb-mask {
  box-sizing: border-box!important
}

.tp-tabs,
.tp-thumbs {
  box-sizing: content-box!important
}

.tp-bullet {
  width: 15px;
  height: 15px;
  position: absolute;
  background: #fff;
  background: rgba(255, 255, 255, .3);
  cursor: pointer
}

.tp-bullet.selected,
.tp-bullet.rs-touchhover {
  background: #fff
}

.tparrows {
  cursor: pointer;
  background: #000;
  background: rgba(0, 0, 0, .5);
  width: 40px;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000
}

.tparrows.rs-touchhover {
  background: #000
}

.tparrows:before {
  font-family: "revicons";
  font-size: 15px;
  color: #fff;
  display: block;
  line-height: 40px;
  text-align: center
}

.tparrows.tp-leftarrow:before {
  content: '\e824'
}

.tparrows.tp-rightarrow:before {
  content: '\e825'
}

.rs-layer [class^="pe-7s-"]:before,
.rs-layer [class*=" pe-7s-"]:before,
.rs-layer [class^="pe-7s-"],
.rs-layer [class*=" pe-7s-"] {
  width: auto;
  margin: 0;
  line-height: inherit;
  box-sizing: inherit
}

rs-pzimg-wrap {
  display: block
}

body.rtl .rs-pzimg {
  left: 0!important
}

.rs_fake_cube {
  transform-style: preserve-3d
}

.rs_fake_cube,
.rs_fake_cube_wall {
  position: absolute;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  left: 0;
  top: 0;
  z-index: 0
}

.rs-builder-mode rs-sbg-wrap canvas,
rs-sbg canvas {
  overflow: hidden;
  z-index: 5;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}

.dddwrappershadow {
  box-shadow: 0 45px 100px rgba(0, 0, 0, .4)
}

.dddwrapper {
  transform-style: flat;
  perspective: 10000px
}

.rs_error_message_box {
  background: #111;
  width: 800px;
  margin: 40px auto;
  padding: 40px 20px;
  text-align: center;
  font-family: "Open Sans", sans-serif
}

.rs_error_message_oops {
  margin: 0 0 20px;
  line-height: 60px;
  font-size: 34px;
  color: #FFF
}

.rs_error_message_content {
  margin: 0 0 20px;
  line-height: 25px;
  font-size: 17px;
  color: #FFF
}

.rs_error_message_button {
  color: #fff!important;
  background: #333;
  display: inline-block;
  padding: 10px 15px;
  text-align: right;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none!important
}

.rs_error_message_button:hover {
  background: #5e35b1
}

.hglayerinfo {
  position: fixed;
  bottom: 0;
  left: 0;
  color: #FFF;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  background: rgba(0, 0, 0, .75);
  padding: 5px 10px;
  z-index: 2000;
  white-space: normal
}

.hginfo {
  position: absolute;
  top: -2px;
  left: -2px;
  color: #e74c3c;
  font-size: 12px;
  font-weight: 600;
  background: #000;
  padding: 2px 5px
}

.indebugmode .rs-layer:hover {
  border: 1px dashed #c0392b!important
}

.helpgrid {
  border: 2px dashed #c0392b;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0
}

#revsliderlogloglog {
  padding: 15px;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 150px;
  background: rgba(0, 0, 0, .7);
  z-index: 100000;
  font-size: 10px;
  overflow: scroll
}

.aden {
  filter: hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2)
}

.aden::after {
  background: linear-gradient(to right, rgba(66, 10, 14, .2), transparent);
  mix-blend-mode: darken
}

.perpetua::after,
.reyes::after {
  mix-blend-mode: soft-light;
  opacity: .5
}

.inkwell {
  filter: sepia(.3) contrast(1.1) brightness(1.1) grayscale(1)
}

.perpetua::after {
  background: linear-gradient(to bottom, #005b9a, #e6c13d)
}

.reyes {
  filter: sepia(.22) brightness(1.1) contrast(.85) saturate(.75)
}

.reyes::after {
  background: #efcdad
}

.gingham {
  filter: brightness(1.05) hue-rotate(-10deg)
}

.gingham::after {
  background: linear-gradient(to right, rgba(66, 10, 14, .2), transparent);
  mix-blend-mode: darken
}

.toaster {
  filter: contrast(1.5) brightness(.9)
}

.toaster::after {
  background: radial-gradient(circle, #804e0f, #3b003b);
  mix-blend-mode: screen
}

.walden {
  filter: brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6)
}

.walden::after {
  background: #04c;
  mix-blend-mode: screen;
  opacity: .3
}

.hudson {
  filter: brightness(1.2) contrast(.9) saturate(1.1)
}

.hudson::after {
  background: radial-gradient(circle, #a6b1ff 50%, #342134);
  mix-blend-mode: multiply;
  opacity: .5
}

.earlybird {
  filter: contrast(.9) sepia(.2)
}

.earlybird::after {
  background: radial-gradient(circle, #d0ba8e 20%, #360309 85%, #1d0210 100%);
  mix-blend-mode: overlay
}

.mayfair {
  filter: contrast(1.1) saturate(1.1)
}

.mayfair::after {
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, .8), rgba(255, 200, 200, .6), #111 60%);
  mix-blend-mode: overlay;
  opacity: .4
}

.lofi {
  filter: saturate(1.1) contrast(1.5)
}

.lofi::after {
  background: radial-gradient(circle, transparent 70%, #222 150%);
  mix-blend-mode: multiply
}

._1977 {
  filter: contrast(1.1) brightness(1.1) saturate(1.3)
}

._1977:after {
  background: rgba(243, 106, 188, .3);
  mix-blend-mode: screen
}

.brooklyn {
  filter: contrast(.9) brightness(1.1)
}

.brooklyn::after {
  background: radial-gradient(circle, rgba(168, 223, 193, .4) 70%, #c4b7c8);
  mix-blend-mode: overlay
}

.xpro2 {
  filter: sepia(.3)
}

.xpro2::after {
  background: radial-gradient(circle, #e6e7e0 40%, rgba(43, 42, 161, .6) 110%);
  mix-blend-mode: color-burn
}

.nashville {
  filter: sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2)
}

.nashville::after {
  background: rgba(0, 70, 150, .4);
  mix-blend-mode: lighten
}

.nashville::before {
  background: rgba(247, 176, 153, .56);
  mix-blend-mode: darken
}

.lark {
  filter: contrast(.9)
}

.lark::after {
  background: rgba(242, 242, 242, .8);
  mix-blend-mode: darken
}

.lark::before {
  background: #22253f;
  mix-blend-mode: color-dodge
}

.moon {
  filter: grayscale(1) contrast(1.1) brightness(1.1)
}

.moon::before {
  background: #a0a0a0;
  mix-blend-mode: soft-light
}

.moon::after {
  background: #383838;
  mix-blend-mode: lighten
}

.clarendon {
  filter: contrast(1.2) saturate(1.35)
}

.clarendon:before {
  background: rgba(127, 187, 227, .2);
  mix-blend-mode: overlay
}

.willow {
  filter: grayscale(.5) contrast(.95) brightness(.9)
}

.willow::before {
  background-color: radial-gradient(40%, circle, #d4a9af 55%, #000 150%);
  mix-blend-mode: overlay
}

.rise {
  filter: brightness(1.05) sepia(.2) contrast(.9) saturate(.9)
}

.rise::after {
  background: radial-gradient(circle, rgba(232, 197, 152, .8), transparent 90%);
  mix-blend-mode: overlay;
  opacity: .6
}

.rise::before {
  background: radial-gradient(circle, rgba(236, 205, 169, .15) 55%, rgba(50, 30, 7, .4));
  mix-blend-mode: multiply
}

._1977:after,
._1977:before,
rs-pzimg-wrap.aden:after,
.aden:before,
.brooklyn:after,
.brooklyn:before,
.clarendon:after,
.clarendon:before,
.earlybird:after,
.earlybird:before,
.gingham:after,
.gingham:before,
.hudson:after,
.hudson:before,
.inkwell:after,
.inkwell:before,
.lark:after,
.lark:before,
.lofi:after,
.lofi:before,
.mayfair:after,
.mayfair:before,
.moon:after,
.moon:before,
.nashville:after,
.nashville:before,
.perpetua:after,
.perpetua:before,
.reyes:after,
.reyes:before,
.rise:after,
.rise:before,
.slumber:after,
.slumber:before,
.toaster:after,
.toaster:before,
.walden:after,
.walden:before,
.willow:after,
.willow:before,
.xpro2:after,
.xpro2:before {
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  pointer-events: none
}

._1977,
.aden,
.brooklyn,
.clarendon,
.earlybird,
.gingham,
.hudson,
.inkwell,
.lark,
.lofi,
.mayfair,
.moon,
.nashville,
.perpetua,
.reyes,
.rise,
.slumber,
.toaster,
.walden,
.willow,
.xpro2 {
  position: absolute
}

._1977:before,
.aden:before,
.brooklyn:before,
.clarendon:before,
.earlybird:before,
.gingham:before,
.hudson:before,
.inkwell:before,
.lark:before,
.lofi:before,
.mayfair:before,
.moon:before,
.nashville:before,
.perpetua:before,
.reyes:before,
.rise:before,
.slumber:before,
.toaster:before,
.walden:before,
.willow:before,
.xpro2:before {
  z-index: 30
}

._1977:after,
.aden:after,
.brooklyn:after,
.clarendon:after,
.earlybird:after,
.gingham:after,
.hudson:after,
.inkwell:after,
.lark:after,
.lofi:after,
.mayfair:after,
.moon:after,
.nashville:after,
.perpetua:after,
.reyes:after,
.rise:after,
.slumber:after,
.toaster:after,
.walden:after,
.willow:after,
.xpro2:after {
  z-index: 40
}

.slumber {
  filter: saturate(.66) brightness(1.05)
}

.slumber::after {
  background: rgba(125, 105, 24, .5);
  mix-blend-mode: soft-light
}

.slumber::before {
  background: rgba(69, 41, 12, .4);
  mix-blend-mode: lighten
}

.willow::after {
  background-color: #d8cdcb;
  mix-blend-mode: color
}

@media not all and (min-resolution:.001dpcm) {
  @supports (-webkit-appearance: none) {
    .willow {
      filter:grayscale(1) contrast(.95) brightness(.9)
    }
    .willow::after {
      background-color: transparent
    }
  }
}

rs-pzimg-wrap.perpetua:before,
rs-pzimg-wrap.perpetua:after,
rs-pzimg-wrap.nashville:before,
rs-pzimg-wrap.nashville:after,
rs-pzimg-wrap.xpro2:before,
rs-pzimg-wrap.xpro2:after,
rs-pzimg-wrap._1977:after,
rs-pzimg-wrap._1977:before,
rs-pzimg-wrap.aden:after,
rs-pzimg-wrap.aden:before,
rs-pzimg-wrap.brooklyn:after,
rs-pzimg-wrap.brooklyn:before,
rs-pzimg-wrap.clarendon:after,
rs-pzimg-wrap.clarendon:before,
rs-pzimg-wrap.earlybird:after,
rs-pzimg-wrap.earlybird:before,
rs-pzimg-wrap.gingham:after,
rs-pzimg-wrap.gingham:before,
rs-pzimg-wrap.hudson:after,
rs-pzimg-wrap.hudson:before,
rs-pzimg-wrap.inkwell:after,
rs-pzimg-wrap.inkwell:before,
rs-pzimg-wrap.lark:after,
rs-pzimg-wrap.lark:before,
rs-pzimg-wrap.lofi:after,
rs-pzimg-wrap.lofi:before,
rs-pzimg-wrap.mayfair:after,
rs-pzimg-wrap.mayfair:before,
rs-pzimg-wrap.moon:after,
rs-pzimg-wrap.moon:before,
rs-pzimg-wrap.reyes:after,
rs-pzimg-wrap.reyes:before,
rs-pzimg-wrap.rise:after,
rs-pzimg-wrap.rise:before,
rs-pzimg-wrap.slumber:after,
rs-pzimg-wrap.slumber:before,
rs-pzimg-wrap.toaster:after,
rs-pzimg-wrap.toaster:before,
rs-pzimg-wrap.walden:after,
rs-pzimg-wrap.walden:before,
rs-pzimg-wrap.willow:after,
rs-pzimg-wrap.willow:before,
rs-pzimg-wrap:before,
rs-pzimg-wrap:after {
  height: 500%;
  width: 500%
}

rs-loader.spinner6 {
  width: 40px;
  height: 40px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

rs-loader.spinner6 .rs-spinner-inner {
  width: 100%;
  height: 100%;
  display: inline-block;
  -webkit-animation: rs-revealer-6 1.4s linear infinite;
  animation: rs-revealer-6 1.4s linear infinite
}

rs-loader.spinner6 .rs-spinner-inner span {
  position: absolute;
  vertical-align: top;
  border-radius: 100%;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 16px;
  transform-origin: center 20px;
  -webkit-transform-origin: center 20px
}

rs-loader.spinner6 .rs-spinner-inner span:nth-child(2) {
  transform: rotate(36deg);
  -webkit-transform: rotate(36deg);
  opacity: .1
}

rs-loader.spinner6 .rs-spinner-inner span:nth-child(3) {
  transform: rotate(72deg);
  -webkit-transform: rotate(72deg);
  opacity: .2
}

rs-loader.spinner6 .rs-spinner-inner span:nth-child(4) {
  transform: rotate(108deg);
  -webkit-transform: rotate(108deg);
  opacity: .3
}

rs-loader.spinner6 .rs-spinner-inner span:nth-child(5) {
  transform: rotate(144deg);
  -webkit-transform: rotate(144deg);
  opacity: .4
}

rs-loader.spinner6 .rs-spinner-inner span:nth-child(6) {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  opacity: .5
}

rs-loader.spinner6 .rs-spinner-inner span:nth-child(7) {
  transform: rotate(216deg);
  -webkit-transform: rotate(216deg);
  opacity: .6
}

rs-loader.spinner6 .rs-spinner-inner span:nth-child(8) {
  transform: rotate(252deg);
  -webkit-transform: rotate(252deg);
  opacity: .7
}

rs-loader.spinner6 .rs-spinner-inner span:nth-child(9) {
  transform: rotate(288deg);
  -webkit-transform: rotate(288deg);
  opacity: .8
}

rs-loader.spinner6 .rs-spinner-inner span:nth-child(10) {
  transform: rotate(324deg);
  -webkit-transform: rotate(324deg);
  opacity: .9
}

@keyframes rs-revealer-6 {
  from {
    transform: rotate(0)
  }
  to {
    transform: rotate(360deg)
  }
}

@-webkit-keyframes rs-revealer-6 {
  from {
    -webkit-transform: rotate(0)
  }
  to {
    -webkit-transform: rotate(360deg)
  }
}

rs-loader.spinner7 {
  width: 35px;
  height: 35px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

rs-loader.spinner7 .rs-spinner-inner {
  width: 100%;
  height: 100%;
  display: inline-block;
  padding: 0;
  border-radius: 100%;
  border: 2px solid;
  -webkit-animation: rs-revealer-7 .8s linear infinite;
  animation: rs-revealer-7 .8s linear infinite
}

@keyframes rs-revealer-7 {
  from {
    transform: rotate(0)
  }
  to {
    transform: rotate(360deg)
  }
}

@-webkit-keyframes rs-revealer-7 {
  from {
    -webkit-transform: rotate(0)
  }
  to {
    -webkit-transform: rotate(360deg)
  }
}

rs-loader.spinner8 {
  width: 50px;
  height: 50px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

rs-loader.spinner8 .rs-spinner-inner {
  width: 100%;
  height: 100%;
  display: inline-block;
  padding: 0;
  text-align: left
}

rs-loader.spinner8 .rs-spinner-inner span {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  -webkit-animation: rs-revealer-8 1.6s linear infinite;
  animation: rs-revealer-8 1.6s linear infinite
}

rs-loader.spinner8 .rs-spinner-inner span:last-child {
  animation-delay: -.8s;
  -webkit-animation-delay: -.8s
}

@keyframes rs-revealer-8 {
  0% {
    transform: scale(0, 0);
    opacity: .5
  }
  100% {
    transform: scale(1, 1);
    opacity: 0
  }
}

@-webkit-keyframes rs-revealer-8 {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: .5
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0
  }
}

rs-loader.spinner9 {
  width: 40px;
  height: 40px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

rs-loader.spinner9 .rs-spinner-inner span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: .6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: rs-revealer-9 2s infinite ease-in-out;
  animation: rs-revealer-9 2s infinite ease-in-out
}

rs-loader.spinner9 .rs-spinner-inner span:last-child {
  -webkit-animation-delay: -1s;
  animation-delay: -1s
}

@-webkit-keyframes rs-revealer-9 {
  0%,
  100% {
    -webkit-transform: scale(0)
  }
  50% {
    -webkit-transform: scale(1)
  }
}

@keyframes rs-revealer-9 {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0)
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1)
  }
}

rs-loader.spinner10 {
  width: 54px;
  height: 40px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

rs-loader.spinner10 .rs-spinner-inner {
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 10px
}

rs-loader.spinner10 .rs-spinner-inner span {
  display: block;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: rs-revealer-10 1.2s infinite ease-in-out;
  animation: rs-revealer-10 1.2s infinite ease-in-out
}

rs-loader.spinner10 .rs-spinner-inner span:nth-child(2) {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s
}

rs-loader.spinner10 .rs-spinner-inner span:nth-child(3) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s
}

rs-loader.spinner10 .rs-spinner-inner span:nth-child(4) {
  -webkit-animation-delay: -.9s;
  animation-delay: -.9s
}

rs-loader.spinner10 .rs-spinner-inner span:nth-child(5) {
  -webkit-animation-delay: -.8s;
  animation-delay: -.8s
}

@-webkit-keyframes rs-revealer-10 {
  0%,
  100%,
  40% {
    -webkit-transform: scaleY(.4)
  }
  20% {
    -webkit-transform: scaleY(1)
  }
}

@keyframes rs-revealer-10 {
  0%,
  100%,
  40% {
    transform: scaleY(.4);
    -webkit-transform: scaleY(.4)
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1)
  }
}

rs-loader.spinner11 {
  width: 40px;
  height: 40px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

rs-loader.spinner11 .rs-spinner-inner {
  width: 100%;
  height: 100%
}

rs-loader.spinner11 .rs-spinner-inner span {
  display: block;
  width: 33%;
  height: 33%;
  background-color: #333;
  float: left;
  -webkit-animation: rs-revealer-11 1.3s infinite ease-in-out;
  animation: rs-revealer-11 1.3s infinite ease-in-out
}

rs-loader.spinner11 .rs-spinner-inner span:nth-child(1) {
  -webkit-animation-delay: .2s;
  animation-delay: .2s
}

rs-loader.spinner11 .rs-spinner-inner span:nth-child(2) {
  -webkit-animation-delay: .3s;
  animation-delay: .3s
}

rs-loader.spinner11 .rs-spinner-inner span:nth-child(3) {
  -webkit-animation-delay: .4s;
  animation-delay: .4s
}

rs-loader.spinner11 .rs-spinner-inner span:nth-child(4) {
  -webkit-animation-delay: .1s;
  animation-delay: .1s
}

rs-loader.spinner11 .rs-spinner-inner span:nth-child(5) {
  -webkit-animation-delay: .2s;
  animation-delay: .2s
}

rs-loader.spinner11 .rs-spinner-inner span:nth-child(6) {
  -webkit-animation-delay: .3s;
  animation-delay: .3s
}

rs-loader.spinner11 .rs-spinner-inner span:nth-child(7) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s
}

rs-loader.spinner11 .rs-spinner-inner span:nth-child(8) {
  -webkit-animation-delay: .1s;
  animation-delay: .1s
}

rs-loader.spinner11 .rs-spinner-inner span:nth-child(9) {
  -webkit-animation-delay: .2s;
  animation-delay: .2s
}

@-webkit-keyframes rs-revealer-11 {
  0%,
  100%,
  70% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1)
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1)
  }
}

@keyframes rs-revealer-11 {
  0%,
  100%,
  70% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1)
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1)
  }
}

rs-loader.spinner12 {
  width: 35px;
  height: 35px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

rs-loader.spinner12 .rs-spinner-inner {
  width: 100%;
  height: 100%;
  -webkit-animation: rs-revealer-12 1s infinite linear;
  animation: rs-revealer-12 1s infinite linear
}

@-webkit-keyframes rs-revealer-12 {
  0% {
    -webkit-transform: rotate(0)
  }
  100% {
    -webkit-transform: rotate(360deg)
  }
}

@keyframes rs-revealer-12 {
  0% {
    transform: rotate(0)
  }
  100% {
    transform: rotate(360deg)
  }
}

rs-loader.spinner13 {
  width: 40px;
  height: 40px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

rs-loader.spinner13 .rs-spinner-inner {
  width: 100%;
  height: 100%
}

rs-loader.spinner13 .rs-spinner-inner span {
  display: block;
  width: 40%;
  height: 40%;
  position: absolute;
  border-radius: 50%;
  -webkit-animation: rs-revealer-13 2s ease infinite;
  animation: rs-revealer-13 2s ease infinite
}

rs-loader.spinner13 .rs-spinner-inner span:nth-child(1) {
  animation-delay: -1.5s;
  -webkit-animation-delay: -1.5s
}

rs-loader.spinner13 .rs-spinner-inner span:nth-child(2) {
  animation-delay: -1s;
  -webkit-animation-delay: -1s
}

rs-loader.spinner13 .rs-spinner-inner span:nth-child(3) {
  animation-delay: -.5s;
  -webkit-animation-delay: -.5s
}

@keyframes rs-revealer-13 {
  0%,
  100% {
    transform: translate(0)
  }
  25% {
    transform: translate(160%)
  }
  50% {
    transform: translate(160%, 160%)
  }
  75% {
    transform: translate(0, 160%)
  }
}

@-webkit-keyframes rs-revealer-13 {
  0%,
  100% {
    -webkit-transform: translate(0)
  }
  25% {
    -webkit-transform: translate(160%)
  }
  50% {
    -webkit-transform: translate(160%, 160%)
  }
  75% {
    -webkit-transform: translate(0, 160%)
  }
}

rs-loader.spinner14 {
  width: 40px;
  height: 40px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

rs-loader.spinner14 .rs-spinner-inner {
  width: 100%;
  height: 100%;
  animation: rs-revealer-14 1s infinite linear
}

rs-loader.spinner14 .rs-spinner-inner span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin: -8px
}

rs-loader.spinner14 .rs-spinner-inner span:nth-child(1) {
  -webkit-animation: rs-revealer-14-1 2s infinite;
  animation: rs-revealer-14-1 2s infinite
}

rs-loader.spinner14 .rs-spinner-inner span:nth-child(2) {
  -webkit-animation: rs-revealer-14-2 2s infinite;
  animation: rs-revealer-14-2 2s infinite
}

rs-loader.spinner14 .rs-spinner-inner span:nth-child(3) {
  -webkit-animation: rs-revealer-14-3 2s infinite;
  animation: rs-revealer-14-3 2s infinite
}

rs-loader.spinner14 .rs-spinner-inner span:nth-child(4) {
  -webkit-animation: rs-revealer-14-4 2s infinite;
  animation: rs-revealer-14-4 2s infinite
}

@-webkit-keyframes rs-revealer-14-1 {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0)
  }
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg) translate3d(80%, 80%, 0)
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg) translate3d(80%, 80%, 0)
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg) translate3d(0, 0, 0)
  }
}

@-webkit-keyframes rs-revealer-14-2 {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0)
  }
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg) translate3d(80%, -80%, 0)
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg) translate3d(80%, -80%, 0)
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg) translate3d(0, 0, 0)
  }
}

@-webkit-keyframes rs-revealer-14-3 {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0)
  }
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg) translate3d(-80%, -80%, 0)
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg) translate3d(-80%, -80%, 0)
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg) translate3d(0, 0, 0)
  }
}

@-webkit-keyframes rs-revealer-14-4 {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0)
  }
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg) translate3d(-80%, 80%, 0)
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg) translate3d(-80%, 80%, 0)
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg) translate3d(0, 0, 0)
  }
}

@keyframes rs-revealer-14-1 {
  0% {
    transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0)
  }
  20% {
    transform: rotate3d(0, 0, 1, 0deg) translate3d(80%, 80%, 0)
  }
  80% {
    transform: rotate3d(0, 0, 1, 360deg) translate3d(80%, 80%, 0)
  }
  100% {
    transform: rotate3d(0, 0, 1, 360deg) translate3d(0, 0, 0)
  }
}

@keyframes rs-revealer-14-2 {
  0% {
    transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0)
  }
  20% {
    transform: rotate3d(0, 0, 1, 0deg) translate3d(80%, -80%, 0)
  }
  80% {
    transform: rotate3d(0, 0, 1, 360deg) translate3d(80%, -80%, 0)
  }
  100% {
    transform: rotate3d(0, 0, 1, 360deg) translate3d(0, 0, 0)
  }
}

@keyframes rs-revealer-14-3 {
  0% {
    transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0)
  }
  20% {
    transform: rotate3d(0, 0, 1, 0deg) translate3d(-80%, -80%, 0)
  }
  80% {
    transform: rotate3d(0, 0, 1, 360deg) translate3d(-80%, -80%, 0)
  }
  100% {
    transform: rotate3d(0, 0, 1, 360deg) translate3d(0, 0, 0)
  }
}

@keyframes rs-revealer-14-4 {
  0% {
    transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0)
  }
  20% {
    transform: rotate3d(0, 0, 1, 0deg) translate3d(-80%, 80%, 0)
  }
  80% {
    transform: rotate3d(0, 0, 1, 360deg) translate3d(-80%, 80%, 0)
  }
  100% {
    transform: rotate3d(0, 0, 1, 360deg) translate3d(0, 0, 0)
  }
}

rs-loader.spinner15 {
  width: 40px;
  height: 40px;
  margin-top: -4px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

rs-loader.spinner15 .rs-spinner-inner {
  width: 100%;
  height: 100%
}

rs-loader.spinner15 .rs-spinner-inner span {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: rs-revealer-15 1.8s infinite ease-in-out;
  animation: rs-revealer-15 1.8s infinite ease-in-out
}

rs-loader.spinner15 .rs-spinner-inner:last-child {
  -webkit-animation-delay: -.9s;
  animation-delay: -.9s
}

@-webkit-keyframes rs-revealer-15 {
  25% {
    -webkit-transform: translateX(30px) rotate(-90deg) scale(.5)
  }
  50% {
    -webkit-transform: translateX(30px) translateY(30px) rotate(-180deg)
  }
  75% {
    -webkit-transform: translateX(0) translateY(30px) rotate(-270deg) scale(.5)
  }
  100% {
    -webkit-transform: rotate(-360deg)
  }
}

@keyframes rs-revealer-15 {
  25% {
    transform: translateX(30px) rotate(-90deg) scale(.5);
    -webkit-transform: translateX(30px) rotate(-90deg) scale(.5)
  }
  50% {
    transform: translateX(30px) translateY(30px) rotate(-179deg);
    -webkit-transform: translateX(30px) translateY(30px) rotate(-179deg)
  }
  50.1% {
    transform: translateX(30px) translateY(30px) rotate(-180deg);
    -webkit-transform: translateX(30px) translateY(30px) rotate(-180deg)
  }
  75% {
    transform: translateX(0) translateY(30px) rotate(-270deg) scale(.5);
    -webkit-transform: translateX(0) translateY(30px) rotate(-270deg) scale(.5)
  }
  100% {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg)
  }
}

.bgcanvas {
  display: none;
  position: absolute;
  overflow: hidden
}

.RSscrollbar-measure {
  width: 100px;
  height: 100px;
  overflow: scroll;
  position: absolute;
  top: -9999px
}

.avada-has-rev-slider-styles .rev_slider_wrapper {
  transform: none
}
