/* ---------------------------------- */
/* ----------- BASE CONFIG ---------- */
/* ---------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --laptop--non-retina: 1600px;
  --ipad--portrait: 1024px;
  --tablet--portrait: 768px;
  --mobile--portrait: 480px;
  --mobile-s--portrait: 320px;
  --screen: screen;
  --handheld: handheld;
  --portrait: portrait;
  --landscape: landscape;
}

/* -------------------------- */
/* --------- RESET ---------- */
/* -------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html {
  overflow-x: hidden;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

/* -------------------------- */
:root {
  --space-m: 16px;
  --space-xxs: calc(var(--space-m) / 8);
  --space-xs: calc(var(--space-m) / 4);
  --space-s: calc(var(--space-m) / 2);
  --space-l: calc(var(--space-m) * 2);
  --space-xl: calc(var(--space-m) * 4);
  --space-xxl: calc(var(--space-m) * 8);
  --space-inset-m: var(--space-m) var(--space-m) var(--space-m) var(--space-m);
  --space-inset-xs: var(--space-xs) var(--space-xs) var(--space-xs) var(--space-xs);
  --space-inset-s: var(--space-s) var(--space-s) var(--space-s) var(--space-s);
  --space-inset-m: var(--space-m) var(--space-m) var(--space-m) var(--space-m);
  --space-inset-l: var(--space-l) var(--space-l) var(--space-l) var(--space-l);
  --space-inset-xl: var(--space-xl) var(--space-xl) var(--space-xl) var(--space-xl);
  --space-stretch-xs: var(--space-xs) var(--space-xxs);
  --space-stretch-s: var(--space-s) var(--space-xs);
  --space-stretch-m: var(--space-m) var(--space-s);
  --space-stretch-l: var(--space-l) var(--space-m);
  --space-stretch-xl: var(--space-xl) var(--space-l);
  --space-squish-xs: var(--space-xxs) var(--space-xs);
  --space-squish-s: var(--space-xs) var(--space-s);
  --space-squish-m: var(--space-s) var(--space-m);
  --space-squish-l: var(--space-m) var(--space-l);
  --space-squish-xl: var(--space-l) var(--space-xl);
  --space-stack-xs: 0 0 var(--space-xs) 0;
  --space-stack-s: 0 0 var(--space-s) 0;
  --space-stack-m: 0 0 var(--space-m) 0;
  --space-stack-l: 0 0 var(--space-l) 0;
  --space-stack-xl: 0 0 var(--space-xl) 0;
  --space-inline-m: 0 var(--space-m) 0 0;
  --space-inline-xs: 0 var(--space-xs) 0 0;
  --space-inline-s: 0 var(--space-s) 0 0;
  --space-inline-m: 0 var(--space-m) 0 0;
  --space-inline-l: 0 var(--space-l) 0 0;
  --space-inline-xl: 0 var(--space-xl) 0 0;
}

/* CUSTOM THEME COLOR */
.ft--transparent {
  color: transparent;
}

.bg.bg--transparent {
  --bg-color: transparent;
}

.bc--transparent {
  background-color: transparent;
}

.ft--green-blue {
  color: #FF6C34;
}

.bg.bg--green-blue {
  --bg-color: #FF6C34;
}

.bc--green-blue {
  background-color: #FF6C34;
}

.ft--main {
  color: rgba(0, 192, 139, 0.05);
}

.bg.bg--main {
  --bg-color: rgba(0, 192, 139, 0.05);
}

.bc--main {
  background-color: rgba(0, 192, 139, 0.05);
}

.ft--light {
  color: rgba(1, 1, 1, 0.02);
}

.bg.bg--light {
  --bg-color: rgba(1, 1, 1, 0.02);
}

.bc--light {
  background-color: rgba(1, 1, 1, 0.02);
}

:root {
  --transparent: transparent;
  --white: #ffffff;
  --black: #010101;
  --bc-1: #FF6C34;
  --bc-1-lighter-30: #FF6C34;
  --bc-2: #9edad3;
  --bc-2-lighter-30: #afede5;
  --bc-3: #aabfff;
  --bc-3-lighter-30: #c7d5ff;
  --g-03: #f5f5f5;
  --g-05: #f0f0f0;
  --g-10: #e0e0e0;
  --g-30: #bbbbbb;
  --g-80: #2d2d2d;
  --g-90: #161616;
}

.bg {
  --bg-color: #010101;
  background-color: var(--bg-color);
}

.ft {
  --ft-color: #010101;
  color: var(--ft-color);
}

.bc {
  --bc-color: #010101;
  border-color: var(--bc-color);
}

.bg--transparent {
  --bg-color: transparent;
}

.ft--transparent {
  --ft-color: transparent;
}

.bc--transparent {
  --bc-color: transparent;
}

.bg--white, .footer__social .footer__social-items .footer__social-item {
  --bg-color: #ffffff;
}

.ft--white {
  --ft-color: #ffffff;
}

.bc--white {
  --bc-color: #ffffff;
}

.bg--hov-white:hover {
  --bg-color: #ffffff;
}

.ft--hov-white:hover {
  --ft-color: #ffffff;
}

.bc--hov-white:hover {
  --bc-color: #ffffff;
}

.bg--black {
  --bg-color: #010101;
}

.ft--black, .footer__social .footer__social-items .footer__social-item {
  --ft-color: #010101;
}

.bc--black {
  --bc-color: #010101;
}

.bg--hov-black:hover {
  --bg-color: #010101;
}

.ft--hov-black:hover {
  --ft-color: #010101;
}

.bc--hov-black:hover {
  --bc-color: #010101;
}

.bg--bc-1, .top--article {
  --bg-color: #FF6C34;
}

.ft--bc-1 {
  --ft-color: #FF6C34;
}

.bc--bc-1 {
  --bc-color: #FF6C34;
}

.bg--hov-bc-1:hover {
  --bg-color: #FF6C34;
}

.ft--hov-bc-1:hover {
  --ft-color: #FF6C34;
}

.bc--hov-bc-1:hover {
  --bc-color: #FF6C34;
}

.bg--bc-1-lighter-30 {
  --bg-color: #FF6C34;
}

.ft--bc-1-lighter-30 {
  --ft-color: #FF6C34;
}

.bc--bc-1-lighter-30 {
  --bc-color: #FF6C34;
}

.bg--hov-bc-1-lighter-30:hover {
  --bg-color: #FF6C34;
}

.ft--hov-bc-1-lighter-30:hover {
  --ft-color: #FF6C34;
}

.bc--hov-bc-1-lighter-30:hover {
  --bc-color: #FF6C34;
}

.bg--bc-2 {
  --bg-color: #9edad3;
}

.ft--bc-2 {
  --ft-color: #9edad3;
}

.bc--bc-2 {
  --bc-color: #9edad3;
}

.bg--hov-bc-2:hover {
  --bg-color: #9edad3;
}

.ft--hov-bc-2:hover {
  --ft-color: #9edad3;
}

.bc--hov-bc-2:hover {
  --bc-color: #9edad3;
}

.bg--bc-2-lighter-30 {
  --bg-color: #afede5;
}

.ft--bc-2-lighter-30 {
  --ft-color: #afede5;
}

.bc--bc-2-lighter-30 {
  --bc-color: #afede5;
}

.bg--hov-bc-2-lighter-30:hover {
  --bg-color: #afede5;
}

.ft--hov-bc-2-lighter-30:hover {
  --ft-color: #afede5;
}

.bc--hov-bc-2-lighter-30:hover {
  --bc-color: #afede5;
}

.bg--bc-3 {
  --bg-color: #aabfff;
}

.ft--bc-3 {
  --ft-color: #aabfff;
}

.bc--bc-3 {
  --bc-color: #aabfff;
}

.bg--hov-bc-3:hover {
  --bg-color: #aabfff;
}

.ft--hov-bc-3:hover {
  --ft-color: #aabfff;
}

.bc--hov-bc-3:hover {
  --bc-color: #aabfff;
}

.bg--bc-3-lighter-30 {
  --bg-color: #c7d5ff;
}

.ft--bc-3-lighter-30 {
  --ft-color: #c7d5ff;
}

.bc--bc-3-lighter-30 {
  --bc-color: #c7d5ff;
}

.bg--hov-bc-3-lighter-30:hover {
  --bg-color: #c7d5ff;
}

.ft--hov-bc-3-lighter-30:hover {
  --ft-color: #c7d5ff;
}

.bc--hov-bc-3-lighter-30:hover {
  --bc-color: #c7d5ff;
}

.bg--g-03 {
  --bg-color: #f5f5f5;
}

.ft--g-03 {
  --ft-color: #f5f5f5;
}

.bc--g-03 {
  --bc-color: #f5f5f5;
}

.bg--hov-g-03:hover {
  --bg-color: #f5f5f5;
}

.ft--hov-g-03:hover {
  --ft-color: #f5f5f5;
}

.bc--hov-g-03:hover {
  --bc-color: #f5f5f5;
}

.bg--g-05 {
  --bg-color: #f0f0f0;
}

.ft--g-05 {
  --ft-color: #f0f0f0;
}

.bc--g-05 {
  --bc-color: #f0f0f0;
}

.bg--hov-g-05:hover {
  --bg-color: #f0f0f0;
}

.ft--hov-g-05:hover {
  --ft-color: #f0f0f0;
}

.bc--hov-g-05:hover {
  --bc-color: #f0f0f0;
}

.bg--g-10 {
  --bg-color: #e0e0e0;
}

.ft--g-10 {
  --ft-color: #e0e0e0;
}

.bc--g-10 {
  --bc-color: #e0e0e0;
}

.bg--hov-g-10:hover {
  --bg-color: #e0e0e0;
}

.ft--hov-g-10:hover {
  --ft-color: #e0e0e0;
}

.bc--hov-g-10:hover {
  --bc-color: #e0e0e0;
}

.bg--g-30 {
  --bg-color: #bbbbbb;
}

.ft--g-30 {
  --ft-color: #bbbbbb;
}

.bc--g-30 {
  --bc-color: #bbbbbb;
}

.bg--hov-g-30:hover {
  --bg-color: #bbbbbb;
}

.ft--hov-g-30:hover {
  --ft-color: #bbbbbb;
}

.bc--hov-g-30:hover {
  --bc-color: #bbbbbb;
}

.bg--g-80 {
  --bg-color: #2d2d2d;
}

.ft--g-80 {
  --ft-color: #2d2d2d;
}

.bc--g-80 {
  --bc-color: #2d2d2d;
}

.bg--hov-g-80:hover {
  --bg-color: #2d2d2d;
}

.ft--hov-g-80:hover {
  --ft-color: #2d2d2d;
}

.bc--hov-g-80:hover {
  --bc-color: #2d2d2d;
}

.bg--g-90 {
  --bg-color: #161616;
}

.ft--g-90 {
  --ft-color: #161616;
}

.bc--g-90 {
  --bc-color: #161616;
}

.bg--hov-g-90:hover {
  --bg-color: #161616;
}

.ft--hov-g-90:hover {
  --ft-color: #161616;
}

.bc--hov-g-90:hover {
  --bc-color: #161616;
}

:root {
  --content-max-width: 1420px;
  --content-medium-width: 1200px;
  --content-min-width: 950px;
  --top-large-height: 700px;
  --top-medium-height: 550px;
  --top-small-height: 400px;
  --header-height: 64px;
  --logo-width: 128px;
  --menu-width: 1280px;
  --block-max-height: 500px;
  --footer--logo-width: 100px;
  --z-index--modal: 20;
  --layer-viewport: 20;
  --z-index--overlay: 15;
  --z-index--dropdown: 10;
  --z-index--header: 5;
  --z-index--footer: 5;
  --z-index--highlight: 2;
  --z-index--body: 1;
  --z-index--background: 0;
  --z-index--hidden: -2;
  --distance-animation: 120px;
}

@media (max-width: 1250px) {
  :root {
    --logo-width: 80px;
  }
}
@media (max-width: 900px,) {
  :root {
    --content-max-width: 100%;
    --header-height: 64px;
    --menu-width: 100%;
    --top-small-height: 400px;
  }
}
@media (max-width: 768px,) {
  :root {
    --content-medium-width: 100%;
    --top-small-height: 350px;
  }
}
@media (max-width: 480px,) {
  :root {
    --content-min-width: 100%;
    --top-small-height: 350px;
    --top-large-height: 550px;
    --top-medium-height: 450px;
    --header-height: 48px;
  }
}
/* COPY ALL THIS CODE IN THE TINYMCE STYLES.CSS IN THE BACK */
html {
  font-size: 10px;
}
@media (max-width: 480px) {
  html {
    font-size: 9px;
  }
}
@media (max-width: 350px) {
  html {
    font-size: 8px;
  }
}

:root {
  /* DISPLAY L FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --display-l-ff: "Roboto Slab", serif;
  --display-l-fs: 72px;
  --display-l-fw: normal;
  --display-l-lh: 1.11;
  /* DISPLAY M FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --display-m-ff: "Roboto Slab", serif;
  --display-m-fs: 52px;
  --display-m-fw: normal;
  --display-m-lh: 1.25;
  /* DISPLAY S FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --display-s-ff: "Roboto Slab", serif;
  --display-s-fs: 43px;
  --display-s-fw: normal;
  --display-s-lh: 1.21;
  /* HEADLINE FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --headline-ff: "Roboto", sans-serif;
  --headline-fs: 30px;
  --headline-fw: 300;
  --headline-lh: 1.3;
  /* TITLE FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --title-ff: "Roboto", sans-serif;
  --title-fs: 25px;
  --title-fw: 300;
  --title-lh: 1.4;
  /* TITLE FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --subtitle-ff: "Roboto", sans-serif;
  --subtitle-fs: 20px;
  --subtitle-fw: 300;
  --subtitle-lh: 1.75;
  /* BUTTON FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --button-ff: "Roboto", sans-serif;
  --button-fs: 11px;
  --button-fw: 500;
  --button-lh: 1.27;
  /* BODY FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --body-ff: "Roboto", sans-serif;
  --body-fs: 16px;
  --body-fw: 300;
  --body-lh: 1.88;
  /* CAPTION FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --caption-ff: "Roboto", sans-serif;
  --caption-fs: 14px;
  --caption-fw: 300;
  --caption-lh: 1.93;
  /* SMALL FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT */
  --small-ff: "Roboto", sans-serif;
  --small-fs: 11px;
  --small-fw: 300;
  --small-lh: 1.27;
}
:root * {
  font-weight: 300;
  font-family: "Roboto", sans-serif;
}
@media (min-width: 1200px) and (max-width: 1440px) {
  :root {
    --display-l-fs: 52px;
    --display-l-lh: 1.25;
    --display-m-fs: 45px;
    --display-m-lh: 1.21;
    --display-s-fs: 32px;
    --display-s-lh: 1.3;
    --body-fs: 14px;
    --headline-fs: 22px;
  }
}
@media (min-width: 769px) and (max-width: 1199px) {
  :root {
    --display-l-fs: 5rem;
    --display-l-lh: 5.2rem;
    --display-m-fs: 4rem;
    --display-m-lh: 4.8rem;
    --display-s-fs: 3.6rem;
    --display-s-lh: 4rem;
    --body-fs: 1.8rem;
    --headline-fs: 2.2rem;
  }
}
@media (max-width: 768px) {
  :root {
    --display-l-fs: 3.8rem;
    --display-l-lh: 5rem;
    --display-m-fs: 3rem;
    --display-m-lh: 4.2rem;
    --display-s-fs: 2rem;
    --display-s-lh: 2.7rem;
    --body-fs: 1.4rem;
    --headline-fs: 1.8rem;
  }
}

.display-l {
  font-family: var(--display-l-ff);
  font-size: var(--display-l-fs);
  font-weight: var(--display-l-fw);
  line-height: var(--display-l-lh);
}

.display-m {
  font-family: var(--display-m-ff);
  font-size: var(--display-m-fs);
  font-weight: var(--display-m-fw);
  line-height: var(--display-m-lh);
}

.display-s {
  font-family: var(--display-s-ff);
  font-size: var(--display-s-fs);
  font-weight: var(--display-s-fw);
  line-height: var(--display-s-lh);
}

.headline-font, .ecommerce .user__name, .productos-relacionados__titulo h2, .product .top-info .product-data__categoria, .filter-categories h3, .categoria-recambios__item h3 {
  font-family: var(--headline-ff);
  font-size: var(--headline-fs);
  font-weight: var(--headline-fw);
  line-height: var(--headline-lh);
}

.title-font {
  font-family: var(--title-ff);
  font-size: var(--title-fs);
  font-weight: var(--title-fw);
  line-height: var(--title-lh);
}

.subtitle-font {
  font-family: var(--subtitle-ff);
  font-size: var(--subtitle-fs);
  font-weight: var(--subtitle-fw);
  line-height: var(--subtitle-lh);
}

.button-font, .button-block .button {
  font-family: var(--button-ff);
  font-size: var(--button-fs);
  font-weight: var(--button-fw);
  line-height: var(--button-lh);
}

.body-font, .articles-related .content .articles-wrapper article .article-text p, .article__socials .date p, .langs a,
.langs span, .form .form-block input[type=text],
.form .form-block input[type=textarea],
.form .form-block input[type=email],
.form .form-block input[type=tel],
.form .form-block input[type=number],
.form .form-block input[type=date],
.form .form-block input[type=password],
.form .form-block textarea,
.form .form-block select, .form .form-block label, body,
p {
  font-family: var(--body-ff);
  font-size: var(--body-fs);
  font-style: normal;
  font-weight: var(--body-fw);
  line-height: var(--body-lh);
}

.body-font--bold, .productos-relacionados__productos__producto .relacionado__nombre,
.productos-relacionados__productos__producto .relacionado__precio {
  font-family: var(--body-ff);
  font-size: var(--body-fs);
  font-style: normal;
  font-weight: 600;
  line-height: var(--body-lh);
}

strong,
b {
  font-weight: 600;
}

.body-font--italic, .amount__title,
.body-font em,
.articles-related .content .articles-wrapper article .article-text p em,
.article__socials .date p em,
.langs a em,
.langs span em,
.form .form-block input[type=text] em,
.form .form-block input[type=textarea] em,
.form .form-block input[type=email] em,
.form .form-block input[type=tel] em,
.form .form-block input[type=number] em,
.form .form-block input[type=date] em,
.form .form-block input[type=password] em,
.form .form-block textarea em,
.form .form-block select em,
.form .form-block label em,
body em {
  font-family: var(--body-ff);
  font-size: var(--body-fs);
  font-style: italic;
  font-weight: normal;
  line-height: var(--body-lh);
}

.caption-font, .ecommerce .aside__item-name, .form .form-block.legal, .form .form-block.checkbox, .alert__message, .footer__legal .footer__legal-item {
  font-family: var(--caption-ff);
  font-size: var(--caption-fs);
  font-weight: var(--caption-fw);
  line-height: var(--caption-lh);
  letter-spacing: 1px;
}

.small-font {
  font-family: var(--small-ff);
  font-size: var(--small-fs);
  font-weight: var(--small-fw);
  line-height: var(--small-lh);
  letter-spacing: 1px;
}

.font--bold, .font.bold {
  font-weight: 500;
}
.font--light, .font.light {
  font-weight: 300;
}
.font--italic, .font.italic {
  font-style: italic;
  font-weight: normal;
}
.font--large, .font.large {
  font-size: 20px;
}

/* -------------------------- */
/* ---------------------------------- */
/* ---------------------------------- */
/* --------- GENERAL LAYOUTS -------- */
/* ---------------------------------- */
/* -------------------------- */
/* ------ GENERAL GRID ------ */
/* ------ LAYOUT ------------ */
/* -------------------------- */
html,
body {
  overflow-x: hidden;
}

a {
  font-weight: bold;
  color: var(--bc-1);
  text-decoration: none;
  transitioon: all 0.2s ease-out;
}
a:hover {
  text-decoration: underline;
}
a.text-link {
  color: black;
  font-weight: 300;
  font-style: italic;
  /* text-decoration: underline; */
  /* line-height: 31px; */
  border-bottom: 1px solid black;
  height: -moz-fit-content;
  height: fit-content;
  text-decoration: none;
  transitioon: all 0.2s ease-out;
}
a.text-link:hover {
  color: #555;
  border-bottom-color: #555;
}

ul {
  list-style-type: disc;
  margin-bottom: var(--space-m);
}

ul li {
  list-style: none;
}

ol {
  counter-reset: ol-counter;
}

ol li {
  margin-bottom: var(--space-s);
  max-width: calc(100% - 50px);
  display: flex;
}

ol li:before {
  content: counter(ol-counter) ".";
  counter-increment: ol-counter;
  display: inline-block;
  width: 20px;
  margin-right: var(--space-s);
  font-style: normal;
  text-align: right;
}

img {
  max-width: 100%;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

.cover-video {
  position: relative;
  overflow: hidden;
}
.cover-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: 0.5s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
}
.cover-video video.loaded {
  opacity: 1;
}
.cover-video video.horizontal {
  width: 100%;
  height: none;
}
.cover-video video.vertical {
  width: none;
  height: 100%;
}

html {
  position: relative;
  min-height: 100%;
  background-color: var(--white);
}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  margin: 0;
  color: var(--g-80);
}

.wrapper {
  flex-grow: 1;
}

.main .block.carrousel-container {
  padding: var(--space-m) 0 0;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .main .block.carrousel-container {
    padding: 0;
  }
}

.full {
  width: 100% !important;
  max-width: none;
}

.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

/* -------------------------- */
/* -------------------------- */
/* ------ GRID LAYOUT ------- */
/* -------------------------- */
.flex {
  display: flex;
}
.flex.row {
  flex-direction: row;
}
.flex.row-reverse {
  flex-direction: row-reverse;
}
.flex.column {
  flex-direction: column;
}
.flex.column-reverse {
  flex-direction: column-reverse;
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex.nowrap {
  flex-wrap: nowrap;
}
.flex.justify-start {
  justify-content: flex-start;
}
.flex.justify-end {
  justify-content: flex-end;
}
.flex.justify-center {
  justify-content: center;
}
.flex.justify-between {
  justify-content: space-between;
}
.flex.justify-around {
  justify-content: space-around;
}
.flex.items-start {
  align-items: flex-start;
}
.flex.items-end {
  align-items: flex-end;
}
.flex.items-center {
  align-items: center;
}
.flex.items-baseline {
  align-items: baseline;
}
.flex.items-stretch {
  align-items: stretch;
}
.flex.content-start {
  align-content: flex-start;
}
.flex.content-end {
  align-content: flex-end;
}
.flex.content-center {
  align-content: center;
}
.flex.content-between {
  align-content: space-between;
}
.flex.content-around {
  align-content: space-around;
}
.flex.content-stretch {
  align-content: stretch;
}
.flex .flex-oneoftwo {
  width: 50%;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .flex .flex-oneoftwo {
    width: 100%;
  }
}
.flex .flex-oneofthree {
  width: 33.33%;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .flex .flex-oneofthree {
    width: 50%;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .flex .flex-oneofthree {
    width: 100%;
  }
}
.flex .flex-oneoffour {
  width: 25%;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .flex .flex-oneoffour {
    width: 50%;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .flex .flex-oneoffour {
    width: 100%;
  }
}
.flex .flex-oneoffive {
  width: 20%;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .flex .flex-oneoffive {
    width: 50%;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .flex .flex-oneoffive {
    width: 100%;
  }
}
.flex .flex-oneofsix {
  width: 16.66%;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .flex .flex-oneofsix {
    width: 50%;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .flex .flex-oneofsix {
    width: 100%;
  }
}
.flex .item.grow {
  flex-grow: 1;
}
.flex .item.grow-2 {
  flex-grow: 2;
}
.flex .item.grow-3 {
  flex-grow: 3;
}
.flex .item.grow-4 {
  flex-grow: 4;
}
.flex .item.start {
  align-self: flex-start;
}
.flex .item.end {
  align-self: flex-end;
}
.flex .item.center {
  align-self: center;
}
.flex .item.baseline {
  align-self: baseline;
}
.flex .item.stretch {
  align-self: stretch;
}
.flex .item.full {
  width: 100%;
}
.flex .item.oneoftwo {
  width: 50%;
}
.flex .item.oneofthree {
  width: 33.3333333333%;
}
.flex .item.twoofthree {
  width: 66.6666666667%;
}
.flex .item.oneoffour {
  width: 25%;
}
.flex .item.twooffour {
  width: 50%;
}
.flex .item.threeoffour {
  width: 75%;
}
.flex .item.oneoffive {
  width: 20%;
}
.flex .item.twooffive {
  width: 40%;
}
.flex .item.threeoffive {
  width: 60%;
}
.flex .item.fouroffive {
  width: 80%;
}
.flex .item.oneofsix {
  width: 16.6666666667%;
}
.flex .item.twoofsix {
  width: 33.3333333333%;
}
.flex .item.threeofsix {
  width: 50%;
}
.flex .item.fourofsix {
  width: 66.6666666667%;
}
.flex .item.fiveofsix {
  width: 83.3333333333%;
}
.flex .item.oneofseven {
  width: 14.2857142857%;
}
.flex .item.twoofseven {
  width: 28.5714285714%;
}
.flex .item.threeofseven {
  width: 42.8571428571%;
}
.flex .item.fourofseven {
  width: 57.1428571429%;
}
.flex .item.fiveofseven {
  width: 71.4285714286%;
}
.flex .item.sixofseven {
  width: 85.7142857143%;
}
.flex .item.oneofeight {
  width: 12.5%;
}
.flex .item.twoofeight {
  width: 25%;
}
.flex .item.threeofeight {
  width: 37.5%;
}
.flex .item.fourofeight {
  width: 50%;
}
.flex .item.fiveofeight {
  width: 62.5%;
}
.flex .item.sixofeight {
  width: 75%;
}
.flex .item.sevenofeight {
  width: 87.5%;
}
.flex .item.oneofnine {
  width: 11.1111111111%;
}
.flex .item.twoofnine {
  width: 22.2222222222%;
}
.flex .item.threeofnine {
  width: 33.3333333333%;
}
.flex .item.fourofnine {
  width: 44.4444444444%;
}
.flex .item.fiveofnine {
  width: 55.5555555556%;
}
.flex .item.sixofnine {
  width: 66.6666666667%;
}
.flex .item.sevenofnine {
  width: 77.7777777778%;
}
.flex .item.eightofnine {
  width: 88.8888888889%;
}
.flex .item.oneoften {
  width: 10%;
}
.flex .item.twooften {
  width: 20%;
}
.flex .item.threeoften {
  width: 30%;
}
.flex .item.fouroften {
  width: 40%;
}
.flex .item.fiveoften {
  width: 50%;
}
.flex .item.sixoften {
  width: 60%;
}
.flex .item.sevenoften {
  width: 70%;
}
.flex .item.eightoften {
  width: 80%;
}
.flex .item.nineoften {
  width: 90%;
}
.flex .item.oneofeleven {
  width: 9.0909090909%;
}
.flex .item.twoofeleven {
  width: 18.1818181818%;
}
.flex .item.threeofeleven {
  width: 27.2727272727%;
}
.flex .item.fourofeleven {
  width: 36.3636363636%;
}
.flex .item.fiveofeleven {
  width: 45.4545454545%;
}
.flex .item.sixofeleven {
  width: 54.5454545455%;
}
.flex .item.sevenofeleven {
  width: 63.6363636364%;
}
.flex .item.eightofeleven {
  width: 72.7272727273%;
}
.flex .item.nineofeleven {
  width: 81.8181818182%;
}
.flex .item.tenofeleven {
  width: 90.9090909091%;
}
.flex .item.oneoftwelve {
  width: 8.3333333333%;
}
.flex .item.twooftwelve {
  width: 16.6666666667%;
}
.flex .item.threeoftwelve {
  width: 25%;
}
.flex .item.fouroftwelve {
  width: 33.3333333333%;
}
.flex .item.fiveoftwelve {
  width: 41.6666666667%;
}
.flex .item.sixoftwelve {
  width: 50%;
}
.flex .item.sevenoftwelve {
  width: 58.3333333333%;
}
.flex .item.eightoftwelve {
  width: 66.6666666667%;
}
.flex .item.nineoftwelve {
  width: 75%;
}
.flex .item.tenoftwelve {
  width: 83.3333333333%;
}
.flex .item.elevenoftwelve {
  width: 91.6666666667%;
}

/* -------------------------- */
.grid {
  display: grid;
}
.grid__item {
  min-height: calc(var(--space-xl) * 5);
  height: 100%;
}
.grid__item.no-min-height {
  min-height: unset;
}
.grid__item--auto-height {
  min-height: 0;
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .grid__item {
    min-height: 0;
  }
}
.grid__item--cs-1 {
  grid-column-end: span 2;
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .grid__item--cs-1 {
    grid-column-end: span 6;
  }
}
@media screen and (max-width: 1200px) {
  .grid__item--cs-1 {
    grid-column-end: span 6;
  }
}
.grid__item--cs-1-5 {
  grid-column-end: span 3;
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .grid__item--cs-1-5 {
    grid-column-end: span 6;
  }
}
@media screen and (max-width: 1070px) {
  .grid__item--cs-1-5 {
    grid-column-end: span 6;
  }
}
.grid__item--cs-2 {
  grid-column-end: span 4;
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .grid__item--cs-2 {
    grid-column-end: span 6;
  }
}
@media screen and (max-width: 1200px) {
  .grid__item--cs-2 {
    grid-column-end: span 6;
  }
}
.grid__item--cs-3 {
  grid-column-end: span 6;
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .grid__item--cs-3 {
    grid-column-end: span 6;
  }
}
.grid__item--rs-1 {
  grid-row-end: span 1;
}
.grid__item--rs-2 {
  grid-row-end: span 2;
}
.grid__item--rs-3 {
  grid-row-end: span 3;
}

.grid-col-1 {
  grid-column-end: span 2;
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .grid-col-1 {
    grid-column-end: span 6;
  }
}

.grid-col-1-5 {
  grid-column-end: span 3;
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .grid-col-1-5 {
    grid-column-end: span 6;
  }
}

.grid-col-2 {
  grid-column-end: span 4;
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .grid-col-2 {
    grid-column-end: span 6;
  }
}

.grid-col-3 {
  grid-column-end: span 6;
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .grid-col-3 {
    grid-column-end: span 6;
  }
}

.grid-row-1 {
  grid-row-end: span 1;
}

.grid-row-2 {
  grid-row-end: span 2;
}

.grid-row-3 {
  grid-row-end: span 3;
}

.mceTmpl .columns {
  display: grid;
  gap: var(--space-l);
  grid-template-columns: 1fr;
}
@media (min-width: 550px) {
  .mceTmpl .columns.two-columns {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 550px) {
  .mceTmpl .columns.three-columns {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.items {
  display: grid;
  grid-template-rows: none;
  grid-column-gap: var(--space-l);
  grid-row-gap: var(--space-l);
}
.items--gap-n {
  grid-column-gap: 0;
  grid-row-gap: 0;
}
.items--gap-xs {
  grid-column-gap: var(--space-xs);
  grid-row-gap: var(--space-xs);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .items--gap-xs {
    grid-row-gap: var(--space-m);
  }
}
.items--gap-s {
  grid-column-gap: var(--space-s);
  grid-row-gap: var(--space-s);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .items--gap-s {
    grid-row-gap: var(--space-m);
  }
}
.items--gap-m {
  grid-column-gap: var(--space-m);
  grid-row-gap: var(--space-m);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .items--gap-m {
    grid-row-gap: var(--space-m);
  }
}
.items--gap-l {
  grid-column-gap: var(--space-l);
  grid-row-gap: var(--space-l);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .items--gap-l {
    grid-row-gap: var(--space-m);
  }
}
.items--gap-xl {
  grid-column-gap: var(--space-xl);
  grid-row-gap: var(--space-xl);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .items--gap-xl {
    grid-row-gap: var(--space-m);
  }
}
.items--1 {
  grid-template-columns: 1fr;
}
.items--1 .item:last-child {
  margin-bottom: 0;
}
.items--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .items--2 {
    grid-template-columns: 1fr;
  }
}
.items--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .items--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .items--3 {
    grid-template-columns: 1fr;
  }
}
.items--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .items--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .items--4 {
    grid-template-columns: 1fr;
  }
}
.items--5 {
  grid-template-columns: repeat(5, 1fr);
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .items--5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .items--5 {
    grid-template-columns: 1fr;
  }
}
.items--6 {
  grid-template-columns: repeat(6, 1fr);
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .items--6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .items--6 {
    grid-template-columns: 1fr;
  }
}

.js-animate {
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.42, 0.01, 0.23, 1), opacity 0.6s;
}
.js-animate--translate-up {
  transform: translateY(50%);
}
.js-animate--translate-right {
  transform: translateX(100%);
}
.js-animate--translate-left {
  transform: translateX(-100%);
}
.js-animate--fade-in {
  transform: none;
}
.js-animate--active {
  opacity: 1;
  transform: none;
}

/* -------------------------- */
/* ----- HEADER STYLES ------ */
/* -------------------------- */
.header {
  position: fixed;
  z-index: var(--z-index--header);
  width: 100%;
  height: 112px;
  letter-spacing: 0;
  display: grid;
  flex-direction: column;
  transition: 0.5s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
}
.header .content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 var(--space-l);
  margin: auto;
}
@media (max-width: 350px) {
  .header .content {
    justify-content: flex-start;
    padding: 0 var(--space-m);
  }
}
.header .logo {
  display: flex;
  justify-content: center;
  opacity: 1;
  position: relative;
  min-width: calc((100% - var(--content-max-width)) / 2);
  margin-bottom: 0;
  transition: 0.5s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
  display: flex;
  align-items: center;
}
.header .logo a img {
  width: var(--logo-width);
}
.header.scroll {
  background-color: var(--bc-1);
}
.header.scroll .logo {
  opacity: 1;
}

.responsive-alert,
.ie-alert {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: var(--z-index--modal);
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: var(--bc-1);
  color: var(--white);
}
.responsive-alert .message,
.ie-alert .message {
  padding: 0 var(--space-l);
  text-align: center;
  color: var(--white);
}
.responsive-alert .message p,
.ie-alert .message p {
  font-size: 24px !important;
}
.responsive-alert img,
.ie-alert img {
  width: 130px;
  height: 130px;
  margin-bottom: var(--space-m);
}

@media (max-width: 768px) and (orientation: landscape) {
  .responsive-alert {
    display: flex;
  }
}

/* -------------------------- */
/* -------------------------- */
/* ----- FOOTER LAYOUT ------ */
/* -------------------------- */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--black);
  padding-top: var(--space-l);
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .footer {
    padding: var(--space-l) var(--space-m);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .footer {
    padding: var(--space-m);
  }
}
.footer .content {
  grid-template-rows: auto auto auto;
  grid-template-columns: calc(var(--space-xl) * 3) auto calc(var(--space-xl) * 3);
  max-width: var(--content-medium-width);
  width: 100%;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .footer .content {
    grid-template-columns: 1fr;
  }
}

.footer__block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: var(--space-m) 0;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .footer__block {
    padding: var(--space-s) 0;
  }
}
.footer__block--1 {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 1;
  align-items: flex-start;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .footer__block--1 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 1;
    align-items: center;
    justify-content: center;
  }
}
.footer__block--2 {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 1;
  align-items: center;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .footer__block--2 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 2;
    align-items: center;
    justify-content: center;
  }
}
.footer__block--3 {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 1;
  align-items: flex-end;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .footer__block--3 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 3;
    align-items: center;
    justify-content: center;
  }
}
.footer__block--4 {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 2;
  justify-content: flex-start;
  align-items: flex-start;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .footer__block--4 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 4;
    grid-row-end: 4;
    align-items: center;
    justify-content: center;
  }
}
.footer__block--5 {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 2;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .footer__block--5 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 6;
    grid-row-end: 6;
    align-items: center;
    justify-content: center;
  }
}
.footer__block--6 {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 2;
  grid-row-end: 2;
  justify-content: flex-start;
  align-items: flex-end;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .footer__block--6 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 5;
    grid-row-end: 5;
    align-items: center;
    justify-content: center;
  }
}
.footer__block--7 {
  grid-row-start: 3;
  grid-row-end: 3;
  grid-column-end: span 3;
  align-items: center;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .footer__block--7 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 7;
    grid-row-end: 7;
    align-items: center;
    justify-content: center;
  }
}
.footer__block--1, .footer__block--2, .footer__block--3 {
  border-bottom: 2px solid var(--white);
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .footer__block--1, .footer__block--2, .footer__block--3 {
    border-bottom: none;
  }
}

.footer__flavor .body-font, .footer__flavor .articles-related .content .articles-wrapper article .article-text p, .articles-related .content .articles-wrapper article .article-text .footer__flavor p, .footer__flavor .article__socials .date p, .article__socials .date .footer__flavor p, .footer__flavor .langs a, .langs .footer__flavor a,
.footer__flavor .langs span,
.langs .footer__flavor span, .footer__flavor .form .form-block input[type=text], .form .form-block .footer__flavor input[type=text],
.footer__flavor .form .form-block input[type=textarea],
.form .form-block .footer__flavor input[type=textarea],
.footer__flavor .form .form-block input[type=email],
.form .form-block .footer__flavor input[type=email],
.footer__flavor .form .form-block input[type=tel],
.form .form-block .footer__flavor input[type=tel],
.footer__flavor .form .form-block input[type=number],
.form .form-block .footer__flavor input[type=number],
.footer__flavor .form .form-block input[type=date],
.form .form-block .footer__flavor input[type=date],
.footer__flavor .form .form-block input[type=password],
.form .form-block .footer__flavor input[type=password],
.footer__flavor .form .form-block textarea,
.form .form-block .footer__flavor textarea,
.footer__flavor .form .form-block select,
.form .form-block .footer__flavor select, .footer__flavor .form .form-block label, .form .form-block .footer__flavor label, .footer__flavor body {
  color: var(--white);
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .footer__flavor .body-font, .footer__flavor .articles-related .content .articles-wrapper article .article-text p, .articles-related .content .articles-wrapper article .article-text .footer__flavor p, .footer__flavor .article__socials .date p, .article__socials .date .footer__flavor p, .footer__flavor .langs a, .langs .footer__flavor a,
  .footer__flavor .langs span,
  .langs .footer__flavor span, .footer__flavor .form .form-block input[type=text], .form .form-block .footer__flavor input[type=text],
  .footer__flavor .form .form-block input[type=textarea],
  .form .form-block .footer__flavor input[type=textarea],
  .footer__flavor .form .form-block input[type=email],
  .form .form-block .footer__flavor input[type=email],
  .footer__flavor .form .form-block input[type=tel],
  .form .form-block .footer__flavor input[type=tel],
  .footer__flavor .form .form-block input[type=number],
  .form .form-block .footer__flavor input[type=number],
  .footer__flavor .form .form-block input[type=date],
  .form .form-block .footer__flavor input[type=date],
  .footer__flavor .form .form-block input[type=password],
  .form .form-block .footer__flavor input[type=password],
  .footer__flavor .form .form-block textarea,
  .form .form-block .footer__flavor textarea,
  .footer__flavor .form .form-block select,
  .form .form-block .footer__flavor select, .footer__flavor .form .form-block label, .form .form-block .footer__flavor label, .footer__flavor body {
    text-align: center;
  }
}

.footer__logo .footer__logo-img {
  width: calc(var(--space-xl) * 2.5);
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .footer__logo .footer__logo-img {
    width: calc(var(--space-xl) * 4);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .footer__logo .footer__logo-img {
    width: calc(var(--space-xl) * 3.5);
  }
}

.footer__menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: min-content;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .footer__menu {
    grid-template-columns: 1fr;
  }
}
.footer__menu .footer__menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-s) 0;
}

.footer__legal .footer__legal-item {
  line-height: 1.5em;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .footer__legal .footer__legal-item {
    font-size: 14px;
  }
}

.footer__social .footer__social-title .display-1, .footer__social .footer__social-title .product__info .accordion .accordion__items__item .accordion-title, .product__info .accordion .accordion__items__item .footer__social .footer__social-title .accordion-title {
  color: var(--white);
  text-align: right;
  font-size: 18px;
  margin-bottom: var(--space-m);
}
.footer__social .footer__social-items {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.footer__social .footer__social-items .footer__social-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  padding: var(--space-inset-xs);
  font-size: 13px;
  margin-left: var(--space-m);
  border-radius: 50%;
  transition: all 0.3s;
}
.footer__social .footer__social-items .footer__social-item:hover {
  background-color: var(--bc-1);
  text-decoration: none;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .footer__social .footer__social-items .footer__social-item {
    margin: var(--space-s) quish-s;
  }
}
.footer__social .footer__social-items .footer__social-item i {
  font-size: 16px;
}

.footer__contact .body-font, .footer__contact .articles-related .content .articles-wrapper article .article-text p, .articles-related .content .articles-wrapper article .article-text .footer__contact p, .footer__contact .article__socials .date p, .article__socials .date .footer__contact p, .footer__contact .langs a, .langs .footer__contact a,
.footer__contact .langs span,
.langs .footer__contact span, .footer__contact .form .form-block input[type=text], .form .form-block .footer__contact input[type=text],
.footer__contact .form .form-block input[type=textarea],
.form .form-block .footer__contact input[type=textarea],
.footer__contact .form .form-block input[type=email],
.form .form-block .footer__contact input[type=email],
.footer__contact .form .form-block input[type=tel],
.form .form-block .footer__contact input[type=tel],
.footer__contact .form .form-block input[type=number],
.form .form-block .footer__contact input[type=number],
.footer__contact .form .form-block input[type=date],
.form .form-block .footer__contact input[type=date],
.footer__contact .form .form-block input[type=password],
.form .form-block .footer__contact input[type=password],
.footer__contact .form .form-block textarea,
.form .form-block .footer__contact textarea,
.footer__contact .form .form-block select,
.form .form-block .footer__contact select, .footer__contact .form .form-block label, .form .form-block .footer__contact label, .footer__contact body {
  font-size: 16px;
  line-height: 1.5em;
  color: var(--white);
}

.footer__author .caption-font, .footer__author .ecommerce .aside__item-name, .ecommerce .footer__author .aside__item-name, .footer__author .form .form-block.legal, .form .footer__author .form-block.legal, .footer__author .form .form-block.checkbox, .form .footer__author .form-block.checkbox, .footer__author .alert__message, .footer__author .footer__legal .footer__legal-item, .footer__legal .footer__author .footer__legal-item {
  color: var(--white);
}

/* -------------------------- */
/* -------------------------- */
/* ----- SIDEBAR LAYOUT ----- */
/* -------------------------- */
/* -------------------------- */
/* --------------------------- */
/* ----- ANCHORS LAYOUT ------ */
/* --------------------------- */
.anchors-bottom-info {
  width: 100%;
  background-color: var(--g-10);
  position: sticky;
  top: 60px;
  z-index: var(--z-index--overlay);
}
.anchors-bottom-info.sticky .content .icon {
  height: 0;
  visibility: hidden;
}
.anchors-bottom-info .content {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  padding: 0;
}
.anchors-bottom-info .content .icon {
  padding: var(--space-xs) var(--space-s);
  display: flex;
  justify-content: center;
  align-items: center;
}
.anchors-bottom-info .content .icon img {
  max-height: 55px;
  max-width: 55px;
}
.anchors-bottom-info .content .anchors {
  display: flex;
  color: var(--white);
  align-items: center;
  justify-content: space-around;
  width: 100%;
}
.anchors-bottom-info .content .anchors .anchor {
  text-transform: uppercase;
  padding: var(--space-s);
  cursor: pointer;
  color: var(--bc-1);
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .anchors-bottom-info {
    top: 50px;
    padding: 0 var(--space-m);
  }
  .anchors-bottom-info .anchors .anchor {
    font-size: 12px;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .anchors-bottom-info {
    display: none;
  }
}

.alert {
  --ft-color: var(--white);
  --bg-color: var(--blue-alert);
  opacity: 1;
  visibility: visible;
  position: fixed;
  z-index: var(--layer-popup);
  top: 20%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 400px;
  max-width: calc(100% - var(--space-l));
  padding: var(--space-l);
  border-radius: 0;
  background-color: var(--bg-color);
  color: var(--ft-color);
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: all 0.5s var(--cubic-end-quick);
}
.alert--success {
  --bg-color: var(--green-alert);
}
.alert--error {
  --bg-color: var(--red-alert);
}
.alert--info {
  --bg-color: var(--blue-alert);
}
.alert--warning {
  --ft-color: var(--black);
  --bg-color: var(--yellow-alert);
}
.alert--hidden {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -100%);
}
.alert__close {
  position: absolute;
  top: var(--space-m);
  right: var(--space-m);
}
.alert__message {
  margin-top: var(--space-s);
  text-align: center;
  font-size: 0.9rem;
}

article {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 40px auto;
}
article:hover .article-text .article-content .title-content a h3.headline-font, article:hover .article-text .article-content .title-content a .ecommerce h3.user__name, .ecommerce article:hover .article-text .article-content .title-content a h3.user__name, article:hover .article-text .article-content .title-content a .product .top-info h3.product-data__categoria, .product .top-info article:hover .article-text .article-content .title-content a h3.product-data__categoria, article:hover .article-text .article-content .title-content a .filter-categories h3, .filter-categories article:hover .article-text .article-content .title-content a h3, article:hover .article-text .article-content .title-content a .categoria-recambios__item h3, .categoria-recambios__item article:hover .article-text .article-content .title-content a h3 {
  margin-bottom: var(--space-s);
}
article:hover .article-text .article-content .excerpt-content {
  opacity: 1;
  max-height: 500px;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  article {
    width: 100%;
  }
}
article .article-image {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 100%;
  grid-row-end: span 2;
}
article .article-text {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  padding: var(--space-m);
  padding-top: 0;
  z-index: var(--z-index--highlight);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  article .article-text {
    padding: var(--space-m);
  }
}
article .article-text .article-content {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex-grow: 1;
  color: var(--white);
  height: 100%;
  z-index: var(--z-index--highlight);
}
article .article-text .article-content .title-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 1;
  padding: var(--space-m) 0;
  transition: opacity 0.6s;
}
article .article-text .article-content .title-content h3.date {
  font-size: 1.5em;
  margin-bottom: var(--space-s);
}
article .article-text .article-content .title-content h3.headline-font, article .article-text .article-content .title-content .ecommerce h3.user__name, .ecommerce article .article-text .article-content .title-content h3.user__name, article .article-text .article-content .title-content .product .top-info h3.product-data__categoria, .product .top-info article .article-text .article-content .title-content h3.product-data__categoria, article .article-text .article-content .title-content .filter-categories h3, .filter-categories article .article-text .article-content .title-content h3, article .article-text .article-content .title-content .categoria-recambios__item h3, .categoria-recambios__item article .article-text .article-content .title-content h3 {
  color: var(--white);
  margin-bottom: 0;
}
article .article-text .article-content .excerpt-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
  max-height: 0;
  transition: all 0.6s ease-in-out;
}
article .article-tag {
  display: flex;
  align-items: flex-end;
  background-color: var(--article-color);
  color: white;
  font-weight: 600;
  padding: var(--space-xs) var(--space-s);
  border-radius: 50px;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: var(--space-s) 0;
  margin-left: var(--space-m);
  cursor: default;
}
article .article-tag--float {
  position: absolute;
  z-index: 3;
  margin: 0;
  left: 0;
  top: 27px;
  border-radius: 0 50px 50px 0;
}
article .article-tag--text {
  background-color: transparent;
  color: var(--article-color);
  padding-left: 0;
  padding-right: 0;
}

/* -------------------------- */
/* --- ATTACHMENTS LAYOUT --- */
/* -------------------------- */
.attachs {
  padding: var(--space-m);
}
.attachs h3 {
  margin-bottom: var(--space-s);
  color: inherit;
  text-transform: uppercase;
}
.attachs a {
  padding: var(--space-s) var(--space-s) var(--space-xs) var(--space-xs);
  margin-bottom: var(--space-s);
  color: var(--bc-1);
  border-bottom: 1px solid var(--bc-1);
  transition: 0.5s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
}
.attachs a i {
  margin-left: var(--space-s);
  font-size: var(--headline-fs);
}
.attachs a:hover {
  color: var(--white);
}

/* -------------------------- */
.full-border, .button-block .button--border {
  border: 2px solid var(--bc-color);
  border-radius: 0px;
}

/* -------------------------- */
/* --- BREADCRUMBS LAYOUT --- */
/* -------------------------- */
.breadcrumbs {
  position: relative;
  z-index: var(--z-index--higlight);
  color: var(--black);
  background-color: var(--bc-1) -lighter-30;
  text-transform: uppercase;
}
.breadcrumbs .content {
  width: var(--content-max-width);
  padding: var(--space-s) 0;
  margin: 0 auto;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .breadcrumbs .content {
    padding: var(--space-s) var(--space-m);
  }
}
.breadcrumbs .breadcrumb {
  font-size: var(--body-fs);
}
.breadcrumbs .breadcrumb br {
  display: none;
}
.breadcrumbs .breadcrumb:after {
  content: " / ";
  display: inline-block;
  margin: 0 var(--space-s);
}
.breadcrumbs .breadcrumb:last-child:after {
  display: none;
}
.breadcrumbs .breadcrumb:last-child {
  font-weight: bold;
}
.breadcrumbs a {
  color: inherit;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .breadcrumbs {
    display: none;
  }
}

/* -------------------------- */
.button-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin: var(--space-m) 0 0;
}
.button-block--center {
  justify-content: center;
}
.button-block--start {
  justify-content: flex-start;
}
.button-block--end {
  justify-content: flex-end;
}
.button-block .button {
  display: flex;
  align-items: center;
  padding: calc(var(--space-m) * 1.5) var(--space-l);
  margin-left: var(--space-m);
  transition: all 0.3s ease-in-out;
  text-align: center;
  cursor: pointer;
}
.button-block .button:first-child {
  margin-left: 0;
}
.button-block .button:hover {
  text-decoration: none;
}
.button-block .button input,
.button-block .button span {
  position: relative;
  font-weight: 500;
  font-size: var(--small-fs);
}
.button-block .button input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* -------------------------- */
/* ----- COOKIES LAYOUT ----- */
/* -------------------------- */
.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-inset-m);
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  text-align: center;
  z-index: var(--z-index--modal);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .cookies {
    padding: var(--space-inset-l);
  }
}
.cookies .cookies-options {
  display: flex;
  justify-content: center;
  padding: var(--space-inset-s);
  margin-top: var(--space-s);
}
.cookies .cookies-options .cookies-accept {
  margin-right: var(--space-m);
  background-color: var(--bc-1);
  color: white;
}
.cookies .cookies-options .cookies-accept:hover {
  background-color: var(--bc-1);
}

/* -------------------------- */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-l);
  width: 100%;
  margin: auto;
}
@media (max-width: 700px) {
  .form {
    grid-template-columns: 1fr;
  }
}
.form .form-block {
  grid-column-end: span 2;
  position: relative;
  width: 100%;
}
@media (max-width: 700px) {
  .form .form-block {
    grid-column-end: span 1;
  }
}
.form .form-block:not(.checkbox)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--bc-1);
}
.form .form-block--half-width {
  grid-column-end: span 1;
}
.form .form-block label {
  position: absolute;
  top: 50%;
  left: var(--space-s);
  transform: translateY(-50%);
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0, 0, 0.3, 1);
}
@media (max-width: 580px) {
  .form .form-block label.label--large {
    font-size: 1.5rem;
    line-height: 1.8rem;
    top: 31%;
  }
}
.form .form-block--focused:not(.checkbox) label {
  transform-origin: left;
  font-weight: 600;
  left: 0;
  transform: translateY(-120%) scale(0.7);
}
.form .form-block--legal {
  font-size: 2rem;
  display: grid;
  grid-template-columns: 15px 1fr;
  gap: var(--space-s);
}
.form .form-block--legal > p {
  font-size: 1.6rem;
  line-height: 2.3rem;
  position: relative;
}
.form .form-block input[type=text],
.form .form-block input[type=textarea],
.form .form-block input[type=email],
.form .form-block input[type=tel],
.form .form-block input[type=number],
.form .form-block input[type=date],
.form .form-block input[type=password],
.form .form-block textarea,
.form .form-block select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  margin-top: 5px;
  border: none;
  padding-left: var(--space-s);
  background-color: transparent;
}
.form .form-block input[type=text]:focus,
.form .form-block input[type=textarea]:focus,
.form .form-block input[type=email]:focus,
.form .form-block input[type=tel]:focus,
.form .form-block input[type=number]:focus,
.form .form-block input[type=date]:focus,
.form .form-block input[type=password]:focus,
.form .form-block textarea:focus,
.form .form-block select:focus {
  outline-color: var(--bc-1);
}
.form .form-block input[type=checkbox] {
  background-color: transparent;
  font-size: 12px;
  height: 15px;
  width: 15px;
}
.form .form-block input::placeholder, .form .form-block input:-ms-input-placeholder, .form .form-block input::-ms-input-placeholder,
.form .form-block textarea::placeholder,
.form .form-block textarea:-ms-input-placeholder,
.form .form-block textarea::-ms-input-placeholder {
  color: var(--g-10);
  font-size: var(--body-fs);
}
.form .form-block.checkbox a {
  color: var(--black);
  margin-left: var(--space-xs);
}
.form .form-block.legal {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  color: var(--black);
  width: 100%;
}
.form .form-block.legal p {
  margin-bottom: var(--space-m);
}
.form .form-block.legal p a {
  color: var(--black);
  margin-left: var(--space-xs);
}
.form .form-block .button {
  transform: translate(0px, 0px);
  opacity: 1;
}
.form .form-block textarea {
  transition: all 0.2s ease-out;
  height: 44px;
}
.form .form-block--textarea.form-block::after {
  bottom: 12px;
}
.form .form-block--textarea.form-block label {
  transform: translateY(-59%);
}
.form .form-block--textarea.form-block textarea {
  margin: 0;
}
.form .form-block--textarea.form-block.form-block--focused label {
  top: 0;
  transform: translateY(-80%) scale(0.7);
}
.form .form-block--textarea.form-block.form-block--focused textarea {
  height: 200px;
}
.form .g-recaptcha {
  display: flex;
  justify-content: flex-start;
  padding-top: var(--space-m);
}
@media (max-width: 480px) {
  .form .g-recaptcha {
    width: 100%;
  }
}

/**
* HOME TOP
*/
.home-top {
  position: relative;
  height: 100vh;
  width: 100%;
}
.home-top .slide {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  transform: translate(-150%, -50%);
}
.home-top .slide.current {
  transform: translate(-50%, -50%);
}
.home-top .slide.to-prev {
  animation-name: to-prev;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.52, 0.01, 0.16, 1);
}
@keyframes to-prev {
  from {
    transform: translate(-50%, -50%);
  }
  to {
    transform: translate(-150%, -50%);
  }
}
.home-top .slide.from-next {
  animation-name: from-next;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.52, 0.01, 0.16, 1);
}
@keyframes from-next {
  from {
    transform: translate(50%, -50%);
  }
  to {
    transform: translate(-50%, -50%);
  }
}
.home-top .slide.to-next {
  animation-name: to-next;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.52, 0.01, 0.16, 1);
}
@keyframes to-next {
  from {
    transform: translate(-50%, -50%);
  }
  to {
    transform: translate(50%, -50%);
  }
}
.home-top .slide.from-prev {
  animation-name: from-prev;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.52, 0.01, 0.16, 1);
}
@keyframes from-prev {
  from {
    transform: translate(-150%, -50%);
  }
  to {
    transform: translate(-50%, -50%);
  }
}
.home-top .slide .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-index--background);
}
.home-top .slide .bg-video .content {
  position: relative;
  width: 100%;
  height: 100%;
}
.home-top .slide .bg-video .content video {
  width: 100%;
  height: auto;
}
.home-top .slide .viewport-video {
  position: absolute;
  width: 100%;
  height: 100%;
}
.home-top .slide .viewport-video .cover-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .home-top .slide .viewport-video .cover-video {
    background-color: var(--bc-1);
  }
  .home-top .slide .viewport-video .cover-video video {
    max-width: 100% !important;
    max-height: 100% !important;
  }
}
.home-top .slide .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-index--background);
}
.home-top .slide .background .content {
  position: relative;
  width: 100%;
  height: 100%;
}
.home-top .slide .background .content .image {
  width: 100%;
  height: 100%;
}
.home-top .slide .text {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: var(--z-index--highlight);
}
.home-top .slide .text .content {
  color: var(--white);
  width: var(--content-max-width);
}
.home-top .slide .text .content .play {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(var(--space-m) * 3);
  margin: var(--space-m) auto var(--space-s);
  cursor: pointer;
}
.home-top .slide .text .content .play i {
  font-size: var(--space-m);
  border: 3px solid var(--white);
  padding: calc(var(--space-s) * 1.5);
  border-radius: 50%;
}
.home-top .slide .text .content .view-video {
  width: 100%;
  text-align: center;
}

.image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: auto;
  text-align: center;
}
.image .image__content {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.image .image__content--cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.image .image__content--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.lens {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.lens--solid-brand-color-1 {
  background-color: rgba(255, 204, 102, 0.6);
}
.lens--solid-brand-color-2 {
  background-color: rgba(158, 218, 211, 0.6);
}
.lens--solid-white {
  background-color: rgba(255, 255, 255, 0.6);
}
.lens--solid-black {
  background-color: rgba(0, 0, 0, 0.4);
}
.lens--gradient-brand-color-1 { /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(125, 185, 232, 0) 0%, var(--bc-1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#007db9e8", endColorstr="#FFCC66", GradientType=0 ); /* IE6-9 */
}
.lens--gradient-brand-color-2 { /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(125, 185, 232, 0) 0%, var(--bc-2) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#007db9e8", endColorstr="#9EDAD3", GradientType=0 ); /* IE6-9 */
}
.lens--gradient-white { /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(125, 185, 232, 0) 0%, rgb(250, 252, 254) 96%, rgb(253, 254, 255) 98%, rgb(255, 255, 255) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#007db9e8", endColorstr="#ffffff", GradientType=0 ); /* IE6-9 */
}
.lens--gradient-black { /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(125, 185, 232, 0) 0%, var(--black) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#007db9e8", endColorstr="#000", GradientType=0 ); /* IE6-9 */
}

.header .menu-button {
  position: absolute;
  z-index: 16;
  display: flex;
  justify-content: center;
  align-items: center;
  right: calc(var(--space-m) * 1.5);
  top: var(--space-m);
  width: -moz-fit-content;
  width: fit-content;
  width: 67px;
  height: 67px;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
}
@media (max-width: 350px) {
  .header .menu-button {
    right: var(--space-m);
  }
}
.header .menu-button .bars {
  display: block;
  position: relative;
  width: 17px;
  height: 25px;
}
.header .menu-button .bars .bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--bc-1);
  margin: 4px auto;
  backface-visibility: hidden;
  transition: 0.5s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
  transform: translate(0, 0) rotate(0);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .header .menu-button {
    margin-top: 2px;
  }
}
.header .nav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin: auto 0;
  position: fixed;
  z-index: var(--z-index--hidden);
  opacity: 0;
  top: 0;
  right: 0;
  transform: translate(100%, 0);
  overflow-y: auto;
  transition: all 0.5s cubic-bezier(0, 0, 0, 1);
  padding: var(--space-m);
  flex-direction: column;
  justify-content: flex-start;
  height: 100vh;
  background-color: transparent;
}
@media (max-width: 900px) {
  .header .nav {
    transform: translate(0, -100%);
  }
}
.header .nav nav {
  overflow: hidden;
}
.header .nav nav .logo {
  display: none;
}
.header .nav nav .items .menu-item .main-link .icon {
  display: none;
}
.header .nav nav {
  justify-content: space-around;
  align-items: flex-start;
  position: relative;
  width: 100%;
  margin: auto;
  background-color: transparent;
  height: 100vh;
  transition: 0.5s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
}
.header .nav nav .close {
  position: absolute;
  top: var(--space-m);
  right: var(--space-m);
  cursor: pointer;
  z-index: var(--z-index--overlay);
}
.header .nav nav .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
  margin-left: var(--space-s);
  background-color: var(--white);
  transform: translateX(100%);
  transition: all cubic-bezier(0, 0, 0, 1) 0.2s;
}
@media (max-width: 900px) {
  .header .nav nav .items {
    transform: translateY(-100%);
  }
}
.header .nav nav .items .items-container {
  width: 500px;
}
@media (max-width: 1200px) {
  .header .nav nav .items .items-container {
    width: 300px;
  }
}
@media (max-width: 900px) {
  .header .nav nav .items .items-container {
    width: 100%;
    padding: 0 var(--space-xl);
    padding-top: var(--space-l);
  }
}
@media (max-width: 360px) {
  .header .nav nav .items .items-container {
    padding: 0 var(--space-l);
  }
}
.header .nav nav .items .menu-item {
  position: relative;
  padding: var(--space-s) var(--space-m);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}
.header .nav nav .items .menu-item .main-link {
  color: var(--brown);
  font-weight: 600;
  position: relative;
  display: block;
  width: 100%;
}
.header .nav nav .items .menu-item .main-link:hover {
  text-decoration: none;
}
.header .nav nav .items .menu-item .main-link .arrow:before, .header .nav nav .items .menu-item .main-link .arrow:after {
  border-color: var(--bc-1);
}
.header .nav nav .items .menu-item .submenu {
  display: flex;
  flex-direction: column;
  margin-top: var(--space-m);
}
@media e {
  .header .nav nav .items .menu-item .submenu {
    margin-top: var(--space-xs);
  }
}
.header .nav nav .items .menu-item .submenu .child-link {
  font-size: 2.2rem;
  color: var(--brown);
  font-weight: 300;
}
.header .nav nav .items .menu-item .submenu .child-link:hover {
  text-decoration: none;
}
.header .nav nav .items .menu-item:hover .main-link .arrow, .header .nav nav .items .menu-item.current .main-link .arrow {
  width: 100px;
}
.header .nav nav {
  background-color: transparent;
  overflow-y: auto;
  padding: 0;
  min-height: 100%;
  flex-wrap: nowrap;
}
.header .nav nav .logo {
  margin-left: var(--space-l);
  margin-top: var(--space-m);
  display: block;
}
.header .nav nav .items {
  height: 100%;
  padding-top: 0;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 0;
}
.header .nav nav .items .menu-item {
  padding: 0;
  margin: var(--space-xl) 0;
}
@media (max-height: 768px) {
  .header .nav nav .items .menu-item {
    margin: calc(var(--space-m) * 1.5) 0;
  }
}
@media (max-width: 768px) {
  .header .nav nav .items .menu-item {
    margin: calc(var(--space-m) * 1.5) 0;
  }
}
@media (max-height: 380px) {
  .header .nav nav .items .menu-item {
    margin: var(--space-m) 0;
  }
}
.header .nav nav .items .menu-item .main-link {
  font-size: 2.8rem;
  height: 100%;
}
@media (max-height: 768px) {
  .header .nav nav .items .menu-item .main-link {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .header .nav nav .items .menu-item .main-link {
    font-size: 2.2rem;
  }
}
@media (max-width: 400px) {
  .header .nav nav .items .menu-item .main-link {
    font-size: 2rem;
  }
}
.header .nav nav .items .menu-item .main-link::after {
  display: none;
}
.header .nav nav .items .menu-item--last {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  height: auto;
}
.header .nav nav .items .menu-item--last .main-link span {
  color: var(--bc-2-lighter-40);
}
.header .nav nav .items .menu-item--last .main-link::before {
  display: none;
}
.header .nav nav .close {
  position: absolute;
  top: 15px;
  right: var(--space-m);
  cursor: pointer;
  z-index: var(--z-index--overlay);
}
.header .nav nav .close .lines {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 3px;
  margin-top: -10px;
  background-color: transparent;
  transitioon: all 0.3s ease-out;
}
.header .nav nav .close .lines:before, .header .nav nav .close .lines:after {
  position: absolute;
  right: 0;
  content: "";
  display: inline-block;
  width: 15px;
  height: 3px;
  background: var(--white);
  transform-origin: 50% 50%;
  transitioon: all 0.3s ease-out;
}
.header .nav nav .close .lines:before {
  top: 0px;
  transform: rotate3d(0, 0, 1, 45deg);
}
.header .nav nav .close .lines:after {
  top: 0px;
  transform: rotate3d(0, 0, 1, -45deg);
}
.header.active .menu-button .bars {
  transform: translate(3px, 2px);
}
.header.active .menu-button .bars .bar {
  background-color: var(--black);
}
.header.active .menu-button .bars .bar:first-child {
  transform: rotate(45deg) translate(1px, 6px);
}
.header.active .menu-button .bars .bar:nth-child(2) {
  opacity: 0;
}
.header.active .menu-button .bars .bar:last-child {
  transform: rotate(-45deg) translate(2.5px, -7px);
}
.header.active .logo {
  z-index: 99;
}
.header.active .nav {
  z-index: var(--z-index--overlay);
  opacity: 1;
  height: auto;
  transform: translate(0);
  width: 100%;
  min-height: 100%;
  padding: 0;
}
.header.active .nav .main-menu__left,
.header.active .nav .items {
  transform: translateX(0);
}
.header.menu-shown .nav .main-menu__left {
  transition-delay: 0s;
}
.header.menu-shown .nav .items {
  transition-delay: 0.2s;
}

.langs a,
.langs span {
  text-transform: uppercase;
  font-size: 2.5rem;
}
.langs a.current,
.langs span.current {
  font-weight: 600;
}
@media (max-height: 768px) {
  .langs {
    margin-top: var(--space-m);
    right: 40% !important;
  }
}
@media (max-width: 768px) {
  .langs {
    margin-top: var(--space-m);
  }
}

.material-shadow-1 {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.material-shadow-2 {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.material-shadow-3 {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

/* -------------------------- */
/* --- ARTICLES AND EVENTS -- */
/* ------- BODY LAYOUT ------ */
/* -------------------------- */
.article__socials {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--g-10);
  padding: var(--space-s) tretch-m;
  width: 100%;
}
.article__socials p {
  margin: var(--space-inline-s);
}
.article__socials .article-share {
  display: flex;
  justify-content: flex-start;
}
.article__socials .article-share .share-button {
  margin: var(--space-inline-xs);
}
.article__socials .article-share .share-button a {
  border: none;
  margin: 0 var(--space-s);
  padding: 0;
  text-align: center;
}
.article__socials .article-share .share-button a i {
  line-height: var(--space-m);
  color: var(--white);
  background-color: var(--bc-1);
  border-radius: 50%;
  text-decoration: none;
  width: calc(var(--space-m) * 1.25);
  height: calc(var(--space-m) * 1.25);
  transition: all 0.4s;
  padding: 2px 0;
  text-align: center;
  transition: all 0.4s;
}
.article__socials .article-share .share-button a i:hover {
  color: var(--bc-1);
  background-color: var(--white);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .articles-related {
    padding: 0 var(--space-m);
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .articles-related .content {
    padding: var(--space-l) var(--space-m);
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .articles-related .content {
    padding: var(--space-m);
  }
}
.articles-related .content .text {
  margin-bottom: var(--space-l);
}
.articles-related .content .text h3 {
  display: flex;
  font-size: var(--space-m);
  text-align: center;
  margin-bottom: var(--space-xs);
  width: 100%;
}
.articles-related .content .text h3:before {
  content: "";
  display: inline-block;
  border-top: 1px solid var(--black);
  flex-grow: 1;
  margin: calc(var(--space-s) * 1.2) var(--space-m) calc(var(--space-s) * 1.2) calc(var(--space-m) * 2);
}
.articles-related .content .text h3:after {
  content: "";
  display: inline-block;
  border-top: 1px solid var(--black);
  flex-grow: 1;
  margin: calc(var(--space-s) * 1.2) var(--space-l) calc(var(--space-s) * 1.2) var(--space-m);
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .articles-related .content .text h3 {
    margin-bottom: var(--space-m);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .articles-related .content .text h3 {
    margin-bottom: 0;
  }
  .articles-related .content .text h3:before {
    border: none;
    margin: 0;
  }
  .articles-related .content .text h3:after {
    border: none;
    margin: 0;
  }
}
.articles-related .content .articles-wrapper {
  margin-bottom: var(--space-m);
}
.articles-related .content .articles-wrapper article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid black;
  margin: 0 var(--space-s);
  padding-bottom: var(--space-s);
}
.articles-related .content .articles-wrapper article .article-image {
  width: 100%;
  height: 175px;
  margin-bottom: var(--space-s);
}
.articles-related .content .articles-wrapper article .article-image a {
  width: 100%;
  height: 100%;
}
.articles-related .content .articles-wrapper article .article-image a img {
  width: 100%;
  height: 100%;
}
.articles-related .content .articles-wrapper article .article-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-height: 125px;
}
.articles-related .content .articles-wrapper article .article-text h3.date {
  text-transform: none;
  text-align: left;
  margin-bottom: var(--space-s);
}
.articles-related .content .articles-wrapper article .article-text a {
  text-decoration: none;
  margin-bottom: var(--space-s);
}
.articles-related .content .articles-wrapper article .article-text a h3.headline-font, .articles-related .content .articles-wrapper article .article-text a .ecommerce h3.user__name, .ecommerce .articles-related .content .articles-wrapper article .article-text a h3.user__name, .articles-related .content .articles-wrapper article .article-text a .product .top-info h3.product-data__categoria, .product .top-info .articles-related .content .articles-wrapper article .article-text a h3.product-data__categoria, .articles-related .content .articles-wrapper article .article-text a .filter-categories h3, .filter-categories .articles-related .content .articles-wrapper article .article-text a h3, .articles-related .content .articles-wrapper article .article-text a .categoria-recambios__item h3, .categoria-recambios__item .articles-related .content .articles-wrapper article .article-text a h3 {
  line-height: 16px;
  text-align: left;
}
.articles-related .content .articles-wrapper article .article-text p {
  text-align: left;
  margin-bottom: var(--space-s);
  flex-grow: 1;
}
.articles-related .content .articles-wrapper article .article-text .article-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.articles-related .content .articles-wrapper article .article-text .article-links a {
  font-size: 10px;
  color: var(--bc-1);
  margin-bottom: var(--space-xs);
}
.articles-related .content .articles-wrapper article .article-text .article-links a i {
  margin-left: var(--space-xs);
}
.articles-related .content .articles-wrapper article .article-text .part-button {
  align-items: flex-end;
}
.articles-related .content .articles-wrapper article:first-child {
  margin-left: 0;
}
.articles-related .content .articles-wrapper article:nth-child(4) {
  margin-right: 0;
}

/* -------------------------- */
/* -------------------------- */
/* -- SHARE BUTTONS LAYOUT -- */
/* -------------------------- */
.share {
  display: flex;
  align-items: center;
  padding: var(--space-m);
  color: var(--bc-1);
}
.share p {
  margin: 0 var(--space-s);
  color: var(--white);
  letter-spacing: 0;
}
.share a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: var(--space-xs);
  margin: 0 var(--space-xs);
  border-radius: 50%;
  background-color: transparent;
  color: var(--white);
  text-align: center;
  text-decoration: none;
}
.share a:hover {
  background-color: var(--white);
  color: var(--bc-1);
}

/* -------------------------- */
/* -------------------------- */
/* ------- TOP LAYOUT ------- */
/* -------------------------- */
.top {
  position: relative;
  overflow: hidden;
}
.top .top__slider .content-slider .top__foreground .top__content .display-5,
.top .top__slider .content-slider .top__foreground .top__content .display-4,
.top .top__slider .content-slider .top__foreground .top__content .display-3,
.top .top__slider .content-slider .top__foreground .top__content .ecommerce .profile__welcome,
.ecommerce .top .top__slider .content-slider .top__foreground .top__content .profile__welcome,
.top .top__slider .content-slider .top__foreground .top__content .product .top-info .product-data__nombre,
.product .top-info .top .top__slider .content-slider .top__foreground .top__content .product-data__nombre,
.top .top__slider .content-slider .top__foreground .top__content .display-2,
.top .top__slider .content-slider .top__foreground .top__content .product .top-info .product-data__precio,
.product .top-info .top .top__slider .content-slider .top__foreground .top__content .product-data__precio,
.top .top__slider .content-slider .top__foreground .top__content .article__socials p,
.article__socials .top .top__slider .content-slider .top__foreground .top__content p,
.top .top__slider .content-slider .top__foreground .top__content .articles-related .content .text h3,
.articles-related .content .text .top .top__slider .content-slider .top__foreground .top__content h3,
.top .top__slider .content-slider .top__foreground .top__content .headline-font,
.top .top__slider .content-slider .top__foreground .top__content .ecommerce .user__name,
.ecommerce .top .top__slider .content-slider .top__foreground .top__content .user__name,
.top .top__slider .content-slider .top__foreground .top__content .productos-relacionados__titulo h2,
.productos-relacionados__titulo .top .top__slider .content-slider .top__foreground .top__content h2,
.top .top__slider .content-slider .top__foreground .top__content .product .top-info .product-data__categoria,
.product .top-info .top .top__slider .content-slider .top__foreground .top__content .product-data__categoria,
.top .top__slider .content-slider .top__foreground .top__content .filter-categories h3,
.filter-categories .top .top__slider .content-slider .top__foreground .top__content h3,
.top .top__slider .content-slider .top__foreground .top__content .categoria-recambios__item h3,
.categoria-recambios__item .top .top__slider .content-slider .top__foreground .top__content h3,
.top .top__slider .content-slider .top__foreground .top__content .body-font,
.top .top__slider .content-slider .top__foreground .top__content body,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block label,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content label,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=text],
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=text],
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=textarea],
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=textarea],
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=email],
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=email],
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=tel],
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=tel],
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=number],
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=number],
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=date],
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=date],
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=password],
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=password],
.top .top__slider .content-slider .top__foreground .top__content .form .form-block textarea,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content textarea,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block select,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content select,
.top .top__slider .content-slider .top__foreground .top__content .langs a,
.langs .top .top__slider .content-slider .top__foreground .top__content a,
.top .top__slider .content-slider .top__foreground .top__content .langs span,
.langs .top .top__slider .content-slider .top__foreground .top__content span,
.top .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text p,
.articles-related .content .articles-wrapper article .article-text .top .top__slider .content-slider .top__foreground .top__content p,
.top .top__slider .content-slider .top__foreground .top__content .lead-font,
.top .top__slider .content-slider .top__foreground .top__content .product .top-info .product-data__resumen,
.product .top-info .top .top__slider .content-slider .top__foreground .top__content .product-data__resumen,
.top .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text h3.date,
.articles-related .content .articles-wrapper article .article-text .top .top__slider .content-slider .top__foreground .top__content h3.date,
.top .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text .article-links a,
.articles-related .content .articles-wrapper article .article-text .article-links .top .top__slider .content-slider .top__foreground .top__content a {
  margin-bottom: var(--space-m);
}
.top .top__slider .content-slider .top__foreground .top__content .display-5:last-child,
.top .top__slider .content-slider .top__foreground .top__content .display-4:last-child,
.top .top__slider .content-slider .top__foreground .top__content .display-3:last-child,
.top .top__slider .content-slider .top__foreground .top__content .ecommerce .profile__welcome:last-child,
.ecommerce .top .top__slider .content-slider .top__foreground .top__content .profile__welcome:last-child,
.top .top__slider .content-slider .top__foreground .top__content .product .top-info .product-data__nombre:last-child,
.product .top-info .top .top__slider .content-slider .top__foreground .top__content .product-data__nombre:last-child,
.top .top__slider .content-slider .top__foreground .top__content .display-2:last-child,
.top .top__slider .content-slider .top__foreground .top__content .product .top-info .product-data__precio:last-child,
.product .top-info .top .top__slider .content-slider .top__foreground .top__content .product-data__precio:last-child,
.top .top__slider .content-slider .top__foreground .top__content .article__socials p:last-child,
.article__socials .top .top__slider .content-slider .top__foreground .top__content p:last-child,
.top .top__slider .content-slider .top__foreground .top__content .articles-related .content .text h3:last-child,
.articles-related .content .text .top .top__slider .content-slider .top__foreground .top__content h3:last-child,
.top .top__slider .content-slider .top__foreground .top__content .headline-font:last-child,
.top .top__slider .content-slider .top__foreground .top__content .ecommerce .user__name:last-child,
.ecommerce .top .top__slider .content-slider .top__foreground .top__content .user__name:last-child,
.top .top__slider .content-slider .top__foreground .top__content .productos-relacionados__titulo h2:last-child,
.productos-relacionados__titulo .top .top__slider .content-slider .top__foreground .top__content h2:last-child,
.top .top__slider .content-slider .top__foreground .top__content .product .top-info .product-data__categoria:last-child,
.product .top-info .top .top__slider .content-slider .top__foreground .top__content .product-data__categoria:last-child,
.top .top__slider .content-slider .top__foreground .top__content .filter-categories h3:last-child,
.filter-categories .top .top__slider .content-slider .top__foreground .top__content h3:last-child,
.top .top__slider .content-slider .top__foreground .top__content .categoria-recambios__item h3:last-child,
.categoria-recambios__item .top .top__slider .content-slider .top__foreground .top__content h3:last-child,
.top .top__slider .content-slider .top__foreground .top__content .body-font:last-child,
.top .top__slider .content-slider .top__foreground .top__content body:last-child,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block label:last-child,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content label:last-child,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=text]:last-child,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=text]:last-child,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=textarea]:last-child,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=textarea]:last-child,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=email]:last-child,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=email]:last-child,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=tel]:last-child,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=tel]:last-child,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=number]:last-child,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=number]:last-child,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=date]:last-child,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=date]:last-child,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=password]:last-child,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content input[type=password]:last-child,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block textarea:last-child,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content textarea:last-child,
.top .top__slider .content-slider .top__foreground .top__content .form .form-block select:last-child,
.form .form-block .top .top__slider .content-slider .top__foreground .top__content select:last-child,
.top .top__slider .content-slider .top__foreground .top__content .langs a:last-child,
.langs .top .top__slider .content-slider .top__foreground .top__content a:last-child,
.top .top__slider .content-slider .top__foreground .top__content .langs span:last-child,
.langs .top .top__slider .content-slider .top__foreground .top__content span:last-child,
.top .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text p:last-child,
.articles-related .content .articles-wrapper article .article-text .top .top__slider .content-slider .top__foreground .top__content p:last-child,
.top .top__slider .content-slider .top__foreground .top__content .lead-font:last-child,
.top .top__slider .content-slider .top__foreground .top__content .product .top-info .product-data__resumen:last-child,
.product .top-info .top .top__slider .content-slider .top__foreground .top__content .product-data__resumen:last-child,
.top .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text h3.date:last-child,
.articles-related .content .articles-wrapper article .article-text .top .top__slider .content-slider .top__foreground .top__content h3.date:last-child,
.top .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text .article-links a:last-child,
.articles-related .content .articles-wrapper article .article-text .article-links .top .top__slider .content-slider .top__foreground .top__content a:last-child {
  margin-bottom: 0;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .top--home .top__slider {
    height: calc(var(--space-xl) * 4);
  }
}
.top--home .top__slider .content-slider .top__foreground .top__content {
  width: var(--content-min-width);
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .top--home .top__slider .content-slider .top__foreground .top__content {
    width: 100%;
  }
}
.top--home .top__slider .content-slider .top__foreground .top__content .top__slide-icon {
  width: calc(var(--space-l) * 7);
  height: auto;
  margin-bottom: var(--space-xl);
}
@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 2) and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
  .top--home .top__slider .content-slider .top__foreground .top__content .top__slide-icon {
    margin-bottom: var(--space-l);
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .top--home .top__slider .content-slider .top__foreground .top__content .top__slide-icon {
    width: calc(var(--space-l) * 5);
  }
}
.top--home .top__slider .content-slider .top__foreground .top__content .top__slide-icon .top__slide-icon-image {
  width: 100%;
  height: auto;
}
.top--home .top__slider .content-slider .top__foreground .top__content .display-5,
.top--home .top__slider .content-slider .top__foreground .top__content .display-4,
.top--home .top__slider .content-slider .top__foreground .top__content .display-3,
.top--home .top__slider .content-slider .top__foreground .top__content .ecommerce .profile__welcome,
.ecommerce .top--home .top__slider .content-slider .top__foreground .top__content .profile__welcome,
.top--home .top__slider .content-slider .top__foreground .top__content .product .top-info .product-data__nombre,
.product .top-info .top--home .top__slider .content-slider .top__foreground .top__content .product-data__nombre,
.top--home .top__slider .content-slider .top__foreground .top__content .display-2,
.top--home .top__slider .content-slider .top__foreground .top__content .product .top-info .product-data__precio,
.product .top-info .top--home .top__slider .content-slider .top__foreground .top__content .product-data__precio,
.top--home .top__slider .content-slider .top__foreground .top__content .article__socials p,
.article__socials .top--home .top__slider .content-slider .top__foreground .top__content p,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .text h3,
.articles-related .content .text .top--home .top__slider .content-slider .top__foreground .top__content h3 {
  padding-bottom: 0;
}
.top--home .top__slider .content-slider .top__foreground .top__content .display-5:last-child,
.top--home .top__slider .content-slider .top__foreground .top__content .display-4:last-child,
.top--home .top__slider .content-slider .top__foreground .top__content .display-3:last-child,
.top--home .top__slider .content-slider .top__foreground .top__content .ecommerce .profile__welcome:last-child,
.ecommerce .top--home .top__slider .content-slider .top__foreground .top__content .profile__welcome:last-child,
.top--home .top__slider .content-slider .top__foreground .top__content .product .top-info .product-data__nombre:last-child,
.product .top-info .top--home .top__slider .content-slider .top__foreground .top__content .product-data__nombre:last-child,
.top--home .top__slider .content-slider .top__foreground .top__content .display-2:last-child,
.top--home .top__slider .content-slider .top__foreground .top__content .product .top-info .product-data__precio:last-child,
.product .top-info .top--home .top__slider .content-slider .top__foreground .top__content .product-data__precio:last-child,
.top--home .top__slider .content-slider .top__foreground .top__content .article__socials p:last-child,
.article__socials .top--home .top__slider .content-slider .top__foreground .top__content p:last-child,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .text h3:last-child,
.articles-related .content .text .top--home .top__slider .content-slider .top__foreground .top__content h3:last-child {
  padding-bottom: var(--space-m);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .top--home .top__slider .content-slider .top__foreground .top__content .display-5:last-child,
  .top--home .top__slider .content-slider .top__foreground .top__content .display-4:last-child,
  .top--home .top__slider .content-slider .top__foreground .top__content .display-3:last-child,
  .top--home .top__slider .content-slider .top__foreground .top__content .ecommerce .profile__welcome:last-child,
  .ecommerce .top--home .top__slider .content-slider .top__foreground .top__content .profile__welcome:last-child,
  .top--home .top__slider .content-slider .top__foreground .top__content .product .top-info .product-data__nombre:last-child,
  .product .top-info .top--home .top__slider .content-slider .top__foreground .top__content .product-data__nombre:last-child,
  .top--home .top__slider .content-slider .top__foreground .top__content .display-2:last-child,
  .top--home .top__slider .content-slider .top__foreground .top__content .product .top-info .product-data__precio:last-child,
  .product .top-info .top--home .top__slider .content-slider .top__foreground .top__content .product-data__precio:last-child,
  .top--home .top__slider .content-slider .top__foreground .top__content .article__socials p:last-child,
  .article__socials .top--home .top__slider .content-slider .top__foreground .top__content p:last-child,
  .top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .text h3:last-child,
  .articles-related .content .text .top--home .top__slider .content-slider .top__foreground .top__content h3:last-child {
    padding-bottom: 0;
  }
}
.top--home .top__slider .content-slider .top__foreground .top__content .headline-font, .top--home .top__slider .content-slider .top__foreground .top__content .ecommerce .user__name, .ecommerce .top--home .top__slider .content-slider .top__foreground .top__content .user__name, .top--home .top__slider .content-slider .top__foreground .top__content .productos-relacionados__titulo h2, .productos-relacionados__titulo .top--home .top__slider .content-slider .top__foreground .top__content h2, .top--home .top__slider .content-slider .top__foreground .top__content .product .top-info .product-data__categoria, .product .top-info .top--home .top__slider .content-slider .top__foreground .top__content .product-data__categoria, .top--home .top__slider .content-slider .top__foreground .top__content .filter-categories h3, .filter-categories .top--home .top__slider .content-slider .top__foreground .top__content h3, .top--home .top__slider .content-slider .top__foreground .top__content .categoria-recambios__item h3, .categoria-recambios__item .top--home .top__slider .content-slider .top__foreground .top__content h3 {
  line-height: 0.6;
}
.top--home .top__slider .content-slider .top__foreground .top__content .body-font, .top--home .top__slider .content-slider .top__foreground .top__content body, .top--home .top__slider .content-slider .top__foreground .top__content .form .form-block label, .form .form-block .top--home .top__slider .content-slider .top__foreground .top__content label, .top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=text], .form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=text],
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=textarea],
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=textarea],
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=email],
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=email],
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=tel],
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=tel],
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=number],
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=number],
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=date],
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=date],
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=password],
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=password],
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block textarea,
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content textarea,
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block select,
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content select, .top--home .top__slider .content-slider .top__foreground .top__content .langs a, .langs .top--home .top__slider .content-slider .top__foreground .top__content a,
.top--home .top__slider .content-slider .top__foreground .top__content .langs span,
.langs .top--home .top__slider .content-slider .top__foreground .top__content span, .top--home .top__slider .content-slider .top__foreground .top__content .article__socials .date p, .article__socials .date .top--home .top__slider .content-slider .top__foreground .top__content p, .top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text p, .articles-related .content .articles-wrapper article .article-text .top--home .top__slider .content-slider .top__foreground .top__content p,
.top--home .top__slider .content-slider .top__foreground .top__content .lead-font,
.top--home .top__slider .content-slider .top__foreground .top__content .product .top-info .product-data__resumen,
.product .top-info .top--home .top__slider .content-slider .top__foreground .top__content .product-data__resumen,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text h3.date,
.articles-related .content .articles-wrapper article .article-text .top--home .top__slider .content-slider .top__foreground .top__content h3.date,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a h3.headline-font,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .ecommerce h3.user__name,
.ecommerce .top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a h3.user__name,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .product .top-info h3.product-data__categoria,
.product .top-info .top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a h3.product-data__categoria,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .filter-categories h3,
.filter-categories .top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a h3,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .categoria-recambios__item h3,
.categoria-recambios__item .top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a h3,
.articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content h3.headline-font,
.articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content .ecommerce h3.user__name,
.ecommerce .articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content h3.user__name,
.articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content .product .top-info h3.product-data__categoria,
.product .top-info .articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content h3.product-data__categoria,
.articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content .filter-categories h3,
.filter-categories .articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content h3,
.articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content .categoria-recambios__item h3,
.categoria-recambios__item .articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content h3,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text .article-links a,
.articles-related .content .articles-wrapper article .article-text .article-links .top--home .top__slider .content-slider .top__foreground .top__content a {
  line-height: 1.6;
  margin-bottom: 0;
}
.top--home .top__slider .content-slider .top__foreground .top__content .body-font:first-child, .top--home .top__slider .content-slider .top__foreground .top__content body:first-child, .top--home .top__slider .content-slider .top__foreground .top__content .form .form-block label:first-child, .form .form-block .top--home .top__slider .content-slider .top__foreground .top__content label:first-child, .top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=text]:first-child, .form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=text]:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=textarea]:first-child,
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=textarea]:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=email]:first-child,
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=email]:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=tel]:first-child,
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=tel]:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=number]:first-child,
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=number]:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=date]:first-child,
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=date]:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block input[type=password]:first-child,
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content input[type=password]:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block textarea:first-child,
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content textarea:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .form .form-block select:first-child,
.form .form-block .top--home .top__slider .content-slider .top__foreground .top__content select:first-child, .top--home .top__slider .content-slider .top__foreground .top__content .langs a:first-child, .langs .top--home .top__slider .content-slider .top__foreground .top__content a:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .langs span:first-child,
.langs .top--home .top__slider .content-slider .top__foreground .top__content span:first-child, .top--home .top__slider .content-slider .top__foreground .top__content .article__socials .date p:first-child, .article__socials .date .top--home .top__slider .content-slider .top__foreground .top__content p:first-child, .top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text p:first-child, .articles-related .content .articles-wrapper article .article-text .top--home .top__slider .content-slider .top__foreground .top__content p:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .lead-font:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .product .top-info .product-data__resumen:first-child,
.product .top-info .top--home .top__slider .content-slider .top__foreground .top__content .product-data__resumen:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text h3.date:first-child,
.articles-related .content .articles-wrapper article .article-text .top--home .top__slider .content-slider .top__foreground .top__content h3.date:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a h3.headline-font:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .ecommerce h3.user__name:first-child,
.ecommerce .top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a h3.user__name:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .product .top-info h3.product-data__categoria:first-child,
.product .top-info .top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a h3.product-data__categoria:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .filter-categories h3:first-child,
.filter-categories .top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a h3:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .categoria-recambios__item h3:first-child,
.categoria-recambios__item .top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a h3:first-child,
.articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content h3.headline-font:first-child,
.articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content .ecommerce h3.user__name:first-child,
.ecommerce .articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content h3.user__name:first-child,
.articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content .product .top-info h3.product-data__categoria:first-child,
.product .top-info .articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content h3.product-data__categoria:first-child,
.articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content .filter-categories h3:first-child,
.filter-categories .articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content h3:first-child,
.articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content .categoria-recambios__item h3:first-child,
.categoria-recambios__item .articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content h3:first-child,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text .article-links a:first-child,
.articles-related .content .articles-wrapper article .article-text .article-links .top--home .top__slider .content-slider .top__foreground .top__content a:first-child {
  margin-top: var(--space-m);
}
.top--home .top__slider .content-slider .top__foreground .top__content .button-block {
  min-height: calc(var(--space-l) * 1.25);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .top--article .top__slider {
    height: calc(var(--space-xl) * 4);
  }
}
.top--article .top__slider .content-slider .top__foreground .top__content {
  margin: auto;
  width: var(--content-min-width);
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .top--article .top__slider .content-slider .top__foreground .top__content {
    width: 100%;
  }
}
@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 2) and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
  .top--article .top__slider .content-slider .top__foreground .top__content {
    padding-top: 0;
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .top--article .top__slider .content-slider .top__foreground .top__content {
    width: 100%;
  }
}
.top--article .top__slider .content-slider .top__foreground .top__content .display-2, .top--article .top__slider .content-slider .top__foreground .top__content .product .top-info .product-data__precio, .product .top-info .top--article .top__slider .content-slider .top__foreground .top__content .product-data__precio, .top--article .top__slider .content-slider .top__foreground .top__content .article__socials p, .article__socials .top--article .top__slider .content-slider .top__foreground .top__content p, .top--article .top__slider .content-slider .top__foreground .top__content .articles-related .content .text h3, .articles-related .content .text .top--article .top__slider .content-slider .top__foreground .top__content h3,
.top--article .top__slider .content-slider .top__foreground .top__content .display-3,
.top--article .top__slider .content-slider .top__foreground .top__content .ecommerce .profile__welcome,
.ecommerce .top--article .top__slider .content-slider .top__foreground .top__content .profile__welcome,
.top--article .top__slider .content-slider .top__foreground .top__content .product .top-info .product-data__nombre,
.product .top-info .top--article .top__slider .content-slider .top__foreground .top__content .product-data__nombre,
.top--article .top__slider .content-slider .top__foreground .top__content .display-4 {
  color: var(--white);
  text-align: center;
}
.top--article .top__slider .content-slider .top__foreground .top__content .lead-font, .top--article .top__slider .content-slider .top__foreground .top__content .product .top-info .product-data__resumen, .product .top-info .top--article .top__slider .content-slider .top__foreground .top__content .product-data__resumen, .top--article .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text h3.date, .articles-related .content .articles-wrapper article .article-text .top--article .top__slider .content-slider .top__foreground .top__content h3.date, .top--article .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a h3.headline-font, .top--article .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .ecommerce h3.user__name, .ecommerce .top--article .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a h3.user__name, .top--article .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .product .top-info h3.product-data__categoria, .product .top-info .top--article .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a h3.product-data__categoria, .top--article .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .filter-categories h3, .filter-categories .top--article .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a h3, .top--article .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a .categoria-recambios__item h3, .categoria-recambios__item .top--article .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a h3, .articles-related .content .articles-wrapper article .article-text a .top--article .top__slider .content-slider .top__foreground .top__content h3.headline-font, .articles-related .content .articles-wrapper article .article-text a .top--article .top__slider .content-slider .top__foreground .top__content .ecommerce h3.user__name, .ecommerce .articles-related .content .articles-wrapper article .article-text a .top--article .top__slider .content-slider .top__foreground .top__content h3.user__name, .articles-related .content .articles-wrapper article .article-text a .top--article .top__slider .content-slider .top__foreground .top__content .product .top-info h3.product-data__categoria, .product .top-info .articles-related .content .articles-wrapper article .article-text a .top--article .top__slider .content-slider .top__foreground .top__content h3.product-data__categoria, .articles-related .content .articles-wrapper article .article-text a .top--article .top__slider .content-slider .top__foreground .top__content .filter-categories h3, .filter-categories .articles-related .content .articles-wrapper article .article-text a .top--article .top__slider .content-slider .top__foreground .top__content h3, .articles-related .content .articles-wrapper article .article-text a .top--article .top__slider .content-slider .top__foreground .top__content .categoria-recambios__item h3, .categoria-recambios__item .articles-related .content .articles-wrapper article .article-text a .top--article .top__slider .content-slider .top__foreground .top__content h3, .top--article .top__slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text .article-links a, .articles-related .content .articles-wrapper article .article-text .article-links .top--article .top__slider .content-slider .top__foreground .top__content a {
  color: var(--white);
  text-align: center;
}
.top--inner .top__foreground .top__container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--content-min-width);
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .top--inner .top__foreground .top__container {
    width: 100%;
  }
}
.top--inner .top__foreground .top__container .top__content {
  width: var(--content-min-width);
  padding-top: var(--space-m);
}
@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 2) and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
  .top--inner .top__foreground .top__container .top__content {
    padding-top: 0;
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .top--inner .top__foreground .top__container .top__content {
    width: 100%;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .top--inner .top__foreground .top__container .top__content .display-5,
  .top--inner .top__foreground .top__container .top__content .body-font,
  .top--inner .top__foreground .top__container .top__content body,
  .top--inner .top__foreground .top__container .top__content .form .form-block label,
  .form .form-block .top--inner .top__foreground .top__container .top__content label,
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=text],
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=text],
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=textarea],
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=textarea],
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=email],
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=email],
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=tel],
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=tel],
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=number],
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=number],
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=date],
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=date],
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=password],
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=password],
  .top--inner .top__foreground .top__container .top__content .form .form-block textarea,
  .form .form-block .top--inner .top__foreground .top__container .top__content textarea,
  .top--inner .top__foreground .top__container .top__content .form .form-block select,
  .form .form-block .top--inner .top__foreground .top__container .top__content select,
  .top--inner .top__foreground .top__container .top__content .langs a,
  .langs .top--inner .top__foreground .top__container .top__content a,
  .top--inner .top__foreground .top__container .top__content .langs span,
  .langs .top--inner .top__foreground .top__container .top__content span,
  .top--inner .top__foreground .top__container .top__content .article__socials .date p,
  .article__socials .date .top--inner .top__foreground .top__container .top__content p,
  .top--inner .top__foreground .top__container .top__content .articles-related .content .articles-wrapper article .article-text p,
  .articles-related .content .articles-wrapper article .article-text .top--inner .top__foreground .top__container .top__content p,
  .top--inner .top__foreground .top__container .top__content .body-font strong,
  .top--inner .top__foreground .top__container .top__content body strong,
  .top--inner .top__foreground .top__container .top__content .form .form-block label strong,
  .form .form-block .top--inner .top__foreground .top__container .top__content label strong,
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=text] strong,
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=text] strong,
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=textarea] strong,
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=textarea] strong,
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=email] strong,
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=email] strong,
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=tel] strong,
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=tel] strong,
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=number] strong,
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=number] strong,
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=date] strong,
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=date] strong,
  .top--inner .top__foreground .top__container .top__content .form .form-block input[type=password] strong,
  .form .form-block .top--inner .top__foreground .top__container .top__content input[type=password] strong,
  .top--inner .top__foreground .top__container .top__content .form .form-block textarea strong,
  .form .form-block .top--inner .top__foreground .top__container .top__content textarea strong,
  .top--inner .top__foreground .top__container .top__content .form .form-block select strong,
  .form .form-block .top--inner .top__foreground .top__container .top__content select strong,
  .top--inner .top__foreground .top__container .top__content .langs a strong,
  .langs .top--inner .top__foreground .top__container .top__content a strong,
  .top--inner .top__foreground .top__container .top__content .langs span strong,
  .langs .top--inner .top__foreground .top__container .top__content span strong,
  .top--inner .top__foreground .top__container .top__content .article__socials .date p strong,
  .article__socials .date .top--inner .top__foreground .top__container .top__content p strong,
  .top--inner .top__foreground .top__container .top__content .articles-related .content .articles-wrapper article .article-text p strong,
  .articles-related .content .articles-wrapper article .article-text .top--inner .top__foreground .top__container .top__content p strong {
    text-align: center !important;
  }
}
.top--large {
  height: var(--top-large-height);
}
.top--small {
  height: var(--top-small-height);
}
.top--small {
  height: calc(var(--space-xl) * 6);
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .top--small {
    height: calc(var(--space-xl) * 5);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .top--small {
    height: calc(var(--space-xl) * 4);
  }
}
.top--slider .top__cover-video {
  visibility: hidden;
}
.top--video .top__slider {
  visibility: hidden;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .top--video .top__slider {
    visibility: visible;
    height: 100%;
  }
}

.top__down {
  opacity: 0.8;
  position: absolute;
  bottom: var(--space-l);
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border-radius: 15px 15px;
  border: 2px solid var(--white);
  transition: 0.5s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
  z-index: var(--z-index--body);
  cursor: pointer;
}
.top__down:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 10px;
  border-left: 2px solid var(--white);
  animation-name: mouse-scroll;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-delay: 5s;
  animation-timing-function: cubic-bezier(0.52, 0.01, 0.16, 1);
}
.top__down:hover {
  opacity: 1;
}
@keyframes mouse-scroll {
  0% {
    top: 10px;
  }
  25% {
    top: 20px;
  }
  35% {
    top: 12px;
  }
  45% {
    top: 18px;
  }
  50% {
    top: 10px;
  }
  100% {
    top: 10px;
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .top__down {
    display: none;
  }
}

.top__slider {
  position: relative;
  height: 100%;
}

.top__cover-video {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.top__cover-video .top__video {
  min-width: 100%;
  min-height: 100%;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .top__cover-video {
    display: none;
  }
}

.top__foreground {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  z-index: var(--z-index--hightlight);
}
.top__foreground--absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.top__foreground--relative {
  position: relative;
}

.top__container {
  width: var(--content-max-width);
  margin: auto;
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .top__container {
    width: 100%;
  }
}

.top__content {
  width: var(--content-min-width);
  margin: auto;
  z-index: var(--z-index--highlight);
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .top__content {
    padding: var(--space-s) quish-l;
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .top__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .top__content {
    height: 100%;
  }
}

.top__background {
  position: absolute;
  z-index: var(--z-index--background);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
}
.top__background .image {
  height: 100%;
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .top__background {
    min-height: 0;
    background-size: cover;
    transform: none;
  }
}

.top__buttons {
  position: absolute;
  display: flex;
  justify-content: space-evenly;
  left: 50%;
  bottom: var(--space-l);
  transform: translateX(-50%);
  z-index: var(--z-index--highlight);
  display: flex;
  align-items: center;
}
.top__buttons .slider__button {
  position: relative;
  display: inline-block;
  background-color: var(--bc-3);
  height: var(--space-m);
  width: var(--space-xl);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
}
.top__buttons .slider__button.current {
  background-color: var(--bc-1);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .top__buttons .slider__button {
    width: 10px;
    height: 10px;
    border: 2px solid var(--white);
  }
}

.top__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(var(--space-xl) * 5);
  height: calc(var(--space-xl) * 5);
  z-index: var(--z-index--highlight);
}
@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  .top__logo {
    width: calc(var(--space-xl) * 4);
    height: calc(var(--space-xl) * 4);
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .top__logo {
    width: calc(var(--space-xl) * 2);
    height: calc(var(--space-xl) * 2);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .top__logo {
    width: calc(var(--space-xl) * 1.5);
    height: calc(var(--space-xl) * 1.5);
  }
}
.top__logo a {
  width: 100%;
  height: 100%;
}
.top__logo a img {
  width: 100%;
  height: 100%;
}

.decoration-image {
  position: absolute;
}
.decoration-image--moved-bottom {
  transform: translateY(50%);
}
.decoration-image--moved-top {
  transform: translateY(-50%);
}
.decoration-image--bottom {
  bottom: 0;
}
.decoration-image--top {
  top: 0;
}
.decoration-image--left {
  left: 0;
}
.decoration-image--right {
  right: 0;
}
.decoration-image--middle-v {
  top: 50%;
  transform: translateY(-50%);
}
.decoration-image--middle-h {
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1250px) {
  .decoration-image--small-laptop {
    height: 240px !important;
  }
}
@media (max-width: 1600px) {
  .decoration-image--small-hd-laptop {
    height: 410px !important;
  }
}
@media (max-width: 1350px) {
  .decoration-image--small-hd-laptop {
    height: 340px !important;
  }
}
@media (max-width: 1600px) {
  .decoration-image--hide-hd-laptop {
    display: none;
  }
}
@media (max-width: $design-breakpoint) {
  .decoration-image--coffee, .decoration-image--cup {
    display: none;
  }
}
@media (max-width: 724px) {
  .decoration-image--the-roadster {
    display: none;
  }
}

/* ---------------------------------- */
/* ---------------------------------- */
/* ------ PAGE SPECIFIC STYLES ------ */
/* ---------------------------------- */
/* -------------------------- */
/* ----- BLOCKS LAYOUT ------ */
/* -------------------------- */
.blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  background-color: var(--white);
}
.blocks .grid__item .block {
  position: relative;
  display: flex;
  align-self: stretch;
  flex: 1;
  width: 100%;
  height: 100%;
  padding: 0;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .blocks .grid__item .block {
    min-height: 0;
  }
}
.blocks .grid__item .block__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.blocks .grid__item .block__cup {
  position: absolute;
  right: 0;
  top: var(--space-xxl);
}
.blocks .grid__item .block .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: var(--space-l) 0;
}
@media (max-width: $design-breakpoint) {
  .blocks .grid__item .block .content {
    padding: var(--space-xl) 0;
  }
}
@media (max-width: $padding-breakpoint) {
  .blocks .grid__item .block .content {
    padding: var(--space-l) 0;
  }
}
.blocks .grid__item .block .content.items-start {
  justify-content: flex-start;
}
.blocks .grid__item .block .content.items-center {
  justify-content: center;
}
.blocks .grid__item .block .content.items-end {
  justify-content: flex-end;
}
.blocks .grid__item .block .bg-image,
.blocks .grid__item .block .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-index-background);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}
.blocks .grid__item .block .bg-image.fixed,
.blocks .grid__item .block .bg-video.fixed {
  background-attachment: fixed;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .blocks .grid__item .block .bg-image.fixed,
  .blocks .grid__item .block .bg-video.fixed {
    background-attachment: scroll;
  }
}
.blocks .grid__item .block.bg--height-1-2 .block__bg {
  transform: scaleY(1.2);
  transform-origin: top;
}
@media (min-width:$design-breakpoint ) {
  .blocks .grid__item .block.bg--left .block__bg {
    left: -33%;
  }
  .blocks .grid__item .block.bg--bottom .block__bg {
    top: 18%;
  }
  .blocks .grid__item .block.bg--right .block__bg {
    right: -33%;
    left: auto;
  }
  .blocks .grid__item .block.bg--right-small .block__bg {
    right: -23%;
    left: auto;
  }
  .blocks .grid__item .block.bg--height-double .block__bg {
    transform: scaleY(2);
    transform-origin: bottom;
  }
  .blocks .grid__item .block.bg--height-1-5 .block__bg {
    transform: scaleY(1.5);
  }
}
.blocks .grid__item .block--width-fit-content .content {
  width: -moz-fit-content;
  width: fit-content;
}
.blocks .grid__item .block--wrapped .content {
  max-width: var(--content-min-width);
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .blocks .grid__item .block--wrapped .content {
    padding-left: var(--space-l);
    padding-right: var(--space-l);
  }
}
@media (max-width: $padding-breakpoint) {
  .blocks .grid__item .block--wrapped .content {
    padding-left: var(--space-m);
    padding-right: var(--space-m);
  }
}
.blocks .grid__item .block--wrapped-medium .content {
  max-width: var(--content-medium-width);
  margin: 0 auto;
}
@media (max-width: 1400px) {
  .blocks .grid__item .block--wrapped-medium .content {
    padding-left: var(--space-l);
    padding-right: var(--space-l);
  }
}
@media (max-width: $padding-breakpoint) {
  .blocks .grid__item .block--wrapped-medium .content {
    padding-left: var(--space-m);
    padding-right: var(--space-m);
  }
}
.blocks .grid__item .block--wrapped-max .content {
  max-width: var(--content-max-width);
  margin: 0 auto;
}
@media (max-width: 1700px) {
  .blocks .grid__item .block--wrapped-max .content {
    padding-left: var(--space-l);
    padding-right: var(--space-l);
  }
}
@media (max-width: $padding-breakpoint) {
  .blocks .grid__item .block--wrapped-max .content {
    padding-left: var(--space-m);
    padding-right: var(--space-m);
  }
}
@media (min-width: 1024px) {
  .blocks .grid__item .block--no-padding-top-desktop-block {
    padding-top: 0;
  }
}
@media (min-width: 1024px) {
  .blocks .grid__item .block--no-padding-top-desktop .content {
    padding-top: 0;
  }
}
.blocks .grid__item .block--no-lens .lens {
  display: none;
}
@media (max-width:$design-breakpoint ) {
  .blocks .grid__item .block--brown-mobile .text span {
    color: var(--brown) !important;
  }
  .blocks .grid__item .block--white-mobile .text span {
    color: var(--white) !important;
  }
}
@media (min-width:$design-breakpoint ) {
  .blocks .grid__item .block--xl-padding-top .content {
    padding-top: var(--space-xl);
  }
  .blocks .grid__item .block--xl-padding-bottom .content {
    padding-bottom: var(--space-xl);
  }
  .blocks .grid__item .block--xxl-padding-top .content {
    padding-top: var(--space-xxl);
  }
  .blocks .grid__item .block--xxl-padding-bottom .content {
    padding-bottom: var(--space-xxl);
  }
  .blocks .grid__item .block--no-padding .content {
    padding: 0;
  }
  .blocks .grid__item .block--no-padding-top .content {
    padding-top: 0;
  }
  .blocks .grid__item .block--no-padding-left .content {
    padding-left: 0;
  }
  .blocks .grid__item .block--no-padding-right .content {
    padding-right: 0;
  }
  .blocks .grid__item .block--no-padding-bottom .content {
    padding-bottom: 0;
  }
  .blocks .grid__item .block--no-padding-top-block {
    padding-top: 0;
  }
  .blocks .grid__item .block--no-padding-left-block {
    padding-left: 0;
  }
  .blocks .grid__item .block--no-padding-right-block {
    padding-right: 0;
  }
  .blocks .grid__item .block--no-padding-bottom-block {
    padding-bottom: 0;
  }
  .blocks .grid__item .block--xxl-padding-left .content {
    padding-left: var(--space-xxl);
  }
  .blocks .grid__item .block--xxl-padding-right .content {
    padding-right: var(--space-xxl);
  }
  .blocks .grid__item .block--xxl-padding-bottom .content {
    padding-bottom: var(--space-xxl);
  }
  .blocks .grid__item .block--xxl-padding-bottom-half .content {
    padding-bottom: calc(var(--space-xxl) * 1.5);
  }
  .blocks .grid__item .block--2xxl-padding-top .content {
    padding-top: calc(var(--space-xxl) * 2);
  }
  .blocks .grid__item .block--2xxl-padding-bottom .content {
    padding-bottom: calc(var(--space-xxl) * 2);
  }
  .blocks .grid__item .block--2xxl-padding-left .content {
    padding-left: calc(var(--space-xxl) * 2);
  }
  .blocks .grid__item .block--2xxl-padding-right .content {
    padding-right: calc(var(--space-xxl) * 2);
  }
  .blocks .grid__item .block--margin-right-auto .content {
    margin-right: auto;
    margin-left: 0;
  }
  .blocks .grid__item .block--margin-left-auto .content {
    margin-left: auto;
    margin-right: 0;
  }
  .blocks .grid__item .block--margin-right-l .content {
    margin-right: var(--space-l);
  }
  .blocks .grid__item .block--margin-left-l .content {
    margin-left: var(--space-l);
  }
  .blocks .grid__item .block--margin-left-xl .content {
    margin-left: var(--space-xl);
  }
  .blocks .grid__item .block--margin-right-xl .content {
    margin-right: var(--space-xl);
  }
  .blocks .grid__item .block--margin-left-xxl .content {
    margin-left: var(--space-xxl);
  }
  .blocks .grid__item .block--margin-right-xxl .content {
    margin-right: var(--space-xxl);
  }
  .blocks .grid__item .block--margin-left-2xxl .content {
    margin-left: calc(var(--space-xxl) * 2);
  }
  .blocks .grid__item .block--margin-right-2xxl .content {
    margin-right: calc(var(--space-xxl) * 2);
  }
  .blocks .grid__item .block--moved-top .content {
    margin-top: calc(-1 * var(--space-xl));
  }
  .blocks .grid__item .block--moved-top-xxl-half .content {
    margin-top: calc(-0.5 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-top-xxl .content {
    margin-top: calc(-1 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-top-2xxl .content {
    margin-top: calc(-2 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-top-3xxl .content {
    margin-top: calc(-3 * var(--space-xxl));
  }
}
@media (min-width:$design-breakpoint ) and (max-width:1600px) {
  .blocks .grid__item .block--moved-top-2xxl-hd-laptop .content {
    margin-top: calc(-2 * var(--space-xxl));
  }
}
@media (min-width:$design-breakpoint ) and (max-width:1300px) {
  .blocks .grid__item .block--moved-top-xxl-laptop .content {
    margin-top: calc(-1 * var(--space-xxl));
  }
}
@media (min-width:$design-breakpoint ) {
  .blocks .grid__item .block--moved-bottom .content {
    margin-bottom: calc(-1 * var(--space-xl));
  }
  .blocks .grid__item .block--moved-bottom-xxl-half .content {
    margin-bottom: calc(-0.5 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-bottom-xxl .content {
    margin-bottom: calc(-1 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-bottom-2xxl .content {
    margin-bottom: calc(-2 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-bottom-3xxl .content {
    margin-bottom: calc(-3 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-left .content {
    margin-left: calc(-1 * var(--space-xl));
  }
  .blocks .grid__item .block--moved-left-xxl-half .content {
    margin-left: calc(-0.5 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-left-xxl .content {
    margin-left: calc(-1 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-left-2xxl .content {
    margin-left: calc(-2 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-right .content {
    margin-right: calc(-1 * var(--space-xl));
  }
  .blocks .grid__item .block--moved-right-xxl-half .content {
    margin-right: calc(-0.5 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-right-xxl .content {
    margin-right: calc(-1 * var(--space-xxl));
  }
  .blocks .grid__item .block--moved-right-2xxl .content {
    margin-right: calc(-2 * var(--space-xxl));
  }
  .blocks .grid__item .block--negative-margin-bottom {
    margin-bottom: -90px;
  }
}
.blocks .grid__item .block .content--image-align-start .flex-content .image {
  justify-content: flex-start;
}
.blocks .grid__item .block .content--padding-right-xl {
  padding-right: var(--space-xl);
}
@media (max-width: 600px,) {
  .blocks .grid__item .block .content--padding-right-xl {
    padding-right: 0;
  }
}
.blocks .grid__item .block .content--text-padding-left-xl .flex-content .text {
  padding-left: var(--space-xl);
}
@media (max-width: 780px,) {
  .blocks .grid__item .block .content--text-padding-left-xl .flex-content .text {
    padding-left: 0;
  }
}
@media (max-width: 1200px,) {
  .blocks .grid__item .block .content--margin-bottom-mobile-xl {
    margin-bottom: var(--space-xl);
  }
}
.blocks .grid__item .block .content.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.blocks .grid__item .block.block-text-rgt-white .flex-content {
  display: flex !important;
  align-items: self-end;
}
.blocks .grid__item .block.block-text-rgt-white .flex-content .block-text-image__content {
  width: 35%;
  background-color: #F0E8E7;
  transform: translateY(20%);
  padding: var(--space-xl);
  padding-right: var(--space-xxl);
}
@media (max-width: 769px) {
  .blocks .grid__item .block.block-text-rgt-white .flex-content .block-text-image__content {
    transform: translateY(50%);
    width: 100%;
  }
}
.blocks .grid__item .block.block-text-rgt-white .flex-content .block-text-image__content .text {
  padding: var(--space-xxl);
  padding-bottom: 0;
}
.blocks .grid__item .block.articles_small_six .content, .blocks .grid__item .block.articles_small_four .content {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
.blocks .grid__item .block.articles_small_six .content .text, .blocks .grid__item .block.articles_small_four .content .text {
  padding-left: var(--space-xl);
  grid-column-start: 2;
  grid-row-start: 1;
}
.blocks .grid__item .block.articles_small_four .content {
  grid-template-columns: 1fr 2fr;
}
.blocks .grid__item .block.articles_small_four .content .text {
  padding-right: var(--space-xl);
  grid-column-start: 1;
  grid-row-start: 1;
}
@media (max-width: 768px,) {
  .blocks .grid__item .block.articles_small_six .content, .blocks .grid__item .block.articles_small_four .content {
    grid-template-columns: 1fr;
    row-gap: var(--space-xl);
  }
}
@media (max-width: 768px,) {
  .blocks .grid__item .block.articles_small_six .content .text, .blocks .grid__item .block.articles_small_four .content .text {
    padding: 0;
    grid-column-start: 1;
  }
}
.blocks--article .block {
  align-items: center;
  justify-content: center;
}
.blocks--article .block .content {
  max-width: 900px;
}
.blocks--article .block .content .flex-content .block-text-image__content {
  max-width: 700px;
  justify-self: center;
}
.blocks--thanks {
  height: 200px;
}
.blocks--legal ul {
  list-style: disc;
  margin-left: var(--space-l);
  margin-top: var(--space-s);
}
.blocks--legal ul li {
  list-style: disc;
}

/* -------------------------- */
.loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: var(--white);
  z-index: 9999;
  transition: all 0.4s linear;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader.loaded {
  opacity: 0;
}
.loader > img {
  transform: translateY(-100%);
  transition: all 0.2s linear;
}

.block-gallery {
  padding: 0 !important;
}
.block-gallery .content {
  padding: 0 !important;
  height: 100%;
}
.block-gallery .content .block-text {
  padding: 0;
  margin: auto;
}
.block-gallery .gallery {
  height: 100%;
}
.block-gallery .gallery .item {
  height: 100%;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .block-gallery .gallery .item {
    width: calc(50% - var(--space-m));
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .block-gallery .gallery .item {
    width: calc(100% - var(--space-m));
    margin-bottom: var(--space-xs);
  }
}
.block-gallery .carrousel {
  max-width: var(--content-max-width);
  margin: auto;
  height: 350px;
}
.block-gallery .carrousel .content-carrousel .viewport .item {
  padding: 0 var(--space-m) var(--space-m);
}
.block-gallery .carrousel .content-carrousel .viewport .item .image {
  width: calc(16% - 20px);
  height: auto;
  margin: 0 var(--space-s);
}
.block-gallery .carrousel .content-carrousel .viewport .item .image img {
  filter: grayscale(1);
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .block-gallery .carrousel .content-carrousel .viewport .item .image {
    width: calc(25% - 20px);
  }
}
.block-gallery .carrousel .buttons {
  bottom: 0;
}
.block-gallery .carrousel .buttons span {
  border-color: var(--g-10);
  background-color: var(--g-10);
}
.block-gallery .carrousel .buttons span.current {
  border-color: var(--g-10);
  background-color: var(--g-10);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .block-gallery .content .block-text {
    padding: 0 var(--space-m);
  }
  .block-gallery .carrousel {
    height: calc(100vh - 50px);
    margin-bottom: var(--space-m);
  }
  .block-gallery .carrousel .content-carrousel .viewport .item .image {
    width: calc(50% - 20px);
  }
}

.block-form .content {
  padding: var(--space-l) var(--space-xl);
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .block-form .content {
    padding: var(--space-l);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .block-form .content {
    padding: var(--space-m);
  }
}
.block-form .content .flex-content {
  width: 100%;
  height: -moz-min-content;
  height: min-content;
}
.block-form .content .flex-content .text {
  width: 100%;
  height: auto;
  margin-bottom: var(--space-xl);
}
.block-form .content .flex-content #config-form .form-block input {
  border: 1px solid black;
}
.block-form .content .flex-content #config-form .form-block textarea {
  border: 1px solid black;
}
.block-form.block--grid .content .flex-content .form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 900px) {
  .block-form.block--grid .content .flex-content .form {
    display: flex;
    flex-direction: column;
  }
}
.block-form.block--grid .content .flex-content .form .form-block.form-block--textarea {
  grid-column: 2/3;
  grid-row: 1/5;
}
.block-form.block--grid .content .flex-content .form .button-block.button-block--end {
  grid-column: 2/3;
  grid-row: 4/5;
}
.block-form.block--grid .content .flex-content .form .g-recaptcha {
  justify-content: left;
}
.block-form.block--grid .content .flex-content .form .button-block .button {
  color: white;
}

.block-image .content .flex-content {
  display: flex;
  align-items: center;
  height: 100%;
}
.block-image .content .flex-content .image {
  width: 100%;
}
@media (max-width: 700px) {
  .block-image .content .flex-content .image {
    width: 100% !important;
  }
}

.block-map .content .flex-content {
  width: 100%;
  height: 100%;
}
.block-map .content .flex-content .text {
  margin-bottom: var(--space-m);
}
.block-map .content .flex-content .map-multi {
  height: 100%;
}

@media (max-width: 1650px) {
  #interactive-map .blob:not(.blob--visible-on-laptop) {
    display: none;
  }
}
#interactive-map .content .flex-content .map-multi {
  min-height: 650px;
}
@media (max-width: 610px) {
  #interactive-map .content .flex-content .map-multi {
    min-height: 400px;
  }
}
#interactive-map .content .flex-content .text {
  margin-bottom: 0;
}

.contacts_map .content .map-multi {
  min-height: 700px;
}
@media (max-width: 610px) {
  .contacts_map .content .map-multi {
    min-height: 400px;
  }
}

.block-multiple .content {
  padding: var(--space-l) var(--space-xl);
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .block-multiple .content {
    padding: var(--space-l);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .block-multiple .content {
    padding: var(--space-m);
  }
}
.block-multiple .content .flex-content {
  width: 100%;
  height: -moz-min-content;
  height: min-content;
  margin-bottom: var(--space-m);
}
.block-multiple .content .flex-content .text {
  width: 100%;
  height: auto;
  margin-bottom: var(--space-xl);
}
@media (max-width: 800px) {
  .block-multiple .content .flex-content .text {
    margin-bottom: var(--space-l);
  }
}

.multiple--mosaic .multiple__item--mosaic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(var(--space-xl) * 3);
  padding: var(--space-l);
}
.multiple--mosaic .multiple__item--mosaic .multiple__lens {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.4);
  min-width: 100%;
  min-height: 100%;
  z-index: var(--z-index--background);
}
.multiple--mosaic .multiple__item--mosaic .multiple__background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-width: 100%;
  min-height: 100%;
  z-index: var(--z-index--background);
}
.multiple--mosaic .multiple__item--mosaic .multiple__content {
  z-index: var(--z-index--body);
}
.multiple--mosaic-alternate .multiple__item--mosaic-alternate {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(var(--space-xl) * 3);
  padding: var(--space-l);
  overflow: hidden;
}
.multiple--mosaic-alternate .multiple__item--mosaic-alternate .multiple__lens {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.4);
  min-width: 100%;
  min-height: 100%;
  z-index: var(--z-index--background);
}
.multiple--mosaic-alternate .multiple__item--mosaic-alternate .multiple__background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-width: 100%;
  min-height: 100%;
  z-index: var(--z-index--background);
}
.multiple--mosaic-alternate .multiple__item--mosaic-alternate .multiple__content {
  z-index: var(--z-index--body);
  transition: all 0.4s ease-in-out;
}
.multiple--mosaic-alternate .multiple__item--mosaic-alternate .multiple__content--alternate {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
  opacity: 0;
  visibility: hidden;
  z-index: var(--z-index--hidden);
}
.multiple--mosaic-alternate .multiple__item--mosaic-alternate:hover .multiple__content {
  visibility: hidden;
  opacity: 0;
  z-index: var(--z-index--hidden);
}
.multiple--mosaic-alternate .multiple__item--mosaic-alternate:hover .multiple__content--alternate {
  transform: translate(0, -50%);
  right: auto;
  opacity: 1;
  visibility: visible;
  z-index: var(--z-index--body);
}
.multiple--featured {
  justify-content: center;
  -moz-column-gap: var(--space-xl);
       column-gap: var(--space-xl);
  text-align: center;
  row-gap: var(--space-l);
}
@media (max-width: 800px) {
  .multiple--featured {
    gap: var(--space-l);
  }
}
.multiple--featured.items--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 800px) {
  .multiple--featured.items--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 410px) {
  .multiple--featured.items--2 {
    grid-template-columns: 1fr;
  }
}
.multiple--featured.items--2 .multiple__item--featured {
  grid-column: span 2;
  justify-self: start;
  justify-content: flex-start;
}
@media (max-width: 800px) {
  .multiple--featured.items--2 .multiple__item--featured {
    grid-column: span 1;
  }
}
@media (max-width: 410px) {
  .multiple--featured.items--2 .multiple__item--featured {
    justify-self: center;
  }
}
.multiple--featured.items--2 .multiple__item--featured .multiple__icon {
  margin-right: auto;
  height: auto;
  justify-content: flex-start;
}
@media (max-width: 410px) {
  .multiple--featured.items--2 .multiple__item--featured .multiple__icon {
    justify-content: center;
  }
}
.multiple--featured.items--2 .multiple__item--featured .multiple__content {
  align-items: flex-start;
  text-align: start;
}
@media (max-width: 410px) {
  .multiple--featured.items--2 .multiple__item--featured .multiple__content {
    align-items: center;
    text-align: center;
  }
}
@media (min-width: 800px) {
  .multiple--featured.items--2 .multiple__item--featured:nth-child(3) {
    grid-column: 2/span 2;
  }
  .multiple--featured.items--2 .multiple__item--featured:nth-child(4) {
    grid-column: 4/span 2;
  }
}
.multiple--featured.items--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 850px) {
  .multiple--featured.items--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 410px) {
  .multiple--featured.items--3 {
    grid-template-columns: 1fr;
  }
}
.multiple--featured.items--3 .multiple__item--featured {
  justify-content: flex-start;
}
@media (max-width: 1150px) {
  .multiple--featured.items--3 .multiple__item--featured {
    width: 100%;
  }
}
.multiple--featured.items--3 .multiple__item--featured .multiple__icon {
  margin-right: auto;
  height: auto;
  justify-content: flex-start;
}
.multiple--featured.items--3 .multiple__item--featured .multiple__content {
  align-items: flex-start;
  text-align: start;
}
.multiple--featured.items--3 .multiple__item--featured .multiple__content .display-2, .multiple--featured.items--3 .multiple__item--featured .multiple__content .product .top-info .product-data__precio, .product .top-info .multiple--featured.items--3 .multiple__item--featured .multiple__content .product-data__precio, .multiple--featured.items--3 .multiple__item--featured .multiple__content .article__socials p, .article__socials .multiple--featured.items--3 .multiple__item--featured .multiple__content p, .multiple--featured.items--3 .multiple__item--featured .multiple__content .articles-related .content .text h3, .articles-related .content .text .multiple--featured.items--3 .multiple__item--featured .multiple__content h3 {
  margin-bottom: var(--space-s);
}
.multiple--featured.items--3 .multiple__item--featured:nth-child(4), .multiple--featured.items--3 .multiple__item--featured:nth-child(5), .multiple--featured.items--3 .multiple__item--featured:nth-child(6) {
  margin-left: auto;
}
@media (max-width: 1150px) {
  .multiple--featured.items--3 .multiple__item--featured:nth-child(4), .multiple--featured.items--3 .multiple__item--featured:nth-child(5), .multiple--featured.items--3 .multiple__item--featured:nth-child(6) {
    margin-left: 0;
  }
}
.multiple--featured .multiple__item--featured {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  justify-self: center;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .multiple--featured .multiple__item--featured {
    margin-bottom: var(--space-l);
  }
  .multiple--featured .multiple__item--featured:last-child {
    margin-bottom: 0;
  }
}
.multiple--featured .multiple__item--featured .multiple__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 295px;
  width: 100%;
  margin-bottom: var(--space-m);
}
.multiple--featured .multiple__item--featured .multiple__icon .multiple__icon-img {
  height: 100%;
  width: auto;
}
.multiple--featured .multiple__item--featured .multiple__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-grow: 1;
  width: 100%;
  margin-top: var(--space-m);
}
.multiple--tabs .multiple__tablinks {
  width: 100%;
}
.multiple--tabs .multiple__tablinks .multiple__tablink {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bc-1-lighter-30);
  padding: var(--space-m);
  transition: all 0.3s;
  cursor: pointer;
}
.multiple--tabs .multiple__tablinks .multiple__tablink.active {
  background-color: var(--bc-1);
}
.multiple--tabs .multiple__tablinks .multiple__tablink .headline-font, .multiple--tabs .multiple__tablinks .multiple__tablink .ecommerce .user__name, .ecommerce .multiple--tabs .multiple__tablinks .multiple__tablink .user__name, .multiple--tabs .multiple__tablinks .multiple__tablink .productos-relacionados__titulo h2, .productos-relacionados__titulo .multiple--tabs .multiple__tablinks .multiple__tablink h2, .multiple--tabs .multiple__tablinks .multiple__tablink .product .top-info .product-data__categoria, .product .top-info .multiple--tabs .multiple__tablinks .multiple__tablink .product-data__categoria, .multiple--tabs .multiple__tablinks .multiple__tablink .filter-categories h3, .filter-categories .multiple--tabs .multiple__tablinks .multiple__tablink h3, .multiple--tabs .multiple__tablinks .multiple__tablink .categoria-recambios__item h3, .categoria-recambios__item .multiple--tabs .multiple__tablinks .multiple__tablink h3 {
  font-size: 16px;
  text-align: center;
}
.multiple--tabs .multiple__item--tabs {
  padding: var(--space-l);
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  transition: all 0.5s;
}
.multiple--tabs .multiple__item--tabs.active {
  visibility: visible;
  opacity: 1;
  max-height: calc(var(--space-xl) * 13);
}
.multiple--tabs .multiple__item--tabs .multiple__content .display-5,
.multiple--tabs .multiple__item--tabs .multiple__content .display-4,
.multiple--tabs .multiple__item--tabs .multiple__content .display-3,
.multiple--tabs .multiple__item--tabs .multiple__content .ecommerce .profile__welcome,
.ecommerce .multiple--tabs .multiple__item--tabs .multiple__content .profile__welcome,
.multiple--tabs .multiple__item--tabs .multiple__content .product .top-info .product-data__nombre,
.product .top-info .multiple--tabs .multiple__item--tabs .multiple__content .product-data__nombre,
.multiple--tabs .multiple__item--tabs .multiple__content .display-2,
.multiple--tabs .multiple__item--tabs .multiple__content .product .top-info .product-data__precio,
.product .top-info .multiple--tabs .multiple__item--tabs .multiple__content .product-data__precio,
.multiple--tabs .multiple__item--tabs .multiple__content .article__socials p,
.article__socials .multiple--tabs .multiple__item--tabs .multiple__content p,
.multiple--tabs .multiple__item--tabs .multiple__content .articles-related .content .text h3,
.articles-related .content .text .multiple--tabs .multiple__item--tabs .multiple__content h3,
.multiple--tabs .multiple__item--tabs .multiple__content .display-1,
.multiple--tabs .multiple__item--tabs .multiple__content .product__info .accordion .accordion__items__item .accordion-title,
.product__info .accordion .accordion__items__item .multiple--tabs .multiple__item--tabs .multiple__content .accordion-title,
.multiple--tabs .multiple__item--tabs .multiple__content .headline-font,
.multiple--tabs .multiple__item--tabs .multiple__content .ecommerce .user__name,
.ecommerce .multiple--tabs .multiple__item--tabs .multiple__content .user__name,
.multiple--tabs .multiple__item--tabs .multiple__content .productos-relacionados__titulo h2,
.productos-relacionados__titulo .multiple--tabs .multiple__item--tabs .multiple__content h2,
.multiple--tabs .multiple__item--tabs .multiple__content .product .top-info .product-data__categoria,
.product .top-info .multiple--tabs .multiple__item--tabs .multiple__content .product-data__categoria,
.multiple--tabs .multiple__item--tabs .multiple__content .filter-categories h3,
.filter-categories .multiple--tabs .multiple__item--tabs .multiple__content h3,
.multiple--tabs .multiple__item--tabs .multiple__content .categoria-recambios__item h3,
.categoria-recambios__item .multiple--tabs .multiple__item--tabs .multiple__content h3,
.multiple--tabs .multiple__item--tabs .multiple__content .body-font,
.multiple--tabs .multiple__item--tabs .multiple__content body,
.multiple--tabs .multiple__item--tabs .multiple__content .form .form-block label,
.form .form-block .multiple--tabs .multiple__item--tabs .multiple__content label,
.multiple--tabs .multiple__item--tabs .multiple__content .form .form-block input[type=text],
.form .form-block .multiple--tabs .multiple__item--tabs .multiple__content input[type=text],
.multiple--tabs .multiple__item--tabs .multiple__content .form .form-block input[type=textarea],
.form .form-block .multiple--tabs .multiple__item--tabs .multiple__content input[type=textarea],
.multiple--tabs .multiple__item--tabs .multiple__content .form .form-block input[type=email],
.form .form-block .multiple--tabs .multiple__item--tabs .multiple__content input[type=email],
.multiple--tabs .multiple__item--tabs .multiple__content .form .form-block input[type=tel],
.form .form-block .multiple--tabs .multiple__item--tabs .multiple__content input[type=tel],
.multiple--tabs .multiple__item--tabs .multiple__content .form .form-block input[type=number],
.form .form-block .multiple--tabs .multiple__item--tabs .multiple__content input[type=number],
.multiple--tabs .multiple__item--tabs .multiple__content .form .form-block input[type=date],
.form .form-block .multiple--tabs .multiple__item--tabs .multiple__content input[type=date],
.multiple--tabs .multiple__item--tabs .multiple__content .form .form-block input[type=password],
.form .form-block .multiple--tabs .multiple__item--tabs .multiple__content input[type=password],
.multiple--tabs .multiple__item--tabs .multiple__content .form .form-block textarea,
.form .form-block .multiple--tabs .multiple__item--tabs .multiple__content textarea,
.multiple--tabs .multiple__item--tabs .multiple__content .form .form-block select,
.form .form-block .multiple--tabs .multiple__item--tabs .multiple__content select,
.multiple--tabs .multiple__item--tabs .multiple__content .langs a,
.langs .multiple--tabs .multiple__item--tabs .multiple__content a,
.multiple--tabs .multiple__item--tabs .multiple__content .langs span,
.langs .multiple--tabs .multiple__item--tabs .multiple__content span,
.multiple--tabs .multiple__item--tabs .multiple__content .articles-related .content .articles-wrapper article .article-text p,
.articles-related .content .articles-wrapper article .article-text .multiple--tabs .multiple__item--tabs .multiple__content p {
  margin-bottom: var(--space-m);
}
.multiple--accordion {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.multiple--accordion .multiple__item--accordion {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.multiple--accordion .multiple__item--accordion .multiple__title {
  flex: 0 0 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: var(--space-m);
  background-color: var(--bc-2);
  cursor: pointer;
}
.multiple--accordion .multiple__item--accordion .multiple__content {
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  z-index: var(--z-index--hidden);
  padding: 0 var(--space-l);
  transition: max-height 0.5s, visibility 0.7s, opacity 0.7s, z-index 0.7s, padding 0.7s;
  overflow: hidden;
}
.multiple--accordion .multiple__item--accordion .multiple__content.active {
  visibility: visible;
  opacity: 1;
  z-index: var(--z-index--body);
  max-height: calc(var(--space-xl) * 13);
  padding: var(--space-l);
}
.multiple--accordion .multiple__item--accordion .multiple__content .display-5,
.multiple--accordion .multiple__item--accordion .multiple__content .display-4,
.multiple--accordion .multiple__item--accordion .multiple__content .display-3,
.multiple--accordion .multiple__item--accordion .multiple__content .ecommerce .profile__welcome,
.ecommerce .multiple--accordion .multiple__item--accordion .multiple__content .profile__welcome,
.multiple--accordion .multiple__item--accordion .multiple__content .product .top-info .product-data__nombre,
.product .top-info .multiple--accordion .multiple__item--accordion .multiple__content .product-data__nombre,
.multiple--accordion .multiple__item--accordion .multiple__content .display-2,
.multiple--accordion .multiple__item--accordion .multiple__content .product .top-info .product-data__precio,
.product .top-info .multiple--accordion .multiple__item--accordion .multiple__content .product-data__precio,
.multiple--accordion .multiple__item--accordion .multiple__content .article__socials p,
.article__socials .multiple--accordion .multiple__item--accordion .multiple__content p,
.multiple--accordion .multiple__item--accordion .multiple__content .articles-related .content .text h3,
.articles-related .content .text .multiple--accordion .multiple__item--accordion .multiple__content h3,
.multiple--accordion .multiple__item--accordion .multiple__content .display-1,
.multiple--accordion .multiple__item--accordion .multiple__content .product__info .accordion .accordion__items__item .accordion-title,
.product__info .accordion .accordion__items__item .multiple--accordion .multiple__item--accordion .multiple__content .accordion-title,
.multiple--accordion .multiple__item--accordion .multiple__content .headline-font,
.multiple--accordion .multiple__item--accordion .multiple__content .ecommerce .user__name,
.ecommerce .multiple--accordion .multiple__item--accordion .multiple__content .user__name,
.multiple--accordion .multiple__item--accordion .multiple__content .productos-relacionados__titulo h2,
.productos-relacionados__titulo .multiple--accordion .multiple__item--accordion .multiple__content h2,
.multiple--accordion .multiple__item--accordion .multiple__content .product .top-info .product-data__categoria,
.product .top-info .multiple--accordion .multiple__item--accordion .multiple__content .product-data__categoria,
.multiple--accordion .multiple__item--accordion .multiple__content .filter-categories h3,
.filter-categories .multiple--accordion .multiple__item--accordion .multiple__content h3,
.multiple--accordion .multiple__item--accordion .multiple__content .categoria-recambios__item h3,
.categoria-recambios__item .multiple--accordion .multiple__item--accordion .multiple__content h3,
.multiple--accordion .multiple__item--accordion .multiple__content .body-font,
.multiple--accordion .multiple__item--accordion .multiple__content body,
.multiple--accordion .multiple__item--accordion .multiple__content .form .form-block label,
.form .form-block .multiple--accordion .multiple__item--accordion .multiple__content label,
.multiple--accordion .multiple__item--accordion .multiple__content .form .form-block input[type=text],
.form .form-block .multiple--accordion .multiple__item--accordion .multiple__content input[type=text],
.multiple--accordion .multiple__item--accordion .multiple__content .form .form-block input[type=textarea],
.form .form-block .multiple--accordion .multiple__item--accordion .multiple__content input[type=textarea],
.multiple--accordion .multiple__item--accordion .multiple__content .form .form-block input[type=email],
.form .form-block .multiple--accordion .multiple__item--accordion .multiple__content input[type=email],
.multiple--accordion .multiple__item--accordion .multiple__content .form .form-block input[type=tel],
.form .form-block .multiple--accordion .multiple__item--accordion .multiple__content input[type=tel],
.multiple--accordion .multiple__item--accordion .multiple__content .form .form-block input[type=number],
.form .form-block .multiple--accordion .multiple__item--accordion .multiple__content input[type=number],
.multiple--accordion .multiple__item--accordion .multiple__content .form .form-block input[type=date],
.form .form-block .multiple--accordion .multiple__item--accordion .multiple__content input[type=date],
.multiple--accordion .multiple__item--accordion .multiple__content .form .form-block input[type=password],
.form .form-block .multiple--accordion .multiple__item--accordion .multiple__content input[type=password],
.multiple--accordion .multiple__item--accordion .multiple__content .form .form-block textarea,
.form .form-block .multiple--accordion .multiple__item--accordion .multiple__content textarea,
.multiple--accordion .multiple__item--accordion .multiple__content .form .form-block select,
.form .form-block .multiple--accordion .multiple__item--accordion .multiple__content select,
.multiple--accordion .multiple__item--accordion .multiple__content .langs a,
.langs .multiple--accordion .multiple__item--accordion .multiple__content a,
.multiple--accordion .multiple__item--accordion .multiple__content .langs span,
.langs .multiple--accordion .multiple__item--accordion .multiple__content span,
.multiple--accordion .multiple__item--accordion .multiple__content .articles-related .content .articles-wrapper article .article-text p,
.articles-related .content .articles-wrapper article .article-text .multiple--accordion .multiple__item--accordion .multiple__content p {
  margin-bottom: var(--space-m);
}
.multiple--list {
  width: 100%;
}
.multiple--list .multiple__item--list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .multiple--list .multiple__item--list {
    flex-direction: column;
    margin-bottom: var(--space-l);
  }
  .multiple--list .multiple__item--list:last-child {
    margin-bottom: 0;
  }
}
.multiple--list .multiple__item--list .multiple__icon {
  width: var(--space-xl);
  min-width: var(--space-xl);
  height: auto;
  margin: 0 var(--space-m) 0 0;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .multiple--list .multiple__item--list .multiple__icon {
    margin-right: 0;
    margin-bottom: var(--space-m);
  }
}
.multiple--list .multiple__item--list .multiple__content {
  flex-grow: 1;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .multiple--list .multiple__item--list .multiple__content {
    text-align: center;
  }
}
.multiple--list .multiple__item--list .button-block {
  flex-direction: column;
  width: auto;
  margin: 0 0 0 var(--space-m);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .multiple--list .multiple__item--list .button-block {
    margin-top: var(--space-m);
    margin-left: 0;
  }
}
.multiple--list .multiple__item--list .button-block .button {
  margin: 0 0 var(--space-s) 0;
}
.multiple--list .multiple__item--list .button-block .button:last-child {
  margin: 0;
}
.multiple--alternate .multiple__item--alternate {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: calc(var(--space-xl) * 4);
  max-width: var(--content-medium-width);
  margin: auto;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .multiple--alternate .multiple__item--alternate {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .multiple--alternate .multiple__item--alternate {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, calc(var(--space-xl) * 4));
  }
}
.multiple--alternate .multiple__item--alternate .multiple__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--g-10);
  padding: var(--space-l);
}
.multiple--alternate .multiple__item--alternate .multiple__content .display-5,
.multiple--alternate .multiple__item--alternate .multiple__content .display-4,
.multiple--alternate .multiple__item--alternate .multiple__content .display-3,
.multiple--alternate .multiple__item--alternate .multiple__content .ecommerce .profile__welcome,
.ecommerce .multiple--alternate .multiple__item--alternate .multiple__content .profile__welcome,
.multiple--alternate .multiple__item--alternate .multiple__content .product .top-info .product-data__nombre,
.product .top-info .multiple--alternate .multiple__item--alternate .multiple__content .product-data__nombre,
.multiple--alternate .multiple__item--alternate .multiple__content .display-2,
.multiple--alternate .multiple__item--alternate .multiple__content .product .top-info .product-data__precio,
.product .top-info .multiple--alternate .multiple__item--alternate .multiple__content .product-data__precio,
.multiple--alternate .multiple__item--alternate .multiple__content .article__socials p,
.article__socials .multiple--alternate .multiple__item--alternate .multiple__content p,
.multiple--alternate .multiple__item--alternate .multiple__content .articles-related .content .text h3,
.articles-related .content .text .multiple--alternate .multiple__item--alternate .multiple__content h3,
.multiple--alternate .multiple__item--alternate .multiple__content .display-1,
.multiple--alternate .multiple__item--alternate .multiple__content .product__info .accordion .accordion__items__item .accordion-title,
.product__info .accordion .accordion__items__item .multiple--alternate .multiple__item--alternate .multiple__content .accordion-title,
.multiple--alternate .multiple__item--alternate .multiple__content .headline-font,
.multiple--alternate .multiple__item--alternate .multiple__content .ecommerce .user__name,
.ecommerce .multiple--alternate .multiple__item--alternate .multiple__content .user__name,
.multiple--alternate .multiple__item--alternate .multiple__content .productos-relacionados__titulo h2,
.productos-relacionados__titulo .multiple--alternate .multiple__item--alternate .multiple__content h2,
.multiple--alternate .multiple__item--alternate .multiple__content .product .top-info .product-data__categoria,
.product .top-info .multiple--alternate .multiple__item--alternate .multiple__content .product-data__categoria,
.multiple--alternate .multiple__item--alternate .multiple__content .filter-categories h3,
.filter-categories .multiple--alternate .multiple__item--alternate .multiple__content h3,
.multiple--alternate .multiple__item--alternate .multiple__content .categoria-recambios__item h3,
.categoria-recambios__item .multiple--alternate .multiple__item--alternate .multiple__content h3,
.multiple--alternate .multiple__item--alternate .multiple__content .body-font,
.multiple--alternate .multiple__item--alternate .multiple__content body,
.multiple--alternate .multiple__item--alternate .multiple__content .form .form-block label,
.form .form-block .multiple--alternate .multiple__item--alternate .multiple__content label,
.multiple--alternate .multiple__item--alternate .multiple__content .form .form-block input[type=text],
.form .form-block .multiple--alternate .multiple__item--alternate .multiple__content input[type=text],
.multiple--alternate .multiple__item--alternate .multiple__content .form .form-block input[type=textarea],
.form .form-block .multiple--alternate .multiple__item--alternate .multiple__content input[type=textarea],
.multiple--alternate .multiple__item--alternate .multiple__content .form .form-block input[type=email],
.form .form-block .multiple--alternate .multiple__item--alternate .multiple__content input[type=email],
.multiple--alternate .multiple__item--alternate .multiple__content .form .form-block input[type=tel],
.form .form-block .multiple--alternate .multiple__item--alternate .multiple__content input[type=tel],
.multiple--alternate .multiple__item--alternate .multiple__content .form .form-block input[type=number],
.form .form-block .multiple--alternate .multiple__item--alternate .multiple__content input[type=number],
.multiple--alternate .multiple__item--alternate .multiple__content .form .form-block input[type=date],
.form .form-block .multiple--alternate .multiple__item--alternate .multiple__content input[type=date],
.multiple--alternate .multiple__item--alternate .multiple__content .form .form-block input[type=password],
.form .form-block .multiple--alternate .multiple__item--alternate .multiple__content input[type=password],
.multiple--alternate .multiple__item--alternate .multiple__content .form .form-block textarea,
.form .form-block .multiple--alternate .multiple__item--alternate .multiple__content textarea,
.multiple--alternate .multiple__item--alternate .multiple__content .form .form-block select,
.form .form-block .multiple--alternate .multiple__item--alternate .multiple__content select,
.multiple--alternate .multiple__item--alternate .multiple__content .langs a,
.langs .multiple--alternate .multiple__item--alternate .multiple__content a,
.multiple--alternate .multiple__item--alternate .multiple__content .langs span,
.langs .multiple--alternate .multiple__item--alternate .multiple__content span,
.multiple--alternate .multiple__item--alternate .multiple__content .articles-related .content .articles-wrapper article .article-text p,
.articles-related .content .articles-wrapper article .article-text .multiple--alternate .multiple__item--alternate .multiple__content p {
  margin-bottom: var(--space-m);
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .multiple--alternate .multiple__item--alternate .multiple__void {
    display: none;
  }
}
.multiple--alternate .multiple__item--alternate:nth-child(odd) .multiple__icon {
  order: 1;
}
.multiple--alternate .multiple__item--alternate:nth-child(odd) .multiple__content {
  order: 2;
}
.multiple--alternate .multiple__item--alternate:nth-child(odd) .multiple__void {
  order: 3;
}
.multiple--alternate .multiple__item--alternate:nth-child(even) .multiple__icon {
  order: 2;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .multiple--alternate .multiple__item--alternate:nth-child(even) .multiple__icon {
    order: 2;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .multiple--alternate .multiple__item--alternate:nth-child(even) .multiple__icon {
    order: 1;
  }
}
.multiple--alternate .multiple__item--alternate:nth-child(even) .multiple__content {
  order: 3;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .multiple--alternate .multiple__item--alternate:nth-child(even) .multiple__content {
    order: 1;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .multiple--alternate .multiple__item--alternate:nth-child(even) .multiple__content {
    order: 2;
  }
}
.multiple--alternate .multiple__item--alternate:nth-child(even) .multiple__void {
  order: 1;
}

.block-slider .content .flex-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: var(--space-l) var(--space-xl);
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .block-slider .content .flex-content {
    padding: var(--space-l);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .block-slider .content .flex-content {
    padding: var(--space-m);
  }
}
.block-slider .content .flex-content.no-padding {
  padding: 0;
}
.block-slider .content .flex-content .slider {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.block-slider .content .flex-content .slider--height-1 {
  min-height: calc(var(--space-xl) * 5);
}
.block-slider .content .flex-content .slider--height-2 {
  min-height: calc(var(--space-xl) * 10);
}
.block-slider .content .flex-content .slider .content-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.block-slider .content .flex-content .slider .content-slider .slide {
  top: auto;
  left: auto;
}
.block-slider .content .flex-content .slider .content-slider .slide .slide__element {
  position: relative;
  width: 100%;
  height: 100%;
}
.block-slider .content .flex-content .slider .content-slider .slide .slide__element .slide__background {
  position: absolute;
  z-index: var(--z-index--background);
}
.block-slider .content .flex-content .slider .content-slider .slide .slide__element .slide__foreground {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: var(--z-index--body);
  width: 100%;
  height: 100%;
}
.block-slider .content .flex-content .slider .content-slider .slide.items--1 {
  min-height: calc(var(--space-xl) * 5);
}
.block-slider .content .flex-content .slider .content-slider .slide.items--2 {
  min-height: calc(var(--space-xl) * 4);
}
.block-slider .content .flex-content .slider .content-slider .slide.items--3 {
  min-height: calc(var(--space-xl) * 3);
}
.block-slider .content .flex-content .slider .slider__buttons {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: var(--space-m);
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-index--body);
}
.block-slider .content .flex-content .slider .slider__buttons .slider__button {
  position: relative;
  display: inline-block;
  width: var(--space-m);
  height: var(--space-m);
  margin-left: var(--space-m);
  border: 2px solid var(--white);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
}
.block-slider .content .flex-content .slider .slider__buttons .slider__button:first-child {
  margin-left: 0;
}
.block-slider .content .flex-content .slider .slider__buttons .slider__button.current:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid var(--white);
  border-radius: 50%;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .block-slider .content .flex-content .slider .slider__buttons .slider__button {
    width: 10px;
    height: 10px;
    border: 2px solid var(--white);
  }
}

.blocks .block.block-text-image .content .flex-content {
  position: relative;
  width: 100%;
  height: -moz-min-content;
  height: min-content;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}
@media (max-width:$design-breakpoint, ) {
  .blocks .block.block-text-image .content .flex-content {
    grid-template-columns: 1fr;
    gap: var(--space-l);
  }
}
.blocks .block.block-text-image .content .flex-content.block-text-image__container--right .image {
  grid-column-start: 2;
}
@media (max-width:$design-breakpoint, ) {
  .blocks .block.block-text-image .content .flex-content.block-text-image__container--right .image {
    grid-column-start: 1;
    grid-row-start: 2;
  }
}
.blocks .block.block-text-image .content .flex-content.block-text-image__container--right .block-text-image__content {
  grid-column-start: 1;
  grid-row-start: 1;
}
.blocks .block.block-text-image .content .flex-content.block-text-image__container--top {
  grid-template-columns: 1fr;
}
.blocks .block.block-text-image .content .flex-content.block-text-image__container--bottom {
  grid-template-columns: 1fr;
}
.blocks .block.block-text-image .content .flex-content.block-text-image__container--bottom .image {
  grid-row-start: 2;
}
.blocks .block.block-text-image .content .flex-content.block-text-image__container--bottom .block-text-image__content {
  grid-row-start: 1;
}
.blocks .block.block-text-image .content .flex-content .block-text-image__content {
  z-index: 2;
  padding-bottom: var(--space-xl);
  padding-top: var(--space-xl);
}
@media (max-width: 769px) {
  .blocks .block.block-text-image .content .flex-content .block-text-image__content {
    padding-right: var(--space-l);
    padding-left: var(--space-l);
  }
}
.blocks .block.block-text-image .content .flex-content .image {
  z-index: 1;
}
@media (max-width:$design-breakpoint, ) {
  .blocks .block.block-text-image .content .flex-content .image__content {
    max-height: 550px;
    width: auto;
  }
}
@media (max-width:768px, ) {
  .blocks .block.block-text-image .content .flex-content .image__content {
    max-height: none;
    width: 100%;
  }
}
.blocks .block.block-text-image .content .flex-content .text {
  width: 100%;
  height: auto;
  padding: 0 !important;
}
.blocks .block.block-text-image .content .flex-content .text .paragraphs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: var(--space-l);
}
@media (max-width:600px, ) {
  .blocks .block.block-text-image .content .flex-content .text .paragraphs {
    grid-template-columns: 1fr;
  }
}
.blocks .block.block-text-image .content .flex-content .button-block {
  margin-top: calc(var(--space-l) * 1.5);
}
@media (min-width:$design-breakpoint ) {
  .blocks .block.textImage--image-top .image {
    transform: translateY(-20%);
  }
  .blocks .block.textImage--image-bottom .image {
    transform: translateY(20%);
  }
  .blocks .block.textImage--image-top-left .image {
    transform: translateY(-10%) translateX(-20%);
  }
  .blocks .block.textImage--image-top-right .image {
    transform: translateY(-15%) translateX(10%);
  }
  .blocks .block.textImage--text-grid-center .text {
    display: grid;
    justify-content: center;
    align-items: center;
  }
  .blocks .block.textImage--text-grid-end .text {
    display: grid;
    justify-content: end;
    align-items: center;
  }
  .blocks .block.textImage--text-left .text,
  .blocks .block.textImage--text-left .button-block {
    transform: translateX(-150px);
  }
  .blocks .block.textImage--text-right .text,
  .blocks .block.textImage--text-right .button-block {
    transform: translateX(150px);
  }
  .blocks .block.textImage--text-right-half .text,
  .blocks .block.textImage--text-right-half .button-block {
    transform: translateX(75px);
  }
  .blocks .block.textImage--text-top .text,
  .blocks .block.textImage--text-top .button-block {
    transform: translateY(-150px);
  }
  .blocks .block.textImage--text-top-left .text,
  .blocks .block.textImage--text-top-left .button-block {
    transform: translate(-150px, -100px);
  }
  .blocks .block.textImage--image-top-big .image {
    transform: translateY(-30%);
  }
}
@media (min-width:$design-breakpoint ) and (max-width:$design-breakpoint, ) {
  .blocks .block.textImage--image-top-big .image {
    transform: none;
  }
}
@media (min-width:$design-breakpoint ) {
  .blocks .block.textImage--image-top-small .image {
    transform: translateY(-10%);
  }
}
@media (min-width:$design-breakpoint ) and (max-width:$design-breakpoint, ) {
  .blocks .block.textImage--image-top-small .image {
    transform: none;
  }
}
@media (min-width:$design-breakpoint ) {
  .blocks .block.textImage--text-right-top .block-text-image__content {
    transform: translate(10%, -11%);
  }
}
@media (min-width:$design-breakpoint ) and (max-width:$design-breakpoint, ) {
  .blocks .block.textImage--text-right-top .block-text-image__content {
    transform: none;
  }
}
@media (min-width:$design-breakpoint ) {
  .blocks .block.textImage--no-column-gap .content .flex-content {
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .blocks .block.textImage--m-column-gap .content .flex-content {
    -moz-column-gap: var(--space-m);
         column-gap: var(--space-m);
  }
  .blocks .block.textImage--m-1-5-column-gap .content .flex-content {
    -moz-column-gap: calc(1.5 * var(--space-m));
         column-gap: calc(1.5 * var(--space-m));
  }
  .blocks .block.textImage--xxl-column-gap .content .flex-content {
    -moz-column-gap: var(--space-xxl);
         column-gap: var(--space-xxl);
  }
  .blocks .block.textImage--2xxl-column-gap .content .flex-content {
    -moz-column-gap: calc(var(--space-xxl) * 2);
         column-gap: calc(var(--space-xxl) * 2);
  }
  .blocks .block.textImage--no-row-gap .content .flex-content {
    row-gap: 0;
  }
  .blocks .block.textImage--l-row-gap .content .flex-content {
    row-gap: var(--space-l);
  }
  .blocks .block.textImage--xxl-row-gap .content .flex-content {
    row-gap: var(--space-xxl);
  }
  .blocks .block.textImage--2xxl-row-gap .content .flex-content {
    row-gap: calc(var(--space-xxl) * 2);
  }
  .blocks .block.textImage--one-colunm .content .flex-content {
    grid-template-columns: 1fr;
  }
  .blocks .block.textImage--2fr-3fr .content .flex-content {
    grid-template-columns: 2fr 3fr;
  }
  .blocks .block.textImage--3fr-2fr .content .flex-content {
    grid-template-columns: 3fr 2fr;
  }
  .blocks .block.textImage--2fr-1fr .content .flex-content {
    grid-template-columns: 2fr 1fr;
  }
  .blocks .block.textImage--1fr-2fr .content .flex-content {
    grid-template-columns: 1fr 2fr;
  }
  .blocks .block.textImage--text-small .content .flex-content .text {
    width: 80%;
  }
  .blocks .block.textImage--text-small-60 .content .flex-content .text {
    width: 60%;
  }
  .blocks .block.textImage--text-half .content .flex-content .text {
    width: 50%;
  }
  .blocks .block.textImage--text-body-small .content .flex-content .body-font, .blocks .block.textImage--text-body-small .content .flex-content body, .blocks .block.textImage--text-body-small .content .flex-content .form .form-block label, .form .form-block .blocks .block.textImage--text-body-small .content .flex-content label, .blocks .block.textImage--text-body-small .content .flex-content .form .form-block input[type=text], .form .form-block .blocks .block.textImage--text-body-small .content .flex-content input[type=text],
  .blocks .block.textImage--text-body-small .content .flex-content .form .form-block input[type=textarea],
  .form .form-block .blocks .block.textImage--text-body-small .content .flex-content input[type=textarea],
  .blocks .block.textImage--text-body-small .content .flex-content .form .form-block input[type=email],
  .form .form-block .blocks .block.textImage--text-body-small .content .flex-content input[type=email],
  .blocks .block.textImage--text-body-small .content .flex-content .form .form-block input[type=tel],
  .form .form-block .blocks .block.textImage--text-body-small .content .flex-content input[type=tel],
  .blocks .block.textImage--text-body-small .content .flex-content .form .form-block input[type=number],
  .form .form-block .blocks .block.textImage--text-body-small .content .flex-content input[type=number],
  .blocks .block.textImage--text-body-small .content .flex-content .form .form-block input[type=date],
  .form .form-block .blocks .block.textImage--text-body-small .content .flex-content input[type=date],
  .blocks .block.textImage--text-body-small .content .flex-content .form .form-block input[type=password],
  .form .form-block .blocks .block.textImage--text-body-small .content .flex-content input[type=password],
  .blocks .block.textImage--text-body-small .content .flex-content .form .form-block textarea,
  .form .form-block .blocks .block.textImage--text-body-small .content .flex-content textarea,
  .blocks .block.textImage--text-body-small .content .flex-content .form .form-block select,
  .form .form-block .blocks .block.textImage--text-body-small .content .flex-content select, .blocks .block.textImage--text-body-small .content .flex-content .langs a, .langs .blocks .block.textImage--text-body-small .content .flex-content a,
  .blocks .block.textImage--text-body-small .content .flex-content .langs span,
  .langs .blocks .block.textImage--text-body-small .content .flex-content span, .blocks .block.textImage--text-body-small .content .flex-content .article__socials .date p, .article__socials .date .blocks .block.textImage--text-body-small .content .flex-content p, .blocks .block.textImage--text-body-small .articles-related .content .flex-content .articles-wrapper article .article-text p, .articles-related .blocks .block.textImage--text-body-small .content .flex-content .articles-wrapper article .article-text p, .blocks .block.textImage--text-body-small .articles-related .content .articles-wrapper article .article-text .flex-content p, .articles-related .blocks .block.textImage--text-body-small .content .articles-wrapper article .article-text .flex-content p {
    width: 80%;
  }
}
@media (min-width: 1700px) {
  .blocks .block.textImage--text-top-280 .text,
  .blocks .block.textImage--text-top-280 .button-block {
    transform: translateY(-280px);
  }
}
.blocks .block.textImage--no-lens .lens {
  display: none;
}
.blocks .block.textImage--especial-quieres-comprar {
  height: 100vh;
}
.blocks .block.textImage--especial-quieres-comprar .content {
  max-width: 500px;
  margin: auto;
}
@media (max-width: 716px) {
  .blocks .block.textImage--especial-quieres-comprar .content {
    padding: 0 var(--space-l);
  }
}
.blocks .block.textImage--especial-quieres-comprar .content .block-text-image__content {
  display: grid;
  grid-template-rows: auto 92px;
  row-gap: var(--space-l);
}
@media (max-width: 540px) {
  .blocks .block.textImage--especial-quieres-comprar .content .block-text-image__content {
    display: flex;
    flex-direction: column;
  }
}
.blocks .block.textImage--especial-quieres-comprar .content .block-text-image__content .text {
  display: grid;
  grid-template-rows: 141px 140px;
  row-gap: var(--space-m);
}
@media (max-width: 540px) {
  .blocks .block.textImage--especial-quieres-comprar .content .block-text-image__content .text {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 540px) {
  .blocks .block.textImage--especial-quieres-comprar .content .block-text-image__content .text .display-3, .blocks .block.textImage--especial-quieres-comprar .content .block-text-image__content .text .ecommerce .profile__welcome, .ecommerce .blocks .block.textImage--especial-quieres-comprar .content .block-text-image__content .text .profile__welcome, .blocks .block.textImage--especial-quieres-comprar .content .block-text-image__content .text .product .top-info .product-data__nombre, .product .top-info .blocks .block.textImage--especial-quieres-comprar .content .block-text-image__content .text .product-data__nombre {
    margin-bottom: var(--space-m);
  }
}
.blocks .block.textImage--especial-quieres-comprar .content .block-text-image__content .button-block {
  margin-top: 0;
}
@media (max-width: 540px) {
  .blocks .block.textImage--especial-quieres-comprar .content .block-text-image__content .button-block {
    margin-top: var(--space-l);
  }
}
.blocks .block.textImage--especial-quieres-comprar .content .image {
  height: 122px;
  align-items: center;
}
.blocks .block.textImage--especial-quieres-comprar .content .image__content {
  height: 122px;
  -o-object-fit: contain;
     object-fit: contain;
}
.blocks .block.textImage--especial-quieres-comprar-barista .content {
  max-width: 530px;
}
.blocks .block.textImage--especial-quieres-comprar-barista .content .image__content {
  height: 92px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1560px) {
  .blocks .block.textImage--has-logo-proveedores .text,
  .blocks .block.textImage--has-logo-proveedores .button-block {
    transform: none;
  }
}
@media (min-width: $design-breakpoint) {
  .blocks .block.textImage--text-center-laptop .text {
    transform: translate(-113px, -100px);
  }
}
@media (min-width: $design-breakpoint) and (max-width: 1900px) {
  .blocks .block.textImage--text-center-laptop .text {
    transform: translate(30%, -70px);
  }
}
@media (min-width: $design-breakpoint) and (max-width: 1560px) {
  .blocks .block.textImage--text-center-laptop .text {
    transform: translate(43%, -70px);
  }
}
@media (min-width: $design-breakpoint) and (max-width: 1320px) {
  .blocks .block.textImage--text-center-laptop .text {
    transform: translate(38%, -70px);
  }
}
.blocks .block.textImage--flex .content .flex-content {
  display: flex;
}

.block-video .content .flex-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .block-video .content .flex-content {
    min-height: calc(var(--space-xl) * 6);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .block-video .content .flex-content {
    min-height: calc(var(--space-xl) * 4);
  }
}
.block-video .content .flex-content .play-button .play {
  font-size: 90px;
  color: var(--bc-1);
}
.block-video.embed .content {
  padding: var(--space-l) var(--space-xl);
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .block-video.embed .content {
    padding: var(--space-l);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .block-video.embed .content {
    padding: var(--space-m);
  }
}
.block-video.embed .content .flex-content .video__container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.block-video.embed .content .flex-content .video__container .player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block-video.embed .content .flex-content .video__caption {
  margin-top: var(--space-m);
}
.block-video.fullscreen .content .flex-content {
  position: relative;
}
.block-video.fullscreen .content .flex-content .video__background {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-index--background);
}
.block-video.fullscreen .content .flex-content .video__play {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: var(--z-index--highlight);
}
.block-video.fullscreen .content .flex-content .video__play .video__play-button {
  font-size: 90px;
  color: var(--bc-1);
  transition: all 0.4s;
  cursor: pointer;
}
.block-video.fullscreen .content .flex-content .video__play .video__play-button:hover {
  color: var(--bc-2);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .block-video.fullscreen .content .flex-content .video__play .video__play-button {
    font-size: 70px;
  }
}
.block-video.fullscreen .content .flex-content .video__viewport {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  height: 100vh;
  width: 100vw;
  transition: z-index 0.1s, opacity 0.4s, visibility 0.4s;
  z-index: var(--z-index--hidden);
}
.block-video.fullscreen .content .flex-content .video__viewport .video__container {
  position: relative;
  width: 50%;
  height: 0;
  padding-bottom: 28.12%;
}
.block-video.fullscreen .content .flex-content .video__viewport .video__container .player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block-video.fullscreen .content .flex-content .video__viewport .video__close-button {
  position: absolute;
  top: var(--space-l);
  right: calc(var(--space-l) * 1.5);
  font-size: var(--space-l);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .block-video.fullscreen .content .flex-content .video__viewport .video__close-button {
    top: var(--space-m);
    right: calc(var(--space-m) * 1.5);
    font-size: var(--space-m);
  }
}
.block-video.fullscreen .content .flex-content .video__viewport .video__close-button:hover {
  color: var(--bc-1);
}
.block-video.fullscreen .content .flex-content .video__viewport.active {
  opacity: 1;
  visibility: visible;
  z-index: var(--z-index--overlay);
  transition: z-index 0.6s, opacity 0.4s, visibility 0.4s;
}
.block-video.fullscreen .content .flex-content .video__viewport.active .video__container {
  z-index: var(--z-index--highlight);
}
.block-video.fullscreen .content .flex-content .video__viewport.active .video__close-button {
  z-index: var(--z-index--highlight);
}

.grid__item--cs-3 .block-video.embed .content .flex-content {
  max-width: var(--content-medium-width);
}

.grid__item--cs-2 .block-video.embed .content .flex-content, .grid__item--cs-1 .block-video.embed .content .flex-content {
  max-width: 100%;
}

/* ---------------------------------- */
/* -------------------------- */
/* ------- NEO GALLERY ------ */
/* -------------------------- */
.gallery .thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: calc(var(--space-xl) * 2);
  height: 100%;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .gallery .thumbs {
    grid-auto-rows: calc(var(--space-l) * 3);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .gallery .thumbs {
    display: flex;
  }
}
.gallery .thumbs .thumb {
  display: flex;
  position: relative;
  cursor: pointer;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  margin: 0;
}
.gallery .thumbs .thumb:nth-child(2), .gallery .thumbs .thumb:nth-child(4), .gallery .thumbs .thumb:nth-child(6n+10), .gallery .thumbs .thumb:nth-child(6n+8) {
  grid-row-end: span 2;
  height: 100%;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .gallery .thumbs .thumb:nth-child(2), .gallery .thumbs .thumb:nth-child(4), .gallery .thumbs .thumb:nth-child(6n+10), .gallery .thumbs .thumb:nth-child(6n+8) {
    height: 175px;
  }
}
.gallery .thumbs .thumb:first-child, .gallery .thumbs .thumb:nth-child(4n+1) {
  margin-left: 0;
}
.gallery .thumbs .thumb:nth-child(4n) {
  margin-right: 0;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .gallery .thumbs .thumb:nth-child(odd) {
    margin-left: 0;
  }
  .gallery .thumbs .thumb:nth-child(even) {
    margin-right: 0;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .gallery .thumbs .thumb {
    width: 100%;
    margin: 0;
  }
}
.gallery .thumbs .thumb .lens {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: url("../js/plugins/neo/neo-gallery/maximize.png");
  background-size: 40px 20px;
  background-position: center center;
  background-repeat: no-repeat;
  transitioon: all 0.2s ease-out;
}
.gallery .thumbs .thumb:hover .lens {
  opacity: 1;
  background-color: var(--bc-1);
}
.gallery.video .thumbs {
  display: flex;
  width: 100%;
  height: 100%;
}
.gallery.video .thumbs .thumb-container {
  height: 100%;
  flex-grow: 1;
}
.gallery.video .thumbs .thumb-container .thumb {
  height: 100%;
  width: 100%;
}
.gallery.video .thumbs .thumb-container .thumb .lens .playbutton {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.gallery.video .thumbs .thumb-container .thumb .lens .playbutton img {
  width: var(--space-l);
  height: var(--space-l);
}
@media (max-width: 600px) {
  .gallery .thumbs {
    flex-wrap: wrap;
  }
  .gallery .thumbs .item.oneofthree {
    width: 100%;
    margin-bottom: 0 !important;
  }
  .gallery .thumbs .item.oneofthree .full {
    width: 100%;
    height: 300px;
  }
  .gallery .thumbs .item.oneofthree .oneoftwo {
    width: 50%;
  }
  .gallery .thumbs .item.oneofthree .thumb-4, .gallery .thumbs .item.oneofthree .thumb-6 {
    height: 150px;
  }
  .gallery .thumbs .item.oneofthree .thumb-4 {
    width: 50%;
  }
  .gallery .thumbs .item.oneofthree .thumb-6 {
    width: 33.3333%;
  }
}
.gallery .viewport {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: var(--z-index--hidden);
  height: 100vh;
  width: 100%;
  transition: opacity 0.4s;
  background-image: radial-gradient(rgba(0, 0, 0, 0.7), rgb(0, 0, 0));
  transitioon: all 0.2s ease-out;
}
.gallery .viewport.active {
  z-index: var(--z-index--overlay);
  opacity: 1;
}
.gallery .viewport .close-button {
  position: absolute;
  top: var(--space-m);
  right: var(--space-m);
  left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.gallery .viewport .close-button .text {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: var(--space-s);
}
.gallery .viewport .close-button .text .close {
  margin-bottom: 0;
  color: var(--white);
  font-weight: 400;
}
.gallery .viewport .close-button .button_ {
  display: table-cell;
  vertical-align: middle;
}
.gallery .viewport .close-button .lines {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 3px;
  margin-top: -10px;
  background-color: transparent;
  transitioon: all 0.3s ease-out;
}
.gallery .viewport .close-button .lines:before, .gallery .viewport .close-button .lines:after {
  position: absolute;
  right: 0;
  content: "";
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--white);
  transform-origin: 50% 50%;
  transitioon: all 0.3s ease-out;
}
.gallery .viewport .close-button .lines:before {
  top: 0px;
  transform: rotate3d(0, 0, 1, 45deg);
}
.gallery .viewport .close-button .lines:after {
  top: 0px;
  transform: rotate3d(0, 0, 1, -45deg);
}
.gallery .viewport .images {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 70%;
  transform: translate(-50%, -50%);
}
.gallery .viewport .images .before,
.gallery .viewport .images .after {
  width: 60px;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  transform: translateY(-50%);
}
.gallery .viewport .images .before {
  position: absolute;
  top: 50%;
  left: 0;
  background-image: url("../js/plugins/neo/neo-gallery/prev.png");
}
.gallery .viewport .images .after {
  position: absolute;
  top: 50%;
  right: 0;
  background-image: url("../js/plugins/neo/neo-gallery/next.png");
}
.gallery .viewport .images .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid var(--bc-1); /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.gallery .viewport .images .image {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.gallery .viewport .images .image.current {
  opacity: 1;
  transition: opacity 1s;
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .gallery .viewport .images .before {
    left: -50px;
  }
  .gallery .viewport .images .after {
    right: -50px;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .gallery .viewport .images {
    height: 100%;
    width: 100%;
  }
  .gallery .viewport .images .before {
    left: 0;
  }
  .gallery .viewport .images .after {
    right: 0;
  }
}

/* -------------------------- */
/* -------------------------- */
/* -------- NEO SLIDER ------ */
/* -------------------------- */
.slider {
  width: 100%;
}
.slider .content-slider {
  position: relative;
  width: 100%;
  height: 100%;
  margin: auto;
}
.slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-index--background);
  transition: opacity 1s ease-out;
}
.slider .slide .background {
  width: 100%;
  height: 100%;
}
.slider .slide .background > * {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.slider .slide .background .responsive {
  display: none;
}
.slider .slide.current {
  z-index: var(--z-index--body);
  opacity: 1;
}
.slider .prev,
.slider .next {
  position: absolute;
  bottom: 50%;
  width: 75px;
  height: 75px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  padding: var(--space-xs);
  z-index: var(--z-index--highlight);
  cursor: pointer;
  transitioon: all 0.5s ease-out;
  transform: translateY(50%);
}
.slider .prev {
  background-image: url("../js/plugins/neo/neo-slider/prev.png");
  left: 0;
}
.slider .next {
  background-image: url("../js/plugins/neo/neo-slider/next.png");
  right: 0;
}
.slider:hover .prev,
.slider:hover .next {
  opacity: 1;
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .slider .prev {
    left: var(--space-s);
  }
  .slider .next {
    right: var(--space-s);
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .slider .slide .background > * {
    background-attachment: scroll;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .slider .slide .background .responsive {
    display: block;
  }
  .slider .prev,
  .slider .next {
    width: 30px;
    background-size: 100% 80%;
  }
  .slider .prev {
    display: none;
  }
  .slider .next {
    display: none;
  }
}
/* -------------------------- */
@supports not (-webkit-touch-callout: none) {
  body[data-scroll-animation] .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content .block-text-image__content p,
  body[data-scroll-animation] .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content .block-text-image__content [class*=display-],
  body[data-scroll-animation] .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content .block-text-image__content .button-block .button {
    opacity: 0;
  }
  body[data-scroll-animation] .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content .block-text-image__content p,
  body[data-scroll-animation] .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content .block-text-image__content [class*=display-] {
    transition: all 0.2s cubic-bezier(0, 0, 0.11, 0.93);
  }
  body[data-scroll-animation] .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content .image .image__content {
    opacity: 0;
    transition: all 0.2s cubic-bezier(0, 0, 0.11, 0.93);
  }
  body[data-scroll-animation] .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--left .image__content {
    transform: translateX(calc(var(--distance-animation) * -1));
  }
  body[data-scroll-animation] .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--left .block-text-image__content p,
  body[data-scroll-animation] .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--left .block-text-image__content [class*=display-],
  body[data-scroll-animation] .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--left .block-text-image__content .button-block .button {
    transform: translateX(var(--distance-animation));
  }
  body[data-scroll-animation] .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--right .image .image__content {
    transform: translateX(var(--distance-animation));
  }
  body[data-scroll-animation] .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--right .block-text-image__content p,
  body[data-scroll-animation] .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--right .block-text-image__content [class*=display-],
  body[data-scroll-animation] .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--right .block-text-image__content .button-block .button {
    transform: translateX(calc(var(--distance-animation) * -1));
  }
  body[data-scroll-animation] .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--top .image__content {
    transform: translateY(var(--distance-animation));
  }
  body[data-scroll-animation] .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--top .block-text-image__content p,
  body[data-scroll-animation] .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--top .block-text-image__content [class*=display-],
  body[data-scroll-animation] .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--top .block-text-image__content .button-block .button {
    transform: translateY(var(--distance-animation));
  }
  body[data-scroll-animation] .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--bottom .image .image__content {
    transform: translateY(var(--distance-animation));
  }
  body[data-scroll-animation] .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--bottom .block-text-image__content p,
  body[data-scroll-animation] .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--bottom .block-text-image__content [class*=display-],
  body[data-scroll-animation] .blocks .block:not(.block--noAnimation).block-text-image .content .flex-content.block-text-image__container--bottom .block-text-image__content .button-block .button {
    transform: translateY(var(--distance-animation));
  }
}

@media screen and (min-width: 0\0 ) {
  .ie-alert {
    display: table;
  }
  .ie-alert .message {
    display: table-cell;
    vertical-align: middle;
  }
}
.header-recambios {
  margin: var(--space-l) 0;
  text-align: center;
}
.header-recambios h2 {
  margin-bottom: var(--space-m);
}

.categoria-recambios {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  width: 100%;
  margin: auto;
}
@media desktop-l {
  .categoria-recambios {
    width: var(--content-max-width);
  }
}
@media mobile {
  .categoria-recambios {
    display: block;
  }
}
.categoria-recambios__item:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 5;
}
.categoria-recambios__item:nth-child(2) {
  grid-column-start: 5;
  grid-column-end: 9;
}
.categoria-recambios__item:nth-child(3) {
  grid-column-start: 9;
  grid-column-end: 13;
}
.categoria-recambios__item:nth-child(4), .categoria-recambios__item:nth-child(5) {
  grid-row-start: 2;
  grid-row-end: 3;
}
.categoria-recambios__item:nth-child(4) {
  grid-column-start: 3;
  grid-column-end: 7;
}
.categoria-recambios__item:nth-child(5) {
  grid-column-start: 7;
  grid-column-end: 11;
}
.categoria-recambios__item {
  align-self: flex-end;
  padding: var(--space-xl) 0;
  text-align: center;
}
.categoria-recambios__item:nth-child(3) img, .categoria-recambios__item:nth-child(5) img {
  border-right: none;
}
.categoria-recambios__item img {
  margin-bottom: var(--space-l);
  padding: 0 var(--space-xl);
  border-right: 1px solid var(--brown-grey);
  max-height: 240px;
}
@media mobile {
  .categoria-recambios__item img {
    border-right: none;
  }
}
.categoria-recambios__item h3 {
  color: var(--azure);
}
.categoria-recambios__item .button-block {
  margin-top: var(--space-m);
}
@supports not (-webkit-touch-callout: none) {
  .categoria-recambios__item img,
  .categoria-recambios__item h3,
  .categoria-recambios__item .button-block {
    opacity: 0;
  }
}

#recambios-home {
  z-index: 0;
}
#recambios-home .categoria-recambios {
  position: relative;
}
#recambios-home .categoria-recambios::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  left: calc(-1 * (100vw - 100%) / 2);
  background: url(../resources/style/rainbow_espana-fondo-puntos-vertical-dcha.png) no-repeat;
  background-size: 286px;
  background-position: right 2rem;
  z-index: -1;
}
@media desktop {
  #recambios-home .categoria-recambios::after {
    display: none;
  }
}

.list-product {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin-bottom: var(--space-xl);
  max-width: 1300px;
}
@media desktop-l {
  .list-product {
    width: var(--content-max-width);
  }
}
@media (max-width: 769px) {
  .list-product {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .list-product {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .list-product {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .list-product {
    grid-template-columns: repeat(2, 1fr);
  }
}
.list-product .texture-tree {
  position: absolute;
  left: 0;
  width: 500px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../resources/ecommerce/home/texture-tree@2x.png);
  height: 700px;
}
.list-product .texture-cafe {
  position: absolute;
  right: 0;
  width: 300px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../resources/ecommerce/home/granos.png);
  height: 300px;
}
.list-product__item {
  position: relative;
  padding: var(--space-l);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.list-product__item img {
  margin-bottom: var(--space-l);
}
.list-product__item h3, .list-product__item__precio {
  color: white;
  font-size: 18px;
}
.list-product__item h3 {
  margin-bottom: var(--space-m);
}
.list-product__item__precio {
  margin-top: var(--space-m);
}
.list-product__item .button-block {
  margin-top: var(--space-m);
  color: white;
}
.list-product__item__descripcion {
  color: white;
}
@supports not (-webkit-touch-callout: none) {
  .list-product__item img,
  .list-product__item h3, .list-product__item__precio, .list-product__item__descripcion,
  .list-product__item .button-block {
    opacity: 0;
  }
}

.filter-categories {
  text-align: center;
  width: 100%;
  margin-bottom: var(--space-xl);
}
@media desktop-l {
  .filter-categories {
    width: var(--content-max-width);
  }
}
.filter-categories h3 {
  color: var(--azure);
  margin-bottom: var(--space-m);
}
.filter-categories .filter-categories__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-column-gap: 65px;
  grid-row-gap: 30px;
  max-width: 1100px;
  margin: var(--space-l) auto auto;
}
@media (max-width: 769px) {
  .filter-categories .filter-categories__items {
    display: flex;
    flex-direction: column;
    margin: var(--space-m) auto auto;
  }
}
.filter-categories .filter-categories__items .filter-categories__items__item .button-block {
  display: block;
  margin: 0;
  position: relative;
}
.filter-categories .filter-categories__items .filter-categories__items__item .button-block .button-categories {
  color: white;
  text-transform: initial !important;
}
.filter-categories .filter-categories__items .filter-categories__items__item .button-block .button {
  padding: var(--space-xs) var(--space-l);
  justify-content: center;
}
.filter-categories .filter-categories__items .filter-categories__items__item .button-block .button span {
  z-index: 1;
}
.filter-categories .filter-categories__items .filter-categories__items__item .button-block .button.active {
  background-color: var(--darker-blue);
  color: var(--white);
}
.filter-categories .filter-categories__items .filter-categories__items__item .button-block .button.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -10px;
  left: 0;
  background-color: var(--dark-blue);
  transform: unset;
  transition: unset;
}
.filter-categories .filter-categories__items .filter-categories__items__item .button-block .button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -10px;
  left: 0;
  transform-origin: left;
  transform: scaleX(0);
  background-color: var(--dark-blue);
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.filter-categories .filter-categories__items .filter-categories__items__item .button-block .button:hover {
  text-decoration: none;
  color: var(--white);
}
.filter-categories .filter-categories__items .filter-categories__items__item .button-block .button:hover::after {
  transform: scaleX(1);
}

.wrapper-accesorios {
  width: 100%;
  overflow: hidden;
  z-index: 0;
}
.wrapper-accesorios::after {
  content: "";
  position: absolute;
  width: 50%;
  top: 0;
  right: calc(-1 * var(--frame-space));
  height: 100%;
  background: url(../resources/style/rainbow_espana-fondo-puntos-vertical-dcha.png) no-repeat;
  background-size: 350px;
  background-position: right 25%;
  z-index: -1;
}
@media tablet {
  .wrapper-accesorios::after {
    display: none;
  }
}

.accesorios {
  margin-bottom: var(--space-xxl);
  display: flex;
  justify-content: center;
}
.accesorios .blocks--sup {
  background-color: transparent;
}
.accesorios .blocks--sup .grid__item .block-text-image .text .accesorio-img {
  -webkit-clip-path: circle(130px at center);
          clip-path: circle(130px at center);
  width: 300px;
}
@media desktop-l {
  .accesorios .blocks--sup .grid__item .block-text-image .text .accesorio-img {
    margin-bottom: var(--space-l);
  }
}
@media laptop {
  .accesorios .blocks--sup .grid__item .block-text-image .text .accesorio-img {
    max-width: 80%;
  }
}
.accesorios .blocks--sup .grid__item .block-text-image .text .button-block {
  flex-direction: column;
}
.accesorios .blocks--sup .grid__item .block-text-image .text .button-block .button:last-child {
  margin-left: 0;
  margin-top: var(--space-m);
}
.accesorios .blocks--sup .grid__item.fondo {
  position: relative;
}
.accesorios .blocks--sup .grid__item.fondo::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 60%;
  top: 58%;
  left: -15%;
  background-color: var(--white);
  z-index: -1;
}
@media laptop {
  .accesorios .blocks--sup .grid__item.fondo::before {
    display: none;
  }
}
.accesorios .blocks--sup .grid__item.fondo--top::before {
  width: 200%;
  height: 80%;
  top: -10%;
}
.accesorios .blocks--sup .grid__item.fondo--bottom::before {
  top: 40%;
}
.accesorios .blocks--sup .grid__item.fondo--top-l::before {
  height: 120%;
  top: -10%;
  left: -50%;
}
.accesorios .blocks--sup .grid__item.fondo-roseta::after {
  height: 50%;
  top: 0;
  left: 35%;
  background-position: top;
}
.accesorios .blocks--sup .grid__item:nth-child(1) {
  order: 0;
}
.accesorios .blocks--sup .grid__item:nth-child(2) {
  order: 1;
}
.accesorios .blocks--sup .grid__item:nth-child(3) {
  order: 2;
}
.accesorios .blocks--sup .grid__item:nth-child(4) {
  order: 3;
}
.accesorios .blocks--sup .grid__item:nth-child(5) {
  order: 4;
}
.accesorios .blocks--sup .grid__item:nth-child(6) {
  order: 5;
}
.accesorios .blocks--sup .grid__item:nth-child(7) {
  order: 6;
}
.accesorios .blocks--sup .grid__item:nth-child(8) {
  order: 7;
}
.accesorios .blocks--sup .grid__item:nth-child(9) {
  order: 8;
}
.accesorios .blocks--sup .grid__item:nth-child(10) {
  order: 9;
}
.accesorios .blocks--sup .grid__item:nth-child(11) {
  order: 10;
}
.accesorios .blocks--sup .grid__item:nth-child(12) {
  order: 11;
}
.accesorios .blocks--sup .grid__item.grid__item--cs-5:nth-child(odd) .button-block {
  align-items: flex-start;
}
.accesorios .blocks--sup .grid__item.grid__item--cs-5:nth-child(even) .button-block {
  align-items: flex-end;
}
.accesorios .blocks--sup .grid__item.grid__item:nth-child(even) .text-flex-wrapper {
  padding-right: var(--space-l);
}
.accesorios .blocks--sup .grid__item.grid__item:nth-child(odd) .text-flex-wrapper {
  padding-left: var(--space-l);
}
@media laptop {
  .accesorios .blocks--sup .grid__item:nth-child(3) {
    order: 3;
  }
  .accesorios .blocks--sup .grid__item:nth-child(4) {
    order: 2;
  }
  .accesorios .blocks--sup .grid__item:nth-child(7) {
    order: 7;
  }
  .accesorios .blocks--sup .grid__item:nth-child(8) {
    order: 6;
  }
  .accesorios .blocks--sup .grid__item:nth-child(11) {
    order: 11;
  }
  .accesorios .blocks--sup .grid__item:nth-child(12) {
    order: 10;
  }
  .accesorios .blocks--sup .grid__item.grid__item--cs-5:nth-child(odd) .button-block, .accesorios .blocks--sup .grid__item.grid__item--cs-5:nth-child(even) .button-block {
    align-items: center;
  }
  .accesorios .blocks--sup .grid__item.grid__item:nth-child(even) .text-flex-wrapper {
    padding-right: var(--space-m);
  }
  .accesorios .blocks--sup .grid__item.grid__item:nth-child(odd) .text-flex-wrapper {
    padding-left: var(--space-m);
  }
}

.product {
  display: flex;
  flex-wrap: wrap;
  padding-top: 140px;
  padding-bottom: 100px;
  background-color: var(--dark-salmon);
}
@media laptop {
  .product {
    display: block;
  }
}
.product .product-image {
  flex: 1;
  order: 1;
  height: var(--product-img-height);
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: flex-end;
}
.product .product-image img {
  width: 450px;
  height: auto;
  max-width: none;
}
@media laptop {
  .product .product-image img {
    height: 100%;
    width: auto;
    margin: 0 auto;
  }
}
@media (max-width: 769px) {
  .product .product-image img {
    max-width: 300px !important;
  }
}
.product .top-info {
  flex: 1;
  order: 2;
  display: flex;
  height: var(--product-info-height);
}
.product .top-info .product-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: var(--very-light-pink);
}
.product .top-info .product-data .content {
  max-width: 70%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
}
@media laptop {
  .product .top-info .product-data .content {
    max-width: none;
    padding: var(--space-l) var(--space-xl);
  }
}
@media mobile {
  .product .top-info .product-data .content {
    padding: var(--space-m);
  }
}
.product .top-info .product-data__categoria {
  color: var(--brown-grey);
  margin-bottom: var(--space-m);
}
.product .top-info .product-data__reference p {
  color: white;
}
.product .top-info .product-data .conditions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: var(--space-m);
  margin-top: var(--space-m);
}
.product .top-info .product-data .conditions .send,
.product .top-info .product-data .conditions .distribution,
.product .top-info .product-data .conditions .pay,
.product .top-info .product-data .conditions .segurity {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 4px;
  margin-top: var(--space-m);
}
.product .top-info .product-data .conditions .send img,
.product .top-info .product-data .conditions .distribution img,
.product .top-info .product-data .conditions .pay img,
.product .top-info .product-data .conditions .segurity img {
  align-self: center;
}
.product .top-info .product-data .conditions .send p,
.product .top-info .product-data .conditions .distribution p,
.product .top-info .product-data .conditions .pay p,
.product .top-info .product-data .conditions .segurity p {
  text-align: left;
  align-self: center;
}
.product .top-info .product-data .properties {
  margin-top: 20px;
  width: 100%;
}
.product .top-info .product-data .properties__item .item {
  width: 100%;
}
.product .top-info .product-data .properties__item .item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid white;
  width: 100%;
  cursor: pointer;
}
.product .top-info .product-data .properties__item .item__header span,
.product .top-info .product-data .properties__item .item__header i {
  font-weight: bold;
}
.product .top-info .product-data .properties__item .item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.product .top-info .product-data .properties__item .item__body p {
  padding: 20px;
  text-align: left;
}
.product .top-info .product-data .properties__item.active .item__header i {
  transform: rotate(180deg);
  transition: all 0.2s ease-out;
}
.product .top-info .product-data .properties__item:last-child .item__header {
  border-bottom: 1px solid white;
}
.product .top-info .product-data .cart-amount {
  display: flex;
  width: 100%;
}
.product .top-info .product-data .cart-amount .shop__cart {
  width: 100%;
}
.product .top-info .product-data .cart-amount .shop__cart .shop-cart__buttons {
  margin: var(--space-l) 0 0;
  background-color: black;
  margin-left: var(--space-l);
}
.product .top-info .product-data .cart-amount .shop__cart .shop-cart__buttons .cart-button {
  color: white;
  width: 100%;
  justify-content: center;
  height: 100%;
}
.product .top-info .product-data__nombre {
  color: var(--azure);
  text-align: start;
}
.product .top-info .product-data__resumen {
  color: var(--brown-grey);
  margin-top: var(--space-l);
}
.product .top-info .product-data__precio {
  font-weight: normal;
  margin-top: var(--space-m);
}
.product .top-info .product-data__descripcion {
  max-width: 100%;
  margin-top: var(--space-l);
  text-align: start;
}
@media laptop {
  .product .top-info .product-data__descripcion {
    max-width: none;
  }
}
.product .top-info .product-data__descripcion p {
  margin-bottom: var(--space-m);
}
.product .top-info .product-data__nota {
  position: relative;
  margin-bottom: var(--space-s);
  padding-right: var(--space-l);
  font-weight: bold;
}
.product .top-info .product-data__nota::after {
  content: "\e90b";
  font-family: "Icons";
  position: absolute;
  right: 0;
  font-size: 20px;
  bottom: 0;
}
.product .top-info .product-data__nota--financiacion::after {
  content: "\e90c";
}
.product .top-info .product-data__nota--envio::after {
  content: "\e905";
}
.product__gallery {
  order: 3;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--product-gallery-item-width-h), 1fr));
  grid-auto-rows: var(--product-gallery-item-height-h);
}
.product__gallery .product-gallery__item {
  overflow: hidden;
  text-align: center;
}
.product__gallery .product-gallery__item img {
  transition: transform 0.5s ease;
  height: 100%;
  max-width: none;
  width: auto;
}
.product__gallery .product-gallery__item:hover {
  cursor: pointer;
}
.product__gallery .product-gallery__item:hover img {
  transform: scale(1.2);
}
.product__gallery .product-gallery__item:last-child {
  display: none;
}
@media mobile {
  .product__gallery {
    grid-template-columns: 1fr;
  }
  .product__gallery .product-gallery__item img {
    width: 100%;
    height: auto;
  }
}
.product__info {
  order: 4;
  width: 100%;
  margin-top: var(--space-xl);
  margin-left: auto;
  margin-right: auto;
}
@media desktop-l {
  .product__info {
    width: var(--content-max-width);
  }
}
.product__info .accordion h2 {
  padding-left: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.product__info .accordion .accordion__items__item {
  padding: var(--space-m) 0;
  margin-bottom: 0;
  background-color: transparent;
  border-top: 2px solid var(--azure);
}
.product__info .accordion .accordion__items__item .accordion-title {
  text-transform: none;
  margin: 0;
  padding-left: calc(var(--space-l) * 1.3);
}
.product__info .accordion .accordion__items__item .accordion-title::before {
  bottom: var(--space-s);
  font-size: 24px;
}
.product__info .accordion .accordion__items__item .accordion-content.active {
  margin: var(--space-m) 0;
}
.product__info .accordion .accordion__items__item.seccion-caracteristicas .accordion-title::before {
  content: "\e90f";
}
.product__info .accordion .accordion__items__item.seccion-medidas .accordion-title::before {
  content: "\e90e";
}
.product__info .accordion .accordion__items__item.seccion-manenimiento .accordion-title::before {
  content: "\e90d";
}
.product__info .accordion .accordion__items__item.seccion-embalaje .accordion-title::before {
  content: "\e910";
}
.product:not(.product--demo) {
  flex-direction: row;
  flex-wrap: wrap;
}
.product:not(.product--demo) .product-image {
  order: 2;
  width: calc(50% - var(--product-gallery-item-width-v));
  height: var(--product-info-height);
  display: flex;
  align-items: center;
}
@media (max-width: 769px) {
  .product:not(.product--demo) .product-image {
    justify-content: center;
  }
}
.product:not(.product--demo) .product-image img {
  max-width: none;
  width: 450px;
  height: auto;
}
.product:not(.product--demo) .product__gallery {
  order: 1;
  width: auto;
  grid-template-columns: var(--product-gallery-item-width-v);
  align-self: flex-start;
  align-items: center;
  height: var(--product-info-height);
  grid-template-rows: repeat(auto-fit, minmax(var(--product-gallery-item-width-v), 1fr));
}
.product:not(.product--demo) .product__gallery .product-gallery__item {
  display: flex;
  justify-content: center;
}
.product:not(.product--demo) .product__gallery .product-gallery__item--img {
  width: 100%;
  height: auto;
  max-width: none;
}
.product:not(.product--demo) .product__gallery .product-gallery__item:last-child {
  display: none;
}
.product:not(.product--demo) .top-info {
  order: 3;
  width: 50%;
  flex: unset;
  align-self: flex-start;
  height: var(--product-info-height);
}
.product:not(.product--demo) .top-info .content {
  max-width: 80%;
  padding: var(--space-l) var(--space-xl);
}
@media (max-width: 769px) {
  .product:not(.product--demo) .top-info .content {
    max-width: 100% !important;
  }
}
.product:not(.product--demo) .break {
  flex-basis: 100%;
  height: 0;
}
@media desktop {
  .product:not(.product--demo) {
    display: block;
  }
  .product:not(.product--demo) .product-image,
  .product:not(.product--demo) .top-info,
  .product:not(.product--demo) .product__gallery {
    width: 100%;
    height: auto;
  }
  .product:not(.product--demo) .top-info .content {
    max-width: none;
  }
  .product:not(.product--demo) .product-image {
    max-height: 600px;
  }
  .product:not(.product--demo) .product-image img {
    max-height: 600px;
    width: auto;
    margin: 0 auto;
  }
  .product:not(.product--demo) .product__gallery {
    grid-template-columns: repeat(auto-fit, minmax(var(--product-gallery-item-width-h), 1fr));
  }
  .product:not(.product--demo) .product__gallery .product-gallery__item {
    display: inline-block;
  }
  .product:not(.product--demo) .product__gallery .product-gallery__item img {
    width: 100%;
    height: auto;
  }
}
@media tablet {
  .product:not(.product--demo) .top-info .content {
    padding: var(--space-l);
  }
  .product:not(.product--demo) .product-image {
    max-height: 300px;
  }
  .product:not(.product--demo) .product-image img {
    max-height: 300px;
  }
}

.productos-relacionados {
  width: 100%;
  order: 5;
  position: relative;
  background-color: var(--dark-salmon);
  padding-bottom: var(--space-xl);
}
.productos-relacionados__titulo {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: var(--very-light-pink);
}
.productos-relacionados__titulo h2 {
  color: var(--brown-grey);
  padding: var(--space-l) var(--space-m);
  width: 100%;
}
@media desktop-l {
  .productos-relacionados__titulo h2 {
    width: var(--content-max-width);
    padding: var(--space-l) 0;
  }
}
.productos-relacionados__productos {
  margin-top: var(--space-l);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 33%));
}
@media desktop-l {
  .productos-relacionados__productos {
    width: var(--content-max-width);
  }
}
@media tablet {
  .productos-relacionados__productos {
    width: var(--content-medium-width);
  }
}
@media mobile {
  .productos-relacionados__productos {
    grid-template-columns: 1fr;
  }
}
.productos-relacionados__productos__producto {
  z-index: 3;
  position: relative;
  padding: 0 var(--space-xl);
  text-align: center;
}
@media laptop {
  .productos-relacionados__productos__producto {
    padding: 0 var(--space-l);
  }
}
@media mobile {
  .productos-relacionados__productos__producto {
    padding: 0 var(--space-xs);
  }
}
.productos-relacionados__productos__producto::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 50%;
  background-color: var(--brown-grey);
}
@media mobile {
  .productos-relacionados__productos__producto::after {
    display: none;
  }
}
.productos-relacionados__productos__producto:last-child::after {
  display: none;
}
.productos-relacionados__productos__producto .relacionado__logo {
  width: 40%;
  margin: 0 auto var(--space-m);
}
.productos-relacionados__productos__producto .relacionado__nombre,
.productos-relacionados__productos__producto .relacionado__precio {
  color: white;
  font-size: 18px;
}
.productos-relacionados__productos__producto .relacionado__precio {
  margin-top: var(--space-m);
}
.productos-relacionados .dark-rectangle {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40%;
  background-color: #101820;
}

.amount {
  display: flex;
  align-items: center;
  margin-top: var(--space-l);
}
.amount__title {
  color: var(--brown-grey);
  margin-right: var(--space-m);
}
.amount__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-xs);
  font-weight: bold;
  border: 2px solid var(--azure);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: white;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .amount__wrapper {
    justify-content: flex-start;
  }
}
@media (max-width: 320px) {
  .amount__wrapper {
    justify-content: flex-start;
  }
}
.amount__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  color: var(--black-pure);
  cursor: pointer;
  transition: all 0.5s var(--cubic-end-quick);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.amount__button:hover {
  background-color: var(--azure);
  color: var(--white-pure);
}
.amount__button--remove {
  grid-column: 2;
  grid-row: 2;
}
.amount__number {
  width: 40px;
  margin: 0 var(--space-m);
  text-align: center;
  font-family: var(--mort-regular);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  grid-row: 1/3;
}

.ecommerce {
  flex-grow: 1;
}

.ecommerce .login {
  display: grid;
  grid-template-areas: "form  register" "guest guest   ";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto max-content;
  grid-gap: var(--space-l) 0;
  width: 100%;
  max-width: var(--content-medium-width);
  margin: auto;
  padding-top: calc(var(--space-xl) * 2.5);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .login {
    grid-template-areas: "form" "register" "guest";
    grid-template-columns: 1fr;
    padding-top: 0;
    grid-gap: 0;
  }
}
@media (max-width: 320px) {
  .ecommerce .login {
    grid-template-areas: "form" "register" "guest";
    grid-template-columns: 1fr;
    padding-top: 0;
    grid-gap: 0;
  }
}
@media mobile-s--landscape {
  .ecommerce .login {
    grid-template-areas: "form" "register" "guest";
    grid-template-columns: 1fr;
    padding-top: 0;
    grid-gap: 0;
  }
}
.ecommerce .login__title {
  margin: 0 0 2.2rem;
  color: var(--bc-1);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .login__title {
    text-align: center;
  }
}
.ecommerce .login__form {
  grid-area: form;
  margin: 0;
  padding: var(--space-l);
  align-items: flex-end;
  border-right: 1px solid var(--bc-1);
  display: flex;
  justify-content: flex-end;
}
.ecommerce .login__form .login__title {
  align-self: flex-start;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .login__form {
    display: grid;
    padding: var(--space-xl) var(--space-s);
    justify-content: flex-start;
    border-right: none;
    border-bottom: 1px solid var(--black);
  }
}
@media (max-width: 320px) {
  .ecommerce .login__form {
    display: grid;
    padding: var(--space-xl) var(--space-s);
    justify-content: flex-start;
    border-right: none;
    border-bottom: 1px solid var(--black);
  }
}
@media mobile-s--landscape {
  .ecommerce .login__form {
    display: grid;
    padding: var(--space-xl) var(--space-s);
    justify-content: flex-start;
    border-right: none;
    border-bottom: 1px solid var(--black);
  }
}
.ecommerce .login__form .form__block {
  display: flex;
  justify-content: flex-end;
  margin-bottom: var(--space-m);
}
.ecommerce .login__form form {
  width: 45%;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .login__form form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 320px) {
  .ecommerce .login__form form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }
}
@media mobile-s--landscape {
  .ecommerce .login__form form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }
}
.ecommerce .login__form input[type=submit] {
  text-transform: uppercase;
}
.ecommerce .login__form input[type=email],
.ecommerce .login__form input[type=password] {
  padding: var(--space-xs) var(--space-s);
  min-width: 13.75rem;
  margin-left: var(--space-s);
  border: 1px solid #dfdfdf;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .login__form input[type=email],
  .ecommerce .login__form input[type=password] {
    min-width: 0;
  }
}
@media (max-width: 320px) {
  .ecommerce .login__form input[type=email],
  .ecommerce .login__form input[type=password] {
    min-width: 0;
  }
}
@media mobile-s--landscape {
  .ecommerce .login__form input[type=email],
  .ecommerce .login__form input[type=password] {
    min-width: 0;
  }
}
.ecommerce .login__register {
  grid-area: register;
  padding: var(--space-l);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .login__register {
    padding: var(--space-l) var(--space-s);
  }
}
@media (max-width: 320px) {
  .ecommerce .login__register {
    padding: var(--space-l) var(--space-s);
  }
}
@media mobile-s--landscape {
  .ecommerce .login__register {
    padding: var(--space-l) var(--space-s);
  }
}
.ecommerce .login__guest {
  grid-area: guest;
  text-align: center;
}
.ecommerce .login__guest p {
  margin-bottom: var(--space-s);
}
.ecommerce .login__recover {
  margin-bottom: var(--space-l);
  padding-left: 150px;
  font-size: 12px;
  text-align: right;
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .ecommerce .login__recover {
    padding-left: 0;
    margin-bottom: var(--space-xs);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .login__recover {
    padding-left: 0;
    margin-bottom: var(--space-xs);
  }
}
@media (max-width: 320px) {
  .ecommerce .login__recover {
    padding-left: 0;
    margin-bottom: var(--space-xs);
  }
}
.ecommerce .login__hostelry {
  margin-top: var(--space-l);
}

.ecommerce .register {
  min-height: 300px;
}
@media (max-width: 1700px) {
  .ecommerce .register {
    padding-right: var(--space-s);
    padding-left: var(--space-s);
    padding-top: var(--space-l);
  }
}
.ecommerce .register__content {
  width: 100%;
  max-width: var(--content-min-width);
  margin: auto;
  padding-top: calc(var(--space-xl) * 2.5);
  padding-bottom: var(--space-xl);
}
.ecommerce .register__content .button-block--start {
  justify-content: flex-end;
}
@media hd-laptop {
  .ecommerce .register__content {
    margin-bottom: calc(var(--space-xl) + var(--space-m));
  }
}
@media laptop {
  .ecommerce .register__content {
    margin-bottom: calc(var(--space-xl) + var(--space-m));
  }
}
@media ipad-pro--landscape {
  .ecommerce .register__content {
    margin-bottom: calc(var(--space-xl) + var(--space-m));
  }
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .ecommerce .register__content {
    padding: var(--space-l) var(--space-xl);
    margin-bottom: calc(var(--space-xl) + var(--space-m));
  }
}
@media ipad--landscape {
  .ecommerce .register__content {
    padding: var(--space-l) var(--space-xl);
    margin-bottom: calc(var(--space-xl) + var(--space-m));
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .ecommerce .register__content {
    padding: var(--space-l) var(--space-xl);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .register__content {
    padding: var(--space-l) 0;
  }
}
@media (max-width: 320px) {
  .ecommerce .register__content {
    padding: var(--space-l) 0;
  }
}
.ecommerce .register__content .form {
  display: grid;
  grid-template-columns: 1fr;
}
.ecommerce .register__title {
  margin: var(--space-m) 0 var(--space-l) 0;
  background-color: var(--dark-blue);
  color: white;
  padding: var(--space-m);
}
.ecommerce .register__subtitle {
  margin-top: 0;
  margin-bottom: var(--space-l);
  background-color: var(--dark-blue);
  color: white;
  padding: var(--space-m);
}
.ecommerce .register .data-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: start;
  flex-wrap: wrap;
  margin-bottom: var(--space-m);
}
@media (max-width:767px ) {
  .ecommerce .register .data-blocks {
    grid-template-columns: 1fr;
  }
}
.ecommerce .register .data-blocks .register__block {
  margin-right: var(--space-m);
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .ecommerce .register .data-blocks .register__block {
    width: 100%;
    margin-right: 0;
  }
  .ecommerce .register .data-blocks .register__block input,
  .ecommerce .register .data-blocks .register__block select {
    min-width: 0;
  }
  .ecommerce .register .data-blocks .register__block label {
    font-size: 12px;
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .ecommerce .register .data-blocks .register__block {
    width: 100%;
    margin-right: 0;
  }
  .ecommerce .register .data-blocks .register__block input,
  .ecommerce .register .data-blocks .register__block select {
    min-width: 0;
  }
  .ecommerce .register .data-blocks .register__block label {
    font-size: 12px;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .register .data-blocks .register__block {
    width: 100%;
    margin-right: 0;
  }
  .ecommerce .register .data-blocks .register__block input,
  .ecommerce .register .data-blocks .register__block select {
    min-width: 0;
  }
  .ecommerce .register .data-blocks .register__block label {
    font-size: 12px;
  }
}
@media mobile--landscape {
  .ecommerce .register .data-blocks .register__block {
    width: 100%;
  }
}
@media (max-width: 320px) {
  .ecommerce .register .data-blocks .register__block {
    width: 100%;
    margin-right: 0;
  }
  .ecommerce .register .data-blocks .register__block input,
  .ecommerce .register .data-blocks .register__block select {
    min-width: 0;
  }
  .ecommerce .register .data-blocks .register__block label {
    font-size: 12px;
  }
}
@media mobile-s--landscape {
  .ecommerce .register .data-blocks .register__block {
    width: 100%;
  }
}
.ecommerce .register__block {
  margin-top: var(--space-m);
  padding: var(--space-l);
  background-color: #f8f8f8;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .register__block {
    padding: var(--space-l) var(--space-m);
  }
}
@media (max-width: 320px) {
  .ecommerce .register__block {
    padding: var(--space-l) var(--space-m);
  }
}
.ecommerce .register__block .form__block {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-m);
}
.ecommerce .register__block .form__block label {
  flex: 1;
}
.ecommerce .register__block .form__block input,
.ecommerce .register__block .form__block .form__select {
  flex: 2;
}
.ecommerce .register__block .form__block input,
.ecommerce .register__block .form__block select {
  min-width: 13.75rem;
  padding: var(--space-xs) var(--space-s);
}
.ecommerce .register__block .form__block select {
  width: 100%;
  -webkit-appearance: none;
  border: 1px solid #d7d7d7;
  background-color: white;
  min-height: var(--space-l);
  border-radius: 0;
  font-size: 12px;
}
.ecommerce .register .recover-password-form {
  min-width: var(--content-min-width);
  margin-top: var(--space-l);
}
.ecommerce .register .recover-password-form form .form__block {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-m);
}
.ecommerce .register .recover-password-form form .form__block label {
  flex: 1;
}
.ecommerce .register .recover-password-form form .form__block input {
  flex: 2;
  min-width: 19rem;
  padding: var(--space-xs) var(--space-s);
  margin-left: var(--space-s);
  font-size: 12px;
  border: 1px solid #dfdfdf;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .register .recover-password-form form {
    width: 100%;
  }
  .ecommerce .register .recover-password-form form .form__block input {
    min-width: 0;
  }
  .ecommerce .register .recover-password-form form .form__block label {
    font-size: 12px;
  }
}
@media (max-width: 320px) {
  .ecommerce .register .recover-password-form form {
    width: 100%;
  }
  .ecommerce .register .recover-password-form form .form__block input {
    min-width: 0;
  }
  .ecommerce .register .recover-password-form form .form__block label {
    font-size: 12px;
  }
}
@media mobile-s--landscape {
  .ecommerce .register .recover-password-form form {
    width: 100%;
  }
  .ecommerce .register .recover-password-form form .form__block input {
    min-width: 0;
  }
  .ecommerce .register .recover-password-form form .form__block label {
    font-size: 12px;
  }
}

.ecommerce .profile {
  padding-top: calc(var(--space-xl) * 2);
  background-color: whitesmoke;
  padding-bottom: var(--space-xl);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .profile {
    padding-top: 45px;
  }
}
.ecommerce .profile__content {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  grid-gap: var(--space-l);
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
@media laptop {
  .ecommerce .profile__content {
    margin-bottom: var(--space-xl);
  }
}
@media ipad-pro--landscape {
  .ecommerce .profile__content {
    margin-bottom: var(--space-xl);
  }
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .ecommerce .profile__content {
    padding: 0 var(--space-m);
  }
}
@media ipad--landscape {
  .ecommerce .profile__content {
    padding: 0 var(--space-m);
    margin-bottom: var(--space-xl);
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .ecommerce .profile__content {
    grid-template-columns: 1fr;
    padding: var(--space-m) var(--space-m) 0;
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .ecommerce .profile__content {
    grid-template-columns: 1fr;
    padding: var(--space-m) var(--space-m) 0;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .profile__content {
    grid-template-columns: 1fr;
    padding: 0;
  }
}
@media (max-width: 320px) {
  .ecommerce .profile__content {
    display: block;
    padding: 0;
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .ecommerce .profile__aside {
    display: none;
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .ecommerce .profile__aside {
    display: none;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .profile__aside {
    display: none;
  }
}
@media (max-width: 320px) {
  .ecommerce .profile__aside {
    display: none;
  }
}
.ecommerce .profile__main {
  position: relative;
  background-color: var(--white);
}
.ecommerce .profile__main .form {
  padding: var(--space-l);
  grid-template-columns: 1fr;
}
.ecommerce .profile__main .form form {
  width: 100%;
}
.ecommerce .profile__main .form h4 + p {
  margin-bottom: var(--space-m);
}
.ecommerce .profile__main .form__block {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-m);
}
.ecommerce .profile__main .form__block input[type=email],
.ecommerce .profile__main .form__block input[type=text],
.ecommerce .profile__main .form__block input[type=password],
.ecommerce .profile__main .form__block select {
  padding: var(--space-s) var(--space-s);
  min-width: 13.75rem;
  margin-left: var(--space-s);
  border: 1px solid var(--dark-salmon);
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .ecommerce .profile__main .form__block input[type=email],
  .ecommerce .profile__main .form__block input[type=text],
  .ecommerce .profile__main .form__block input[type=password],
  .ecommerce .profile__main .form__block select {
    font-size: var(--headline-fs);
  }
}
@media tablet--landscape {
  .ecommerce .profile__main .form__block input[type=email],
  .ecommerce .profile__main .form__block input[type=text],
  .ecommerce .profile__main .form__block input[type=password],
  .ecommerce .profile__main .form__block select {
    font-size: var(--headline-fs);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .profile__main .form__block input[type=email],
  .ecommerce .profile__main .form__block input[type=text],
  .ecommerce .profile__main .form__block input[type=password],
  .ecommerce .profile__main .form__block select {
    min-width: 0;
    font-size: var(--headline-fs);
  }
}
@media (max-width: 320px) {
  .ecommerce .profile__main .form__block input[type=email],
  .ecommerce .profile__main .form__block input[type=text],
  .ecommerce .profile__main .form__block input[type=password],
  .ecommerce .profile__main .form__block select {
    min-width: 0;
    font-size: var(--headline-fs);
  }
}
@media mobile-s--landscape {
  .ecommerce .profile__main .form__block input[type=email],
  .ecommerce .profile__main .form__block input[type=text],
  .ecommerce .profile__main .form__block input[type=password],
  .ecommerce .profile__main .form__block select {
    min-width: 0;
    font-size: var(--headline-fs);
  }
}
.ecommerce .profile__main .form__block select {
  -webkit-appearance: none;
  border: 1px solid #d7d7d7;
  background-color: white;
  min-height: var(--space-l);
  border-radius: 0;
  font-size: 0.9rem;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .profile__main .form__block select {
    font-size: var(--headline-fs);
  }
}
@media (max-width: 320px) {
  .ecommerce .profile__main .form__block select {
    font-size: var(--headline-fs);
  }
}
@media mobile-s--landscape {
  .ecommerce .profile__main .form__block select {
    font-size: var(--headline-fs);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .profile__main .form__block label {
    font-size: var(--headline-fs);
  }
}
@media (max-width: 320px) {
  .ecommerce .profile__main .form__block label {
    font-size: var(--headline-fs);
  }
}
@media mobile-s--landscape {
  .ecommerce .profile__main .form__block label {
    font-size: var(--headline-fs);
  }
}
.ecommerce .profile__main .form__block .form__label {
  width: 30%;
  text-align: end;
  align-self: center;
}
.ecommerce .profile__main .form__block .form__input {
  width: 70%;
}
.ecommerce .profile__main .form input[type=submit] {
  text-transform: uppercase;
}
.ecommerce .profile__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ecommerce .profile__welcome {
  position: absolute;
  top: 50%;
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--white);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .profile__welcome {
    --display-3-fs: 25px;
    top: 20%;
  }
}
@media (max-width: 320px) {
  .ecommerce .profile__welcome {
    --display-3-fs: 25px;
    top: 20%;
  }
}
.ecommerce .profile__welcome p {
  position: relative;
  display: inline-block;
  padding: 0 var(--space-m);
  margin-bottom: var(--space-s);
}
.ecommerce .profile__welcome p span {
  position: relative;
  z-index: 2;
  color: var(--dark-blue-lighter-5);
}
.ecommerce .profile__welcome p:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 3%;
  width: 87%;
  height: 43%;
  background-color: var(--dark-salmon-lighter-50);
}
.ecommerce .profile__title {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  grid-column-gap: var(--space-s);
  grid-row-gap: var(--space-l);
  margin-top: 0;
  background-color: var(--dark-salmon);
  padding: var(--space-m);
  text-transform: uppercase;
  color: var(--bc-1-lighter-5);
  font-size: 3rem;
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .ecommerce .profile__title {
    display: flex;
    justify-content: space-around;
    padding: calc(var(--space-m) * 3) 0;
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .ecommerce .profile__title {
    display: flex;
    justify-content: space-around;
    padding: calc(var(--space-m) * 3) 0;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .profile__title {
    display: flex;
    justify-content: space-around;
    padding: calc(var(--space-m) * 3) 0;
  }
}
@media (max-width: 320px) {
  .ecommerce .profile__title {
    display: flex;
    justify-content: space-around;
    padding: calc(var(--space-m) * 3) 0;
  }
}
.ecommerce .profile__title-icon {
  text-align: right;
}
.ecommerce .profile__title-icon--small {
  font-size: 20px;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .profile__title-icon {
    grid-row: 1/2;
    grid-column: 2/3;
  }
}
@media (max-width: 320px) {
  .ecommerce .profile__title-icon {
    grid-row: 1/2;
    grid-column: 2/3;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .profile__title-text {
    grid-row: 2/3;
    grid-column: 1/3;
  }
}
@media (max-width: 320px) {
  .ecommerce .profile__title-text {
    grid-row: 2/3;
    grid-column: 1/3;
  }
}
.ecommerce .profile__title-back {
  display: none;
  text-align: left;
  font-size: 30px;
}
.ecommerce .profile__title-back a {
  text-decoration: none;
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .ecommerce .profile__title-back {
    display: block;
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .ecommerce .profile__title-back {
    display: block;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .profile__title-back {
    display: block;
  }
}
@media (max-width: 320px) {
  .ecommerce .profile__title-back {
    display: block;
  }
}
.ecommerce .profile__subtitle {
  margin-top: var(--space-l);
  margin-bottom: var(--space-m);
  color: var(--brown-grey);
}
.ecommerce .profile--welcome .profile__content {
  align-items: stretch;
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .ecommerce .profile--welcome .profile__content {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .profile--welcome .profile__content {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}
@media (max-width: 320px) {
  .ecommerce .profile--welcome .profile__content {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}
.ecommerce .profile--welcome .profile__aside {
  display: block;
  position: relative;
  z-index: 2;
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .ecommerce .profile--welcome .profile__aside {
    grid-row: 2/3;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .profile--welcome .profile__aside {
    grid-row: 2/3;
  }
}
@media (max-width: 320px) {
  .ecommerce .profile--welcome .profile__aside {
    grid-row: 2/3;
  }
}
.ecommerce .profile--welcome .profile__main {
  position: relative;
  z-index: 1;
  padding: 0;
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .ecommerce .profile--welcome .profile__main {
    grid-row: 1/2;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ecommerce .profile--welcome .profile__main {
    grid-row: 1/2;
  }
}
@media (max-width: 320px) {
  .ecommerce .profile--welcome .profile__main {
    grid-row: 1/2;
  }
}

.ecommerce .aside__block {
  margin-bottom: var(--space-s);
  padding: var(--space-m);
  background-color: var(--white);
}
.ecommerce .aside__block:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.ecommerce .aside__block--end {
  padding: 0;
}
.ecommerce .aside__item {
  border-left: 5px solid var(--white);
  margin-bottom: var(--space-s);
}
.ecommerce .aside__item:last-child {
  margin-bottom: 0;
}
.ecommerce .aside__item:last-child .aside__item-name {
  border-bottom: none;
}
.ecommerce .aside__item a {
  display: flex;
  align-items: center;
  width: 100%;
  text-decoration: none;
}
.ecommerce .aside__item-icon {
  margin-left: var(--space-s);
  margin-right: var(--space-s);
  font-size: 20px;
}
.ecommerce .aside__item-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  flex-grow: 1;
  padding: var(--space-m) 0;
  border-bottom: 1px solid var(--white-pure);
  text-transform: uppercase;
}
.ecommerce .aside__item:hover {
  border-color: var(--azure);
}
.ecommerce .aside__item--current, .ecommerce .aside__item--current:hover {
  border-color: var(--azure);
}

.ecommerce .user {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-m);
}
.ecommerce .user__initials {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-m);
  border-radius: 50%;
  background-color: var(--dark-salmon);
  color: white;
  font-size: 30px;
  font-family: var(--neutra-demi);
  line-height: 30px;
}
.ecommerce .user__name {
  text-align: center;
  color: var(--brown-grey);
}

.orders {
  margin-top: var(--space-l);
}
.orders__empty {
  padding: var(--space-l);
}
.orders__order {
  margin-bottom: var(--space-m);
  border-bottom: 1px solid var(--white-pure);
}
.orders__order:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.lorder--cart,
.porder--cart {
  --status-color: #6b6d76;
}
.lorder--confirmed,
.porder--confirmed {
  --status-color: #ff9900;
}
.lorder--paid,
.porder--paid {
  --status-color: #5b85aa;
}
.lorder--shipment,
.porder--shipment {
  --status-color: #4aad52;
}
.lorder--delivered,
.porder--delivered {
  --status-color: #3c4f76;
}
.lorder--canceled,
.porder--canceled {
  --status-color: #da3e52;
}
.lorder--returned,
.porder--returned {
  --status-color: #561643;
}

.lorder {
  display: grid;
  grid-template-areas: "icon reference status   price more" "icon date      products price more";
  grid-template-columns: min-content 1.5fr 2fr 1fr min-content;
  grid-gap: 0 var(--space-s);
  padding: var(--space-s);
  font-family: var(--neutra-regular);
  cursor: pointer;
  transition: all 0.5s ease-out;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .lorder {
    grid-template-areas: "icon      status    price     price" "reference reference reference more " "date      date      date      more " "products  products  products  more ";
    grid-template-columns: min-content 2fr 1fr min-content;
  }
}
@media (max-width: 320px) {
  .lorder {
    grid-template-areas: "icon      status    price     price" "reference reference reference more " "date      date      date      more " "products  products  products  more ";
    grid-template-columns: min-content 2fr 1fr min-content;
  }
}
.lorder:hover {
  background-color: var(--blue-pale-light);
}
.lorder strong {
  font-family: var(--neutra-bold);
}
.lorder__icon {
  grid-area: icon;
  align-self: center;
  color: var(--status-color);
  font-size: 12px;
}
.lorder__date {
  grid-area: date;
}
.lorder__reference {
  grid-area: reference;
}
.lorder__status {
  grid-area: status;
  color: var(--status-color);
}
.lorder__products {
  grid-area: products;
}
.lorder__price {
  grid-area: price;
  align-self: center;
  font-size: 20px;
  font-weight: bold;
  text-align: right;
}
.lorder__more {
  grid-area: more;
  align-self: center;
  font-size: 30px;
  padding-left: var(--space-m);
}
.lorder__estimated {
  grid-column: 2/5;
  font-family: var(--neutra-regular-italic);
  font-style: italic;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .lorder__estimated {
    grid-column: 1/5;
  }
}
@media (max-width: 320px) {
  .lorder__estimated {
    grid-column: 1/5;
  }
}

.porder__icon, .porder__status {
  color: var(--status-color);
}
.porder__top {
  padding-left: var(--space-l);
  padding-right: var(--space-l);
  padding-top: var(--space-l);
  display: grid;
  grid-template-areas: "date      status   " "payment   total    " "estimated estimated";
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--space-l) var(--space-m);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .porder__top {
    grid-template-areas: "date" "status" "total" "payment" "estimated";
    grid-template-columns: 1fr;
  }
}
@media (max-width: 320px) {
  .porder__top {
    grid-template-areas: "date" "status" "total" "payment" "estimated";
    grid-template-columns: 1fr;
  }
}
.porder__top-elem {
  text-align: center;
}
.porder__top-elem > span {
  display: block;
}
.porder__top-date {
  grid-area: date;
}
.porder__top-status {
  grid-area: status;
}
.porder__top-payment {
  grid-area: payment;
}
.porder__top-total {
  grid-area: total;
}
.porder__top-estimated {
  grid-area: estimated;
}
.porder__top-title {
  margin-top: 0 !important;
  line-height: 1em;
}
.porder__top-text {
  font-family: var(--neutra-regular);
  line-height: 1em;
}
.porder__status, .porder__total {
  font-size: 20px;
  font-family: var(--neutra-bold);
  text-transform: uppercase;
}
.porder__addresses {
  padding-left: var(--space-l);
  padding-right: var(--space-l);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--space-l);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .porder__addresses {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}
@media (max-width: 320px) {
  .porder__addresses {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}
.porder__details {
  padding-left: var(--space-l);
  padding-right: var(--space-l);
}
.porder__statuses {
  padding-left: var(--space-l);
  padding-right: var(--space-l);
  padding-bottom: var(--space-l);
}
.porder__address p {
  margin-bottom: 0;
}
.porder__invoice {
  text-align: right;
}
.porder__items {
  padding-bottom: var(--space-m);
  margin-bottom: var(--space-s);
  border-bottom: 1px solid var(--dark-salmon);
}
.porder__item:after {
  content: "";
  height: 3px;
  margin-top: var(--space-s);
  margin-bottom: var(--space-m);
  background-image: url(../resources/style/dot-black.svg);
  background-position: left center;
  background-size: auto 3px;
  background-repeat: repeat-x;
}
.porder__item:last-child:after {
  display: none;
}
.porder__totals {
  margin-bottom: var(--space-m);
}
.porder .profile__subtitle {
  padding-bottom: var(--space-s);
  margin-bottom: var(--space-s);
  font-size: 1.5rem;
  text-transform: uppercase;
  border-bottom: 1px solid var(--dark-salmon);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .porder .profile__subtitle {
    font-size: 1.3rem;
  }
}
@media (max-width: 320px) {
  .porder .profile__subtitle {
    font-size: 1.3rem;
  }
}

.status {
  display: grid;
  grid-template-columns: min-content 1fr 2fr;
  grid-gap: var(--space-l);
  align-items: center;
  padding: var(--space-s) var(--space-m);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .status {
    grid-template-columns: 1fr 1fr;
    grid-gap: var(--space-m);
  }
}
@media (max-width: 320px) {
  .status {
    grid-template-columns: 1fr 1fr;
    grid-gap: var(--space-m);
  }
}
.status--cart {
  --status-color: #6B6D76;
}
.status--confirmed {
  --status-color: #FF9900;
}
.status--paid {
  --status-color: #5B85AA;
}
.status--shipment {
  --status-color: #4AAD52;
}
.status--delivered {
  --status-color: #3C4F76;
}
.status--canceled {
  --status-color: #DA3E52;
}
.status--returned {
  --status-color: #561643;
}
.status:nth-child(2n) {
  background-color: var(--g-05);
}
.status__date {
  font-family: var(--neutra-regular);
  text-align: center;
  line-height: 1.2em;
}
.status__date span {
  display: block;
}
.status__type {
  color: var(--status-color);
  text-transform: uppercase;
  font-family: var(--neutra-regular);
  text-align: center;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .status__comments {
    grid-column: 1/3;
  }
}
@media (max-width: 320px) {
  .status__comments {
    grid-column: 1/3;
  }
}

.pgallery {
  position: relative;
}
.pgallery__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.pgallery__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform: translateX(100%);
}
.pgallery__item--selected {
  transform: translateX(0);
  transition: all 0.5s var(--cubic-end-quick);
}
.pgallery__item--hidden {
  transform: translateX(-100%);
  transition: all 0.5s var(--cubic-end-quick);
}
.pgallery__item-text {
  position: absolute;
  bottom: var(--space-l);
  left: 50%;
  transform: translateX(-50%);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .pgallery__item-text {
    bottom: var(--space-m);
  }
}
@media (max-width: 320px) {
  .pgallery__item-text {
    bottom: var(--space-m);
  }
}
.pgallery__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.shop__options {
  margin-bottom: var(--space-m);
}
.shop__total {
  margin-bottom: var(--space-s);
}
.options {
  position: relative;
}
.options--hidden {
  display: none;
}
.options__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.options__wrapper:nth-child(2) {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.options__wrapper--hidden {
  opacity: 0;
}
.options__option {
  margin-bottom: var(--space-m);
}
.options__option:last-child {
  margin-bottom: 0;
}
.options__description {
  display: none;
}

.option__values {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  grid-gap: var(--space-m);
  align-items: start;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .option__values {
    grid-template-columns: repeat(3, 1fr);
  }
}
.option__value:last-child {
  margin-right: 0;
}

.value {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  cursor: pointer;
}
.value__image {
  background-color: rgba(255, 255, 255, 0.4);
  text-align: center;
  transition: all 0.5s var(--cubic-end-quick);
}
.value__image img {
  width: 100%;
  height: 175px;
  -o-object-fit: contain;
     object-fit: contain;
  transform: scale(0.9, 0.9);
  transition: all 0.5s var(--cubic-end-quick);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .value__image img {
    height: 120px;
  }
}
.value__text {
  padding: var(--space-s);
  border-bottom: 1px solid var(--white);
  font-family: var(--neutra-demi);
  text-transform: uppercase;
  text-align: center;
  line-height: 1em;
  transition: all 0.5s var(--cubic-end-quick);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .value__text {
    font-size: 14px;
  }
}
.value--selected .value__image {
  background-color: var(--white);
}
.value--selected .value__image img {
  transform: scale(1, 1);
}
.value--selected .value__text {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--black);
}
.value:hover .value__image img {
  transform: scale(1, 1);
}
.value--disabled, .value--disabled:hover {
  cursor: not-allowed;
  opacity: 0.4;
}
.value--disabled .value__image, .value--disabled:hover .value__image {
  transform: scale(0.9, 0.9);
}
.value--disabled .value__text, .value--disabled:hover .value__text {
  border-color: var(--g-30);
  background-color: var(--g-30);
  color: var(--white);
}

.amount {
  display: flex;
  align-items: center;
  margin-top: var(--space-l);
}
.amount__title {
  color: var(--brown-grey);
  margin-right: var(--space-m);
}
.amount__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-xs);
  font-weight: bold;
  border: 2px solid var(--azure);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: white;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .amount__wrapper {
    justify-content: flex-start;
  }
}
@media (max-width: 320px) {
  .amount__wrapper {
    justify-content: flex-start;
  }
}
.amount__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  color: var(--black-pure);
  cursor: pointer;
  transition: all 0.5s var(--cubic-end-quick);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.amount__button:hover {
  background-color: var(--azure);
  color: var(--white-pure);
}
.amount__button--remove {
  grid-column: 2;
  grid-row: 2;
}
.amount__number {
  width: 40px;
  margin: 0 var(--space-m);
  text-align: center;
  font-family: var(--mort-regular);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  grid-row: 1/3;
}

.total {
  display: flex;
  justify-content: space-between;
}
.total__old-price {
  min-height: 20px;
  font-size: 20px;
  font-family: var(--neutra-demi);
  line-height: 1em;
  text-decoration: line-through;
}
.total__price {
  font-size: 45px;
  font-family: var(--mort-semi-bold);
  line-height: 1em;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .total__price {
    font-size: 35px;
  }
}
.total__vat {
  font-size: 16px;
  font-family: var(--neutra-regular-italic);
  font-style: italic;
  line-height: 1em;
  text-align: right;
}

.shop-cart {
  display: flex;
}
.shop-cart__description {
  grid-area: desc;
  font-family: var(--neutra-regular);
  min-height: 50px;
  margin-right: var(--space-m);
  font-size: var(--body-fs);
  line-height: 1em;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .shop-cart__description {
    --body-fs: 14px;
    min-height: 0;
  }
}
.shop-cart__description strong {
  font-family: var(--neutra-bold);
}
.shop-cart__description > * {
  margin-bottom: 0;
}
.shop-cart .button {
  --bc-color: var(--black);
  --bg-color: var(--black);
  --ft-color: var(--white);
  white-space: nowrap;
}
.shop-cart .button:hover {
  --bc-color: var(--black);
  --bg-color: transparent;
  --ft-color: var(--black);
}

.basket {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding-bottom: var(--space-l);
  padding-top: calc(var(--space-xl) * 3);
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .basket {
    padding: var(--space-l) var(--space-l) 0;
  }
}
@media ipad--landscape {
  .basket {
    padding: var(--space-l) var(--space-l) 0;
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .basket {
    padding: var(--space-l) var(--space-l);
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .basket {
    padding: var(--space-l) var(--space-l);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .basket {
    padding: var(--space-xl) var(--space-m);
  }
}
@media (max-width: 320px) {
  .basket {
    padding: var(--space-xl) var(--space-m);
  }
}
.basket__title {
  background-color: var(--dark-blue);
  color: white;
  padding: var(--space-m);
  font-size: 3rem;
  text-transform: uppercase;
}
.basket__empty {
  border: 1px solid var(--bc-1-lighter-25);
  padding: var(--space-m);
}
.basket__empty--hidden {
  display: none;
}
.basket__full {
  background-color: white;
  padding: var(--space-l);
  border: 1px solid var(--bc-1-lighter-25);
}
.basket__full--hidden {
  display: none;
}
.basket__delete {
  font-family: var(--neutra-regular-italic);
  font-style: italic;
  transition: color 0.5s var(--cubic-end-quick);
  cursor: pointer;
}
.basket__delete span {
  border-bottom: 1px solid var(--black);
  transition: border-color 0.5s var(--cubic-end-quick);
}
.basket__delete:hover {
  color: var(--red-alert);
}
.basket__delete:hover span {
  border-color: var(--red-alert);
}
.basket__buttons {
  justify-content: flex-end;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .basket__buttons {
    flex-direction: column-reverse;
  }
  .basket__buttons .button {
    margin-left: 0;
  }
}
@media (max-width: 320px) {
  .basket__buttons {
    flex-direction: column-reverse;
  }
  .basket__buttons .button {
    margin-left: 0;
  }
}
.basket__link {
  font-family: var(--neutra-regular-italic);
  font-style: italic;
  margin-right: var(--space-l);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .basket__link {
    margin-top: var(--space-m);
    margin-right: 0px !important;
  }
}
@media (max-width: 320px) {
  .basket__link {
    margin-top: var(--space-m);
    margin-right: 0px !important;
  }
}

/* -------------------------- */
.btable__header {
  display: grid;
  grid-template-columns: 145px 4fr repeat(3, minmax(125px, 1.5fr));
  align-items: center;
  margin-bottom: var(--space-m);
  border-bottom: 1px solid var(--bc-1-lighter-25);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .btable__header {
    display: none;
  }
}
.btable__h {
  padding: var(--space-s);
  font-size: 18px;
  line-height: 1em;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}
.btable__h--product {
  text-align: left;
  grid-column-end: span 2;
}
.btable__content {
  padding-bottom: var(--space-m);
  margin-bottom: var(--space-m);
  border-bottom: 1px solid var(--bc-1-lighter-25);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .btable__content {
    padding-top: var(--space-m);
    border-top: 1px solid var(--bc-1);
  }
}
.btable__item:after {
  content: "";
  height: 3px;
  margin-top: var(--space-s);
  margin-bottom: var(--space-m);
  background-image: url(../resources/style/dot-black.svg);
  background-position: left center;
  background-size: auto 3px;
  background-repeat: repeat-x;
}
.btable__item:last-child:after {
  display: none;
}
.btable__footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: var(--space-l);
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .btable__footer {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .btable__footer {
    grid-template-columns: 1fr;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .btable__footer {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .btable__footer-features {
    grid-row: 2/3;
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .btable__footer-features {
    grid-row: 2/3;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .btable__footer-features {
    grid-row: 2/3;
  }
}
.btable__footer-features .shop-features {
  grid-template-columns: repeat(3, auto);
  border-right: 1px solid var(--bc-1-lighter-25);
  height: 100%;
}
.btable__footer-features .shop-features__icon {
  opacity: 0.6;
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .btable__footer-features .shop-features {
    border-right: none;
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .btable__footer-features .shop-features {
    border-right: none;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .btable__footer-features .shop-features {
    border-right: none;
  }
}
.btable__footer-features .shop-features__feature {
  border-right: none;
  grid-template-columns: max-content 1fr max-content;
}
@media mobile {
  .btable__footer-features .shop-features__feature {
    grid-template-columns: 1fr max-content;
  }
}
.btable__footer-features .shop-features__feature:nth-child(1):after, .btable__footer-features .shop-features__feature:nth-child(2):after {
  content: "";
  width: 3px;
  background-image: url(../resources/style/dot-black-vertical.svg);
  background-position: center top;
  background-size: 3px auto;
  background-repeat: repeat-y;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .btable__footer-features .shop-features__feature:nth-child(1):after, .btable__footer-features .shop-features__feature:nth-child(2):after {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
@media (max-width: 320px) {
  .btable__footer-features .shop-features__feature:nth-child(1):after, .btable__footer-features .shop-features__feature:nth-child(2):after {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
.btable__footer-features .shop-features__feature:last-child {
  display: none;
}
.btable__footer-features .shop-features__feature:nth-child(3) {
  display: grid;
}
.btable__subtotal {
  display: grid;
  grid-template-areas: "title price" "..... text ";
  grid-template-columns: 1fr 1fr;
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .btable__subtotal {
    grid-template-columns: 1fr auto;
    margin-bottom: var(--space-l);
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .btable__subtotal {
    grid-template-columns: 1fr auto;
    margin-bottom: var(--space-l);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .btable__subtotal {
    grid-template-columns: 1fr auto;
    grid-template-areas: "title price" "text  text ";
    margin-bottom: var(--space-l);
  }
}
.btable__subtotal-title {
  grid-area: price;
  text-transform: uppercase;
  font-family: var(--neutra-regular);
  padding-left: var(--space-m);
  color: var(--brown-grey);
  font-size: 2rem;
  align-self: end;
  text-align: start;
  margin-bottom: var(--space-s);
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .btable__subtotal-title {
    padding-right: var(--space-m);
    text-align: right;
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .btable__subtotal-title {
    padding-right: var(--space-m);
    text-align: right;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .btable__subtotal-title {
    padding-right: var(--space-m);
    text-align: left;
    margin-top: 40px;
  }
}
.btable__subtotal-price {
  grid-area: price;
  margin-bottom: var(--space-s);
  font-size: 33px;
  font-family: var(--mort-semi-bold);
  line-height: 1em;
  text-align: right;
}
.btable__subtotal-text {
  grid-area: text;
  font-size: 14px;
  font-family: var(--neutra-regular-italic);
  font-style: italic;
  line-height: 1em;
  text-align: right;
  color: var(--brown-grey);
}
.btable__subtotal-text p {
  margin-bottom: var(--space-s);
}

.bitem {
  display: grid;
  grid-template-areas: "image name price amount total" "image delete price amount total";
  grid-template-columns: 145px 4fr repeat(3, minmax(125px, 1.5fr));
  grid-template-rows: 1fr auto;
  font-family: var(--neutra-regular);
  font-size: 16px;
  line-height: 1em;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .bitem {
    grid-template-areas: "image  name  " "image  price " "delete amount";
    grid-template-columns: auto 1fr;
  }
}
@media (max-width: 320px) {
  .bitem {
    grid-template-areas: "image  name  " "image  price " "delete amount";
    grid-template-columns: auto 1fr;
  }
}
.bitem strong {
  font-family: var(--neutra-bold);
  font-size: inherit;
  line-height: 1em;
  font-size: 2rem;
}
.bitem__image {
  grid-area: image;
  width: 145px;
  height: 145px;
  -o-object-fit: contain;
     object-fit: contain;
  border-right: 1px solid var(--bc-1-lighter-25);
}
.bitem__name {
  grid-area: name;
  padding-left: var(--space-m);
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  line-height: 1.2;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .bitem__name {
    padding-left: var(--space-s);
    font-size: 1.1rem;
  }
}
@media (max-width: 320px) {
  .bitem__name {
    padding-left: var(--space-s);
    font-size: 1.1rem;
  }
}
.bitem__name a {
  text-decoration: none;
}
.bitem__name p {
  margin-bottom: var(--space-m);
}
.bitem__delete {
  grid-area: delete;
  padding-left: var(--space-m);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .bitem__delete {
    padding-left: 0;
    text-align: center;
  }
}
.bitem__unit-price {
  grid-area: price;
}
.bitem__amount {
  grid-area: amount;
}
.bitem__total {
  grid-area: total;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .bitem__total {
    display: none;
  }
}
@media (max-width: 320px) {
  .bitem__total {
    display: none;
  }
}
.bitem__unit-price, .bitem__amount, .bitem__total {
  align-self: center;
  justify-self: center;
  font-size: 18px;
  text-align: center;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .bitem__unit-price, .bitem__amount, .bitem__total {
    align-self: auto;
    justify-self: auto;
    padding-left: var(--space-m);
    text-align: left;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .bitem__unit-price {
    padding-bottom: var(--space-m);
  }
}
.bitem__old-price {
  display: block;
  color: rgba(0, 0, 0, 0.4);
  text-decoration: line-through;
}
.bitem__price {
  display: block;
  margin-top: var(--space-s);
}
.bitem__amount {
  margin-top: 0;
}
.bitem__amount .amount__number {
  width: 30px;
  font-family: var(--neutra-regular);
  font-size: 18px;
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .bitem__amount .amount__button {
    width: 25px;
    height: 25px;
  }
  .bitem__amount .amount__number {
    font-size: 16px;
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .bitem__amount .amount__button {
    width: 25px;
    height: 25px;
  }
  .bitem__amount .amount__number {
    font-size: 16px;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .bitem__amount .amount__button {
    width: 20px;
    height: 20px;
  }
  .bitem__amount .amount__number {
    font-size: 14px;
  }
}
@media (max-width: 320px) {
  .bitem__amount .amount__button {
    width: 20px;
    height: 20px;
  }
  .bitem__amount .amount__number {
    font-size: 14px;
  }
}
.bitem:after {
  grid-column-end: span 5;
}

.checkout {
  display: grid;
  grid-template-areas: "shipping aside" "billing  aside" "payment  aside";
  grid-template-columns: 2fr 1fr;
  grid-gap: var(--space-l) var(--space-xl);
  width: 100%;
  max-width: var(--content-medium-width);
  margin: auto;
  padding-top: calc(var(--space-xl) * 2.5);
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .checkout {
    padding: var(--space-l) var(--space-l) 0;
  }
}
@media ipad--landscape {
  .checkout {
    padding: var(--space-l) var(--space-l) 0;
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .checkout {
    padding: 0 var(--space-l);
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .checkout {
    padding: var(--space-l) var(--space-l) 0;
    grid-template-areas: "shipping" "billing" "payment" "aside";
    grid-template-columns: 1fr;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .checkout {
    padding: var(--space-l) var(--space-m) 0;
    grid-template-areas: "shipping" "billing" "payment" "aside";
    grid-template-columns: 1fr;
  }
}
@media (max-width: 320px) {
  .checkout {
    padding: 0 var(--space-m);
  }
}
@media mobile-s--landscape {
  .checkout {
    padding: var(--space-l) var(--space-m) 0;
    grid-template-areas: "shipping" "billing" "payment" "aside";
    grid-template-columns: 1fr;
  }
}
.checkout__user {
  grid-area: user;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.12);
}
.checkout__contact {
  grid-area: contact;
}
.checkout__shipping {
  grid-area: shipping;
  background-color: white;
  padding: var(--space-l);
}
.checkout__shipping .shipping {
  background-color: #f8f8f8;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .checkout__shipping {
    padding-right: 0px !important;
    padding-left: 0px !important;
    padding-top: var(--space-l);
  }
}
.checkout__billing {
  grid-area: billing;
  background-color: white;
  padding: var(--space-l);
}
.checkout__billing .billing {
  background-color: #f8f8f8;
}
.checkout__billing .billing .billing__question,
.checkout__billing .billing .billing__wrapper {
  padding: var(--space-m);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .checkout__billing {
    padding-right: 0px !important;
    padding-left: 0px !important;
    padding-top: var(--space-l);
  }
}
.checkout__payment {
  grid-area: payment;
  background-color: var(--white);
  padding: var(--space-l);
  margin-bottom: var(--space-l);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .checkout__payment {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
}
.checkout__aside {
  grid-area: aside;
}
.checkout__end {
  background-color: white;
  padding: var(--space-m);
}
.checkout__note {
  --color: var(--black);
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--space-m);
  padding-left: 0;
  background-color: rgba(121, 209, 126, 0.3);
  color: var(--color);
  font-family: var(--neutra-regular);
  font-size: 16px;
  line-height: 1em;
}
.checkout__note--yellow {
  --color: var(--black);
  background-color: rgba(237, 224, 77, 0.5);
}
.checkout__note--blue {
  --color: var(--black);
  background-color: rgba(75, 177, 207, 0.5);
}
.checkout__note--transparent {
  --color: var(--black);
  background-color: transparent;
}
.checkout__note strong {
  font-family: var(--neutra-bold);
}
.checkout__note .link {
  --color: var(--color);
}
.checkout__note-icon {
  margin-right: var(--space-m);
  font-size: 20px;
  color: var(--brown-grey-dark);
}
.checkout__note-text {
  color: var(--brown-grey-dark);
}
.checkout__note-text p {
  margin-bottom: 0;
}
.checkout__code {
  margin: var(--space-m) 0;
  background-color: #f8f8f8;
  border: 2px solid var(--dark-salmon);
}
.checkout__code .title-font {
  font-size: 1.8rem;
}
.checkout__code p {
  margin-bottom: var(--space-s);
}
.checkout__code .form {
  padding: var(--space-m);
}
.checkout__code .form .form__block {
  grid-template-columns: auto 1fr;
  margin-bottom: var(--space-s);
}
.checkout__code .form .form__input {
  font-family: var(--neutra-bold);
  text-transform: uppercase;
  border: 0;
  border-bottom: 1px solid var(--bc-1-lighter-50);
}
.checkout__end .buttons {
  margin-top: 0;
}
.checkout__message {
  margin-bottom: var(--space-m);
  font-family: var(--neutra-regular);
  font-size: 14px;
  line-height: 1.2em;
  color: var(--brown-grey-dark);
}
.checkout__message strong {
  font-family: var(--neutra-bold);
}
.checkout__title {
  margin-bottom: var(--space-m);
  color: var(--white);
  background-color: var(--dark-blue);
  padding: var(--space-m);
  text-transform: uppercase;
  color: var(--bc-1-lighter-5);
  font-size: 3rem;
}

.corder {
  background-color: var(--white);
  font-family: var(--neutra-regular);
  margin-top: 30px;
  background-color: #f8f8f8;
}
.corder strong {
  font-family: var(--neutra-bold);
  font-size: inherit;
  line-height: inherit;
}
.corder__title {
  padding: var(--space-s);
  line-height: 1.2;
  color: var(--white);
  text-transform: uppercase;
  font-size: 3rem;
  border-bottom: 2px solid var(--dark-salmon);
  background-color: var(--dark-salmon);
}
.corder__items {
  padding: var(--space-m);
  border-bottom: 2px solid var(--dark-salmon);
}
.corder__totals {
  padding: var(--space-m);
}
.corder__item:after {
  content: "";
  height: 3px;
  margin-top: var(--space-s);
  margin-bottom: var(--space-m);
  background-image: url(../resources/style/dot-black.svg);
  background-position: left center;
  background-size: auto 3px;
  background-repeat: repeat-x;
}
.corder__item:last-child:after {
  display: none;
}

.lorder--cart,
.porder--cart {
  --status-color: #6b6d76;
}
.lorder--confirmed,
.porder--confirmed {
  --status-color: #ff9900;
}
.lorder--paid,
.porder--paid {
  --status-color: #5b85aa;
}
.lorder--shipment,
.porder--shipment {
  --status-color: #4aad52;
}
.lorder--delivered,
.porder--delivered {
  --status-color: #3c4f76;
}
.lorder--canceled,
.porder--canceled {
  --status-color: #da3e52;
}
.lorder--returned,
.porder--returned {
  --status-color: #561643;
}

.lorder {
  display: grid;
  grid-template-areas: "icon reference status   price more" "icon date      products price more";
  grid-template-columns: min-content 1.5fr 2fr 1fr min-content;
  grid-gap: 0 var(--space-s);
  padding: var(--space-s);
  font-family: var(--neutra-regular);
  cursor: pointer;
  transition: all 0.5s ease-out;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .lorder {
    grid-template-areas: "icon      status    price     price" "reference reference reference more " "date      date      date      more " "products  products  products  more ";
    grid-template-columns: min-content 2fr 1fr min-content;
  }
}
@media (max-width: 320px) {
  .lorder {
    grid-template-areas: "icon      status    price     price" "reference reference reference more " "date      date      date      more " "products  products  products  more ";
    grid-template-columns: min-content 2fr 1fr min-content;
  }
}
.lorder:hover {
  background-color: var(--blue-pale-light);
}
.lorder strong {
  font-family: var(--neutra-bold);
}
.lorder__icon {
  grid-area: icon;
  align-self: center;
  color: var(--status-color);
  font-size: 12px;
}
.lorder__date {
  grid-area: date;
}
.lorder__reference {
  grid-area: reference;
}
.lorder__status {
  grid-area: status;
  color: var(--status-color);
}
.lorder__products {
  grid-area: products;
}
.lorder__price {
  grid-area: price;
  align-self: center;
  font-size: 20px;
  font-weight: bold;
  text-align: right;
}
.lorder__more {
  grid-area: more;
  align-self: center;
  font-size: 30px;
  padding-left: var(--space-m);
}
.lorder__estimated {
  grid-column: 2/5;
  font-family: var(--neutra-regular-italic);
  font-style: italic;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .lorder__estimated {
    grid-column: 1/5;
  }
}
@media (max-width: 320px) {
  .lorder__estimated {
    grid-column: 1/5;
  }
}

.porder__icon, .porder__status {
  color: var(--status-color);
}
.porder__top {
  display: grid;
  grid-template-areas: "date      status   " "payment   total    " "estimated estimated";
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--space-l) var(--space-m);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .porder__top {
    grid-template-areas: "date" "status" "total" "payment" "estimated";
    grid-template-columns: 1fr;
  }
}
@media (max-width: 320px) {
  .porder__top {
    grid-template-areas: "date" "status" "total" "payment" "estimated";
    grid-template-columns: 1fr;
  }
}
.porder__top-elem {
  text-align: center;
}
.porder__top-elem > span {
  display: block;
}
.porder__top-date {
  grid-area: date;
}
.porder__top-status {
  grid-area: status;
}
.porder__top-payment {
  grid-area: payment;
}
.porder__top-total {
  grid-area: total;
}
.porder__top-estimated {
  grid-area: estimated;
}
.porder__top-title {
  margin-top: 0 !important;
  line-height: 1em;
}
.porder__top-text {
  font-family: var(--neutra-regular);
  line-height: 1em;
}
.porder__status, .porder__total {
  font-size: 20px;
  font-family: var(--neutra-bold);
  text-transform: uppercase;
}
.porder__addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--space-l);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .porder__addresses {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}
@media (max-width: 320px) {
  .porder__addresses {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}
.porder__address p {
  margin-bottom: 0;
}
.porder__invoice {
  text-align: right;
}
.porder__items {
  padding-bottom: var(--space-m);
  margin-bottom: var(--space-s);
  border-bottom: 1px solid var(--dark-salmon);
}
.porder__item:after {
  content: "";
  height: 3px;
  margin-top: var(--space-s);
  margin-bottom: var(--space-m);
  background-image: url(../resources/style/dot-black.svg);
  background-position: left center;
  background-size: auto 3px;
  background-repeat: repeat-x;
}
.porder__item:last-child:after {
  display: none;
}
.porder__totals {
  margin-bottom: var(--space-m);
}
.porder .profile__subtitle {
  padding-bottom: var(--space-s);
  margin-bottom: var(--space-s);
  font-size: 1.5rem;
  border-bottom: 1px solid var(--dark-salmon);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .porder .profile__subtitle {
    font-size: 1.3rem;
  }
}
@media (max-width: 320px) {
  .porder .profile__subtitle {
    font-size: 1.3rem;
  }
}

.oitem {
  display: grid;
  grid-template-areas: "image  name   price" "image  amount .....";
  grid-template-columns: 80px 1fr max-content;
  font-size: 14px;
  line-height: 1em;
}
.oitem:after {
  grid-column-end: span 5;
}
.oitem__image {
  grid-area: image;
}
.oitem__name {
  grid-area: name;
  padding-left: var(--space-s);
  padding-right: var(--space-m);
  display: flex;
  align-items: center;
}
.oitem__name p {
  margin-bottom: var(--space-s);
}
.oitem__amount {
  grid-area: amount;
  padding-left: var(--space-s);
}
.oitem__unit-price {
  grid-area: price;
}
.oitem__old-price {
  display: block;
  color: rgba(0, 0, 0, 0.4);
  text-decoration: line-through;
}
.oitem__price {
  display: block;
  margin-top: var(--space-s);
}

.totals__total {
  display: flex;
  justify-content: space-between;
  padding-top: var(--space-s);
}
.totals__total--hidden {
  display: none;
}
.totals__total--green {
  color: var(--green-alert);
}
.totals__total--red {
  color: var(--red-alert);
}
.totals__separator {
  padding-top: var(--space-s);
  margin-bottom: var(--space-s);
  border-bottom: 1px solid var(--brown-grey);
}
.totals__value--big {
  font-family: var(--mort-semi-bold);
  font-size: 24px;
}

.payment {
  margin-top: var(--space-m);
  border: 1px solid var(--dark-blue);
  background-color: #f8f8f8;
}
.payment .checkout__title {
  cursor: pointer;
}
.payment--active .checkout__title {
  background-color: var(--dark-salmon);
}
.payment--active .checkout__title:hover {
  background-color: var(--dark-salmon);
}
.payment__description {
  font-family: var(--neutra-regular);
  line-height: 1.4;
  margin-bottom: var(--space-m);
  width: 90%;
  margin-left: var(--space-m);
}
.payment__description strong {
  font-family: var(--neutra-bold);
}
.payment__icons {
  font-size: 60px;
}

.shipping__note--hidden {
  display: none;
}
.shipping__note .checkout__note {
  padding: var(--space-m);
}
.shipping .form {
  display: flex;
  flex-direction: column;
  grid-column-gap: var(--space-s);
  padding: var(--space-m);
}
@media desktop {
  .shipping .form {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .shipping .form {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .shipping .form {
    grid-template-columns: 1fr 1fr;
  }
}
@media ipad--landscape {
  .shipping .form {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .shipping .form {
    display: block;
  }
}
@media mobile--landscape {
  .shipping .form {
    display: block;
  }
}
@media (max-width: 320px) {
  .shipping .form {
    display: block;
  }
}
@media mobile-s--landscape {
  .shipping .form {
    display: block;
  }
}
.shipping .form__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-m);
}
.shipping .form__block label {
  width: 140px;
  font-size: 14px;
  text-align: start;
}
@media ipad-pro--landscape {
  .shipping .form__block label {
    min-width: 120px;
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .shipping .form__block label {
    min-width: 120px;
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .shipping .form__block label {
    min-width: 120px;
  }
}
@media tablet--landscape {
  .shipping .form__block label {
    min-width: 120px;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .shipping .form__block label {
    min-width: 120px;
  }
}
@media mobile--landscape {
  .shipping .form__block label {
    min-width: 120px;
  }
}
@media (max-width: 320px) {
  .shipping .form__block label {
    min-width: 0;
  }
}
@media mobile-s--landscape {
  .shipping .form__block label {
    min-width: 0;
  }
}
.shipping .form__block input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--bc-1-lighter-50);
  background-color: #f8f8f8;
}
@media (max-width: 320px) {
  .shipping .form__block input {
    width: 80%;
  }
}
@media mobile-s--landscape {
  .shipping .form__block input {
    width: 80%;
  }
}
.shipping .form__block textarea {
  width: 100%;
  resize: vertical;
  border-color: var(--bc-1-lighter-50);
}
.shipping .form__block input,
.shipping .form__block textarea,
.shipping .form__block select {
  margin-left: var(--space-s);
  padding: var(--space-xs) var(--space-s);
  border-bottom: 1px solid var(--bc-1-lighter-50);
  background-color: #f8f8f8;
}
@media ipad-pro--landscape {
  .shipping .form__block input,
  .shipping .form__block textarea,
  .shipping .form__block select {
    border: 1px solid var(--bc-1-lighter-50);
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .shipping .form__block input,
  .shipping .form__block textarea,
  .shipping .form__block select {
    border: 1px solid var(--bc-1-lighter-50);
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .shipping .form__block input,
  .shipping .form__block textarea,
  .shipping .form__block select {
    font-size: 0.9rem;
    border: 1px solid var(--bc-1-lighter-50);
  }
}
@media tablet--landscape {
  .shipping .form__block input,
  .shipping .form__block textarea,
  .shipping .form__block select {
    font-size: 0.9rem;
    border: 1px solid var(--bc-1-lighter-50);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .shipping .form__block input,
  .shipping .form__block textarea,
  .shipping .form__block select {
    font-size: 12px;
  }
}
@media mobile--landscape {
  .shipping .form__block input,
  .shipping .form__block textarea,
  .shipping .form__block select {
    font-size: 12px;
  }
}
@media (max-width: 320px) {
  .shipping .form__block input,
  .shipping .form__block textarea,
  .shipping .form__block select {
    font-size: 12px;
  }
}
@media mobile-s--landscape {
  .shipping .form__block input,
  .shipping .form__block textarea,
  .shipping .form__block select {
    font-size: 12px;
  }
}
.shipping .form__block--name, .shipping .form__block--address {
  grid-column: 1/3;
}
.shipping .form__block--email, .shipping .form__block--state {
  grid-column: 3/4;
}
@media desktop {
  .shipping .form__block--email, .shipping .form__block--state {
    grid-column: 1/2;
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .shipping .form__block--email, .shipping .form__block--state {
    grid-column: 1/2;
  }
}
@media ipad--landscape {
  .shipping .form__block--email, .shipping .form__block--state {
    grid-column: 1/2;
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .shipping .form__block--email, .shipping .form__block--state {
    grid-column: 1/2;
  }
}
.shipping .form__block--phone, .shipping .form__block--cp {
  grid-column: 4/5;
}
@media desktop {
  .shipping .form__block--phone, .shipping .form__block--cp {
    grid-column: 2/3;
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .shipping .form__block--phone, .shipping .form__block--cp {
    grid-column: 2/3;
  }
}
@media ipad--landscape {
  .shipping .form__block--phone, .shipping .form__block--cp {
    grid-column: 2/3;
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .shipping .form__block--phone, .shipping .form__block--cp {
    grid-column: 2/3;
  }
}
.shipping .form__block--comments {
  grid-column: 1/5;
}
@media desktop {
  .shipping .form__block--comments {
    grid-column: 1/3;
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .shipping .form__block--comments {
    grid-column: 1/3;
  }
}
@media ipad--landscape {
  .shipping .form__block--comments {
    grid-column: 1/3;
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .shipping .form__block--comments {
    grid-column: 1/3;
  }
}
@media (max-width: 320px) {
  .shipping .form__block--comments textarea {
    width: 60%;
  }
}
@media mobile-s--landscape {
  .shipping .form__block--comments textarea {
    width: 80%;
  }
}
.shipping .form .zone-selector {
  grid-column: 1/5;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: var(--space-s);
}
.shipping .form .zone-selector label {
  min-width: 0;
}
@media desktop {
  .shipping .form .zone-selector {
    grid-column: 1/3;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .shipping .form .zone-selector {
    grid-column: 1/3;
    grid-template-columns: 1fr 1fr;
  }
  .shipping .form .zone-selector label {
    min-width: 120px;
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .shipping .form .zone-selector {
    grid-column: 1/3;
    grid-template-columns: 1fr 1fr;
  }
}
@media ipad--landscape {
  .shipping .form .zone-selector {
    grid-column: 1/3;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .shipping .form .zone-selector {
    display: block;
  }
}
@media mobile--landscape {
  .shipping .form .zone-selector {
    display: block;
  }
}
@media (max-width: 320px) {
  .shipping .form .zone-selector {
    display: block;
  }
  .shipping .form .zone-selector label {
    min-width: 0;
  }
}
@media mobile-s--landscape {
  .shipping .form .zone-selector {
    display: block;
  }
}
.shipping .form .zone-selector__region--text {
  grid-column: span 2;
}
.shipping .form .zone-selector__region--text label {
  min-width: 120px;
}
.shipping .form .zone-selector select {
  -webkit-appearance: none;
  border: 1px solid var(--bc-1-lighter-50);
  background-color: #f8f8f8;
  min-height: var(--space-l);
  border-radius: 0;
  font-size: 14px;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .shipping .form .zone-selector select {
    font-size: 12px;
  }
}
@media mobile--landscape {
  .shipping .form .zone-selector select {
    font-size: 12px;
  }
}
@media (max-width: 320px) {
  .shipping .form .zone-selector select {
    font-size: 12px;
  }
}
@media mobile-s--landscape {
  .shipping .form .zone-selector select {
    font-size: 12px;
  }
}
@media desktop {
  .shipping .form .zone-selector__country {
    grid-column: 1/2;
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .shipping .form .zone-selector__country {
    grid-column: 1/2;
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .shipping .form .zone-selector__country {
    grid-column: 1/2;
  }
}
@media ipad--landscape {
  .shipping .form .zone-selector__country {
    grid-column: 1/2;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .shipping .form .zone-selector__country {
    grid-column: 1/3;
  }
}
@media mobile--landscape {
  .shipping .form .zone-selector__country {
    grid-column: 1/3;
  }
}
@media (max-width: 320px) {
  .shipping .form .zone-selector__country {
    grid-column: 1/3;
  }
}
@media mobile-s--landscape {
  .shipping .form .zone-selector__country {
    grid-column: 1/3;
  }
}
@media desktop {
  .shipping .form .zone-selector__region--text {
    grid-row: 2/3;
    grid-column: 1/3;
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .shipping .form .zone-selector__region--text {
    grid-row: 2/3;
    grid-column: 1/3;
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .shipping .form .zone-selector__region--text {
    grid-row: 2/3;
    grid-column: 1/3;
  }
}
@media ipad--landscape {
  .shipping .form .zone-selector__region--text {
    grid-row: 2/3;
    grid-column: 1/3;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .shipping .form .zone-selector__region--text {
    grid-column: 1/3;
  }
}
@media mobile--landscape {
  .shipping .form .zone-selector__region--text {
    grid-column: 1/3;
  }
}
@media (max-width: 320px) {
  .shipping .form .zone-selector__region--text {
    grid-column: 1/3;
  }
}
@media mobile-s--landscape {
  .shipping .form .zone-selector__region--text {
    grid-column: 1/3;
  }
}

.billing--hidden {
  display: none;
}
.billing .form {
  display: flex;
  flex-direction: column;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .billing .form {
    display: block;
  }
}
@media (max-width: 320px) {
  .billing .form {
    display: block;
  }
}
@media mobile-s--landscape {
  .billing .form {
    display: block;
  }
}
.billing .form__block {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-m);
}
.billing .form__block label {
  min-width: 90px;
  font-size: 14px;
}
@media (max-width: 320px) {
  .billing .form__block label {
    min-width: 0;
  }
}
@media mobile-s--landscape {
  .billing .form__block label {
    min-width: 0;
  }
}
.billing .form__block input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--bc-1-lighter-50);
  background-color: #f8f8f8;
}
.billing .form__block textarea {
  width: 100%;
  resize: vertical;
  border-color: var(--bc-1-lighter-50);
}
.billing .form__block select {
  border: 1px solid var(--bc-1-lighter-50);
}
.billing .form__block input,
.billing .form__block textarea,
.billing .form__block select {
  margin-left: var(--space-s);
  padding: var(--space-xs) var(--space-s);
  border-bottom: 1px solid var(--bc-1-lighter-50);
  background-color: #f8f8f8;
}
@media ipad-pro--landscape {
  .billing .form__block input,
  .billing .form__block textarea,
  .billing .form__block select {
    border: 1px solid var(--bc-1-lighter-50);
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .billing .form__block input,
  .billing .form__block textarea,
  .billing .form__block select {
    border: 1px solid var(--bc-1-lighter-50);
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .billing .form__block input,
  .billing .form__block textarea,
  .billing .form__block select {
    font-size: 12px;
    border: 1px solid var(--bc-1-lighter-50);
  }
}
@media tablet--landscape {
  .billing .form__block input,
  .billing .form__block textarea,
  .billing .form__block select {
    font-size: 12px;
    border: 1px solid var(--bc-1-lighter-50);
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .billing .form__block input,
  .billing .form__block textarea,
  .billing .form__block select {
    font-size: 12px;
  }
}
@media (max-width: 320px) {
  .billing .form__block input,
  .billing .form__block textarea,
  .billing .form__block select {
    font-size: 12px;
  }
}
@media mobile-s--landscape {
  .billing .form__block input,
  .billing .form__block textarea,
  .billing .form__block select {
    font-size: 12px;
  }
}
.billing .form__block--cif, .billing .form__block--cp {
  grid-column: 2/3;
}
.billing .form__block--address {
  grid-column: 1/3;
}
.billing .form .zone-selector {
  grid-column: 1/3;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: var(--space-s);
}
@media desktop {
  .billing .form .zone-selector {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-device-width: 768px) and (max-device-width: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .billing .form .zone-selector {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .billing .form .zone-selector {
    grid-template-columns: 1fr 1fr;
  }
}
@media ipad--landscape {
  .billing .form .zone-selector {
    grid-column: 1/3;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .billing .form .zone-selector {
    display: block;
  }
}
@media mobile--landscape {
  .billing .form .zone-selector {
    display: block;
  }
}
@media (max-width: 320px) {
  .billing .form .zone-selector {
    display: block;
  }
}
@media mobile-s--landscape {
  .billing .form .zone-selector {
    display: block;
  }
}
.billing .form .zone-selector select {
  -webkit-appearance: none;
  border: 1px solid var(--bc-1-lighter-50);
  background-color: #f8f8f8;
  min-height: var(--space-l);
  border-radius: 0;
  font-size: 14px;
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .billing .form .zone-selector select {
    font-size: 12px;
  }
}
@media (max-width: 320px) {
  .billing .form .zone-selector select {
    font-size: 12px;
  }
}
@media mobile-s--landscape {
  .billing .form .zone-selector select {
    font-size: 12px;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .billing .form .zone-selector__country {
    grid-column: 1/3;
  }
}
@media (max-width: 320px) {
  .billing .form .zone-selector__country {
    grid-column: 1/3;
  }
}
@media mobile-s--landscape {
  .billing .form .zone-selector__country {
    grid-column: 1/3;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .billing .form .zone-selector__region--text {
    grid-column: 1/3;
  }
}
@media (max-width: 320px) {
  .billing .form .zone-selector__region--text {
    grid-column: 1/3;
  }
}
@media mobile-s--landscape {
  .billing .form .zone-selector__region--text {
    grid-column: 1/3;
  }
}

.shop-features {
  --feature-bc: var(--aux-color);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.shop-features__feature {
  display: grid;
  grid-template-columns: max-content 1fr;
  border-right: 1px solid var(--feature-bc);
  padding-right: var(--space-s);
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .shop-features__feature {
    display: grid;
    grid-template-colums: 1fr min-content;
  }
}
@media (max-width: 320px) {
  .shop-features__feature {
    display: grid;
    grid-template-colums: 1fr min-content;
  }
}
.shop-features__feature:nth-child(3) {
  border-right: none;
}
.shop-features__feature--wide {
  grid-column: span 3;
  grid-template-columns: 1fr;
  margin-top: var(--space-m);
  padding-right: 0;
  border-right: none;
}
.shop-features__feature--wide .shop-features__text {
  text-transform: none;
}
.shop-features__icon {
  align-self: center;
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .shop-features__icon {
    width: 50px;
  }
}
@media ipad--landscape {
  .shop-features__icon {
    width: 50px;
  }
}
@media tablet--landscape {
  .shop-features__icon {
    width: 50px;
  }
}
@media mobile--landscape {
  .shop-features__icon {
    grid-column: 1/2;
  }
}
@media mobile-s--landscape {
  .shop-features__icon {
    grid-column: 1/2;
  }
}
.shop-features__text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 var(--space-s);
  font-family: var(--neutra-regular);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.2em;
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .shop-features__text {
    font-size: 12px;
  }
}
@media ipad--landscape {
  .shop-features__text {
    font-size: 12px;
  }
}
@media tablet--landscape {
  .shop-features__text {
    font-size: 12px;
  }
}
@media (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .shop-features__text {
    grid-column: 1/2;
    justify-content: flex-start;
    font-size: 12px;
  }
}
@media (max-width: 320px) {
  .shop-features__text {
    grid-column: 1/2;
    justify-content: flex-start;
    font-size: 12px;
  }
}
.shop-features__text--small {
  font-family: var(--neutra-regular-italic);
  font-style: italic;
  text-transform: none;
}
.shop-features__text span {
  display: block;
  line-height: inherit;
}

.endorder {
  padding-top: calc(var(--space-xl) * 2.5);
}
.endorder__content {
  width: 100%;
  max-width: var(--content-width);
  margin: auto;
  padding: var(--space-l);
  text-align: center;
  display: grid;
}
.endorder__content h3 {
  margin-bottom: var(--space-m);
}
.endorder__content .button-end {
  margin: auto;
}
.endorder__content .button {
  justify-content: center;
  margin-top: var(--space-l);
}
.endorder__spinner {
  margin-bottom: var(--space-l);
  font-size: 40px;
}
.endorder__message {
  padding: var(--space-xl) var(--space-m);
  text-align: center;
}

:root {
  --orange-bg: #FF6C34;
  --black: #010101;
  --main-bg-5: #FFF7F5;
  --second-footer: #F0CABD;
  --grid-bg: #f2f2f2;
  --grid-bg-2: rgba(1, 1, 1, 0.02);
  --grid-bg-5: rgba(1, 1, 1, 0.05);
  --space-0: 0;
  --top-lg-height: 900px;
  --top-hd-height: 1080px;
  --vp-pad-left: 25vw;
  --page-col: 25vw;
}
:root strong {
  font-weight: 600;
}

.hover-fade {
  transform: perspective(1px) translateZ(0);
  transition-duration: 0.3s;
  transition-property: color, background-color;
}
.hover-fade:hover {
  background-color: #FF6C34;
  color: #fff;
}

/** BLOCK MENU */
header .content .nav .items {
  grid-gap: 0;
  background-color: #FF6C34;
}
header .content .nav .items .items-container {
  width: 100% !important;
  height: 100%;
  position: relative;
  display: block;
  background-image: url(../resources/headers/menu/imagen-cabecera-2x.jpg);
  -webkit-background-image: -webkit-image-set(url(../resources/headers/menu/imagen-cabecera.jpg) 1x, url(../resources/headers/menu/imagen-cabecera-2x.jpg) 2x, url(../resources/headers/menu/imagen-cabecera-3x.jpg) 3x);
  background-size: cover;
  padding: 0 !important;
}
header .content .nav .items .items-container .logo-alt {
  position: absolute;
  left: 0;
  top: 0;
  right: auto;
  bottom: auto;
  padding: 24px 0 0 24px;
  width: 105px;
  height: 105px;
}
@media (max-width: 780px,) {
  header .content .nav .items .items-container .logo-alt {
    right: 0;
    bottom: 0;
    left: auto;
    top: auto;
    padding: 24px 24px 0;
  }
}
header .content .nav .items .items-container .items-panel {
  width: 25%;
  height: 100%;
  float: left;
  text-align: center;
  position: relative;
  background-color: #FF6C34;
}
@media (max-width: 975px,) {
  header .content .nav .items .items-container .items-panel {
    width: 50%;
    height: 50%;
  }
}
@media (max-width: 780px,) {
  header .content .nav .items .items-container .items-panel {
    float: right;
  }
}
header .content .nav .items .items-container .items-panel.decorated {
  background-color: transparent;
}
header .content .nav .items .items-container .items-panel .item-container {
  margin-top: 150px;
}
@media (max-width: 975px,) {
  header .content .nav .items .items-container .items-panel .item-container {
    margin-top: 25px;
  }
}
header .content .nav .items .items-container .items-panel .item-container p {
  color: white;
  padding-bottom: 73px;
}
@media (max-width: 975px,) {
  header .content .nav .items .items-container .items-panel .item-container p {
    padding-bottom: 35px !important;
  }
}
header .content .nav .items .items-container .items-panel .item-container .menu-item {
  margin: 0 0 35px 0 !important;
}
header .content .nav .items .menu-item .main-link {
  color: #fff;
}
header .content .nav .items .menu-item .main-link:hover {
  color: var(--black);
}
header .content .menu-button {
  background-color: rgba(180, 200, 180, 0.5);
  border-radius: 50px;
  width: 65px;
  height: 65px;
}
header .content .menu-button .bars {
  width: 25px;
}
header .content .menu-button .bars .bar {
  margin: 6px 0;
  background: rgba(255, 255, 255, 0.7) !important;
}
header.active .logo {
  z-index: 1;
  display: none;
}
header.active .menu-button {
  padding-top: 4px;
  right: calc(var(--space-m) * 1.5 + 14px);
}
header.active .menu-button .bar {
  margin: 4px 0 !important;
}

/** BLOCK SLIDER & HEADER */
.header .content {
  justify-content: flex-start;
  width: 50%;
  margin: 0;
  padding: 0;
}
.header .logo {
  padding-left: var(--space-l);
}
@media only screen and (min-width: 1024px) {
  .header .logo a img {
    --logo-width: auto;
  }
}

@media (min-height: 1080px) and (min-width: 1200px) {
  .top--home {
    --top-large-height: var(--top-hd-height);
  }
}
@media (min-height: 900px) and (min-width: 1200px) {
  .top--home {
    --top-large-height: var(--top-lg-height);
  }
}
@media (orientation: portrait) {
  .top--home .top__slider {
    height: inherit;
  }
}
.top--home .top__background .image {
  height: 100%;
  width: 50%;
  z-index: 2;
  margin: initial;
}
@media (max-width: 769px) {
  .top--home .top__background .image {
    height: 50%;
    width: 100%;
  }
}
.top--home .top__foreground {
  width: 50%;
  right: 0;
  left: initial;
}
@media (max-width: 769px) {
  .top--home .top__foreground {
    width: 100%;
    height: 50%;
    min-height: 50%;
    right: initial;
    top: 50%;
  }
}
.top--home .top__foreground .top__container {
  display: flex;
  height: 100%;
  width: 100% !important;
  background-color: #FF6C34;
  color: white;
}
.top--home .top__foreground .top__container .top__content--col {
  display: flex;
  flex-direction: column;
  padding-top: 0;
  align-items: flex-start;
}
.top--home .top__foreground .top__container .top__content--col h1 {
  position: relative;
  margin-bottom: var(--space-m);
}
.top--home .top__foreground .top__container .top__content--col h1::before {
  position: absolute;
  content: "";
  top: -108px;
  left: -54px;
  background-image: url(../resources/logo/group-3.png);
  background-repeat: no-repeat;
  background-position: bottom;
  width: 108px;
  height: 108px;
}
@media (max-width: 1199px) {
  .top--home .top__foreground .top__container .top__content--col h1::before {
    background-size: 70%;
  }
}
@media (max-width: 1023px) {
  .top--home .top__foreground .top__container .top__content--col h1::before {
    background-size: 25%;
  }
}

/** BLOCK PARTS */
.main > .top {
  height: 100vh;
}
@media (min-height: 1080px) {
  .main > .top {
    height: var(--top-hd-height);
  }
}
.main > .top:not(.top--home) {
  display: grid;
  grid-template-columns: 50% 50%;
}
@media (max-width: 769px) {
  .main > .top:not(.top--home) {
    grid-template-columns: 1fr;
  }
}
.main > .top .top__slide {
  opacity: 1;
}
@media (max-width: 769px) {
  .main > .top .background .image {
    height: 50%;
  }
}
.main > .top .top__foreground {
  background-color: #FF6C34;
  color: white;
  padding-left: var(--space-l);
}
@media only screen and (min-width: 1024px) {
  .main > .top .top__foreground {
    padding-left: var(--space-xl);
  }
}
@media only screen and (min-width: 1200px) {
  .main > .top .top__foreground {
    padding-left: var(--space-xxl);
  }
}
.main > .top .top__foreground.top__foreground--absolute {
  width: 50%;
  right: 0;
  left: initial;
}
@media (max-width: 769px) {
  .main > .top .top__foreground.top__foreground--absolute {
    width: 100%;
    height: 50%;
    min-height: 50%;
    right: initial;
    top: 50%;
  }
}
.main > .top .top__foreground .top__container {
  justify-content: flex-start;
  align-items: center;
}
.main > .top .top__foreground .top__content {
  padding: 0;
  margin: initial;
}
@media (max-width: 769px) {
  .main > .top .top__foreground .top__content {
    align-items: flex-start;
    padding-left: var(--space-l);
  }
}
.main > .top .top__foreground .top__content h1 .title--decorator {
  display: block;
  height: 2px;
  width: 30px;
  margin: var(--space-m) 0;
  background-color: var(--black);
}
.main > .top .top__foreground .top__content--arrow {
  position: absolute;
  bottom: 2rem;
  margin: 0;
}
@media (max-width: 768px,) {
  .main > .top .top__foreground .top__content--arrow {
    display: none;
  }
}

.block-text__content header {
  display: flex;
  flex-direction: column-reverse;
  border-left: 1px solid #FF6C34;
  margin-bottom: var(--space-l);
}
.block-text__content h1, .block-text__content h2, .block-text__content p, .block-text__content a, .block-text__content .btn-container {
  padding-left: var(--space-s);
}
.block-text__content h1 {
  color: #FF6C34;
  margin-bottom: var(--space-s);
}
.block-text__content h2 {
  text-transform: uppercase;
  font-size: var(--small-fs);
  font-weight: 500;
}
.block-text__content p {
  margin-bottom: var(--space-xs);
}
.block-text__content .title-container {
  margin-left: -20px;
  padding-left: 20px;
  border-left: solid 2px #FF6C34;
}
@media (max-width: 480px,) {
  .block-text__content .title-container {
    margin-left: 0;
    padding-left: 20px;
  }
}
.block-text__content .links-container {
  margin-top: 20px;
}

.btn-container .btn {
  cursor: pointer;
  background-color: transparent;
  border: solid 1px #FF6C34;
  padding: 27px 30px;
  text-transform: uppercase;
}
.btn-container .btn:hover {
  background-color: #FF6C34;
}

/** BLOCK HOME */
#homewe .content {
  margin-top: var(--space-xs);
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  #homewe .content {
    margin-top: var(--space-xxl);
    padding: 0;
  }
}
@media (max-width: 1100px) {
  #homewe.block.block-text-image .content .flex-content .image__content {
    max-height: initial;
  }
}
#homewe .flex-content {
  gap: initial;
  grid-template-columns: 55% 40%;
}
@media (max-width: 769px) {
  #homewe .flex-content {
    grid-template-columns: 1fr;
  }
}
#homewe .flex-content .image {
  position: relative;
  display: inline-block;
}
#homewe .flex-content .image::after, #homewe .flex-content .image::before {
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
#homewe .flex-content .image::before {
  mix-blend-mode: multiply;
  background: linear-gradient(to bottom, #FF6C34, #FF6C34);
  z-index: 4;
}
#homewe .flex-content .image::after {
  mix-blend-mode: color;
  background: linear-gradient(to bottom, #000000, #000000);
  z-index: 3;
}
#homewe .flex-content .image img {
  z-index: 2;
  display: block;
  background-size: cover;
}
#homewe .flex-content .image {
  grid-column: 2;
  grid-row: 1;
  margin-left: -12.5%;
}
@media (max-width: 769px) {
  #homewe .flex-content .image {
    grid-column: 1;
    grid-row: 2;
    margin-left: 0;
  }
}
#homewe .flex-content .image .image__content {
  height: calc(100% - 50px);
}
#homewe .flex-content .image::after, #homewe .flex-content .image::before {
  height: calc(100% - 50px);
}
#homewe .flex-content .block-text-image__content {
  grid-column: 1;
  grid-row: 1;
  margin-top: 50px;
  background-color: rgba(255, 100, 50, 0.1);
}
@media only screen and (min-width: 1024px) {
  #homewe .flex-content .block-text-image__content {
    padding-left: var(--vp-pad-left);
  }
  #homewe .flex-content .block-text-image__content .text {
    width: 350px;
    padding: var(--space-xl) var(--space-0);
  }
  #homewe .flex-content .block-text-image__content .text {
    max-width: var(--page-col);
  }
}
@media (max-width: 1023px) {
  #homewe .flex-content .block-text-image__content .text {
    width: auto;
    padding: var(--space-l) var(--space-l);
  }
}
@media (max-width: 769px) {
  #homewe .flex-content .block-text-image__content {
    margin-top: 0px;
  }
}
@media only screen and (min-width: 1200px) {
  #homewe .flex-content .block-text__content .btn-container {
    margin-top: var(--space-xl);
  }
}

#homeservices .content {
  margin-top: var(--space-m);
  padding: 0;
}
@media only screen and (min-width: 480px) {
  #homeservices .content {
    margin-top: var(--space-xxl);
    padding: 0;
  }
}
#homeservices .content .flex-content {
  margin-bottom: var(--space-xl);
}
#homeservices .content .flex-content .text {
  padding-left: 50%;
  padding-bottom: calc(var(--space-xl) + 175px);
  margin: 0;
  background-color: transparent;
}
@media (max-width: 479px) {
  #homeservices .content .flex-content .text {
    padding-left: var(--space-xl);
    padding-bottom: 0;
  }
}
@media (max-width: 769px) {
  #homeservices .content .flex-content .multiple__item:last-child {
    margin-bottom: var(--space-xl);
  }
}
#homeservices .multiple--featured {
  background-color: rgba(10, 100, 100, 0.1);
  width: 100%;
  text-align: initial;
}
@media only screen and (min-width: 480px) {
  #homeservices .multiple--featured {
    row-gap: 175px;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media (max-width: 479px) {
  #homeservices .multiple--featured {
    width: 100%;
  }
}
@media (max-width: 769px) {
  #homeservices .multiple--featured.items--3 {
    grid-template-columns: 1fr !important;
  }
}
#homeservices .multiple--featured .multiple__item--featured {
  position: relative;
  overflow: initial;
  width: 100% !important;
}
#homeservices .multiple--featured .multiple__icon {
  margin-bottom: 0;
  position: relative;
  height: 240px;
  justify-content: center;
}
@media (max-width: 479px) {
  #homeservices .multiple--featured .multiple__icon {
    height: initial;
  }
}
#homeservices .multiple--featured .multiple__icon .multiple__icon-img {
  position: absolute;
  height: 350px;
  top: -175px;
}
@media (max-width: 479px) {
  #homeservices .multiple--featured .multiple__icon .multiple__icon-img {
    position: initial;
    top: initial;
  }
}
#homeservices .multiple--featured .multiple__content {
  padding-bottom: var(--space-xl);
  margin-top: 0;
  align-items: start;
  width: 50%;
}
@media (max-width: 479px) {
  #homeservices .multiple--featured .multiple__content {
    margin-top: var(--space-l);
    padding-bottom: 0;
    padding-right: var(--space-l);
  }
}
#homeservices .multiple--featured .headline-font, #homeservices .multiple--featured .categoria-recambios__item h3, .categoria-recambios__item #homeservices .multiple--featured h3, #homeservices .multiple--featured .filter-categories h3, .filter-categories #homeservices .multiple--featured h3, #homeservices .multiple--featured .product .top-info .product-data__categoria, .product .top-info #homeservices .multiple--featured .product-data__categoria, #homeservices .multiple--featured .productos-relacionados__titulo h2, .productos-relacionados__titulo #homeservices .multiple--featured h2, #homeservices .multiple--featured .ecommerce .user__name, .ecommerce #homeservices .multiple--featured .user__name {
  margin-bottom: var(--space-s);
  display: block;
}
#homeservices .multiple--featured .headline-font::before, #homeservices .multiple--featured .categoria-recambios__item h3::before, .categoria-recambios__item #homeservices .multiple--featured h3::before, #homeservices .multiple--featured .filter-categories h3::before, .filter-categories #homeservices .multiple--featured h3::before, #homeservices .multiple--featured .product .top-info .product-data__categoria::before, .product .top-info #homeservices .multiple--featured .product-data__categoria::before, #homeservices .multiple--featured .productos-relacionados__titulo h2::before, .productos-relacionados__titulo #homeservices .multiple--featured h2::before, #homeservices .multiple--featured .ecommerce .user__name::before, .ecommerce #homeservices .multiple--featured .user__name::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  background: transparent no-repeat 0 0;
  z-index: 2;
  right: 28px;
  top: 137.5px;
}
@media (max-width: 479px) {
  #homeservices .multiple--featured .headline-font::before, #homeservices .multiple--featured .categoria-recambios__item h3::before, .categoria-recambios__item #homeservices .multiple--featured h3::before, #homeservices .multiple--featured .filter-categories h3::before, .filter-categories #homeservices .multiple--featured h3::before, #homeservices .multiple--featured .product .top-info .product-data__categoria::before, .product .top-info #homeservices .multiple--featured .product-data__categoria::before, #homeservices .multiple--featured .productos-relacionados__titulo h2::before, .productos-relacionados__titulo #homeservices .multiple--featured h2::before, #homeservices .multiple--featured .ecommerce .user__name::before, .ecommerce #homeservices .multiple--featured .user__name::before {
    bottom: 120px;
    top: initial;
    right: var(--space-m);
  }
}
#homeservices .multiple--featured .headline-font.engineering::before, #homeservices .multiple--featured .categoria-recambios__item h3.engineering::before, .categoria-recambios__item #homeservices .multiple--featured h3.engineering::before, #homeservices .multiple--featured .filter-categories h3.engineering::before, .filter-categories #homeservices .multiple--featured h3.engineering::before, #homeservices .multiple--featured .product .top-info .engineering.product-data__categoria::before, .product .top-info #homeservices .multiple--featured .engineering.product-data__categoria::before, #homeservices .multiple--featured .productos-relacionados__titulo h2.engineering::before, .productos-relacionados__titulo #homeservices .multiple--featured h2.engineering::before, #homeservices .multiple--featured .ecommerce .engineering.user__name::before, .ecommerce #homeservices .multiple--featured .engineering.user__name::before {
  background-image: url(../resources/sections/home/group-13.svg);
}
#homeservices .multiple--featured .headline-font.manufacturing::before, #homeservices .multiple--featured .categoria-recambios__item h3.manufacturing::before, .categoria-recambios__item #homeservices .multiple--featured h3.manufacturing::before, #homeservices .multiple--featured .filter-categories h3.manufacturing::before, .filter-categories #homeservices .multiple--featured h3.manufacturing::before, #homeservices .multiple--featured .product .top-info .manufacturing.product-data__categoria::before, .product .top-info #homeservices .multiple--featured .manufacturing.product-data__categoria::before, #homeservices .multiple--featured .productos-relacionados__titulo h2.manufacturing::before, .productos-relacionados__titulo #homeservices .multiple--featured h2.manufacturing::before, #homeservices .multiple--featured .ecommerce .manufacturing.user__name::before, .ecommerce #homeservices .multiple--featured .manufacturing.user__name::before {
  background-image: url(../resources/sections/home/group-14.svg);
}
#homeservices .multiple--featured .headline-font.maintenance::before, #homeservices .multiple--featured .categoria-recambios__item h3.maintenance::before, .categoria-recambios__item #homeservices .multiple--featured h3.maintenance::before, #homeservices .multiple--featured .filter-categories h3.maintenance::before, .filter-categories #homeservices .multiple--featured h3.maintenance::before, #homeservices .multiple--featured .product .top-info .maintenance.product-data__categoria::before, .product .top-info #homeservices .multiple--featured .maintenance.product-data__categoria::before, #homeservices .multiple--featured .productos-relacionados__titulo h2.maintenance::before, .productos-relacionados__titulo #homeservices .multiple--featured h2.maintenance::before, #homeservices .multiple--featured .ecommerce .maintenance.user__name::before, .ecommerce #homeservices .multiple--featured .maintenance.user__name::before {
  background-image: url(../resources/sections/home/group-15.svg);
}
#homeservices .multiple--featured .body-font, #homeservices .multiple--featured body, #homeservices .multiple--featured .form .form-block label, .form .form-block #homeservices .multiple--featured label, #homeservices .multiple--featured .form .form-block input[type=text], .form .form-block #homeservices .multiple--featured input[type=text],
#homeservices .multiple--featured .form .form-block input[type=textarea],
.form .form-block #homeservices .multiple--featured input[type=textarea],
#homeservices .multiple--featured .form .form-block input[type=email],
.form .form-block #homeservices .multiple--featured input[type=email],
#homeservices .multiple--featured .form .form-block input[type=tel],
.form .form-block #homeservices .multiple--featured input[type=tel],
#homeservices .multiple--featured .form .form-block input[type=number],
.form .form-block #homeservices .multiple--featured input[type=number],
#homeservices .multiple--featured .form .form-block input[type=date],
.form .form-block #homeservices .multiple--featured input[type=date],
#homeservices .multiple--featured .form .form-block input[type=password],
.form .form-block #homeservices .multiple--featured input[type=password],
#homeservices .multiple--featured .form .form-block textarea,
.form .form-block #homeservices .multiple--featured textarea,
#homeservices .multiple--featured .form .form-block select,
.form .form-block #homeservices .multiple--featured select, #homeservices .multiple--featured .langs a, .langs #homeservices .multiple--featured a,
#homeservices .multiple--featured .langs span,
.langs #homeservices .multiple--featured span, #homeservices .multiple--featured .article__socials .date p, .article__socials .date #homeservices .multiple--featured p, #homeservices .multiple--featured .articles-related .content .articles-wrapper article .article-text p, .articles-related .content .articles-wrapper article .article-text #homeservices .multiple--featured p {
  color: #FF6C34;
}
@media only screen and (min-width: 480px) {
  #homeservices .multiple--featured .body-font, #homeservices .multiple--featured body, #homeservices .multiple--featured .form .form-block label, .form .form-block #homeservices .multiple--featured label, #homeservices .multiple--featured .form .form-block input[type=text], .form .form-block #homeservices .multiple--featured input[type=text],
  #homeservices .multiple--featured .form .form-block input[type=textarea],
  .form .form-block #homeservices .multiple--featured input[type=textarea],
  #homeservices .multiple--featured .form .form-block input[type=email],
  .form .form-block #homeservices .multiple--featured input[type=email],
  #homeservices .multiple--featured .form .form-block input[type=tel],
  .form .form-block #homeservices .multiple--featured input[type=tel],
  #homeservices .multiple--featured .form .form-block input[type=number],
  .form .form-block #homeservices .multiple--featured input[type=number],
  #homeservices .multiple--featured .form .form-block input[type=date],
  .form .form-block #homeservices .multiple--featured input[type=date],
  #homeservices .multiple--featured .form .form-block input[type=password],
  .form .form-block #homeservices .multiple--featured input[type=password],
  #homeservices .multiple--featured .form .form-block textarea,
  .form .form-block #homeservices .multiple--featured textarea,
  #homeservices .multiple--featured .form .form-block select,
  .form .form-block #homeservices .multiple--featured select, #homeservices .multiple--featured .langs a, .langs #homeservices .multiple--featured a,
  #homeservices .multiple--featured .langs span,
  .langs #homeservices .multiple--featured span, #homeservices .multiple--featured .article__socials .date p, .article__socials .date #homeservices .multiple--featured p, #homeservices .multiple--featured .articles-related .content .articles-wrapper article .article-text p, .articles-related .content .articles-wrapper article .article-text #homeservices .multiple--featured p {
    min-height: 200px;
  }
}
@media only screen and (min-width: 480px) {
  #homeservices .multiple--featured .btn-container {
    position: absolute;
    bottom: var(--space-l);
  }
}
#homeservices .multiple--featured .btn-container .btn {
  width: 24px;
  height: 24px;
  background-image: url(../resources/assets/icons/right.svg);
  background-size: auto;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
  background-position: 50%;
}
#homeservices .multiple--featured .btn-container:hover {
  background-color: #FF6C34;
}

#homeexperiences .content {
  margin-top: var(--space-l);
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  #homeexperiences .content {
    margin-top: var(--space-xxl);
    padding: 0;
  }
}
@media only screen and (min-width: 768px) {
  #homeexperiences .content {
    margin-top: var(--space-xl);
    padding: 0;
  }
}
#homeexperiences .flex-content {
  gap: initial;
  grid-template-columns: 40% 50%;
  justify-content: end;
}
#homeexperiences .flex-content .image {
  grid-column: 1;
  grid-row: 1;
  width: initial;
  height: initial;
}
@media only screen and (min-width: 1024px) {
  #homeexperiences .flex-content .image {
    margin-top: 15%;
  }
}
#homeexperiences .flex-content .block-text-image__content {
  grid-column: 2;
  grid-row: 1;
  background-color: #FF6C34;
  color: white;
  position: relative;
  margin-left: -20%;
  margin-bottom: 10%;
}
#homeexperiences .flex-content .block-text-image__content .text {
  margin-bottom: 20%;
}
#homeexperiences .flex-content .block-text-image__content .tagline {
  position: relative;
  margin-left: calc(25% + 80px);
}
#homeexperiences .flex-content .block-text-image__content .tagline::after {
  content: "";
  position: absolute;
  left: -80px;
  top: -80px;
  width: 121px;
  height: 132px;
  background-image: url(../resources/assets/icons/quote.png);
  background-size: cover;
}
@media (max-width: 975px, ) {
  #homeexperiences .flex-content .block-text-image__content .text::before {
    top: 75px;
  }
  #homeexperiences .flex-content .block-text-image__content .display-l {
    font-size: var(--display-m-fs);
    line-height: var(--display-m-lh);
  }
}
@media (max-width: 768px, ) {
  #homeexperiences .flex-content .block-text-image__content .text::before {
    top: 3px;
    left: 35px;
    width: 75px;
    height: 85px;
  }
  #homeexperiences .flex-content .block-text-image__content .display-l {
    font-size: var(--display-s-fs);
    line-height: var(--display-s-lh);
  }
}
@media (max-width: 640px, ) {
  #homeexperiences .flex-content .block-text-image__content .text::before {
    top: 25px;
  }
  #homeexperiences .flex-content .block-text-image__content .display-l {
    font-size: var(--display-m-fs);
    line-height: var(--display-m-lh);
    padding: 80px 0;
  }
}
@media (max-width: 640px, ) {
  #homeexperiences .flex-content {
    grid-template-columns: 1fr;
  }
  #homeexperiences .flex-content .block-text-image__content {
    grid-column: auto;
    grid-row: auto;
  }
  #homeexperiences .flex-content .image {
    grid-column: auto;
    grid-row: auto;
  }
}

@media only screen and (min-width: 1024px) {
  #quality-cert .content,
  #quality-isos .content {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xl);
    padding: 0;
  }
}
@media only screen and (min-width: 1200px) {
  #quality-cert .content,
  #quality-isos .content {
    margin-top: var(--space-xxl);
    margin-bottom: var(--space-xxl);
    padding: 0;
  }
}

@media (min-width: 1024px) and (max-width: 1070px) {
  #quality-cert .content {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-0);
    padding: 0;
  }
}
@media (max-width: 1023px) {
  #quality-cert .content {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-0);
    padding: 0;
  }
}
#quality-cert .flex-content {
  justify-items: center;
}
@media only screen and (min-width: 1024px) {
  #quality-cert .flex-content {
    padding-left: var(--vp-pad-left);
    min-height: 300px;
  }
}
@media (max-width: 1023px) {
  #quality-cert .flex-content {
    width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 479px) {
  #quality-cert .flex-content {
    width: 80%;
  }
}
@media only screen and (min-width: 1024px) {
  #quality-cert .block-text-image__content .block-text__content {
    padding-right: var(--space-l);
  }
}
#quality-cert .block__bg.bg--light {
  width: 87.7%;
  left: 12.5%;
}
@media (max-width: 769px) {
  #quality-cert .flex-content {
    width: 100% !important;
  }
}
@media (max-width: 769px) {
  #quality-cert .content {
    margin-top: 0px !important;
  }
}

@media (min-width: 1024px) and (max-width: 1070px) {
  #quality-isos .content {
    margin-top: var(--space-0);
    margin-bottom: var(--space-0);
    padding: 0;
  }
}
@media (max-width: 1023px) {
  #quality-isos .content {
    margin-top: var(--space-0);
    margin-bottom: var(--space-xl);
    padding: 0;
  }
  #quality-isos .block__bg.bg--light {
    width: 87.7%;
    left: 12.5%;
  }
}
@media (max-width: 479px) {
  #quality-isos .content {
    margin-top: var(--space-m);
    margin-bottom: var(--space-xl);
    padding: 0;
  }
}
#quality-isos .content .flex-content {
  margin-bottom: 0;
}
@media (min-width: 1024px) and (max-width: 1070px) {
  #quality-isos .content .flex-content {
    align-items: center;
  }
}
@media (min-width: 1071px) {
  #quality-isos .content .flex-content {
    min-height: 300px;
  }
}
#quality-isos .multiple--featured {
  height: 100%;
  justify-content: left;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  #quality-isos .multiple--featured {
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
@media (max-width: 1023px) {
  #quality-isos .multiple--featured {
    margin: 0 auto;
  }
}
#quality-isos .multiple--featured .multiple__icon {
  display: none;
}
#quality-isos .multiple--featured .multiple__content {
  margin-top: 0;
}

#oxicorte-process-1 .content,
#services-process-1 .content {
  margin-top: var(--space-xl);
  padding: 0;
}
@media (min-width: 1071px) {
  #oxicorte-process-1 .content,
  #services-process-1 .content {
    margin-top: var(--space-xxl);
    padding: 0;
  }
}
#oxicorte-process-1 .flex-content,
#services-process-1 .flex-content {
  justify-items: center;
}
@media only screen and (min-width: 1024px) {
  #oxicorte-process-1 .flex-content,
  #services-process-1 .flex-content {
    padding-left: var(--vp-pad-left);
    min-height: 300px;
  }
}
@media (max-width: 1023px) {
  #oxicorte-process-1 .flex-content,
  #services-process-1 .flex-content {
    width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 479px) {
  #oxicorte-process-1 .flex-content,
  #services-process-1 .flex-content {
    width: 80%;
  }
}
@media only screen and (min-width: 1024px) {
  #oxicorte-process-1 .block-text-image__content .block-text__content,
  #services-process-1 .block-text-image__content .block-text__content {
    padding-right: var(--space-l);
  }
}

#oxicorte-process-2 .content,
#services-process-2 .content {
  margin-top: var(--space-xxl);
  padding: 0;
}
@media (max-width: 1070px) {
  #oxicorte-process-2 .content,
  #services-process-2 .content {
    margin-top: var(--space-0);
    margin-bottom: var(--space-xxl);
    padding: 0;
  }
}
@media (max-width: 500px) {
  #oxicorte-process-2 .content,
  #services-process-2 .content {
    margin-top: var(--space-0);
    margin-bottom: var(--space-l);
    padding: 0;
  }
}
#oxicorte-process-2 .content,
#services-process-2 .content {
  align-items: flex-start;
}
#oxicorte-process-2 .flex-content,
#services-process-2 .flex-content {
  width: 90%;
  background-color: var(--grid-bg-5);
}
@media (max-width: 500px) {
  #oxicorte-process-2 .flex-content,
  #services-process-2 .flex-content {
    width: 100%;
  }
  #oxicorte-process-2 .flex-content .body-font, #oxicorte-process-2 .flex-content body, #oxicorte-process-2 .flex-content .form .form-block label, .form .form-block #oxicorte-process-2 .flex-content label, #oxicorte-process-2 .flex-content .form .form-block input[type=text], .form .form-block #oxicorte-process-2 .flex-content input[type=text],
  #oxicorte-process-2 .flex-content .form .form-block input[type=textarea],
  .form .form-block #oxicorte-process-2 .flex-content input[type=textarea],
  #oxicorte-process-2 .flex-content .form .form-block input[type=email],
  .form .form-block #oxicorte-process-2 .flex-content input[type=email],
  #oxicorte-process-2 .flex-content .form .form-block input[type=tel],
  .form .form-block #oxicorte-process-2 .flex-content input[type=tel],
  #oxicorte-process-2 .flex-content .form .form-block input[type=number],
  .form .form-block #oxicorte-process-2 .flex-content input[type=number],
  #oxicorte-process-2 .flex-content .form .form-block input[type=date],
  .form .form-block #oxicorte-process-2 .flex-content input[type=date],
  #oxicorte-process-2 .flex-content .form .form-block input[type=password],
  .form .form-block #oxicorte-process-2 .flex-content input[type=password],
  #oxicorte-process-2 .flex-content .form .form-block textarea,
  .form .form-block #oxicorte-process-2 .flex-content textarea,
  #oxicorte-process-2 .flex-content .form .form-block select,
  .form .form-block #oxicorte-process-2 .flex-content select, #oxicorte-process-2 .flex-content .langs a, .langs #oxicorte-process-2 .flex-content a,
  #oxicorte-process-2 .flex-content .langs span,
  .langs #oxicorte-process-2 .flex-content span, #oxicorte-process-2 .flex-content .article__socials .date p, .article__socials .date #oxicorte-process-2 .flex-content p, #oxicorte-process-2 .flex-content .articles-related .content .articles-wrapper article .article-text p, .articles-related .content .articles-wrapper article .article-text #oxicorte-process-2 .flex-content p,
  #services-process-2 .flex-content .body-font,
  #services-process-2 .flex-content body,
  #services-process-2 .flex-content .form .form-block label,
  .form .form-block #services-process-2 .flex-content label,
  #services-process-2 .flex-content .form .form-block input[type=text],
  .form .form-block #services-process-2 .flex-content input[type=text],
  #services-process-2 .flex-content .form .form-block input[type=textarea],
  .form .form-block #services-process-2 .flex-content input[type=textarea],
  #services-process-2 .flex-content .form .form-block input[type=email],
  .form .form-block #services-process-2 .flex-content input[type=email],
  #services-process-2 .flex-content .form .form-block input[type=tel],
  .form .form-block #services-process-2 .flex-content input[type=tel],
  #services-process-2 .flex-content .form .form-block input[type=number],
  .form .form-block #services-process-2 .flex-content input[type=number],
  #services-process-2 .flex-content .form .form-block input[type=date],
  .form .form-block #services-process-2 .flex-content input[type=date],
  #services-process-2 .flex-content .form .form-block input[type=password],
  .form .form-block #services-process-2 .flex-content input[type=password],
  #services-process-2 .flex-content .form .form-block textarea,
  .form .form-block #services-process-2 .flex-content textarea,
  #services-process-2 .flex-content .form .form-block select,
  .form .form-block #services-process-2 .flex-content select,
  #services-process-2 .flex-content .langs a,
  .langs #services-process-2 .flex-content a,
  #services-process-2 .flex-content .langs span,
  .langs #services-process-2 .flex-content span,
  #services-process-2 .flex-content .article__socials .date p,
  .article__socials .date #services-process-2 .flex-content p,
  #services-process-2 .flex-content .articles-related .content .articles-wrapper article .article-text p,
  .articles-related .content .articles-wrapper article .article-text #services-process-2 .flex-content p {
    line-height: 1.3em;
  }
}
#oxicorte-process-2 .flex-content .block-text-image__content,
#services-process-2 .flex-content .block-text-image__content {
  padding: var(--space-xl);
  padding-bottom: 0;
}
@media (max-width: 500px) {
  #oxicorte-process-2 .flex-content .block-text-image__content,
  #services-process-2 .flex-content .block-text-image__content {
    padding: var(--space-l);
  }
}
#oxicorte-process-2 .flex-content .block-text-image__content .content__text--grid,
#services-process-2 .flex-content .block-text-image__content .content__text--grid {
  display: grid;
  grid-template-columns: 42% 42%;
  grid-gap: 16%;
}
#oxicorte-process-2 .flex-content .block-text-image__content p em,
#services-process-2 .flex-content .block-text-image__content p em {
  opacity: 0.5;
}
#oxicorte-process-2 .flex-content .block-text-image__content p .text-decorator,
#services-process-2 .flex-content .block-text-image__content p .text-decorator {
  display: block;
  height: 2px;
  width: 20px;
  margin: var(--space-s) 0;
  background-color: var(--orange-bg);
}
#oxicorte-process-2 .flex-content::after,
#services-process-2 .flex-content::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100px;
  bottom: -100px;
  background-color: var(--grid-bg);
  z-index: 1;
}

#oxicorte-method-1 .content,
#oxicorte-method-2 .content,
#services-method-1 .content,
#services-method-2 .content {
  background-color: var(--main-bg-5);
}
#oxicorte-method-1 .flex-content,
#oxicorte-method-2 .flex-content,
#services-method-1 .flex-content,
#services-method-2 .flex-content {
  grid-template-columns: 50% 50%;
  grid-gap: 0;
}
@media only screen and (min-width: 768px) {
  #oxicorte-method-1 .flex-content,
  #oxicorte-method-2 .flex-content,
  #services-method-1 .flex-content,
  #services-method-2 .flex-content {
    justify-content: end;
  }
}
@media (max-width: 769px) {
  #oxicorte-method-1 .flex-content,
  #oxicorte-method-2 .flex-content,
  #services-method-1 .flex-content,
  #services-method-2 .flex-content {
    grid-template-columns: 1fr;
    grid-gap: initial;
  }
}
@media only screen and (min-width: 1024px) {
  #oxicorte-method-1 .flex-content .block-text-image__content .text,
  #oxicorte-method-2 .flex-content .block-text-image__content .text,
  #services-method-1 .flex-content .block-text-image__content .text,
  #services-method-2 .flex-content .block-text-image__content .text {
    width: 350px;
    padding: var(--space-xl) var(--space-0);
  }
}
@media (max-width: 1023px) {
  #oxicorte-method-1 .flex-content .block-text-image__content .text,
  #oxicorte-method-2 .flex-content .block-text-image__content .text,
  #services-method-1 .flex-content .block-text-image__content .text,
  #services-method-2 .flex-content .block-text-image__content .text {
    width: auto;
    padding: var(--space-l) var(--space-l);
  }
}
#oxicorte-method-1 .flex-content .block-text-image__content .quote,
#oxicorte-method-2 .flex-content .block-text-image__content .quote,
#services-method-1 .flex-content .block-text-image__content .quote,
#services-method-2 .flex-content .block-text-image__content .quote {
  color: var(--orange-bg);
  margin: var(--space-l) 0;
}

#oxicorte-method-1 .content,
#services-method-1 .content {
  padding: 150px 0 0;
}
@media (max-width: 500px) {
  #oxicorte-method-1 .content,
  #services-method-1 .content {
    padding: 50px 0 0;
  }
}
#oxicorte-method-1 .flex-content,
#services-method-1 .flex-content {
  grid-template-columns: 50% 45%;
  grid-gap: 5%;
}
@media only screen and (min-width: 768px) {
  #oxicorte-method-1 .flex-content,
  #services-method-1 .flex-content {
    justify-content: end;
  }
}
@media (max-width: 769px) {
  #oxicorte-method-1 .flex-content,
  #services-method-1 .flex-content {
    grid-template-columns: 1fr;
    grid-gap: initial;
  }
}

@media (max-width: 769px) {
  #oxicorte-method-2 .content,
  #services-method-2 .content {
    margin-top: var(--space-0);
    padding: 0;
  }
}
@media (max-width: 1100px) {
  #oxicorte-method-2.block.block-text-image .content .flex-content .image__content,
  #services-method-2.block.block-text-image .content .flex-content .image__content {
    max-height: initial;
  }
}
#oxicorte-method-2 .flex-content .image,
#services-method-2 .flex-content .image {
  position: relative;
  display: inline-block;
}
#oxicorte-method-2 .flex-content .image::after, #oxicorte-method-2 .flex-content .image::before,
#services-method-2 .flex-content .image::after,
#services-method-2 .flex-content .image::before {
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
#oxicorte-method-2 .flex-content .image::before,
#services-method-2 .flex-content .image::before {
  mix-blend-mode: multiply;
  background: linear-gradient(to bottom, #FF6C34, #FF6C34);
  z-index: 4;
}
#oxicorte-method-2 .flex-content .image::after,
#services-method-2 .flex-content .image::after {
  mix-blend-mode: color;
  background: linear-gradient(to bottom, #000000, #000000);
  z-index: 3;
}
#oxicorte-method-2 .flex-content .image img,
#services-method-2 .flex-content .image img {
  z-index: 2;
  display: block;
  background-size: cover;
}
#oxicorte-method-2 .flex-content .image,
#services-method-2 .flex-content .image {
  grid-column: 2;
  grid-row: 1;
}
@media (max-width: 769px) {
  #oxicorte-method-2 .flex-content .image,
  #services-method-2 .flex-content .image {
    grid-column: 1;
    grid-row: 2;
  }
}
#oxicorte-method-2 .flex-content .image .image__content, #oxicorte-method-2 .flex-content .image::after, #oxicorte-method-2 .flex-content .image::before,
#services-method-2 .flex-content .image .image__content,
#services-method-2 .flex-content .image::after,
#services-method-2 .flex-content .image::before {
  width: 90%;
}
#oxicorte-method-2 .flex-content .block-text-image__content,
#services-method-2 .flex-content .block-text-image__content {
  grid-column: 1;
  grid-row: 1;
  align-items: flex-end;
  padding-right: 15%;
}

#vallina-wedo .content {
  margin-top: var(--space-xl);
  padding: 0;
}
@media (max-width: 1100px) {
  #vallina-wedo.block.block-text-image .content .flex-content .image__content {
    max-height: initial;
  }
}
#vallina-wedo .flex-content {
  grid-template-columns: 50% 50%;
  grid-gap: 0;
}
@media only screen and (min-width: 768px) {
  #vallina-wedo .flex-content {
    justify-content: end;
  }
}
@media (max-width: 769px) {
  #vallina-wedo .flex-content {
    grid-template-columns: 1fr;
    grid-gap: initial;
  }
}
#vallina-wedo .flex-content .image {
  position: relative;
  display: inline-block;
}
#vallina-wedo .flex-content .image::after, #vallina-wedo .flex-content .image::before {
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
#vallina-wedo .flex-content .image::before {
  mix-blend-mode: multiply;
  background: linear-gradient(to bottom, #FF6C34, #FF6C34);
  z-index: 4;
}
#vallina-wedo .flex-content .image::after {
  mix-blend-mode: color;
  background: linear-gradient(to bottom, #000000, #000000);
  z-index: 3;
}
#vallina-wedo .flex-content .image img {
  z-index: 2;
  display: block;
  background-size: cover;
}
#vallina-wedo .flex-content .image {
  grid-column: 2;
  grid-row: 1;
  margin-top: 50px;
}
@media (max-width: 769px) {
  #vallina-wedo .flex-content .image {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0;
  }
}
#vallina-wedo .flex-content .block-text-image__content {
  grid-column: 1;
  grid-row: 1;
}
@media only screen and (min-width: 1024px) {
  #vallina-wedo .flex-content .block-text-image__content {
    padding-left: var(--vp-pad-left);
  }
  #vallina-wedo .flex-content .block-text-image__content .text {
    width: 350px;
    padding: var(--space-xl) var(--space-0);
  }
  #vallina-wedo .flex-content .block-text-image__content .text {
    max-width: var(--page-col);
  }
}
@media (max-width: 1023px) {
  #vallina-wedo .flex-content .block-text-image__content .text {
    width: auto;
    padding: var(--space-l) var(--space-l);
  }
}

#vallina-history .content {
  padding: var(--space-xxl) 0;
  background-color: var(--main-bg-5);
}
@media (max-width: 769px) {
  #vallina-history .content {
    padding-top: var(--space-m);
  }
}
#vallina-history .flex-content {
  grid-template-columns: 50% 50%;
  grid-gap: 0;
}
@media only screen and (min-width: 768px) {
  #vallina-history .flex-content {
    justify-content: end;
  }
}
@media (max-width: 769px) {
  #vallina-history .flex-content {
    grid-template-columns: 1fr;
    grid-gap: initial;
  }
}
@media (max-width: 769px) {
  #vallina-history .flex-content .image {
    grid-column: 1;
    grid-row: 2;
  }
}
@media only screen and (min-width: 1024px) {
  #vallina-history .flex-content .block-text-image__content {
    padding-left: var(--vp-pad-left);
  }
  #vallina-history .flex-content .block-text-image__content .text {
    width: 350px;
    padding: var(--space-xl) var(--space-0);
  }
  #vallina-history .flex-content .block-text-image__content .text {
    max-width: var(--page-col);
  }
}
@media (max-width: 1023px) {
  #vallina-history .flex-content .block-text-image__content .text {
    width: auto;
    padding: var(--space-l) var(--space-l);
  }
}
@media only screen and (min-width: 768px) {
  #vallina-history .flex-content .block-text-image__content {
    align-items: flex-start;
    padding-left: 10%;
  }
}

#vallina-values .content {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  #vallina-values .flex-content {
    padding-left: 25vw;
    padding-right: var(--space-xl);
  }
}
@media (max-width: 1023px) {
  #vallina-values .flex-content {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 769px) {
  #vallina-values .flex-content {
    width: 70%;
    margin: 0 auto;
  }
}
@media (max-width: 1023px) {
  #vallina-values .flex-content .multiple--featured {
    grid-template-columns: 1fr;
  }
}
#vallina-values .flex-content .multiple--featured .multiple__item--featured {
  width: 100%;
}
#vallina-values .flex-content .multiple--featured .multiple__item--featured .headline-font, #vallina-values .flex-content .multiple--featured .multiple__item--featured .categoria-recambios__item h3, .categoria-recambios__item #vallina-values .flex-content .multiple--featured .multiple__item--featured h3, #vallina-values .flex-content .multiple--featured .multiple__item--featured .filter-categories h3, .filter-categories #vallina-values .flex-content .multiple--featured .multiple__item--featured h3, #vallina-values .flex-content .multiple--featured .multiple__item--featured .product .top-info .product-data__categoria, .product .top-info #vallina-values .flex-content .multiple--featured .multiple__item--featured .product-data__categoria, #vallina-values .flex-content .multiple--featured .multiple__item--featured .productos-relacionados__titulo h2, .productos-relacionados__titulo #vallina-values .flex-content .multiple--featured .multiple__item--featured h2, #vallina-values .flex-content .multiple--featured .multiple__item--featured .ecommerce .user__name, .ecommerce #vallina-values .flex-content .multiple--featured .multiple__item--featured .user__name {
  margin-bottom: var(--space-s);
}
#vallina-values .flex-content .multiple--featured .multiple__item--featured .body-font, #vallina-values .flex-content .multiple--featured .multiple__item--featured body, #vallina-values .flex-content .multiple--featured .multiple__item--featured .form .form-block label, .form .form-block #vallina-values .flex-content .multiple--featured .multiple__item--featured label, #vallina-values .flex-content .multiple--featured .multiple__item--featured .form .form-block input[type=text], .form .form-block #vallina-values .flex-content .multiple--featured .multiple__item--featured input[type=text],
#vallina-values .flex-content .multiple--featured .multiple__item--featured .form .form-block input[type=textarea],
.form .form-block #vallina-values .flex-content .multiple--featured .multiple__item--featured input[type=textarea],
#vallina-values .flex-content .multiple--featured .multiple__item--featured .form .form-block input[type=email],
.form .form-block #vallina-values .flex-content .multiple--featured .multiple__item--featured input[type=email],
#vallina-values .flex-content .multiple--featured .multiple__item--featured .form .form-block input[type=tel],
.form .form-block #vallina-values .flex-content .multiple--featured .multiple__item--featured input[type=tel],
#vallina-values .flex-content .multiple--featured .multiple__item--featured .form .form-block input[type=number],
.form .form-block #vallina-values .flex-content .multiple--featured .multiple__item--featured input[type=number],
#vallina-values .flex-content .multiple--featured .multiple__item--featured .form .form-block input[type=date],
.form .form-block #vallina-values .flex-content .multiple--featured .multiple__item--featured input[type=date],
#vallina-values .flex-content .multiple--featured .multiple__item--featured .form .form-block input[type=password],
.form .form-block #vallina-values .flex-content .multiple--featured .multiple__item--featured input[type=password],
#vallina-values .flex-content .multiple--featured .multiple__item--featured .form .form-block textarea,
.form .form-block #vallina-values .flex-content .multiple--featured .multiple__item--featured textarea,
#vallina-values .flex-content .multiple--featured .multiple__item--featured .form .form-block select,
.form .form-block #vallina-values .flex-content .multiple--featured .multiple__item--featured select, #vallina-values .flex-content .multiple--featured .multiple__item--featured .langs a, .langs #vallina-values .flex-content .multiple--featured .multiple__item--featured a,
#vallina-values .flex-content .multiple--featured .multiple__item--featured .langs span,
.langs #vallina-values .flex-content .multiple--featured .multiple__item--featured span, #vallina-values .flex-content .multiple--featured .multiple__item--featured .article__socials .date p, .article__socials .date #vallina-values .flex-content .multiple--featured .multiple__item--featured p, #vallina-values .flex-content .multiple--featured .multiple__item--featured .articles-related .content .articles-wrapper article .article-text p, .articles-related .content .articles-wrapper article .article-text #vallina-values .flex-content .multiple--featured .multiple__item--featured p {
  margin-right: var(--space-xl);
}
#vallina-values .flex-content .multiple--featured .multiple__item--featured .multiple__icon::before {
  position: absolute;
  content: "1.";
  margin-left: -40px;
  color: var(--orange-bg);
  font-family: var(--body-ff);
}
#vallina-values .flex-content .multiple--featured .multiple__item--featured:nth-of-type(1) .multiple__icon::before {
  content: "1.";
}
#vallina-values .flex-content .multiple--featured .multiple__item--featured:nth-of-type(1) .multiple__icon::after {
  position: absolute;
  content: "";
  width: 0;
  height: 12px;
  margin-left: 130px;
  background-image: url(../resources/assets/nosotros/values-line.png);
}
@media only screen and (min-width: 1024px) {
  #vallina-values .flex-content .multiple--featured .multiple__item--featured:nth-of-type(1) .multiple__icon::after {
    width: 70px;
  }
}
@media only screen and (min-width: 1200px) {
  #vallina-values .flex-content .multiple--featured .multiple__item--featured:nth-of-type(1) .multiple__icon::after {
    width: 100px;
  }
}
@media only screen and (min-width: 1600px) {
  #vallina-values .flex-content .multiple--featured .multiple__item--featured:nth-of-type(1) .multiple__icon::after {
    width: 200px;
  }
}
#vallina-values .flex-content .multiple--featured .multiple__item--featured:nth-of-type(2) .multiple__icon::before {
  content: "2.";
}
#vallina-values .flex-content .multiple--featured .multiple__item--featured:nth-of-type(2) .multiple__icon::after {
  position: absolute;
  content: "";
  width: 0;
  height: 12px;
  margin-left: 130px;
  background-image: url(../resources/assets/nosotros/values-line.png);
}
@media only screen and (min-width: 1024px) {
  #vallina-values .flex-content .multiple--featured .multiple__item--featured:nth-of-type(2) .multiple__icon::after {
    width: 70px;
  }
}
@media only screen and (min-width: 1200px) {
  #vallina-values .flex-content .multiple--featured .multiple__item--featured:nth-of-type(2) .multiple__icon::after {
    width: 100px;
  }
}
@media only screen and (min-width: 1600px) {
  #vallina-values .flex-content .multiple--featured .multiple__item--featured:nth-of-type(2) .multiple__icon::after {
    width: 200px;
  }
}
#vallina-values .flex-content .multiple--featured .multiple__item--featured:nth-of-type(3) .multiple__icon::before {
  content: "3.";
}

#contact-map .content {
  padding: 0;
  margin-top: -70px;
}
#contact-map .flex-content .map-multi {
  width: 80%;
  margin: 0 auto;
}
#contact-map #map-canvas {
  filter: grayscale(100%);
}

#contact-address .content .flex-content {
  width: 75%;
}
@media only screen and (min-width: 768px) {
  #contact-address .content .flex-content {
    width: 50%;
  }
}

#contact-img .flex-content {
  grid-template-columns: 50% 50%;
  grid-gap: 0;
  justify-content: end;
}
#contact-img .flex-content .image {
  position: relative;
  display: inline-block;
}
#contact-img .flex-content .image::after, #contact-img .flex-content .image::before {
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
#contact-img .flex-content .image::before {
  mix-blend-mode: multiply;
  background: linear-gradient(to bottom, #FF6C34, #FF6C34);
  z-index: 4;
}
#contact-img .flex-content .image::after {
  mix-blend-mode: color;
  background: linear-gradient(to bottom, #000000, #000000);
  z-index: 3;
}
#contact-img .flex-content .image img {
  z-index: 2;
  display: block;
  background-size: cover;
}
#contact-img .flex-content .image {
  grid-column: 2;
  grid-row: 1;
}
#contact-img .flex-content .block-text-image__content {
  grid-column: 1;
  grid-row: 1;
}
#contact-img .flex-content .block-text-image__content .text {
  margin-left: 20%;
}
#contact-img .flex-content .block-text-image__content .text img {
  position: absolute;
  top: -250px;
}

#contact-form .flex-content {
  width: 75%;
}
@media only screen and (min-width: 1024px) {
  #contact-form .flex-content {
    width: 50%;
  }
}
#contact-form .flex-content .form-block:not(.form-block--textarea) {
  grid-column-end: span 1;
}

.linear-engineering .content {
  margin-top: var(--space-xxl);
  padding: 0;
}
@media (max-width: 1070px) {
  .linear-engineering .content {
    margin-top: var(--space-0);
    margin-bottom: var(--space-xxl);
    padding: 0;
  }
}
@media (max-width: 500px) {
  .linear-engineering .content {
    margin-top: var(--space-0);
    margin-bottom: var(--space-l);
    padding: 0;
  }
}
.linear-engineering .block-text__content header {
  width: 50%;
  margin: auto;
  margin-bottom: 50px;
  text-align: center;
  border: none;
}
.linear-engineering .multiple--accordion {
  width: 60%;
  margin: auto;
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0;
}
@media (max-width: 500px) {
  .linear-engineering .multiple--accordion {
    width: 90%;
  }
}
.linear-engineering .multiple--accordion .multiple__item--accordion {
  padding-bottom: 20px;
  flex: 0 0 50%;
}
@media (max-width: 500px) {
  .linear-engineering .multiple--accordion .multiple__item--accordion {
    flex: 0 0 100%;
  }
}
.linear-engineering .multiple--accordion .multiple__item--accordion:nth-child(even) {
  border-left: 2px solid var(--bc-1);
  padding-left: 5%;
}
@media (max-width: 500px) {
  .linear-engineering .multiple--accordion .multiple__item--accordion:nth-child(even) {
    padding-left: 0;
    border-left: none;
  }
}
.linear-engineering .multiple--accordion .multiple__item--accordion i {
  position: absolute;
  right: 15%;
  top: 15%;
  color: var(--bc-1-lighter-30);
  transition: 0.5s ease-out;
}
@media (max-width: 500px) {
  .linear-engineering .multiple--accordion .multiple__item--accordion i {
    right: 0;
  }
}
.linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title {
  position: relative;
  background-color: transparent;
  padding: 0;
  justify-content: flex-start;
  transition: all 1s ease-in-out;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}
.linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title .headline-font, .linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title .categoria-recambios__item h3, .categoria-recambios__item .linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title h3, .linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title .filter-categories h3, .filter-categories .linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title h3, .linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title .product .top-info .product-data__categoria, .product .top-info .linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title .product-data__categoria, .linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title .productos-relacionados__titulo h2, .productos-relacionados__titulo .linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title h2, .linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title .ecommerce .user__name, .ecommerce .linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title .user__name {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 500px) {
  .linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title .headline-font, .linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title .categoria-recambios__item h3, .categoria-recambios__item .linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title h3, .linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title .filter-categories h3, .filter-categories .linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title h3, .linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title .product .top-info .product-data__categoria, .product .top-info .linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title .product-data__categoria, .linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title .productos-relacionados__titulo h2, .productos-relacionados__titulo .linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title h2, .linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title .ecommerce .user__name, .ecommerce .linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title .user__name {
    width: 95%;
  }
}
.linear-engineering .multiple--accordion .multiple__item--accordion .multiple__title:after {
  position: absolute;
  transition: all 1s ease-in-out;
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(https://beta.neozink.com/cosermo/resources/sections/ingenieria/icon-arrow-right.svg);
  background-size: 30px;
  top: 0;
  right: 10%;
}
.linear-engineering .multiple--accordion .multiple__item--accordion.active i {
  transform: rotate(90deg);
}
.linear-engineering .multiple--accordion .multiple__item--accordion.active .multiple__title {
  transition: all 1s ease-in-out;
}
.linear-engineering .multiple--accordion .multiple__item--accordion.active .multiple__title:after {
  transform: rotate(90deg);
  transition: all 1s ease-in-out;
}
.linear-engineering .multiple--accordion .multiple__item--accordion.active .multiple__content {
  padding: 10px;
  width: 75%;
  visibility: visible;
  opacity: 1;
  z-index: var(--z-index--body);
  max-height: calc(var(--space-xl) * 13);
}
@media (max-width: 500px) {
  .linear-engineering .multiple--accordion .multiple__item--accordion.active .multiple__content {
    width: 95%;
  }
}

#engineer-process .content {
  margin-top: var(--space-xs);
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  #engineer-process .content {
    margin-top: var(--space-xxl);
    padding: 0;
  }
}
@media (max-width: 1100px) {
  #engineer-process.block.block-text-image .content .flex-content .image__content {
    max-height: initial;
  }
}
#engineer-process .flex-content {
  gap: initial;
  grid-template-columns: 55% 40%;
}
@media (max-width: 769px) {
  #engineer-process .flex-content {
    grid-template-columns: 1fr;
  }
}
#engineer-process .flex-content .image {
  position: relative;
  display: inline-block;
}
#engineer-process .flex-content .image::after, #engineer-process .flex-content .image::before {
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
#engineer-process .flex-content .image::before {
  mix-blend-mode: multiply;
  background: linear-gradient(to bottom, #FF6C34, #FF6C34);
  z-index: 4;
}
#engineer-process .flex-content .image::after {
  mix-blend-mode: color;
  background: linear-gradient(to bottom, #000000, #000000);
  z-index: 3;
}
#engineer-process .flex-content .image img {
  z-index: 2;
  display: block;
  background-size: cover;
}
#engineer-process .flex-content .image {
  grid-column: 2;
  grid-row: 1;
  margin-left: -12.5%;
}
@media (max-width: 769px) {
  #engineer-process .flex-content .image {
    grid-column: 1;
    grid-row: 2;
    margin-left: 0;
  }
}
#engineer-process .flex-content .image .image__content {
  height: calc(100% - 50px);
}
#engineer-process .flex-content .image::after, #engineer-process .flex-content .image::before {
  height: calc(100% - 50px);
}
#engineer-process .flex-content .block-text-image__content {
  grid-column: 1;
  grid-row: 1;
  margin-top: 50px;
  background-color: rgba(255, 100, 50, 0.1);
}
@media only screen and (min-width: 1024px) {
  #engineer-process .flex-content .block-text-image__content {
    padding-left: var(--vp-pad-left);
  }
  #engineer-process .flex-content .block-text-image__content .text {
    width: 350px;
    padding: var(--space-xl) var(--space-0);
  }
  #engineer-process .flex-content .block-text-image__content .text {
    max-width: var(--page-col);
  }
}
@media (max-width: 1023px) {
  #engineer-process .flex-content .block-text-image__content .text {
    width: auto;
    padding: var(--space-l) var(--space-l);
  }
}
@media (max-width: 500px) {
  #engineer-process .flex-content .block-text-image__content {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1200px) {
  #engineer-process .flex-content .block-text__content .btn-container {
    margin-top: var(--space-xl);
  }
}

#engineer-business .text-decorator {
  display: block;
  height: 2px;
  width: 20px;
  margin: var(--space-s) 0;
  background-color: var(--orange-bg);
}

#engineer-mosaic {
  margin: 20px 0px;
}
#engineer-mosaic .block-text {
  width: 100%;
  margin-right: auto;
  padding: 20px 0;
  position: relative;
}
#engineer-mosaic .block-text:before {
  position: absolute;
  content: "";
  width: 66%;
  height: 320px;
  background-color: #F2F2F2;
  z-index: 1;
}
#engineer-mosaic .block-text .text {
  padding-top: 30px;
  width: 25%;
  margin-left: 25%;
  position: relative;
  z-index: 2;
}
@media (max-width: 500px) {
  #engineer-mosaic .block-text .text {
    width: 40%;
    margin-left: 13%;
  }
}
#engineer-mosaic .carrousel {
  max-width: 100%;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
}
#engineer-mosaic .carrousel .viewport .item {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 500px) {
  #engineer-mosaic .carrousel .viewport .item {
    grid-template-columns: 1fr 1fr;
  }
}
#engineer-mosaic .carrousel .viewport .item .image {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  position: relative;
}
#engineer-mosaic .carrousel .viewport .item .image:hover .hover-description {
  transform: translateY(0%);
}
#engineer-mosaic .carrousel .viewport .item .image .hover-description {
  position: absolute;
  top: 0;
  height: 100%;
  background-color: rgba(255, 108, 55, 0.3);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: var(--space-m);
  transform: translateY(100%);
  transition: 0.5s ease-in-out;
}
#engineer-mosaic .carrousel .viewport .item .image .hover-description .title {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 500px) {
  #engineer-mosaic .carrousel .viewport .item .image .hover-description .title {
    font-size: 20px;
    line-height: 1em;
  }
}
#engineer-mosaic .carrousel .viewport .item .image .subtitle {
  font-size: 20px;
  line-height: 1.75;
  padding-left: var(--space-l);
  padding-right: var(--space-l);
}
@media (max-width: 500px) {
  #engineer-mosaic .carrousel .viewport .item .image .subtitle {
    line-height: 1.1;
    padding-left: 0;
    padding-right: 0;
  }
}
#engineer-mosaic .carrousel .viewport .item .image img {
  width: 100%;
  filter: none;
}

#engineer-sectors {
  margin: 50px 0;
}
#engineer-sectors .block-text__content {
  width: 35%;
}
#engineer-sectors .block-text-image__content {
  padding-top: 0 !important;
  padding-left: var(--space-xl);
}
@media (max-width: 500px) {
  #engineer-sectors .block-text-image__content {
    padding-left: var(--space-l);
  }
}

#engineer-sectors-multiple {
  margin: 50px 0;
  /* HOVER */
}
@media (max-width: 500px) {
  #engineer-sectors-multiple {
    margin: 0px 0;
  }
}
#engineer-sectors-multiple .multiple--featured {
  display: grid;
  position: relative;
  align-self: self-end;
}
#engineer-sectors-multiple .multiple__item {
  grid-column: auto;
  justify-self: start;
  width: 200px;
  height: 200px;
  border: 2px solid #FF6C34;
  border-radius: 50%;
  overflow: visible;
  position: relative;
}
#engineer-sectors-multiple .multiple__item:nth-child(odd) {
  justify-self: end;
}
#engineer-sectors-multiple .multiple__item .multiple__icon {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 0;
  left: 0;
}
#engineer-sectors-multiple .multiple__item .multiple__content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  text-align: center;
}
#engineer-sectors-multiple .multiple__item .multiple__content p {
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.4em;
}
#engineer-sectors-multiple .multiple__content .alternate {
  position: absolute;
  background-color: #FFE9E1;
  width: 0%;
  height: 0%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}
#engineer-sectors-multiple .multiple__content .alternate p {
  color: var(--bc-1);
  font-size: 1em !important;
  font-weight: normal !important;
  font-style: italic;
}
#engineer-sectors-multiple .multiple__icon {
  z-index: 2;
}
#engineer-sectors-multiple .multiple__item--featured:hover .alternate {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}

.piping-metal__multiple .flex-content {
  justify-content: center;
  align-items: center;
}
.piping-metal__multiple .flex-content .multiple--featured-link {
  width: 50%;
}
.piping-metal__multiple .flex-content .multiple--featured-link .multiple__item {
  text-decoration: none !important;
  color: black;
}
.piping-metal__multiple .flex-content .multiple--featured-link .multiple__item:nth-child(1) .multiple__content {
  border: none;
  cursor: unset;
}
.piping-metal__multiple .flex-content .multiple--featured-link .multiple__item:nth-child(1) .multiple__content:before {
  content: none;
}
.piping-metal__multiple .flex-content .multiple--featured-link .multiple__item:nth-child(1) .multiple__content:hover p {
  color: black !important;
}
.piping-metal__multiple .flex-content .multiple--featured-link .multiple__item:nth-child(1) .multiple__content .standard {
  padding: 0;
}
.piping-metal__multiple .flex-content .multiple--featured-link .multiple__item:nth-child(1) .multiple__content .standard p {
  font-size: 1.3em;
  line-height: 1.4em;
}
.piping-metal__multiple .flex-content .multiple--featured-link .multiple__item .multiple__icon {
  display: none;
}
.piping-metal__multiple .flex-content .multiple--featured-link .multiple__item .multiple__content {
  border: 2px solid #FF6C34;
  width: 200px;
  height: 120px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.piping-metal__multiple .flex-content .multiple--featured-link .multiple__item .multiple__content p {
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
.piping-metal__multiple .flex-content .multiple--featured-link .multiple__item .multiple__content:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--bc-1);
  top: 0;
  left: 0;
  z-index: 1;
  transform: translate(-100%);
  transition: all 0.5s ease-in-out;
}
.piping-metal__multiple .flex-content .multiple--featured-link .multiple__item .multiple__content:hover:before {
  opacity: 1;
  transform: translate(0);
  transition: all 0.5s ease-in-out;
}
.piping-metal__multiple .flex-content .multiple--featured-link .multiple__item .multiple__content:hover p {
  color: white !important;
  transition: all 0.3s ease-in-out;
}
.piping-metal__multiple .flex-content .multiple--featured-link .multiple__item .multiple__content .standard {
  padding: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.piping-metal__multiple .flex-content .multiple--featured-link .multiple__item .multiple__content .standard p {
  line-height: 1em;
  text-align: left;
}
.piping-metal__multiple .flex-content .multiple--featured-link .multiple__item .multiple__content .standard p:nth-child(1) {
  font-weight: bold;
}
.piping-metal__multiple .flex-content .multiple--featured-link .multiple__item .multiple__content .standard p:nth-child(2) {
  font-weight: bold;
  color: #FF6C34;
}

#quality-isos {
  width: 80% !important;
  grid-column-gap: 10px !important;
}
@media (max-width: 769px) {
  #quality-isos {
    width: 100% !important;
    padding: 10%;
    padding-top: 0%;
  }
}

/** BLOCK FOOTER */
footer {
  background-color: white !important;
  padding: 0 !important;
}
footer .content {
  display: flex;
  max-width: none !important;
}
@media (max-width: 975px, ) {
  footer .content {
    display: block;
  }
}
footer .content .content-item {
  padding: var(--space-l);
  width: 25%;
  position: relative;
}
@media (max-width: 975px, ) {
  footer .content .content-item {
    width: 50%;
    float: left;
    min-height: 400px;
  }
}
@media (max-width: 670px, ) {
  footer .content .content-item {
    width: 100%;
    padding: 16px;
    min-height: 200px;
  }
}
footer .content .content-item.footer__block--corp {
  background-color: #FF6C34;
  position: relative;
}
@media (max-width: 500px) {
  footer .content .content-item.footer__block--corp .external-links {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
}
footer .content .content-item.footer__block--corp .external-links li {
  padding: 28px 0;
}
footer .content .content-item.footer__block--corp .external-links li a {
  color: white;
  opacity: 0.5;
  text-transform: lowercase;
}
footer .content .content-item.footer__block--corp .external-links li a:hover, footer .content .content-item.footer__block--corp .external-links li a.active {
  color: var(--bc-0);
  opacity: 1;
  text-decoration: none;
}
footer .content .content-item.footer__block--corp .external-links li a:hover span, footer .content .content-item.footer__block--corp .external-links li a.active span {
  font-weight: 600;
}
footer .content .content-item.footer__block--corp .external-links li a::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 51px;
  height: 50px;
  background-image: url(../resources/logo/footer-logo.png);
  -o-object-fit: contain;
     object-fit: contain;
}
footer .content .content-item.footer__block--corp .external-links li a span {
  margin-left: 50px;
  position: relative;
  top: 18px;
}
footer .content .content-item.footer__block--corp .legal-links {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-flex;
  width: 100%;
  text-align: center;
}
footer .content .content-item.footer__block--corp .legal-links li {
  margin: 0 auto;
}
footer .content .content-item.footer__block--corp .legal-links li a {
  color: var(--bc-0);
}
footer .content .content-item.footer__block--address {
  display: flex;
  align-items: center;
  padding-left: var(--space-xl);
  background-color: var(--second-footer);
}
@media (max-width: 500px) {
  footer .content .content-item.footer__block--address {
    padding-left: 0px;
  }
}
@media (max-width: 670px, ) {
  footer .content .content-item.footer__block--address .footer__address {
    margin: 0 auto;
  }
}
@media (max-width: 500px) {
  footer .content .content-item.footer__block--address .footer__address {
    margin: 0;
    width: 100%;
    padding-left: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
footer .content .content-item.footer__block--address .footer__address .interline-footer {
  width: 29px;
  height: 2px;
  margin: 23px 28px 27px 0;
  border: solid 2px #ff6c37;
  background-color: #ff6c37;
}
@media (max-width: 500px) {
  footer .content .content-item.footer__block--address .footer__address .interline-footer {
    display: none;
  }
}
footer .content .content-item.footer__block--address .footer__address .title {
  color: #FF6C34;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 15px;
}
@media (max-width: 670px, ) {
  footer .content .content-item.footer__block--address .footer__address .title {
    padding-bottom: 20px;
  }
}
@media (max-width: 500px) {
  footer .content .content-item.footer__block--address .footer__address .title {
    grid-column: 1/3;
    text-align: center;
  }
}
footer .content .content-item.footer__block--address .footer__address .subtitle {
  padding-bottom: 10px;
}
footer .content .content-item.footer__block--circles {
  padding: 0;
}
footer .content .content-item.footer__block--circles .image {
  width: 100%;
  height: 100%;
  background-blend-mode: multiply, color;
  background-image: linear-gradient(to bottom, #FF6C34, #FF6C34), linear-gradient(to bottom, #000000, #000000), url(../resources/footers/image.png);
  -webkit-background-image: linear-gradient(to bottom, #FF6C34, #FF6C34), linear-gradient(to bottom, #000000, #000000), -webkit-image-set(url(../resources/footers/image.png));
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 975px, ) {
  footer .content .content-item.footer__block--circles {
    height: 200px;
  }
}
@media (max-width: 500px) {
  footer .content .content-item.footer__block--circles {
    display: none;
  }
}
footer .content .content-item.footer__block--links {
  display: flex;
  align-items: center;
  padding-left: var(--space-xl);
  background-color: var(--second-footer);
}
@media (max-width: 500px) {
  footer .content .content-item.footer__block--links {
    background-color: #FF6C34;
    padding-left: 16px;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 500px) {
  footer .content .content-item.footer__block--links .internal-links {
    display: grid;
    -moz-column-gap: 20px;
         column-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
}
footer .content .content-item.footer__block--links .internal-links li {
  padding: var(--space-m) 0;
}
footer .content .content-item.footer__block--links .internal-links li:last-child() {
  grid-column: 1/3;
  text-align: center;
}
@media (max-width: 670px, ) {
  footer .content .content-item.footer__block--links .internal-links li {
    padding: 14px 0;
  }
}
@media (max-width: 500px) {
  footer .content .content-item.footer__block--links .internal-links li {
    text-align: center;
  }
}
footer .content .content-item.footer__block--links .internal-links li a {
  color: #FF6C34;
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 500px) {
  footer .content .content-item.footer__block--links .internal-links li a {
    color: white;
  }
}
footer .content .content-item.footer__block--links .internal-links li a:hover {
  text-decoration: none;
  color: black;
  background-color: transparent;
}
footer .content .content-item.footer__block--links .social-links {
  position: absolute;
  bottom: 0;
  display: inline-flex;
  width: 100%;
  padding-left: var(--space-xs);
}
@media (max-width: 500px) {
  footer .content .content-item.footer__block--links .social-links {
    justify-content: center;
  }
}
footer .content .content-item.footer__block--links .social-links li {
  margin-right: 42px;
}
footer .content .content-item.footer__block--links .social-links li:last-of-type {
  margin-right: 0;
}
footer .content .content-item.footer__block--links .social-links li a {
  color: var(--bc-0);
}
footer .content .content-item.footer__block--links .social-links li a:hover {
  text-decoration: none;
}
footer .content .content-item .text-upper {
  text-transform: uppercase;
}
@media (max-width: 500px) {
  footer .content .content-item .text-upper {
    text-align: center;
  }
}

.page-lines {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  height: 100%;
}
@media (max-width: 1400px,) {
  .page-lines {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
  }
}
@media (max-width: 850px, ) {
  .page-lines {
    display: flex;
  }
}
.page-lines__line {
  margin-left: auto;
  transform: translateX(1px);
  height: 0%;
  width: 1px;
  opacity: 0.2;
  background-color: var(--bc-1);
  animation: lines 3s ease-out forwards 0s;
}
@keyframes lines {
  from {
    height: 0%;
  }
  to {
    height: 100%;
  }
}
@media (max-width: 850px, ) {
  .page-lines__line:not(:first-of-type):not(:nth-of-type(2)) {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */