/* -------------------------------------------------------------------------------- */
/* VARIABLES ---------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
/* SCSS FUNCTIONS / MIXINS -------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
/* this can be used for all headings and with class .h1 to .h6 */
/* -------------------------------------------------------------------------------- */
/* ASPECT RATIO ------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
.aspect-ratio-1-1 {
  position: relative;
}
.aspect-ratio-1-1:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 100%;
}
.aspect-ratio-1-1 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.aspect-ratio-16-9 {
  position: relative;
}
.aspect-ratio-16-9:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 56.25%;
}
.aspect-ratio-16-9 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.aspect-ratio-4-3 {
  position: relative;
}
.aspect-ratio-4-3:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 75%;
}
.aspect-ratio-4-3 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.aspect-ratio-2-1 {
  position: relative;
}
.aspect-ratio-2-1:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 50%;
}
.aspect-ratio-2-1 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.aspect-ratio-3-1 {
  position: relative;
}
.aspect-ratio-3-1:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 50%;
}
.aspect-ratio-3-1 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.aspect-ratio-4-1 {
  position: relative;
}
.aspect-ratio-4-1:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 50%;
}
.aspect-ratio-4-1 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* -------------------------------------------------------------------------------- */
/* FIXES -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
.ie9 img[src$=".svg"] {
  width: 100%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  img[src$=".svg"] {
    width: 100%;
  }
}
/* fixes for Font Awesome 5 in ::before and ::after elements */
.fa-icon::before,
.fa-icon::after,
.select2-selection__arrow::before,
.select2-selection__arrow::after,
.search-button-holder::after {
  display: none;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 2px;
  width: 50px;
}

/* -------------------------------------------------------------------------------- */
/* ADMIN BAR FIX ------------------------------------------------------------------ */
/* -------------------------------------------------------------------------------- */
body.admin-bar .navbar-fixed-top,
body.admin-bar .sidebar,
body.admin-bar .main-header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .navbar-fixed-top,
body.admin-bar .sidebar,
body.admin-bar .main-header {
    top: 46px;
  }
}
body.admin-bar #wpadminbar {
  position: fixed;
}
body.admin-bar .select2-dropdown {
  top: 32px !important;
}
@media (max-width: 767px) {
  body.admin-bar .select2-dropdown {
    top: 46px !important;
  }
}

/* PLACEHOLDER -------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
::-webkit-input-placeholder {
  color: #FFFFFF !important;
  font-style: italic;
}

:-ms-input-placeholder {
  color: #FFFFFF !important;
  font-style: italic;
}

::-ms-input-placeholder {
  color: #FFFFFF !important;
  font-style: italic;
}

::-moz-placeholder {
  color: #FFFFFF !important;
  font-style: italic;
}

::placeholder {
  color: #FFFFFF !important;
  font-style: italic;
}

/* -------------------------------------------------------------------------------- */
/* DEBUGGING --------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
pre {
  display: block;
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #78FF5B;
  background: #23282d;
  text-shadow: 1px 1px 0 #000;
  font-family: Consolas, monospace;
  font-size: 14px;
  margin: 0;
  padding: 5px;
  display: block;
  line-height: 16px;
  text-align: left;
  max-height: 500px;
}
pre * {
  color: inherit !important;
  font-family: inherit !important;
}

/* ---------------------------------------------------------------------------------------------------- */
/* YE OLDE FLEX CLASSES ------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
.flexize {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flexize .row {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 1199px) {
  .flexize.container {
    width: 100%;
  }
}

.flexize-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: auto !important;
}

.flexize-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 768px) {
  .flexize-half {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flexize-half .row {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

.flexize-grow {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flexize-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .row.big-challenge {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .row.big-challenge .impression {
    margin-bottom: 30px;
  }
  .row.big-challenge .margin-bottom {
    margin-bottom: 0;
  }
}

/* -------------------------------------------------------------------------------- */
/* ANIMATIONS --------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
@-webkit-keyframes iconSlideDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }
  51% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes iconSlideDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }
  51% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes iconSlideRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }
  51% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes iconSlideRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }
  51% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes iconScale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  33.33333% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
  66.66666% {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes iconScale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  33.33333% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
  66.66666% {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* -------------------------------------------------------------------------------- */
/* FONT FAMILIES ------------------------------------------------------------------ */
/* -------------------------------------------------------------------------------- */
@font-face {
  font-family: Inknut-Antiqua;
  src: url("../../fonts/InknutAntiqua-Light.ttf");
}
@font-face {
  font-family: Reforma-Blanca;
  src: url("../../fonts/Reforma2018-Blanca.otf");
  font-style: normal;
}
@font-face {
  font-family: Reforma-Blanca;
  src: url("../../fonts/Reforma2018-BlancaItalica.otf");
  font-style: italic;
}
@font-face {
  font-family: Reforma-Gris;
  src: url("../../fonts/Reforma2018-Gris.otf");
  font-style: normal;
}
@font-face {
  font-family: Reforma-Gris;
  src: url("../../fonts/Reforma2018-GrisItalica.otf");
  font-style: italic;
}
@font-face {
  font-family: Reforma-Negra;
  src: url("../../fonts/Reforma2018-Negra.otf");
  font-style: normal;
}
@font-face {
  font-family: Reforma-Negra;
  src: url("../../fonts/Reforma2018-NegraItalica.otf");
  font-style: italic;
}
@font-face {
  font-family: "StudioFigments-icon";
  src: url("../../fonts/iconfont/fonts/StudioFigments-icon.eot");
  src: url("../../fonts/iconfont/fonts/StudioFigments-icon.eot?#iefix") format("embedded-opentype"), url("../../fonts/iconfont/fonts/StudioFigments-icon.woff") format("woff"), url("../../iconfont/fonts/StudioFigments-icon.ttf") format("truetype"), url("../../iconfont/fonts/StudioFigments-icon.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[data-icon]:before {
  font-family: "StudioFigments-icon";
  content: attr(data-icon);
  speak: none;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

/* -------------------------------------------------------------------------------- */
/* MAIN STYLES -------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
*,
*:after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-color);
  font-family: Reforma-Blanca;
  background-color: var(--dark-color);
  font-size: 21px;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: Inknut-Antiqua;
  font-style: normal;
  font-stretch: normal;
  font-weight: 300;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  display: block;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
h1.inline,
h2.inline,
h3.inline,
h4.inline,
h5.inline,
h6.inline,
.h1.inline,
.h2.inline,
.h3.inline,
.h4.inline,
.h5.inline,
.h6.inline {
  display: inline-block;
}

h1,
.h1 {
  font-size: 54px;
  line-height: 1.48;
  letter-spacing: 5px;
}
h1.section-title,
.h1.section-title {
  margin-bottom: 80px;
  line-height: 1;
}

h2,
.h2 {
  font-size: 46px;
  line-height: 1.48;
  letter-spacing: 5px;
}

h3,
.h3 {
  font-size: 36px;
  line-height: 1.56;
  letter-spacing: 5px;
}

h4,
.h4 {
  font-size: 26px;
  line-height: 1.46;
  letter-spacing: 4px;
}

h5,
.h5 {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 4px;
}

h6,
.h6 {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 3.2px;
}

@media (max-width: 1199px) {
  h1,
.h1 {
    font-size: 40px;
  }
  h1 *,
.h1 * {
    font-size: inherit !important;
  }

  h2,
.h2 {
    font-size: 32px;
  }
  h2 *,
.h2 * {
    font-size: inherit !important;
  }

  h3,
.h3 {
    font-size: 26px;
  }
  h3 *,
.h3 * {
    font-size: inherit !important;
  }

  h4,
.h4 {
    font-size: 20px;
  }
  h4 *,
.h4 * {
    font-size: inherit !important;
  }

  h5,
.h5 {
    font-size: 18px;
  }
  h5 *,
.h5 * {
    font-size: inherit !important;
  }

  h6,
.h6 {
    font-size: 16px;
  }
  h6 *,
.h6 * {
    font-size: inherit !important;
  }
}
@media (max-width: 767px) {
  h1,
.h1 {
    font-size: 42px;
  }
  h1 *,
.h1 * {
    font-size: inherit !important;
  }

  h2,
.h2 {
    font-size: 36px;
  }
  h2 *,
.h2 * {
    font-size: inherit !important;
  }

  h3,
.h3 {
    font-size: 22px;
  }
  h3 *,
.h3 * {
    font-size: inherit !important;
  }

  h4,
.h4 {
    font-size: 20px;
  }
  h4 *,
.h4 * {
    font-size: inherit !important;
  }

  h5,
.h5 {
    font-size: 18px;
  }
  h5 *,
.h5 * {
    font-size: inherit !important;
  }

  h6,
.h6 {
    font-size: 16px;
  }
  h6 *,
.h6 * {
    font-size: inherit !important;
  }
}
a {
  color: var(--greyish-teal-color);
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
a:hover, a:active, a:focus {
  color: #FFFFFF;
  text-decoration: none;
}

.text-muted {
  color: var(--greyish-teal-color) !important;
}

.woocommerce-form__label-for-checkbox {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}
.woocommerce-form__label-for-checkbox input {
  margin-right: 10px;
}

.woocommerce-loop-product__title,
.product-name {
  font-family: Reforma-Blanca;
  letter-spacing: normal;
  line-height: 1.42;
  text-transform: none;
  font-weight: normal;
  font-size: 24px !important;
}

.sidebar-title {
  font-family: InknutAntiqua;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

section.sidebar-section {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  section.sidebar-section:first-child {
    padding-top: 1em;
    border-top: 5px solid white;
  }
}
@media (min-width: 992px) {
  section.sidebar-section:last-child {
    margin-bottom: 0;
  }
}
section.sidebar-section .btn-container .btn {
  margin-bottom: 10px;
}
section.sidebar-section .btn-container .btn:last-child {
  margin-bottom: 0px;
}

p + .btn {
  margin-top: 30px;
}
p.intro {
  font-size: 26px;
  line-height: 1.62;
  margin-bottom: 30px;
}

hr {
  display: block;
  border: 0;
  outline: 0;
  height: 1px;
  width: 100%;
  background-color: #DEE1E0;
  margin: 100px 0;
}
hr.small-margin {
  margin: 25px 0;
}
hr.dashed {
  margin: 0 15px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(33%, #fff), color-stop(0%, rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(left, #fff 33%, rgba(255, 255, 255, 0) 0%);
  background-image: -o-linear-gradient(left, #fff 33%, rgba(255, 255, 255, 0) 0%);
  background-image: linear-gradient(to right, #fff 33%, rgba(255, 255, 255, 0) 0%);
  background-position: center;
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-color: transparent;
  height: 10px;
}

blockquote {
  position: relative;
  font-size: 32px;
  font-weight: normal;
  font-style: italic;
  line-height: 1.75;
  letter-spacing: normal;
  text-align: center;
  padding: 40px 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
blockquote:before {
  content: url("../../img/blockquote.svg");
  display: block;
  width: 60px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  margin: 0 auto;
}
blockquote:after {
  content: url("../../img/blockquote.svg");
  display: block;
  width: 60px;
  margin: 0 auto;
}
blockquote p {
  margin-top: 10px;
}
blockquote footer {
  font-size: 18px;
  font-style: normal;
  letter-spacing: 4.3px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  blockquote {
    font-size: 1.5rem;
    padding: 40px;
  }
}
@media (max-width: 575px) {
  blockquote {
    padding: 40px 0;
  }
}

table {
  width: 100%;
  table-layout: fixed;
}
table.reservation .img-container {
  width: 150px;
  margin-right: 30px;
}
table.reservation tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
table.reservation tr:last-child {
  margin-bottom: 0;
}
table.reservation tr td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
table.reservation tr td:nth-child(2) {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
table.reservation tr td span {
  display: block;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
}

.no-padding {
  padding: 0;
}

.margin-bottom {
  margin-bottom: 200px;
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  max-width: 1680px;
}

main {
  /* padding: 80px 0;*/
}
body.home main {
  /* padding-top: 0;*/
}

main section {
  margin-bottom: 150px;
  position: relative;
  margin-bottom: 100px;
}
main section .section-inner-container {
  /*padding: 120px 0;*/
  /*margin-bottom: 120px;*/
}
main section:nth-child(even) {
  /*background-color: rgba(255, 255, 255, 0.1);*/
}
main section.background-pattern:after {
  content: "";
  position: absolute;
  height: 300px;
  width: 100%;
  background-image: var(--pattern);
  z-index: -1;
  opacity: 0.15;
  right: 0;
  bottom: 10%;
  display: block;
  -webkit-transform: translate(calc((100vw - 1650px) / 2), 40%);
  -ms-transform: translate(calc((100vw - 1650px) / 2), 40%);
  transform: translate(calc((100vw - 1650px) / 2), 40%);
  pointer-events: none;
}

.main-container {
  position: relative;
}
.main-container:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  z-index: -1;
  opacity: 0.15;
  height: 300px;
  display: block;
  -webkit-clip-path: polygon(0 0, 70% 0, 100% 100%, 0 70%);
  clip-path: polygon(0 0, 70% 0, 100% 100%, 0 70%);
  background-image: var(--pattern);
}

.background-pattern-element {
  height: 500px;
  position: absolute;
  z-index: -1;
  opacity: 0.3;
  display: block;
  background-image: var(--pattern);
}
.background-pattern-element.background-pattern-top-right {
  width: 300px;
  -webkit-clip-path: polygon(42.5% 0, 100% 0, 100% 100%);
  clip-path: polygon(42.5% 0, 100% 0, 100% 100%);
  top: 0px;
  left: auto;
  right: 0;
  bottom: auto;
}
.background-pattern-element.background-pattern-bottom-right {
  width: 380px;
  -webkit-clip-path: polygon(42.5% 100%, 100% 0, 100% 100%);
  clip-path: polygon(42.5% 100%, 100% 0, 100% 100%);
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
}

.select2-container--default .select2-selection {
  height: 1.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: transparent;
  position: relative;
}
.select2-container--default .select2-selection--single {
  border-radius: 0;
  border: 1px solid white;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: white;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}
.select2-container--default .select2-selection--single .select2-selection__arrow [role=presentation] {
  border-color: white transparent transparent !important;
}
.select2-container--default.select2-container--open .select2-selection__arrow [role=presentation] {
  border-color: transparent transparent white !important;
}
.select2-container {
  color: var(--dark-color);
}

body.body-inverted .select2-container--default .select2-selection--single {
  border-color: var(--dark-color);
}
body.body-inverted .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--dark-color);
}
body.body-inverted .select2-container--default .select2-selection--single .select2-selection__arrow [role=presentation] {
  border-top-color: var(--dark-color) !important;
}
body.body-inverted .select2-container--default.select2-container--open .select2-selection__arrow [role=presentation] {
  border-color: transparent transparent var(--dark-color) !important;
}

/* -------------------------------------------------------------------------------- */
/* ACOUNT ------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
section.account {
  margin: 0;
  border-bottom: 1px solid #DEE1E0;
}
section.account:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
section.account .welcome h2,
section.account .welcome .h2,
section.account .welcome h3,
section.account .welcome .h3,
section.account .welcome h4,
section.account .welcome .h4,
section.account .welcome h5,
section.account .welcome .h5,
section.account .welcome h6,
section.account .welcome .h6 {
  margin: 0px;
}
section.account .welcome h2,
section.account .welcome .h2 {
  font-family: Inknut-Antiqua;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.48;
  letter-spacing: 13px;
}
section.account .welcome h3,
section.account .welcome .h3 {
  font-family: Reforma-Blanca;
  font-size: 32px;
  font-weight: normal;
  font-style: italic;
  line-height: 1.56;
  letter-spacing: normal;
  text-transform: none;
}

/* -------------------------------------------------------------------------------- */
/* SECTION TEXTPAGE --------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
section.textpage h2,
section.textpage h3,
section.textpage h4,
section.textpage h5,
section.textpage h6 {
  margin-top: 80px;
}
section.textpage ul:not(.blocks-gallery-grid),
section.textpage ol:not(.blocks-gallery-grid) {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
}
section.textpage ul:not(.blocks-gallery-grid) li,
section.textpage ol:not(.blocks-gallery-grid) li {
  margin-bottom: 10px;
}
section.textpage ul:not(.blocks-gallery-grid) li:last-child,
section.textpage ol:not(.blocks-gallery-grid) li:last-child {
  margin-bottom: 0;
}
section.textpage ul:not(.blocks-gallery-grid) li:before {
  content: "\e931";
  font-family: "StudioFigments-icon";
  font-size: 16px;
  width: 30px;
  display: inline-block;
  text-align: center;
}
section.textpage ol {
  counter-reset: ol;
}
section.textpage ol li {
  counter-increment: ol;
}
section.textpage ol li:before {
  content: counter(ol);
  font-family: "StudioFigments-icon";
  font-family: Reforma-Grisa;
  font-style: italic;
  width: 30px;
  display: inline-block;
  text-align: center;
}

.classic-editor-post-content figure {
  margin-bottom: 80px;
}
.classic-editor-post-content figure figcaption {
  position: relative;
  padding-left: 45px;
  font-size: 16px;
  color: #DEE1E0;
  padding-top: 10px;
}
.classic-editor-post-content figure figcaption:before {
  content: "";
  display: block;
  width: 1px;
  height: 200%;
  background: #FFFFFF;
  position: absolute;
  top: -100%;
  left: 30px;
}

.block-editor-post main {
  margin-top: 3em;
}

#baguetteBox-overlay button:hover svg polyline {
  stroke: var(--dark-color);
}
#baguetteBox-overlay figcaption {
  padding: 15px;
}

/* -------------------------------------------------------------------------------- */
/* SECTION HOME HEADER ------------------------------------------------------------ */
/* -------------------------------------------------------------------------------- */
section.home-header .image-container {
  margin-left: -100%;
}
@media (min-width: 768px) {
  section.home-header .image-container {
    margin-left: -50%;
  }
}
@media (min-width: 1200px) {
  section.home-header .image-container {
    margin-left: -16.6666666667%;
  }
}
section.home-header .quote-image-row {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
section.home-header .quote-image-row .impression {
  min-height: 210px;
}
section.home-header .impression {
  /* what's this for?*/
  /* it's not working responsively*/
  /* width: calc(100% + ((100vw - 1650px) / 2));*/
  width: 100%;
  height: 70vmin;
}
section.home-header .impression:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--dark-color);
  opacity: 0.25;
}
@media (max-width: 767px) {
  section.home-header .impression {
    height: auto;
  }
}
section.home-header .overlap-quote {
  z-index: 1;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
section.home-header .overlap-quote h1 {
  font-size: calc(14px + 2vw);
}
@media (max-width: 991px) {
  section.home-header .overlap-quote {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  section.home-header .overlap-quote h1 {
    font-size: calc(14px + 1.5vw);
  }
}
section.home-header .featured-artwork {
  background-image: url("../../img/category-image.jpg");
}

section.home-header-alt {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  max-height: 80vh;
  will-change: auto;
}
section.home-header-alt * {
  will-change: auto;
}
@media (max-width: 767px) {
  section.home-header-alt {
    flex-wrap: wrap;
    flex-direction: column;
    max-height: unset;
  }
}
section.home-header-alt .home-header-alt-image {
  transition: 0.5s ease-in-out;
  flex-wrap: nowrap;
  position: relative;
  width: 80%;
  flex-shrink: 0;
  color: white;
  font-weight: 500;
}
section.home-header-alt .home-header-alt-image .home-header-alt-image-link {
  color: white;
}
section.home-header-alt .home-header-alt-image .home-header-alt-image-content {
  transition: 0.5s ease-in-out;
}
section.home-header-alt .home-header-alt-image .home-header-alt-image-content h2 {
  text-align: center !important;
}
section.home-header-alt .home-header-alt-image .home-header-alt-image-content h2,
section.home-header-alt .home-header-alt-image .home-header-alt-image-content p {
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.35);
}
section.home-header-alt .home-header-alt-image.home-header-alt-left {
  margin-left: -30%;
}
section.home-header-alt .home-header-alt-image.home-header-alt-right {
  margin-right: -30%;
}
section.home-header-alt .home-header-alt-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  section.home-header-alt .home-header-alt-image img {
    height: 320px;
  }
}
section.home-header-alt .home-header-alt-image .home-header-alt-image-content {
  position: absolute;
  height: 100%;
  width: 62.5%;
  top: 0;
  margin: auto;
  padding: 30px;
}
@media (max-width: 767px) {
  section.home-header-alt .home-header-alt-image .home-header-alt-image-content {
    position: relative;
    padding: 40px !important;
    background-color: rgba(255, 255, 255, 0.1);
  }
  section.home-header-alt .home-header-alt-image .home-header-alt-image-content * {
    text-shadow: none !important;
  }
}
@media (max-width: 767px) {
  section.home-header-alt .home-header-alt-image .home-header-alt-image-content {
    padding: 15px !important;
  }
}
section.home-header-alt .home-header-alt-image:first-child .home-header-alt-image-content {
  right: 0;
}
section.home-header-alt .home-header-alt-image:nth-child(2) .home-header-alt-image-content {
  left: 0;
}
section.home-header-alt:hover, section.home-header-alt:focus {
  cursor: pointer;
}
section.home-header-alt:hover .home-header-alt-image, section.home-header-alt:focus .home-header-alt-image {
  filter: grayscale(0.8);
}
section.home-header-alt:hover .home-header-alt-image:hover, section.home-header-alt:hover .home-header-alt-image:focus, section.home-header-alt:focus .home-header-alt-image:hover, section.home-header-alt:focus .home-header-alt-image:focus {
  filter: grayscale(0);
}
section.home-header-alt:hover .home-header-alt-image:hover:before, section.home-header-alt:hover .home-header-alt-image:focus:before, section.home-header-alt:focus .home-header-alt-image:hover:before, section.home-header-alt:focus .home-header-alt-image:focus:before {
  box-shadow: unset;
}
@media (min-width: 768px) {
  section.home-header-alt:hover .home-header-alt-image:first-child .home-header-alt-image-content, section.home-header-alt:focus .home-header-alt-image:first-child .home-header-alt-image-content {
    right: 50%;
    transform: translateX(50%);
  }
  section.home-header-alt:hover .home-header-alt-image:nth-child(2) .home-header-alt-image-content, section.home-header-alt:focus .home-header-alt-image:nth-child(2) .home-header-alt-image-content {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 768px) {
  section.home-header-alt:hover .home-header-alt-left, section.home-header-alt:focus .home-header-alt-left {
    margin-left: -60%;
  }
  section.home-header-alt:hover .home-header-alt-left:hover, section.home-header-alt:hover .home-header-alt-left:focus, section.home-header-alt:focus .home-header-alt-left:hover, section.home-header-alt:focus .home-header-alt-left:focus {
    margin-left: -0.1%;
  }
  section.home-header-alt:hover .home-header-alt-right, section.home-header-alt:focus .home-header-alt-right {
    margin-right: -60%;
  }
  section.home-header-alt:hover .home-header-alt-right:hover, section.home-header-alt:hover .home-header-alt-right:focus, section.home-header-alt:focus .home-header-alt-right:hover, section.home-header-alt:focus .home-header-alt-right:focus {
    margin-right: -0.1%;
  }
}
@media (max-width: 767px) {
  section.home-header-alt {
    margin: 0;
    margin-bottom: 100px;
  }
  section.home-header-alt .home-header-alt-image {
    width: calc(100% - 30px);
    margin: 0 15px 15px 15px !important;
  }
  section.home-header-alt .home-header-alt-image:first-child {
    margin-bottom: 15px;
  }
  section.home-header-alt .home-header-alt-image .home-header-alt-image-content {
    width: 100%;
    padding: 10px;
  }
  section.home-header-alt .home-header-alt-image.home-header-alt-left {
    margin-left: 0;
  }
  section.home-header-alt .home-header-alt-image.home-header-alt-left .home-header-alt-image-content {
    transform: translateX(0%);
  }
  section.home-header-alt .home-header-alt-image.home-header-alt-right {
    margin-right: -80%;
  }
  section.home-header-alt .home-header-alt-image.home-header-alt-right .home-header-alt-image-content {
    transform: translateX(0%) !important;
  }
  section.home-header-alt:not(:hover) .home-header-alt-image.home-header-alt-right {
    filter: grayscale(1);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  section.home-header-alt:not(:hover) .home-header-alt-image.home-header-alt-right {
    filter: grayscale(0) !important;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  section.home-header-alt:hover .home-header-alt-image, section.home-header-alt:focus .home-header-alt-image {
    filter: grayscale(0) !important;
  }
}
@media (max-width: 767px) {
  section.home-header-alt:hover .home-header-alt-image.home-header-alt-left, section.home-header-alt:focus .home-header-alt-image.home-header-alt-left {
    margin-left: -80%;
  }
  section.home-header-alt:hover .home-header-alt-image.home-header-alt-left:hover, section.home-header-alt:hover .home-header-alt-image.home-header-alt-left:focus, section.home-header-alt:focus .home-header-alt-image.home-header-alt-left:hover, section.home-header-alt:focus .home-header-alt-image.home-header-alt-left:focus {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  section.home-header-alt:hover .home-header-alt-image.home-header-alt-right:hover, section.home-header-alt:hover .home-header-alt-image.home-header-alt-right:focus, section.home-header-alt:focus .home-header-alt-image.home-header-alt-right:hover, section.home-header-alt:focus .home-header-alt-image.home-header-alt-right:focus {
    margin-right: 0%;
  }
}

.studio1974 .wp-block-gallery.columns-1 .blocks-gallery-grid,
.studio1974 .wp-block-image {
  width: 100%;
}
.studio1974 .wp-block-gallery.columns-1 .blocks-gallery-grid img,
.studio1974 .wp-block-image img {
  width: 100%;
  height: auto;
}
.studio1974 .about-the-makers-content {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .studio1974 .about-the-makers-content {
    margin-top: 20px !important;
  }
}
.studio1974 .portfolio:not(.type-portfolio) {
  margin-bottom: 30px;
  display: flex;
  width: 100%;
}
.studio1974 .portfolio:not(.type-portfolio) .card {
  flex-direction: column;
  width: 100%;
}
.studio1974 .portfolio:not(.type-portfolio) .card .card-body {
  flex-direction: column;
  display: flex;
}
.studio1974 .portfolio:not(.type-portfolio) .card .card-body p.card-text {
  flex: 1;
}
.studio1974 .portfolio:not(.type-portfolio) .card .card-title {
  font-size: 28px;
}
.studio1974 .home-header-alt .home-header-alt-image .home-header-alt-image-content {
  justify-content: flex-end !important;
  padding: 60px;
  z-index: 2 !important;
  transition: 0.5s ease-in-out !important;
}
.studio1974 .home-header-alt .home-header-alt-image .home-header-alt-image-content p {
  color: var(--greyish-teal-color);
}
.studio1974 .home-header-alt .home-header-alt-image .home-header-alt-image-content a.btn {
  padding: 4px 16px !important;
}
@media (min-width: 768px) {
  .studio1974 .home-header-alt .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  }
}

@media (max-width: 1199px) {
  .newest-products,
.newest-portfolio-items {
    margin-top: 1.5em !important;
  }
}

/* -------------------------------------------------------------------------------- */
/* ABOUT THE MAKERS --------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
.site-title {
  font-size: 48px;
  margin-bottom: 2em;
  padding: 25px 0;
  font-size: 32px;
}
@media (min-width: 1199px) {
  .site-title {
    word-break: keep-all;
    font-size: 46px;
  }
}

.about-the-makers h3 {
  font-size: 28px;
  letter-spacing: 4px;
}
.about-the-makers .about-the-makers-content {
  background-color: var(--dark-color);
}
@media (max-width: 767px) {
  .about-the-makers .about-the-makers-content {
    margin-left: 0;
    margin-top: -175px;
    background-color: transparent;
  }
  .about-the-makers .about-the-makers-content h2 br {
    display: none;
  }
}
.about-the-makers .impression {
  position: relative;
  z-index: -2;
  height: 800px;
}
@media (max-width: 767px) {
  .about-the-makers .impression {
    height: auto;
  }
}
.about-the-makers .impression:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-image: -webkit-linear-gradient(5deg, rgba(0, 0, 0, 0), RGBA(28, 33, 30, 0.85));
  background-image: -o-linear-gradient(5deg, rgba(0, 0, 0, 0), RGBA(28, 33, 30, 0.85));
  background-image: linear-gradient(85deg, rgba(0, 0, 0, 0), RGBA(28, 33, 30, 0.85));
}
.about-the-makers img.makers-image {
  position: relative;
  -webkit-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .about-the-makers img.makers-image {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

.devyldre .impression {
  min-height: auto;
}
.devyldre .about-the-makers h1 {
  margin: 0;
}
.devyldre .about-the-makers .section-inner-container {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .devyldre .about-the-makers .section-inner-container {
    flex-direction: column;
  }
}
.devyldre .about-the-makers .section-inner-container > img {
  width: calc(33.3333333333% - 15px);
  height: auto !important;
  align-self: flex-start;
  position: sticky;
  top: 0;
}
@media (max-width: 767px) {
  .devyldre .about-the-makers .section-inner-container > img {
    position: relative;
    width: 70%;
  }
}
.devyldre .about-the-makers .section-inner-container .about-the-makers-content {
  padding: 40px 0 40px 30px;
}
@media (max-width: 767px) {
  .devyldre .about-the-makers .section-inner-container .about-the-makers-content {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    margin-top: -180px;
    padding-top: 0;
  }
}
.devyldre .about-the-makers .section-inner-container .about-the-makers-content img {
  height: auto;
}
@media (max-width: 767px) {
  .devyldre .about-the-makers .section-inner-container .about-the-makers-content img {
    width: 50%;
    height: auto;
    align-self: flex-end;
  }
}
.devyldre .about-the-makers .section-inner-container .about-the-makers-content p {
  max-width: 800px;
}

/* -------------------------------------------------------------------------------- */
/* NEWSLETTER --------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
.newsletter-background-container {
  position: relative;
  z-index: 2;
}
.newsletter-background-container:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
.newsletter-background-container ::-webkit-input-placeholder {
  color: #22362c !important;
  font-style: italic;
}
.newsletter-background-container :-ms-input-placeholder {
  color: #22362c !important;
  font-style: italic;
}
.newsletter-background-container ::-ms-input-placeholder {
  color: #22362c !important;
  font-style: italic;
}
.newsletter-background-container ::-moz-placeholder {
  color: #22362c !important;
  font-style: italic;
}
.newsletter-background-container ::placeholder {
  color: #22362c !important;
  font-style: italic;
}
.newsletter-background-container input:not([type=checkbox]),
.newsletter-background-container select {
  color: var(--dark-color) !important;
}
.newsletter-background-container .background-pattern {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 50%;
  width: 25%;
  z-index: 0;
  opacity: 0.15;
  display: block;
  background-image: var(--pattern);
  background-position: bottom right;
  -webkit-clip-path: polygon(50% 0, 100% 0, 100% 100%, 30% 100%);
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 30% 100%);
}

.newsletter-section {
  position: relative;
  margin: 0;
  -webkit-box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.1);
  max-width: 1400px;
  margin: 0 auto;
}
.newsletter-section .section-inner-container {
  margin: 0;
}
.newsletter-section .section-inner-container .newsletter {
  background-color: #FFFFFF;
  color: var(--dark-color);
}
.newsletter-section .section-inner-container .newsletter .content-block {
  padding: 80px 80px 40px 80px;
}
@media (max-width: 767px) {
  .newsletter-section .section-inner-container .newsletter .content-block {
    padding: 40px 40px 10px 40px;
  }
}
.newsletter-section .section-inner-container .newsletter .content-block form .form-group-select,
.newsletter-section .section-inner-container .newsletter .content-block form .form-group {
  margin: 0 0 30px 0;
}
.newsletter-section .section-inner-container .newsletter .content-block form .form-group-select:after,
.newsletter-section .section-inner-container .newsletter .content-block form .form-group:after {
  color: var(--dark-color);
}
.newsletter-section .section-inner-container .newsletter .content-block form .form-group-select .form-control,
.newsletter-section .section-inner-container .newsletter .content-block form .form-group .form-control {
  color: var(--dark-color);
  border-bottom: 2px solid var(--dark-color);
}
.newsletter-section .section-inner-container .newsletter .content-block form ul li {
  margin: 0;
}
.newsletter-section .section-inner-container .newsletter .content-block form ul li span label {
  display: none;
}
.newsletter-section .section-inner-container .newsletter .content-block form input {
  border-bottom: 2px solid #22362C;
}
.newsletter-section .section-inner-container .newsletter .content-block form button {
  border: 0;
  position: relative;
  background-color: transparent;
}
.newsletter-section .section-inner-container .newsletter .content-block form button:before {
  content: "";
  width: 16px;
  height: 1px;
  background-color: var(--dark-color);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.newsletter-section .section-inner-container .newsletter .content-block form button:after {
  content: "";
  width: 16px;
  height: 1px;
  background-color: var(--dark-color);
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
}
.newsletter-section .section-inner-container .newsletter .content-block form button span {
  color: var(--dark-color);
}
.newsletter-section .section-inner-container .newsletter .background-image {
  background-image: url("../../img/category-background.jpg");
  background-size: cover;
  background-position: center;
  flex: 1;
}

.gform_wrapper .form-group-select,
.gform_wrapper .form-group {
  margin: 0 0 30px 0;
}
.gform_wrapper .form-group-select:after,
.gform_wrapper .form-group:after {
  color: var(--dark-color);
}
.gform_wrapper .form-group-select .form-control,
.gform_wrapper .form-group .form-control {
  color: var(--dark-color);
  border-bottom: 2px solid var(--dark-color);
}
.gform_wrapper ul li {
  margin: 0;
}
.gform_wrapper ul li span label {
  display: none;
}
.gform_wrapper input {
  border-bottom: 2px solid #22362C;
  padding: 8px 4px !important;
}
.gform_wrapper button {
  border: 0;
  position: relative;
  background-color: transparent;
}

/* -------------------------------------------------------------------------------- */
/* SLIDERS ------------------------------------------------------------------------ */
/* -------------------------------------------------------------------------------- */
.slider button,
.slick-slider button {
  font-style: normal;
}
.slider .custom-prev,
.slider .custom-next,
.slick-slider .custom-prev,
.slick-slider .custom-next {
  -webkit-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
.slider .custom-prev:hover, .slider .custom-prev:active,
.slider .custom-next:hover,
.slider .custom-next:active,
.slick-slider .custom-prev:hover,
.slick-slider .custom-prev:active,
.slick-slider .custom-next:hover,
.slick-slider .custom-next:active {
  cursor: pointer;
}
.slider .custom-prev.slick-disabled,
.slider .custom-next.slick-disabled,
.slick-slider .custom-prev.slick-disabled,
.slick-slider .custom-next.slick-disabled {
  opacity: 0;
}
.slider .custom-prev,
.slick-slider .custom-prev {
  position: absolute;
  left: 0;
  top: 50%;
}
.slider .custom-next,
.slick-slider .custom-next {
  position: absolute;
  right: 0;
  top: 50%;
}
.slider .partners .slick-list,
.slider .partners .slick-track,
.slider .partners .slick-slide,
.slick-slider .partners .slick-list,
.slick-slider .partners .slick-track,
.slick-slider .partners .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slider .partners .slick-slide,
.slick-slider .partners .slick-slide {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.slider .partners .slick-slide svg,
.slick-slider .partners .slick-slide svg {
  width: 100%;
}
.slider .partners .slick-slide svg *,
.slick-slider .partners .slick-slide svg * {
  fill: #A7AFAB;
  -webkit-transition: fill 0.2s ease-in-out;
  -o-transition: fill 0.2s ease-in-out;
  transition: fill 0.2s ease-in-out;
}
.slider .partners .slick-slide svg:hover *, .slider .partners .slick-slide svg:active *,
.slick-slider .partners .slick-slide svg:hover *,
.slick-slider .partners .slick-slide svg:active * {
  fill: #FFFFFF;
}

/* -------------------------------------------------------------------------------- */
/* BREADCRUMB --------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
#breadcrumbs {
  position: relative;
  z-index: 1;
  background-color: transparent;
  border-radius: 0;
  margin: 0 0 60px 0;
  padding: 0;
}
#breadcrumbs span.breadcrumb-seperator {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--greyish-teal-color);
  border-right: 1px solid var(--greyish-teal-color);
  margin: 0 10px 0 8px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#breadcrumbs a,
#breadcrumbs span {
  opacity: 0.4;
  font-family: Reforma-Gris;
  font-size: 16px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #FFFFFF;
}
#breadcrumbs span {
  opacity: 1;
}

/* -------------------------------------------------------------------------------- */
/* BUTTONS ------------------------------------------------------------------------ */
/* -------------------------------------------------------------------------------- */
.lines-aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 60px;
}
.lines-aside:before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.lines-aside:after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.lines-aside .btn {
  margin: 0 15px;
}

ul.social-icons {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.social-icons li {
  display: inline-block;
  margin-right: 10px;
}
ul.social-icons li:last-child {
  margin-right: 0;
}

.social-icon {
  position: relative;
  width: 50px;
  height: 50px;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: border 0.3s ease-in-out;
  -o-transition: border 0.3s ease-in-out;
  transition: border 0.3s ease-in-out;
}
.social-icon:after {
  content: "";
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  background: #FFFFFF;
  border-radius: 50%;
  z-index: -1;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.social-icon i {
  font-size: 26px;
  color: #FFFFFF;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.social-icon:hover, .social-icon:active {
  text-decoration: none;
}
.social-icon:hover:after, .social-icon:active:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.social-icon:hover i, .social-icon:active i {
  color: var(--dark-color);
}

.btn,
button,
input[type=submit] {
  position: relative;
  border-radius: 0;
  font-size: 24px;
  font-style: italic;
  padding: 10px 24px;
  cursor: pointer;
  z-index: 1;
}
.btn span,
button span,
input[type=submit] span {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.btn:before,
button:before,
input[type=submit]:before {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0;
  top: 0;
  background: #FFFFFF;
  -webkit-transition: height 0.2s ease-in-out;
  -o-transition: height 0.2s ease-in-out;
  transition: height 0.2s ease-in-out;
  z-index: -1;
}
.btn:hover span, .btn:active span,
button:hover span,
button:active span,
input[type=submit]:hover span,
input[type=submit]:active span {
  color: var(--dark-color);
}
.btn:hover:before, .btn:active:before,
button:hover:before,
button:active:before,
input[type=submit]:hover:before,
input[type=submit]:active:before {
  height: 100%;
}
.btn.btn-outline,
button.btn-outline,
input[type=submit].btn-outline {
  border: 1px solid #FFFFFF;
}
.btn.btn-inverse,
button.btn-inverse,
input[type=submit].btn-inverse {
  border: 1px solid var(--dark-color);
}
.btn.btn-inverse span,
button.btn-inverse span,
input[type=submit].btn-inverse span {
  color: var(--dark-color);
}
.btn.btn-inverse:before,
button.btn-inverse:before,
input[type=submit].btn-inverse:before {
  background: var(--dark-color);
}
.btn.btn-inverse:hover span,
.btn.btn-inverse:hover i, .btn.btn-inverse:active span,
.btn.btn-inverse:active i,
button.btn-inverse:hover span,
button.btn-inverse:hover i,
button.btn-inverse:active span,
button.btn-inverse:active i,
input[type=submit].btn-inverse:hover span,
input[type=submit].btn-inverse:hover i,
input[type=submit].btn-inverse:active span,
input[type=submit].btn-inverse:active i {
  color: #FFFFFF !important;
}
.btn.btn-icon,
button.btn-icon,
input[type=submit].btn-icon {
  padding-right: 53px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
}
.btn.btn-icon i,
button.btn-icon i,
input[type=submit].btn-icon i {
  position: absolute;
  right: 20px;
  z-index: 1;
  color: white;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.btn.btn-icon.btn-icon-before,
button.btn-icon.btn-icon-before,
input[type=submit].btn-icon.btn-icon-before {
  padding-left: 53px;
  padding-right: 24px;
}
.btn.btn-icon.btn-icon-before i,
button.btn-icon.btn-icon-before i,
input[type=submit].btn-icon.btn-icon-before i {
  left: 20px;
  right: auto;
}
.btn.btn-icon:hover i, .btn.btn-icon:active i,
button.btn-icon:hover i,
button.btn-icon:active i,
input[type=submit].btn-icon:hover i,
input[type=submit].btn-icon:active i {
  color: var(--dark-color);
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.btn.btn-icon.btn-icon-only,
button.btn-icon.btn-icon-only,
input[type=submit].btn-icon.btn-icon-only {
  padding: 0.25em;
  line-height: 1;
}
.btn.btn-icon.btn-icon-only i,
button.btn-icon.btn-icon-only i,
input[type=submit].btn-icon.btn-icon-only i {
  position: relative;
  left: unset;
  right: unset;
  top: unset;
  bottom: unset;
}
.btn.slide-down:hover i, .btn.slide-down:active i,
button.slide-down:hover i,
button.slide-down:active i,
input[type=submit].slide-down:hover i,
input[type=submit].slide-down:active i {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: iconSlideDown;
  animation-name: iconSlideDown;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.btn.slide-right:hover i, .btn.slide-right:active i,
button.slide-right:hover i,
button.slide-right:active i,
input[type=submit].slide-right:hover i,
input[type=submit].slide-right:active i {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: iconSlideRight;
  animation-name: iconSlideRight;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.btn.scale:hover i, .btn.scale:active i,
button.scale:hover i,
button.scale:active i,
input[type=submit].scale:hover i,
input[type=submit].scale:active i {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: iconScale;
  animation-name: iconScale;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

/* -------------------------------------------------------------------------------- */
/* PRODUCT ------------------------------------------------------------------------ */
/* -------------------------------------------------------------------------------- */
.impression {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-image: url("../../img/impression.jpg");
  background-size: cover;
  background-position: center;
}

.shoppage .impression {
  width: calc(100% + (100vw - 1650px) / 2);
}

.product {
  margin-bottom: 30px;
}
.product .img-container {
  margin-bottom: 10px;
  -webkit-box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.15);
}
.product a {
  color: #FFFFFF;
  text-decoration: none;
}
.product a .product-name,
.product a .woocommerce-loop-product__title {
  font-family: Reforma-Blanca;
  font-size: 24px;
  letter-spacing: normal;
  text-transform: none;
  margin: 0;
}
.product .woocommerce-notices-wrapper {
  margin-top: 1em;
  color: var(--dark-color);
}
.product .woocommerce-notices-wrapper .woocommerce-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  color: inherit;
}
.product.featured-product {
  margin-bottom: -20%;
  -webkit-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  transform: translateY(-20%);
}
@media (max-width: 767px) {
  .product.featured-product {
    margin-bottom: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    padding: 15px;
  }
}
.product .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
  padding: 15px;
  font-size: 20px;
}
.product .overlay .view {
  position: relative;
  font-family: Reforma-Blancaa;
  font-style: italic;
  font-size: 24px;
  line-height: 1.25;
  text-align: center;
  color: var(--dark-color);
  opacity: 0;
  -webkit-transform: translate(6px, 6px);
  -ms-transform: translate(6px, 6px);
  transform: translate(6px, 6px);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: opacity, transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.product .overlay .view .arrow-before {
  display: block;
  position: absolute;
  left: -60px;
  top: calc(50% - 1px);
  height: 1px;
  width: 50px;
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
  background: var(--dark-color);
}
.product .overlay .view .arrow-after {
  display: block;
  position: absolute;
  right: -50px;
  top: calc(50% - 1px);
  height: 1px;
  width: 40px;
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
  background: var(--dark-color);
}
.product .overlay .view .arrow-after:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  top: 50%;
  right: 0;
  position: absolute;
  border-top: 1px solid var(--dark-color);
  border-right: 1px solid var(--dark-color);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.product:hover .overlay, .product:active .overlay {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.product:hover .overlay .view, .product:active .overlay .view {
  -webkit-transform: translate(6px, 0px);
  -ms-transform: translate(6px, 0px);
  transform: translate(6px, 0px);
  opacity: 1;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.product:hover .overlay .view .arrow-before, .product:active .overlay .view .arrow-before {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
  opacity: 1;
}
.product:hover .overlay .view .arrow-after, .product:active .overlay .view .arrow-after {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
  opacity: 1;
}

/* -------------------------------------------------------------------------------- */
/* FORM --------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
ul.gform_fields {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gform_wrapper form .gform_footer .gform_ajax_spinner {
  max-width: 3em;
  margin-right: 0.5em;
}

.searchandfilter .search-filter-reset {
  color: white;
}
.searchandfilter .search-filter-reset:hover, .searchandfilter .search-filter-reset:active {
  color: white;
}
.searchandfilter ul {
  padding: 0;
  margin: 0;
}
body.post-type-archive-attachment .searchandfilter > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}
body.post-type-archive-attachment .searchandfilter > ul li {
  margin-bottom: 0 !important;
}
body.post-type-archive-attachment .searchandfilter > ul > li {
  margin-right: 0.5em;
}
body.post-type-archive-attachment .searchandfilter > ul > li.sf-field-post-meta-category > ul {
  display: flex;
}
body.post-type-archive-attachment .searchandfilter > ul > li.sf-field-post-meta-category > ul > li {
  padding: 0;
  margin-right: 0.25em;
}
body.post-type-archive-attachment .searchandfilter > ul > li.sf-field-post-meta-category > ul input {
  display: none;
}
body.post-type-archive-attachment .searchandfilter > ul > li.sf-field-post-meta-category > ul input + label {
  padding: 10px 4px;
  border-bottom-color: transparent;
  display: inline;
}
body.post-type-archive-attachment .searchandfilter > ul > li.sf-field-post-meta-category > ul input[checked=checked] + label {
  border-bottom-color: white;
}
body.post-type-archive-attachment .searchandfilter > ul > li.sf-field-post-meta-category > ul label {
  padding-left: 0;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: 0.3s ease-in-out;
  transition-property: border-color;
}
body.post-type-archive-attachment .searchandfilter > ul > li.sf-field-post-meta-category > ul label:hover, body.post-type-archive-attachment .searchandfilter > ul > li.sf-field-post-meta-category > ul label:focus {
  border-bottom-color: white;
}

form label {
  display: none;
}
form li {
  margin-bottom: 30px;
}
form li:last-child {
  margin-bottom: 15px;
}
form .ginput_container,
form .woocommerce-form-row,
form label {
  width: 100%;
}
form .ginput_container.ginput_complex,
form .woocommerce-form-row.ginput_complex,
form label.ginput_complex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
form .ginput_container.ginput_complex span,
form .woocommerce-form-row.ginput_complex span,
form label.ginput_complex span {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
form .ginput_container:after,
form .woocommerce-form-row:after,
form label:after {
  display: none;
  content: "\e92f";
  font-family: "StudioFigments-icon";
  color: #FFFFFF;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
}
form .ginput_container input:not([type=checkbox]),
form .ginput_container select,
form .woocommerce-form-row input:not([type=checkbox]),
form .woocommerce-form-row select,
form label input:not([type=checkbox]),
form label select {
  border-radius: 0;
  outline: 0;
  font-family: Reforma-Blancaa;
  font-size: 24px;
  border: 0;
  color: #FFFFFF;
  background-color: transparent;
  -webkit-appearance: none;
  width: 100%;
  border-bottom: 2px solid #FFFFFF;
  font-style: italic;
  font-weight: normal;
  padding: 5px 4px;
}
form .ginput_container input:not([type=checkbox]):focus,
form .ginput_container select:focus,
form .woocommerce-form-row input:not([type=checkbox]):focus,
form .woocommerce-form-row select:focus,
form label input:not([type=checkbox]):focus,
form label select:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
form .ginput_container input:not([type=checkbox]):required:invalid,
form .ginput_container select:required:invalid,
form .woocommerce-form-row input:not([type=checkbox]):required:invalid,
form .woocommerce-form-row select:required:invalid,
form label input:not([type=checkbox]):required:invalid,
form label select:required:invalid {
  font-weight: bold;
}
form .ginput_container input:not([type=checkbox]) option[value=""][disabled],
form .ginput_container select option[value=""][disabled],
form .woocommerce-form-row input:not([type=checkbox]) option[value=""][disabled],
form .woocommerce-form-row select option[value=""][disabled],
form label input:not([type=checkbox]) option[value=""][disabled],
form label select option[value=""][disabled] {
  display: none;
}
form .ginput_container input:not([type=checkbox]) option,
form .ginput_container select option,
form .woocommerce-form-row input:not([type=checkbox]) option,
form .woocommerce-form-row select option,
form label input:not([type=checkbox]) option,
form label select option {
  color: black;
}

.form-group:after {
  display: none;
}

/* -------------------------------------------------------------------------------- */
/* HEADER ------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
.main-header {
  z-index: 9999;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 30px 0;
  background: -webkit-gradient(linear, left top, right top, from(RGBA(var(--dark-rgb-color), 0.6)), color-stop(95%, RGBA(var(--dark-rgb-color), 0.6)));
  background: -webkit-linear-gradient(left, RGBA(var(--dark-rgb-color), 0.6) 0%, RGBA(var(--dark-rgb-color), 0.6) 95%);
  background: -o-linear-gradient(left, RGBA(var(--dark-rgb-color), 0.6) 0%, RGBA(var(--dark-rgb-color), 0.6) 95%);
  background: linear-gradient(to right, RGBA(var(--dark-rgb-color), 0.6) 0%, RGBA(var(--dark-rgb-color), 0.6) 95%);
}
.main-header .container-fluid {
  max-width: 100%;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .main-header .container-fluid {
    padding: 0 15px;
  }
}
.main-header nav ul.menu-icons {
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li,
.main-header nav ul.menu-icons > li {
  position: relative;
  display: inline-block;
  margin: 0 10px;
  cursor: pointer;
}
@media (max-width: 575px) {
  .main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li,
.main-header nav ul.menu-icons > li {
    margin: 0 5px;
  }
}
.main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li *,
.main-header nav ul.menu-icons > li * {
  cursor: pointer;
}
.main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li:first-child,
.main-header nav ul.menu-icons > li:first-child {
  margin-left: 0;
}
.main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li:last-child,
.main-header nav ul.menu-icons > li:last-child {
  margin-right: 0;
}
.main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li i,
.main-header nav ul.menu-icons > li i {
  color: #FFFFFF;
  font-size: 32px;
}
@media (max-width: 767px) {
  .main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li i,
.main-header nav ul.menu-icons > li i {
    font-size: 25px;
  }
}
.main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li ul.wpml-ls-sub-menu,
.main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li ul.menu-links,
.main-header nav ul.menu-icons > li ul.wpml-ls-sub-menu,
.main-header nav ul.menu-icons > li ul.menu-links {
  position: absolute;
  top: calc(100% + 40px);
  right: 50%;
  padding: 40px;
  background-color: #DEE1E0;
  visibility: hidden;
  white-space: nowrap;
  list-style: none;
  margin: 0;
  opacity: 0;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li ul.wpml-ls-sub-menu:after,
.main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li ul.menu-links:after,
.main-header nav ul.menu-icons > li ul.wpml-ls-sub-menu:after,
.main-header nav ul.menu-icons > li ul.menu-links:after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-bottom: 40px solid #DEE1E0;
  border-left: 40px solid transparent;
  right: 0;
  top: 0px;
  position: absolute;
  -webkit-transition: top 0.2s linear;
  -o-transition: top 0.2s linear;
  transition: top 0.2s linear;
}
.main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li ul.wpml-ls-sub-menu li,
.main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li ul.menu-links li,
.main-header nav ul.menu-icons > li ul.wpml-ls-sub-menu li,
.main-header nav ul.menu-icons > li ul.menu-links li {
  margin-bottom: 20px;
}
.main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li ul.wpml-ls-sub-menu li:last-child,
.main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li ul.menu-links li:last-child,
.main-header nav ul.menu-icons > li ul.wpml-ls-sub-menu li:last-child,
.main-header nav ul.menu-icons > li ul.menu-links li:last-child {
  margin-bottom: 0;
}
.main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li ul.wpml-ls-sub-menu li a,
.main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li ul.menu-links li a,
.main-header nav ul.menu-icons > li ul.wpml-ls-sub-menu li a,
.main-header nav ul.menu-icons > li ul.menu-links li a {
  font-family: Reforma-Negra;
  font-size: 18px;
  line-height: 1.78;
  letter-spacing: 4px;
  color: var(--dark-color);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li ul.wpml-ls-sub-menu,
.main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li ul.menu-links,
.main-header nav ul.menu-icons > li ul.wpml-ls-sub-menu,
.main-header nav ul.menu-icons > li ul.menu-links {
    right: 0;
    padding: 15px;
  }
  .main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li ul.wpml-ls-sub-menu li a,
.main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li ul.menu-links li a,
.main-header nav ul.menu-icons > li ul.wpml-ls-sub-menu li a,
.main-header nav ul.menu-icons > li ul.menu-links li a {
    font-size: 16px;
    letter-spacing: 2px;
  }
}
.main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li:hover > ul.wpml-ls-sub-menu, .main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li:hover > ul.menu-links, .main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li:active > ul.wpml-ls-sub-menu, .main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li:active > ul.menu-links, .main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li.active > ul.wpml-ls-sub-menu, .main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li.active > ul.menu-links,
.main-header nav ul.menu-icons > li:hover > ul.wpml-ls-sub-menu,
.main-header nav ul.menu-icons > li:hover > ul.menu-links,
.main-header nav ul.menu-icons > li:active > ul.wpml-ls-sub-menu,
.main-header nav ul.menu-icons > li:active > ul.menu-links,
.main-header nav ul.menu-icons > li.active > ul.wpml-ls-sub-menu,
.main-header nav ul.menu-icons > li.active > ul.menu-links {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
.main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li:hover > ul.wpml-ls-sub-menu:after, .main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li:hover > ul.menu-links:after, .main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li:active > ul.wpml-ls-sub-menu:after, .main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li:active > ul.menu-links:after, .main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li.active > ul.wpml-ls-sub-menu:after, .main-header nav ul.menu-icons .wpml-ls-statics-shortcode_actions > ul > li.active > ul.menu-links:after,
.main-header nav ul.menu-icons > li:hover > ul.wpml-ls-sub-menu:after,
.main-header nav ul.menu-icons > li:hover > ul.menu-links:after,
.main-header nav ul.menu-icons > li:active > ul.wpml-ls-sub-menu:after,
.main-header nav ul.menu-icons > li:active > ul.menu-links:after,
.main-header nav ul.menu-icons > li.active > ul.wpml-ls-sub-menu:after,
.main-header nav ul.menu-icons > li.active > ul.menu-links:after {
  top: -40px;
}

/* -------------------------------------------------------------------------------- */
/* GRID --------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
.image-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.image-grid:after {
  content: "";
  -webkit-box-flex: 999999999;
  -ms-flex-positive: 999999999;
  flex-grow: 999999999;
  min-width: 360px;
  height: 0;
}
.image-grid > .stufig-visual {
  position: relative;
  display: block;
  height: 360px;
  margin: 15px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.15);
}
.image-grid > .stufig-visual a:hover, .image-grid > .stufig-visual a:active {
  color: var(--dark-color);
}
.image-grid > .stufig-visual span.label {
  background-color: var(--rosa-color);
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  z-index: 2;
}
.image-grid > .stufig-visual span.label i {
  font-size: 32px;
}
.image-grid > .stufig-visual span.label span {
  margin-left: 10px;
  margin-right: 5px;
}
.image-grid > .stufig-visual .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  color: black;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: stretch;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
  padding: 15px;
  font-size: 20px;
}
.image-grid > .stufig-visual .overlay .stufig-visual-top,
.image-grid > .stufig-visual .overlay .stufig-visual-bottom {
  display: flex;
  justify-content: space-between;
}
.image-grid > .stufig-visual .overlay .top-left,
.image-grid > .stufig-visual .overlay .bottom-left {
  align-self: flex-start;
}
.image-grid > .stufig-visual .overlay .top-right,
.image-grid > .stufig-visual .overlay .bottom-right {
  align-self: flex-end;
}
.image-grid > .stufig-visual .overlay .stufig-visual-bottom {
  display: flex;
}
.image-grid > .stufig-visual .overlay span.name {
  text-transform: uppercase;
  font-family: InknutAntiqua;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 12px;
  text-align: center;
  color: var(--dark-color);
  opacity: 0;
  -webkit-transform: translate(6px, 6px);
  -ms-transform: translate(6px, 6px);
  transform: translate(6px, 6px);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: opacity, transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  word-break: break-word;
}
.image-grid > .stufig-visual .overlay .stufig-visual-modal-toggle {
  cursor: pointer;
}
.image-grid > .stufig-visual .overlay .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
.image-grid > .stufig-visual .overlay .bottom .use {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.image-grid > .stufig-visual .overlay .bottom .use .used-check {
  position: relative;
  margin-left: 5px;
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--dark-color);
}
.image-grid > .stufig-visual .overlay .bottom .use .used-check.checked:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  display: block;
  border-radius: 50%;
  background-color: var(--dark-color);
}
.image-grid > .stufig-visual .overlay .add-to-favourites span {
  background-color: transparent;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.image-grid > .stufig-visual .overlay .add-to-favourites.added i:before {
  content: "\e909";
}
.image-grid > .stufig-visual > img {
  height: 360px;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
  min-width: 100%;
  vertical-align: center;
}
.image-grid > .stufig-visual:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.image-grid > .stufig-visual:hover .overlay, .image-grid > .stufig-visual:active .overlay {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.image-grid > .stufig-visual:hover .overlay span.name, .image-grid > .stufig-visual:active .overlay span.name {
  -webkit-transform: translate(6px, 0px);
  -ms-transform: translate(6px, 0px);
  transform: translate(6px, 0px);
  opacity: 1;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.image-grid.one-row > div {
  height: auto;
}
.image-grid.one-row > div:nth-child(1) {
  width: calc(30% - 30px);
}
.image-grid.one-row > div:nth-child(2) {
  width: calc(25% - 30px);
}
.image-grid.one-row > div:nth-child(3) {
  width: calc(45% - 30px);
}
@media (max-width: 991px) {
  .image-grid.one-row > div {
    width: 100% !important;
  }
}
.image-grid .stufig-visual-modal {
  color: white;
}
.image-grid .stufig-visual-modal .modal-content {
  background-color: var(--dark-color);
}
.image-grid .stufig-visual-modal .close {
  background-color: transparent;
}
.image-grid .stufig-visual-modal .close span {
  color: white;
  font-style: normal;
  text-shadow: none;
}

/* -------------------------------------------------------------------------------- */
/* ARCHIVE ------------------------------------------------------------------------ */
/* -------------------------------------------------------------------------------- */
.categories {
  margin-bottom: -30px;
}
.categories .category {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
  color: var(--dark-color);
  overflow: hidden;
}
.categories .category .category-title {
  font-size: 26px;
  letter-spacing: 6px;
  margin-bottom: 10px;
}
.categories .category .category-image {
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  position: absolute;
  background-position: center;
  z-index: 0;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.categories .category .category-image:after {
  content: "";
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.categories .category .category-image img {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.categories .category .category-border {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  outline: 1px solid var(--dark-color);
  outline-offset: -30px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.categories .category:hover .category-image img, .categories .category:active .category-image img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.categories .category:hover .category-border, .categories .category:active .category-border {
  outline: 1px solid #FFFFFF;
  outline-offset: -40px;
}
.categories .category .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
}
.categories .category .content .amount {
  font-weight: normal;
  font-style: italic;
}

.archive .portfolio .card,
.home .portfolio .card {
  background-color: unset;
  border: unset;
}
.archive .portfolio .card .card-body,
.home .portfolio .card .card-body {
  padding: 15px 0;
}

/* -------------------------------------------------------------------------------- */
/* PRODUCT ARCHIVE ---------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
body.post-type-archive-product #primary,
body.tax-product_cat #primary {
  padding-bottom: 80px;
}
body.post-type-archive-product .product-archive-intro-block .image-container,
body.tax-product_cat .product-archive-intro-block .image-container {
  height: 100%;
}
body.post-type-archive-product .product-archive-intro-block .image-container .impression,
body.tax-product_cat .product-archive-intro-block .image-container .impression {
  min-height: 60vmin;
}
body.post-type-archive-product .product-archive-intro-block .product-archive-intro-block-filter-holder .sticky,
body.tax-product_cat .product-archive-intro-block .product-archive-intro-block-filter-holder .sticky {
  z-index: 5;
}
@media (min-width: 768px) {
  body.post-type-archive-product .product-archive-intro-block .product-archive-intro-block-filter-holder,
body.tax-product_cat .product-archive-intro-block .product-archive-intro-block-filter-holder {
    margin-bottom: -15%;
  }
}
body.post-type-archive-product .product.featured-product,
body.tax-product_cat .product.featured-product {
  -webkit-transform: translateY(-40%);
  -ms-transform: translateY(-40%);
  transform: translateY(-40%);
  margin-bottom: -40%;
}

/* -------------------------------------------------------------------------------- */
/* PORTFOLIO ARCHIVE ---------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
body.post-type-archive-portfolio .pagination {
  justify-content: center;
  margin: 15px 0;
}

/* -------------------------------------------------------------------------------- */
/* VIDEO SECTION ------------------------------------------------------------------ */
/* -------------------------------------------------------------------------------- */
.video-section-container .video-section {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 50vmin;
  margin-bottom: -100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.video-section-container .video-section:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 20, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.video-section-container .video-section a.play-video {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: 2px solid white;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 24px;
}
.video-section-container .video-section a.play-video i {
  -webkit-transform: translateX(4px) scale(1);
  -ms-transform: translateX(4px) scale(1);
  transform: translateX(4px) scale(1);
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.video-section-container .video-section a.play-video:hover i, .video-section-container .video-section a.play-video:active i {
  -webkit-transform: translateX(4px) scale(1.2);
  -ms-transform: translateX(4px) scale(1.2);
  transform: translateX(4px) scale(1.2);
}
.video-section-container .video-section-content {
  padding: 80px 140px;
  margin: 0 -140px;
  background: var(--dark-color);
}
.video-section-container .modal-content {
  background: transparent;
}
.video-section-container .modal-content .modal-body {
  padding: 0;
}
.video-section-container .modal-content .modal-body .youtube {
  margin: 0;
}

/* -------------------------------------------------------------------------------- */
/* PLACEHOLDER -------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
::-webkit-input-placeholder {
  color: var(--greyish-teal-color) !important;
}

:-ms-input-placeholder {
  color: var(--greyish-teal-color) !important;
}

::-ms-input-placeholder {
  color: var(--greyish-teal-color) !important;
}

::-moz-placeholder {
  color: var(--greyish-teal-color) !important;
}

::placeholder {
  color: var(--greyish-teal-color) !important;
}

body.logged-in .woocommerce form .form-row {
  margin: 0 0 10px;
  padding: 0;
}
body.logged-in .woocommerce form .form-row label:not([for=billing_country]):not([for=shipping_country]):not([for=password_current]):not([for=password_1]):not([for=password_2]) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
body.logged-in .woocommerce form .form-row label {
  font-size: 18px;
}
body.logged-in .woocommerce form .form-row em {
  font-size: 18px;
}
body.logged-in #billing_country_field:before,
body.logged-in #billing_phone_field:before,
body.logged-in #shipping_country_field:before {
  font-family: Inknut-Antiqua;
  font-style: normal;
  font-stretch: normal;
  font-weight: 300;
  margin: 40px 0 1rem 0;
  text-transform: uppercase;
  display: block;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  line-height: 1.46;
  letter-spacing: 6px;
}
body.logged-in fieldset {
  margin: 40px 0 1rem 0;
}
body.logged-in fieldset legend {
  font-size: 26px;
  line-height: 1.46;
  letter-spacing: 6px;
  font-weight: 300;
}
body.logged-in #billing_country_field:before,
body.logged-in #shipping_country_field:before {
  content: "Adresgegevens";
}
body.logged-in #billing_phone_field:before {
  content: "Contactgegevens";
}
body.logged-in .select2-selection {
  height: 50px !important;
  border: 2px solid #22362b !important;
}

body.single-product .technical-details,
body.single-product .maintenance-items,
body.single-product .warranty {
  margin-bottom: 120px !important;
}

/* -------------------------------------------------------------------------------- */
/* SINGLE PRODUCT PAGE ------------------------------------------------------------ */
/* -------------------------------------------------------------------------------- */
body.single-product .hero-image {
  background-size: cover;
  background-position: center;
  height: 50vmin;
}
body.single-product section {
  margin: 0 0 120px 0;
}
body.single-product .single-product .product {
  max-width: 100%;
  width: 100%;
  display: block;
  float: left;
}
body.single-product .single-product .product .summary {
  /*padding-left: 8.333333%;*/
}
body.single-product .single-product .product .summary form {
  display: none;
}
@media (min-width: 768px) {
  body.single-product .single-product .product .summary {
    float: right;
    width: 48%;
    clear: none;
  }
}
body.single-product .single-product .product .product-title {
  font-size: 42px;
  letter-spacing: 8px;
  margin-bottom: 15px;
}
body.single-product .single-product .product .product-detail {
  font-family: Reforma-Blancaa;
  margin-bottom: 15px;
}
body.single-product .single-product .product .product-detail small {
  font-size: 16px;
  font-style: italic;
  letter-spacing: 1px;
  color: #dee1e0;
}
body.single-product .single-product .product .product-detail span {
  font-size: 21px;
  color: #FFFFFF;
}
body.single-product .single-product .product .share-this-product {
  margin-top: 60px;
}
body.single-product .single-product .product .share-this-product span {
  font-family: InknutAntiqua;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 4px;
  color: #FFFFFF;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 10px;
}
@media (max-width: 1199px) {
  body.single-product .single-product .product .share-this-product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
body.single-product .start-customizing,
body.single-product .start-ordering {
  margin-top: 80px;
  -webkit-box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.5);
}
body.single-product .start-customizing .getting-started,
body.single-product .start-ordering .getting-started {
  padding: 40px 60px;
  background-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  body.single-product .start-customizing .getting-started,
body.single-product .start-ordering .getting-started {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}
body.single-product .start-customizing .getting-started .variations_form,
body.single-product .start-ordering .getting-started .variations_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
body.single-product .start-customizing .getting-started .variations_form .select2-container--default,
body.single-product .start-ordering .getting-started .variations_form .select2-container--default {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  min-width: 200px;
}
body.single-product .start-customizing .getting-started .variations_form .select2-container--default .selection,
body.single-product .start-ordering .getting-started .variations_form .select2-container--default .selection {
  width: 100%;
}
body.single-product .start-customizing .getting-started .variations_form .select2-container--default .selection .select2-selection,
body.single-product .start-ordering .getting-started .variations_form .select2-container--default .selection .select2-selection {
  height: 100%;
  min-height: 50px;
  border: 1px solid white !important;
}
body.single-product .start-customizing .getting-started .variations_form .reset_variations,
body.single-product .start-ordering .getting-started .variations_form .reset_variations {
  color: white;
  margin-bottom: 1em;
  display: block;
  font-size: 0.8em;
}
body.single-product .start-customizing .getting-started .variations_form .single_variation_wrap .woocommerce-variation-price,
body.single-product .start-ordering .getting-started .variations_form .single_variation_wrap .woocommerce-variation-price {
  margin-bottom: 0.5em;
}
body.single-product .start-customizing .getting-started .variations_form .single_variation_wrap .woocommerce-variation-price del bdi,
body.single-product .start-ordering .getting-started .variations_form .single_variation_wrap .woocommerce-variation-price del bdi {
  opacity: 0.75;
}
body.single-product .start-customizing .getting-started .variations_form .woocommerce-Price-amount,
body.single-product .start-ordering .getting-started .variations_form .woocommerce-Price-amount {
  font-weight: bold;
  text-decoration: underline;
}
body.single-product .start-customizing .getting-started .variations_form .single_add_to_cart_button,
body.single-product .start-ordering .getting-started .variations_form .single_add_to_cart_button {
  width: 100%;
}
body.single-product .start-customizing .getting-started table,
body.single-product .start-ordering .getting-started table {
  width: auto;
}
body.single-product .start-customizing .big-challenge,
body.single-product .start-ordering .big-challenge {
  padding: 30px 60px;
  background-color: var(--dark-color);
}
body.single-product .start-customizing .big-challenge span:not(.h4),
body.single-product .start-ordering .big-challenge span:not(.h4) {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 15px;
}
@media (max-width: 991px) {
  body.single-product .start-customizing .big-challenge,
body.single-product .start-ordering .big-challenge {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  body.single-product .start-customizing .big-challenge span:not(.h4),
body.single-product .start-ordering .big-challenge span:not(.h4) {
    padding-bottom: 1em;
  }
}
body.single-product .start-customizing .h4,
body.single-product .start-ordering .h4 {
  font-family: InknutAntiqua;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 6px;
  color: #FFFFFF;
  margin: 0;
}
body.single-product .temporary-image {
  background-image: url("../../img/category-background.jpg");
  background-size: cover;
  background-position: center;
  height: 60vh;
  width: 100vw;
  margin: 0 -15px;
  margin-top: 0px;
  max-width: calc(100% + 30px);
}
body.single-product .about-this-product {
  margin-bottom: 120px;
}
body.single-product .about-this-product .about-this-product-content {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
}
@media (max-width: 767px) {
  body.single-product .about-this-product .about-this-product-content {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
  }
}

/* -------------------------------------------------------------------------------- */
/* WOOCOMMERCE ARCHIVE PAGE RESET ------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
.featured-product-wrapper {
  height: 100%;
}

ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}
ul.products:before, ul.products:after {
  display: none !important;
}
ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
}

/* -------------------------------------------------------------------------------- */
/* WOOCOMMERCE PRODUCT PAGE RESET ------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
body.single-product .site-main {
  position: relative;
}
body.single-product .woocommerce div.product div.images,
body.single-product .summary {
  margin-bottom: 0 !important;
}
body.single-product .woocommerce-product-gallery__trigger {
  top: 20px !important;
  right: 35px !important;
  background-color: #FFFFFF !important;
}
@media (max-width: 767px) {
  body.single-product .woocommerce-product-gallery {
    padding: 0;
  }
}
body.single-product .woocommerce-product-gallery .flex-control-thumbs {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-product-gallery.move-up {
    margin-top: -20vh !important;
  }
}
body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  background-color: var(--light-blue-color) !important;
}
body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:before {
  border-color: var(--dark-color) !important;
}
body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:after {
  background-color: var(--dark-color) !important;
}
body.single-product .woocommerce-product-gallery .flex-direction-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  pointer-events: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
body.single-product .woocommerce-product-gallery .flex-direction-nav .flex-nav-prev,
body.single-product .woocommerce-product-gallery .flex-direction-nav .flex-nav-next {
  pointer-events: all;
  background-color: var(--light-blue-color);
  color: var(--dark-color);
  cursor: pointer;
  padding: 15px 0;
}
body.single-product .woocommerce-product-gallery .flex-direction-nav .flex-nav-prev a,
body.single-product .woocommerce-product-gallery .flex-direction-nav .flex-nav-next a {
  padding: 15px 3px;
}
body.single-product .woocommerce-product-gallery .flex-direction-nav .flex-nav-prev *,
body.single-product .woocommerce-product-gallery .flex-direction-nav .flex-nav-next * {
  color: inherit;
}
body.single-product .woocommerce-product-gallery .flex-direction-nav .flex-nav-prev {
  left: 0;
}
body.single-product .woocommerce-product-gallery .flex-direction-nav .flex-nav-next {
  right: 0;
}
@media (max-width: 767px) {
  body.single-product .woocommerce-product-gallery {
    margin-top: 1.5em;
  }
}
body.single-product .pswp {
  z-index: 100000;
}
body.single-product .pswp .pswp__caption__center {
  text-align: center;
  font-weight: bold;
}
body.single-product .pswp .pswp__button {
  background-color: transparent !important;
  width: auto;
  height: auto;
}
body.single-product .pswp .pswp__button:before {
  font-family: "StudioFigments-icon";
  speak: none;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-style: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  height: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1.7 !important;
  padding: 10px 0;
}
body.single-product .pswp .pswp__button:after {
  display: none;
}
body.single-product .pswp .pswp__button:before {
  cursor: pointer;
  background: var(--light-blue-color);
  color: var(--dark-color);
}
body.single-product .pswp .pswp__button.pswp__button--arrow--right:before {
  content: "\e931";
  right: 0;
}
body.single-product .pswp .pswp__button.pswp__button--arrow--left:before {
  content: "\e930";
  left: 0;
}
body.single-product .maintenance-item i {
  margin-right: 0.5em;
}
body.single-product .technical-details,
body.single-product .maintenance-items,
body.single-product .warranty {
  margin-bottom: 2.5em;
}
body.single-product .how-its-made {
  background-color: var(--dark-color);
  padding: 60px 80px;
}
body.single-product .how-its-made.move-up {
  margin-top: -100px;
}
body.single-product .warranty .warranty-item {
  margin-bottom: 1.5em;
}
body.single-product .warranty .warranty-item .warranty-icon {
  border: 1px solid white;
  border-radius: 50%;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* -------------------------------------------------------------------------------- */
/* PAGE CONTACT FORM -------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
.page-contact-form {
  padding: 80px 0;
}
.page-contact-form .gf_browser_chrome.gform_wrapper {
  margin: 0;
}
.page-contact-form .gf_browser_chrome.gform_wrapper .gform_footer.top_label {
  padding-bottom: 0;
}
.page-contact-form textarea {
  background-color: transparent;
  border: 2px solid white;
  color: #FFFFFF;
  padding: 20px !important;
}

.initiator-images img {
  width: 250px;
  margin-bottom: -28px;
  margin-right: 30px;
}

/* -------------------------------------------------------------------------------- */
/* FAQ ---------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
ul.faq-items {
  margin: 0;
}
ul.faq-items li {
  display: inline-block;
  font-family: InknutAntiqua;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  padding: 0 20px;
  letter-spacing: 4px;
  color: #FFFFFF;
  text-transform: uppercase;
}
ul.faq-items li.information-about {
  font-family: Reforma2018-Blancaa;
  font-weight: normal;
  font-style: italic;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: lowercase;
}

/* -------------------------------------------------------------------------------- */
/* CHECKOUT ----------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
.woocommerce-checkout .wc_payment_methods .wc_payment_method {
  color: var(--dark-color);
}
.woocommerce-checkout .wc_payment_methods .wc_payment_method .input-radio {
  display: none;
}
.woocommerce-checkout .wc_payment_methods .wc_payment_method .input-radio:checked + label {
  text-decoration: underline;
}
.woocommerce-checkout .wc_payment_methods .wc_payment_method label {
  display: inherit;
}
.woocommerce-checkout .place-order #place_order {
  transition: 0.3s ease-in-out;
  transition-property: color;
  background-color: var(--greyish-teal-color);
}
.woocommerce-checkout .place-order #place_order:hover, .woocommerce-checkout .place-order #place_order:active {
  color: var(--greyish-teal-color);
}

/* -------------------------------------------------------------------------------- */
/* FOOTER ------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
footer.main-footer {
  position: relative;
  padding: 120px 0;
  background-color: rgba(0, 0, 0, 0.4);
}
footer.main-footer .background-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 80%;
  z-index: -1;
  opacity: 0.3;
  display: block;
  -webkit-clip-path: polygon(30% 0, 100% 0, 100% 70%, 0 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 70%, 0 100%);
  background-image: var(--pattern);
  background-position: top right;
}
footer.main-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer.main-footer ul li {
  display: inline-block;
}
footer.main-footer .footer-upper-menu {
  margin-top: 30px;
}
footer.main-footer .footer-upper-menu ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
footer.main-footer .footer-upper-menu ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 2;
}
footer.main-footer .footer-upper-menu ul li:after {
  content: url("../../img/diamond.svg");
  margin: 0 30px;
  width: 16px;
  display: inline-block;
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}
footer.main-footer .footer-upper-menu ul li:last-child:after {
  display: none;
}
footer.main-footer .footer-upper-menu ul li a {
  font-size: 26px;
  color: #FFFFFF;
}
footer.main-footer .footer-upper-menu ul li span {
  font-size: 18px;
  font-style: italic;
  color: var(--greyish-teal-color);
}
footer.main-footer .footer-upper-menu ul li i {
  font-size: 32px;
  margin-left: 25px;
}
footer.main-footer .footer-lower-menu {
  margin-top: 30px;
}
footer.main-footer .footer-lower-menu ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
footer.main-footer .footer-lower-menu ul li {
  margin: 0 15px;
}
footer.main-footer .footer-lower-menu ul li:first-child {
  margin-left: 0;
}
footer.main-footer .footer-lower-menu ul li:last-child {
  margin-right: 0;
}
footer.main-footer address {
  margin-top: 30px;
}

.page-template-page-my-account main section.account > .section-inner-container {
  padding: 80px 16.6666666667%;
}
@media (max-width: 991px) {
  .page-template-page-my-account main section.account > .section-inner-container {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .page-template-page-my-account main section.account > .section-inner-container {
    padding: 15px;
  }
}
.page-template-page-my-account.logged-in main section.account > .section-inner-container {
  padding: 80px 0 !important;
}
.page-template-page-my-account .woocommerce-MyAccount-navigation,
.page-template-page-my-account .woocommerce-MyAccount-content {
  width: 100%;
}
.page-template-page-my-account .woocommerce-MyAccount-content section {
  padding-bottom: 100px;
  border-bottom: 2px solid #dee1e0;
}
.page-template-page-my-account .woocommerce-MyAccount-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.page-template-page-my-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 1em 0;
  border-top: 1px solid var(--dark-color);
  border-bottom: 1px solid var(--dark-color);
}
.page-template-page-my-account .woocommerce-MyAccount-navigation ul li {
  display: inline-block;
}
.page-template-page-my-account .woocommerce-MyAccount-navigation ul li a {
  margin-right: 0.5em;
}
.page-template-page-my-account .woocommerce-MyAccount-navigation ul li a:hover, .page-template-page-my-account .woocommerce-MyAccount-navigation ul li a:active {
  color: inherit;
}
.page-template-page-my-account .woocommerce-MyAccount-navigation ul li:after {
  content: url("../../img/diamond-dark.svg");
  margin: 0 30px;
  width: 16px;
  display: inline-block;
}
.page-template-page-my-account .woocommerce-MyAccount-navigation ul li:last-of-type a {
  margin-right: 0;
}
.page-template-page-my-account .woocommerce-MyAccount-navigation ul li:last-of-type:after {
  content: "";
}
.page-template-page-my-account .woocommerce-form-login .woocommerce-form-login__submit {
  margin-right: 0;
}
.page-template-page-my-account .woocommerce-form-register {
  border: 0px solid #d3ced2 !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
  border-radius: 0 !important;
}
.page-template-page-my-account .slick-slider-nav-buttons {
  margin-bottom: 60px;
}
.page-template-page-my-account .slick-slider-nav-buttons a {
  border: 1px solid transparent;
}
.page-template-page-my-account .slick-slider-nav-buttons a.slick-disabled {
  outline: 1px solid white;
  outline-offset: -2px;
}
.page-template-page-my-account .woocommerce-orders-table {
  table-layout: auto;
}
.page-template-page-my-account .woocommerce-orders-table .woocommerce-orders-table__header-order-total,
.page-template-page-my-account .woocommerce-orders-table .woocommerce-orders-table__header-order-details,
.page-template-page-my-account .woocommerce-orders-table .woocommerce-orders-table__cell-order-total,
.page-template-page-my-account .woocommerce-orders-table .woocommerce-orders-table__cell-order-details {
  text-align: center;
}
.page-template-page-my-account .woocommerce-orders-table .woocommerce-orders-table__cell-order-details .btn {
  font-size: 1.25em;
}
.page-template-page-my-account .woocommerce-orders-table .active {
  position: relative;
}
.page-template-page-my-account .woocommerce-orders-table .active:after {
  content: "";
  border-bottom: 2px solid;
  position: absolute;
  bottom: -3px;
  width: 2em;
  height: 2px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.page-template-page-my-account .woocommerce-orders-table .inactive {
  opacity: 0.5;
}
.page-template-page-my-account .addresses .title .edit {
  float: left;
  display: block;
  clear: both;
  margin-bottom: 1em;
}
.page-template-page-my-account .woocommerce-address-fields .woocommerce-input-wrapper {
  width: 100%;
}
.page-template-page-my-account .woocommerce-address-fields .woocommerce-input-wrapper input {
  border-top: none;
  border-left: none;
  border-right: none;
}
.page-template-page-my-account .address-form,
.page-template-page-my-account .edit-account-form {
  padding-top: 2em;
}
.page-template-page-my-account .address-form .woocommerce-Button,
.page-template-page-my-account .edit-account-form .woocommerce-Button {
  margin-top: 2em;
}
.page-template-page-my-account .address-form .woocommerce-address-fields__field-wrapper,
.page-template-page-my-account .edit-account-form .woocommerce-address-fields__field-wrapper {
  padding-bottom: 2em;
}

.woocommerce-MyAccount-content {
  padding-top: 100px;
}
.woocommerce-MyAccount-content form {
  padding: 0 20%;
}
@media (max-width: 991px) {
  .woocommerce-MyAccount-content form {
    padding: 0 10%;
  }
}
@media (max-width: 767px) {
  .woocommerce-MyAccount-content form {
    padding: 0 15px;
  }
}
.woocommerce-MyAccount-content .user-icon {
  margin: 0 30px 0 0;
}

.rotate {
  -webkit-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
  }
  to {
    -webkit-transform: rotate(359deg) !important;
    transform: rotate(359deg) !important;
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
  }
  to {
    -webkit-transform: rotate(359deg) !important;
    transform: rotate(359deg) !important;
  }
}
.tooltip {
  pointer-events: none;
}

.youtube {
  background-color: #000;
  margin-bottom: 30px;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
}
.youtube img {
  width: 100%;
  top: -16.82%;
  left: 0;
  opacity: 0.7;
}
.youtube .play-button {
  width: 90px;
  height: 60px;
  background-color: #333;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  z-index: 1;
  opacity: 0.8;
  border-radius: 6px;
}
.youtube .play-button:before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 26px;
  border-color: transparent transparent transparent #fff;
}
.youtube img,
.youtube .play-button {
  cursor: pointer;
}
.youtube img,
.youtube iframe,
.youtube .play-button,
.youtube .play-button:before {
  position: absolute;
}
.youtube .play-button,
.youtube .play-button:before {
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
.youtube iframe {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.woocommerce form.login {
  padding: 0;
  margin: 0;
  border: 0;
}

.woocommerce-error {
  border: 0;
}

.woocommerce-info {
  color: var(--dark-color);
  border-top-color: var(--greyish-teal-color);
}
.woocommerce-info:before {
  color: var(--greyish-teal-color);
}

/* -------------------------------------------------------------------------------- */
/* INSTAFEED ---------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
.instagram-feed-wrapper .instagram-feed .slick-button-wrapper {
  display: none;
}
.instagram-feed-wrapper .instagram-feed #instagram-feed-slider {
  margin: 0 -15px;
}
.instagram-feed-wrapper .instagram-feed .slick-slide {
  padding: 0 15px;
}
.instagram-feed-wrapper .instagram-feed .slick-slide img {
  -webkit-box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 1em;
}

/* -------------------------------------------------------------------------------- */
/* WOOCOMMERCE -------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
.woocommerce .col-1,
.woocommerce .col-2 {
  max-width: none;
}
.woocommerce table,
.woocommerce .woocommerce-customer-details address {
  border-color: rgba(255, 255, 255, 0.3) !important;
}
.woocommerce table td,
.woocommerce table th,
.woocommerce .woocommerce-customer-details address td,
.woocommerce .woocommerce-customer-details address th {
  border-color: rgba(255, 255, 255, 0.3) !important;
}
.woocommerce .woocommerce-cart-form .coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.woocommerce .woocommerce-cart-form #coupon_code {
  width: 100%;
  max-width: 250px;
}
.woocommerce .woocommerce-cart-form .product-remove a {
  opacity: 0.75;
  line-height: 0.8;
}
.woocommerce .woocommerce-cart-form .product-remove a:hover, .woocommerce .woocommerce-cart-form .product-remove a:active {
  opacity: 1;
}
.woocommerce .woocommerce-cart-form .product-thumbnail img {
  width: 100px;
}
.woocommerce .woocommerce-cart-form .product-name a {
  color: rgba(255, 255, 255, 0.8);
}
.woocommerce .woocommerce-cart-form .product-name a:hover, .woocommerce .woocommerce-cart-form .product-name a:active {
  color: white;
}
.woocommerce .woocommerce-order-details .product-name a {
  color: white;
}
.woocommerce #customer_details .woocommerce-input-wrapper,
.woocommerce #customer_details .form-control {
  width: 100%;
}
.woocommerce #customer_details .woocommerce-input-wrapper.woocommerce-form__input-checkbox,
.woocommerce #customer_details .form-control.woocommerce-form__input-checkbox {
  width: auto;
}
.woocommerce .woocommerce-privacy-policy-text {
  color: var(--dark-color);
  font-size: 18px;
}
.woocommerce .woocommerce-privacy-policy-text p {
  color: var(--dark-color);
}

/* -------------------------------------------------------------------------------- */
/* BODY INVERTED ------------------------------------------------------------------ */
/* -------------------------------------------------------------------------------- */
body.body-inverted {
  background-color: #FFFFFF;
  color: var(--dark-color);
}
body.body-inverted .cart-count {
  color: white;
}
body.body-inverted .btn span {
  color: var(--dark-color);
}
body.body-inverted .btn.btn-outline {
  border: 1px solid var(--dark-color);
}
body.body-inverted .btn.btn-outline i {
  color: var(--dark-color);
}
body.body-inverted .newsletter-background-container {
  margin-bottom: 0;
}
body.body-inverted .newsletter-background-container:after {
  background-color: #DEE1E0;
}
body.body-inverted .newsletter-background-container .background-pattern {
  opacity: 0.3;
}
body.body-inverted footer.main-footer {
  background-color: #DEE1E0 !important;
}
body.body-inverted footer.main-footer .footer-upper-menu ul li a {
  color: var(--dark-color);
}
body.body-inverted footer.main-footer .footer-upper-menu ul li:after {
  content: url("../../img/diamond-dark.svg");
}
body.body-inverted footer.main-footer .background-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  z-index: 1;
  opacity: 0.3;
  display: block;
  -webkit-clip-path: polygon(30% 0, 100% 0, 100% 70%, 0 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 70%, 0 100%);
}
body.body-inverted .woocommerce-loop-product__title,
body.body-inverted .product-name {
  color: var(--dark-color);
}
body.body-inverted .background-pattern {
  background-image: var(--pattern-dark);
}
body.body-inverted .account a {
  color: var(--dark-color);
}
body.body-inverted .account a:hover, body.body-inverted .account a:active {
  color: inherit;
}
body.body-inverted .account input:not([type=checkbox]),
body.body-inverted .account select {
  color: var(--dark-color);
  border-bottom-color: var(--dark-color);
}

body.devyldre .main-header,
body.studio1974 .main-header {
  padding: 10px 0px;
}
body.devyldre .main-header .logo,
body.studio1974 .main-header .logo {
  max-height: 100px;
}
@media (max-width: 767px) {
  body.devyldre .main-header .logo,
body.studio1974 .main-header .logo {
    max-height: 60px;
  }
}
body.devyldre .background-pattern,
body.devyldre .background-pattern:after,
body.devyldre .main-container:after,
body.studio1974 .background-pattern,
body.studio1974 .background-pattern:after,
body.studio1974 .main-container:after {
  background-size: 81px;
  background-repeat: repeat;
}
body.devyldre footer.main-footer .logo,
body.studio1974 footer.main-footer .logo {
  max-height: 100px;
}

body.studio1974 .background-pattern,
body.studio1974 .background-pattern:after,
body.studio1974 .main-container:after {
  background-size: 41px;
  background-repeat: repeat;
}

body.studio1974 .main-container:after,
body.hoodx .main-container:after {
  pointer-events: none;
  z-index: 0;
}
body.studio1974 .background-pattern:after,
body.hoodx .background-pattern:after {
  z-index: -1;
  pointer-events: none;
}

body.hoodx .main-container:after {
  opacity: 0.3;
}

.search-filter-scroll-loading {
  position: relative;
  margin: 0 auto;
  left: 50%;
  right: 50%;
  float: left;
  clear: both;
}

/* -------------------------------------------------------------------------------- */
/* STUDIO 1974 -------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
.studio1974 .variations {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .studio1974 .variations {
    margin-top: 20px;
  }
}
.studio1974 .variations label {
  margin: 0;
  display: flex;
  align-items: center;
  margin-top: -20px !important;
  text-align: left;
}
@media (max-width: 549px) {
  .studio1974 .variations label {
    margin-top: 0px !important;
  }
}
.studio1974 .variations .select2 {
  width: 50% !important;
  margin-bottom: 20px !important;
  min-width: auto !important;
}
@media (max-width: 549px) {
  .studio1974 .variations .select2 {
    margin-bottom: 20px !important;
  }
}
.studio1974 .variations .reset_variations {
  display: none !important;
}
.studio1974 .variations label,
.studio1974 .variations .select2 {
  width: 50%;
}
@media (max-width: 549px) {
  .studio1974 .variations label,
.studio1974 .variations .select2 {
    width: 100% !important;
  }
}
.studio1974 .single_variation_wrap .woocommerce-variation-price {
  text-align: right;
}
.studio1974.post-type-archive-product #primary, .studio1974.tax-product_cat #primary, .studio1974.woocommerce-page #primary, .studio1974.page-template-page-contact #primary, .studio1974.post-type-archive-portfolio #primary, .studio1974.page-template-default.page #primary {
  padding: 0;
}
.studio1974.post-type-archive-product main, .studio1974.tax-product_cat main, .studio1974.woocommerce-page main, .studio1974.page-template-page-contact main, .studio1974.post-type-archive-portfolio main, .studio1974.page-template-default.page main {
  padding: 80px 0;
}
.studio1974.post-type-archive-product main section.textpage, .studio1974.tax-product_cat main section.textpage, .studio1974.woocommerce-page main section.textpage, .studio1974.page-template-page-contact main section.textpage, .studio1974.post-type-archive-portfolio main section.textpage, .studio1974.page-template-default.page main section.textpage {
  margin: 0;
}
.studio1974.post-type-archive-portfolio section {
  margin: 0;
}
.studio1974.page-template-page-contact main {
  padding-bottom: 0;
}
.studio1974 .view,
.studio1974 .btn span {
  font-family: Reforma-Blanca;
  font-style: normal;
}
.studio1974 #breadcrumbs {
  display: none;
}
.studio1974 .single-product .product-title {
  margin-top: 30px;
}
.studio1974 h1.section-title span {
  font-family: Georgia !important;
  font-size: 60px !important;
}
.studio1974 .home-header-alt-image-content h2 span {
  font-family: Georgia !important;
}
.studio1974 .subtitle {
  color: var(--greyish-teal-color);
  font-size: 28px;
  font-family: Reforma-Blanca;
  text-transform: none;
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-top: -15px;
  margin-bottom: 30px;
  text-transform: lowercase;
}
.studio1974 .card-title {
  font-size: 28px;
}
.studio1974 .post-type-archive-portfolio main {
  padding: 80px 0;
}
.studio1974.post-type-archive-portfolio .subtitle {
  margin-bottom: 40px;
  margin-top: -20px;
}
.studio1974 .newsletter-section .content-block {
  padding: 60px 60px 40px 60px !important;
}
.studio1974 .newsletter-section .gform_body ul li {
  margin-top: 20px !important;
}
.studio1974 .newsletter-section .gform_body ul li:first-child {
  margin-top: 0;
}
.studio1974 .newsletter-section .gform_body ul li .ginput_container {
  margin-top: 0;
}
.studio1974 .newsletter-section .gform_body ul li textarea {
  height: 200px;
  border: 0px;
  border-bottom: 2px solid #22362c;
}
.studio1974 .product .woocommerce-loop-product__title {
  margin-bottom: 1rem !important;
}
.studio1974 .product .view {
  color: var(--greyish-teal-color);
  transition: 0.2s ease-in-out;
}
.studio1974 .product .view:hover, .studio1974 .product .view:active {
  color: #FFFFFF;
}
.studio1974 .card-title,
.studio1974 .woocommerce-loop-product__title {
  font-size: 24px !important;
  text-transform: uppercase !important;
  font-family: Inknut-Antiqua !important;
  font-weight: 300;
  display: block;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  letter-spacing: 3px !important;
  line-height: 1.56;
  margin-bottom: 0.75rem;
}
.studio1974 .newest-products .slick-track,
.studio1974 .newest-portfolio-items .slick-track {
  display: flex;
}
.studio1974 .newest-products .slick-track .slick-slide,
.studio1974 .newest-portfolio-items .slick-track .slick-slide {
  height: unset;
  display: flex !important;
}
.studio1974 .newest-products .slick-track .slick-slide > div,
.studio1974 .newest-portfolio-items .slick-track .slick-slide > div {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.studio1974 .newest-products .slick-track .product > a:first-child,
.studio1974 .newest-products .slick-track .card,
.studio1974 .newest-portfolio-items .slick-track .product > a:first-child,
.studio1974 .newest-portfolio-items .slick-track .card {
  flex: 1;
}
.studio1974 .partners .slick-slide img {
  object-fit: contain;
}
.studio1974 ul.products {
  display: flex;
  flex-wrap: wrap;
}
.studio1974 ul.products li {
  display: flex;
  flex-direction: column;
}
.studio1974 ul.products li .product {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.studio1974 ul.products li .product a:first-child {
  flex: 1;
}
.studio1974 .newsletter-section .newsletter {
  background-color: transparent;
}
@media (max-width: 1199px) {
  .studio1974 .newsletter-section .newsletter {
    padding: 0 !important;
  }
}
.studio1974 .newsletter-section form input,
.studio1974 .newsletter-section form textarea {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.studio1974 .newsletter-section form input:focus,
.studio1974 .newsletter-section form textarea:focus {
  outline: 0;
}
.studio1974 .newsletter-section form textarea {
  height: 150px !important;
}
.studio1974 .newsletter-section form label {
  display: none !important;
}
.studio1974 .newsletter-section .content-block {
  background-color: #FFFFFF;
}
.studio1974 .newsletter-section .background-image {
  flex: 1;
  height: 100%;
  transform: translateX(0px) !important;
}

/* -------------------------------------------------------------------------------- */
/* WPML Language Switcher --------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
.main-header .wpml-ls-statics-shortcode_actions {
  display: inline-flex;
  background-color: transparent;
  width: auto;
  color: #fff !important;
  vertical-align: text-top;
  padding-left: 0.25em;
}
.main-header .wpml-ls-statics-shortcode_actions * {
  color: currentColor;
  background-color: transparent;
  border: none;
}
.main-header .wpml-ls-statics-shortcode_actions ul {
  width: 100%;
  left: unset;
}
.main-header .wpml-ls-statics-shortcode_actions ul * {
  display: block !important;
  width: auto !important;
}
.main-header .wpml-ls-statics-shortcode_actions ul li {
  display: block;
}
.main-header .wpml-ls-statics-shortcode_actions ul li > a {
  color: #fff;
  background: transparent;
  border: none;
  padding: 0;
  font-size: 20px;
  line-height: 1em;
  margin: 2px 0;
}
.main-header .wpml-ls-statics-shortcode_actions ul li > a:after {
  display: none;
}
.main-header .wpml-ls-statics-shortcode_actions ul li:hover a, .main-header .wpml-ls-statics-shortcode_actions ul li:focus a, .main-header .wpml-ls-statics-shortcode_actions ul li:active a {
  background: transparent;
  color: #fff;
}
.main-header .wpml-ls-statics-shortcode_actions ul li ul {
  transform: translateY(10px) !important;
}

/* -------------------------------------------------------------------------------- */
/* DE VYLDRE ---------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
.devyldre.post-type-archive-product #primary, .devyldre.tax-product_cat #primary, .devyldre.woocommerce-page #primary, .devyldre.page-template-page-contact #primary, .devyldre.post-type-archive-portfolio #primary, .devyldre.page-template-default.page #primary {
  padding: 0;
}
.devyldre.post-type-archive-product main, .devyldre.tax-product_cat main, .devyldre.woocommerce-page main, .devyldre.page-template-page-contact main, .devyldre.post-type-archive-portfolio main, .devyldre.page-template-default.page main {
  padding: 80px 0;
}
.devyldre.post-type-archive-product main section.textpage, .devyldre.tax-product_cat main section.textpage, .devyldre.woocommerce-page main section.textpage, .devyldre.page-template-page-contact main section.textpage, .devyldre.post-type-archive-portfolio main section.textpage, .devyldre.page-template-default.page main section.textpage {
  margin: 0;
}
.devyldre.post-type-archive-portfolio section {
  margin: 0;
}
.devyldre.page-template-page-contact main {
  padding-bottom: 0;
}
.devyldre.home main {
  padding-bottom: 0;
  padding-top: 0;
}
