@charset "UTF-8";
/* ---------------------------------- */
/* ----------- BASE CONFIG ---------- */
/* ---------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,300i,400,400i,500,500i,600,600i,700,700i&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;
  touch-action: pan-x pan-y;
}

ol,
ul,
li {
  list-style-type: disc;
}

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;
}
@media (max-width:900px) {
  :root {
    --space-m: 10px;
  }
}

.ft--transparent {
  color: transparent;
}

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

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

:root {
  --transparent: transparent;
  --white: #fff;
  --transparent: rgba(0, 0, 0, 0);
  --bc-2: #c58124;
  --bc-2-lighter-40: #f19f19;
  --bc-2-darker-40: #ae7424;
  --bc-2-transparent: rgba(241, 159, 25, 0.4);
  --bc-1: #3f2b23;
  --bc-1-lighter-40: #896252;
  --bc-1-transparent: rgba(174, 116, 36, 0.2);
  --bc-1-lighter-75: #f0eae8;
  --black: #282828;
  --gray: rgb(202, 202, 202);
  --green: #6aca9c;
  --yellow: #f1cd67;
  --blue: #4979ef;
  --blue-lighter: #43c0d9;
  --orange: #ec7f43;
  --purple: #946aca;
  --red: #e37979;
  --green-pistachio: #bed152;
  --bc-1-lighter-80: #f0eae8;
}

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

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

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

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

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

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

.bg--white {
  --bg-color: #fff;
}

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

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

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

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

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

.bg--transparent {
  --bg-color: rgba(0, 0, 0, 0);
}

.ft--transparent {
  --ft-color: rgba(0, 0, 0, 0);
}

.bc--transparent {
  --bc-color: rgba(0, 0, 0, 0);
}

.bg--hov-transparent:hover {
  --bg-color: rgba(0, 0, 0, 0);
}

.ft--hov-transparent:hover {
  --ft-color: rgba(0, 0, 0, 0);
}

.bc--hov-transparent:hover {
  --bc-color: rgba(0, 0, 0, 0);
}

.bg--bc-2 {
  --bg-color: #c58124;
}

.ft--bc-2 {
  --ft-color: #c58124;
}

.bc--bc-2 {
  --bc-color: #c58124;
}

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

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

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

.bg--bc-2-lighter-40 {
  --bg-color: #f19f19;
}

.ft--bc-2-lighter-40 {
  --ft-color: #f19f19;
}

.bc--bc-2-lighter-40 {
  --bc-color: #f19f19;
}

.bg--hov-bc-2-lighter-40:hover {
  --bg-color: #f19f19;
}

.ft--hov-bc-2-lighter-40:hover {
  --ft-color: #f19f19;
}

.bc--hov-bc-2-lighter-40:hover {
  --bc-color: #f19f19;
}

.bg--bc-2-darker-40 {
  --bg-color: #ae7424;
}

.ft--bc-2-darker-40 {
  --ft-color: #ae7424;
}

.bc--bc-2-darker-40 {
  --bc-color: #ae7424;
}

.bg--hov-bc-2-darker-40:hover {
  --bg-color: #ae7424;
}

.ft--hov-bc-2-darker-40:hover {
  --ft-color: #ae7424;
}

.bc--hov-bc-2-darker-40:hover {
  --bc-color: #ae7424;
}

.bg--bc-2-transparent {
  --bg-color: rgba(241, 159, 25, 0.4);
}

.ft--bc-2-transparent {
  --ft-color: rgba(241, 159, 25, 0.4);
}

.bc--bc-2-transparent {
  --bc-color: rgba(241, 159, 25, 0.4);
}

.bg--hov-bc-2-transparent:hover {
  --bg-color: rgba(241, 159, 25, 0.4);
}

.ft--hov-bc-2-transparent:hover {
  --ft-color: rgba(241, 159, 25, 0.4);
}

.bc--hov-bc-2-transparent:hover {
  --bc-color: rgba(241, 159, 25, 0.4);
}

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

.ft--bc-1 {
  --ft-color: #3f2b23;
}

.bc--bc-1 {
  --bc-color: #3f2b23;
}

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

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

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

.bg--bc-1-lighter-40 {
  --bg-color: #896252;
}

.ft--bc-1-lighter-40 {
  --ft-color: #896252;
}

.bc--bc-1-lighter-40 {
  --bc-color: #896252;
}

.bg--hov-bc-1-lighter-40:hover {
  --bg-color: #896252;
}

.ft--hov-bc-1-lighter-40:hover {
  --ft-color: #896252;
}

.bc--hov-bc-1-lighter-40:hover {
  --bc-color: #896252;
}

.bg--bc-1-transparent {
  --bg-color: rgba(174, 116, 36, 0.2);
}

.ft--bc-1-transparent {
  --ft-color: rgba(174, 116, 36, 0.2);
}

.bc--bc-1-transparent {
  --bc-color: rgba(174, 116, 36, 0.2);
}

.bg--hov-bc-1-transparent:hover {
  --bg-color: rgba(174, 116, 36, 0.2);
}

.ft--hov-bc-1-transparent:hover {
  --ft-color: rgba(174, 116, 36, 0.2);
}

.bc--hov-bc-1-transparent:hover {
  --bc-color: rgba(174, 116, 36, 0.2);
}

.bg--bc-1-lighter-75 {
  --bg-color: #f0eae8;
}

.ft--bc-1-lighter-75 {
  --ft-color: #f0eae8;
}

.bc--bc-1-lighter-75 {
  --bc-color: #f0eae8;
}

.bg--hov-bc-1-lighter-75:hover {
  --bg-color: #f0eae8;
}

.ft--hov-bc-1-lighter-75:hover {
  --ft-color: #f0eae8;
}

.bc--hov-bc-1-lighter-75:hover {
  --bc-color: #f0eae8;
}

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

.ft--black {
  --ft-color: #282828;
}

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

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

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

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

.bg--gray {
  --bg-color: rgb(202, 202, 202);
}

.ft--gray {
  --ft-color: rgb(202, 202, 202);
}

.bc--gray {
  --bc-color: rgb(202, 202, 202);
}

.bg--hov-gray:hover {
  --bg-color: rgb(202, 202, 202);
}

.ft--hov-gray:hover {
  --ft-color: rgb(202, 202, 202);
}

.bc--hov-gray:hover {
  --bc-color: rgb(202, 202, 202);
}

.bg--green {
  --bg-color: #6aca9c;
}

.ft--green {
  --ft-color: #6aca9c;
}

.bc--green {
  --bc-color: #6aca9c;
}

.bg--hov-green:hover {
  --bg-color: #6aca9c;
}

.ft--hov-green:hover {
  --ft-color: #6aca9c;
}

.bc--hov-green:hover {
  --bc-color: #6aca9c;
}

.bg--yellow {
  --bg-color: #f1cd67;
}

.ft--yellow {
  --ft-color: #f1cd67;
}

.bc--yellow {
  --bc-color: #f1cd67;
}

.bg--hov-yellow:hover {
  --bg-color: #f1cd67;
}

.ft--hov-yellow:hover {
  --ft-color: #f1cd67;
}

.bc--hov-yellow:hover {
  --bc-color: #f1cd67;
}

.bg--blue {
  --bg-color: #4979ef;
}

.ft--blue {
  --ft-color: #4979ef;
}

.bc--blue {
  --bc-color: #4979ef;
}

.bg--hov-blue:hover {
  --bg-color: #4979ef;
}

.ft--hov-blue:hover {
  --ft-color: #4979ef;
}

.bc--hov-blue:hover {
  --bc-color: #4979ef;
}

.bg--blue-lighter {
  --bg-color: #43c0d9;
}

.ft--blue-lighter {
  --ft-color: #43c0d9;
}

.bc--blue-lighter {
  --bc-color: #43c0d9;
}

.bg--hov-blue-lighter:hover {
  --bg-color: #43c0d9;
}

.ft--hov-blue-lighter:hover {
  --ft-color: #43c0d9;
}

.bc--hov-blue-lighter:hover {
  --bc-color: #43c0d9;
}

.bg--orange {
  --bg-color: #ec7f43;
}

.ft--orange {
  --ft-color: #ec7f43;
}

.bc--orange {
  --bc-color: #ec7f43;
}

.bg--hov-orange:hover {
  --bg-color: #ec7f43;
}

.ft--hov-orange:hover {
  --ft-color: #ec7f43;
}

.bc--hov-orange:hover {
  --bc-color: #ec7f43;
}

.bg--purple {
  --bg-color: #946aca;
}

.ft--purple {
  --ft-color: #946aca;
}

.bc--purple {
  --bc-color: #946aca;
}

.bg--hov-purple:hover {
  --bg-color: #946aca;
}

.ft--hov-purple:hover {
  --ft-color: #946aca;
}

.bc--hov-purple:hover {
  --bc-color: #946aca;
}

.bg--red {
  --bg-color: #e37979;
}

.ft--red {
  --ft-color: #e37979;
}

.bc--red {
  --bc-color: #e37979;
}

.bg--hov-red:hover {
  --bg-color: #e37979;
}

.ft--hov-red:hover {
  --ft-color: #e37979;
}

.bc--hov-red:hover {
  --bc-color: #e37979;
}

.bg--green-pistachio {
  --bg-color: #bed152;
}

.ft--green-pistachio {
  --ft-color: #bed152;
}

.bc--green-pistachio {
  --bc-color: #bed152;
}

.bg--hov-green-pistachio:hover {
  --bg-color: #bed152;
}

.ft--hov-green-pistachio:hover {
  --ft-color: #bed152;
}

.bc--hov-green-pistachio:hover {
  --bc-color: #bed152;
}

.bg--bc-1-lighter-80 {
  --bg-color: #f0eae8;
}

.ft--bc-1-lighter-80 {
  --ft-color: #f0eae8;
}

.bc--bc-1-lighter-80 {
  --bc-color: #f0eae8;
}

.bg--hov-bc-1-lighter-80:hover {
  --bg-color: #f0eae8;
}

.ft--hov-bc-1-lighter-80:hover {
  --ft-color: #f0eae8;
}

.bc--hov-bc-1-lighter-80:hover {
  --bc-color: #f0eae8;
}

:root {
  --content-max-width: 1700px;
  --content-medium-width: 1400px;
  --content-min-width: 600px;
  --top-large-height: 700px;
  --top-medium-height: 550px;
  --top-small-height: 400px;
  --top-very-small-height: 300px;
  --header-height: 64px;
  --logo-width: 107px;
  --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;
}

@media (max-width: 1250px) {
  :root {
    --logo-width: 80px;
  }
}
@media (max-width: 900px) {
  :root {
    --content-max-width: 100%;
    --header-height: 64px;
    --menu-width: 100%;
    --top-large-height: 600px;
    --top-medium-height: 450px;
    --top-small-height: 400px;
  }
}
@media (max-width: 768px) {
  :root {
    --content-medium-width: 100%;
    --top-large-height: 540px;
    --top-medium-height: 390px;
    --top-small-height: 350px;
  }
}
@media (max-width: 600px) {
  :root {
    --top-very-small-height: 200px;
  }
}
@media (max-width: 480px) {
  :root {
    --content-min-width: 100%;
    --top-large-height: 400px;
    --top-medium-height: 370px;
    --top-small-height: 350px;
    --header-height: 48px;
  }
}
@media (max-width: 415px) {
  :root {
    --top-very-small-height: 150px;
  }
}
/* 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: 400px) {
  html {
    font-size: 8px;
  }
}

:root {
  /* DISPLAY 5 FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT*/
  --display-5-ff: "Poppins";
  --display-5-fs: 8rem;
  --display-5-fw: bold;
  --display-5-lh: 7.2rem;
  /* DISPLAY 4 FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT*/
  --display-4-ff: "Poppins";
  --display-4-fs: 6rem;
  --display-4-fw: bold;
  --display-4-lh: 6.4rem;
  /* DISPLAY 3 FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT*/
  --display-3-ff: "Poppins";
  --display-3-fs: 4.8rem;
  --display-3-fw: bold;
  --display-3-lh: 5.6rem;
  /* DISPLAY 2 FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT*/
  --display-2-ff: "Poppins";
  --display-2-fs: 4rem;
  --display-2-fw: bold;
  --display-2-lh: 4.8rem;
  /* DISPLAY 1 FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT*/
  --display-1-ff: "Poppins";
  --display-1-fs: 3rem;
  --display-1-fw: 700;
  --display-1-lh: 4rem;
  /* HEADLINE FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT*/
  --headline-ff: "Poppins";
  --headline-fs: 2.1rem;
  --headline-fw: 600;
  --headline-lh: 3.1rem;
  /* LEAD FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT*/
  --lead-ff: "Poppins";
  --lead-fs: 2.5rem;
  --lead-fw: 300;
  --lead-lh: 3.2rem;
  /* BUTTON FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT*/
  --button-ff: "Poppins";
  --button-fs: 1.4rem;
  --button-fw: 600;
  --button-lh: 2.1rem;
  /* BODY FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT*/
  --body-ff: "Poppins";
  --body-fs: 1.6rem;
  --body-fw: 300;
  --body-lh: 3.1rem;
  /* CAPTION FONT FAMILY, FONT SIZE, FONT WEIGHT AND LINE HEIGHT*/
  --caption-ff: "Poppins";
  --caption-fs: 1.2rem;
  --caption-fw: normal;
  --caption-lh: 1.6rem;
}
@media (max-width: 480px) {
  :root {
    --display-4-fs: 4.9rem;
    --display-4-lh: 5.9rem;
  }
}

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

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

.display-3 {
  font-family: var(--display-3-ff);
  font-size: var(--display-3-fs);
  font-weight: var(--display-3-fw);
  line-height: var(--display-3-lh);
}
@media (max-width: 480px) {
  .display-3 {
    font-family: var(--display-2-ff);
    font-size: var(--display-2-fs);
    font-weight: var(--display-2-fw);
    line-height: var(--display-2-lh);
  }
}

.display-2, .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .headline-font, .articles-related .content .text h3, .article__socials p {
  font-family: var(--display-2-ff);
  font-size: var(--display-2-fs);
  font-weight: var(--display-2-fw);
  line-height: var(--display-2-lh);
}

.display-1, .profile-page .profile__icon .profile__icon-img {
  font-family: var(--display-1-ff);
  font-size: var(--display-1-fs);
  font-weight: var(--display-1-fw);
  line-height: var(--display-1-lh);
  letter-spacing: 1px;
}

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

.lead-font, .articles-related .content .articles-wrapper article .article-text .article-links a, .articles-related .content .articles-wrapper article .article-text a h3.headline-font, .articles-related .content .articles-wrapper article .article-text h3.date, .form .legal-text__title {
  font-family: var(--lead-ff);
  font-size: var(--lead-fs);
  font-weight: var(--lead-fw);
  line-height: var(--lead-lh);
  font-style: italic;
}
.lead-font--normal {
  font-style: normal;
}

.button-font, .button, .form#marketing-form .input-file label, .add-img-establishment .input-file label, .element--image .input-file label, .edit--image .input-file label, .footer .content .footer__block.footer-menu .footer-menu__items .footer-menu__item {
  font-family: var(--button-ff);
  font-size: var(--button-fs);
  font-weight: var(--button-fw);
  line-height: var(--button-lh);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.button-font--bold {
  font-weight: 700;
}
.button-font--light {
  font-weight: 400;
}

.body-font, .select-pure__select, .articles-related .content .articles-wrapper article .article-text p, .article__socials .date p, .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, .newOrder .filter-input, .profile-page input, 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 {
  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,
.body-font em,
.select-pure__select em,
.articles-related .content .articles-wrapper article .article-text p em,
.article__socials .date p 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,
.newOrder .filter-input em,
.profile-page input 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, .form .legal-text__item p, .form .legal-text__container, .form .form-block.legal, .form .form-block.checkbox, .profile-page .profile__box p, .profile-page .profile__box, .header__top .content .header__top-link {
  font-family: var(--caption-ff);
  font-size: var(--caption-fs);
  font-weight: var(--caption-fw);
  line-height: var(--caption-lh);
  letter-spacing: 1px;
}
.caption-font--light {
  font-weight: 300;
}

.caption-font--italic,
.caption-font em,
.form .legal-text__item p em,
.form .legal-text__container em,
.form .form-block.legal em,
.form .form-block.checkbox em,
.profile-page .profile__box em,
.header__top .content .header__top-link em {
  font-family: var(--caption-ff);
  font-size: var(--caption-fs);
  font-weight: var(--caption-fw);
  font-style: italic;
  line-height: var(--caption-lh);
  letter-spacing: 1px;
}

.quote {
  margin: 0 !important;
}
.quote span {
  font-size: 100px;
  display: flex;
}

/* -------------------------- */
/* ---------------------------------- */
/* ---------------------------------- */
/* --------- GENERAL LAYOUTS -------- */
/* ---------------------------------- */
/* -------------------------- */
/* ------ GENERAL GRID ------ */
/* ------ LAYOUT ------------ */
/* -------------------------- */
*::-moz-selection {
  background-color: rgba(63, 43, 35, 0.3);
}
*::selection {
  background-color: rgba(63, 43, 35, 0.3);
}

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: my-badass-counter;
}

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

ol li:before {
  content: counter(my-badass-counter) ".";
  counter-increment: my-badass-counter;
  display: inline-block;
  margin-right: var(--space-s);
  font-style: normal;
}

img {
  max-width: 100%;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

.relative {
  position: relative;
}

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

/* -------------------------- */
.no-scrolling {
  overflow: hidden !important;
}

.overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute; /* Sit on top of the page content */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
  z-index: 10; /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer; /* Add a pointer on hover */
}

.loader_container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
}
.loader_container .msg {
  color: white;
  font-size: 1.2em;
  font-weight: 700;
  text-align: center;
}

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ripple div {
  position: absolute;
  border: 4px solid var(--bc-2-lighter-40);
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
.formatSelect.loading {
  text-align: center;
  align-items: center;
  justify-content: center;
}

/* -------------------------- */
/* ------ 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 (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 (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 (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 (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 (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) * 4);
  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);
}
.mceTmpl .columns.two-columns {
  grid-template-columns: 1fr 1fr;
}
.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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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: relative;
  z-index: var(--z-index--header);
  width: 100%;
  height: 102px;
  background-color: white;
  letter-spacing: 0;
  display: grid;
  flex-direction: column;
}
.header .content {
  display: grid;
  grid-template-columns: 90px 1fr 80px;
  -moz-column-gap: var(--space-m);
       column-gap: var(--space-m);
  width: 100%;
  height: 100%;
  max-width: var(--content-medium-width);
  padding: 0 var(--space-l);
  margin: auto;
}
@media (max-width: 1430px) {
  .header .content {
    padding: 0 var(--space-m);
  }
}
@media (max-width: 1250px ) {
  .header .content {
    justify-content: space-between;
  }
}
@media (max-width: 480px) {
  .header .content {
    padding: 0 var(--space-m);
    grid-template-columns: 90px 80px 1fr 80px;
  }
}
.header .private-area-mobile {
  display: none;
}
@media (max-width: 480px) {
  .header .private-area-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
  }
  .header .private-area-mobile span {
    font-weight: 700;
  }
  .header .private-area-mobile a {
    background: linear-gradient(45deg, var(--bc-2-lighter-40), var(--bc-2-darker-40));
    font-size: 2rem;
    font-weight: 400;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  .header .private-area-mobile a:before {
    position: relative;
    z-index: 2;
    font-family: "Font Awesome 5 Pro";
    content: "\f406";
    color: white;
    font-weight: bolder;
  }
  .header .private-area-mobile a span {
    display: none;
  }
}
.header .logo {
  opacity: 1;
  position: relative;
  min-width: calc((100% - var(--content-max-width)) / 2);
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.header .logo a:first-child img {
  width: var(--logo-width);
  max-width: unset;
}
.header .logo a img {
  width: calc(var(--logo-width) - 20px);
}
.header .lang-button {
  display: flex;
  justify-content: flex-end;
  flex-grow: 1;
}
.header .lang-button a {
  padding: 3px 7px;
  margin-right: var(--space-s);
  color: var(--bc-1);
  border: 1px solid var(--bc-1);
}
.header .lang-button a:hover {
  color: var(--bc-1);
}
.header.scroll {
  background-color: var(--bc-1);
}
.header.scroll .logo {
  opacity: 1;
}
.header__top {
  width: 100%;
  height: 32px;
  background-color: var(--bc-2);
  z-index: 5;
}
.header__top .content {
  width: 100%;
  max-width: var(--content-medium-width);
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-self: center;
}
@media (max-width: 445px) {
  .header__top .content {
    padding: 0;
  }
}
.header__top .content .main-link {
  color: white;
  padding: var(--space-s) var(--space-m);
  border-left: 1px solid var(--white);
  border-right: 1px solid var(--white);
  display: flex;
  transition: all 0.2s linear;
  justify-content: center;
  align-items: center;
}
.header__top .content .main-link:hover {
  background-color: linear-gradient(45deg, var(--bc-2-darker-40), var(--bc-2-lighter-40));
  opacity: 0.8;
  text-decoration: none;
}
.header__top .content .main-link .fas {
  margin-right: var(--space-s);
  font-size: 1.6rem;
}
.header__top .content .header__top-link {
  color: white;
  margin: 0 var(--space-s);
}
.header__top .content .header__top-link:nth-child(2) {
  margin-right: var(--space-m);
}
@media (max-width: 480px) {
  .header__top .content .header__top-link:nth-child(2) {
    margin-right: auto;
  }
}
.header--fixed > .content {
  padding-top: 32px;
}
.header--fixed .header__top {
  position: fixed;
  top: -32px;
}
.header--fixed-visible .header__top {
  position: fixed;
  transform: translateY(32px);
}

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

/* -------------------------- */
.data_response {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.25);
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 8;
}
.data_response.hidden {
  display: none;
}
.data_response .response_wrapper {
  padding: 0px 10px;
  width: 600px;
  height: 100px;
  background-color: #F0EAE9;
  border-radius: 5px;
}
.data_response .response_wrapper .buttons {
  display: flex !important;
  justify-content: flex-end !important;
}
.data_response .response_wrapper .buttons a {
  text-decoration: none !important;
  cursor: pointer !important;
  font-weight: normal;
  font-size: 0.8em;
}
.data_response .response_wrapper .content {
  display: flex;
  justify-content: center;
  padding: 10px;
}
.data_response .response_wrapper .content.correct p {
  font-weight: bold;
  color: green;
}
.data_response .response_wrapper .content.error p {
  font-weight: bold;
  color: red;
}

/* -------------------------- */
/* ----- FOOTER LAYOUT ------ */
/* -------------------------- */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--bc-2);
  padding: var(--space-l) 0;
  position: relative;
  z-index: 1;
}
.footer .content {
  max-width: var(--content-medium-width);
  width: 100%;
  display: flex;
}
@media (max-width: 1400px) {
  .footer .content {
    padding: 0 var(--space-m);
  }
}
@media (max-width: 970px) {
  .footer .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 570px) {
  .footer .content {
    grid-template-columns: 1fr;
  }
}
.footer .content .footer__block {
  padding: 0 var(--space-m);
  padding-right: var(--space-xl);
  padding-bottom: var(--space-l);
  border-left: 1px solid var(--white);
  color: white;
  min-width: 250px;
}
@media (max-width: 570px) {
  .footer .content .footer__block {
    padding-bottom: var(--space-m);
  }
}
.footer .content .footer__block:first-child {
  border-left: none;
}
@media (max-width: 570px) {
  .footer .content .footer__block.footer-menu {
    border-left: none;
    border-top: 1px solid var(--white);
    padding-top: var(--space-m);
  }
}
.footer .content .footer__block.footer-menu .footer-menu__items {
  margin-top: var(--space-m);
  margin-left: var(--space-s);
  display: flex;
  flex-direction: column;
}
.footer .content .footer__block.footer-menu .footer-menu__items .footer-menu__item {
  color: var(--white);
  margin-bottom: var(--space-m);
}
.footer .content .footer__block.footer-phrase {
  padding-top: var(--space-xs);
}
@media (max-width: 970px) {
  .footer .content .footer__block.footer-phrase {
    border-left: none;
    border-top: 1px solid var(--white);
    grid-column-end: span 2;
    padding-top: var(--space-m);
  }
}
@media (max-width: 570px) {
  .footer .content .footer__block.footer-phrase {
    grid-column-end: span 1;
    padding-bottom: var(--space-l);
  }
}
.footer .content .footer__block.footer-phrase > .lead-font, .footer .articles-related .content .articles-wrapper article .article-text .article-links .footer__block.footer-phrase > a, .articles-related .footer .content .articles-wrapper article .article-text .article-links .footer__block.footer-phrase > a, .footer .articles-related .content .articles-wrapper article .article-text a .footer__block.footer-phrase > h3.headline-font, .articles-related .footer .content .articles-wrapper article .article-text a .footer__block.footer-phrase > h3.headline-font, .footer .articles-related .content .articles-wrapper article .article-text .footer__block.footer-phrase > h3.date, .articles-related .footer .content .articles-wrapper article .article-text .footer__block.footer-phrase > h3.date, .footer .content .form .footer__block.footer-phrase > .legal-text__title, .form .footer .content .footer__block.footer-phrase > .legal-text__title {
  max-width: 420px;
  margin-bottom: var(--space-m);
}
.footer .content .footer__block.footer-phrase .footer-social {
  display: flex;
}
.footer .content .footer__block.footer-phrase .footer-social__item {
  margin-right: calc(var(--space-s) * 1.5);
}
.footer .content .footer__block.footer-phrase .footer-social__item:last-child {
  margin-left: var(--space-s);
}
.footer .content .footer__block.footer-phrase .footer-social__item:last-child a {
  font-weight: 400;
}
.footer .content .footer__block.footer-phrase .footer-social__item a {
  color: white;
  font-weight: 100;
}
.footer .content .footer__block.footer-phrase .footer-social__item a i {
  font-size: 16px;
}

/* -------------------------- */
/* ----- SIDEBAR LAYOUT ----- */
/* -------------------------- */
/* -------------------------- */
.category > .headline-font {
  max-width: var(--content-medium-width);
  margin: auto;
  padding: 0 var(--space-m);
  margin-bottom: var(--space-s);
}
@media (max-width: 550px) {
  .category > .headline-font {
    text-align: center;
    margin-bottom: var(--space-m);
  }
}
.category__full-width, .category .list-article-tags {
  grid-column-end: span 6;
  padding: 0 var(--space-m);
  margin-top: var(--space-l);
}
.category .goBack-button {
  margin-top: var(--space-l);
}
.category .list-category-title {
  margin-top: calc(var(--space-xl) * 1.5);
  text-align: center;
}
.category .list-article-tags {
  margin-bottom: var(--space-xl);
  border-top: 0;
  max-width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.new-pass--btn {
  margin-top: 10px;
  margin-left: 0px !important;
}

.profile-page {
  --body-lh: 2.1rem;
}
.profile-page .new-pass {
  display: flex !important;
  justify-content: center !important;
  max-width: unset !important;
}
.profile-page .login {
  padding-bottom: var(--space-xxl);
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width:645px) {
  .profile-page .login {
    grid-template-columns: 1fr;
    padding-bottom: unset;
  }
}
.profile-page .login__row {
  padding: var(--space-m) var(--space-l);
}
.profile-page .login__row:first-child {
  border-right: 2px solid #666;
}
@media (max-width:645px) {
  .profile-page .login__row:first-child {
    border-right: none;
    border-bottom: 2px solid #666;
  }
}
.profile-page .login__row .display-1, .profile-page .login__row .profile__icon .profile__icon-img, .profile-page .profile__icon .login__row .profile__icon-img {
  margin-bottom: var(--space-l);
}
.profile-page .login__row .form .form-block .text-link {
  grid-column-start: 2;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: var(--space-s);
}
.profile-page .login__row .form .form-block button[type=submit] {
  grid-column-start: 2;
  width: -moz-fit-content;
  width: fit-content;
  justify-self: right;
  margin-top: var(--space-m);
}
.profile-page .login__row .form .form-block .login-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.profile-page .login__row--right .button, .profile-page .login__row--right .form#marketing-form .input-file label, .form#marketing-form .input-file .profile-page .login__row--right label, .profile-page .login__row--right .edit--image .input-file label, .edit--image .input-file .profile-page .login__row--right label, .profile-page .login__row--right .element--image .input-file label, .element--image .input-file .profile-page .login__row--right label, .profile-page .login__row--right .add-img-establishment .input-file label, .add-img-establishment .input-file .profile-page .login__row--right label {
  width: -moz-fit-content;
  width: fit-content;
  margin: var(--space-m) 0;
}
.profile-page .login__row--right .button.space-m-right, .profile-page .login__row--right .form#marketing-form .input-file label.space-m-right, .form#marketing-form .input-file .profile-page .login__row--right label.space-m-right, .profile-page .login__row--right .edit--image .input-file label.space-m-right, .edit--image .input-file .profile-page .login__row--right label.space-m-right, .profile-page .login__row--right .element--image .input-file label.space-m-right, .element--image .input-file .profile-page .login__row--right label.space-m-right, .profile-page .login__row--right .add-img-establishment .input-file label.space-m-right, .add-img-establishment .input-file .profile-page .login__row--right label.space-m-right {
  margin-right: var(--space-m);
}
.profile-page .login__row--right .body-font:last-child, .profile-page .login__row--right .select-pure__select:last-child, .profile-page .login__row--right .articles-related .content .articles-wrapper article .article-text p:last-child, .articles-related .content .articles-wrapper article .article-text .profile-page .login__row--right p:last-child, .profile-page .login__row--right .article__socials .date p:last-child, .article__socials .date .profile-page .login__row--right p:last-child,
.profile-page .login__row--right .form .form-block textarea:last-child,
.form .form-block .profile-page .login__row--right textarea:last-child,
.profile-page .login__row--right .form .form-block select:last-child,
.form .form-block .profile-page .login__row--right select:last-child, .profile-page .login__row--right .form .form-block label:last-child, .form .form-block .profile-page .login__row--right label:last-child, .profile-page .login__row--right .newOrder .filter-input:last-child, .newOrder .profile-page .login__row--right .filter-input:last-child, .profile-page .login__row--right input:last-child, .profile-page .login__row--right body:last-child {
  margin-top: var(--space-s);
}
.profile-page .login .sign-in h4,
.profile-page .login .validation h4 {
  margin-bottom: var(--space-m);
}
.profile-page .login .sign-in h2,
.profile-page .login .validation h2 {
  margin-bottom: var(--space-m);
}
.profile-page .login .sign-in .form .form-block,
.profile-page .login .validation .form .form-block {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: end;
  width: 100%;
  margin-bottom: var(ss-pace-m);
}
.profile-page .login .sign-in .form .form-block button[type=submit],
.profile-page .login .validation .form .form-block button[type=submit] {
  grid-column-start: 2;
  width: -moz-fit-content;
  width: fit-content;
  justify-self: right;
}
.profile-page .login .sign-in .form .form-block .button, .profile-page .login .sign-in .form#marketing-form .form-block .input-file label, .profile-page .login .sign-in .form#marketing-form .input-file .form-block label, .profile-page .login .sign-in .form .form-block .edit--image .input-file label, .edit--image .input-file .profile-page .login .sign-in .form .form-block label, .profile-page .login .sign-in .form .form-block .element--image .input-file label, .element--image .input-file .profile-page .login .sign-in .form .form-block label, .profile-page .login .sign-in .form .form-block .add-img-establishment .input-file label, .add-img-establishment .input-file .profile-page .login .sign-in .form .form-block label,
.profile-page .login .validation .form .form-block .button,
.profile-page .login .validation .form#marketing-form .form-block .input-file label,
.profile-page .login .validation .form#marketing-form .input-file .form-block label,
.profile-page .login .validation .form .form-block .edit--image .input-file label,
.edit--image .input-file .profile-page .login .validation .form .form-block label,
.profile-page .login .validation .form .form-block .element--image .input-file label,
.element--image .input-file .profile-page .login .validation .form .form-block label,
.profile-page .login .validation .form .form-block .add-img-establishment .input-file label,
.add-img-establishment .input-file .profile-page .login .validation .form .form-block label {
  margin-top: 30px;
}
.profile-page .login .validation {
  color: var(--bc-1);
  grid-column-end: span 2;
  justify-self: center;
  max-width: var(--content-min-width);
}
@media (max-width: 650px) {
  .profile-page .login .validation {
    padding: 0 var(--space-l);
  }
}
@media (max-width: 415px) {
  .profile-page .login .validation {
    padding: 0 var(--space-m);
  }
}
.profile-page .login .validation .button, .profile-page .login .validation .form#marketing-form .input-file label, .form#marketing-form .input-file .profile-page .login .validation label, .profile-page .login .validation .edit--image .input-file label, .edit--image .input-file .profile-page .login .validation label, .profile-page .login .validation .element--image .input-file label, .element--image .input-file .profile-page .login .validation label, .profile-page .login .validation .add-img-establishment .input-file label, .add-img-establishment .input-file .profile-page .login .validation label {
  margin-left: 0;
}
.profile-page .taza-1 {
  position: absolute;
  top: var(--top-small-height);
  right: var(--space-xl);
  transform: translateY(-100%);
  z-index: 2;
}
@media (max-width:800px) {
  .profile-page .taza-1 {
    display: none;
  }
}
.profile-page .taza-2 {
  position: absolute;
  bottom: var(--space-l);
  left: var(--space-l);
}
@media (max-width:1120px) {
  .profile-page .taza-2 {
    display: none;
  }
}
.profile-page__register, .profile-page__register-client, .profile-page__lost-pass {
  display: grid;
  grid-template-columns: 1fr;
}
.profile-page__register .register, .profile-page__register-client .register, .profile-page__lost-pass .register {
  display: flex;
  justify-content: center;
}
.profile-page__register .register .alerts, .profile-page__register-client .register .alerts, .profile-page__lost-pass .register .alerts {
  margin: auto;
}
.profile-page__register .register .alerts p, .profile-page__register-client .register .alerts p, .profile-page__lost-pass .register .alerts p {
  margin: 0;
}
.profile-page__register .register .form-container, .profile-page__register-client .register .form-container, .profile-page__lost-pass .register .form-container {
  padding-bottom: var(--space-xxl);
  max-width: 700px;
  margin: 0px var(--space-l);
  display: grid;
  row-gap: var(--space-m);
}
.profile-page__register .register .form-container .form#sign-in .form-block, .profile-page__register-client .register .form-container .form#sign-in .form-block, .profile-page__lost-pass .register .form-container .form#sign-in .form-block {
  grid-template-columns: 1fr 2fr;
}
.profile-page__register .register .form-container .form .form-block, .profile-page__register-client .register .form-container .form .form-block, .profile-page__lost-pass .register .form-container .form .form-block {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: end;
  width: 100%;
  margin-bottom: var(ss-pace-m);
}
.profile-page__register .register .form-container .form .form-block button[type=submit], .profile-page__register-client .register .form-container .form .form-block button[type=submit], .profile-page__lost-pass .register .form-container .form .form-block button[type=submit] {
  grid-column-start: 2;
  width: -moz-fit-content;
  width: fit-content;
  justify-self: right;
}
.profile-page__register .register .form-container .form .form-block .button, .profile-page__register .register .form-container .form#marketing-form .form-block .input-file label, .profile-page__register .register .form-container .form#marketing-form .input-file .form-block label, .profile-page__register .register .form-container .form .form-block .edit--image .input-file label, .edit--image .input-file .profile-page__register .register .form-container .form .form-block label, .profile-page__register .register .form-container .form .form-block .element--image .input-file label, .element--image .input-file .profile-page__register .register .form-container .form .form-block label, .profile-page__register .register .form-container .form .form-block .add-img-establishment .input-file label, .add-img-establishment .input-file .profile-page__register .register .form-container .form .form-block label, .profile-page__register-client .register .form-container .form .form-block .button, .profile-page__register-client .register .form-container .form#marketing-form .form-block .input-file label, .profile-page__register-client .register .form-container .form#marketing-form .input-file .form-block label, .profile-page__register-client .register .form-container .form .form-block .edit--image .input-file label, .edit--image .input-file .profile-page__register-client .register .form-container .form .form-block label, .profile-page__register-client .register .form-container .form .form-block .element--image .input-file label, .element--image .input-file .profile-page__register-client .register .form-container .form .form-block label, .profile-page__register-client .register .form-container .form .form-block .add-img-establishment .input-file label, .add-img-establishment .input-file .profile-page__register-client .register .form-container .form .form-block label, .profile-page__lost-pass .register .form-container .form .form-block .button, .profile-page__lost-pass .register .form-container .form#marketing-form .form-block .input-file label, .profile-page__lost-pass .register .form-container .form#marketing-form .input-file .form-block label, .profile-page__lost-pass .register .form-container .form .form-block .edit--image .input-file label, .edit--image .input-file .profile-page__lost-pass .register .form-container .form .form-block label, .profile-page__lost-pass .register .form-container .form .form-block .element--image .input-file label, .element--image .input-file .profile-page__lost-pass .register .form-container .form .form-block label, .profile-page__lost-pass .register .form-container .form .form-block .add-img-establishment .input-file label, .add-img-establishment .input-file .profile-page__lost-pass .register .form-container .form .form-block label {
  margin-top: 30px;
}
.profile-page__register .register .content-options, .profile-page__register-client .register .content-options, .profile-page__lost-pass .register .content-options {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
}
@media (max-width: 650px) {
  .profile-page__register .register .content-options, .profile-page__register-client .register .content-options, .profile-page__lost-pass .register .content-options {
    flex-direction: column;
  }
}
.profile-page__register .register .content-options .option form, .profile-page__register-client .register .content-options .option form, .profile-page__lost-pass .register .content-options .option form {
  display: flex;
  flex-direction: column;
  justify-content: left;
}
.profile-page__register .register .content-options .option-left, .profile-page__register-client .register .content-options .option-left, .profile-page__lost-pass .register .content-options .option-left {
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border-right: 2px solid #3f2b23;
  padding: 50px;
}
@media (max-width: 650px) {
  .profile-page__register .register .content-options .option-left, .profile-page__register-client .register .content-options .option-left, .profile-page__lost-pass .register .content-options .option-left {
    width: 100%;
    border-right: unset;
    border-bottom: 2px solid #3f2b23;
  }
}
.profile-page__register .register .content-options .option-left .number, .profile-page__register-client .register .content-options .option-left .number, .profile-page__lost-pass .register .content-options .option-left .number {
  width: 75px;
  height: 75px;
  border: 3px solid #3f2b23;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 40px;
}
.profile-page__register .register .content-options .option-left .number span, .profile-page__register-client .register .content-options .option-left .number span, .profile-page__lost-pass .register .content-options .option-left .number span {
  font-size: 33px;
}
.profile-page__register .register .content-options .option-left .question, .profile-page__register-client .register .content-options .option-left .question, .profile-page__lost-pass .register .content-options .option-left .question {
  text-align: center;
}
.profile-page__register .register .content-options .option-left .question p, .profile-page__register-client .register .content-options .option-left .question p, .profile-page__lost-pass .register .content-options .option-left .question p {
  font-size: 24px;
  line-height: 1.2;
}
.profile-page__register .register .content-options .option-left .button, .profile-page__register .register .content-options .option-left .form#marketing-form .input-file label, .form#marketing-form .input-file .profile-page__register .register .content-options .option-left label, .profile-page__register .register .content-options .option-left .edit--image .input-file label, .edit--image .input-file .profile-page__register .register .content-options .option-left label, .profile-page__register .register .content-options .option-left .element--image .input-file label, .element--image .input-file .profile-page__register .register .content-options .option-left label, .profile-page__register .register .content-options .option-left .add-img-establishment .input-file label, .add-img-establishment .input-file .profile-page__register .register .content-options .option-left label, .profile-page__register-client .register .content-options .option-left .button, .profile-page__register-client .register .content-options .option-left .form#marketing-form .input-file label, .form#marketing-form .input-file .profile-page__register-client .register .content-options .option-left label, .profile-page__register-client .register .content-options .option-left .edit--image .input-file label, .edit--image .input-file .profile-page__register-client .register .content-options .option-left label, .profile-page__register-client .register .content-options .option-left .element--image .input-file label, .element--image .input-file .profile-page__register-client .register .content-options .option-left label, .profile-page__register-client .register .content-options .option-left .add-img-establishment .input-file label, .add-img-establishment .input-file .profile-page__register-client .register .content-options .option-left label, .profile-page__lost-pass .register .content-options .option-left .button, .profile-page__lost-pass .register .content-options .option-left .form#marketing-form .input-file label, .form#marketing-form .input-file .profile-page__lost-pass .register .content-options .option-left label, .profile-page__lost-pass .register .content-options .option-left .edit--image .input-file label, .edit--image .input-file .profile-page__lost-pass .register .content-options .option-left label, .profile-page__lost-pass .register .content-options .option-left .element--image .input-file label, .element--image .input-file .profile-page__lost-pass .register .content-options .option-left label, .profile-page__lost-pass .register .content-options .option-left .add-img-establishment .input-file label, .add-img-establishment .input-file .profile-page__lost-pass .register .content-options .option-left label {
  margin: 20px auto;
}
.profile-page__register .register .content-options .option-right, .profile-page__register-client .register .content-options .option-right, .profile-page__lost-pass .register .content-options .option-right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}
@media (max-width: 650px) {
  .profile-page__register .register .content-options .option-right, .profile-page__register-client .register .content-options .option-right, .profile-page__lost-pass .register .content-options .option-right {
    width: 100%;
  }
}
.profile-page__register .register .content-options .option-right .options, .profile-page__register-client .register .content-options .option-right .options, .profile-page__lost-pass .register .content-options .option-right .options {
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-page__register .register .content-options .option-right .options .filter-input, .profile-page__register-client .register .content-options .option-right .options .filter-input, .profile-page__lost-pass .register .content-options .option-right .options .filter-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  margin-top: 5px;
  border: none;
  border-bottom: 1px solid var(--bc-1);
  padding: var(--space-s) var(--space-s);
}
.profile-page__register .register .content-options .option-right .options select.select-minimal, .profile-page__register-client .register .content-options .option-right .options select.select-minimal, .profile-page__lost-pass .register .content-options .option-right .options select.select-minimal {
  background-image: linear-gradient(45deg, transparent 50%, var(--bc-1) 50%), linear-gradient(135deg, var(--bc-1) 50%, transparent 50%), linear-gradient(to right, var(--bc-1), var(--bc-1));
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}
.profile-page__register .register .content-options .option-right .options select.select-minimal:focus, .profile-page__register-client .register .content-options .option-right .options select.select-minimal:focus, .profile-page__lost-pass .register .content-options .option-right .options select.select-minimal:focus {
  background-image: linear-gradient(45deg, var(--bc-2-lighter-40) 50%, transparent 50%), linear-gradient(135deg, transparent 50%, var(--bc-2-lighter-40) 50%), linear-gradient(to right, var(--bc-1), var(--bc-1));
  background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  border-color: var(--bc-2-lighter-40);
  outline: 0;
}
.profile-page__register .register .content-options .option-right .button, .profile-page__register .register .content-options .option-right .form#marketing-form .input-file label, .form#marketing-form .input-file .profile-page__register .register .content-options .option-right label, .profile-page__register .register .content-options .option-right .edit--image .input-file label, .edit--image .input-file .profile-page__register .register .content-options .option-right label, .profile-page__register .register .content-options .option-right .element--image .input-file label, .element--image .input-file .profile-page__register .register .content-options .option-right label, .profile-page__register .register .content-options .option-right .add-img-establishment .input-file label, .add-img-establishment .input-file .profile-page__register .register .content-options .option-right label, .profile-page__register-client .register .content-options .option-right .button, .profile-page__register-client .register .content-options .option-right .form#marketing-form .input-file label, .form#marketing-form .input-file .profile-page__register-client .register .content-options .option-right label, .profile-page__register-client .register .content-options .option-right .edit--image .input-file label, .edit--image .input-file .profile-page__register-client .register .content-options .option-right label, .profile-page__register-client .register .content-options .option-right .element--image .input-file label, .element--image .input-file .profile-page__register-client .register .content-options .option-right label, .profile-page__register-client .register .content-options .option-right .add-img-establishment .input-file label, .add-img-establishment .input-file .profile-page__register-client .register .content-options .option-right label, .profile-page__lost-pass .register .content-options .option-right .button, .profile-page__lost-pass .register .content-options .option-right .form#marketing-form .input-file label, .form#marketing-form .input-file .profile-page__lost-pass .register .content-options .option-right label, .profile-page__lost-pass .register .content-options .option-right .edit--image .input-file label, .edit--image .input-file .profile-page__lost-pass .register .content-options .option-right label, .profile-page__lost-pass .register .content-options .option-right .element--image .input-file label, .element--image .input-file .profile-page__lost-pass .register .content-options .option-right label, .profile-page__lost-pass .register .content-options .option-right .add-img-establishment .input-file label, .add-img-establishment .input-file .profile-page__lost-pass .register .content-options .option-right label {
  margin: 20px auto;
}
@media (max-width: 1500px) {
  .profile-page__register .taza-1, .profile-page__register-client .taza-1, .profile-page__lost-pass .taza-1 {
    top: -70px;
  }
  .profile-page__register .taza-2, .profile-page__register-client .taza-2, .profile-page__lost-pass .taza-2 {
    width: 200px;
  }
}
@media (max-width: 900px) {
  .profile-page__register .taza-1, .profile-page__register-client .taza-1, .profile-page__lost-pass .taza-1 {
    display: none;
  }
}
.profile-page .loginzoho .login-text {
  margin-top: 20px;
}

.profile-page {
  position: relative;
  padding-bottom: var(--space-xl);
  z-index: 2;
}
@media (max-width:900px) {
  .profile-page .profile .profile__icon {
    display: none;
  }
}
@media (max-width: 900px) {
  .profile-page .profile.profile--innerPage .profile__top {
    height: 270px;
  }
}
@media (max-width:900px) {
  .profile-page .profile.profile--innerPage .profile__content {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 0px 1fr;
    grid-template-areas: "back" "pages";
    grid-row-gap: 0px;
  }
  .profile-page .profile.profile--innerPage .profile__content .profile__icon,
  .profile-page .profile.profile--innerPage .profile__content .profile-menu {
    display: none;
  }
  .profile-page .profile.profile--innerPage .profile__content .profile__title-back {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 50px;
    right: 25px;
    z-index: 1;
    border: 1px solid var(--bc-1-lighter-75);
    border-radius: 50%;
    background: var(--bc-1);
    height: 50px;
    width: 50px;
    cursor: pointer;
  }
  .profile-page .profile.profile--innerPage .profile__content .profile__title-back:before {
    position: absolute;
    content: "";
    height: calc(100% + 16px);
    width: calc(100% + 16px);
    top: -9px;
    left: -9px;
    border-radius: 50%;
    border: 1px solid var(--bc-1);
    animation: 1.5s linear 0s normal none infinite focuse;
  }
  .profile-page .profile.profile--innerPage .profile__content .profile__title-back .fal {
    font-weight: 600;
    font-size: x-large;
    color: white;
  }
  .profile-page .profile.profile--innerPage .profile__content .profile__pages {
    grid-area: "pages";
  }
}
@media (max-width:900px) and (max-width:768px) {
  .profile-page .profile.profile--innerPage .profile__content .profile__pages #orders .newOrder {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  .profile-page .profile.profile--innerPage .profile__content .profile__pages #orders .newOrder .newOrder__products {
    grid-row: 2;
  }
}
.profile-page .profile__box {
  font-size: 1.3rem;
  line-height: 1.7rem;
  background-color: var(--bc-1-lighter-75);
  color: var(--bc-1);
  padding: var(--space-m);
  margin-top: var(--space-m);
}
.profile-page .profile__box.category {
  margin-top: 0px !important;
  margin-bottom: var(--space-m) !important;
}
.profile-page .profile__box p {
  font-size: 1.3rem;
  line-height: 1.7rem;
}
.profile-page .profile__box .headline-font {
  margin-bottom: var(--space-xs);
  font-weight: 500;
}
.profile-page .profile__top {
  height: 380px;
  margin-top: -230px;
}
.profile-page .profile__top svg {
  height: 100%;
}
@media (max-width: 900px) {
  .profile-page .profile__top {
    height: 270px;
  }
}
.profile-page .profile .wave {
  z-index: -1;
}
.profile-page .profile__content {
  max-width: var(--content-medium-width);
  margin: 0 auto;
  margin-top: calc(-1 * var(--space-xl));
  padding: 0;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  grid-template-rows: 160px 1fr;
  gap: var(--space-m);
  grid-template-areas: "icon pages" "menu pages";
}
@media (max-width: 900px) {
  .profile-page .profile__content {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 0 auto 1fr;
    grid-template-areas: "icon" "menu" "pages";
  }
}
@media (max-width: 480px) {
  .profile-page .profile__content {
    padding: 0 var(--space-m);
  }
}
.profile-page .profile__content .profile-menu {
  grid-area: menu;
}
.profile-page .profile__icon {
  grid-area: icon;
  display: grid;
  justify-content: center;
  align-items: center;
  row-gap: var(--space-s);
  cursor: pointer;
}
.profile-page .profile__icon .profile__icon-img {
  border-radius: 50%;
  background-color: var(--bc-1);
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  justify-self: center;
  text-transform: uppercase;
}
.profile-page .profile__icon .headline-font {
  text-align: center;
}
.profile-page .profile__pages {
  grid-area: pages;
}
.profile-page .profile__subpage {
  display: none;
}
.profile-page .profile__subpage.current {
  display: block;
}
.profile-page .profile__subpage.orders .orders_selectors__container {
  min-height: 600px;
  background-color: #f0eae8;
}
@media (max-width: 700px) {
  .profile-page .profile__subpage.orders .orders_selectors__container {
    min-height: auto;
  }
}
.profile-page .profile__subpage.orders .orders_selectors__container .orders-selectors {
  display: grid;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-xl);
  gap: var(--space-l);
  width: 50%;
  margin: auto;
}
@media (max-width: 550px) {
  .profile-page .profile__subpage.orders .orders_selectors__container .orders-selectors {
    width: 80%;
  }
}
@media (max-width: 450px) {
  .profile-page .profile__subpage.orders .orders_selectors__container .orders-selectors {
    width: 100%;
  }
}
.profile-page .profile__subpage.orders .orders_selectors__container .orders-selectors .orders-selector {
  position: relative;
  text-align: center;
  padding: var(--space-l);
  border: 1px solid var(--bc-1);
  overflow: hidden;
  border-radius: 13px;
}
.profile-page .profile__subpage.orders .orders_selectors__container .orders-selectors .orders-selector .order-icon {
  max-width: 20%;
  padding-bottom: 20px;
}
.profile-page .profile__subpage .advice-container .adtice-items {
  display: grid;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-xl);
  gap: var(--space-l);
  width: 50%;
  margin: auto;
}
@media (max-width: 550px) {
  .profile-page .profile__subpage .advice-container .adtice-items {
    width: 80%;
  }
}
@media (max-width: 450px) {
  .profile-page .profile__subpage .advice-container .adtice-items {
    width: 100%;
  }
}
.profile-page .profile__subpage .advice-container .adtice-items .advice-item {
  position: relative;
  text-align: center;
  padding: var(--space-l);
  overflow: hidden;
  border-radius: 13px;
}
.profile-page .profile__subpage .advice-container .adtice-items .advice-item .lead-font, .profile-page .profile__subpage .advice-container .adtice-items .advice-item .articles-related .content .articles-wrapper article .article-text .article-links a, .articles-related .content .articles-wrapper article .article-text .article-links .profile-page .profile__subpage .advice-container .adtice-items .advice-item a, .profile-page .profile__subpage .advice-container .adtice-items .advice-item .articles-related .content .articles-wrapper article .article-text a h3.headline-font, .articles-related .content .articles-wrapper article .article-text a .profile-page .profile__subpage .advice-container .adtice-items .advice-item h3.headline-font, .profile-page .profile__subpage .advice-container .adtice-items .advice-item .articles-related .content .articles-wrapper article .article-text h3.date, .articles-related .content .articles-wrapper article .article-text .profile-page .profile__subpage .advice-container .adtice-items .advice-item h3.date, .profile-page .profile__subpage .advice-container .adtice-items .advice-item .form .legal-text__title, .form .profile-page .profile__subpage .advice-container .adtice-items .advice-item .legal-text__title {
  font-style: normal;
}
.profile-page .profile__subpage .advice-container .adtice-items .advice-item .order-icon {
  max-width: 20%;
  padding-bottom: 20px;
}
.profile-page .profile__default-title {
  width: 100%;
  background-color: var(--bc-1-lighter-75);
  color: var(--bc-1);
  display: flex;
  align-items: center;
  padding: var(--space-m) var(--space-l);
  font-weight: 800;
}
@media (max-width: 370px) {
  .profile-page .profile__default-title {
    padding: var(--space-m);
  }
}
@media (max-width: 370px) {
  .profile-page .profile__default-title .coins {
    display: none;
  }
}
.profile-page .profile__default-title img {
  margin-left: auto;
  height: 50px;
}
@media (max-width: 370px) {
  .profile-page .profile__default-title img {
    display: none;
  }
}
.profile-page .profile .profile__content .profile__title-back {
  display: none;
}
.profile-page .profile .profile__content .profile__pages .checker__field {
  display: grid;
  margin-bottom: 20px;
  color: var(--bc-1);
}
.profile-page .profile .profile__content .profile__pages label {
  font-size: smaller;
  color: var(--bc-1);
  line-height: 19px;
  font-weight: 600;
}
.profile-page .profile .profile__content .profile__pages input[type=password] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  margin-top: 5px;
  border: none;
  height: 35px;
  border-bottom: 1px solid var(--bc-1);
  padding: var(--space-s) var(--space-s);
}
@media (max-width: 900px) {
  .profile-page .profile .profile__content .profile__pages input[type=password] {
    width: 100%;
  }
}
.profile-page .profile .profile__content .profile__pages .buttons {
  display: flex;
  justify-content: flex-end;
}
.profile-page .profile .profile__content .profile__pages .buttons .button--default, .profile-page .profile .profile__content .profile__pages .buttons .form#marketing-form .input-file label, .form#marketing-form .input-file .profile-page .profile .profile__content .profile__pages .buttons label, .profile-page .profile .profile__content .profile__pages .buttons .edit--image .input-file label, .edit--image .input-file .profile-page .profile .profile__content .profile__pages .buttons label, .profile-page .profile .profile__content .profile__pages .buttons .element--image .input-file label, .element--image .input-file .profile-page .profile .profile__content .profile__pages .buttons label, .profile-page .profile .profile__content .profile__pages .buttons .add-img-establishment .input-file label, .add-img-establishment .input-file .profile-page .profile .profile__content .profile__pages .buttons label {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 30px;
}
.profile-page .profile .profile__content .profile__pages .profile__page .profile__subpage .advice-container {
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile-page .profile .profile__content .profile__pages .profile__page .profile__subpage .change-password__container.list-items,
.profile-page .profile .profile__content .profile__pages .profile__page .profile__subpage .profiles__container.list-items {
  grid-auto-rows: 0.1fr 0.2fr !important;
}
.profile-page .profile .profile__content .profile__pages .profile__page .profile__subpage .change-password__container.list-items p,
.profile-page .profile .profile__content .profile__pages .profile__page .profile__subpage .profiles__container.list-items p {
  font-family: var(--button-ff);
  font-size: var(--button-fs);
  font-weight: var(--button-fw);
  line-height: var(--button-lh);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--bc-1);
}
@media (max-width: 759px) {
  .profile-page .profile .profile__content .profile__pages .profile__page .profile__subpage .change-password__container h1,
  .profile-page .profile .profile__content .profile__pages .profile__page .profile__subpage .profiles__container h1 {
    font-size: 17px;
  }
}
.profile-page .profile .profile__content .profile__pages .profile__page .profile__subpage .list-items__grid {
  justify-content: left;
  height: -moz-fit-content;
  height: fit-content;
}
.profile-page .profile .profile__content .profile__pages .profile__page .profile__subpage .change-password__form .buttons .button, .profile-page .profile .profile__content .profile__pages .profile__page .profile__subpage .change-password__form .buttons .form#marketing-form .input-file label, .form#marketing-form .input-file .profile-page .profile .profile__content .profile__pages .profile__page .profile__subpage .change-password__form .buttons label, .profile-page .profile .profile__content .profile__pages .profile__page .profile__subpage .change-password__form .buttons .edit--image .input-file label, .edit--image .input-file .profile-page .profile .profile__content .profile__pages .profile__page .profile__subpage .change-password__form .buttons label, .profile-page .profile .profile__content .profile__pages .profile__page .profile__subpage .change-password__form .buttons .element--image .input-file label, .element--image .input-file .profile-page .profile .profile__content .profile__pages .profile__page .profile__subpage .change-password__form .buttons label, .profile-page .profile .profile__content .profile__pages .profile__page .profile__subpage .change-password__form .buttons .add-img-establishment .input-file label, .add-img-establishment .input-file .profile-page .profile .profile__content .profile__pages .profile__page .profile__subpage .change-password__form .buttons label {
  margin-top: 15px;
}
.profile-page .profile .profile__content .profile__pages .profile__page .profile__subpage .trade-form-container {
  margin-top: var(--space-m);
  padding: var(--space-m);
  background-color: var(--bc-1-lighter-75);
}
.profile-page .profile .profile__content .profile__pages .profile__page .profile__subpage .trade-form-container input,
.profile-page .profile .profile__content .profile__pages .profile__page .profile__subpage .trade-form-container select {
  margin-bottom: var(--space-m);
}
.profile-page .profile .profile__content .profile__pages .profile__page .profile__subpage .trade-form-container button.right {
  margin-right: 0;
  margin-left: auto;
}
.profile-page .profile .profile__content .profile__pages .profile__page .trade__list.advice-container .advice-items {
  display: grid;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-xl);
  gap: var(--space-l);
  width: 50%;
  margin: auto;
  padding-top: 107px;
}
@media (max-width: 550px) {
  .profile-page .profile .profile__content .profile__pages .profile__page .trade__list.advice-container .advice-items {
    width: 80%;
    padding-top: 80px;
  }
}
@media (max-width: 450px) {
  .profile-page .profile .profile__content .profile__pages .profile__page .trade__list.advice-container .advice-items {
    width: 100%;
  }
}
.profile-page .profile .profile__content .profile__pages .profile__page .trade__list.advice-container .advice-items .advice-item {
  position: relative;
  text-align: center;
  padding: var(--space-l);
  overflow: hidden;
  border-radius: 13px;
}
.profile-page .profile .profile__content .profile__pages .profile__page .trade__list.advice-container .advice-items .advice-item .order-icon {
  max-width: 20%;
  padding-bottom: 20px;
}
.profile-page .profile .profile__content .profile__pages .profile__page .trade__list.advice-container .advice-items .advice-item .lead-font, .profile-page .profile .profile__content .profile__pages .profile__page .trade__list.advice-container .advice-items .advice-item .articles-related .content .articles-wrapper article .article-text .article-links a, .articles-related .content .articles-wrapper article .article-text .article-links .profile-page .profile .profile__content .profile__pages .profile__page .trade__list.advice-container .advice-items .advice-item a, .profile-page .profile .profile__content .profile__pages .profile__page .trade__list.advice-container .advice-items .advice-item .articles-related .content .articles-wrapper article .article-text a h3.headline-font, .articles-related .content .articles-wrapper article .article-text a .profile-page .profile .profile__content .profile__pages .profile__page .trade__list.advice-container .advice-items .advice-item h3.headline-font, .profile-page .profile .profile__content .profile__pages .profile__page .trade__list.advice-container .advice-items .advice-item .articles-related .content .articles-wrapper article .article-text h3.date, .articles-related .content .articles-wrapper article .article-text .profile-page .profile .profile__content .profile__pages .profile__page .trade__list.advice-container .advice-items .advice-item h3.date, .profile-page .profile .profile__content .profile__pages .profile__page .trade__list.advice-container .advice-items .advice-item .form .legal-text__title, .form .profile-page .profile .profile__content .profile__pages .profile__page .trade__list.advice-container .advice-items .advice-item .legal-text__title {
  font-style: normal;
  padding-bottom: 20px;
}
.profile-page .profile .profile-table__table-container {
  overflow-x: auto;
  max-width: 100%;
  width: 100%;
}
.profile-page .profile .profile-table__table {
  width: 100%;
  min-width: 850px;
  margin-top: var(--space-m);
}
@media (max-width: 1260px) {
  .profile-page .profile .profile-table__table {
    min-width: unset;
  }
}
.profile-page .profile .profile-table__table th {
  background-color: #d0c8c5;
  font-weight: 600;
}
@media (max-width: 600px) {
  .profile-page .profile .profile-table__table .last-orders__item {
    border-bottom: 1px solid #d0c8c5;
  }
  .profile-page .profile .profile-table__table .last-orders__item:last-child {
    border-bottom: none;
  }
}
.profile-page .profile .profile-table__table-item {
  text-align: center;
  padding: var(--space-s) var(--space-m);
}
.profile-page .profile .profile-table__table-item--highlighted {
  background-color: #e2d9d6;
}
.profile-page .profile .profile-table__table-item--highlighted-light {
  background-color: rgba(226, 217, 214, 0.5);
}
.profile-page .profile .profile-table__table-item--start {
  text-align: start;
}
.profile-page input {
  padding: var(--space-s) var(--space-s);
}
.profile-page select.select-meal_menus {
  padding: 1%;
  width: 20%;
}
.profile-page select.select-minimal {
  background-image: linear-gradient(45deg, transparent 50%, var(--bc-1) 50%), linear-gradient(135deg, var(--bc-1) 50%, transparent 50%), linear-gradient(to right, var(--bc-1), var(--bc-1));
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}
.profile-page select.select-minimal:focus {
  background-image: linear-gradient(45deg, var(--bc-2-lighter-40) 50%, transparent 50%), linear-gradient(135deg, transparent 50%, var(--bc-2-lighter-40) 50%), linear-gradient(to right, var(--bc-1), var(--bc-1));
  background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  border-color: var(--bc-2-lighter-40);
  outline: 0;
}

.is-order-ready {
  display: none !important;
}
.is-order-ready--active {
  display: block !important;
}

@keyframes focuse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  75% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
/* Coffee Coins History*/
.coffeeCoins-history table {
  color: #3F2B23;
  font-size: 1.2em;
}
.coffeeCoins-history table thead {
  border-bottom: 2px solid #3F2B23;
}
.coffeeCoins-history table thead tr th {
  font-weight: bold;
}
.coffeeCoins-history table tbody tr td {
  text-align: center;
  padding: 10px 0px;
}

.data-textarea {
  resize: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 100px;
  margin-top: 5px;
  border: none;
  border-bottom: 1px solid var(--bc-1);
  padding: var(--space-s) var(--space-s);
}

.updateData-button {
  display: flex;
  justify-content: flex-end;
}

/*#region MENU*/
.profile-page .profile__content{
  display: block;
  margin-top: -8em;
}

.profile__pages{
  float: left;
  width: 100%;
}

.divIzq{
  float: left;
  width: 100%;
  margin-bottom: 1em;
}

.profile-page .profile .profile-menu__items {
  display: inline-flex;
  text-align: center;
  width: 100%;
  /* display: grid;
  row-gap: var(--space-m); */
}
.profile-page .profile .profile-menu__item {
  /* height: fit-content; */
  position: relative;
  /* display: inline-flex; */
  grid-template-columns: 35px 1fr 5px;
  background-color: var(--bc-1-lighter-80);
  padding: var(--space-s);
  align-items: center;
  cursor: pointer;
  padding-top: 2em;
  padding-left: 1em;
  padding-right: 1em;
}
.profile-page .profile .profile-menu__item a {
  padding: var(--space-s) 0;
}
.profile-page .profile .profile-menu__item a:hover {
  text-decoration: none;
}
.profile-page .profile .profile-menu__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: top;
  transform: scaleY(0);
  width: 3px;
  height: 100%;
  background-color: var(--bc-1);
  transition: 0.2s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
}
.profile-page .profile .profile-menu__item:hover::before, .profile-page .profile .profile-menu__item.current::before {
  transform: scaleY(1);
}

.profile-page .profile .profile-menu__item--withSubmenu {
  /* display: grid; */
  width: 100%;
  /* height: 100%; */
}
.profile-page .profile .profile-menu__item--withSubmenu .button-font, .profile-page .profile .profile-menu__item--withSubmenu .button, .profile-page .profile .profile-menu__item--withSubmenu .form#marketing-form .input-file label, .form#marketing-form .input-file .profile-page .profile .profile-menu__item--withSubmenu label, .profile-page .profile .profile-menu__item--withSubmenu .add-img-establishment .input-file label, .add-img-establishment .input-file .profile-page .profile .profile-menu__item--withSubmenu label, .profile-page .profile .profile-menu__item--withSubmenu .element--image .input-file label, .element--image .input-file .profile-page .profile .profile-menu__item--withSubmenu label, .profile-page .profile .profile-menu__item--withSubmenu .edit--image .input-file label, .edit--image .input-file .profile-page .profile .profile-menu__item--withSubmenu label, .profile-page .profile .profile-menu__item--withSubmenu .footer .content .footer__block.footer-menu .footer-menu__items .footer-menu__item, .footer .content .footer__block.footer-menu .footer-menu__items .profile-page .profile .profile-menu__item--withSubmenu .footer-menu__item {
  padding: var(--space-s) 0;
  margin: 0;
}
.profile-page .profile .profile-menu__item--withSubmenu .profile-submenu {
  display: none;
  width: 100%;
}
.profile-page .profile .profile-menu__item--withSubmenu:hover .profile-submenu{
  display: block;
}
.profile-page .profile .profile-menu__item .profile-menu__item--withSubmenu:hover .profile-submenu{
  display: block;
}
@media (max-width: 900px) {
  .profile-page .profile .profile-menu__item--withSubmenu .profile-submenu {
    display: block;
  }
  .profile-page .profile .profile-menu__items{
    display: block;
  }
  .divIzq{
    float: right;
    width: 100%;
  }
}
.profile-page .profile .profile-menu__item--withSubmenu .profile-submenu__item {
  width: 100%;
  position: relative;
  padding: var(--space-s) 0;
  border-top: 1px solid var(--bc-1);
}

.profile-page .profile .profile-menu__item--withSubmenu .profile-submenu__item:hover {
  background: #dddddd;
}

.profile-page .profile .profile-menu__item--withSubmenu .profile-submenu__item::before {
  content: "";
  position: absolute;
  right: calc(-1 * var(--space-m));
  top: 0;
  transform-origin: top;
  transform: scaleY(0);
  width: 3px;
  height: 100%;
  background-color: var(--bc-1-lighter-40);
  transition: 0.2s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
}
.profile-page .profile .profile-menu__item--withSubmenu .profile-submenu__item:hover::before, .profile-page .profile .profile-menu__item--withSubmenu .profile-submenu__item.current::before {
  transform: scaleY(1);
}

.profile-page .profile-menu__item[data-route-target=coffee-coins] img {
  width: 25px;
}
.profile-page .profile-menu__item[data-route-target=sales] img, .profile-page .profile-menu__item[data-route-target=trade] img {
  width: 28px;
}
.profile-page .profile-menu__item[data-route-target=contracts] img {
  width: 28px;
}
.profile-page .profile-menu__item img {
  max-width: 28px;
}

/*#endregion MENU*/

.cart-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: calc(var(--space-s) * 1.5);
}
.cart-icon a {
  color: var(--bc-2);
  font-weight: 800;
  cursor: pointer;
}
.cart-icon a:hover {
  text-decoration: none;
}
.cart-icon__numitems {
  position: absolute;
  width: 17px;
  height: 19px;
  background-color: var(--bc-2);
  right: -6px;
  top: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-icon__numitems > span {
  min-height: 17px;
  position: relative;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
  z-index: 1;
}
.cart-icon img {
  height: 27px;
  width: 27px;
}

.private-area-loader {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: var(--space-m);
  background-color: var(--bc-1-lighter-75);
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.private-area-loader--absolute {
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% - var(--space-m));
}
.private-area-loader svg {
  height: 70px;
}
.private-area-loader svg .ebkjqjfnzeci10 {
  fill: var(--bc-1-lighter-75);
}
.private-area-loader svg .ebkjqjfnzeci12_to {
  animation: ebkjqjfnzeci12_to__to 3000ms linear infinite normal forwards;
}
@keyframes ebkjqjfnzeci12_to__to {
  0% {
    transform: translate(429.191024px, 528.85px);
  }
  16.666667% {
    transform: translate(429.191024px, 268px);
  }
  26.666667% {
    transform: translate(429.191024px, 268px);
  }
  43.333333% {
    transform: translate(429.191024px, 528.850802px);
  }
  100% {
    transform: translate(429.191024px, 528.850802px);
  }
}
.private-area-loader--cart {
  position: relative;
  min-height: 200px;
  background-color: white;
}
.private-area-loader--cart svg .ebkjqjfnzeci10 {
  fill: var(--white);
}

.banner {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .banner--superior {
    height: 70px;
  }
}
@media (max-width: 650px) {
  .banner--superior {
    height: 50px;
  }
}
@media (max-width: 480px) {
  .banner--superior {
    display: none;
  }
}
.banner--lateral {
  height: 325px;
  width: 325px;
}
@media (max-width:768px) {
  .banner--lateral {
    margin: auto;
  }
}
@media (max-width:400px) {
  .banner--lateral {
    width: 100%;
    height: auto;
  }
}
.banner__image {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
  height: -moz-fit-content;
  height: fit-content;
}
.banner__image.actual {
  position: relative;
  opacity: 1;
  pointer-events: visible;
}
.banner__image img {
  width: 100%;
}
.banner--superior {
  margin-bottom: var(--space-m);
}
.banner__buttons {
  position: absolute;
  display: flex;
  justify-content: space-evenly;
  left: 50%;
  bottom: var(--space-m);
  transform: translateX(-50%);
  z-index: var(--z-index--highlight);
  display: flex;
  align-items: center;
}
.banner__button {
  position: relative;
  display: inline-block;
  background-color: transparent;
  border: 1px solid var(--bc-1);
  height: 19px;
  width: 19px;
  border-radius: 50%;
  margin: 0 var(--space-xs);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.52, 0.01, 0.16, 1) 0s;
}
.banner__button.actual {
  background-color: var(--bc-1);
}

.coffee-coins-counter {
  margin-left: calc(var(--space-s) * 1.5);
  display: flex;
  align-items: center;
}
.coffee-coins-counter .body-font, .coffee-coins-counter .select-pure__select, .coffee-coins-counter .articles-related .content .articles-wrapper article .article-text p, .articles-related .content .articles-wrapper article .article-text .coffee-coins-counter p, .coffee-coins-counter .article__socials .date p, .article__socials .date .coffee-coins-counter p, .coffee-coins-counter .form .form-block input[type=text], .form .form-block .coffee-coins-counter input[type=text],
.coffee-coins-counter .form .form-block input[type=textarea],
.form .form-block .coffee-coins-counter input[type=textarea],
.coffee-coins-counter .form .form-block input[type=email],
.form .form-block .coffee-coins-counter input[type=email],
.coffee-coins-counter .form .form-block input[type=tel],
.form .form-block .coffee-coins-counter input[type=tel],
.coffee-coins-counter .form .form-block input[type=number],
.form .form-block .coffee-coins-counter input[type=number],
.coffee-coins-counter .form .form-block input[type=date],
.form .form-block .coffee-coins-counter input[type=date],
.coffee-coins-counter .form .form-block input[type=password],
.form .form-block .coffee-coins-counter input[type=password],
.coffee-coins-counter .form .form-block textarea,
.form .form-block .coffee-coins-counter textarea,
.coffee-coins-counter .form .form-block select,
.form .form-block .coffee-coins-counter select, .coffee-coins-counter .form .form-block label, .form .form-block .coffee-coins-counter label, .coffee-coins-counter .newOrder .filter-input, .newOrder .coffee-coins-counter .filter-input, .coffee-coins-counter body, .coffee-coins-counter .profile-page input, .profile-page .coffee-coins-counter input {
  font-weight: 500;
  margin-right: 2px;
}
.coffee-coins-counter > img {
  height: 25px;
}

.profile-page .profile .profile-myProfile {
  height: -moz-fit-content;
  height: fit-content;
}
.profile-page .profile .profile-myProfile__title {
  position: absolute;
  color: white;
  text-align: right;
  right: 0;
  top: 20%;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.profile-page .profile .profile-myProfile__title .display-2, .profile-page .profile .profile-myProfile__title .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .headline-font, .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .profile-page .profile .profile-myProfile__title .headline-font, .profile-page .profile .profile-myProfile__title .articles-related .content .text h3, .articles-related .content .text .profile-page .profile .profile-myProfile__title h3, .profile-page .profile .profile-myProfile__title .article__socials p, .article__socials .profile-page .profile .profile-myProfile__title p {
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--bc-1);
  padding: var(--space-xs) var(--space-l);
}
.profile-page .profile .profile-myProfile__title .display-2:last-child, .profile-page .profile .profile-myProfile__title .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .headline-font:last-child, .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .profile-page .profile .profile-myProfile__title .headline-font:last-child, .profile-page .profile .profile-myProfile__title .articles-related .content .text h3:last-child, .articles-related .content .text .profile-page .profile .profile-myProfile__title h3:last-child, .profile-page .profile .profile-myProfile__title .article__socials p:last-child, .article__socials .profile-page .profile .profile-myProfile__title p:last-child {
  margin-top: -1px;
}
.profile-page .profile .profile-myProfile img {
  width: 100%;
}

.list-items {
  margin-top: var(--space-m);
  background-color: var(--bc-1-lighter-75);
  padding: var(--space-m);
  display: grid;
  grid-auto-rows: 0.6fr;
  row-gap: var(--space-s);
}
.list-items__grid {
  display: grid;
  justify-content: center;
  align-items: center;
  -moz-column-gap: var(--space-s);
       column-gap: var(--space-s);
}
.list-items__grid .centered {
  width: -moz-fit-content;
  width: fit-content;
  justify-self: center;
}
.list-items__grid .right {
  width: 100%;
  text-align: end;
}
.list-items__header {
  border-bottom: 1px solid var(--bc-1);
}
.list-items__header p {
  font-weight: 600;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.list-items__column.quantity {
  text-align: center;
}

.orders__selectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-m);
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 140px;
}
@media (max-width: 700px ) {
  .orders__selectors {
    width: 90%;
    grid-template-columns: 1fr;
    padding-top: 0;
  }
}
.orders__selectors .orders__selector {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 6px;
}
@media (max-width: 700px ) {
  .orders__selectors .orders__selector {
    padding-top: var(--space-l);
    padding-bottom: var(--space-l);
  }
}
.orders__selectors .orders__selector h5 {
  font-style: normal;
  padding-bottom: 20px;
}
.orders__selectors .orders__selector .order-icon {
  max-width: 20%;
  padding-bottom: 20px;
}
@media (max-width: 700px) {
  .orders__selectors .orders__selector .order-icon.second {
    padding-top: 10px;
  }
}
.orders__selectors .orders__selector .button-flex {
  display: flex;
  justify-content: center;
  padding-top: var(--space-l);
}
@media (max-width: 700px) {
  .orders__selectors .orders__selector .button-flex {
    padding-bottom: 10px;
  }
}
@media (max-width: 1024px) {
  .orders__selectors .orders__selector .button-flex.first {
    padding-top: 65px;
  }
}
@media (max-width: 940px) {
  .orders__selectors .orders__selector .button-flex.first {
    padding-top: 53px;
  }
}
@media (max-width: 750px) {
  .orders__selectors .orders__selector .button-flex.first {
    padding-top: 21px;
  }
}
@media (max-width: 700px) {
  .orders__selectors .orders__selector .button-flex.first {
    padding-top: 20px;
  }
}
.orders__selectors .orders__selector .lead-font, .orders__selectors .orders__selector .articles-related .content .articles-wrapper article .article-text .article-links a, .articles-related .content .articles-wrapper article .article-text .article-links .orders__selectors .orders__selector a, .orders__selectors .orders__selector .articles-related .content .articles-wrapper article .article-text a h3.headline-font, .articles-related .content .articles-wrapper article .article-text a .orders__selectors .orders__selector h3.headline-font, .orders__selectors .orders__selector .articles-related .content .articles-wrapper article .article-text h3.date, .articles-related .content .articles-wrapper article .article-text .orders__selectors .orders__selector h3.date, .orders__selectors .orders__selector .form .legal-text__title, .form .orders__selectors .orders__selector .legal-text__title {
  position: relative;
  z-index: 1;
}
.orders__selectors .orders__selector .back {
  position: absolute;
  top: 0;
  z-index: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--bc-1);
  transform: skew(30deg) translateX(-110%);
  transition: all 0.3s cubic-bezier(0, 0.43, 0, 0.9);
}
.orders__selectors .orders__selector:last-child {
  border-left: 1px solid black;
}
@media (max-width: 700px) {
  .orders__selectors .orders__selector:last-child {
    border-left: unset;
    border-top: 1px solid black;
  }
}

.newOrder {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-m);
}
@media (max-width: 1180px) {
  .newOrder {
    grid-template-columns: 1fr;
  }
}
.newOrder .banner {
  grid-column: 2;
  grid-row: 2;
}
@media (max-width: 480px) {
  .newOrder .banner {
    display: none;
  }
}
.newOrder__products .product-list {
  position: relative;
  background-color: var(--bc-1-lighter-75);
  padding: var(--space-m) calc(var(--space-m) * 1.5);
  margin-top: var(--space-m);
}
@media (max-width: 370px) {
  .newOrder__products .product-list {
    padding: var(--space-m);
  }
}
.newOrder__products .product-list__title {
  border-bottom: 1px solid var(--bc-1);
}
.newOrder__products .product-list__items {
  margin-top: var(--space-s);
}
.newOrder__products .product-list__items .product-item {
  display: flex;
  padding: var(--space-s) 0;
}
.newOrder__products .product-list__items .product-item__price {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.newOrder__products .product-list__items .product-item__price .remove-item {
  margin-right: var(--space-s);
  padding-top: 3px;
  padding-left: 0.3px;
}
.newOrder__products .product-list__items .product-item__price .product-amount {
  width: 25%;
}
.newOrder__products .product-list__items .product-item__price .add-item {
  margin-left: var(--space-s);
  padding-top: 3px;
  padding-right: 0.3px;
}
.newOrder .filter-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  margin-top: 5px;
  border: none;
  border-bottom: 1px solid var(--bc-1);
  padding: var(--space-s) var(--space-s);
}
.newOrder .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--bc-1-lighter-75);
  padding: var(--space-m) calc(var(--space-m) * 1.5);
  margin-top: var(--space-m);
}
.newOrder .pagination .buttons {
  max-width: 120px !important;
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center;
  margin-top: var(--space-s);
}
.newOrder .pagination .buttons .button, .newOrder .pagination .buttons .form#marketing-form .input-file label, .form#marketing-form .input-file .newOrder .pagination .buttons label, .newOrder .pagination .buttons .edit--image .input-file label, .edit--image .input-file .newOrder .pagination .buttons label, .newOrder .pagination .buttons .element--image .input-file label, .element--image .input-file .newOrder .pagination .buttons label, .newOrder .pagination .buttons .add-img-establishment .input-file label, .add-img-establishment .input-file .newOrder .pagination .buttons label {
  margin: 0;
  height: 31px;
  width: 31px;
  display: flex;
  justify-content: center;
  padding: 0;
  padding-top: 2.7px;
  border: 1px solid var(--bc-1);
  color: var(--bc-1);
}
.newOrder .pagination .buttons .button:hover, .newOrder .pagination .buttons .form#marketing-form .input-file label:hover, .form#marketing-form .input-file .newOrder .pagination .buttons label:hover, .newOrder .pagination .buttons .edit--image .input-file label:hover, .edit--image .input-file .newOrder .pagination .buttons label:hover, .newOrder .pagination .buttons .element--image .input-file label:hover, .element--image .input-file .newOrder .pagination .buttons label:hover, .newOrder .pagination .buttons .add-img-establishment .input-file label:hover, .add-img-establishment .input-file .newOrder .pagination .buttons label:hover {
  background-color: var(--bc-1);
  color: white;
}
.newOrder .pagination .buttons .page {
  font-size: small;
}
.newOrder .note {
  margin-top: var(--space-s);
}
.newOrder .order-summary__container {
  background-color: white;
  height: -moz-fit-content;
  height: fit-content;
  padding: var(--space-xs);
  border: 1px solid rgba(137, 98, 82, 0.25);
  margin-bottom: var(--space-m);
}
.newOrder .order-summary__container--suggestions {
  background-color: var(--bc-1-lighter-75);
}
.newOrder .order-summary__title {
  margin: auto;
  padding: var(--space-m);
  border-bottom: 1px solid rgba(137, 98, 82, 0.25);
  text-align: center;
}
.newOrder .order-summary__products {
  padding: var(--space-m);
}
.newOrder .order-summary__unit-price {
  margin-left: auto;
}
.newOrder .order-summary__unit-price.body-font, .newOrder .order-summary__unit-price.select-pure__select, .newOrder .articles-related .content .articles-wrapper article .article-text p.order-summary__unit-price, .articles-related .content .articles-wrapper article .article-text .newOrder p.order-summary__unit-price, .newOrder .article__socials .date p.order-summary__unit-price, .article__socials .date .newOrder p.order-summary__unit-price, .newOrder .form .form-block input.order-summary__unit-price[type=text], .form .form-block .newOrder input.order-summary__unit-price[type=text],
.newOrder .form .form-block input.order-summary__unit-price[type=textarea],
.form .form-block .newOrder input.order-summary__unit-price[type=textarea],
.newOrder .form .form-block input.order-summary__unit-price[type=email],
.form .form-block .newOrder input.order-summary__unit-price[type=email],
.newOrder .form .form-block input.order-summary__unit-price[type=tel],
.form .form-block .newOrder input.order-summary__unit-price[type=tel],
.newOrder .form .form-block input.order-summary__unit-price[type=number],
.form .form-block .newOrder input.order-summary__unit-price[type=number],
.newOrder .form .form-block input.order-summary__unit-price[type=date],
.form .form-block .newOrder input.order-summary__unit-price[type=date],
.newOrder .form .form-block input.order-summary__unit-price[type=password],
.form .form-block .newOrder input.order-summary__unit-price[type=password],
.newOrder .form .form-block textarea.order-summary__unit-price,
.form .form-block .newOrder textarea.order-summary__unit-price,
.newOrder .form .form-block select.order-summary__unit-price,
.form .form-block .newOrder select.order-summary__unit-price, .newOrder .form .form-block label.order-summary__unit-price, .form .form-block .newOrder label.order-summary__unit-price, .newOrder body.order-summary__unit-price, .newOrder .profile-page input.order-summary__unit-price, .profile-page .newOrder input.order-summary__unit-price, .newOrder .order-summary__unit-price.filter-input {
  margin-right: 0;
}
.newOrder .order-summary__finish {
  padding-bottom: var(--space-l);
}
.newOrder .order-summary__finish .button, .newOrder .order-summary__finish .form#marketing-form .input-file label, .form#marketing-form .input-file .newOrder .order-summary__finish label, .newOrder .order-summary__finish .edit--image .input-file label, .edit--image .input-file .newOrder .order-summary__finish label, .newOrder .order-summary__finish .element--image .input-file label, .element--image .input-file .newOrder .order-summary__finish label, .newOrder .order-summary__finish .add-img-establishment .input-file label, .add-img-establishment .input-file .newOrder .order-summary__finish label {
  margin-left: 0;
  text-align: center;
  display: flex;
  justify-content: center;
}
.newOrder .order-summary__total {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.cart-product {
  display: flex;
  margin-bottom: var(--space-s);
}
.cart-product:last-child {
  margin-bottom: 0;
}
.cart-product .remove-item {
  margin-right: var(--space-xs);
}
.cart-product .body-font, .cart-product .select-pure__select, .cart-product .articles-related .content .articles-wrapper article .article-text p, .articles-related .content .articles-wrapper article .article-text .cart-product p, .cart-product .article__socials .date p, .article__socials .date .cart-product p, .cart-product .form .form-block input[type=text], .form .form-block .cart-product input[type=text],
.cart-product .form .form-block input[type=textarea],
.form .form-block .cart-product input[type=textarea],
.cart-product .form .form-block input[type=email],
.form .form-block .cart-product input[type=email],
.cart-product .form .form-block input[type=tel],
.form .form-block .cart-product input[type=tel],
.cart-product .form .form-block input[type=number],
.form .form-block .cart-product input[type=number],
.cart-product .form .form-block input[type=date],
.form .form-block .cart-product input[type=date],
.cart-product .form .form-block input[type=password],
.form .form-block .cart-product input[type=password],
.cart-product .form .form-block textarea,
.form .form-block .cart-product textarea,
.cart-product .form .form-block select,
.form .form-block .cart-product select, .cart-product .form .form-block label, .form .form-block .cart-product label, .cart-product body, .cart-product .profile-page input, .profile-page .cart-product input, .cart-product .newOrder .filter-input, .newOrder .cart-product .filter-input {
  margin-right: var(--space-xs);
}

.remove-item {
  padding-left: 1.3px;
  padding-top: 1.9px;
}

.add-item,
.remove-item {
  width: 19px;
  min-width: 19px;
  height: 19px;
  border-radius: 50%;
  font-size: 17px;
  border: 1px solid var(--bc-1);
  color: var(--bc-1);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s linear;
}
.add-item::-moz-selection, .remove-item::-moz-selection {
  background-color: transparent;
}
.add-item::selection,
.remove-item::selection {
  background-color: transparent;
}
.add-item:hover,
.remove-item:hover {
  background-color: var(--bc-1);
  color: var(--white);
  transition: 0.25s linear;
}

.delete-item {
  width: 19px;
  min-width: 19px;
  height: 19px;
  cursor: pointer;
}

.add-item:hover {
  transform: rotate(90deg);
  padding-top: 1px !important;
}

#checkout:not(.loaded) .checkout__cart {
  padding: 0;
}
#checkout:not(.loaded) .checkout__cart .checkout__cart-header {
  margin: var(--space-m);
}
#checkout:not(.loaded) .checkout__cart .private-area-loader {
  margin-top: 0;
}

.orders__filter {
  background-color: var(--bc-1-lighter-75);
  margin-top: var(--space-m);
  display: grid;
  grid-template-columns: 6fr 4fr 6fr;
  gap: var(--space-l);
  padding: var(--space-m) var(--space-l);
  row-gap: var(--space-m);
}
@media (max-width: 600px) {
  .orders__filter {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 370px) {
  .orders__filter {
    grid-template-columns: 1fr;
    padding: var(--space-m);
  }
}
.orders__filter .block-form {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 600px) {
  .orders__filter .block-form:nth-child(3) {
    grid-column-end: span 2;
  }
}
@media (max-width: 370px) {
  .orders__filter .block-form:nth-child(3) {
    grid-column-end: span 1;
  }
}
.orders__filter .block-form input {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  align-self: center;
  margin-top: 5px;
  border: none;
  height: 35px;
  border-bottom: 1px solid var(--bc-1);
  padding: var(--space-s) var(--space-s);
}
.orders__filter .block-form label {
  padding: 0 !important;
  align-self: center;
  margin-right: var(--space-m);
  width: -moz-fit-content;
  width: fit-content;
  line-height: 11px;
  margin-right: auto;
  font-weight: 600;
}
.orders__filter .block-form.filter-buttons {
  grid-column: 3;
  justify-content: flex-end;
  margin: 0;
  align-items: flex-end;
}
@media (max-width: 600px) {
  .orders__filter .block-form.filter-buttons {
    grid-column: 2;
  }
}
@media (max-width: 370px) {
  .orders__filter .block-form.filter-buttons {
    grid-column: 1;
  }
}

.orders__filter {
  display: flex;
  flex-direction: column;
}
.orders__filter .filter__options {
  display: flex;
  justify-content: flex-start;
  gap: 25px;
}
.orders__filter .filter__options .block-form {
  margin: 0;
}
.orders__filter .filter-buttons {
  display: flex;
  flex-direction: row;
}

.favBtn {
  margin-right: var(--space-s);
  padding-top: 3px;
  padding-left: 0.3px;
  cursor: pointer;
}

.contracts__general-data {
  width: 100%;
}
.contracts__general-data {
  margin-top: var(--space-m);
}
.contracts .list-items__header {
  background-color: var(--bc-1);
  padding: 20px;
  width: 100%;
}
.contracts .list-items__header span {
  color: white;
}
.contracts .contracts__data {
  display: flex;
}
@media (max-width: 480px) {
  .contracts .contracts__data {
    flex-wrap: wrap;
  }
}
.contracts .contracts__data-block {
  width: 33.333%;
  padding: 20px;
}
@media (max-width: 480px) {
  .contracts .contracts__data-block {
    width: 100%;
  }
}
.contracts .contracts__data-block:nth-child(odd) {
  background: #F8F4F3;
}
.contracts .contracts__data-block:nth-child(even) {
  background: #E5DCD7;
}
.contracts .contracts__data-block .title {
  border-bottom: 1px solid var(--bc-1);
  display: flex;
  align-items: center;
  padding-bottom: 5px;
}
.contracts .contracts__data-block .title span {
  font-weight: 800;
  font-size: 1.1em;
  margin-left: 10px;
}
.contracts .contracts__data-block .title img {
  width: 40px;
}
.contracts .contracts__data-block .info__item {
  display: flex;
  flex-direction: column;
}
.contracts .contracts__data-block .info__item .item__name {
  text-transform: uppercase;
  font-weight: 600;
}
.contracts .contracts__data-block .info__item .item__value {
  font-weight: 400;
}

.list_contracts__general-data {
  width: 100%;
}
.list_contracts__general-data {
  margin-top: var(--space-m);
}
.list_contracts .list-items__header {
  background-color: var(--bc-1);
  padding: 20px;
  width: 100%;
}
.list_contracts .list-items__header span {
  color: white;
}
.list_contracts .list_contracts__data {
  display: flex;
}
@media (max-width: 480px) {
  .list_contracts .list_contracts__data {
    flex-wrap: wrap;
  }
}
.list_contracts .list_contracts__data-block {
  width: 33.333%;
  padding: 20px;
}
@media (max-width: 480px) {
  .list_contracts .list_contracts__data-block {
    width: 100%;
  }
}
.list_contracts .list_contracts__data-block:nth-child(odd) {
  background: #F8F4F3;
}
.list_contracts .list_contracts__data-block:nth-child(even) {
  background: #E5DCD7;
}
.list_contracts .list_contracts__data-block .title {
  border-bottom: 1px solid var(--bc-1);
  display: flex;
  align-items: center;
  padding-bottom: 5px;
}
.list_contracts .list_contracts__data-block .title span {
  font-weight: 800;
  font-size: 1.1em;
  margin-left: 10px;
}
.list_contracts .list_contracts__data-block .title img {
  width: 40px;
}
.list_contracts .list_contracts__data-block .info__item {
  display: flex;
  flex-direction: column;
}
.list_contracts .list_contracts__data-block .info__item .item__name {
  text-transform: uppercase;
  font-weight: 600;
}
.list_contracts .list_contracts__data-block .info__item .item__value {
  font-weight: 400;
}

.pendiente_firmar__general-data {
  width: 100%;
}
.pendiente_firmar__general-data {
  margin-top: var(--space-m);
}
.pendiente_firmar .list-items__header {
  background-color: var(--bc-1);
  padding: 20px;
  width: 100%;
}
.pendiente_firmar .list-items__header span {
  color: white;
}
.pendiente_firmar .pendiente_firmar__data {
  display: flex;
}
@media (max-width: 480px) {
  .pendiente_firmar .pendiente_firmar__data {
    flex-wrap: wrap;
  }
}
.pendiente_firmar .pendiente_firmar__data-block {
  width: 33.333%;
  padding: 20px;
}
@media (max-width: 480px) {
  .pendiente_firmar .pendiente_firmar__data-block {
    width: 100%;
  }
}
.pendiente_firmar .pendiente_firmar__data-block:nth-child(odd) {
  background: #F8F4F3;
}
.pendiente_firmar .pendiente_firmar__data-block:nth-child(even) {
  background: #E5DCD7;
}
.pendiente_firmar .pendiente_firmar__data-block .title {
  border-bottom: 1px solid var(--bc-1);
  display: flex;
  align-items: center;
  padding-bottom: 5px;
}
.pendiente_firmar .pendiente_firmar__data-block .title span {
  font-weight: 800;
  font-size: 1.1em;
  margin-left: 10px;
}
.pendiente_firmar .pendiente_firmar__data-block .title img {
  width: 40px;
}
.pendiente_firmar .pendiente_firmar__data-block .info__item {
  display: flex;
  flex-direction: column;
}
.pendiente_firmar .pendiente_firmar__data-block .info__item .item__name {
  text-transform: uppercase;
  font-weight: 600;
}
.pendiente_firmar .pendiente_firmar__data-block .info__item .item__value {
  font-weight: 400;
}

.history .list-items__grid {
  grid-template-columns: 1fr 1fr 2fr 1fr 60px;
}
.history .list-items__grid.pending {
  grid-template-columns: 1fr 2fr 1fr 0.5fr;
}
.history .id-order {
  background: var(--bc-1);
  color: white;
  padding: 5px 15px;
  font-weight: 600;
  margin: 10px 0;
}
.history .history__container .history__orders .advice-container {
  display: grid;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-xl);
  gap: var(--space-l);
  width: 50%;
  margin: auto;
}
@media (max-width: 550px) {
  .history .history__container .history__orders .advice-container {
    width: 80%;
  }
}
@media (max-width: 450px) {
  .history .history__container .history__orders .advice-container {
    width: 100%;
  }
}
.history .history__container .history__orders .advice-container .advice-item {
  position: relative;
  text-align: center;
  padding: var(--space-l);
  overflow: hidden;
  border-radius: 13px;
}
.history .history__container .history__orders .advice-container .advice-item .order-icon {
  max-width: 20%;
  padding-bottom: 20px;
}
.history .history__container .history__orders .advice-container .advice-item .lead-font, .history .history__container .history__orders .advice-container .advice-item .articles-related .content .articles-wrapper article .article-text .article-links a, .articles-related .content .articles-wrapper article .article-text .article-links .history .history__container .history__orders .advice-container .advice-item a, .history .history__container .history__orders .advice-container .advice-item .articles-related .content .articles-wrapper article .article-text a h3.headline-font, .articles-related .content .articles-wrapper article .article-text a .history .history__container .history__orders .advice-container .advice-item h3.headline-font, .history .history__container .history__orders .advice-container .advice-item .articles-related .content .articles-wrapper article .article-text h3.date, .articles-related .content .articles-wrapper article .article-text .history .history__container .history__orders .advice-container .advice-item h3.date, .history .history__container .history__orders .advice-container .advice-item .form .legal-text__title, .form .history .history__container .history__orders .advice-container .advice-item .legal-text__title {
  font-style: normal;
  padding-bottom: 20px;
}
.history .history__container .history__orders .advice-container .advice-item .button, .history .history__container .history__orders .advice-container .advice-item .form#marketing-form .input-file label, .form#marketing-form .input-file .history .history__container .history__orders .advice-container .advice-item label, .history .history__container .history__orders .advice-container .advice-item .edit--image .input-file label, .edit--image .input-file .history .history__container .history__orders .advice-container .advice-item label, .history .history__container .history__orders .advice-container .advice-item .element--image .input-file label, .element--image .input-file .history .history__container .history__orders .advice-container .advice-item label, .history .history__container .history__orders .advice-container .advice-item .add-img-establishment .input-file label, .add-img-establishment .input-file .history .history__container .history__orders .advice-container .advice-item label {
  margin: auto;
  margin-top: var(--space-l);
}
.history .last-orders {
  grid-auto-rows: unset;
}
.history .last-orders__header, .history .last-orders__order {
  display: grid;
  grid-template-columns: 1fr 3fr 130px 40px;
  -moz-column-gap: var(--space-m);
       column-gap: var(--space-m);
}
@media (max-width: 600px) {
  .history .last-orders__header, .history .last-orders__order {
    grid-template-columns: 1fr 3fr 70px 40px;
  }
}
.history .last-orders .profile-table__table-item {
  padding: 2px var(--space-m);
}
.history .last-orders__orders {
  display: flex;
  flex-direction: column;
  padding-bottom: var(--space-s);
}
.history .last-orders__orders .last-orders__order,
.history .last-orders__orders .last-orders__items {
  width: 100%;
}
.history .last-orders__orders .last-orders__order {
  align-items: center;
}
.history .last-orders__orders .last-orders__order .duplicate-order {
  margin: 0;
}
.history .last-orders__orders .last-orders__order .fa-chevron-down {
  font-size: 20px;
  justify-self: center;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.history .last-orders__orders .last-orders__order .fa-chevron-down.active {
  transform: rotate(180deg);
}
.history .last-orders__orders .last-orders__items {
  display: none;
}
.history .last-orders__orders .last-orders__items last-orders__item {
  width: 100%;
}
@media (max-width: 480px) {
  .history__order.list-items__grid.pending {
    grid-template-columns: 2fr 1fr 0.5fr;
  }
  .history__order.list-items__grid.pending .list-items__column:nth-child(1) {
    grid-column: span 2;
    font-weight: 600;
  }
  .history__order.list-items__grid.pending .list-items__column:nth-child(2) {
    grid-column: span 2;
  }
  .history__order.list-items__grid.pending .list-items__column:nth-child(3) {
    grid-column: 1;
  }
  .history__order.list-items__grid.pending .list-items__column:nth-child(4) {
    grid-column: 3;
    grid-row: 1/span 3;
    background-color: rgba(63, 43, 35, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  #pending .history__orders {
    row-gap: var(--space-m);
  }
  #pending .history__orders .history__order-header {
    display: none;
  }
}

.invoices .invoices_selectors__container {
  min-height: 600px;
  background-color: #f0eae8;
}
@media (max-width: 700px) {
  .invoices .invoices_selectors__container {
    min-height: auto;
  }
}
.invoices .invoices_selectors__container .explanation-coins {
  margin-top: var(--space-m);
  padding: var(--space-m);
}
.invoices .invoices_selectors__container .invoices__selectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-m);
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 140px;
}
@media (max-width: 700px ) {
  .invoices .invoices_selectors__container .invoices__selectors {
    width: 90%;
    grid-template-columns: 1fr;
    padding-top: 0;
  }
}
.invoices .invoices_selectors__container .invoices__selectors .invoices__selector {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 6px;
}
@media (max-width: 700px ) {
  .invoices .invoices_selectors__container .invoices__selectors .invoices__selector {
    padding-top: var(--space-l);
    padding-bottom: var(--space-l);
  }
}
.invoices .invoices_selectors__container .invoices__selectors .invoices__selector h5 {
  font-style: normal;
  padding-bottom: 20px;
}
.invoices .invoices_selectors__container .invoices__selectors .invoices__selector .invoice-icon {
  max-width: 20%;
  padding-bottom: 20px;
}
@media (max-width: 700px) {
  .invoices .invoices_selectors__container .invoices__selectors .invoices__selector .invoice-icon.second {
    padding-top: 10px;
  }
}
.invoices .invoices_selectors__container .invoices__selectors .invoices__selector .button-flex {
  display: flex;
  justify-content: center;
  margin: auto;
  padding-top: var(--space-l);
}
@media (max-width: 700px) {
  .invoices .invoices_selectors__container .invoices__selectors .invoices__selector .button-flex {
    padding-bottom: 10px;
  }
}
@media (max-width: 1024px) {
  .invoices .invoices_selectors__container .invoices__selectors .invoices__selector .button-flex.first {
    padding-top: 65px;
  }
}
@media (max-width: 940px) {
  .invoices .invoices_selectors__container .invoices__selectors .invoices__selector .button-flex.first {
    padding-top: 53px;
  }
}
@media (max-width: 750px) {
  .invoices .invoices_selectors__container .invoices__selectors .invoices__selector .button-flex.first {
    padding-top: 21px;
  }
}
@media (max-width: 700px) {
  .invoices .invoices_selectors__container .invoices__selectors .invoices__selector .button-flex.first {
    padding-top: 20px;
  }
}
.invoices .invoices_selectors__container .invoices__selectors .invoices__selector .lead-font, .invoices .invoices_selectors__container .invoices__selectors .invoices__selector .articles-related .content .articles-wrapper article .article-text .article-links a, .articles-related .content .articles-wrapper article .article-text .article-links .invoices .invoices_selectors__container .invoices__selectors .invoices__selector a, .invoices .invoices_selectors__container .invoices__selectors .invoices__selector .articles-related .content .articles-wrapper article .article-text a h3.headline-font, .articles-related .content .articles-wrapper article .article-text a .invoices .invoices_selectors__container .invoices__selectors .invoices__selector h3.headline-font, .invoices .invoices_selectors__container .invoices__selectors .invoices__selector .articles-related .content .articles-wrapper article .article-text h3.date, .articles-related .content .articles-wrapper article .article-text .invoices .invoices_selectors__container .invoices__selectors .invoices__selector h3.date, .invoices .invoices_selectors__container .invoices__selectors .invoices__selector .form .legal-text__title, .form .invoices .invoices_selectors__container .invoices__selectors .invoices__selector .legal-text__title {
  position: relative;
  z-index: 1;
}
.invoices .invoices_selectors__container .invoices__selectors .invoices__selector .back {
  position: absolute;
  top: 0;
  z-index: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--bc-1);
  transform: skew(30deg) translateX(-110%);
  transition: all 0.3s cubic-bezier(0, 0.43, 0, 0.9);
}
.invoices .invoices_selectors__container .invoices__selectors .invoices__selector:last-child {
  border-left: 1px solid black;
}
@media (max-width:700px) {
  .invoices .invoices_selectors__container .invoices__selectors .invoices__selector:last-child {
    border-left: unset;
    border-top: 1px solid black;
  }
}
.invoices .list-items__grid {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
}
.invoices .list-items__grid .fad.fa-file-pdf {
  font-size: 20px;
  cursor: pointer;
}
@media (max-device-width: 480px) and (orientation: portrait) {
  .invoices .list-items__grid .right {
    text-align: center;
  }
}
@media (max-device-width: 480px) and (orientation: portrait) {
  .invoices .list-items__grid:nth-child(odd) {
    background-color: #E5DCD7;
  }
}
.invoices .list-items__item {
  padding: var(--space-xs) 0;
}
.invoices .invoices__container .history__orders {
  padding: var(--space-m) calc(var(--space-m) * 1.5);
}
@media (max-width: 650px) {
  .invoices .invoices__container .history__orders {
    row-gap: var(--space-xs);
  }
  .invoices .invoices__container .history__orders .list-items__header {
    display: none;
  }
}
@media (max-width: 650px) {
  .invoices .invoices__container .history__orders .list-items__item {
    grid-template-columns: 1fr;
  }
  .invoices .invoices__container .history__orders .list-items__item .invoice::before {
    content: "Nº Factura: ";
  }
  .invoices .invoices__container .history__orders .list-items__item .reference::before {
    content: "Referencia: ";
  }
  .invoices .invoices__container .history__orders .list-items__item .date {
    font-weight: 600;
  }
  .invoices .invoices__container .history__orders .list-items__item .date::before {
    content: "Fecha: ";
  }
  .invoices .invoices__container .history__orders .list-items__item .import {
    font-weight: 600;
  }
}
.invoices .invoices__container .history__orders .list-items__item .paid {
  font-weight: bold;
  color: #338033;
}
.invoices .invoices__container .history__orders .list-items__item .overdue {
  font-weight: bold;
  color: #b92424;
}
.invoices .invoices__container .history__orders .list-items__item .pending {
  font-weight: bold;
  color: #d68c05;
}
.invoices .invoices__container .history__orders .list-items__item a {
  width: -moz-fit-content;
  width: fit-content;
  justify-self: center;
}
.invoices .invoices__container .history__orders .advice-container {
  display: grid;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-xl);
  gap: var(--space-l);
  width: 50%;
  margin: auto;
}
@media (max-width: 550px) {
  .invoices .invoices__container .history__orders .advice-container {
    width: 80%;
  }
}
@media (max-width: 450px) {
  .invoices .invoices__container .history__orders .advice-container {
    width: 100%;
  }
}
.invoices .invoices__container .history__orders .advice-items .advice-item {
  position: relative;
  text-align: center;
  padding: var(--space-l);
  overflow: hidden;
  border-radius: 13px;
}
.invoices .invoices__container .history__orders .advice-items .advice-item .order-icon {
  max-width: 20%;
  padding-bottom: 20px;
}
.invoices .invoices__container .history__orders .advice-items .advice-item .lead-font, .invoices .invoices__container .history__orders .advice-items .advice-item .articles-related .content .articles-wrapper article .article-text .article-links a, .articles-related .content .articles-wrapper article .article-text .article-links .invoices .invoices__container .history__orders .advice-items .advice-item a, .invoices .invoices__container .history__orders .advice-items .advice-item .articles-related .content .articles-wrapper article .article-text a h3.headline-font, .articles-related .content .articles-wrapper article .article-text a .invoices .invoices__container .history__orders .advice-items .advice-item h3.headline-font, .invoices .invoices__container .history__orders .advice-items .advice-item .articles-related .content .articles-wrapper article .article-text h3.date, .articles-related .content .articles-wrapper article .article-text .invoices .invoices__container .history__orders .advice-items .advice-item h3.date, .invoices .invoices__container .history__orders .advice-items .advice-item .form .legal-text__title, .form .invoices .invoices__container .history__orders .advice-items .advice-item .legal-text__title {
  font-style: normal;
  padding-bottom: 20px;
}
.invoices .invoices__container .history__orders .advice-items .advice-item .button-flex {
  display: flex;
  justify-content: center;
  padding-top: var(--space-l);
}
.invoices .invoices__container .invoices__filter {
  background-color: var(--bc-1-lighter-75);
  margin-top: var(--space-m);
  display: grid;
  grid-template-columns: 0.4fr 0.4fr 1fr;
  padding: var(--space-m) var(--space-l);
}
@media (max-width:670px) {
  .invoices .invoices__container .invoices__filter {
    grid-template-columns: 1fr;
  }
}
.invoices .invoices__container .invoices__filter .block-form {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width:670px) {
  .invoices .invoices__container .invoices__filter .block-form {
    width: 100%;
    margin-left: 0;
  }
}
.invoices .invoices__container .invoices__filter .block-form input[type=date] {
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width:670px) {
  .invoices .invoices__container .invoices__filter .block-form input[type=date] {
    width: 100%;
  }
}
.invoices .invoices__container .invoices__filter .block-form label {
  padding: 0;
  margin-bottom: var(--space-xs);
  align-self: flex-start;
}
.invoices .invoices__container .digital-invoice {
  padding: 20px;
  background-color: #f0eae8;
}
.invoices .invoices__container .digital-invoice p {
  margin: var(--space-m) 0;
}
.invoices .invoices__container .digital-invoice .content-options {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.invoices .invoices__container .digital-invoice .content-options .option-left {
  border-right: 1px solid black;
}
.invoices .invoices__container .digital-invoice .content-options .option-left, .invoices .invoices__container .digital-invoice .content-options .option-right {
  padding: 0px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.invoices .invoices__container .digital-invoice .content-options .option-left .content-image, .invoices .invoices__container .digital-invoice .content-options .option-right .content-image {
  text-align: center;
}
.invoices .invoices__container .digital-invoice .content-options .option-left .content-image img, .invoices .invoices__container .digital-invoice .content-options .option-right .content-image img {
  width: 100px;
}
.invoices .invoices__container .digital-invoice .content-options .option-left .text, .invoices .invoices__container .digital-invoice .content-options .option-right .text {
  text-align: center;
}
.invoices .invoices__container .digital-invoice .content-options .option-left .text h5, .invoices .invoices__container .digital-invoice .content-options .option-right .text h5 {
  margin: var(--space-m) 0;
}
.invoices .invoices__container .digital-invoice .content-options .option-left .text p, .invoices .invoices__container .digital-invoice .content-options .option-right .text p {
  margin: 0;
}
.invoices .invoices__container .digital-invoice .digital-button {
  margin: 50px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.invoices .invoices__container .digital-invoice .digital-button .info {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.invoices .invoices__container .digital-invoice .digital-button .info .confirm {
  margin: 0 auto !important;
}
.invoices .invoices__container .digital-invoice .digital-button input {
  width: 50%;
}
.invoices .invoices__container .digital-invoice .digital-button a {
  margin-top: 25px;
}

.accounting__container .history__orders {
  grid-auto-rows: unset;
}
.accounting__container .history__orders .buttons .grid-buttons {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-bottom: var(--space-l);
}
.accounting__container .history__orders .buttons .grid-buttons .button, .accounting__container .history__orders .buttons .grid-buttons .form#marketing-form .input-file label, .form#marketing-form .input-file .accounting__container .history__orders .buttons .grid-buttons label, .accounting__container .history__orders .buttons .grid-buttons .edit--image .input-file label, .edit--image .input-file .accounting__container .history__orders .buttons .grid-buttons label, .accounting__container .history__orders .buttons .grid-buttons .element--image .input-file label, .element--image .input-file .accounting__container .history__orders .buttons .grid-buttons label, .accounting__container .history__orders .buttons .grid-buttons .add-img-establishment .input-file label, .add-img-establishment .input-file .accounting__container .history__orders .buttons .grid-buttons label {
  margin: 0 var(--space-s);
}

.technical-support .technical-support_selectors__container {
  min-height: 600px;
  background-color: #f0eae8;
}
@media (max-width: 700px) {
  .technical-support .technical-support_selectors__container {
    min-height: auto;
  }
}
.technical-support .technical-support_selectors__container .explanation-coins {
  margin-top: var(--space-m);
  padding: var(--space-m);
}
.technical-support .technical-support_selectors__container .technical-support__selectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-m);
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 140px;
}
@media (max-width: 700px ) {
  .technical-support .technical-support_selectors__container .technical-support__selectors {
    width: 90%;
    grid-template-columns: 1fr;
    padding-top: 0;
  }
}
.technical-support .technical-support_selectors__container .technical-support__selectors .technical-support__selector {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 6px;
}
@media (max-width: 700px ) {
  .technical-support .technical-support_selectors__container .technical-support__selectors .technical-support__selector {
    padding-top: var(--space-l);
    padding-bottom: var(--space-l);
  }
}
.technical-support .technical-support_selectors__container .technical-support__selectors .technical-support__selector h5 {
  font-style: normal;
  padding-bottom: 20px;
}
.technical-support .technical-support_selectors__container .technical-support__selectors .technical-support__selector .invoice-icon {
  max-width: 20%;
  padding-bottom: 20px;
}
@media (max-width: 700px) {
  .technical-support .technical-support_selectors__container .technical-support__selectors .technical-support__selector .invoice-icon.second {
    padding-top: 10px;
  }
}
.technical-support .technical-support_selectors__container .technical-support__selectors .technical-support__selector .button-flex {
  display: flex;
  justify-content: center;
  margin: auto;
  padding-top: var(--space-l);
}
@media (max-width: 700px) {
  .technical-support .technical-support_selectors__container .technical-support__selectors .technical-support__selector .button-flex {
    padding-bottom: 10px;
  }
}
@media (max-width: 1024px) {
  .technical-support .technical-support_selectors__container .technical-support__selectors .technical-support__selector .button-flex.first {
    padding-top: 65px;
  }
}
@media (max-width: 940px) {
  .technical-support .technical-support_selectors__container .technical-support__selectors .technical-support__selector .button-flex.first {
    padding-top: 53px;
  }
}
@media (max-width: 750px) {
  .technical-support .technical-support_selectors__container .technical-support__selectors .technical-support__selector .button-flex.first {
    padding-top: 21px;
  }
}
@media (max-width: 700px) {
  .technical-support .technical-support_selectors__container .technical-support__selectors .technical-support__selector .button-flex.first {
    padding-top: 20px;
  }
}
.technical-support .technical-support_selectors__container .technical-support__selectors .technical-support__selector .lead-font, .technical-support .technical-support_selectors__container .technical-support__selectors .technical-support__selector .articles-related .content .articles-wrapper article .article-text .article-links a, .articles-related .content .articles-wrapper article .article-text .article-links .technical-support .technical-support_selectors__container .technical-support__selectors .technical-support__selector a, .technical-support .technical-support_selectors__container .technical-support__selectors .technical-support__selector .articles-related .content .articles-wrapper article .article-text a h3.headline-font, .articles-related .content .articles-wrapper article .article-text a .technical-support .technical-support_selectors__container .technical-support__selectors .technical-support__selector h3.headline-font, .technical-support .technical-support_selectors__container .technical-support__selectors .technical-support__selector .articles-related .content .articles-wrapper article .article-text h3.date, .articles-related .content .articles-wrapper article .article-text .technical-support .technical-support_selectors__container .technical-support__selectors .technical-support__selector h3.date, .technical-support .technical-support_selectors__container .technical-support__selectors .technical-support__selector .form .legal-text__title, .form .technical-support .technical-support_selectors__container .technical-support__selectors .technical-support__selector .legal-text__title {
  position: relative;
  z-index: 1;
}
.technical-support .technical-support_selectors__container .technical-support__selectors .technical-support__selector .back {
  position: absolute;
  top: 0;
  z-index: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--bc-1);
  transform: skew(30deg) translateX(-110%);
  transition: all 0.3s cubic-bezier(0, 0.43, 0, 0.9);
}
.technical-support .technical-support_selectors__container .technical-support__selectors .technical-support__selector:last-child {
  border-left: 1px solid black;
}
@media (max-width:700px) {
  .technical-support .technical-support_selectors__container .technical-support__selectors .technical-support__selector:last-child {
    border-left: unset;
    border-top: 1px solid black;
  }
}
.technical-support .technical-support__container .history__orders {
  padding: var(--space-m) calc(var(--space-m) * 1.5);
}
@media (max-width: 650px) {
  .technical-support .technical-support__container .history__orders {
    row-gap: var(--space-m);
  }
  .technical-support .technical-support__container .history__orders .list-items__header {
    display: none;
  }
}
@media (max-width: 650px) {
  .technical-support .technical-support__container .history__orders .list-items__item {
    grid-template-columns: 1fr 100px 30px;
  }
  .technical-support .technical-support__container .history__orders .list-items__item .invoice {
    grid-column: 1;
  }
  .technical-support .technical-support__container .history__orders .list-items__item .invoice::before {
    content: "Nº Factura: ";
  }
  .technical-support .technical-support__container .history__orders .list-items__item .reference {
    grid-column: 1;
  }
  .technical-support .technical-support__container .history__orders .list-items__item .reference::before {
    content: "Referencia: ";
  }
  .technical-support .technical-support__container .history__orders .list-items__item .date {
    grid-column: 1;
    grid-row: 1;
    font-weight: 600;
  }
  .technical-support .technical-support__container .history__orders .list-items__item .import {
    grid-row: 1/span 3;
    font-weight: 600;
  }
}
.technical-support .technical-support__container .history__orders .list-items__item a {
  width: -moz-fit-content;
  width: fit-content;
  justify-self: center;
}
@media (max-width: 650px) {
  .technical-support .technical-support__container .history__orders .list-items__item a {
    grid-row: 1/span 3;
  }
}
.technical-support .technical-support__container .history__orders .advice-container {
  display: grid;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-xl);
  gap: var(--space-l);
  width: 50%;
  margin: auto;
}
@media (max-width: 550px) {
  .technical-support .technical-support__container .history__orders .advice-container {
    width: 80%;
  }
}
@media (max-width: 450px) {
  .technical-support .technical-support__container .history__orders .advice-container {
    width: 100%;
  }
}
.technical-support .technical-support__container .history__orders .advice-items .advice-item {
  position: relative;
  text-align: center;
  padding: var(--space-l);
  overflow: hidden;
  border-radius: 13px;
}
.technical-support .technical-support__container .history__orders .advice-items .advice-item .order-icon {
  max-width: 20%;
  padding-bottom: 20px;
}
.technical-support .technical-support__container .history__orders .advice-items .advice-item .lead-font, .technical-support .technical-support__container .history__orders .advice-items .advice-item .articles-related .content .articles-wrapper article .article-text .article-links a, .articles-related .content .articles-wrapper article .article-text .article-links .technical-support .technical-support__container .history__orders .advice-items .advice-item a, .technical-support .technical-support__container .history__orders .advice-items .advice-item .articles-related .content .articles-wrapper article .article-text a h3.headline-font, .articles-related .content .articles-wrapper article .article-text a .technical-support .technical-support__container .history__orders .advice-items .advice-item h3.headline-font, .technical-support .technical-support__container .history__orders .advice-items .advice-item .articles-related .content .articles-wrapper article .article-text h3.date, .articles-related .content .articles-wrapper article .article-text .technical-support .technical-support__container .history__orders .advice-items .advice-item h3.date, .technical-support .technical-support__container .history__orders .advice-items .advice-item .form .legal-text__title, .form .technical-support .technical-support__container .history__orders .advice-items .advice-item .legal-text__title {
  font-style: normal;
  padding-bottom: 20px;
}
.technical-support .technical-support__container .history__orders .advice-items .advice-item .button-flex {
  display: flex;
  justify-content: center;
  padding-top: var(--space-l);
}
.technical-support .technical-support__container .technical-support__filter {
  background-color: var(--bc-1-lighter-75);
  margin-top: var(--space-m);
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: var(--space-xxl);
       column-gap: var(--space-xxl);
  row-gap: var(--space-l);
  padding: var(--space-m) var(--space-l);
}
@media (max-width:670px) {
  .technical-support .technical-support__container .technical-support__filter {
    grid-template-columns: 1fr;
  }
}
.technical-support .technical-support__container .technical-support__filter .block-form {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width:670px) {
  .technical-support .technical-support__container .technical-support__filter .block-form {
    width: 100%;
    margin-left: 0;
  }
}
.technical-support .technical-support__container .technical-support__filter .block-form input[type=date] {
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width:670px) {
  .technical-support .technical-support__container .technical-support__filter .block-form input[type=date] {
    width: 100%;
  }
}
.technical-support .technical-support__container .technical-support__filter .block-form label {
  padding: 0;
  margin-bottom: var(--space-xs);
  align-self: flex-start;
}

.accounting__container .history__orders {
  grid-auto-rows: unset;
}
.accounting__container .history__orders .buttons .grid-buttons {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-bottom: var(--space-l);
}
.accounting__container .history__orders .buttons .grid-buttons .button, .accounting__container .history__orders .buttons .grid-buttons .form#marketing-form .input-file label, .form#marketing-form .input-file .accounting__container .history__orders .buttons .grid-buttons label, .accounting__container .history__orders .buttons .grid-buttons .edit--image .input-file label, .edit--image .input-file .accounting__container .history__orders .buttons .grid-buttons label, .accounting__container .history__orders .buttons .grid-buttons .element--image .input-file label, .element--image .input-file .accounting__container .history__orders .buttons .grid-buttons label, .accounting__container .history__orders .buttons .grid-buttons .add-img-establishment .input-file label, .add-img-establishment .input-file .accounting__container .history__orders .buttons .grid-buttons label {
  margin: 0 var(--space-s);
}

.advice-items {
  display: grid;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-xl);
  gap: var(--space-l);
  margin: auto;
}
@media (max-width: 450px) {
  .advice-items {
    width: 100%;
  }
}
.advice-items .advice-item {
  position: relative;
  text-align: center;
  padding: var(--space-l);
  overflow: hidden;
  border-radius: 13px;
}
.advice-items .advice-item .order-icon {
  max-width: 20%;
  padding-bottom: 20px;
}
.advice-items .advice-item .lead-font, .advice-items .advice-item .articles-related .content .articles-wrapper article .article-text .article-links a, .articles-related .content .articles-wrapper article .article-text .article-links .advice-items .advice-item a, .advice-items .advice-item .articles-related .content .articles-wrapper article .article-text a h3.headline-font, .articles-related .content .articles-wrapper article .article-text a .advice-items .advice-item h3.headline-font, .advice-items .advice-item .articles-related .content .articles-wrapper article .article-text h3.date, .articles-related .content .articles-wrapper article .article-text .advice-items .advice-item h3.date, .advice-items .advice-item .form .legal-text__title, .form .advice-items .advice-item .legal-text__title {
  font-style: normal;
  padding-bottom: 20px;
}
.advice-items .advice-item .button-flex {
  margin-top: var(--space-m);
}
.advice-items .advice-item .button-flex a {
  margin: auto;
}

.history__sales .history__sales-header {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
.history__sales .history__sale {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
.history__sales .history__sale .list-items__column.center {
  justify-self: center;
}

.sales__iframe {
  width: 100%;
  height: 700px;
}

.menu__type {
  max-width: 235px;
  text-align: center;
}
.menu__type--title {
  margin-top: 10px;
  line-height: 1;
  font-weight: 600;
}

.type--item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.type--item label {
  display: flex;
  justify-content: center;
}
.type--container {
  display: flex;
  justify-content: space-around;
  /* HIDE RADIO */
  /* IMAGE STYLES */
  /* CHECKED STYLES */
}
.type--container [type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.type--container [type=radio] + img {
  cursor: pointer;
  padding: 10px;
  border: 2px solid transparent;
  width: 200px;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.type--container [type=radio]:checked + img {
  background: #c9c4c3;
  border-radius: 5px;
}
.type--container.template [type=radio] + .backimg {
  height: 250px;
  width: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.add-img-establishment .input-file {
  margin-top: var(--space-xs);
}
.add-img-establishment .input-file input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.add-img-establishment .input-file label {
  display: inline-block;
  margin-left: 0;
  cursor: pointer;
}
.add-img-establishment .input-file label .input-file__content {
  margin-left: var(--space-xs);
}
.add-img-establishment .input-file input:focus + label,
.add-img-establishment .input-file label:hover {
  background-color: var(--bc-1-lighter-40);
}

.price--selector {
  margin: 2% 0 0 0;
  display: flex;
}
.price--selector div {
  margin: 0 var(--space-s);
}

.localbrand--select {
  background-image: linear-gradient(45deg, transparent 50%, var(--bc-1) 50%), linear-gradient(135deg, var(--bc-1) 50%, transparent 50%), linear-gradient(to right, var(--bc-1), var(--bc-1));
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  margin-top: 5px;
  border: none;
  border-bottom: 1px solid var(--bc-1);
  padding: var(--space-s) var(--space-s);
  margin-bottom: 15px;
}
.localbrand--select :hover {
  cursor: pointer;
}

.menu--title {
  width: 100%;
  background-color: var(--bc-1-lighter-75);
  color: var(--bc-1);
  display: flex;
  flex-direction: column;
  padding: var(--space-m) var(--space-l);
  font-weight: 800;
}
.menu--title .meal_menu-name {
  display: flex;
}

.buttons--title {
  display: flex;
  margin-left: 5%;
}

.button--preview {
  width: 100% !important;
  margin: 25px 0px !important;
  display: flex !important;
  justify-content: space-around;
}
.button--preview button {
  margin-left: 0px;
  width: 45%;
  display: flex;
  justify-content: center;
}
.button--preview a {
  width: 50%;
}

.config-btn {
  margin: 10px 0px;
}

.buttons--pages {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin: 0 20px 0 0;
}

.block--sizes {
  display: flex;
  flex-wrap: wrap;
}
.block--sizes label {
  display: flex;
}

.block-size {
  width: 50%;
  display: flex;
}

.size-img {
  padding: 0px !important;
}

.input-file label {
  margin: 0px !important;
  width: 220px !important;
}

.block--header {
  display: flex;
  align-items: center;
}

.block__info--drop {
  cursor: pointer;
}

.block__width {
  margin-right: 20px;
}

.menu-config .menu-config__list.list-items {
  height: 150vh;
  overflow-y: scroll;
}

.menu-config .menu-config__list.list-items::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #c9c4c3;
}

.menu-config .menu-config__list.list-items::-webkit-scrollbar {
  width: 6px;
  background-color: #c9c4c3;
}

.menu-config .menu-config__list.list-items::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #3F2B23;
}

.block__list-header {
  display: flex;
  justify-content: space-between !important;
}
.block__list-header p.editable, .block__list-header span.editable {
  background-color: white;
  border-bottom: 1px solid var(--bc-1);
  padding: 5px;
}
.block__description {
  font-weight: 300 !important;
  font-size: 0.8em !important;
  font-style: italic !important;
  text-transform: none !important;
}
.block__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.block__actions .button, .block__actions .form#marketing-form .input-file label, .form#marketing-form .input-file .block__actions label, .block__actions .edit--image .input-file label, .edit--image .input-file .block__actions label, .block__actions .element--image .input-file label, .element--image .input-file .block__actions label, .block__actions .add-img-establishment .input-file label, .add-img-establishment .input-file .block__actions label {
  margin: 0;
  padding: 5px;
}

.btn-hidden {
  display: none !important;
}

.closed {
  max-height: 0px;
  overflow: hidden;
  display: none;
}

.active i {
  transform: rotate(-90deg);
  transition: all 0.2s ease-out;
}

.selectelement:nth-child(odd) {
  background: #c9c4c3;
}

.select--allergens {
  display: flex;
  justify-content: space-between;
}
.select--allergens div {
  width: 50%;
}
.select--allergens div input:after {
  color: #C9C4C3;
}
.select--allergens div label {
  font-weight: normal !important;
}
.select--allergens div label img {
  max-width: 15%;
}

.-element {
  font-size: 1.2em;
}

.element__container {
  display: flex;
}
.element__container p.editable, .element__container span.editable {
  background-color: white;
  border-bottom: 1px solid var(--bc-1);
  padding: 5px;
}
.element__container .element__data {
  width: 75%;
  display: flex;
}
.element__container .element__data .data__img {
  width: 25%;
}
.element__container .element__data .element__info {
  width: 75%;
  padding: 0 15px;
}
.element__container .element__data .element__info p {
  margin: 3px 0;
}
.element__container .element__data .element__info .description {
  font-size: 0.8em;
  font-weight: 600;
}
.element__container .element__data .element__info .allergens {
  display: flex;
}
.element__container .element__data .element__info .allergens img {
  width: 25px;
  height: 25px;
  margin: 5px 5px 5px 0;
}
.element__container .element__data .element__info .tmp_allergens {
  display: flex;
}
.element__container .element__data .element__info .tmp_allergens img {
  width: 25px;
  height: 25px;
  margin: 5px 5px 5px 0;
}
.element__container .element__more {
  width: 25%;
  position: relative;
}
.element__container .element__more .element__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.element__container .element__more .element__actions .button, .element__container .element__more .element__actions .form#marketing-form .input-file label, .form#marketing-form .input-file .element__container .element__more .element__actions label, .element__container .element__more .element__actions .edit--image .input-file label, .edit--image .input-file .element__container .element__more .element__actions label, .element__container .element__more .element__actions .element--image .input-file label, .element--image .input-file .element__container .element__more .element__actions label, .element__container .element__more .element__actions .add-img-establishment .input-file label, .add-img-establishment .input-file .element__container .element__more .element__actions label {
  margin: 0;
  padding: 5px;
}
.element__container .element__more .element__price {
  position: absolute;
  bottom: 0;
  right: 0;
  font-weight: 600;
  font-style: italic;
}

.element--image .input-file {
  margin-top: var(--space-xs);
}
.element--image .input-file input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.element--image .input-file label {
  display: inline-block;
  margin-left: 0;
  cursor: pointer;
}
.element--image .input-file label .input-file__content {
  margin-left: var(--space-xs);
  color: white;
}
.element--image .input-file input:focus + label,
.element--image .input-file label:hover {
  background-color: var(--bc-1-lighter-40);
}

.edit--image .input-file {
  margin-top: var(--space-xs);
}
.edit--image .input-file input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.edit--image .input-file label {
  display: inline-block;
  margin-left: 0;
  cursor: pointer;
}
.edit--image .input-file label .input-file__content {
  margin-left: var(--space-xs);
  color: white;
}
.edit--image .input-file input:focus + label,
.edit--image .input-file label:hover {
  background-color: var(--bc-1-lighter-40);
}

.modal-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.05);
  z-index: 10;
}

.element--modal {
  position: fixed;
  background-color: #F0EAE8;
  width: 50%;
  top: 50%;
  left: 50%;
  z-index: 10;
  padding: 20px;
  border-radius: 5px;
  border: 2px #E8991B solid;
  transform: translate(-50%, -50%);
}
@media (max-width: 480px) {
  .element--modal {
    width: 90%;
  }
}

.design--modal {
  width: 80%;
  padding: 20px;
  background-color: white;
  border: solid 2px #E8991B;
  border-radius: 5px;
}

.element--modal_image {
  position: fixed;
  background-color: #F0EAE8;
  width: 500px;
  top: 50%;
  left: 50%;
  z-index: 10;
  padding: 20px;
  border-radius: 5px;
  border: 2px #E8991B solid;
  transform: translate(-50%, -50%);
}

.modal--buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.centered_btn {
  margin: 0 !important;
  margin-top: 10px !important;
}

.edit--image_btn {
  width: 100% !important;
}
.edit--image_btn span {
  width: 100%;
}

.select--allergens div {
  margin-top: 15px;
}

.allergen--checked {
  background-color: #c9c4c3;
}

.allergen_check {
  margin: 3%;
  border: solid #F19F19 1px;
  border-radius: 5%;
  font-size: 0.9em;
  cursor: pointer;
  padding: 1%;
}
.allergen_check img {
  width: 17%;
}

.allergen--edit img {
  width: 15%;
}

.allergen--checked {
  background: linear-gradient(45deg, var(--bc-2-lighter-40), var(--bc-2-darker-40));
  color: white;
}

.hold {
  border: dashed black 1px;
}

.hovered {
  cursor: move;
}

.image--finalize {
  width: 200px;
}

.button--finalize {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 5%;
}

.button--add_block, .button--add_element {
  margin-top: 10px;
}

.content-blocks, .content-pages, .content-elements {
  display: none !important;
}
.content-blocks.active, .content-pages.active, .content-elements.active {
  display: block !important;
}

.selector-option {
  display: flex;
  width: 100%;
  padding: 0;
  background: var(--bc-1-lighter-75);
  text-align: center;
  border-bottom: 1px solid var(--bc-1);
}
.selector-option.three .item-selector-option {
  width: 33.333%;
}
.selector-option.two .item-selector-option {
  width: 50%;
}
.selector-option .item-selector-option {
  border-right: 1px dashed var(--bc-1);
  padding: 10px 0;
  cursor: pointer;
}
.selector-option .item-selector-option:hover, .selector-option .item-selector-option.active {
  background: #c9c4c3;
}
.selector-option .item-selector-option:last-child {
  border: none;
}
.selector-option .item-selector-option p {
  font-weight: 600;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.menu-config .menu-config__list.list-items {
  height: unset;
}

.modal-qr {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  background: var(--bc-1-lighter-75);
  padding: 40px;
  border-radius: 5px;
}
.modal-qr img {
  width: 200px;
  height: 200px !important;
}
.modal-qr i {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.modal-qr.active {
  display: block;
}

.overlay-qr {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bc-1);
  z-index: 4;
  opacity: 0.4;
}
.overlay-qr.active {
  display: block;
}

.buttons--title {
  margin-left: auto;
}
.buttons--title .button span, .buttons--title .form#marketing-form .input-file label span, .form#marketing-form .input-file .buttons--title label span, .buttons--title .add-img-establishment .input-file label span, .add-img-establishment .input-file .buttons--title label span, .buttons--title .element--image .input-file label span, .element--image .input-file .buttons--title label span, .buttons--title .edit--image .input-file label span, .edit--image .input-file .buttons--title label span {
  font-size: 12px;
}
.buttons--title .button i, .buttons--title .form#marketing-form .input-file label i, .form#marketing-form .input-file .buttons--title label i, .buttons--title .add-img-establishment .input-file label i, .add-img-establishment .input-file .buttons--title label i, .buttons--title .element--image .input-file label i, .element--image .input-file .buttons--title label i, .buttons--title .edit--image .input-file label i, .edit--image .input-file .buttons--title label i {
  margin-right: 5px;
}

.select--allergens {
  display: flex;
  flex-wrap: wrap;
}
.select--allergens .allergen_check {
  width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  margin: 2px 0;
  border-radius: 2px;
  gap: 2%;
}
@media (max-width: 480px) {
  .select--allergens .allergen_check {
    width: 50% !important;
  }
}
.select--allergens .allergen_check:nth-child(even) {
  background: #c9c4c3;
}
.select--allergens .allergen_check .image {
  width: 10%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.select--allergens .allergen_check img {
  width: 100%;
  margin: 0;
  padding: 0;
}
.select--allergens .allergen_check .name {
  width: 88%;
  margin: 0;
  padding: 0;
}

.allergen--checked {
  background: linear-gradient(45deg, var(--bc-2-lighter-40), var(--bc-2-darker-40)) !important;
}

.data__img .element__img {
  width: 112px;
  height: 112px;
  -o-object-fit: cover;
     object-fit: cover;
}

.tooltip {
  position: absolute;
  z-index: 1;
  top: -25%;
  left: 80%;
  padding: 3px 5px;
  background-color: #C9C4C3;
  color: black;
  border: black solid 1px;
}

.fas.fa-eye {
  color: rgb(5, 175, 5);
}
.fas.fa-eye-slash {
  color: red;
}

.remove_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.remove_wrapper input:hover {
  cursor: pointer;
}
.remove_wrapper input:checked {
  background: linear-gradient(45deg, var(--bc-2-lighter-40), var(--bc-2-darker-40));
}

.remove_confirm {
  display: flex;
}

.page__style--item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}
.page__style--item label {
  display: flex;
  justify-content: center;
}
.page__style--item input {
  position: absolute;
  opacity: 0;
  width: 0 !important;
  height: 0 !important;
}
.page__style--item input:checked + img {
  background: #c9c4c3;
  border-radius: 5px;
}
.page__style--item img {
  cursor: pointer;
  padding: 10px;
  border: 2px solid transparent;
  width: 80%;
}
.page__style--description {
  text-align: center;
}

.select_all--wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-m);
  margin-bottom: 1%;
  background: #C9C4C3;
}
.select_all--wrapper label :hover,
.select_all--wrapper .select_all :hover {
  cursor: pointer;
}

.printedCopies--wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.printedCopies--wrapper .forms-content .input-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.printedCopies--wrapper .forms-content .input-content #printedCopies {
  margin-top: 20px;
  width: 50%;
}

.button--visible label {
  cursor: pointer;
}
.button--visible .input--visible_element {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.finelize-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.image, .text {
  width: 50%;
}

.text p {
  color: var(--bc-1);
  line-height: 19px;
  font-weight: 600;
}
.text .button--finalize {
  margin: 0 0 20px 0;
}

.forms-content {
  width: 50%;
}
.forms-content .input-content {
  width: 75%;
}
.forms-content .input-content label {
  font-size: smaller;
  color: var(--bc-1);
  line-height: 19px;
  font-weight: 600;
}
.forms-content .input-content input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  margin-top: 5px;
  border: none;
  height: 35px;
  border-bottom: 1px solid var(--bc-1);
  padding: var(--space-s) var(--space-s);
}

.qr-form-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.qr-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
}
.qr-content .text {
  margin-top: 20px;
  text-align: center;
}
.qr-content .text p {
  font-size: smaller;
  color: var(--bc-1);
  line-height: 19px;
  font-weight: 600;
}
.qr-content .qr_text {
  margin: 30px 0;
}
.qr-content .qr {
  margin-bottom: 30px;
}

.button--finalize {
  margin: 0 0 20px 0;
}

.coffee-coins_selectors__container {
  min-height: 600px;
  background-color: #f0eae8;
}
@media (max-width: 700px) {
  .coffee-coins_selectors__container {
    min-height: auto;
  }
}
.coffee-coins_selectors__container .explanation-coins {
  margin-top: var(--space-m);
  padding: var(--space-m);
}
.coffee-coins_selectors__container .coffee-coins__selectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-m);
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 140px;
}
@media (max-width: 700px ) {
  .coffee-coins_selectors__container .coffee-coins__selectors {
    width: 90%;
    grid-template-columns: 1fr;
    padding-top: 0;
  }
}
.coffee-coins_selectors__container .coffee-coins__selectors .coffee-coins__selector {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 6px;
}
@media (max-width: 700px ) {
  .coffee-coins_selectors__container .coffee-coins__selectors .coffee-coins__selector {
    padding-top: var(--space-l);
    padding-bottom: var(--space-l);
  }
}
.coffee-coins_selectors__container .coffee-coins__selectors .coffee-coins__selector h5 {
  font-style: normal;
  padding-bottom: 20px;
}
.coffee-coins_selectors__container .coffee-coins__selectors .coffee-coins__selector .order-icon {
  max-width: 20%;
  padding-bottom: 20px;
}
@media (max-width: 700px) {
  .coffee-coins_selectors__container .coffee-coins__selectors .coffee-coins__selector .order-icon.second {
    padding-top: 10px;
  }
}
.coffee-coins_selectors__container .coffee-coins__selectors .coffee-coins__selector .button-flex {
  display: flex;
  justify-content: center;
  margin: auto;
  padding-top: var(--space-l);
}
@media (max-width: 700px) {
  .coffee-coins_selectors__container .coffee-coins__selectors .coffee-coins__selector .button-flex {
    padding-bottom: 10px;
  }
}
@media (max-width: 1024px) {
  .coffee-coins_selectors__container .coffee-coins__selectors .coffee-coins__selector .button-flex.first {
    padding-top: 65px;
  }
}
@media (max-width: 940px) {
  .coffee-coins_selectors__container .coffee-coins__selectors .coffee-coins__selector .button-flex.first {
    padding-top: 53px;
  }
}
@media (max-width: 750px) {
  .coffee-coins_selectors__container .coffee-coins__selectors .coffee-coins__selector .button-flex.first {
    padding-top: 21px;
  }
}
@media (max-width: 700px) {
  .coffee-coins_selectors__container .coffee-coins__selectors .coffee-coins__selector .button-flex.first {
    padding-top: 20px;
  }
}
.coffee-coins_selectors__container .coffee-coins__selectors .coffee-coins__selector .lead-font, .coffee-coins_selectors__container .coffee-coins__selectors .coffee-coins__selector .articles-related .content .articles-wrapper article .article-text .article-links a, .articles-related .content .articles-wrapper article .article-text .article-links .coffee-coins_selectors__container .coffee-coins__selectors .coffee-coins__selector a, .coffee-coins_selectors__container .coffee-coins__selectors .coffee-coins__selector .articles-related .content .articles-wrapper article .article-text a h3.headline-font, .articles-related .content .articles-wrapper article .article-text a .coffee-coins_selectors__container .coffee-coins__selectors .coffee-coins__selector h3.headline-font, .coffee-coins_selectors__container .coffee-coins__selectors .coffee-coins__selector .articles-related .content .articles-wrapper article .article-text h3.date, .articles-related .content .articles-wrapper article .article-text .coffee-coins_selectors__container .coffee-coins__selectors .coffee-coins__selector h3.date, .coffee-coins_selectors__container .coffee-coins__selectors .coffee-coins__selector .form .legal-text__title, .form .coffee-coins_selectors__container .coffee-coins__selectors .coffee-coins__selector .legal-text__title {
  position: relative;
  z-index: 1;
}
.coffee-coins_selectors__container .coffee-coins__selectors .coffee-coins__selector .back {
  position: absolute;
  top: 0;
  z-index: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--bc-1);
  transform: skew(30deg) translateX(-110%);
  transition: all 0.3s cubic-bezier(0, 0.43, 0, 0.9);
}
.coffee-coins_selectors__container .coffee-coins__selectors .coffee-coins__selector:last-child {
  border-left: 1px solid black;
}
@media (max-width:700px) {
  .coffee-coins_selectors__container .coffee-coins__selectors .coffee-coins__selector:last-child {
    border-left: unset;
    border-top: 1px solid black;
  }
}

.coins {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.coins__number {
  font-weight: 600;
  margin-right: var(--space-s);
}

@media (max-width: 480px) {
  #newOrderCoffee .newOrder__products .product-list__items .product-list__item {
    display: grid;
    grid-template-columns: 1.4fr 4fr 3fr;
    -moz-column-gap: var(--space-m);
         column-gap: var(--space-m);
  }
  #newOrderCoffee .newOrder__products .product-list__items .product-list__item .product-item__price {
    margin-left: 0;
    justify-self: right;
  }
}
#newOrderCoffee .newOrder__products .product-list__items .product-list__item .coffe-image {
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: var(--space-m);
  width: 50px;
  height: 50px;
}
#newOrderCoffee .newOrder__products .product-list__items .product-list__item .product-amount {
  width: 55px !important;
  margin-left: 10px;
}

.establishment-list {
  position: relative;
  background-color: var(--bc-1-lighter-75);
  padding: var(--space-m) calc(var(--space-m) * 1.5);
  margin-top: var(--space-m);
}
@media (max-width: 370px) {
  .establishment-list {
    padding: var(--space-m);
  }
}
.establishment-list__title {
  border-bottom: 1px solid var(--bc-1);
}
.establishment-list__items {
  margin-top: var(--space-s);
}
.establishment-list__items .establishment-item {
  display: flex;
  padding: var(--space-s) 0;
}
.establishment-list__items .establishment-item__price {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.establishment-list__items .establishment-item__price .add-item {
  margin-left: var(--space-s);
  padding-top: 3px;
  padding-right: 0.3px;
}

.checkout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-m);
  grid-template-rows: 82px 1fr;
}
@media (max-width: 1150px) {
  .checkout {
    grid-template-columns: 1fr;
    grid-template-rows: 82px 1fr 1fr;
  }
}
.checkout .banner {
  grid-row: 1 span 2;
}
@media (max-width: 1150px) {
  .checkout .banner {
    grid-row: 3;
  }
}
.checkout__cart {
  grid-auto-rows: auto;
}
.checkout__cart .checkout__items {
  display: grid;
  gap: 0;
}
.checkout__cart .checkout__items .cart-item {
  display: flex;
  padding: var(--space-m) var(--space-s);
  border-bottom: 1px solid var(--bc-1);
  align-items: center;
  justify-content: space-between;
}
.checkout__cart .checkout__items .cart-item__options {
  display: grid;
  grid-template-columns: 90px 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.checkout__cart .checkout__items .cart-item__quantity {
  display: flex;
  margin-right: 16px;
}
.checkout__cart .checkout__items .cart-item__quantity > span {
  background-color: rgba(137, 98, 82, 0.3);
  width: 18px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.checkout__cart .checkout__items .cart-item__quantity > span::-moz-selection {
  background-color: transparent;
}
.checkout__cart .checkout__items .cart-item__quantity > span::selection {
  background-color: transparent;
}
.checkout__cart .checkout__items .cart-item__quantity .quantity {
  width: 43px;
  height: 21px;
  background-color: #f5f0f0;
  font-weight: 600;
  color: var(--bc-1);
  text-align: center;
  font-size: 1.4rem;
}
.checkout__cart .checkout__items .cart-item__price {
  font-weight: 600;
  margin-right: 12px;
  color: var(--bc-1);
}
.checkout__cart .checkout__items .cart-item .remove-item > span {
  transform: translateY(-2px);
}
.checkout__cart--suggestions {
  grid-column: 1;
}
.checkout__buttons {
  grid-column: 1;
  display: flex;
  justify-content: center;
  margin-top: calc(var(--space-m) * 1.5);
  margin-bottom: var(--space-m);
}
@media (max-width: 450px) {
  .checkout__buttons {
    flex-direction: column;
  }
}
.checkout__buttons .button, .checkout__buttons .form#marketing-form .input-file label, .form#marketing-form .input-file .checkout__buttons label, .checkout__buttons .add-img-establishment .input-file label, .add-img-establishment .input-file .checkout__buttons label, .checkout__buttons .element--image .input-file label, .element--image .input-file .checkout__buttons label, .checkout__buttons .edit--image .input-file label, .edit--image .input-file .checkout__buttons label {
  margin: 0 var(--space-s);
}
@media (max-width: 450px) {
  .checkout__buttons .button, .checkout__buttons .form#marketing-form .input-file label, .form#marketing-form .input-file .checkout__buttons label, .checkout__buttons .add-img-establishment .input-file label, .add-img-establishment .input-file .checkout__buttons label, .checkout__buttons .element--image .input-file label, .element--image .input-file .checkout__buttons label, .checkout__buttons .edit--image .input-file label, .edit--image .input-file .checkout__buttons label {
    margin: var(--space-s) 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.checkout__total {
  margin-top: var(--space-m);
  margin-left: auto;
  margin-right: var(--space-l);
}
.checkout__total strong {
  margin-right: var(--space-xs);
}
.checkout__total > p {
  font-size: 1.8rem;
  font-weight: 500;
}

.suggestions .suggestions__list.list-items {
  padding: var(--space-m);
  grid-auto-rows: unset;
}
.suggestions .suggestions__list .suggestions__list-header {
  justify-content: left;
}
.suggestions .suggestions__list .checkout__buttons {
  margin-top: var(--space-l);
  margin-bottom: var(--space-m);
  display: flex;
  justify-content: center;
}
@media (max-width: 450px) {
  .suggestions .suggestions__list .checkout__buttons.sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0 !important;
    width: 100%;
    padding: 0px 30px;
    background: white;
    border: 1px solid #d9d9d9;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
  }
  .suggestions .suggestions__list .checkout__buttons.sticky button {
    width: 45%;
  }
}
.suggestions .suggestions__list .checkout__buttons.sticky.one-element {
  justify-content: center;
}
@media (max-width: 450px) {
  .suggestions .suggestions__list .checkout__buttons {
    flex-direction: column;
  }
}
@media (max-width: 450px) {
  .suggestions .suggestions__list .checkout__buttons .button, .suggestions .suggestions__list .checkout__buttons .form#marketing-form .input-file label, .form#marketing-form .input-file .suggestions .suggestions__list .checkout__buttons label, .suggestions .suggestions__list .checkout__buttons .add-img-establishment .input-file label, .add-img-establishment .input-file .suggestions .suggestions__list .checkout__buttons label, .suggestions .suggestions__list .checkout__buttons .element--image .input-file label, .element--image .input-file .suggestions .suggestions__list .checkout__buttons label, .suggestions .suggestions__list .checkout__buttons .edit--image .input-file label, .edit--image .input-file .suggestions .suggestions__list .checkout__buttons label {
    margin: var(--space-s) 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.suggestions .suggestions__items .suggestion__item {
  display: grid;
  grid-template-columns: auto 1fr;
  padding: var(--space-m);
  gap: var(--space-l);
}
@media (max-width: 680px) {
  .suggestions .suggestions__items .suggestion__item {
    grid-template-columns: 1fr;
  }
}
.suggestions .suggestions__items .suggestion__item .suggestion__image > img {
  max-height: 220px;
}
.suggestions .suggestions__items .suggestion__item.added {
  background-color: #c9c4c3;
}
.suggestions .suggestions__items .suggestion__item.added .suggestion__text .buttons .button--default::after, .suggestions .suggestions__items .suggestion__item.added .suggestion__text .buttons .form#marketing-form .input-file label::after, .form#marketing-form .input-file .suggestions .suggestions__items .suggestion__item.added .suggestion__text .buttons label::after, .suggestions .suggestions__items .suggestion__item.added .suggestion__text .buttons .add-img-establishment .input-file label::after, .add-img-establishment .input-file .suggestions .suggestions__items .suggestion__item.added .suggestion__text .buttons label::after, .suggestions .suggestions__items .suggestion__item.added .suggestion__text .buttons .element--image .input-file label::after, .element--image .input-file .suggestions .suggestions__items .suggestion__item.added .suggestion__text .buttons label::after, .suggestions .suggestions__items .suggestion__item.added .suggestion__text .buttons .edit--image .input-file label::after, .edit--image .input-file .suggestions .suggestions__items .suggestion__item.added .suggestion__text .buttons label::after {
  background: linear-gradient(45deg, var(--bc-2-lighter-40));
}
.suggestions .suggestions__items .suggestion__item.added .suggestion__text .buttons .add {
  display: none;
}
.suggestions .suggestions__items .suggestion__item .suggestion__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.selectEstablishments .selectEstablishments__list.list-items {
  padding: var(--space-m);
  grid-auto-rows: unset;
}
.selectEstablishments .selectEstablishments__list .selectEstablishments__list-header {
  justify-content: left;
}
.selectEstablishments .selectEstablishments__list .checkout__buttons {
  margin-top: var(--space-l);
  margin-bottom: var(--space-m);
  display: flex;
  justify-content: center;
}
@media (max-width: 450px) {
  .selectEstablishments .selectEstablishments__list .checkout__buttons.sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0 !important;
    width: 100%;
    padding: 0px 30px;
    background: white;
    border: 1px solid #d9d9d9;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
  }
  .selectEstablishments .selectEstablishments__list .checkout__buttons.sticky button {
    width: 45%;
  }
}
.selectEstablishments .selectEstablishments__list .checkout__buttons.sticky.one-element {
  justify-content: center;
}
@media (max-width: 450px) {
  .selectEstablishments .selectEstablishments__list .checkout__buttons {
    flex-direction: column;
  }
}
@media (max-width: 450px) {
  .selectEstablishments .selectEstablishments__list .checkout__buttons .button, .selectEstablishments .selectEstablishments__list .checkout__buttons .form#marketing-form .input-file label, .form#marketing-form .input-file .selectEstablishments .selectEstablishments__list .checkout__buttons label, .selectEstablishments .selectEstablishments__list .checkout__buttons .add-img-establishment .input-file label, .add-img-establishment .input-file .selectEstablishments .selectEstablishments__list .checkout__buttons label, .selectEstablishments .selectEstablishments__list .checkout__buttons .element--image .input-file label, .element--image .input-file .selectEstablishments .selectEstablishments__list .checkout__buttons label, .selectEstablishments .selectEstablishments__list .checkout__buttons .edit--image .input-file label, .edit--image .input-file .selectEstablishments .selectEstablishments__list .checkout__buttons label {
    margin: var(--space-s) 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.selectEstablishments .selectEstablishments__items .selectEstablishments__item, .selectEstablishments .selectEstablishments__items .Establishments__item {
  display: grid;
  grid-template-columns: auto 1fr;
  padding: var(--space-m);
  gap: var(--space-l);
}
@media (max-width: 680px) {
  .selectEstablishments .selectEstablishments__items .selectEstablishments__item, .selectEstablishments .selectEstablishments__items .Establishments__item {
    grid-template-columns: unset;
    gap: unset;
  }
}
.selectEstablishments .selectEstablishments__items .selectEstablishments__item .selectEstablishments__image, .selectEstablishments .selectEstablishments__items .Establishments__item .selectEstablishments__image {
  border-radius: 50%;
  background-color: var(--bc-1);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  justify-self: center;
  text-transform: uppercase;
  font-family: var(--display-1-ff);
  font-size: var(--headline-fs);
  font-weight: var(--display-1-fw);
  line-height: var(--display-1-lh);
  letter-spacing: 1px;
}
.selectEstablishments .selectEstablishments__items .selectEstablishments__item .delete, .selectEstablishments .selectEstablishments__items .Establishments__item .delete {
  display: none;
}
.selectEstablishments .selectEstablishments__items .selectEstablishments__item.added, .selectEstablishments .selectEstablishments__items .Establishments__item.added {
  background-color: #c9c4c3;
}
.selectEstablishments .selectEstablishments__items .selectEstablishments__item.added .selectEstablishments__text .buttons a, .selectEstablishments .selectEstablishments__items .Establishments__item.added .selectEstablishments__text .buttons a {
  margin: 0 !important;
}
@media (max-width: 680px) {
  .selectEstablishments .selectEstablishments__items .selectEstablishments__item.added .selectEstablishments__text .buttons a, .selectEstablishments .selectEstablishments__items .Establishments__item.added .selectEstablishments__text .buttons a {
    margin: 15px auto !important;
  }
}
.selectEstablishments .selectEstablishments__items .selectEstablishments__item.added .selectEstablishments__text .buttons .button--default::after, .selectEstablishments .selectEstablishments__items .selectEstablishments__item.added .selectEstablishments__text .buttons .form#marketing-form .input-file label::after, .form#marketing-form .input-file .selectEstablishments .selectEstablishments__items .selectEstablishments__item.added .selectEstablishments__text .buttons label::after, .selectEstablishments .selectEstablishments__items .selectEstablishments__item.added .selectEstablishments__text .buttons .add-img-establishment .input-file label::after, .add-img-establishment .input-file .selectEstablishments .selectEstablishments__items .selectEstablishments__item.added .selectEstablishments__text .buttons label::after, .selectEstablishments .selectEstablishments__items .selectEstablishments__item.added .selectEstablishments__text .buttons .element--image .input-file label::after, .element--image .input-file .selectEstablishments .selectEstablishments__items .selectEstablishments__item.added .selectEstablishments__text .buttons label::after, .selectEstablishments .selectEstablishments__items .selectEstablishments__item.added .selectEstablishments__text .buttons .edit--image .input-file label::after, .edit--image .input-file .selectEstablishments .selectEstablishments__items .selectEstablishments__item.added .selectEstablishments__text .buttons label::after, .selectEstablishments .selectEstablishments__items .Establishments__item.added .selectEstablishments__text .buttons .button--default::after, .selectEstablishments .selectEstablishments__items .Establishments__item.added .selectEstablishments__text .buttons .form#marketing-form .input-file label::after, .form#marketing-form .input-file .selectEstablishments .selectEstablishments__items .Establishments__item.added .selectEstablishments__text .buttons label::after, .selectEstablishments .selectEstablishments__items .Establishments__item.added .selectEstablishments__text .buttons .add-img-establishment .input-file label::after, .add-img-establishment .input-file .selectEstablishments .selectEstablishments__items .Establishments__item.added .selectEstablishments__text .buttons label::after, .selectEstablishments .selectEstablishments__items .Establishments__item.added .selectEstablishments__text .buttons .element--image .input-file label::after, .element--image .input-file .selectEstablishments .selectEstablishments__items .Establishments__item.added .selectEstablishments__text .buttons label::after, .selectEstablishments .selectEstablishments__items .Establishments__item.added .selectEstablishments__text .buttons .edit--image .input-file label::after, .edit--image .input-file .selectEstablishments .selectEstablishments__items .Establishments__item.added .selectEstablishments__text .buttons label::after {
  background: linear-gradient(45deg, var(--bc-2-lighter-40));
}
.selectEstablishments .selectEstablishments__items .selectEstablishments__item.added .selectEstablishments__text .buttons .add, .selectEstablishments .selectEstablishments__items .Establishments__item.added .selectEstablishments__text .buttons .add {
  display: none;
}
.selectEstablishments .selectEstablishments__items .selectEstablishments__item.added .selectEstablishments__text .buttons .delete, .selectEstablishments .selectEstablishments__items .Establishments__item.added .selectEstablishments__text .buttons .delete {
  display: block;
}
.selectEstablishments .selectEstablishments__items .selectEstablishments__item .selectEstablishments__text, .selectEstablishments .selectEstablishments__items .Establishments__item .selectEstablishments__text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.selectEstablishments .selectEstablishments__items .selectEstablishments__item .selectEstablishments__text .buttons a, .selectEstablishments .selectEstablishments__items .Establishments__item .selectEstablishments__text .buttons a {
  margin: 0 !important;
}
@media (max-width: 680px) {
  .selectEstablishments .selectEstablishments__items .selectEstablishments__item .selectEstablishments__text .buttons a, .selectEstablishments .selectEstablishments__items .Establishments__item .selectEstablishments__text .buttons a {
    margin: 15px auto !important;
  }
}
@media (max-width: 680px) {
  .selectEstablishments .selectEstablishments__items .selectEstablishments__item .selectEstablishments__text .buttons, .selectEstablishments .selectEstablishments__items .Establishments__item .selectEstablishments__text .buttons {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 680px) {
  .selectEstablishments .selectEstablishments__items .selectEstablishments__item .selectEstablishments__text, .selectEstablishments .selectEstablishments__items .Establishments__item .selectEstablishments__text {
    flex-wrap: wrap;
    margin-top: 20px;
  }
}
@media (max-width: 680px) {
  .selectEstablishments .selectEstablishments__items .selectEstablishments__item .selectEstablishments__title, .selectEstablishments .selectEstablishments__items .selectEstablishments__item .selectEstablishments__options, .selectEstablishments .selectEstablishments__items .Establishments__item .selectEstablishments__title, .selectEstablishments .selectEstablishments__items .Establishments__item .selectEstablishments__options {
    width: 100%;
    text-align: center;
  }
}
.selectEstablishments .establishments__data-block {
  display: flex !important;
  flex-wrap: wrap;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
@media (max-device-width: 480px) and (orientation: portrait) {
  .selectEstablishments .establishments__data-block {
    margin-top: 0px;
    margin-bottom: 20px;
  }
}
.selectEstablishments .establishments__data-block .data__item {
  width: 50%;
  display: flex;
  align-items: center;
  background: #F8F4F3;
}
.selectEstablishments .establishments__data-block .data__item:nth-child(2), .selectEstablishments .establishments__data-block .data__item:nth-child(3) {
  background: #E5DCD7;
}
.selectEstablishments .establishments__data-block .data__item:nth-child(3) {
  background: #E5DCD7;
}
@media (max-device-width: 480px) and (orientation: portrait) {
  .selectEstablishments .establishments__data-block .data__item:nth-child(3) {
    background: #F8F4F3;
  }
}
@media (max-device-width: 480px) and (orientation: portrait) {
  .selectEstablishments .establishments__data-block .data__item:nth-child(4) {
    background: #E5DCD7;
  }
}
@media (max-device-width: 480px) and (orientation: portrait) {
  .selectEstablishments .establishments__data-block .data__item {
    width: 100%;
  }
}
.selectEstablishments .establishments__data-block .data__item .item__icon {
  padding: 20px;
}
.selectEstablishments .establishments__data-block .data__item .item__icon img {
  width: 30px;
}
.selectEstablishments .establishments__data-block .data__item .item__info .info__title {
  line-height: 1;
}
.selectEstablishments .establishments__data-block .data__item .item__info .info__title span {
  text-transform: uppercase;
  font-weight: 600;
}
.selectEstablishments .establishments__data-block .data__item .item__info .info__value {
  line-height: 1;
  margin-top: 5px;
}
.selectEstablishments .establishments__data-block .data__item .item__info .info__value span {
  font-weight: 400;
}
.selectEstablishments .establishments__data-block.active {
  border: 2px solid;
  border-color: black;
  max-height: 300px;
}

.selectConfig .selectConfig__list.list-items {
  padding: var(--space-m);
  grid-auto-rows: unset;
}
.selectConfig .selectConfig__list .selectConfig__list-header {
  justify-content: left;
}
.selectConfig .selectConfig__list .checkout__buttons {
  margin-top: var(--space-l);
  margin-bottom: var(--space-m);
  display: flex;
  justify-content: center;
}
@media (max-width: 450px) {
  .selectConfig .selectConfig__list .checkout__buttons.sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0 !important;
    width: 100%;
    padding: 0px 30px;
    background: white;
    border: 1px solid #d9d9d9;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
  }
  .selectConfig .selectConfig__list .checkout__buttons.sticky button {
    width: 45%;
  }
}
.selectConfig .selectConfig__list .checkout__buttons.sticky.one-element {
  justify-content: center;
}
@media (max-width: 450px) {
  .selectConfig .selectConfig__list .checkout__buttons {
    flex-direction: column;
  }
}
@media (max-width: 450px) {
  .selectConfig .selectConfig__list .checkout__buttons .button, .selectConfig .selectConfig__list .checkout__buttons .form#marketing-form .input-file label, .form#marketing-form .input-file .selectConfig .selectConfig__list .checkout__buttons label, .selectConfig .selectConfig__list .checkout__buttons .add-img-establishment .input-file label, .add-img-establishment .input-file .selectConfig .selectConfig__list .checkout__buttons label, .selectConfig .selectConfig__list .checkout__buttons .element--image .input-file label, .element--image .input-file .selectConfig .selectConfig__list .checkout__buttons label, .selectConfig .selectConfig__list .checkout__buttons .edit--image .input-file label, .edit--image .input-file .selectConfig .selectConfig__list .checkout__buttons label {
    margin: var(--space-s) 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.selectConfig .selectConfig__items .selectConfig__item, .selectConfig .selectConfig__items .Config__item {
  display: grid;
  grid-template-columns: 1fr;
  padding: var(--space-m);
  gap: var(--space-l);
}
@media (max-width: 680px) {
  .selectConfig .selectConfig__items .selectConfig__item, .selectConfig .selectConfig__items .Config__item {
    grid-template-columns: unset;
    gap: unset;
  }
}
.selectConfig .selectConfig__items .selectConfig__item .selectConfig__image, .selectConfig .selectConfig__items .Config__item .selectConfig__image {
  border-radius: 50%;
  background-color: var(--bc-1);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  justify-self: center;
  text-transform: uppercase;
  font-family: var(--display-1-ff);
  font-size: var(--headline-fs);
  font-weight: var(--display-1-fw);
  line-height: var(--display-1-lh);
  letter-spacing: 1px;
}
.selectConfig .selectConfig__items .selectConfig__item .delete, .selectConfig .selectConfig__items .Config__item .delete {
  display: none;
}
.selectConfig .selectConfig__items .selectConfig__item.added, .selectConfig .selectConfig__items .Config__item.added {
  background-color: #c9c4c3;
}
.selectConfig .selectConfig__items .selectConfig__item.added .selectConfig__text .buttons a, .selectConfig .selectConfig__items .Config__item.added .selectConfig__text .buttons a {
  margin: 0 !important;
}
@media (max-width: 680px) {
  .selectConfig .selectConfig__items .selectConfig__item.added .selectConfig__text .buttons a, .selectConfig .selectConfig__items .Config__item.added .selectConfig__text .buttons a {
    margin: 15px auto !important;
  }
}
.selectConfig .selectConfig__items .selectConfig__item.added .selectConfig__text .buttons .button--default::after, .selectConfig .selectConfig__items .selectConfig__item.added .selectConfig__text .buttons .form#marketing-form .input-file label::after, .form#marketing-form .input-file .selectConfig .selectConfig__items .selectConfig__item.added .selectConfig__text .buttons label::after, .selectConfig .selectConfig__items .selectConfig__item.added .selectConfig__text .buttons .add-img-establishment .input-file label::after, .add-img-establishment .input-file .selectConfig .selectConfig__items .selectConfig__item.added .selectConfig__text .buttons label::after, .selectConfig .selectConfig__items .selectConfig__item.added .selectConfig__text .buttons .element--image .input-file label::after, .element--image .input-file .selectConfig .selectConfig__items .selectConfig__item.added .selectConfig__text .buttons label::after, .selectConfig .selectConfig__items .selectConfig__item.added .selectConfig__text .buttons .edit--image .input-file label::after, .edit--image .input-file .selectConfig .selectConfig__items .selectConfig__item.added .selectConfig__text .buttons label::after, .selectConfig .selectConfig__items .Config__item.added .selectConfig__text .buttons .button--default::after, .selectConfig .selectConfig__items .Config__item.added .selectConfig__text .buttons .form#marketing-form .input-file label::after, .form#marketing-form .input-file .selectConfig .selectConfig__items .Config__item.added .selectConfig__text .buttons label::after, .selectConfig .selectConfig__items .Config__item.added .selectConfig__text .buttons .add-img-establishment .input-file label::after, .add-img-establishment .input-file .selectConfig .selectConfig__items .Config__item.added .selectConfig__text .buttons label::after, .selectConfig .selectConfig__items .Config__item.added .selectConfig__text .buttons .element--image .input-file label::after, .element--image .input-file .selectConfig .selectConfig__items .Config__item.added .selectConfig__text .buttons label::after, .selectConfig .selectConfig__items .Config__item.added .selectConfig__text .buttons .edit--image .input-file label::after, .edit--image .input-file .selectConfig .selectConfig__items .Config__item.added .selectConfig__text .buttons label::after {
  background: linear-gradient(45deg, var(--bc-2-lighter-40));
}
.selectConfig .selectConfig__items .selectConfig__item.added .selectConfig__text .buttons .add, .selectConfig .selectConfig__items .Config__item.added .selectConfig__text .buttons .add {
  display: none;
}
.selectConfig .selectConfig__items .selectConfig__item.added .selectConfig__text .buttons .delete, .selectConfig .selectConfig__items .Config__item.added .selectConfig__text .buttons .delete {
  display: block;
}
.selectConfig .selectConfig__items .selectConfig__item .selectConfig__text, .selectConfig .selectConfig__items .Config__item .selectConfig__text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.selectConfig .selectConfig__items .selectConfig__item .selectConfig__text .buttons a, .selectConfig .selectConfig__items .Config__item .selectConfig__text .buttons a {
  margin: 0 !important;
}
@media (max-width: 680px) {
  .selectConfig .selectConfig__items .selectConfig__item .selectConfig__text .buttons a, .selectConfig .selectConfig__items .Config__item .selectConfig__text .buttons a {
    margin: 15px auto !important;
  }
}
@media (max-width: 680px) {
  .selectConfig .selectConfig__items .selectConfig__item .selectConfig__text .buttons, .selectConfig .selectConfig__items .Config__item .selectConfig__text .buttons {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 680px) {
  .selectConfig .selectConfig__items .selectConfig__item .selectConfig__text, .selectConfig .selectConfig__items .Config__item .selectConfig__text {
    flex-wrap: wrap;
    margin-top: 20px;
  }
}
@media (max-width: 680px) {
  .selectConfig .selectConfig__items .selectConfig__item .selectConfig__title, .selectConfig .selectConfig__items .selectConfig__item .selectConfig__options, .selectConfig .selectConfig__items .Config__item .selectConfig__title, .selectConfig .selectConfig__items .Config__item .selectConfig__options {
    width: 100%;
    text-align: center;
  }
}
.selectConfig .Config__data-block {
  display: flex !important;
  flex-wrap: wrap;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
@media (max-device-width: 480px) and (orientation: portrait) {
  .selectConfig .Config__data-block {
    margin-top: 0px;
    margin-bottom: 20px;
  }
}
.selectConfig .Config__data-block .data__item {
  width: 50%;
  display: flex;
  align-items: center;
  background: #F8F4F3;
}
.selectConfig .Config__data-block .data__item:nth-child(2), .selectConfig .Config__data-block .data__item:nth-child(3) {
  background: #E5DCD7;
}
.selectConfig .Config__data-block .data__item:nth-child(3) {
  background: #E5DCD7;
}
@media (max-device-width: 480px) and (orientation: portrait) {
  .selectConfig .Config__data-block .data__item:nth-child(3) {
    background: #F8F4F3;
  }
}
@media (max-device-width: 480px) and (orientation: portrait) {
  .selectConfig .Config__data-block .data__item:nth-child(4) {
    background: #E5DCD7;
  }
}
@media (max-device-width: 480px) and (orientation: portrait) {
  .selectConfig .Config__data-block .data__item {
    width: 100%;
  }
}
.selectConfig .Config__data-block .data__item .item__icon {
  padding: 20px;
}
.selectConfig .Config__data-block .data__item .item__icon img {
  width: 30px;
}
.selectConfig .Config__data-block .data__item .item__info .info__title {
  line-height: 1;
}
.selectConfig .Config__data-block .data__item .item__info .info__title span {
  text-transform: uppercase;
  font-weight: 600;
}
.selectConfig .Config__data-block .data__item .item__info .info__value {
  line-height: 1;
  margin-top: 5px;
}
.selectConfig .Config__data-block .data__item .item__info .info__value span {
  font-weight: 400;
}
.selectConfig .Config__data-block.active {
  border: 2px solid;
  border-color: black;
  max-height: 300px;
}

.type__input--name {
  width: 80%;
  background-color: var(--bc-1-lighter-75);
  padding: var(--space-m);
}

.name-input {
  text-align: center;
  width: 100%;
}

.type--img {
  margin: 20px 0px;
}

.menu-config .menu-config__list.list-items {
  padding: var(--space-m);
  grid-auto-rows: unset;
}
.menu-config .menu-config__list .menu-config__list-header {
  justify-content: left;
}
.menu-config .menu-config__list .checkout__buttons {
  margin-top: var(--space-l);
  margin-bottom: var(--space-m);
  display: flex;
  justify-content: center;
}
@media (max-width: 450px) {
  .menu-config .menu-config__list .checkout__buttons.sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0 !important;
    width: 100%;
    padding: 0px 30px;
    background: white;
    border: 1px solid #d9d9d9;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
  }
  .menu-config .menu-config__list .checkout__buttons.sticky button {
    width: 45%;
  }
}
.menu-config .menu-config__list .checkout__buttons.sticky.one-element {
  justify-content: center;
}
@media (max-width: 450px) {
  .menu-config .menu-config__list .checkout__buttons {
    flex-direction: column;
  }
}
@media (max-width: 450px) {
  .menu-config .menu-config__list .checkout__buttons .button, .menu-config .menu-config__list .checkout__buttons .form#marketing-form .input-file label, .form#marketing-form .input-file .menu-config .menu-config__list .checkout__buttons label, .menu-config .menu-config__list .checkout__buttons .add-img-establishment .input-file label, .add-img-establishment .input-file .menu-config .menu-config__list .checkout__buttons label, .menu-config .menu-config__list .checkout__buttons .element--image .input-file label, .element--image .input-file .menu-config .menu-config__list .checkout__buttons label, .menu-config .menu-config__list .checkout__buttons .edit--image .input-file label, .edit--image .input-file .menu-config .menu-config__list .checkout__buttons label {
    margin: var(--space-s) 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.menu-config .menu-config__items .menu-config__item, .menu-config .menu-config__items .Config__item {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 1%;
  gap: var(--space-l);
}
@media (max-width: 680px) {
  .menu-config .menu-config__items .menu-config__item, .menu-config .menu-config__items .Config__item {
    grid-template-columns: unset;
    gap: unset;
  }
}
.menu-config .menu-config__items .menu-config__item .element__container, .menu-config .menu-config__items .Config__item .element__container {
  padding: var(--space-m);
  margin-bottom: 1%;
}
.menu-config .menu-config__items .menu-config__item .menu-config__image, .menu-config .menu-config__items .Config__item .menu-config__image {
  border-radius: 50%;
  background-color: var(--bc-1);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  justify-self: center;
  text-transform: uppercase;
  font-family: var(--display-1-ff);
  font-size: var(--headline-fs);
  font-weight: var(--display-1-fw);
  line-height: var(--display-1-lh);
  letter-spacing: 1px;
}
.menu-config .menu-config__items .menu-config__item .delete, .menu-config .menu-config__items .Config__item .delete {
  display: none;
}
.menu-config .menu-config__items .menu-config__item.added, .menu-config .menu-config__items .Config__item.added {
  background-color: #c9c4c3;
}
.menu-config .menu-config__items .menu-config__item.added .menu-config__text .buttons a, .menu-config .menu-config__items .Config__item.added .menu-config__text .buttons a {
  margin: 0 !important;
}
@media (max-width: 680px) {
  .menu-config .menu-config__items .menu-config__item.added .menu-config__text .buttons a, .menu-config .menu-config__items .Config__item.added .menu-config__text .buttons a {
    margin: 15px auto !important;
  }
}
.menu-config .menu-config__items .menu-config__item.added .menu-config__text .buttons .button--default::after, .menu-config .menu-config__items .menu-config__item.added .menu-config__text .buttons .form#marketing-form .input-file label::after, .form#marketing-form .input-file .menu-config .menu-config__items .menu-config__item.added .menu-config__text .buttons label::after, .menu-config .menu-config__items .menu-config__item.added .menu-config__text .buttons .add-img-establishment .input-file label::after, .add-img-establishment .input-file .menu-config .menu-config__items .menu-config__item.added .menu-config__text .buttons label::after, .menu-config .menu-config__items .menu-config__item.added .menu-config__text .buttons .element--image .input-file label::after, .element--image .input-file .menu-config .menu-config__items .menu-config__item.added .menu-config__text .buttons label::after, .menu-config .menu-config__items .menu-config__item.added .menu-config__text .buttons .edit--image .input-file label::after, .edit--image .input-file .menu-config .menu-config__items .menu-config__item.added .menu-config__text .buttons label::after, .menu-config .menu-config__items .Config__item.added .menu-config__text .buttons .button--default::after, .menu-config .menu-config__items .Config__item.added .menu-config__text .buttons .form#marketing-form .input-file label::after, .form#marketing-form .input-file .menu-config .menu-config__items .Config__item.added .menu-config__text .buttons label::after, .menu-config .menu-config__items .Config__item.added .menu-config__text .buttons .add-img-establishment .input-file label::after, .add-img-establishment .input-file .menu-config .menu-config__items .Config__item.added .menu-config__text .buttons label::after, .menu-config .menu-config__items .Config__item.added .menu-config__text .buttons .element--image .input-file label::after, .element--image .input-file .menu-config .menu-config__items .Config__item.added .menu-config__text .buttons label::after, .menu-config .menu-config__items .Config__item.added .menu-config__text .buttons .edit--image .input-file label::after, .edit--image .input-file .menu-config .menu-config__items .Config__item.added .menu-config__text .buttons label::after {
  background: linear-gradient(45deg, var(--bc-2-lighter-40));
}
.menu-config .menu-config__items .menu-config__item.added .menu-config__text .buttons .add, .menu-config .menu-config__items .Config__item.added .menu-config__text .buttons .add {
  display: none;
}
.menu-config .menu-config__items .menu-config__item.added .menu-config__text .buttons .delete, .menu-config .menu-config__items .Config__item.added .menu-config__text .buttons .delete {
  display: block;
}
.menu-config .menu-config__items .menu-config__item .menu-config__text, .menu-config .menu-config__items .Config__item .menu-config__text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.menu-config .menu-config__items .menu-config__item .menu-config__text .buttons a, .menu-config .menu-config__items .Config__item .menu-config__text .buttons a {
  margin: 0 !important;
}
@media (max-width: 680px) {
  .menu-config .menu-config__items .menu-config__item .menu-config__text .buttons a, .menu-config .menu-config__items .Config__item .menu-config__text .buttons a {
    margin: 15px auto !important;
  }
}
@media (max-width: 680px) {
  .menu-config .menu-config__items .menu-config__item .menu-config__text .buttons, .menu-config .menu-config__items .Config__item .menu-config__text .buttons {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 680px) {
  .menu-config .menu-config__items .menu-config__item .menu-config__text, .menu-config .menu-config__items .Config__item .menu-config__text {
    flex-wrap: wrap;
    margin-top: 20px;
  }
}
@media (max-width: 680px) {
  .menu-config .menu-config__items .menu-config__item .menu-config__title, .menu-config .menu-config__items .menu-config__item .menu-config__options, .menu-config .menu-config__items .Config__item .menu-config__title, .menu-config .menu-config__items .Config__item .menu-config__options {
    width: 100%;
    text-align: center;
  }
}
.menu-config .Config__data-block {
  display: flex !important;
  flex-wrap: wrap;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
@media (max-device-width: 480px) and (orientation: portrait) {
  .menu-config .Config__data-block {
    margin-top: 0px;
    margin-bottom: 20px;
  }
}
.menu-config .Config__data-block .data__item {
  width: 50%;
  display: flex;
  align-items: center;
  background: #F8F4F3;
}
.menu-config .Config__data-block .data__item:nth-child(2), .menu-config .Config__data-block .data__item:nth-child(3) {
  background: #E5DCD7;
}
.menu-config .Config__data-block .data__item:nth-child(3) {
  background: #E5DCD7;
}
@media (max-device-width: 480px) and (orientation: portrait) {
  .menu-config .Config__data-block .data__item:nth-child(3) {
    background: #F8F4F3;
  }
}
@media (max-device-width: 480px) and (orientation: portrait) {
  .menu-config .Config__data-block .data__item:nth-child(4) {
    background: #E5DCD7;
  }
}
@media (max-device-width: 480px) and (orientation: portrait) {
  .menu-config .Config__data-block .data__item {
    width: 100%;
  }
}
.menu-config .Config__data-block .data__item .item__icon {
  padding: 20px;
}
.menu-config .Config__data-block .data__item .item__icon img {
  width: 30px;
}
.menu-config .Config__data-block .data__item .item__info .info__title {
  line-height: 1;
}
.menu-config .Config__data-block .data__item .item__info .info__title span {
  text-transform: uppercase;
  font-weight: 600;
}
.menu-config .Config__data-block .data__item .item__info .info__value {
  line-height: 1;
  margin-top: 5px;
}
.menu-config .Config__data-block .data__item .item__info .info__value span {
  font-weight: 400;
}
.menu-config .Config__data-block.active {
  border: 2px solid;
  border-color: black;
  max-height: 300px;
}

.menu_selector {
  display: flex;
  flex-direction: column;
  background-color: var(--bc-1-lighter-75);
  margin-bottom: var(--space-m);
  padding: var(--space-m);
  row-gap: var(--space-m);
}
@media (max-width: 600px) {
  .menu_selector {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 370px) {
  .menu_selector {
    grid-template-columns: 1fr;
    padding: var(--space-m);
  }
}
.menu_selector .block-form {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 600px) {
  .menu_selector .block-form:nth-child(3) {
    grid-column-end: span 2;
  }
}
@media (max-width: 370px) {
  .menu_selector .block-form:nth-child(3) {
    grid-column-end: span 1;
  }
}
.menu_selector .block-form input {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  align-self: center;
  margin-top: 5px;
  border: none;
  height: 35px;
  border-bottom: 1px solid var(--bc-1);
  padding: var(--space-s) var(--space-s);
}
.menu_selector .block-form label {
  padding: 0 !important;
  align-self: center;
  margin-right: var(--space-m);
  width: -moz-fit-content;
  width: fit-content;
  line-height: 11px;
  margin-right: auto;
  font-weight: 600;
}
.menu_selector .block-form.filter-buttons {
  grid-column: 3;
  justify-content: flex-end;
  margin: 0;
  align-items: flex-end;
}
@media (max-width: 600px) {
  .menu_selector .block-form.filter-buttons {
    grid-column: 2;
  }
}
@media (max-width: 370px) {
  .menu_selector .block-form.filter-buttons {
    grid-column: 1;
  }
}

.menu__select {
  width: 100%;
  margin-top: 5px;
  border: none;
  border-bottom: 1px solid var(--bc-1);
  padding: 2%;
  font-family: var(--body-ff);
  font-size: var(--body-fs);
  font-style: normal;
  font-weight: var(--body-fw);
  line-height: var(--body-lh);
}

.block__list {
  margin: 0 !important;
}
.block__list.list-items {
  padding: var(--space-m);
  grid-auto-rows: unset;
}
.block__list .block__list-header {
  justify-content: left;
}

.form-text {
  margin-top: 20px;
  text-align: center;
}

.training-form {
  margin: 20px;
}
.training-form div {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.training-form div label {
  width: 50%;
}
.training-form div input {
  width: 50%;
  align-self: center;
  margin-top: 5px;
  height: 35px;
  border: none;
  border-bottom: 1px solid var(--bc-1);
  padding: var(--space-s) var(--space-s);
}
.training-form div select {
  width: 50%;
  margin-top: 5px;
  border: none;
  border-bottom: 1px solid var(--bc-1);
  padding: 1%;
  font-family: var(--body-ff);
  font-size: var(--body-fs);
  font-style: normal;
  font-weight: var(--body-fw);
  line-height: var(--body-lh);
}

.selectMachine .selectMachine__list.list-items {
  padding: var(--space-m);
  grid-auto-rows: unset;
}
.selectMachine .selectMachine__list .selectMachine__list-header {
  justify-content: left;
}
.selectMachine .selectMachine__list .checkout__buttons {
  margin-top: var(--space-l);
  margin-bottom: var(--space-m);
  display: flex;
  justify-content: center;
}
@media (max-width: 450px) {
  .selectMachine .selectMachine__list .checkout__buttons.sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0 !important;
    width: 100%;
    padding: 0px 30px;
    background: white;
    border: 1px solid #d9d9d9;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
  }
  .selectMachine .selectMachine__list .checkout__buttons.sticky button {
    width: 45%;
  }
}
.selectMachine .selectMachine__list .checkout__buttons.sticky.one-element {
  justify-content: center;
}
@media (max-width: 450px) {
  .selectMachine .selectMachine__list .checkout__buttons {
    flex-direction: column;
  }
}
@media (max-width: 450px) {
  .selectMachine .selectMachine__list .checkout__buttons .button, .selectMachine .selectMachine__list .checkout__buttons .form#marketing-form .input-file label, .form#marketing-form .input-file .selectMachine .selectMachine__list .checkout__buttons label, .selectMachine .selectMachine__list .checkout__buttons .add-img-establishment .input-file label, .add-img-establishment .input-file .selectMachine .selectMachine__list .checkout__buttons label, .selectMachine .selectMachine__list .checkout__buttons .element--image .input-file label, .element--image .input-file .selectMachine .selectMachine__list .checkout__buttons label, .selectMachine .selectMachine__list .checkout__buttons .edit--image .input-file label, .edit--image .input-file .selectMachine .selectMachine__list .checkout__buttons label {
    margin: var(--space-s) 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.selectMachine .selectMachine__items .selectMachine__item {
  display: grid;
  grid-template-columns: 1fr;
  padding: var(--space-m);
  gap: var(--space-l);
}
.selectMachine .selectMachine__items .selectMachine__item .selectMachine__image > img {
  max-height: 220px;
  max-width: 300px;
}
.selectMachine .selectMachine__items .selectMachine__item .delete {
  display: none;
}
.selectMachine .selectMachine__items .selectMachine__item.added {
  background-color: #c9c4c3 !important;
}
.selectMachine .selectMachine__items .selectMachine__item.added .selectMachine__text .buttons .button--default::after, .selectMachine .selectMachine__items .selectMachine__item.added .selectMachine__text .buttons .form#marketing-form .input-file label::after, .form#marketing-form .input-file .selectMachine .selectMachine__items .selectMachine__item.added .selectMachine__text .buttons label::after, .selectMachine .selectMachine__items .selectMachine__item.added .selectMachine__text .buttons .add-img-establishment .input-file label::after, .add-img-establishment .input-file .selectMachine .selectMachine__items .selectMachine__item.added .selectMachine__text .buttons label::after, .selectMachine .selectMachine__items .selectMachine__item.added .selectMachine__text .buttons .element--image .input-file label::after, .element--image .input-file .selectMachine .selectMachine__items .selectMachine__item.added .selectMachine__text .buttons label::after, .selectMachine .selectMachine__items .selectMachine__item.added .selectMachine__text .buttons .edit--image .input-file label::after, .edit--image .input-file .selectMachine .selectMachine__items .selectMachine__item.added .selectMachine__text .buttons label::after {
  background: linear-gradient(45deg, var(--bc-2-lighter-40));
}
.selectMachine .selectMachine__items .selectMachine__item.added .selectMachine__text .buttons .add {
  display: none;
}
.selectMachine .selectMachine__items .selectMachine__item.added .selectMachine__text .buttons .delete {
  display: block;
}
.selectMachine .selectMachine__items .selectMachine__item:nth-child(odd) {
  background-color: #f7f4f3;
}
.selectMachine .selectMachine__items .selectMachine__item .selectMachine__text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.selectMachine .selectMachine__items .selectMachine__item .selectMachine__text .selectMachine__right, .selectMachine .selectMachine__items .selectMachine__item .selectMachine__text .selectMachine__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.selectMachine .selectMachine__items .selectMachine__item .selectMachine__text .selectMachine__right .button, .selectMachine .selectMachine__items .selectMachine__item .selectMachine__text .selectMachine__right .form#marketing-form .input-file label, .form#marketing-form .input-file .selectMachine .selectMachine__items .selectMachine__item .selectMachine__text .selectMachine__right label, .selectMachine .selectMachine__items .selectMachine__item .selectMachine__text .selectMachine__right .add-img-establishment .input-file label, .add-img-establishment .input-file .selectMachine .selectMachine__items .selectMachine__item .selectMachine__text .selectMachine__right label, .selectMachine .selectMachine__items .selectMachine__item .selectMachine__text .selectMachine__right .element--image .input-file label, .element--image .input-file .selectMachine .selectMachine__items .selectMachine__item .selectMachine__text .selectMachine__right label, .selectMachine .selectMachine__items .selectMachine__item .selectMachine__text .selectMachine__right .edit--image .input-file label, .edit--image .input-file .selectMachine .selectMachine__items .selectMachine__item .selectMachine__text .selectMachine__right label, .selectMachine .selectMachine__items .selectMachine__item .selectMachine__text .selectMachine__left .button, .selectMachine .selectMachine__items .selectMachine__item .selectMachine__text .selectMachine__left .form#marketing-form .input-file label, .form#marketing-form .input-file .selectMachine .selectMachine__items .selectMachine__item .selectMachine__text .selectMachine__left label, .selectMachine .selectMachine__items .selectMachine__item .selectMachine__text .selectMachine__left .add-img-establishment .input-file label, .add-img-establishment .input-file .selectMachine .selectMachine__items .selectMachine__item .selectMachine__text .selectMachine__left label, .selectMachine .selectMachine__items .selectMachine__item .selectMachine__text .selectMachine__left .element--image .input-file label, .element--image .input-file .selectMachine .selectMachine__items .selectMachine__item .selectMachine__text .selectMachine__left label, .selectMachine .selectMachine__items .selectMachine__item .selectMachine__text .selectMachine__left .edit--image .input-file label, .edit--image .input-file .selectMachine .selectMachine__items .selectMachine__item .selectMachine__text .selectMachine__left label {
  margin: 0 !important;
}

.steps .steps__list.list-items {
  padding: var(--space-m);
  grid-auto-rows: unset;
}
.steps .steps__list .steps__list-header {
  justify-content: left;
}
.steps .steps__list .checkout__buttons {
  margin-top: var(--space-l);
  margin-bottom: var(--space-m);
  display: flex;
  justify-content: center;
}
@media (max-width: 450px) {
  .steps .steps__list .checkout__buttons.sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0 !important;
    width: 100%;
    padding: 0px 30px;
    background: white;
    border: 1px solid #d9d9d9;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
  }
  .steps .steps__list .checkout__buttons.sticky button {
    width: 45%;
  }
}
.steps .steps__list .checkout__buttons.sticky.one-element {
  justify-content: center;
}
@media (max-width: 450px) {
  .steps .steps__list .checkout__buttons {
    flex-direction: column;
  }
}
@media (max-width: 450px) {
  .steps .steps__list .checkout__buttons .button, .steps .steps__list .checkout__buttons .form#marketing-form .input-file label, .form#marketing-form .input-file .steps .steps__list .checkout__buttons label, .steps .steps__list .checkout__buttons .add-img-establishment .input-file label, .add-img-establishment .input-file .steps .steps__list .checkout__buttons label, .steps .steps__list .checkout__buttons .element--image .input-file label, .element--image .input-file .steps .steps__list .checkout__buttons label, .steps .steps__list .checkout__buttons .edit--image .input-file label, .edit--image .input-file .steps .steps__list .checkout__buttons label {
    margin: var(--space-s) 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.steps .steps__container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
}
@media (max-width: 480px) {
  .steps .steps__container {
    flex-direction: column;
  }
}
.steps .steps__container .step-left {
  width: 55%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border-right: 2px solid #3f2b23;
  padding: 50px;
}
@media (max-width: 480px) {
  .steps .steps__container .step-left {
    width: 100%;
    border-right: unset;
  }
}
.steps .steps__container .step-left .number {
  width: 75px;
  height: 75px;
  border: 3px solid #3f2b23;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 40px;
}
.steps .steps__container .step-left .number span {
  font-size: 33px;
}
.steps .steps__container .step-left .question {
  text-align: center;
}
.steps .steps__container .step-left .question p {
  font-size: 24px;
  line-height: 1.2;
}
.steps .steps__container .step-right {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps .steps__container .step-right .options {
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps .steps__container .step-right .options .filter-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  margin-top: 5px;
  border: none;
  border-bottom: 1px solid var(--bc-1);
  padding: var(--space-s) var(--space-s);
}
.steps .steps__container .step-right .options select.select-minimal {
  background-image: linear-gradient(45deg, transparent 50%, var(--bc-1) 50%), linear-gradient(135deg, var(--bc-1) 50%, transparent 50%), linear-gradient(to right, var(--bc-1), var(--bc-1));
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}
.steps .steps__container .step-right .options select.select-minimal:focus {
  background-image: linear-gradient(45deg, var(--bc-2-lighter-40) 50%, transparent 50%), linear-gradient(135deg, transparent 50%, var(--bc-2-lighter-40) 50%), linear-gradient(to right, var(--bc-1), var(--bc-1));
  background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  border-color: var(--bc-2-lighter-40);
  outline: 0;
}
.steps.thank-you .steps__container {
  margin: 0 auto;
  flex-direction: column;
  width: 50%;
  text-align: center;
}
.steps.thank-you .steps__container .title {
  font-size: 22px;
  margin-bottom: 30px;
}
.steps.thank-you .steps__container .icon img {
  width: 75px;
  margin: 30px 0;
}

.buttons-items {
  display: flex;
  align-items: center;
  justify-content: center;
}
.buttons-items .step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 25%;
}
.buttons-items .content-button .button, .buttons-items .content-button .form#marketing-form .input-file label, .form#marketing-form .input-file .buttons-items .content-button label, .buttons-items .content-button .add-img-establishment .input-file label, .add-img-establishment .input-file .buttons-items .content-button label, .buttons-items .content-button .element--image .input-file label, .element--image .input-file .buttons-items .content-button label, .buttons-items .content-button .edit--image .input-file label, .edit--image .input-file .buttons-items .content-button label {
  width: 50px;
  height: 50px;
  background: none;
  margin: 15px 30px;
  align-items: center;
  justify-content: center;
  border: 3px solid #ada8a7;
}
.buttons-items .content-button .button.button--current, .buttons-items .content-button .form#marketing-form .input-file label.button--current, .form#marketing-form .input-file .buttons-items .content-button label.button--current, .buttons-items .content-button .add-img-establishment .input-file label.button--current, .add-img-establishment .input-file .buttons-items .content-button label.button--current, .buttons-items .content-button .element--image .input-file label.button--current, .element--image .input-file .buttons-items .content-button label.button--current, .buttons-items .content-button .edit--image .input-file label.button--current, .edit--image .input-file .buttons-items .content-button label.button--current {
  border: 3px solid #e4961b;
}
.buttons-items .content-button .button.button--no-disabled, .buttons-items .content-button .form#marketing-form .input-file label.button--no-disabled, .form#marketing-form .input-file .buttons-items .content-button label.button--no-disabled, .buttons-items .content-button .add-img-establishment .input-file label.button--no-disabled, .add-img-establishment .input-file .buttons-items .content-button label.button--no-disabled, .buttons-items .content-button .element--image .input-file label.button--no-disabled, .element--image .input-file .buttons-items .content-button label.button--no-disabled, .buttons-items .content-button .edit--image .input-file label.button--no-disabled, .edit--image .input-file .buttons-items .content-button label.button--no-disabled {
  border: 3px solid #3f2b23;
}
.buttons-items .content-button .button span, .buttons-items .content-button .form#marketing-form .input-file label span, .form#marketing-form .input-file .buttons-items .content-button label span, .buttons-items .content-button .add-img-establishment .input-file label span, .add-img-establishment .input-file .buttons-items .content-button label span, .buttons-items .content-button .element--image .input-file label span, .element--image .input-file .buttons-items .content-button label span, .buttons-items .content-button .edit--image .input-file label span, .edit--image .input-file .buttons-items .content-button label span {
  font-size: 1.5em;
}
.buttons-items .text {
  text-align: center;
}
@media (max-width: 450px) {
  .buttons-items .text {
    display: none;
  }
}
.buttons-items .text span {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.incident-record__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
}
.incident-record__subtitle .text {
  width: 70%;
}
.incident-record__subtitle .checkout__buttons {
  width: 30%;
}
@media (max-width: 450px) {
  .incident-record__subtitle .checkout__buttons.sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0 !important;
    width: 100%;
    padding: 0px 30px;
    background: white;
    border: 1px solid #d9d9d9;
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 3;
  }
  .incident-record__subtitle .checkout__buttons.sticky button {
    width: 45%;
  }
}
.incident-record__subtitle .checkout__buttons.sticky.one-element {
  justify-content: center;
}
.incident-record .table .reference {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
}
@media (max-width:900px) {
  .incident-record .table .reference {
    width: 50%;
  }
}
.incident-record .table .record-date {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  text-align: center;
}
@media (max-width:900px) {
  .incident-record .table .record-date {
    display: none;
  }
}
.incident-record .table .title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  text-align: center;
}
@media (max-width:900px) {
  .incident-record .table .title {
    display: none;
  }
}
.incident-record .table .type {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  text-align: center;
}
@media (max-width:900px) {
  .incident-record .table .type {
    display: none;
  }
}
.incident-record .table .state {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  text-align: center;
}
@media (max-width:900px) {
  .incident-record .table .state {
    width: 50%;
  }
}
.incident-record .incident-record__list-header {
  border: none;
}
.incident-record .incident-record__list-header h6 {
  background-color: var(--bc-1);
  width: 100%;
  color: white;
  padding: 10px;
}
.incident-record .requests {
  grid-auto-rows: 0fr;
  padding: 0;
}
.incident-record .requests .table {
  display: flex;
  flex-direction: column;
}
.incident-record .requests .table__header {
  display: flex;
  border-bottom: 1px solid var(--bc-1);
}
.incident-record .requests .table__header span {
  font-weight: 600;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.incident-record .requests .table__content {
  display: flex;
  flex-direction: column;
}
.incident-record .requests .table__content .content__item {
  display: flex;
  font-weight: 500;
  padding: 10px 0;
}
.incident-record .requests .table__content .content__item .date {
  text-align: center;
}
.incident-record .requests .table__content .content__item .state {
  text-align: center;
}
.incident-record .requests .table__content .content__item .state img {
  width: 20px;
}
.incident-record .requests .table__content .content__item .state .button, .incident-record .requests .table__content .content__item .state .form#marketing-form .input-file label, .form#marketing-form .input-file .incident-record .requests .table__content .content__item .state label, .incident-record .requests .table__content .content__item .state .add-img-establishment .input-file label, .add-img-establishment .input-file .incident-record .requests .table__content .content__item .state label, .incident-record .requests .table__content .content__item .state .element--image .input-file label, .element--image .input-file .incident-record .requests .table__content .content__item .state label, .incident-record .requests .table__content .content__item .state .edit--image .input-file label, .edit--image .input-file .incident-record .requests .table__content .content__item .state label {
  padding: 3px 8px;
  font-size: 12px;
  margin: 10px 0;
}
.incident-record .requests .table__content .content__status {
  display: flex;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
@media (max-width:900px) {
  .incident-record .requests .table__content .content__status {
    flex-wrap: wrap;
  }
}
.incident-record .requests .table__content .content__status.active {
  max-height: 150px;
}
@media (max-width:900px) {
  .incident-record .requests .table__content .content__status.active {
    max-height: 400px;
  }
}
.incident-record .requests .table__content .content__status .status-1, .incident-record .requests .table__content .content__status .status-2, .incident-record .requests .table__content .content__status .status-3, .incident-record .requests .table__content .content__status .status-4 {
  background-color: #f7f4f3;
  display: flex;
  flex-direction: column;
  width: 25%;
  align-items: center;
  justify-content: flex-start;
  padding: var(--space-m) 0;
}
.incident-record .requests .table__content .content__status .status-1.status--current .number, .incident-record .requests .table__content .content__status .status-2.status--current .number, .incident-record .requests .table__content .content__status .status-3.status--current .number, .incident-record .requests .table__content .content__status .status-4.status--current .number {
  border: 2px solid #e4961b;
  background: #e4961b;
}
@media (max-width:900px) {
  .incident-record .requests .table__content .content__status .status-1, .incident-record .requests .table__content .content__status .status-2, .incident-record .requests .table__content .content__status .status-3, .incident-record .requests .table__content .content__status .status-4 {
    width: 100%;
  }
}
.incident-record .requests .table__content .content__status .status-1 .number, .incident-record .requests .table__content .content__status .status-2 .number, .incident-record .requests .table__content .content__status .status-3 .number, .incident-record .requests .table__content .content__status .status-4 .number {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid #3f2b23;
  display: flex;
  align-items: center;
  justify-content: center;
}
.incident-record .requests .table__content .content__status .status-1 .number span, .incident-record .requests .table__content .content__status .status-2 .number span, .incident-record .requests .table__content .content__status .status-3 .number span, .incident-record .requests .table__content .content__status .status-4 .number span {
  font-weight: 500;
  font-size: 13px;
}
.incident-record .requests .table__content .content__status .status-1 .name, .incident-record .requests .table__content .content__status .status-2 .name, .incident-record .requests .table__content .content__status .status-3 .name, .incident-record .requests .table__content .content__status .status-4 .name {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.incident-record .requests .table__content .content__status .status-1 .name span, .incident-record .requests .table__content .content__status .status-2 .name span, .incident-record .requests .table__content .content__status .status-3 .name span, .incident-record .requests .table__content .content__status .status-4 .name span {
  font-size: 13px;
}
.incident-record .requests .table__content .content__status .status-1 .name span.technical-service, .incident-record .requests .table__content .content__status .status-2 .name span.technical-service, .incident-record .requests .table__content .content__status .status-3 .name span.technical-service, .incident-record .requests .table__content .content__status .status-4 .name span.technical-service {
  font-size: 10px;
  font-style: italic;
}
.incident-record .registry {
  grid-auto-rows: 0fr;
}
.incident-record .registry .incident-record__list-header {
  border: none;
}
.incident-record .registry .table {
  display: flex;
  flex-direction: column;
}
.incident-record .registry .table__header {
  display: flex;
  border-bottom: 1px solid var(--bc-1);
}
.incident-record .registry .table__header span {
  font-weight: 600;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.incident-record .registry .table__content {
  display: flex;
  flex-direction: column;
}
.incident-record .registry .table__content .content__item {
  display: flex;
  font-weight: 500;
  padding: 10px 0;
}
.incident-record .registry .table__content .content__item:nth-child(even) {
  background-color: #f7f4f3;
}
.incident-record .registry .table__content .content__item .date {
  text-align: center;
}
.incident-record .registry .table__content .content__item .state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.incident-record .registry .table__content .content__item .state .button, .incident-record .registry .table__content .content__item .state .form#marketing-form .input-file label, .form#marketing-form .input-file .incident-record .registry .table__content .content__item .state label, .incident-record .registry .table__content .content__item .state .add-img-establishment .input-file label, .add-img-establishment .input-file .incident-record .registry .table__content .content__item .state label, .incident-record .registry .table__content .content__item .state .element--image .input-file label, .element--image .input-file .incident-record .registry .table__content .content__item .state label, .incident-record .registry .table__content .content__item .state .edit--image .input-file label, .edit--image .input-file .incident-record .registry .table__content .content__item .state label {
  padding: 5px 8px;
  font-size: 12px;
  margin: 10px 0;
}
.incident-record .registry .table__paginate .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--bc-1-lighter-75);
  padding: var(--space-m) calc(var(--space-m) * 1.5);
  margin-top: var(--space-m);
}
.incident-record .registry .table__paginate .pagination .buttons {
  max-width: 120px !important;
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center;
  margin-top: var(--space-s);
}
.incident-record .registry .table__paginate .pagination .buttons .button, .incident-record .registry .table__paginate .pagination .buttons .form#marketing-form .input-file label, .form#marketing-form .input-file .incident-record .registry .table__paginate .pagination .buttons label, .incident-record .registry .table__paginate .pagination .buttons .add-img-establishment .input-file label, .add-img-establishment .input-file .incident-record .registry .table__paginate .pagination .buttons label, .incident-record .registry .table__paginate .pagination .buttons .element--image .input-file label, .element--image .input-file .incident-record .registry .table__paginate .pagination .buttons label, .incident-record .registry .table__paginate .pagination .buttons .edit--image .input-file label, .edit--image .input-file .incident-record .registry .table__paginate .pagination .buttons label {
  margin: 0;
  height: 31px;
  width: 31px;
  display: flex;
  justify-content: center;
  padding: 0;
  padding-top: 2.7px;
  border: 1px solid var(--bc-1);
  color: var(--bc-1);
}
.incident-record .registry .table__paginate .pagination .buttons .button:hover, .incident-record .registry .table__paginate .pagination .buttons .form#marketing-form .input-file label:hover, .form#marketing-form .input-file .incident-record .registry .table__paginate .pagination .buttons label:hover, .incident-record .registry .table__paginate .pagination .buttons .add-img-establishment .input-file label:hover, .add-img-establishment .input-file .incident-record .registry .table__paginate .pagination .buttons label:hover, .incident-record .registry .table__paginate .pagination .buttons .element--image .input-file label:hover, .element--image .input-file .incident-record .registry .table__paginate .pagination .buttons label:hover, .incident-record .registry .table__paginate .pagination .buttons .edit--image .input-file label:hover, .edit--image .input-file .incident-record .registry .table__paginate .pagination .buttons label:hover {
  background-color: var(--bc-1);
  color: white;
}
.incident-record .registry .table__paginate .pagination .buttons .page {
  font-size: small;
}

.resume__container .incident-record__list-header {
  border: none;
}
.resume__container .incident-record__list-header h6 {
  background-color: var(--bc-1);
  width: 100%;
  color: white;
  padding: 10px;
}
.resume__container .table {
  display: flex;
  flex-direction: column;
}
.resume__container .table__header {
  display: flex;
  border-bottom: 1px solid var(--bc-1);
}
.resume__container .table__header span {
  font-weight: 600;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.resume__container .table__content {
  display: flex;
}
.resume__container .table .reference {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}
.resume__container .table .record-date {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  text-align: center;
}
.resume__container .table .title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  text-align: center;
}

.questions .questions__list.list-items {
  padding: var(--space-m);
  grid-auto-rows: unset;
}
.questions .questions__list .questions__list-header {
  justify-content: left;
}
.questions .questions__list .checkout__buttons {
  margin-top: var(--space-l);
  margin-bottom: var(--space-m);
  display: flex;
  justify-content: center;
}
@media (max-width: 450px) {
  .questions .questions__list .checkout__buttons.sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0 !important;
    width: 100%;
    padding: 0px 30px;
    background: white;
    border: 1px solid #d9d9d9;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
  }
  .questions .questions__list .checkout__buttons.sticky button {
    width: 45%;
  }
}
.questions .questions__list .checkout__buttons.sticky.one-element {
  justify-content: center;
}
@media (max-width: 450px) {
  .questions .questions__list .checkout__buttons .button, .questions .questions__list .checkout__buttons .form#marketing-form .input-file label, .form#marketing-form .input-file .questions .questions__list .checkout__buttons label, .questions .questions__list .checkout__buttons .add-img-establishment .input-file label, .add-img-establishment .input-file .questions .questions__list .checkout__buttons label, .questions .questions__list .checkout__buttons .element--image .input-file label, .element--image .input-file .questions .questions__list .checkout__buttons label, .questions .questions__list .checkout__buttons .edit--image .input-file label, .edit--image .input-file .questions .questions__list .checkout__buttons label {
    margin: var(--space-s) 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.questions .question {
  font-weight: 600;
  font-size: 1.9rem;
  text-transform: uppercase;
  width: 50%;
  padding: 25px 25px;
  border-right: 3px solid #3f2b23;
  text-align: right;
}
.questions .question__item {
  display: flex;
  /* padding: 30px 0; */
  align-items: center;
}
.questions .question__item .answer {
  width: 50%;
  padding: 30px;
}
.questions .note {
  margin-top: 30px;
  font-weight: 600;
  text-align: center;
}

.personal-data__container .personal-data__general-data.list-items {
  padding: var(--space-m);
  grid-auto-rows: 21px 1fr;
}
.personal-data__container .personal-data__data-general h2 {
  margin-bottom: 30px;
}
.personal-data__container .personal-data__data-general label {
  font-size: smaller;
  color: var(--bc-1);
  line-height: 19px;
  margin-top: var(--space-s);
  font-weight: 600;
}
.personal-data__container .personal-data__data-general .personal-data__data-block {
  display: flex !important;
  flex-wrap: wrap;
  margin-top: 20px;
}
.personal-data__container .personal-data__data-general .personal-data__data-block .data__item {
  width: 50%;
  display: flex;
  align-items: center;
  background: #F8F4F3;
}
.personal-data__container .personal-data__data-general .personal-data__data-block .data__item:nth-child(2), .personal-data__container .personal-data__data-general .personal-data__data-block .data__item:nth-child(3) {
  background: #E5DCD7;
}
.personal-data__container .personal-data__data-general .personal-data__data-block .data__item:nth-child(3) {
  background: #E5DCD7;
}
@media (max-device-width: 480px) and (orientation: portrait) {
  .personal-data__container .personal-data__data-general .personal-data__data-block .data__item:nth-child(3) {
    background: #F8F4F3;
  }
}
@media (max-device-width: 480px) and (orientation: portrait) {
  .personal-data__container .personal-data__data-general .personal-data__data-block .data__item:nth-child(4) {
    background: #E5DCD7;
  }
}
@media (max-device-width: 480px) and (orientation: portrait) {
  .personal-data__container .personal-data__data-general .personal-data__data-block .data__item {
    width: 100%;
  }
}
.personal-data__container .personal-data__data-general .personal-data__data-block .data__item .item__icon {
  padding: 20px;
}
.personal-data__container .personal-data__data-general .personal-data__data-block .data__item .item__icon img {
  width: 30px;
}
.personal-data__container .personal-data__data-general .personal-data__data-block .data__item .item__info .info__title {
  line-height: 1;
}
.personal-data__container .personal-data__data-general .personal-data__data-block .data__item .item__info .info__title span {
  text-transform: uppercase;
  font-weight: 600;
}
.personal-data__container .personal-data__data-general .personal-data__data-block .data__item .item__info .info__value {
  line-height: 1;
  margin-top: 5px;
}
.personal-data__container .personal-data__data-general .personal-data__data-block .data__item .item__info .info__value span {
  font-weight: 400;
}
.personal-data__container .personal-data__data-general .personal-data__data-block .digital {
  border-right: 2px solid #3f2b23;
  margin: var(--space-m) 0;
  padding: 20px;
  width: 50%;
  text-align: right;
}
@media (max-device-width: 480px) and (orientation: portrait) {
  .personal-data__container .personal-data__data-general .personal-data__data-block .digital {
    width: 100%;
    text-align: center;
    border-right: unset;
    border-bottom: 2px solid #3f2b23;
  }
}
.personal-data__container .personal-data__data-general .personal-data__data-block .digital-button {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-device-width: 480px) and (orientation: portrait) {
  .personal-data__container .personal-data__data-general .personal-data__data-block .digital-button {
    width: 100%;
  }
}
.personal-data__container .personal-data__data-general .personal-data__data-block input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  margin-top: 5px;
  border: none;
  border-bottom: 1px solid var(--bc-1);
  padding: var(--space-s) var(--space-s);
  text-transform: uppercase;
  margin-bottom: var(--space-s);
}
.personal-data__container .personal-data__data-general .personal-data__data-block .dashed {
  border-style: dashed;
  border: 1px dashed;
  border-color: black;
  margin-top: 27px;
  font-style: italic;
  font-size: 13.5px;
  padding: 10px;
  color: var(--bc-1);
}
.personal-data__container .personal-data__data-general .subtext {
  margin-bottom: 10px;
}
@media (max-width: 450px) {
  .personal-data__container .personal-data__data {
    margin-top: 10px;
  }
}
.personal-data__container .personal-data__data .updateData--wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.personal-data .personal-data_selectors__container {
  min-height: 600px;
  background-color: #f0eae8;
}
@media (max-width: 700px) {
  .personal-data .personal-data_selectors__container {
    min-height: auto;
  }
}
.personal-data .personal-data_selectors__container .explanation-coins {
  margin-top: var(--space-m);
  padding: var(--space-m);
}
.personal-data .personal-data_selectors__container .personal-data__selectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-m);
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 140px;
}
@media (max-width: 700px ) {
  .personal-data .personal-data_selectors__container .personal-data__selectors {
    width: 90%;
    grid-template-columns: 1fr;
    padding-top: 0;
  }
}
.personal-data .personal-data_selectors__container .personal-data__selectors .personal-data__selector {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 6px;
}
@media (max-width: 700px ) {
  .personal-data .personal-data_selectors__container .personal-data__selectors .personal-data__selector {
    padding-top: var(--space-l);
    padding-bottom: var(--space-l);
  }
}
.personal-data .personal-data_selectors__container .personal-data__selectors .personal-data__selector h5 {
  font-style: normal;
  padding-bottom: 20px;
}
.personal-data .personal-data_selectors__container .personal-data__selectors .personal-data__selector .personal-icon {
  max-width: 20%;
  padding-bottom: 20px;
}
@media (max-width: 700px) {
  .personal-data .personal-data_selectors__container .personal-data__selectors .personal-data__selector .personal-icon.second {
    padding-top: 10px;
  }
}
.personal-data .personal-data_selectors__container .personal-data__selectors .personal-data__selector .button-flex {
  display: flex;
  justify-content: center;
  margin: auto;
  padding-top: var(--space-l);
}
@media (max-width: 700px) {
  .personal-data .personal-data_selectors__container .personal-data__selectors .personal-data__selector .button-flex {
    padding-bottom: 10px;
  }
}
@media (max-width: 1024px) {
  .personal-data .personal-data_selectors__container .personal-data__selectors .personal-data__selector .button-flex.first {
    padding-top: 65px;
  }
}
@media (max-width: 940px) {
  .personal-data .personal-data_selectors__container .personal-data__selectors .personal-data__selector .button-flex.first {
    padding-top: 53px;
  }
}
@media (max-width: 750px) {
  .personal-data .personal-data_selectors__container .personal-data__selectors .personal-data__selector .button-flex.first {
    padding-top: 21px;
  }
}
@media (max-width: 700px) {
  .personal-data .personal-data_selectors__container .personal-data__selectors .personal-data__selector .button-flex.first {
    padding-top: 20px;
  }
}
.personal-data .personal-data_selectors__container .personal-data__selectors .personal-data__selector .lead-font, .personal-data .personal-data_selectors__container .personal-data__selectors .personal-data__selector .articles-related .content .articles-wrapper article .article-text .article-links a, .articles-related .content .articles-wrapper article .article-text .article-links .personal-data .personal-data_selectors__container .personal-data__selectors .personal-data__selector a, .personal-data .personal-data_selectors__container .personal-data__selectors .personal-data__selector .articles-related .content .articles-wrapper article .article-text a h3.headline-font, .articles-related .content .articles-wrapper article .article-text a .personal-data .personal-data_selectors__container .personal-data__selectors .personal-data__selector h3.headline-font, .personal-data .personal-data_selectors__container .personal-data__selectors .personal-data__selector .articles-related .content .articles-wrapper article .article-text h3.date, .articles-related .content .articles-wrapper article .article-text .personal-data .personal-data_selectors__container .personal-data__selectors .personal-data__selector h3.date, .personal-data .personal-data_selectors__container .personal-data__selectors .personal-data__selector .form .legal-text__title, .form .personal-data .personal-data_selectors__container .personal-data__selectors .personal-data__selector .legal-text__title {
  position: relative;
  z-index: 1;
}
.personal-data .personal-data_selectors__container .personal-data__selectors .personal-data__selector .back {
  position: absolute;
  top: 0;
  z-index: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--bc-1);
  transform: skew(30deg) translateX(-110%);
  transition: all 0.3s cubic-bezier(0, 0.43, 0, 0.9);
}
.personal-data .personal-data_selectors__container .personal-data__selectors .personal-data__selector:last-child {
  margin: 50px 0;
}
@media (max-width:700px) {
  .personal-data .personal-data_selectors__container .personal-data__selectors .personal-data__selector:last-child {
    border-left: unset;
    border-top: 1px solid black;
  }
}

.profiles__container .checker__field input {
  width: 40% !important;
}

.userEmail-container {
  margin: 20px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.userEmail-container .user-email {
  width: 80%;
}
.userEmail-container .user-email input {
  margin-left: 5%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 50%;
  margin-top: 5px;
  border: none;
  height: 35px;
  border-bottom: 1px solid var(--bc-1);
  padding: var(--space-s) var(--space-s);
}
.userEmail-container .buttons .changePassword {
  margin: 0 !important;
}

.order-result__content {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.order-result__content .lead-font, .order-result__content .articles-related .content .articles-wrapper article .article-text .article-links a, .articles-related .content .articles-wrapper article .article-text .article-links .order-result__content a, .order-result__content .articles-related .content .articles-wrapper article .article-text a h3.headline-font, .articles-related .content .articles-wrapper article .article-text a .order-result__content h3.headline-font, .order-result__content .articles-related .content .articles-wrapper article .article-text h3.date, .articles-related .content .articles-wrapper article .article-text .order-result__content h3.date, .order-result__content .form .legal-text__title, .form .order-result__content .legal-text__title {
  margin-bottom: var(--space-s);
}

.circle-loader {
  margin: 0 0 30px 10px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-left-color: var(--bc-1);
  animation-name: loader-spin;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  position: relative;
  display: inline-block;
  vertical-align: top;
  box-sizing: content-box;
}

.circle-loader,
.circle-loader:after {
  border-radius: 50%;
  width: 5em;
  height: 5em;
}

.load-complete {
  animation: none;
  border-color: var(--bc-1);
  transition: border 500ms ease-out;
}

.load-error {
  animation: none;
  border-color: #FF0000;
  transition: border 500ms ease-out;
}

.checkmark {
  display: none;
  box-sizing: content-box;
}
.checkmark.draw:after {
  opacity: 1;
  height: 2.5em;
  width: 1.25em;
  transform-origin: left top;
  border-right: 2px solid var(--bc-1);
  border-top: 2px solid var(--bc-1);
  content: "";
  left: 1.05em;
  top: 2.5em;
  position: absolute;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-name: checkmark;
  transform: scaleX(-1) rotate(135deg);
}
.checkmark.error {
  position: absolute;
  left: 2.45em;
  top: 1.35em;
  width: 2.5em;
  height: 2.5em;
}
.checkmark.error:before, .checkmark.error:after {
  position: absolute;
  content: " ";
  height: 2.5em;
  width: 2px;
  background-color: #FF0000;
  transform-origin: top;
}
.checkmark.error:before {
  transform: rotate(45deg) scaleY(0);
  animation: error1 0.4s ease-out forwards;
  left: 14px;
  top: 5px;
}
.checkmark.error:after {
  transform: rotate(-45deg) scaleY(0);
  animation: error2 0.4s ease-out forwards 0.4s;
  top: 5px;
  left: -14px;
}

@keyframes loader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes error1 {
  from {
    transform: rotate(45deg) scaleY(0);
  }
  to {
    transform: rotate(45deg) scaleY(1);
  }
}
@keyframes error2 {
  from {
    transform: rotate(-45deg) scaleY(0);
  }
  to {
    transform: rotate(-45deg) scaleY(1);
  }
}
@keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 1.25em;
    opacity: 1;
  }
  40% {
    height: 2.5em;
    width: 1.25em;
    opacity: 1;
  }
  100% {
    height: 2.5em;
    width: 1.25em;
    opacity: 1;
  }
}
.wave {
  position: absolute;
  width: 100%;
  z-index: 0;
}

.waves {
  position: absolute;
  width: 100%;
  height: 50vh;
  margin-bottom: -7px;
  /*Fix for safari gap*/
  min-height: 100px;
  transform: rotate(180deg);
  height: var(--wave_height);
}
.waves.inverted {
  transform: rotate(0deg);
  bottom: 0;
}
.waves.special {
  height: 87vh;
  transform: rotate(180deg) scaleX(1.7);
}
@media (max-width: 480px) {
  .waves.special {
    display: none;
  }
}
.waves.special.inverted {
  transform: rotate(0deg) scaleX(1.7);
}

/* Animation */
.parallax > use {
  animation: move-forever 23s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 20s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 25s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 30s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 40s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height: 240px;
    min-height: 40px;
    transform: rotate(180deg) scale(3, 1);
  }
  .waves.inverted {
    transform: rotate(0deg) scale(3, 1);
  }
  h1 {
    font-size: 24px;
  }
}
/* --------------------------- */
/* ----- 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 (orientation: portrait) {
  .anchors-bottom-info {
    display: none;
  }
}

/* -------------------------- */
/* ----- ALERTS LAYOUT ------ */
/* -------------------------- */
.notification {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: var(--z-index--overlay);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 450px;
  padding: var(--space-m) var(--space-l);
  background-color: #2D9935;
  color: var(--white);
  text-align: center;
}
.notification .close {
  position: absolute;
  top: var(--space-s);
  right: var(--space-s);
  cursor: pointer;
}
.notification.error {
  background-color: #FF0000;
}

/* -------------------------- */
article {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 30px auto;
}
article:hover .article-text .article-content .title-content a h3.headline-font {
  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%;
  width: 100%;
  grid-row-end: span 2;
}
article .article-image .lens {
  display: none;
}
article .article-text {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  padding: var(--space-m);
  padding-bottom: var(--space-s);
  padding-top: 0;
  z-index: var(--z-index--highlight);
}
@media (max-device-width: 480px) 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 {
  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;
}

/* -------------------------- */
/* --- 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--border {
  border: 2px solid transparent;
  border-radius: 5px;
}

/* -------------------------- */
/* --- 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 (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, .form#marketing-form .input-file label, .add-img-establishment .input-file label, .element--image .input-file label, .edit--image .input-file label {
  display: flex;
  align-items: center;
  padding: var(--space-s) var(--space-m);
  margin-left: var(--space-m);
  transition: all 0.3s ease-in-out;
  text-align: center;
  cursor: pointer;
  border-radius: 40px;
}
.button:first-child, .form#marketing-form .input-file label:first-child, .add-img-establishment .input-file label:first-child, .element--image .input-file label:first-child, .edit--image .input-file label:first-child {
  margin-left: 0;
}
.button:hover, .form#marketing-form .input-file label:hover, .add-img-establishment .input-file label:hover, .element--image .input-file label:hover, .edit--image .input-file label:hover {
  text-decoration: none;
}
.button--default, .form#marketing-form .input-file label, .add-img-establishment .input-file label, .element--image .input-file label, .edit--image .input-file label {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  background: linear-gradient(45deg, var(--bc-2-lighter-40), var(--bc-2-darker-40));
  border: 0;
  outline: 0;
  color: var(--white);
}
.button--default > span, .form#marketing-form .input-file label > span, .add-img-establishment .input-file label > span, .element--image .input-file label > span, .edit--image .input-file label > span {
  position: relative;
  z-index: 2;
}
.button--default.disabled, .form#marketing-form .input-file label.disabled, .add-img-establishment .input-file label.disabled, .element--image .input-file label.disabled, .edit--image .input-file label.disabled {
  filter: grayscale(100%);
}
.button--default.active, .form#marketing-form .input-file label.active, .add-img-establishment .input-file label.active, .element--image .input-file label.active, .edit--image .input-file label.active {
  background: linear-gradient(45deg, #3f2b23, var(--bc-2-darker-40));
}
.button--default::after, .form#marketing-form .input-file label::after, .add-img-establishment .input-file label::after, .element--image .input-file label::after, .edit--image .input-file label::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 40px;
  background: linear-gradient(45deg, var(--bc-2-lighter-40), var(--bc-2-lighter-40));
  opacity: 0;
  transition: all 0.4s ease-out;
  z-index: 1;
}
.button--default:hover::after, .form#marketing-form .input-file label:hover::after, .add-img-establishment .input-file label:hover::after, .element--image .input-file label:hover::after, .edit--image .input-file label:hover::after {
  opacity: 1;
}
.button--contact {
  position: relative;
  background: linear-gradient(45deg, var(--bc-2-lighter-40), var(--bc-2-darker-40));
  border: 0;
  outline: 0;
  color: var(--white);
}
.button--contact > span {
  position: relative;
  z-index: 2;
}
.button--contact::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 40px;
  background: linear-gradient(45deg, var(--bc-2-lighter-40));
  opacity: 0;
  transition: all 0.4s ease-out;
  z-index: 1;
}
.button--contact:hover::after {
  opacity: 1;
}
.button input, .form#marketing-form .input-file label input, .add-img-establishment .input-file label input, .element--image .input-file label input, .edit--image .input-file label input,
.button span,
.form#marketing-form .input-file label span,
.add-img-establishment .input-file label span,
.element--image .input-file label span,
.edit--image .input-file label span {
  position: relative;
}
.button input, .form#marketing-form .input-file label input, .add-img-establishment .input-file label input, .element--image .input-file label input, .edit--image .input-file label input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.button.disabled, .form#marketing-form .input-file label.disabled, .add-img-establishment .input-file label.disabled, .element--image .input-file label.disabled, .edit--image .input-file label.disabled {
  background: linear-gradient(45deg, #949494, #585858);
  pointer-events: none;
}
.button.disabled span, .form#marketing-form .input-file label.disabled span, .add-img-establishment .input-file label.disabled span, .element--image .input-file label.disabled span, .edit--image .input-file label.disabled span {
  background: linear-gradient(45deg, #949494, #585858);
}
.button.disabled:hover, .form#marketing-form .input-file label.disabled:hover, .add-img-establishment .input-file label.disabled:hover, .element--image .input-file label.disabled:hover, .edit--image .input-file label.disabled:hover {
  background: linear-gradient(45deg, #949494, #585858) !important;
}
.button.disabled:hover span, .form#marketing-form .input-file label.disabled:hover span, .add-img-establishment .input-file label.disabled:hover span, .element--image .input-file label.disabled:hover span, .edit--image .input-file label.disabled:hover span {
  background: linear-gradient(45deg, #949494, #585858) !important;
}

/* -------------------------- */
/* ----- COOKIES LAYOUT ----- */
/* -------------------------- */
.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
  font-size: 11px;
  z-index: 200;
}
@media mobile {
  .cookies {
    padding: 20;
  }
}
.cookies .content {
  padding: 0;
}
.cookies .content #popup1-cookies {
  display: none;
}
.cookies .close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
.cookies a {
  color: white;
}
.cookies a:hover {
  text-decoration: underline;
}
.cookies .cookies-options {
  padding: 10px 0 0;
  width: 550px;
  margin: auto;
  justify-content: center;
}
@media (max-width: 768px) {
  .cookies .cookies-options {
    width: 100%;
  }
}
.cookies .cookies-options .button, .cookies .cookies-options .form#marketing-form .input-file label, .form#marketing-form .input-file .cookies .cookies-options label, .cookies .cookies-options .add-img-establishment .input-file label, .add-img-establishment .input-file .cookies .cookies-options label, .cookies .cookies-options .element--image .input-file label, .element--image .input-file .cookies .cookies-options label, .cookies .cookies-options .edit--image .input-file label, .edit--image .input-file .cookies .cookies-options label {
  padding: 10px;
  margin-bottom: 0;
  cursor: pointer;
  background-color: white;
  color: black;
}
@media (max-width: 768px) {
  .cookies .cookies-options .button, .cookies .cookies-options .form#marketing-form .input-file label, .form#marketing-form .input-file .cookies .cookies-options label, .cookies .cookies-options .add-img-establishment .input-file label, .add-img-establishment .input-file .cookies .cookies-options label, .cookies .cookies-options .element--image .input-file label, .element--image .input-file .cookies .cookies-options label, .cookies .cookies-options .edit--image .input-file label, .edit--image .input-file .cookies .cookies-options label {
    margin-left: 0 !important;
    justify-content: center;
  }
}
.cookies .cookies-options .button.cookies-accept, .cookies .cookies-options .form#marketing-form .input-file label.cookies-accept, .form#marketing-form .input-file .cookies .cookies-options label.cookies-accept, .cookies .cookies-options .add-img-establishment .input-file label.cookies-accept, .add-img-establishment .input-file .cookies .cookies-options label.cookies-accept, .cookies .cookies-options .element--image .input-file label.cookies-accept, .element--image .input-file .cookies .cookies-options label.cookies-accept, .cookies .cookies-options .edit--image .input-file label.cookies-accept, .edit--image .input-file .cookies .cookies-options label.cookies-accept {
  background-color: linear-gradient(45deg, var(--bc-2-lighter-40), var(--bc-2-darker-40));
  color: white;
}
.cookies .cookies-options .button.cookies-accept:hover, .cookies .cookies-options .form#marketing-form .input-file label.cookies-accept:hover, .form#marketing-form .input-file .cookies .cookies-options label.cookies-accept:hover, .cookies .cookies-options .add-img-establishment .input-file label.cookies-accept:hover, .add-img-establishment .input-file .cookies .cookies-options label.cookies-accept:hover, .cookies .cookies-options .element--image .input-file label.cookies-accept:hover, .element--image .input-file .cookies .cookies-options label.cookies-accept:hover, .cookies .cookies-options .edit--image .input-file label.cookies-accept:hover, .edit--image .input-file .cookies .cookies-options label.cookies-accept:hover {
  background-color: white;
  color: black !important;
}
.cookies .cookies-options .button.cookies-cancel, .cookies .cookies-options .form#marketing-form .input-file label.cookies-cancel, .form#marketing-form .input-file .cookies .cookies-options label.cookies-cancel, .cookies .cookies-options .add-img-establishment .input-file label.cookies-cancel, .add-img-establishment .input-file .cookies .cookies-options label.cookies-cancel, .cookies .cookies-options .element--image .input-file label.cookies-cancel, .element--image .input-file .cookies .cookies-options label.cookies-cancel, .cookies .cookies-options .edit--image .input-file label.cookies-cancel, .edit--image .input-file .cookies .cookies-options label.cookies-cancel {
  background-color: linear-gradient(45deg, var(--bc-2-lighter-40), var(--bc-2-darker-40));
  color: white;
  margin-left: var(--space-m);
}
@media (max-width: 768px) {
  .cookies .cookies-options .button.cookies-cancel, .cookies .cookies-options .form#marketing-form .input-file label.cookies-cancel, .form#marketing-form .input-file .cookies .cookies-options label.cookies-cancel, .cookies .cookies-options .add-img-establishment .input-file label.cookies-cancel, .add-img-establishment .input-file .cookies .cookies-options label.cookies-cancel, .cookies .cookies-options .element--image .input-file label.cookies-cancel, .element--image .input-file .cookies .cookies-options label.cookies-cancel, .cookies .cookies-options .edit--image .input-file label.cookies-cancel, .edit--image .input-file .cookies .cookies-options label.cookies-cancel {
    margin-left: 0;
  }
}
.cookies .cookies-options .button.cookies-cancel:hover, .cookies .cookies-options .form#marketing-form .input-file label.cookies-cancel:hover, .form#marketing-form .input-file .cookies .cookies-options label.cookies-cancel:hover, .cookies .cookies-options .add-img-establishment .input-file label.cookies-cancel:hover, .add-img-establishment .input-file .cookies .cookies-options label.cookies-cancel:hover, .cookies .cookies-options .element--image .input-file label.cookies-cancel:hover, .element--image .input-file .cookies .cookies-options label.cookies-cancel:hover, .cookies .cookies-options .edit--image .input-file label.cookies-cancel:hover, .edit--image .input-file .cookies .cookies-options label.cookies-cancel:hover {
  background-color: white;
  color: black !important;
}
.cookies .cookies-options .button.cookies-config, .cookies .cookies-options .form#marketing-form .input-file label.cookies-config, .form#marketing-form .input-file .cookies .cookies-options label.cookies-config, .cookies .cookies-options .add-img-establishment .input-file label.cookies-config, .add-img-establishment .input-file .cookies .cookies-options label.cookies-config, .cookies .cookies-options .element--image .input-file label.cookies-config, .element--image .input-file .cookies .cookies-options label.cookies-config, .cookies .cookies-options .edit--image .input-file label.cookies-config, .edit--image .input-file .cookies .cookies-options label.cookies-config {
  background-color: linear-gradient(45deg, var(--bc-2-lighter-40), var(--bc-2-darker-40));
  color: white;
  margin-left: var(--space-m);
}
@media (max-width: 768px) {
  .cookies .cookies-options .button.cookies-config, .cookies .cookies-options .form#marketing-form .input-file label.cookies-config, .form#marketing-form .input-file .cookies .cookies-options label.cookies-config, .cookies .cookies-options .add-img-establishment .input-file label.cookies-config, .add-img-establishment .input-file .cookies .cookies-options label.cookies-config, .cookies .cookies-options .element--image .input-file label.cookies-config, .element--image .input-file .cookies .cookies-options label.cookies-config, .cookies .cookies-options .edit--image .input-file label.cookies-config, .edit--image .input-file .cookies .cookies-options label.cookies-config {
    margin-left: 0;
  }
}
.cookies .cookies-options .button.cookies-config:hover, .cookies .cookies-options .form#marketing-form .input-file label.cookies-config:hover, .form#marketing-form .input-file .cookies .cookies-options label.cookies-config:hover, .cookies .cookies-options .add-img-establishment .input-file label.cookies-config:hover, .add-img-establishment .input-file .cookies .cookies-options label.cookies-config:hover, .cookies .cookies-options .element--image .input-file label.cookies-config:hover, .element--image .input-file .cookies .cookies-options label.cookies-config:hover, .cookies .cookies-options .edit--image .input-file label.cookies-config:hover, .edit--image .input-file .cookies .cookies-options label.cookies-config:hover {
  background-color: white;
  color: black !important;
}
.cookies .cookies-options .button.cookies-info, .cookies .cookies-options .form#marketing-form .input-file label.cookies-info, .form#marketing-form .input-file .cookies .cookies-options label.cookies-info, .cookies .cookies-options .add-img-establishment .input-file label.cookies-info, .add-img-establishment .input-file .cookies .cookies-options label.cookies-info, .cookies .cookies-options .element--image .input-file label.cookies-info, .element--image .input-file .cookies .cookies-options label.cookies-info, .cookies .cookies-options .edit--image .input-file label.cookies-info, .edit--image .input-file .cookies .cookies-options label.cookies-info {
  background-color: linear-gradient(45deg, var(--bc-2-lighter-40), var(--bc-2-darker-40));
  color: white;
}
.cookies .cookies-options .button.cookies-info:hover, .cookies .cookies-options .form#marketing-form .input-file label.cookies-info:hover, .form#marketing-form .input-file .cookies .cookies-options label.cookies-info:hover, .cookies .cookies-options .add-img-establishment .input-file label.cookies-info:hover, .add-img-establishment .input-file .cookies .cookies-options label.cookies-info:hover, .cookies .cookies-options .element--image .input-file label.cookies-info:hover, .element--image .input-file .cookies .cookies-options label.cookies-info:hover, .cookies .cookies-options .edit--image .input-file label.cookies-info:hover, .edit--image .input-file .cookies .cookies-options label.cookies-info:hover {
  background-color: white;
  color: black !important;
}
@media screen and (max-width: 700px) {
  .cookies .cookies-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.cookies .popup-cookies {
  max-height: 100vh;
  height: auto;
  margin: 10px auto;
  padding: 20px;
  overflow-y: scroll;
  background: #fff;
  border-radius: 5px;
  width: 40%;
  position: relative;
  transition: all 5s ease-in-out;
}
@media screen and (max-width: 700px) {
  .cookies .popup-cookies {
    width: 80%;
  }
}
.cookies .popup-cookies .content {
  font-size: 2rem;
  color: black;
  overflow: auto;
  line-height: 3rem;
}
.cookies #popup1-cookies {
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookies .configure-Cookie h2 {
  color: black;
  font-size: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.cookies .configure-Cookie div {
  color: black;
}
.cookies .configure-Cookie div a {
  color: black;
}
.cookies .container-button {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 10px;
  gap: 20px;
}
.cookies .container-button .button, .cookies .container-button .form#marketing-form .input-file label, .form#marketing-form .input-file .cookies .container-button label, .cookies .container-button .add-img-establishment .input-file label, .add-img-establishment .input-file .cookies .container-button label, .cookies .container-button .element--image .input-file label, .element--image .input-file .cookies .container-button label, .cookies .container-button .edit--image .input-file label, .edit--image .input-file .cookies .container-button label {
  margin-bottom: 0px;
  background-color: linear-gradient(45deg, var(--bc-2-lighter-40), var(--bc-2-darker-40));
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 700px) {
  .cookies .box {
    width: 70%;
  }
  .cookies .popup {
    width: 70%;
  }
}

/* -------------------------- */
.form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: auto;
}
.form:focus {
  outline: 0;
}
.form .help-text {
  transition: opacity 0.25s ease-in-out;
  justify-self: center;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: var(--space-l);
  color: white;
  background: linear-gradient(45deg, #9a0f0f, #ff3b3b);
  border: 0;
  outline: 0;
  color: var(--white);
  border-radius: 20px;
  padding: 5px 15px;
}
.form .help-text.shake {
  animation: shake 0.5s;
  animation-iteration-count: 4;
}
@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
.form .form-block {
  margin-bottom: var(--space-m);
  width: 100%;
}
.form .form-block label {
  font-weight: 600;
}
.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;
  border-bottom: 1px solid var(--bc-1);
  padding: var(--space-s) var(--space-s);
}
.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: none;
}
.form .form-block input[type=text].invalid, .form .form-block input[type=text].invalid-pass,
.form .form-block input[type=textarea].invalid,
.form .form-block input[type=textarea].invalid-pass,
.form .form-block input[type=email].invalid,
.form .form-block input[type=email].invalid-pass,
.form .form-block input[type=tel].invalid,
.form .form-block input[type=tel].invalid-pass,
.form .form-block input[type=number].invalid,
.form .form-block input[type=number].invalid-pass,
.form .form-block input[type=date].invalid,
.form .form-block input[type=date].invalid-pass,
.form .form-block input[type=password].invalid,
.form .form-block input[type=password].invalid-pass,
.form .form-block textarea.invalid,
.form .form-block textarea.invalid-pass,
.form .form-block select.invalid,
.form .form-block select.invalid-pass {
  border-bottom: 1px solid red;
}
.form .form-block input[type=text][disabled],
.form .form-block input[type=textarea][disabled],
.form .form-block input[type=email][disabled],
.form .form-block input[type=tel][disabled],
.form .form-block input[type=number][disabled],
.form .form-block input[type=date][disabled],
.form .form-block input[type=password][disabled],
.form .form-block textarea[disabled],
.form .form-block select[disabled] {
  background-color: rgb(235, 235, 228);
}
.form .form-block input[type=date] {
  padding: 10px 17px 13px;
}
.form .form-block input[type=date]:before {
  content: attr(placeholder) !important;
  text-align: left;
  letter-spacing: 1px;
  margin-right: 0.5em;
}
.form .form-block input[type=date]:focus:before, .form .form-block input[type=date]:valid:before {
  content: "";
}
.form .form-block input[type=checkbox] {
  background-color: transparent;
  font-size: 12px;
  height: 15px;
  width: 15px;
  margin: 3px 10px 3px 0;
}
.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);
  display: contents;
}
.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 .g-recaptcha {
  display: flex;
  justify-content: center;
  padding-top: var(--space-m);
}
@media (max-device-width: 480px) and (orientation: portrait) {
  .form .g-recaptcha {
    width: 100%;
    text-align: center;
  }
}
.form .legal-text {
  width: 100%;
  margin-top: var(--space-l);
  grid-column-end: span 2;
}
@media (max-width: 700px) {
  .form .legal-text {
    grid-column-end: span 1;
  }
}
.form .legal-text__title {
  text-align: center;
  margin-bottom: var(--space-m);
  font-style: normal;
}
.form .legal-text__tabs {
  display: grid;
}
.form .legal-text__container {
  display: flex;
}
@media (max-width: 590px) {
  .form .legal-text__container {
    flex-direction: column;
  }
}
.form .legal-text__tab {
  position: relative;
  padding: var(--space-m) var(--space-l);
  background-color: #efefef;
  font-weight: 600;
  cursor: pointer;
}
.form .legal-text__tab--active {
  background-color: var(--white);
}
.form .legal-text__tab--active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: var(--bc-2);
}
.form .legal-text__items {
  flex: 1;
}
.form .legal-text__item {
  background-color: var(--white);
  display: none;
  width: 100%;
  height: 100%;
  padding: var(--space-m) var(--space-l);
}
.form .legal-text__item--active {
  display: block;
}
.form#marketing-form .input-file {
  margin-top: var(--space-xs);
}
.form#marketing-form .input-file input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.form#marketing-form .input-file label {
  display: inline-block;
  margin-left: 0;
  cursor: pointer;
}
.form#marketing-form .input-file label .input-file__content {
  margin-left: var(--space-xs);
}
.form#marketing-form .input-file input:focus + label,
.form#marketing-form .input-file label:hover {
  background-color: var(--bc-1-lighter-40);
}

/**
* 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;
  z-index: 4;
}

.lens {
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-index--background);
  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.6);
}
.lens--gradient-brand-color-1 { /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(125, 185, 232, 0) 0%, rgba(63, 43, 35, 0.8) 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: relative;
  display: none;
  z-index: 16;
  padding: var(--space-s) var(--space-xs);
  order: 1;
  width: 100%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 1250px ) {
  .header .menu-button {
    display: flex;
  }
}
.header .menu-button .bars {
  display: block;
  position: relative;
  width: 25px;
  height: 25px;
}
.header .menu-button .bars .bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--bc-1);
  margin: 4px auto;
  backface-visibility: hidden;
  transform: translate(0, 0) rotate(0);
}
@media (max-device-width: 480px) and (orientation: portrait) {
  .header .menu-button {
    margin-top: 2px;
  }
}
.header .nav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin: auto 0;
}
@media (max-width: 1250px ) {
  .header .nav {
    position: fixed;
    z-index: var(--z-index--hidden);
    opacity: 0;
    top: 0;
    right: 0;
    transform: translate(100%, 0);
    width: 350px;
    overflow-y: auto;
  }
}
.header .nav nav .logo {
  display: none;
}
.header .nav nav .items .menu-item .main-link .icon {
  display: none;
}
.header .nav nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  position: relative;
  width: 100%;
  margin: auto;
  background-color: transparent;
}
.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;
  justify-content: flex-end;
  width: 100%;
  margin-left: var(--space-s);
}
.header .nav nav .items .menu-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1251px) {
  .header .nav nav .items .menu-item:not(.menu-item--last) a span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: calc(-1 * var(--space-xs));
    left: 0;
    border-radius: 40px;
    background: linear-gradient(45deg, var(--bc-2-darker-40), var(--bc-2-lighter-40));
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.2s ease-out;
  }
  .header .nav nav .items .menu-item:not(.menu-item--last):hover a span::after {
    transform: scaleX(1);
  }
}
.header .nav nav .items .menu-item .popup-submenu {
  display: none;
  cursor: pointer;
  grid-row-end: span 2;
  align-self: center;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 30px;
  height: 15px;
  transform: rotate(-45deg);
  transition: transform 0.2s linear;
}
@media (max-width: 1250px) {
  .header .nav nav .items .menu-item .popup-submenu {
    display: inline;
  }
}
.header .nav nav .items .menu-item .popup-submenu.active {
  transform: none;
}
.header .nav nav .items .menu-item:hover .submenu {
  display: block;
}
.header .nav nav .items .menu-item__submenu {
  display: none;
  background-color: rgb(0, 116, 99);
  position: absolute;
  width: 100%;
  text-align: center;
  padding: var(--space-m) var(--space-s);
  bottom: var(--space-s);
  transform: translate(14px, 100%);
}
@media (max-width: 1250px) {
  .header .nav nav .items .menu-item__submenu {
    display: block;
    position: relative;
    transform: scaleY(0);
  }
}
.header .nav nav .items .menu-item__submenu.active {
  transform: none;
}
.header .nav nav .items .menu-item .main-link {
  position: relative;
  display: block;
  width: 100%;
  color: var(--bc-1);
}
.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.disabled {
  pointer-events: none;
  cursor: default;
}
.header .nav nav .items .menu-item--last {
  padding-right: 0;
}
.header .nav nav .items .menu-item--last .main-link {
  position: relative;
}
.header .nav nav .items .menu-item--last .main-link span {
  color: white;
}
.header .nav nav .items .menu-item--last .main-link i {
  color: white;
  z-index: 2;
  position: relative;
}
.header .nav nav .items .menu-item .child-link {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-xs);
}
.header .nav nav .items .menu-item .child-link:last-child {
  margin-bottom: 0;
}
.header .nav nav .items .menu-item .child-link .arrow {
  display: inline-block;
  margin-left: var(--space-s);
}
.header .nav nav .items .menu-item .child-link .arrow:before, .header .nav nav .items .menu-item .child-link .arrow:after {
  border-color: var(--bc-1);
}
.header .nav nav .items .menu-item:hover .main-link .arrow, .header .nav nav .items .menu-item.current .main-link .arrow {
  width: 100px;
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .header .nav nav {
    height: auto;
    padding: var(--space-m);
  }
  .header .nav nav .menu-item .submenu {
    padding: var(--space-s) 0 0;
  }
}
@media (max-width: 1250px ) {
  .header .nav {
    padding: var(--space-m);
    flex-direction: column;
    justify-content: flex-start;
    height: 100vh;
    background-color: var(--white);
  }
  .header .nav nav {
    background-color: var(--white);
    overflow-y: auto;
    padding: 0;
    min-height: 100%;
    flex-direction: column;
    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;
    height: calc(100% - calc(var(--space-m) * 1.5));
  }
  .header .nav nav .items .menu-item {
    padding: 0;
    margin: var(--space-l) 0;
  }
}
@media (max-width: 1250px ) and (max-width: 550px) {
  .header .nav nav .items .menu-item {
    margin: calc(var(--space-m) * 1.5) 0;
  }
}
@media (max-width: 1250px ) and (max-width: 400px) {
  .header .nav nav .items .menu-item {
    margin: var(--space-m) 0;
  }
}
@media (max-width: 1250px ) {
  .header .nav nav .items .menu-item .main-link {
    color: var(--bc-1);
    font-size: 2.8rem;
    font-weight: 400;
    height: 100%;
  }
}
@media (max-width: 1250px ) and (max-width: 550px) {
  .header .nav nav .items .menu-item .main-link {
    font-size: 2.2rem;
  }
}
@media (max-width: 1250px ) and (max-width: 400px) {
  .header .nav nav .items .menu-item .main-link {
    font-size: 2rem;
  }
}
@media (max-width: 1250px ) {
  .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 {
    font-size: 1.8rem;
  }
  .header .nav nav .items .menu-item--last .main-link span {
    padding: 6px;
  }
  .header .nav nav .items .coffee-coins-counter {
    margin-left: 0;
  }
  .header .nav nav .items .coffee-coins-counter .body-font, .header .nav nav .items .coffee-coins-counter .select-pure__select, .header .nav nav .items .coffee-coins-counter .articles-related .content .articles-wrapper article .article-text p, .articles-related .content .articles-wrapper article .article-text .header .nav nav .items .coffee-coins-counter p, .header .nav nav .items .coffee-coins-counter .article__socials .date p, .article__socials .date .header .nav nav .items .coffee-coins-counter p, .header .nav nav .items .coffee-coins-counter body, .header .nav nav .items .coffee-coins-counter .profile-page input, .profile-page .header .nav nav .items .coffee-coins-counter input, .header .nav nav .items .coffee-coins-counter .newOrder .filter-input, .newOrder .header .nav nav .items .coffee-coins-counter .filter-input, .header .nav nav .items .coffee-coins-counter .form .form-block label, .form .form-block .header .nav nav .items .coffee-coins-counter label, .header .nav nav .items .coffee-coins-counter .form .form-block input[type=text], .form .form-block .header .nav nav .items .coffee-coins-counter input[type=text],
  .header .nav nav .items .coffee-coins-counter .form .form-block input[type=textarea],
  .form .form-block .header .nav nav .items .coffee-coins-counter input[type=textarea],
  .header .nav nav .items .coffee-coins-counter .form .form-block input[type=email],
  .form .form-block .header .nav nav .items .coffee-coins-counter input[type=email],
  .header .nav nav .items .coffee-coins-counter .form .form-block input[type=tel],
  .form .form-block .header .nav nav .items .coffee-coins-counter input[type=tel],
  .header .nav nav .items .coffee-coins-counter .form .form-block input[type=number],
  .form .form-block .header .nav nav .items .coffee-coins-counter input[type=number],
  .header .nav nav .items .coffee-coins-counter .form .form-block input[type=date],
  .form .form-block .header .nav nav .items .coffee-coins-counter input[type=date],
  .header .nav nav .items .coffee-coins-counter .form .form-block input[type=password],
  .form .form-block .header .nav nav .items .coffee-coins-counter input[type=password],
  .header .nav nav .items .coffee-coins-counter .form .form-block textarea,
  .form .form-block .header .nav nav .items .coffee-coins-counter textarea,
  .header .nav nav .items .coffee-coins-counter .form .form-block select,
  .form .form-block .header .nav nav .items .coffee-coins-counter select {
    font-size: 2.2rem;
    margin-right: 5px;
  }
  .header .nav nav .items .coffee-coins-counter > img {
    height: 30px;
  }
  .header .nav nav .items .cart-icon {
    margin-left: 0;
    margin-top: var(--space-xs);
  }
  .header .nav nav .items .cart-icon img {
    height: 49px;
    width: 34px;
  }
  .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 {
  transform: translateY(calc(-32px + var(--space-m)));
}
.header.active .menu-button .bars .bar {
  background-color: var(--bc-1);
}
.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 {
  transform: translateY(calc(-32px + var(--space-m)));
  z-index: 99;
}
@media (max-width: 1250px ) {
  .header.active .nav {
    z-index: var(--z-index--overlay);
    opacity: 1;
    height: auto;
    transform: translate(0);
    width: 100%;
    min-height: 100%;
  }
}

.button-reverse {
  background: white;
  border: 2px solid #F19F19 !important;
  padding: 6px 14px;
}
.button-reverse i {
  color: #F19F19 !important;
}
.button-reverse span {
  color: #F19F19 !important;
}
.button-reverse:hover span {
  color: white !important;
}
.button-reverse:hover i {
  color: white !important;
}

.history__message {
  margin: 60px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.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, .notification {
  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 (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 (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 {
  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: visible;
  z-index: 2;
}
.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 .display-2,
.top .top__slider .content-slider .top__foreground .top__content .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .headline-font,
.articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .top .top__slider .content-slider .top__foreground .top__content .headline-font,
.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 .body-font,
.top .top__slider .content-slider .top__foreground .top__content .select-pure__select,
.top .top__slider .content-slider .top__foreground .top__content body,
.top .top__slider .content-slider .top__foreground .top__content .profile-page input,
.profile-page .top .top__slider .content-slider .top__foreground .top__content input,
.top .top__slider .content-slider .top__foreground .top__content .newOrder .filter-input,
.newOrder .top .top__slider .content-slider .top__foreground .top__content .filter-input,
.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 .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 .form .legal-text__title,
.form .top .top__slider .content-slider .top__foreground .top__content .legal-text__title,
.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 .display-2:last-child,
.top .top__slider .content-slider .top__foreground .top__content .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .headline-font:last-child,
.articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .top .top__slider .content-slider .top__foreground .top__content .headline-font: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 .body-font:last-child,
.top .top__slider .content-slider .top__foreground .top__content .select-pure__select:last-child,
.top .top__slider .content-slider .top__foreground .top__content body:last-child,
.top .top__slider .content-slider .top__foreground .top__content .profile-page input:last-child,
.profile-page .top .top__slider .content-slider .top__foreground .top__content input:last-child,
.top .top__slider .content-slider .top__foreground .top__content .newOrder .filter-input:last-child,
.newOrder .top .top__slider .content-slider .top__foreground .top__content .filter-input: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 .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 .form .legal-text__title:last-child,
.form .top .top__slider .content-slider .top__foreground .top__content .legal-text__title: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 (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 .display-2,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .headline-font,
.articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .top--home .top__slider .content-slider .top__foreground .top__content .headline-font,
.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 .display-2:last-child,
.top--home .top__slider .content-slider .top__foreground .top__content .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .headline-font:last-child,
.articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .top--home .top__slider .content-slider .top__foreground .top__content .headline-font: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 (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 .display-2:last-child,
  .top--home .top__slider .content-slider .top__foreground .top__content .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .headline-font:last-child,
  .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .top--home .top__slider .content-slider .top__foreground .top__content .headline-font: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 {
  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 .select-pure__select, .top--home .top__slider .content-slider .top__foreground .top__content body, .top--home .top__slider .content-slider .top__foreground .top__content .profile-page input, .profile-page .top--home .top__slider .content-slider .top__foreground .top__content input, .top--home .top__slider .content-slider .top__foreground .top__content .newOrder .filter-input, .newOrder .top--home .top__slider .content-slider .top__foreground .top__content .filter-input, .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 .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 .form .legal-text__title,
.form .top--home .top__slider .content-slider .top__foreground .top__content .legal-text__title,
.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,
.articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content h3.headline-font,
.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 .select-pure__select: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 .profile-page input:first-child, .profile-page .top--home .top__slider .content-slider .top__foreground .top__content input:first-child, .top--home .top__slider .content-slider .top__foreground .top__content .newOrder .filter-input:first-child, .newOrder .top--home .top__slider .content-slider .top__foreground .top__content .filter-input: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 .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 .form .legal-text__title:first-child,
.form .top--home .top__slider .content-slider .top__foreground .top__content .legal-text__title: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,
.articles-related .content .articles-wrapper article .article-text a .top--home .top__slider .content-slider .top__foreground .top__content h3.headline-font: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);
}
.top--baristas {
  height: 400px;
}
@media (max-width: 480px) {
  .top--baristas {
    height: 250px;
    margin-bottom: 50px;
  }
}
.top--baristas .top__foreground .top__container {
  position: relative;
  width: 1270px;
}
@media (max-width: 1500px) {
  .top--baristas .top__foreground .top__container {
    width: 100% !important;
    padding: 0 var(--space-l);
  }
}
@media (max-width: 480px) {
  .top--baristas .top__foreground .top__container {
    padding: 0 var(--space-m);
  }
}
@media (max-width: 480px) {
  .top--baristas .top__foreground .top__container .top__content .display-4 {
    font-size: 4.4rem;
    line-height: 4.8rem;
  }
}
@media (max-width: 900px) {
  .top--baristas .top__foreground .top__container .top__content .top__image {
    display: none;
  }
}
.top--baristas .background {
  position: relative;
}
@media (max-width: 768px) {
  .top--baristas .background .waves {
    transform: rotate(180deg) scale(1.5, 1);
  }
}
.top--baristas .top__foreground .top__container .top__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  flex-direction: row;
}
.top--baristas .top__foreground .top__container .top__content .top__image {
  width: 300px;
}
.top--baristas .top__foreground .top__container .top__content .top__text {
  max-width: 570px;
}
.top--article-cats {
  height: 240px;
}
.top--article-cats .top__foreground .top__container {
  position: relative;
  width: var(--content-medium-width);
}
@media (max-width: 1500px) {
  .top--article-cats .top__foreground .top__container {
    width: 100%;
    padding: 0 var(--space-l);
  }
}
@media (max-width: 480px) {
  .top--article-cats .top__foreground .top__container {
    padding: 0 var(--space-m);
  }
}
.top--article-cats .top__foreground .top__container .top__content {
  text-align: start;
  margin-left: 0;
  padding: 0 var(--space-m);
}
@media (max-width: 480px) {
  .top--article-cats .top__foreground .top__container .top__content .display-4 {
    font-size: 4.4rem;
    line-height: 4.8rem;
  }
}
.top--provinces .top__foreground .top__container {
  justify-content: flex-start !important;
}
.top--provinces .top__foreground .top__container .top__content {
  max-width: 560px;
  margin: 0;
}
.top--provinces .top__foreground .top__container .top__content .top__image {
  width: 300px;
}
.top--provinces .top__foreground .top__container .top__content .top__text {
  max-width: 570px;
}
.top--author {
  height: 300px;
}
@media (max-width: 768px) {
  .top--author {
    margin-bottom: var(--space-l);
  }
}
@media (max-width: 580px) {
  .top--author {
    height: 500px;
  }
}
.top--author .top__foreground .top__container .top__content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--space-xxl);
  flex-direction: row;
}
@media (max-width:800px) {
  .top--author .top__foreground .top__container .top__content {
    width: 100%;
    padding: 0 var(--space-l);
  }
}
@media (max-width: 580px) {
  .top--author .top__foreground .top__container .top__content {
    display: flex;
    flex-direction: column-reverse;
  }
}
.top--author .top__foreground .top__container .top__content .top__image {
  width: 250px;
}
.top--author .top__foreground .top__container .top__content .top__text {
  max-width: 500px;
  margin-left: var(--space-l);
}
@media (max-width: 580px) {
  .top--author .top__foreground .top__container .top__content .top__text {
    margin: 0;
    margin-bottom: var(--space-m);
    text-align: center;
  }
}
.top--author .background {
  position: relative;
}
@media (max-width: 768px) {
  .top--author .background .waves {
    transform: rotate(180deg) scale(1.5, 1);
  }
}
.top--article {
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 675px) {
  .top--article {
    margin-bottom: var(--space-m);
  }
}
@media (max-device-width: 480px) and (orientation: portrait) {
  .top--article .top__slider {
    height: calc(var(--space-xl) * 4);
  }
}
.top--article .top__slider .content-slider {
  display: flex;
  justify-content: center;
  max-width: var(--content-max-width);
  align-items: flex-start;
}
.top--article .top__slider .content-slider .slide {
  position: relative;
  width: 680px;
  height: 450px;
}
.top--article .top__slider .content-slider .slide .background {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
.top--article .top__slider .content-slider .top__foreground {
  position: relative;
  width: 50%;
  padding: 0 var(--space-l);
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  justify-content: flex-start;
  padding-top: var(--space-m);
}
.top--article .top__slider .content-slider .top__foreground .top__content {
  margin: 0;
  width: 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--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%;
  }
}
@media (max-width: 768px) {
  .top--article .top__slider .content-slider .top__foreground .top__content {
    display: flex;
    align-items: flex-start;
  }
}
.top--article .top__slider .content-slider .top__foreground .top__content .display-2, .top--article .top__slider .content-slider .top__foreground .top__content .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .headline-font, .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .top--article .top__slider .content-slider .top__foreground .top__content .headline-font, .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 .display-4 {
  color: var(--bc-1);
}
.top--article .top__slider .content-slider .top__foreground .top__content .lead-font, .top--article .top__slider .content-slider .top__foreground .top__content .form .legal-text__title, .form .top--article .top__slider .content-slider .top__foreground .top__content .legal-text__title, .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, .articles-related .content .articles-wrapper article .article-text a .top--article .top__slider .content-slider .top__foreground .top__content h3.headline-font, .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(--bc-1);
}
.top--article .top__slider .content-slider .top__foreground .top__content .article-tag {
  margin: 0;
  margin-bottom: var(--space-s);
  transform: translateX(calc(-1.5 * var(--space-l)));
}
@media (max-width: 1320px) {
  .top--article .top__slider .content-slider .top__foreground .top__content .article-tag {
    transform: none;
  }
}
@media (max-width: 768px) {
  .top--article .top__slider .content-slider .top__foreground .top__content .article-tag {
    margin-right: auto;
  }
}
.top--article .top__slider .content-slider .top__foreground .top__content .author {
  margin-top: var(--space-l);
}
.top--article .top__slider .content-slider .top__foreground .top__content .author > a {
  display: grid;
  grid-template-columns: 85px 1fr;
  align-items: center;
  gap: var(--space-m);
}
.top--article .top__slider .content-slider .top__foreground .top__content .author > a:hover {
  text-decoration: none;
}
.top--article .top__slider .content-slider .top__foreground .top__content .author__name, .top--article .top__slider .content-slider .top__foreground .top__content .author__position {
  color: var(--bc-1);
}
.top--article .top__slider .content-slider .top__foreground .top__content .author__name {
  margin-bottom: var(--space-s);
}
@media (max-width: 1320px) {
  .top--article .slider .content-slider .slide {
    position: absolute;
    height: 100%;
    width: 100%;
  }
  .top--article .slider .content-slider .slide .lens {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .top--article .slider .content-slider .slide .background {
    background-size: cover;
  }
  .top--article .slider .content-slider .top__foreground {
    width: 80%;
    padding-top: var(--space-l);
    padding-bottom: var(--space-l);
  }
  .top--article .slider .content-slider .top__foreground .top__content .body-font, .top--article .slider .content-slider .top__foreground .top__content .select-pure__select, .top--article .slider .content-slider .top__foreground .top__content body, .top--article .slider .content-slider .top__foreground .top__content .profile-page input, .profile-page .top--article .slider .content-slider .top__foreground .top__content input, .top--article .slider .content-slider .top__foreground .top__content .newOrder .filter-input, .newOrder .top--article .slider .content-slider .top__foreground .top__content .filter-input, .top--article .slider .content-slider .top__foreground .top__content .form .form-block label, .form .form-block .top--article .slider .content-slider .top__foreground .top__content label, .top--article .slider .content-slider .top__foreground .top__content .form .form-block input[type=text], .form .form-block .top--article .slider .content-slider .top__foreground .top__content input[type=text],
  .top--article .slider .content-slider .top__foreground .top__content .form .form-block input[type=textarea],
  .form .form-block .top--article .slider .content-slider .top__foreground .top__content input[type=textarea],
  .top--article .slider .content-slider .top__foreground .top__content .form .form-block input[type=email],
  .form .form-block .top--article .slider .content-slider .top__foreground .top__content input[type=email],
  .top--article .slider .content-slider .top__foreground .top__content .form .form-block input[type=tel],
  .form .form-block .top--article .slider .content-slider .top__foreground .top__content input[type=tel],
  .top--article .slider .content-slider .top__foreground .top__content .form .form-block input[type=number],
  .form .form-block .top--article .slider .content-slider .top__foreground .top__content input[type=number],
  .top--article .slider .content-slider .top__foreground .top__content .form .form-block input[type=date],
  .form .form-block .top--article .slider .content-slider .top__foreground .top__content input[type=date],
  .top--article .slider .content-slider .top__foreground .top__content .form .form-block input[type=password],
  .form .form-block .top--article .slider .content-slider .top__foreground .top__content input[type=password],
  .top--article .slider .content-slider .top__foreground .top__content .form .form-block textarea,
  .form .form-block .top--article .slider .content-slider .top__foreground .top__content textarea,
  .top--article .slider .content-slider .top__foreground .top__content .form .form-block select,
  .form .form-block .top--article .slider .content-slider .top__foreground .top__content select, .top--article .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--article .slider .content-slider .top__foreground .top__content p,
  .top--article .slider .content-slider .top__foreground .top__content .lead-font,
  .top--article .slider .content-slider .top__foreground .top__content .form .legal-text__title,
  .form .top--article .slider .content-slider .top__foreground .top__content .legal-text__title,
  .top--article .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 .slider .content-slider .top__foreground .top__content h3.date,
  .top--article .slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a h3.headline-font,
  .articles-related .content .articles-wrapper article .article-text a .top--article .slider .content-slider .top__foreground .top__content h3.headline-font,
  .top--article .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 .slider .content-slider .top__foreground .top__content a,
  .top--article .slider .content-slider .top__foreground .top__content .display-5,
  .top--article .slider .content-slider .top__foreground .top__content .display-4,
  .top--article .slider .content-slider .top__foreground .top__content .display-3,
  .top--article .slider .content-slider .top__foreground .top__content .display-2,
  .top--article .slider .content-slider .top__foreground .top__content .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .headline-font,
  .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .top--article .slider .content-slider .top__foreground .top__content .headline-font,
  .top--article .slider .content-slider .top__foreground .top__content .article__socials p,
  .article__socials .top--article .slider .content-slider .top__foreground .top__content p,
  .top--article .slider .content-slider .top__foreground .top__content .articles-related .content .text h3,
  .articles-related .content .text .top--article .slider .content-slider .top__foreground .top__content h3 {
    color: white !important;
  }
  .top--article .slider .content-slider .top__foreground .top__content .author__name, .top--article .slider .content-slider .top__foreground .top__content .author__position {
    color: white;
  }
}
@media (max-width: 675px) {
  .top--article .slider .content-slider {
    flex-direction: column;
  }
  .top--article .slider .content-slider .slide {
    position: relative;
  }
  .top--article .slider .content-slider .slide .lens {
    display: none;
  }
  .top--article .slider .content-slider .slide .background {
    height: 400px;
  }
  .top--article .slider .content-slider .top__foreground {
    width: 100%;
  }
  .top--article .slider .content-slider .top__foreground .top__content .body-font, .top--article .slider .content-slider .top__foreground .top__content .select-pure__select, .top--article .slider .content-slider .top__foreground .top__content body, .top--article .slider .content-slider .top__foreground .top__content .profile-page input, .profile-page .top--article .slider .content-slider .top__foreground .top__content input, .top--article .slider .content-slider .top__foreground .top__content .newOrder .filter-input, .newOrder .top--article .slider .content-slider .top__foreground .top__content .filter-input, .top--article .slider .content-slider .top__foreground .top__content .form .form-block label, .form .form-block .top--article .slider .content-slider .top__foreground .top__content label, .top--article .slider .content-slider .top__foreground .top__content .form .form-block input[type=text], .form .form-block .top--article .slider .content-slider .top__foreground .top__content input[type=text],
  .top--article .slider .content-slider .top__foreground .top__content .form .form-block input[type=textarea],
  .form .form-block .top--article .slider .content-slider .top__foreground .top__content input[type=textarea],
  .top--article .slider .content-slider .top__foreground .top__content .form .form-block input[type=email],
  .form .form-block .top--article .slider .content-slider .top__foreground .top__content input[type=email],
  .top--article .slider .content-slider .top__foreground .top__content .form .form-block input[type=tel],
  .form .form-block .top--article .slider .content-slider .top__foreground .top__content input[type=tel],
  .top--article .slider .content-slider .top__foreground .top__content .form .form-block input[type=number],
  .form .form-block .top--article .slider .content-slider .top__foreground .top__content input[type=number],
  .top--article .slider .content-slider .top__foreground .top__content .form .form-block input[type=date],
  .form .form-block .top--article .slider .content-slider .top__foreground .top__content input[type=date],
  .top--article .slider .content-slider .top__foreground .top__content .form .form-block input[type=password],
  .form .form-block .top--article .slider .content-slider .top__foreground .top__content input[type=password],
  .top--article .slider .content-slider .top__foreground .top__content .form .form-block textarea,
  .form .form-block .top--article .slider .content-slider .top__foreground .top__content textarea,
  .top--article .slider .content-slider .top__foreground .top__content .form .form-block select,
  .form .form-block .top--article .slider .content-slider .top__foreground .top__content select, .top--article .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--article .slider .content-slider .top__foreground .top__content p,
  .top--article .slider .content-slider .top__foreground .top__content .lead-font,
  .top--article .slider .content-slider .top__foreground .top__content .form .legal-text__title,
  .form .top--article .slider .content-slider .top__foreground .top__content .legal-text__title,
  .top--article .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 .slider .content-slider .top__foreground .top__content h3.date,
  .top--article .slider .content-slider .top__foreground .top__content .articles-related .content .articles-wrapper article .article-text a h3.headline-font,
  .articles-related .content .articles-wrapper article .article-text a .top--article .slider .content-slider .top__foreground .top__content h3.headline-font,
  .top--article .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 .slider .content-slider .top__foreground .top__content a,
  .top--article .slider .content-slider .top__foreground .top__content .display-5,
  .top--article .slider .content-slider .top__foreground .top__content .display-4,
  .top--article .slider .content-slider .top__foreground .top__content .display-3,
  .top--article .slider .content-slider .top__foreground .top__content .display-2,
  .top--article .slider .content-slider .top__foreground .top__content .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .headline-font,
  .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .top--article .slider .content-slider .top__foreground .top__content .headline-font,
  .top--article .slider .content-slider .top__foreground .top__content .article__socials p,
  .article__socials .top--article .slider .content-slider .top__foreground .top__content p,
  .top--article .slider .content-slider .top__foreground .top__content .articles-related .content .text h3,
  .articles-related .content .text .top--article .slider .content-slider .top__foreground .top__content h3 {
    color: var(--bc-1) !important;
  }
  .top--article .slider .content-slider .top__foreground .top__content .author__name, .top--article .slider .content-slider .top__foreground .top__content .author__position {
    color: var(--bc-1);
  }
}
@media (max-width: 480px) {
  .top--article .slider {
    height: -moz-fit-content;
    height: fit-content;
  }
  .top--article .slider .content-slider .top__foreground {
    padding-bottom: 0;
  }
}
.top--inner .top__foreground .top__container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--content-medium-width);
}
@media (max-width: 1450px) {
  .top--inner .top__foreground .top__container {
    width: 100%;
    margin: 0 var(--space-l);
  }
}
@media (max-width: 768px) {
  .top--inner .top__foreground .top__container {
    margin: 0;
  }
}
.top--inner .top__foreground .top__container .top__content {
  width: 100%;
  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 (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 .select-pure__select,
  .top--inner .top__foreground .top__container .top__content body,
  .top--inner .top__foreground .top__container .top__content .profile-page input,
  .profile-page .top--inner .top__foreground .top__container .top__content input,
  .top--inner .top__foreground .top__container .top__content .newOrder .filter-input,
  .newOrder .top--inner .top__foreground .top__container .top__content .filter-input,
  .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 .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 .select-pure__select strong,
  .top--inner .top__foreground .top__container .top__content body strong,
  .top--inner .top__foreground .top__container .top__content .profile-page input strong,
  .profile-page .top--inner .top__foreground .top__container .top__content input strong,
  .top--inner .top__foreground .top__container .top__content .newOrder .filter-input strong,
  .newOrder .top--inner .top__foreground .top__container .top__content .filter-input 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 .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;
  }
}
@media (max-width: 768px) {
  .top--inner .top__foreground .top__container .top__content {
    text-align: center;
    margin: 0 var(--space-l);
  }
}
@media (max-width: 350px) {
  .top--inner .top__foreground .top__container .top__content {
    margin: 0 var(--space-m);
  }
}
.top--large {
  height: var(--top-large-height);
}
.top--small {
  height: var(--top-small-height);
  margin-top: calc(-1 * var(--space-xl));
}
.top--very-small {
  height: var(--top-very-small-height);
  margin-top: calc(-1 * var(--space-xl));
}
.top--medium {
  height: var(--top-medium-height);
  margin-top: calc(-1 * var(--space-xl));
}
.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%;
  }
}
@media (max-width: 760px) {
  .top .top__foreground .top__container .top__content .display-4 {
    font-size: 5rem;
    padding-top: var(--space-l);
    line-height: 5rem;
  }
}

.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 (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 (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 (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%);
}
.decoration-image--separated-left {
  transform: translate(-50%, -50%);
  left: 31%;
  top: 54%;
}
.decoration-image--separated-left:nth-child(1) {
  left: 17%;
  top: 73%;
}
.decoration-image--separated-left:nth-child(2) {
  left: 23%;
  top: 31%;
}
.decoration-image--separated-left:nth-child(3) {
  left: 30%;
  top: 73%;
}
@media (max-width:1744px) {
  .decoration-image--separated-left {
    display: none;
  }
}
.decoration-image--separated-right {
  transform: translate(-50%, -50%);
  right: 25%;
  top: 52%;
}
.decoration-image--separated-right:nth-child(4) {
  right: 11%;
  top: 31%;
}
.decoration-image--separated-right:nth-child(5) {
  right: 16%;
  top: 73%;
}
.decoration-image--separated-right:nth-child(6) {
  right: 21%;
  top: 31%;
}
@media (max-width:1744px) {
  .decoration-image--separated-right {
    display: none;
  }
}
.decoration-image--barista:nth-child(1) {
  width: 144px;
}
.decoration-image--barista:nth-child(2) {
  width: 126px;
}
.decoration-image--barista:nth-child(3) {
  width: 126px;
}
.decoration-image--barista:nth-child(4) {
  width: 138px;
}
.decoration-image--barista:nth-child(5) {
  width: 140px;
}
.decoration-image--barista:nth-child(6) {
  width: 135px;
}
@media (max-width: 650px) {
  .decoration-image--hoja {
    display: none;
  }
}

.list-article-tags {
  width: 100%;
  margin-top: calc(var(--space-l) * 1.5);
  margin-bottom: var(--space-l);
  padding-top: var(--space-m);
  border-top: 1px solid #666;
  max-width: 490px;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
}
.list-article-tags--less-margin {
  margin-top: var(--space-m);
}
@media (max-width: 480px) {
  .list-article-tags {
    margin-bottom: var(--space-xl);
    margin-top: var(--space-l);
  }
}
.list-article-tags .article-tag {
  margin-bottom: var(--space-m);
  padding: var(--space-xs) var(--space-m);
}

.article-tag {
  display: flex;
  align-items: flex-end;
  background-color: var(--article-color);
  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-left: var(--space-m);
  align-self: center;
  cursor: default;
  border: 1px solid transparent;
  transition: all 0.2s ease-out;
}
.article-tag > a {
  color: white;
  font-weight: 500;
  transition: all 0.2s ease-out;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.article-tag > a:hover {
  text-decoration: none;
}
.article-tag.caption-font, .header__top .content .article-tag.header__top-link, .profile-page .article-tag.profile__box, .profile-page .profile__box p.article-tag, .form .article-tag.form-block.checkbox, .form .article-tag.form-block.legal, .form .article-tag.legal-text__container, .form .legal-text__item p.article-tag {
  color: var(--bc-1);
}
.article-tag:hover {
  border: 1px solid var(--article-color);
  background-color: var(--white);
}
.article-tag:hover > a {
  color: var(--article-color);
}
.article-tag--float, .articles-wrapper.big.four .article-tag {
  position: relative;
  max-block-size: auto;
  margin: 0;
  margin-top: var(--space-l);
  margin-bottom: auto;
  z-index: 3;
  left: 0;
  top: 0;
  border-radius: 0 50px 50px 0;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.article-tag--text, .articles-wrapper.small .article-tag, .articles-wrapper.grid-news--small .article-tag {
  background-color: var(--article-color);
  padding: var(--space-xs) var(--space-s);
  border: 1px solid transparent;
}
.article-tag--text > a, .articles-wrapper.small .article-tag > a, .articles-wrapper.grid-news--small .article-tag > a {
  color: white;
  font-weight: 600;
}
.article-tag--text:hover, .articles-wrapper.small .article-tag:hover, .articles-wrapper.grid-news--small .article-tag:hover {
  border-radius: 50px;
  border: 1px solid var(--article-color);
  background-color: var(--white);
  padding: var(--space-xs) var(--space-s);
}
.article-tag--text:hover > a, .articles-wrapper.small .article-tag:hover > a, .articles-wrapper.grid-news--small .article-tag:hover > a {
  color: var(--article-color);
}
.article-tag--pill, .top--article .top__slider .content-slider .top__foreground .top__content .article-tag {
  border-radius: 50px;
  min-width: auto;
  padding: var(--space-s) var(--space-m);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease-out;
  z-index: 9999;
}
.modal--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.modal__lens {
  background-color: rgba(110, 74, 32, 0.33);
}
.modal__container {
  position: relative;
  background-color: white;
  border-radius: 33px;
  box-shadow: 0 19px 34px 0 rgba(110, 74, 32, 0.24);
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 500px) {
  .modal__container {
    margin: 0 var(--space-l);
  }
}
.modal__close {
  position: absolute;
  top: var(--space-m);
  right: var(--space-m);
  width: 38px;
  height: 38px;
  cursor: pointer;
  border-radius: 50%;
  background-image: linear-gradient(to right, #f19f19 0%, #ae7424 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.modal__close i {
  font-size: 20px;
  color: white;
}
.modal__header {
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal__wave {
  position: absolute;
  top: 0;
  z-index: 0;
  min-width: 340px;
  height: 130px;
}
.modal__body {
  max-width: 460px;
  margin: auto;
  padding: 0 var(--space-l);
  padding-top: var(--space-l);
  padding-bottom: var(--space-m);
  text-align: center;
}
.modal .button, .modal .add-img-establishment .input-file label, .add-img-establishment .input-file .modal label, .modal .element--image .input-file label, .element--image .input-file .modal label, .modal .edit--image .input-file label, .edit--image .input-file .modal label, .modal .form#marketing-form .input-file label, .form#marketing-form .input-file .modal label {
  margin: var(--space-m) auto;
  margin-top: calc(var(--space-l) * 1.5);
}

.select-pure__select {
  align-items: center;
  background: #f9f9f8;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  color: #363b3e;
  cursor: pointer;
  display: flex;
  justify-content: left;
  min-height: 44px;
  padding: 5px 10px;
  position: relative;
  transition: 0.2s;
  width: 100%;
  margin-bottom: var(--space-m);
  margin-top: var(--space-xs);
}

.select-pure__options {
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  color: #363b3e;
  display: none;
  left: 0;
  max-height: 221px;
  overflow-y: scroll;
  position: absolute;
  top: 50px;
  width: 100%;
  z-index: 5;
}

.select-pure__select--opened .select-pure__options {
  display: block;
}

.select-pure__option {
  background: #fff;
  border-bottom: 1px solid #e4e4e4;
  box-sizing: border-box;
  height: 44px;
  line-height: 25px;
  padding: 10px;
}

.select-pure__option--disabled {
  color: #e4e4e4;
}

.select-pure__option--selected {
  color: #e4e4e4;
  cursor: initial;
  pointer-events: none;
}

.select-pure__option--hidden {
  display: none;
}

.select-pure__selected-label {
  align-items: "center";
  background: var(--bc-1);
  border-radius: 4px;
  color: #fff;
  cursor: initial;
  display: inline-flex;
  justify-content: "center";
  margin: 5px 10px 5px 0;
  padding: 3px 7px;
}

.select-pure__selected-label:last-of-type {
  margin-right: 0;
}

.select-pure__selected-label i {
  cursor: pointer;
  display: inline-block;
  margin-left: 7px;
}

.select-pure__selected-label img {
  cursor: pointer;
  display: inline-block;
  height: 18px;
  margin-left: 7px;
  width: 14px;
}

.select-pure__selected-label i:hover {
  color: #e4e4e4;
}

.select-pure__autocomplete {
  background: #f9f9f8;
  border-bottom: 1px solid #e4e4e4;
  border-left: none;
  border-right: none;
  border-top: none;
  box-sizing: border-box;
  outline: none;
  padding: 10px;
  width: 100%;
}

.select-pure__placeholder--hidden {
  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 {
  position: relative;
  z-index: 1;
}
@media (max-width: 480px) {
  .blocks .grid__item:first-child .block {
    position: relative;
    overflow-y: visible;
  }
}
@media (max-width: 715px) {
  .blocks .grid__item:first-child .block .content .block__cup {
    display: none;
  }
}
.blocks .grid__item:last-child .block {
  position: relative;
  overflow: hidden;
}
.blocks .grid__item:last-child .block .content {
  padding-bottom: var(--space-xl);
}
@media (max-width: 700px) {
  .blocks .grid__item:last-child .block .content {
    padding-top: var(--space-l);
  }
}
.blocks--barista {
  max-width: var(--content-max-width);
  margin: auto;
  grid-column-gap: var(--space-xl);
  padding: 0px var(--space-l);
}
.blocks--barista .block--barista-noticias__title {
  max-width: var(--content-medium-width);
  margin: auto;
  margin-bottom: var(--space-m);
}
.blocks--barista .grid__item .block .content .flex-content .text {
  z-index: 1;
}
.blocks--barista .grid__item .block .content .flex-content .text .display-1, .blocks--barista .grid__item .block .content .flex-content .text .profile-page .profile__icon .profile__icon-img, .profile-page .profile__icon .blocks--barista .grid__item .block .content .flex-content .text .profile__icon-img {
  margin-bottom: var(--space-xs);
}
.blocks--barista .grid__item .block .content .flex-content .text .body-font, .blocks--barista .grid__item .block .content .flex-content .text body, .blocks--barista .grid__item .block .content .flex-content .text .profile-page input, .profile-page .blocks--barista .grid__item .block .content .flex-content .text input, .blocks--barista .grid__item .block .content .flex-content .text .newOrder .filter-input, .newOrder .blocks--barista .grid__item .block .content .flex-content .text .filter-input, .blocks--barista .grid__item .block .content .flex-content .text .form .form-block label, .form .form-block .blocks--barista .grid__item .block .content .flex-content .text label, .blocks--barista .grid__item .block .content .flex-content .text .form .form-block input[type=text], .form .form-block .blocks--barista .grid__item .block .content .flex-content .text input[type=text],
.blocks--barista .grid__item .block .content .flex-content .text .form .form-block input[type=textarea],
.form .form-block .blocks--barista .grid__item .block .content .flex-content .text input[type=textarea],
.blocks--barista .grid__item .block .content .flex-content .text .form .form-block input[type=email],
.form .form-block .blocks--barista .grid__item .block .content .flex-content .text input[type=email],
.blocks--barista .grid__item .block .content .flex-content .text .form .form-block input[type=tel],
.form .form-block .blocks--barista .grid__item .block .content .flex-content .text input[type=tel],
.blocks--barista .grid__item .block .content .flex-content .text .form .form-block input[type=number],
.form .form-block .blocks--barista .grid__item .block .content .flex-content .text input[type=number],
.blocks--barista .grid__item .block .content .flex-content .text .form .form-block input[type=date],
.form .form-block .blocks--barista .grid__item .block .content .flex-content .text input[type=date],
.blocks--barista .grid__item .block .content .flex-content .text .form .form-block input[type=password],
.form .form-block .blocks--barista .grid__item .block .content .flex-content .text input[type=password],
.blocks--barista .grid__item .block .content .flex-content .text .form .form-block textarea,
.form .form-block .blocks--barista .grid__item .block .content .flex-content .text textarea,
.blocks--barista .grid__item .block .content .flex-content .text .form .form-block select,
.form .form-block .blocks--barista .grid__item .block .content .flex-content .text select, .blocks--barista .grid__item .block .content .flex-content .text .article__socials .date p, .article__socials .date .blocks--barista .grid__item .block .content .flex-content .text p, .blocks--barista .grid__item .block .articles-related .content .flex-content .text .articles-wrapper article .article-text p, .articles-related .blocks--barista .grid__item .block .content .flex-content .text .articles-wrapper article .article-text p, .blocks--barista .grid__item .block .articles-related .content .articles-wrapper article .article-text .flex-content .text p, .articles-related .blocks--barista .grid__item .block .content .articles-wrapper article .article-text .flex-content .text p, .blocks--barista .grid__item .block .content .flex-content .text .select-pure__select {
  margin-bottom: var(--space-l);
}
.blocks .block {
  display: flex;
  align-self: stretch;
  flex: 1;
  width: 100%;
  height: 100%;
}
.blocks .block.articles_small_grid .articles-wrapper .text .button-block {
  margin-bottom: var(--space-m);
}
.blocks .block__banner {
  top: 0px;
  height: auto;
  opacity: 0;
  position: absolute;
  transition: opacity 1s ease, visibility 0s ease 1s;
  z-index: 0;
}
.blocks .block__banner.blog-banner {
  width: 400px;
  left: 0px;
}
@media (max-width:700px) {
  .blocks .block__banner.blog-banner {
    width: auto;
  }
}
.blocks .block__banner.home-banner {
  width: 33%;
  right: 0px;
}
@media (max-width:700px) {
  .blocks .block__banner.home-banner {
    width: 90%;
    right: auto;
  }
}
.blocks .block__banner.active {
  opacity: 1;
  transition: opacity 1s ease;
  z-index: 1;
}
@media (max-width:700px) {
  .blocks .block .banners_container {
    width: 100%;
    height: 280px;
  }
}
@media (max-width:1300px) {
  .blocks .block.animated-cups .decoration-image {
    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) {
  .blocks .block {
    min-height: 0;
  }
}
.blocks .block__cup {
  position: absolute;
  right: 0;
  z-index: 2;
  top: var(--space-xxl);
}
.blocks .block .content,
.blocks .block .content--item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.blocks .block .content.items-start,
.blocks .block .content--item.items-start {
  justify-content: flex-start;
}
.blocks .block .content.items-center,
.blocks .block .content--item.items-center {
  justify-content: center;
}
.blocks .block .content.items-end,
.blocks .block .content--item.items-end {
  justify-content: flex-end;
}
.blocks .block .content {
  padding: var(--space-l) 0;
}
.blocks .block .content .flex-content .text .display-5,
.blocks .block .content .flex-content .text .display-4,
.blocks .block .content .flex-content .text .display-3,
.blocks .block .content .flex-content .text .display-2,
.blocks .block .content .flex-content .text .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .headline-font,
.articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .blocks .block .content .flex-content .text .headline-font,
.blocks .block .content .flex-content .text .article__socials p,
.article__socials .blocks .block .content .flex-content .text p,
.blocks .block .articles-related .content .flex-content .text h3,
.articles-related .blocks .block .content .flex-content .text h3,
.blocks .block .content .flex-content .text .display-1,
.blocks .block .content .flex-content .text .profile-page .profile__icon .profile__icon-img,
.profile-page .profile__icon .blocks .block .content .flex-content .text .profile__icon-img,
.blocks .block .content .flex-content .text .headline-font,
.blocks .block .content .flex-content .text .body-font,
.blocks .block .content .flex-content .text body,
.blocks .block .content .flex-content .text .profile-page input,
.profile-page .blocks .block .content .flex-content .text input,
.blocks .block .content .flex-content .text .newOrder .filter-input,
.newOrder .blocks .block .content .flex-content .text .filter-input,
.blocks .block .content .flex-content .text .form .form-block label,
.form .form-block .blocks .block .content .flex-content .text label,
.blocks .block .content .flex-content .text .form .form-block input[type=text],
.form .form-block .blocks .block .content .flex-content .text input[type=text],
.blocks .block .content .flex-content .text .form .form-block input[type=textarea],
.form .form-block .blocks .block .content .flex-content .text input[type=textarea],
.blocks .block .content .flex-content .text .form .form-block input[type=email],
.form .form-block .blocks .block .content .flex-content .text input[type=email],
.blocks .block .content .flex-content .text .form .form-block input[type=tel],
.form .form-block .blocks .block .content .flex-content .text input[type=tel],
.blocks .block .content .flex-content .text .form .form-block input[type=number],
.form .form-block .blocks .block .content .flex-content .text input[type=number],
.blocks .block .content .flex-content .text .form .form-block input[type=date],
.form .form-block .blocks .block .content .flex-content .text input[type=date],
.blocks .block .content .flex-content .text .form .form-block input[type=password],
.form .form-block .blocks .block .content .flex-content .text input[type=password],
.blocks .block .content .flex-content .text .form .form-block textarea,
.form .form-block .blocks .block .content .flex-content .text textarea,
.blocks .block .content .flex-content .text .form .form-block select,
.form .form-block .blocks .block .content .flex-content .text select,
.blocks .block .articles-related .content .flex-content .text .articles-wrapper article .article-text p,
.articles-related .blocks .block .content .flex-content .text .articles-wrapper article .article-text p,
.blocks .block .articles-related .content .articles-wrapper article .article-text .flex-content .text p,
.articles-related .blocks .block .content .articles-wrapper article .article-text .flex-content .text p,
.blocks .block .content .flex-content .text .select-pure__select {
  margin-bottom: var(--space-m);
}
.blocks .block .bg-image,
.blocks .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 .block .bg-image.fixed,
.blocks .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 .block .bg-image.fixed,
  .blocks .block .bg-video.fixed {
    background-attachment: scroll;
  }
}
.blocks .block.bg--left .block__bg {
  left: -33%;
}
@media (max-width: 768px) {
  .blocks .block.bg--left .block__bg {
    left: -25%;
  }
}
.blocks .block.bg--bottom .block__bg {
  top: 18%;
}
@media (max-width: 768px) {
  .blocks .block.bg--bottom .block__bg {
    top: 18%;
  }
}
.blocks .block.bg--height-double .block__bg {
  transform: scaleY(2);
  transform-origin: bottom;
}
@media (max-width: 580px) {
  .blocks .block--align-center-mobile .content .text {
    text-align: center;
  }
}
.blocks .block--wrapped .content {
  max-width: var(--content-min-width);
  margin: 0 auto;
}
@media (max-width: 600px) {
  .blocks .block--wrapped .content {
    padding-left: var(--space-l);
    padding-right: var(--space-l);
  }
}
@media (max-width: 480px) {
  .blocks .block--wrapped .content {
    padding-left: var(--space-m);
    padding-right: var(--space-m);
  }
}
.blocks .block--wrapped-medium .content {
  max-width: var(--content-medium-width);
  margin: 0 auto;
}
@media (max-width: 1400px) {
  .blocks .block--wrapped-medium .content {
    padding-left: var(--space-l);
    padding-right: var(--space-l);
  }
}
@media (max-width: 480px) {
  .blocks .block--wrapped-medium .content {
    padding-left: var(--space-m);
    padding-right: var(--space-m);
  }
}
.blocks .block--wrapped-max .content {
  max-width: var(--content-max-width);
  margin: 0 auto;
}
@media (max-width: 1700px) {
  .blocks .block--wrapped-max .content {
    padding-left: var(--space-l);
    padding-right: var(--space-l);
  }
}
@media (max-width: 480px) {
  .blocks .block--wrapped-max .content {
    padding-left: var(--space-m);
    padding-right: var(--space-m);
  }
}
@media (max-width: 600px) {
  .blocks .block--title-special .content .flex-content .text .display-4 {
    margin: 0;
    font-size: 4rem;
    line-height: 4.7rem;
  }
}
@media (max-width: 670px) {
  .blocks .block--title-special .content .flex-content .text .lead-font, .blocks .block--title-special .content .flex-content .text .form .legal-text__title, .form .blocks .block--title-special .content .flex-content .text .legal-text__title, .blocks .block--title-special .articles-related .content .flex-content .text .articles-wrapper article .article-text h3.date, .articles-related .blocks .block--title-special .content .flex-content .text .articles-wrapper article .article-text h3.date, .blocks .block--title-special .articles-related .content .articles-wrapper article .article-text .flex-content .text h3.date, .articles-related .blocks .block--title-special .content .articles-wrapper article .article-text .flex-content .text h3.date, .blocks .block--title-special .articles-related .content .flex-content .text .articles-wrapper article .article-text a h3.headline-font, .articles-related .blocks .block--title-special .content .flex-content .text .articles-wrapper article .article-text a h3.headline-font, .blocks .block--title-special .articles-related .content .articles-wrapper article .article-text a .flex-content .text h3.headline-font, .articles-related .blocks .block--title-special .content .articles-wrapper article .article-text a .flex-content .text h3.headline-font, .blocks .block--title-special .articles-related .content .flex-content .text .articles-wrapper article .article-text .article-links a, .articles-related .blocks .block--title-special .content .flex-content .text .articles-wrapper article .article-text .article-links a, .blocks .block--title-special .articles-related .content .articles-wrapper article .article-text .article-links .flex-content .text a, .articles-related .blocks .block--title-special .content .articles-wrapper article .article-text .article-links .flex-content .text a {
    display: inline;
  }
}
.blocks .block--moved-top .content {
  margin-top: calc(-1 * var(--space-xl));
}
.blocks .block--moved-top-small .content {
  margin-top: calc(-0.8 * var(--space-xl));
}
.blocks .block--moved-top-xxl .content {
  margin-top: calc(-1 * var(--space-xxl));
}
.blocks .block--no-padding-top .content {
  padding-top: 0;
}
@media (min-width: 650px) {
  .blocks .block--no-padding-top-desktop .content {
    padding-top: 0;
  }
}
.blocks .block--no-padding-left .content {
  padding-left: 0;
}
.blocks .block--no-padding-right .content {
  padding-right: 0;
}
.blocks .block--no-padding-bottom .content {
  padding-bottom: 0;
}
.blocks .block--no-padding-top-block {
  padding-top: 0;
}
@media (min-width: 1024px) {
  .blocks .block--no-padding-top-desktop-block {
    padding-top: 0;
  }
}
.blocks .block--no-padding-left-block {
  padding-left: 0;
}
.blocks .block--no-padding-right-block {
  padding-right: 0;
}
.blocks .block--no-padding-bottom-block {
  padding-bottom: 0;
}
.blocks .block--overflow-visible {
  overflow: visible !important;
}
.blocks .block--xl-padding-top .content {
  padding-top: var(--space-xl);
}
@media (max-width: 650px) {
  .blocks .block--xl-padding-top .content {
    padding-top: var(--space-l);
  }
}
.blocks .block--xl-padding-bottom .content {
  padding-bottom: var(--space-xl);
}
@media (max-width: 650px) {
  .blocks .block--xl-padding-bottom .content {
    padding-bottom: var(--space-l);
  }
}
.blocks .block--xxl-padding-top .content {
  padding-top: var(--space-xxl);
}
@media (max-width: 650px) {
  .blocks .block--xxl-padding-top .content {
    padding-top: var(--space-xl);
  }
}
.blocks .block--xxl-padding-left .content {
  padding-left: var(--space-xxl);
}
.blocks .block--xxl-padding-right .content {
  padding-right: var(--space-xxl);
}
.blocks .block--relative {
  position: relative;
}
.blocks .block--xxl-padding-bottom .content {
  padding-bottom: var(--space-xxl);
}
.blocks .block--2xxl-padding-bottom .content {
  padding-bottom: calc(var(--space-xxl) * 2);
}
.blocks .block--l-padding-horizontal .content {
  padding-left: var(--space-l);
  padding-right: var(--space-l);
}
@media (max-width: 1200px) {
  .blocks .block--margin-bottom-mobile {
    margin-bottom: var(--space-xl);
  }
}
@media (max-width: 640px) {
  .blocks .block--l-padding-top-mobile .content {
    padding-top: var(--space-l);
  }
}
@media (max-width: 640px) {
  .blocks .block--l-padding-bottom-mobile .content {
    padding-bottom: var(--space-l);
  }
}
@media (max-width: 1200px) {
  .blocks .block--block-mobile {
    display: block;
  }
}
.blocks .block .content--image-align-start .flex-content .image {
  justify-content: flex-start;
}
.blocks .block .content--padding-right-xl {
  padding-right: var(--space-xl);
}
@media (max-width: 600px) {
  .blocks .block .content--padding-right-xl {
    padding-right: 0;
  }
}
.blocks .block .content--text-padding-left-xl .flex-content .text {
  padding-left: var(--space-xl);
}
@media (max-width: 780px) {
  .blocks .block .content--text-padding-left-xl .flex-content .text {
    padding-left: 0;
  }
}
@media (max-width: 1200px) {
  .blocks .block .content--margin-bottom-mobile-xl {
    margin-bottom: var(--space-xl);
  }
}
.blocks .block .content.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.blocks .block.articles_small_six .content, .blocks .block.articles_small_four .content {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
.blocks .block.articles_small_six .content .text, .blocks .block.articles_small_four .content .text {
  grid-column-start: 2;
  grid-row-start: 1;
}
.blocks .block.articles_small_four .content {
  grid-template-columns: 1fr 2fr;
}
.blocks .block.articles_small_four .content .text {
  padding-right: var(--space-xl);
  grid-column-start: 1;
  grid-row-start: 1;
}
.blocks .block.articles_small_four .content--reverse {
  grid-template-columns: 2fr 1fr;
}
.blocks .block.articles_small_four .content--reverse .text {
  grid-column-start: 2;
}
@media (max-width: 768px) {
  .blocks .block.articles_small_six .content, .blocks .block.articles_small_four .content {
    grid-template-columns: 1fr;
    row-gap: var(--space-xl);
  }
}
@media (max-width: 480px) {
  .blocks .block.articles_small_six .content, .blocks .block.articles_small_four .content {
    row-gap: var(--space-l);
  }
}
@media (max-width: 768px) {
  .blocks .block.articles_small_six .content .text, .blocks .block.articles_small_four .content .text {
    padding: 0;
    grid-column-start: 1;
  }
}
.blocks .block.block--categories .content .articles-wrapper.grid-news .item {
  height: 400px;
}
.blocks--article {
  max-width: 1200px;
  margin: 0 auto;
}
.blocks--article .block {
  align-items: center;
  justify-content: center;
}
.blocks--article .block .content {
  padding: var(--space-l) var(--space-l);
  max-width: 84%;
}
.blocks--article .block .content .flex-content .block-text-image__content {
  justify-self: center;
}
.blocks .block.block-text-image .content .flex-content .text {
  z-index: 4;
}
.blocks .block.block-text-image.block--quote .flex-content.block-text-image__container--bottom {
  grid-template-columns: 1fr 1fr 2fr 1fr !important;
}
@media (max-width:1110px) {
  .blocks .block.block-text-image.block--quote .flex-content.block-text-image__container--bottom {
    grid-template-columns: 1fr !important;
  }
}
.blocks .block.block-text-image.block--quote .flex-content.block-text-image__container--bottom .block-text-image__content {
  grid-row-start: 1;
  grid-column-end: 4;
}
@media (max-width:1110px) {
  .blocks .block.block-text-image.block--quote .flex-content.block-text-image__container--bottom .block-text-image__content {
    grid-column-end: unset;
  }
}
.blocks .block.block--quote {
  height: 300px;
}
@media (max-width:1110px) {
  .blocks .block.block--quote {
    height: 100%;
  }
}
.blocks .block.block--quote .content {
  transform: translate(70px, -186px);
  padding-bottom: 0px;
}
@media (max-width:1110px) {
  .blocks .block.block--quote .content {
    transform: unset;
    padding-bottom: 30px;
  }
}
.blocks--legal ul {
  list-style: disc;
  margin-left: var(--space-l);
  margin-top: var(--space-s);
}
.blocks--legal ul li {
  list-style: disc;
}
.blocks--legal a {
  word-break: break-word;
}

/* -------------------------- */
.countdown {
  height: 70vh;
}
@media (max-width: 480px) {
  .countdown {
    height: 90vh;
  }
}
.countdown .center {
  text-align: center;
  padding-bottom: 4rem;
}
.countdown div {
  background: inherit;
}
.countdown .block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.countdown .row {
  margin-top: 30px;
  display: flex;
}
@media (max-width: 480px) {
  .countdown .row {
    flex-wrap: wrap;
  }
}
.countdown .row .unit {
  position: relative;
  overflow: hidden;
  display: inline-block;
  z-index: 2;
  width: 12rem;
  box-sizing: border-box;
  margin: 0.25rem;
  text-shadow: 0 0 2rem #fff3e7;
  padding: 40px 0 20px;
  box-shadow: 0 0 10px 0 rgba(241, 159, 25, 0.2), 0 2rem 3rem -2rem rgba(241, 159, 25, 0.4);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  margin: 0 15px;
  align-items: center;
}
@media (max-width: 480px) {
  .countdown .row .unit {
    width: 40%;
    margin: 15px;
  }
}
.countdown .row .unit div {
  color: var(--bc-1);
}
.countdown .row .unit:before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 16rem 2rem rgba(255, 243, 231, 0.5);
  background: inherit;
  filter: blur(8px);
  margin: -16px;
}
.countdown .row .unit:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
}
.countdown .row .unit div {
  background: none;
  text-align: center;
  font-size: 6rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.countdown .row .unit span {
  font-size: 1.5rem;
}

.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 > svg {
  width: 260px;
  transform: translateY(-50%);
  animation: fadeIn 0.6s forwards ease-out;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.loader > svg .logo__cup {
  transform-origin: center;
  transition: all 0.2s linear;
  animation: loading 1.6s infinite alternate forwards ease-in-out;
}
@keyframes loading {
  0% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}

.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 (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-l) var(--space-l);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 25px;
}
.block-gallery .carrousel .content-carrousel .viewport .item .image {
  max-height: 150px;
  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 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.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 (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 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.block-form {
  width: 50%;
  margin: auto;
}
.block-form .content {
  padding: var(--space-xl) !important;
}
@media (max-width: 1024px) {
  .block-form .content {
    padding: var(--space-l) !important;
  }
}
@media (max-width: 480px) {
  .block-form .content {
    padding: var(--space-m) !important;
  }
}
.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-m);
}
.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 {
  display: flex;
  flex-direction: column;
  grid-column: 2/3;
  grid-row: 1/5;
}
.block-form.block--grid .content .flex-content .form .form-block.form-block--textarea textarea {
  flex: 1;
}
.block-form.block--grid .content .flex-content .form .g-recaptcha {
  justify-content: left;
}
.block-form.block--grid .content .flex-content .form .button-block .button, .block-form.block--grid .content .flex-content .form .button-block .add-img-establishment .input-file label, .add-img-establishment .input-file .block-form.block--grid .content .flex-content .form .button-block label, .block-form.block--grid .content .flex-content .form .button-block .element--image .input-file label, .element--image .input-file .block-form.block--grid .content .flex-content .form .button-block label, .block-form.block--grid .content .flex-content .form .button-block .edit--image .input-file label, .edit--image .input-file .block-form.block--grid .content .flex-content .form .button-block label, .block-form.block--grid .content .flex-content .form#marketing-form .button-block .input-file label, .block-form.block--grid .content .flex-content .form#marketing-form .input-file .button-block label {
  color: white;
}
@media (max-width: 550px) {
  .block-form.block--special-form .content {
    padding: var(--space-l) !important;
  }
}
.block-form.block--special-form .content .flex-content .special-form {
  display: grid;
  grid-template-columns: 3fr 5fr 3fr;
}
@media (max-width: 1000px) {
  .block-form.block--special-form .content .flex-content .special-form {
    grid-template-columns: 1fr;
  }
}
.block-form.block--special-form .content .flex-content .special-form .image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 var(--space-l);
}
@media (max-width: 1000px) {
  .block-form.block--special-form .content .flex-content .special-form .image {
    display: none;
  }
}
.block-form.block--special-form .content .flex-content .special-form .image:first-child() {
  align-items: flex-start;
}
.block-form.block--special-form .content .flex-content .special-form .form input,
.block-form.block--special-form .content .flex-content .special-form .form textarea {
  background-color: white;
  border: none;
  border-bottom: 1px solid darkgrey;
}
.block-form.block--special-form .content .flex-content .special-form .form input[type=submit] {
  background: linear-gradient(45deg, var(--bc-2-lighter-40), var(--bc-2-darker-40));
  border: 0;
  outline: 0;
  color: var(--white);
}
.block-form.block--special-form .content .flex-content .special-form .form .form-block .button-block .button, .block-form.block--special-form .content .flex-content .special-form .form .form-block .button-block .add-img-establishment .input-file label, .add-img-establishment .input-file .block-form.block--special-form .content .flex-content .special-form .form .form-block .button-block label, .block-form.block--special-form .content .flex-content .special-form .form .form-block .button-block .element--image .input-file label, .element--image .input-file .block-form.block--special-form .content .flex-content .special-form .form .form-block .button-block label, .block-form.block--special-form .content .flex-content .special-form .form .form-block .button-block .edit--image .input-file label, .edit--image .input-file .block-form.block--special-form .content .flex-content .special-form .form .form-block .button-block label, .block-form.block--special-form .content .flex-content .special-form .form#marketing-form .form-block .button-block .input-file label, .block-form.block--special-form .content .flex-content .special-form .form#marketing-form .input-file .form-block .button-block label {
  background: linear-gradient(45deg, var(--bc-2-lighter-40), var(--bc-2-darker-40));
  border: 0;
  outline: 0;
  color: var(--white);
}

.block-image .content .flex-content {
  display: flex;
  align-items: center;
  height: 100%;
}

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

#interactive-map .content .flex-content .map-multi {
  min-height: 650px;
}

.blocks .block--contact-map {
  min-height: 600px;
}

.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 (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-m);
}
.block-multiple.featured .flex-content .text {
  margin: auto;
  margin-bottom: var(--space-m);
  max-width: 550px;
}
@media (max-width: 480px) {
  .block-multiple.featured .flex-content .text {
    margin-bottom: 0;
  }
}

.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;
  grid-column-gap: var(--space-xl);
  text-align: center;
  grid-row-gap: var(--space-l);
}
.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 (orientation: portrait) {
  .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);
}
@media (max-width: 600px) {
  .multiple--featured .multiple__item--featured .multiple__content {
    margin-top: 0;
  }
}
.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 {
  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 .display-2,
.multiple--tabs .multiple__item--tabs .multiple__content .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .headline-font,
.articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .multiple--tabs .multiple__item--tabs .multiple__content .headline-font,
.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 .profile-page .profile__icon .profile__icon-img,
.profile-page .profile__icon .multiple--tabs .multiple__item--tabs .multiple__content .profile__icon-img,
.multiple--tabs .multiple__item--tabs .multiple__content .headline-font,
.multiple--tabs .multiple__item--tabs .multiple__content .body-font,
.multiple--tabs .multiple__item--tabs .multiple__content body,
.multiple--tabs .multiple__item--tabs .multiple__content .profile-page input,
.profile-page .multiple--tabs .multiple__item--tabs .multiple__content input,
.multiple--tabs .multiple__item--tabs .multiple__content .newOrder .filter-input,
.newOrder .multiple--tabs .multiple__item--tabs .multiple__content .filter-input,
.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 .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,
.multiple--tabs .multiple__item--tabs .multiple__content .select-pure__select {
  margin-bottom: var(--space-m);
}
.multiple--accordion {
  display: flex;
  flex-direction: column;
  justify-content: center;
  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 {
  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 .display-2,
.multiple--accordion .multiple__item--accordion .multiple__content .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .headline-font,
.articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .multiple--accordion .multiple__item--accordion .multiple__content .headline-font,
.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 .profile-page .profile__icon .profile__icon-img,
.profile-page .profile__icon .multiple--accordion .multiple__item--accordion .multiple__content .profile__icon-img,
.multiple--accordion .multiple__item--accordion .multiple__content .headline-font,
.multiple--accordion .multiple__item--accordion .multiple__content .body-font,
.multiple--accordion .multiple__item--accordion .multiple__content body,
.multiple--accordion .multiple__item--accordion .multiple__content .profile-page input,
.profile-page .multiple--accordion .multiple__item--accordion .multiple__content input,
.multiple--accordion .multiple__item--accordion .multiple__content .newOrder .filter-input,
.newOrder .multiple--accordion .multiple__item--accordion .multiple__content .filter-input,
.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 .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,
.multiple--accordion .multiple__item--accordion .multiple__content .select-pure__select {
  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 (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 (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 (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 (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, .multiple--list .multiple__item--list .button-block .add-img-establishment .input-file label, .add-img-establishment .input-file .multiple--list .multiple__item--list .button-block label, .multiple--list .multiple__item--list .button-block .element--image .input-file label, .element--image .input-file .multiple--list .multiple__item--list .button-block label, .multiple--list .multiple__item--list .button-block .edit--image .input-file label, .edit--image .input-file .multiple--list .multiple__item--list .button-block label, .multiple--list .multiple__item--list .button-block .form#marketing-form .input-file label, .form#marketing-form .input-file .multiple--list .multiple__item--list .button-block label {
  margin: 0 0 var(--space-s) 0;
}
.multiple--list .multiple__item--list .button-block .button:last-child, .multiple--list .multiple__item--list .button-block .add-img-establishment .input-file label:last-child, .add-img-establishment .input-file .multiple--list .multiple__item--list .button-block label:last-child, .multiple--list .multiple__item--list .button-block .element--image .input-file label:last-child, .element--image .input-file .multiple--list .multiple__item--list .button-block label:last-child, .multiple--list .multiple__item--list .button-block .edit--image .input-file label:last-child, .edit--image .input-file .multiple--list .multiple__item--list .button-block label:last-child, .multiple--list .multiple__item--list .button-block .form#marketing-form .input-file label:last-child, .form#marketing-form .input-file .multiple--list .multiple__item--list .button-block label: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 (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 .display-2,
.multiple--alternate .multiple__item--alternate .multiple__content .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .headline-font,
.articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .multiple--alternate .multiple__item--alternate .multiple__content .headline-font,
.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 .profile-page .profile__icon .profile__icon-img,
.profile-page .profile__icon .multiple--alternate .multiple__item--alternate .multiple__content .profile__icon-img,
.multiple--alternate .multiple__item--alternate .multiple__content .headline-font,
.multiple--alternate .multiple__item--alternate .multiple__content .body-font,
.multiple--alternate .multiple__item--alternate .multiple__content body,
.multiple--alternate .multiple__item--alternate .multiple__content .profile-page input,
.profile-page .multiple--alternate .multiple__item--alternate .multiple__content input,
.multiple--alternate .multiple__item--alternate .multiple__content .newOrder .filter-input,
.newOrder .multiple--alternate .multiple__item--alternate .multiple__content .filter-input,
.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 .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,
.multiple--alternate .multiple__item--alternate .multiple__content .select-pure__select {
  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 (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 (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 (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 (orientation: portrait) {
  .block-slider .content .flex-content .slider .slider__buttons .slider__button {
    width: 10px;
    height: 10px;
    border: 2px solid var(--white);
  }
}

.blocks.blocks--article .block .content .flex-content .block-text-image__content .text ul {
  margin-left: 40px;
  list-style-type: disc;
}
.blocks.blocks--article .block .content .flex-content .block-text-image__content .text li {
  list-style-type: disc;
  color: var(--bc-1);
}
.blocks.blocks--article .block .content .flex-content .block-text-image__content .text .headline-font {
  color: var(--bc-1);
}
.blocks.blocks--article .block .content .flex-content .block-text-image__content .text p {
  line-height: 25px;
  font-weight: 300;
}
.blocks.blocks--article .block .content .flex-content .block-text-image__content .text h2,
.blocks.blocks--article .block .content .flex-content .block-text-image__content .text p {
  color: var(--bc-1);
}
.blocks.blocks--article .block .content .flex-content .block-text-image__content .text a {
  color: var(--bc-2);
  font-weight: 300;
  text-decoration: underline;
}
.blocks .block.block-text-image .content .flex-content {
  width: 100%;
  height: -moz-min-content;
  height: min-content;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}
@media (max-width: 1100px) {
  .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: 1100px) {
  .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;
}
@media (max-width: 1100px) {
  .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;
}
.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;
  }
}
@media (max-width: 480px) {
  .blocks .block.block-text-image .content .flex-content .text .display-2, .blocks .block.block-text-image .content .flex-content .text .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .headline-font, .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .blocks .block.block-text-image .content .flex-content .text .headline-font, .blocks .block.block-text-image .content .flex-content .text .article__socials p, .article__socials .blocks .block.block-text-image .content .flex-content .text p, .blocks .block.block-text-image .articles-related .content .flex-content .text h3, .articles-related .blocks .block.block-text-image .content .flex-content .text h3 {
    font-family: var(--display-1-ff);
    font-size: var(--display-1-fs);
    font-weight: var(--display-1-fw);
    line-height: 4.4rem;
  }
  .blocks .block.block-text-image .content .flex-content .text .display-2 br, .blocks .block.block-text-image .content .flex-content .text .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .headline-font br, .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .blocks .block.block-text-image .content .flex-content .text .headline-font br, .blocks .block.block-text-image .content .flex-content .text .article__socials p br, .article__socials .blocks .block.block-text-image .content .flex-content .text p br, .blocks .block.block-text-image .articles-related .content .flex-content .text h3 br, .articles-related .blocks .block.block-text-image .content .flex-content .text h3 br {
    display: inline;
  }
  .blocks .block.block-text-image .content .flex-content .text .display-2.quote span, .blocks .block.block-text-image .content .flex-content .text .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .quote.headline-font span, .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .blocks .block.block-text-image .content .flex-content .text .quote.headline-font span, .blocks .block.block-text-image .content .flex-content .text .article__socials p.quote span, .article__socials .blocks .block.block-text-image .content .flex-content .text p.quote span, .blocks .block.block-text-image .articles-related .content .flex-content .text h3.quote span, .articles-related .blocks .block.block-text-image .content .flex-content .text h3.quote span {
    font-size: 66px;
    line-height: 10px;
  }
}
.blocks .block.block-text-image .content .flex-content .button-block {
  margin-top: calc(var(--space-l) * 1.5);
}
@media (max-width: 480px) {
  .blocks .block.block-text-image .content .flex-content .button-block {
    margin-top: var(--space-m);
  }
}
@media (max-width: 420px) {
  .blocks .block.block-text-image .content .flex-content .button-block {
    flex-direction: column;
  }
  .blocks .block.block-text-image .content .flex-content .button-block .button:not(:first-child), .blocks .block.block-text-image .content .flex-content .button-block .add-img-establishment .input-file label:not(:first-child), .add-img-establishment .input-file .blocks .block.block-text-image .content .flex-content .button-block label:not(:first-child), .blocks .block.block-text-image .content .flex-content .button-block .element--image .input-file label:not(:first-child), .element--image .input-file .blocks .block.block-text-image .content .flex-content .button-block label:not(:first-child), .blocks .block.block-text-image .content .flex-content .button-block .edit--image .input-file label:not(:first-child), .edit--image .input-file .blocks .block.block-text-image .content .flex-content .button-block label:not(:first-child), .blocks .block.block-text-image .content .flex-content .button-block .form#marketing-form .input-file label:not(:first-child), .form#marketing-form .input-file .blocks .block.block-text-image .content .flex-content .button-block label:not(:first-child) {
    margin-top: var(--space-m);
    margin-left: 0;
  }
  .blocks .block.block-text-image .content .flex-content .button-block--center {
    align-items: center;
  }
  .blocks .block.block-text-image .content .flex-content .button-block--start {
    align-items: flex-start;
  }
  .blocks .block.block-text-image .content .flex-content .button-block--end {
    align-items: flex-end;
  }
}
.blocks .block.textImage--image-top .image {
  transform: translateY(-40%);
}
@media (max-width: 1100px) {
  .blocks .block.textImage--image-top .content {
    padding-top: 0;
  }
  .blocks .block.textImage--image-top .content .flex-content {
    gap: var(--space-m);
  }
  .blocks .block.textImage--image-top .content .flex-content .image {
    transform: translateY(-10%);
  }
}
.blocks .block.textImage--image-top-small .image {
  transform: translateY(-15%);
}
@media (max-width: 1100px) {
  .blocks .block.textImage--image-top-small .image {
    transform: none;
  }
}
.blocks .block.textImage--text-right-top .block-text-image__content {
  transform: translate(10%, -11%);
}
@media (max-width: 1100px) {
  .blocks .block.textImage--text-right-top .block-text-image__content {
    transform: none;
  }
}
.blocks .block.textImage--no-column-gap .content .flex-content {
  -moz-column-gap: 0;
       column-gap: 0;
}
.blocks .block.textImage--one-column .content .flex-content {
  grid-template-columns: 1fr;
}
.blocks .block.textImage--3fr-2fr .content .flex-content {
  grid-template-columns: 3fr 2fr;
}
.blocks .block.textImage--no-margin-buttons .content .flex-content .button-block {
  margin: 0;
}
.blocks .block.textImage--l-margin-top-buttons .content .flex-content .button-block {
  margin-top: var(--space-l);
}
.blocks .block.textImage--image-contain .content .flex-content .image .image__content--cover {
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 480px) {
  .blocks .block.textImage--flex-mobile .content .flex-content {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .blocks .block.textImage--margin-bottom-image-mobile .content .flex-content .image {
    margin-bottom: var(--space-m);
  }
}

.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 (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 (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 (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%;
}

.articles-wrapper {
  display: grid;
  width: 100%;
}
@media (max-width: 900px) {
  .articles-wrapper .text h2 {
    font-family: var(--display-2-ff);
    font-size: var(--display-2-fs);
    font-weight: var(--display-2-fw);
    line-height: var(--display-2-lh);
  }
}
@media (max-width: 450px) {
  .articles-wrapper .text h2 {
    font-size: var(--display-1-fs);
  }
  .articles-wrapper .text h4 {
    font-size: 2rem;
  }
}
.articles-wrapper.grid-news {
  padding-left: var(--space-m);
  padding-right: var(--space-m);
}
@media (max-width: 650px) {
  .articles-wrapper.grid-news {
    padding-left: 0;
    padding-right: 0;
  }
}
.articles-wrapper article {
  width: 100%;
  min-height: unset;
  --article-color: #e37979;
}
.articles-wrapper article:hover .article-image img {
  transform: scale(1.05);
}
.articles-wrapper article .article-image {
  z-index: 1;
  overflow: hidden;
}
.articles-wrapper article .article-image .article_img-link {
  height: 100%;
  width: 100%;
}
.articles-wrapper article .article-image .article_img-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s cubic-bezier(0, 0, 0.01, 1.03);
}
.articles-wrapper article .lens {
  z-index: 2;
}
.articles-wrapper article .article-link:hover {
  text-decoration: none;
}
.articles-wrapper article .article-link .article-text .lens {
  background-color: rgba(0, 0, 0, 0.2);
}
.articles-wrapper article .article-link .article-text .article-content .title-content {
  padding: 0;
}
.articles-wrapper article .article-link .article-text .article-content .title-content:hover {
  flex-grow: unset;
}
.articles-wrapper article .article-link .article-text .article-content .headline-font {
  color: var(--bc-1);
}
.articles-wrapper article .article-link .author {
  padding: var(--space-m);
  padding-top: 0;
  display: flex;
  align-items: center;
}
.articles-wrapper article .article-link .author .circle {
  width: 50px;
  height: 50px;
  border: 3px solid white;
  border-radius: 40px;
  margin-right: var(--space-m);
}
.articles-wrapper article .article-link .author .author__text p {
  color: white;
  letter-spacing: 1px;
}
.articles-wrapper article .article-link .author .author__text .author__name {
  line-height: initial;
}
.articles-wrapper article .article-link .author .author__text .author__position {
  font-size: 12px;
  line-height: initial;
  margin-top: 2px;
}
.articles-wrapper article .plus {
  display: none;
}

.articles_one_big .articles-wrapper .item {
  grid-template-rows: 33px auto;
  row-gap: 5px;
}
.articles_one_big .articles-wrapper .item .article-tag {
  align-self: end;
}
@media screen and (max-width: 380px), screen and (min-width: 1250px) and (max-width: 1600px) {
  .articles_one_big .articles-wrapper .item .article-tag a {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    max-width: 150px;
  }
}
.articles_one_big__help {
  margin-left: auto;
  margin-top: var(--space-xs);
}
@media (max-width: 1250px) {
  .articles_one_big__help {
    margin-right: auto;
    margin-left: 0;
  }
}

.authors {
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
@media (max-width: 1200px) {
  .authors {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: var(--space-l);
         column-gap: var(--space-l);
  }
}
@media (max-width: 800px) {
  .authors {
    grid-template-columns: 1fr;
    row-gap: var(--space-xl);
  }
}
.authors .author {
  display: grid;
  grid-template-columns: 180px 1fr;
  justify-content: center;
  align-items: center;
}
@media (max-width: 800px) {
  .authors .author {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 385px) {
  .authors .author {
    grid-template-columns: 1fr;
  }
}
.authors .author:first-child {
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 4;
  display: flex;
}
@media (max-width: 1200px) {
  .authors .author:first-child {
    grid-column-end: 3;
    grid-row-end: 3;
  }
}
@media (max-width: 800px) {
  .authors .author:first-child {
    display: grid;
    grid-column-end: 2;
    grid-row-end: 2;
  }
}
.authors .author:first-child .image {
  margin-right: var(--space-m);
}
.authors .author:first-child .image img {
  width: 450px;
}
@media (max-width: 800px) {
  .authors .author:first-child .image img {
    width: 100%;
  }
}
.authors .author:not(:first-child) {
  margin-top: var(--space-l);
}
@media (max-width: 800px) {
  .authors .author:not(:first-child) {
    margin-top: 0;
  }
}
.authors .author .image {
  z-index: 1;
  align-self: center;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}
.authors .author .image img {
  width: 80%;
}
.authors .author .info .top {
  display: flex;
  flex-direction: column;
}
.authors .author .info .top .job {
  margin: var(--space-s) 0;
  font-style: italic;
}
.authors .author .info .top .button, .authors .author .info .top .add-img-establishment .input-file label, .add-img-establishment .input-file .authors .author .info .top label, .authors .author .info .top .element--image .input-file label, .element--image .input-file .authors .author .info .top label, .authors .author .info .top .edit--image .input-file label, .edit--image .input-file .authors .author .info .top label, .authors .author .info .top .form#marketing-form .input-file label, .form#marketing-form .input-file .authors .author .info .top label {
  display: flex;
  justify-content: center;
  color: white;
  background-color: var(--bc-1);
  margin: 0;
  margin-top: var(--space-s);
  width: 135px;
}

.articles-wrapper {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: var(--space-xs);
}
.articles-wrapper.featured {
  padding-top: var(--space-m);
}
@media (max-width: 650px) {
  .articles-wrapper.featured {
    padding-top: 0;
  }
}
@media (max-width: 1250px) {
  .articles-wrapper.featured {
    display: flex;
    flex-direction: column;
  }
}
.articles-wrapper.featured .item {
  height: 130px;
  background-color: var(--white);
}
@media (max-width: 1250px) {
  .articles-wrapper.featured .item {
    grid-column-end: span 2;
  }
}
.articles-wrapper.featured .item a .article-text {
  position: relative;
  padding-top: 0;
}
.articles-wrapper.featured .item a .article-text .lens {
  background-color: transparent;
}
.articles-wrapper.featured .item a .article-text .article-content {
  justify-content: flex-start;
}
.articles-wrapper.featured .item a .article-text .article-content .title-content h3.headline-font {
  width: 100%;
}
.articles-wrapper.featured .item a .article-text .article-content .excerpt-content {
  display: none;
}
.articles-wrapper.featured .item.big-article {
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 5;
  min-height: 200px;
  height: 100%;
  grid-template-rows: auto;
}
@media (max-width: 500px) {
  .articles-wrapper.featured .item.big-article {
    grid-row-end: 4;
    min-height: 380px;
    max-height: 380px;
  }
}
.articles-wrapper.featured .item.big-article .article-image {
  position: absolute;
  width: 100%;
}
.articles-wrapper.featured .item.big-article .article-image .lens {
  display: block;
}
.articles-wrapper.featured .item.big-article .article-tag {
  position: absolute;
  z-index: 3;
  margin: 0;
  left: 0;
  top: 27px;
  border-radius: 0 50px 50px 0;
}
.articles-wrapper.featured .item.big-article .article-link {
  width: 66.66%;
  grid-column-end: span 2;
}
@media (max-width: 1250px) {
  .articles-wrapper.featured .item.big-article .article-link {
    width: 100%;
  }
}
.articles-wrapper.featured .item.big-article .article-link .article-text {
  padding: calc(var(--space-m) * 1.5);
}
.articles-wrapper.featured .item.big-article .article-link .article-text .article-content {
  justify-content: flex-end;
}
.articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .headline-font {
  color: white;
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .headline-font {
    font-size: 2.9rem;
    line-height: 3.6rem;
  }
}
.articles-wrapper.featured .item.big-article .article-link .article-text .article-content .excerpt-content {
  display: flex;
  opacity: 1;
  max-height: unset;
}
@media (max-width: 500px) {
  .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .excerpt-content .lead-font, .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .excerpt-content .form .legal-text__title, .form .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .excerpt-content .legal-text__title, .articles-related .content .articles-wrapper.featured .item.big-article .article-link article .article-text .article-content .excerpt-content h3.date, .articles-related .content .articles-wrapper.featured article .item.big-article .article-link .article-text .article-content .excerpt-content h3.date, .articles-related .content .articles-wrapper.featured .item.big-article .article-link article .article-text .article-content .excerpt-content a h3.headline-font, .articles-related .content .articles-wrapper.featured article .item.big-article .article-link .article-text .article-content .excerpt-content a h3.headline-font, .articles-related .content .articles-wrapper.featured .item.big-article .article-link article .article-text a .article-content .excerpt-content h3.headline-font, .articles-related .content .articles-wrapper.featured article .item.big-article .article-link .article-text a .article-content .excerpt-content h3.headline-font, .articles-related .content .articles-wrapper.featured .item.big-article .article-link article .article-text .article-content .excerpt-content .article-links a, .articles-related .content .articles-wrapper.featured article .item.big-article .article-link .article-text .article-content .excerpt-content .article-links a, .articles-related .content .articles-wrapper.featured .item.big-article .article-link article .article-text .article-links .article-content .excerpt-content a, .articles-related .content .articles-wrapper.featured article .item.big-article .article-link .article-text .article-links .article-content .excerpt-content a {
    font-size: 2rem;
    line-height: 3.1rem;
  }
}
.articles-wrapper.featured .item.big-article .article-link .article-text .article-content .excerpt-content h1,
.articles-wrapper.featured .item.big-article .article-link .article-text .article-content .excerpt-content h2,
.articles-wrapper.featured .item.big-article .article-link .article-text .article-content .excerpt-content h3,
.articles-wrapper.featured .item.big-article .article-link .article-text .article-content .excerpt-content h4,
.articles-wrapper.featured .item.big-article .article-link .article-text .article-content .excerpt-content p,
.articles-wrapper.featured .item.big-article .article-link .article-text .article-content .excerpt-content span {
  font-style: italic;
}
.articles-wrapper.featured .item.big-article .plus {
  display: none;
}
.articles-wrapper.featured .item .plus {
  display: flex;
  width: 4px;
  height: 100%;
  background-color: var(--article-color);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  font-weight: 200;
  text-decoration: unset;
  color: var(--article-color);
  display: flex;
  align-items: center;
  font-size: 32px;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.articles-wrapper.featured .item:hover .plus {
  content: "+";
  width: 99px;
  border-radius: 100%;
  height: 100%;
  background-color: var(--article-color);
  position: absolute;
  right: -13%;
  color: white;
  padding-left: 10px;
  top: 0;
}
@media (max-width: 1250px) {
  .articles-wrapper.featured .item:hover .plus {
    right: 0;
    transform: translateX(57%);
  }
}
@media (max-width: 580px) {
  .articles-wrapper.featured .item:hover .plus {
    right: -13%;
    transform: none;
  }
}
@media (max-width: 380px) {
  .articles-wrapper.featured .item:hover .plus {
    right: -19%;
  }
}
@media (max-width: 650px) {
  .articles-wrapper.featured article.item:not(.big-article) {
    height: 175px !important;
  }
}

.articles-wrapper.four, .articles-wrapper.six {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .articles-wrapper.four, .articles-wrapper.six {
    grid-template-columns: 1fr;
  }
}
.articles-wrapper.three {
  max-width: var(--content-medium-width);
  grid-template-columns: repeat(3, 1fr);
  margin: auto;
}
.articles-wrapper.three .article-content {
  justify-content: flex-start;
  height: 100%;
}
.articles-wrapper.three .date {
  display: none;
}
@media (max-width: 1200px) {
  .articles-wrapper.three {
    grid-template-columns: 2fr;
  }
}
@media (max-width: 768px) {
  .articles-wrapper.three {
    grid-template-columns: 1fr;
  }
}
.articles-wrapper.small, .articles-wrapper.grid-news--small {
  row-gap: var(--space-s);
}
@media (max-width: 768px) {
  .articles-wrapper.small .article-tag, .articles-wrapper.grid-news--small .article-tag {
    padding: 0;
  }
}
.articles-wrapper.small .article-image, .articles-wrapper.grid-news--small .article-image {
  height: 145px;
}
.articles-wrapper.small .item a .article-text, .articles-wrapper.grid-news--small .item a .article-text {
  position: relative;
}
@media (max-width: 768px) {
  .articles-wrapper.small .item a .article-text, .articles-wrapper.grid-news--small .item a .article-text {
    padding-top: 0;
  }
}
.articles-wrapper.small .item a .article-text .lens, .articles-wrapper.grid-news--small .item a .article-text .lens {
  background-color: transparent;
}
.articles-wrapper.small .item a .article-text .article-content .title-content h3.headline-font, .articles-wrapper.grid-news--small .item a .article-text .article-content .title-content h3.headline-font {
  width: 100%;
}
.articles-wrapper.small .item a .article-text .article-content .excerpt-content, .articles-wrapper.grid-news--small .item a .article-text .article-content .excerpt-content {
  display: none;
}

.articles-wrapper.big.four {
  --number: 4;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  -moz-column-gap: var(--space-xs);
       column-gap: var(--space-xs);
  row-gap: var(--space-s);
}
@media (max-width: 768px) {
  .articles-wrapper.big.four {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: unset;
    grid-auto-rows: unset;
    row-gap: var(--space-l);
  }
}
.articles-wrapper.big.four .text {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 3;
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 70%;
  margin: auto 0;
}
@media (max-width: 768px) {
  .articles-wrapper.big.four .text {
    width: 100%;
    grid-column-end: 3;
    grid-row-end: 2;
    height: auto;
    margin: 0;
  }
}
.articles-wrapper.big.four .article-image {
  position: absolute;
  width: 100%;
}
.articles-wrapper.big.four .article-image .lens {
  display: block;
}
.articles-wrapper.big.four .article-tag {
  max-width: 260px;
}
.articles-wrapper.big.four .item {
  height: 420px;
  width: 100%;
  min-height: unset;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
}
.articles-wrapper.big.four .item:nth-child(even) {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 768px) {
  .articles-wrapper.big.four .item:nth-child(even) {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
.articles-wrapper.big.four .item:nth-child(odd) {
  grid-column-start: 3;
  grid-column-end: 4;
}
@media (max-width: 768px) {
  .articles-wrapper.big.four .item:nth-child(odd) {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
.articles-wrapper.big.four .item .article-link .article-text {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  padding-bottom: var(--space-m);
}
.articles-wrapper.big.four .item .article-link .article-text .article-content {
  max-width: 300px;
  justify-content: flex-end;
}
.articles-wrapper.big.four .item .article-link .article-text .article-content .title-content .headline-font {
  color: white;
}
.articles-wrapper.big.four .item .article-link .article-text .article-content .excerpt-content {
  display: none;
}
.articles-wrapper.big.four .item .article-link .article-text .article-content .excerpt-content:hover {
  display: none;
}
.articles-wrapper.big.four .item .article-link .article-text .author {
  padding-left: 0;
  grid-row: 2;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  height: 85px;
}
.articles-wrapper.big.four .item .article-link .article-text .author__text > p {
  line-height: 2.4rem;
}
.articles-wrapper.big.four .item .article-link .article-text .author__text .articles-wrapper.big.four .item .article-link .article-text .author__name {
  color: white;
}
.articles-wrapper.big.four .item .article-link .article-text .author__text .articles-wrapper.big.four .item .article-link .article-text .author__position {
  color: white;
}
.articles-wrapper.big.four .item .article-link .article-text .author__image {
  height: 50px;
  margin-right: var(--space-s);
}

.articles-wrapper.grid-news {
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--space-s);
  align-items: center;
}
.articles-wrapper.grid-news .item {
  height: 500px;
  align-items: flex-end;
}
.articles-wrapper.grid-news .item .article-link {
  height: -moz-fit-content;
  height: fit-content;
  align-self: start;
}
.articles-wrapper.grid-news .item .article-link .article-text {
  position: relative;
}
.articles-wrapper.grid-news .item .article-link .article-text .lens {
  background-color: transparent;
}
.articles-wrapper.grid-news .item .article-link .author {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: row;
  height: 85px;
}
.articles-wrapper.grid-news .item .article-link .author__text {
  color: white;
}
.articles-wrapper.grid-news .item .article-link .author__text .author__name {
  color: white;
  line-height: initial;
}
.articles-wrapper.grid-news .item .article-link .author__text .author__position {
  color: white;
  font-size: 12px;
  line-height: initial;
}
.articles-wrapper.grid-news .item .article-link .author__image {
  height: 50px;
  margin-right: var(--space-s);
}
.articles-wrapper.grid-news--top {
  align-items: flex-start;
}
.articles-wrapper.grid-news--top .text {
  padding-top: var(--space-xl);
}
@media (max-width: 650px) {
  .articles-wrapper.grid-news--top .text {
    padding-top: 0;
  }
}
.articles-wrapper.grid-news--bg-full .text {
  grid-column: 3;
  grid-row: 2;
  padding: var(--space-m) var(--space-l);
}
@media (max-width: 1120px) {
  .articles-wrapper.grid-news--bg-full .text {
    grid-column: 1;
    grid-row: 5;
  }
}
.articles-wrapper.grid-news--bg-full .item {
  height: 400px;
  display: flex;
}
.articles-wrapper.grid-news--bg-full .item .article-image {
  position: absolute;
}
.articles-wrapper.grid-news--bg-full .item .article-image .lens {
  display: block;
}
.articles-wrapper.grid-news--bg-full .item .article-tag {
  position: absolute;
  z-index: 3;
  margin: 0;
  left: 0;
  top: 27px;
  border-radius: 0 50px 50px 0;
}
.articles-wrapper.grid-news--bg-full .item .article-link {
  height: -moz-fit-content;
  height: fit-content;
  align-self: flex-end;
}
.articles-wrapper.grid-news--bg-full .item .article-link .article-text .article-content {
  height: -moz-fit-content;
  height: fit-content;
  justify-content: flex-end;
}
.articles-wrapper.grid-news--bg-full .item .article-link .article-text .article-content .headline-font {
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.6px;
}
@media (max-width: 650px) {
  .articles-wrapper.grid-news--bg-full {
    grid-template-rows: min-content;
  }
  .articles-wrapper.grid-news--bg-full .text {
    padding-bottom: var(--space-xl);
  }
}
@media (max-width: 480px) {
  .articles-wrapper.grid-news--bg-full .text {
    padding-left: 0;
    padding-bottom: var(--space-l);
  }
}
.articles-wrapper.grid-news--four {
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: var(--space-s);
       column-gap: var(--space-s);
}
.articles-wrapper.grid-news--four .item {
  height: auto;
  display: flex;
  flex-direction: column;
  align-self: start;
}
.articles-wrapper.grid-news--four .item .article-tag {
  position: absolute;
  z-index: 3;
  margin: 0;
  left: 0;
  top: 27px;
  border-radius: 0 50px 50px 0;
}
.articles-wrapper.grid-news--four .item .article-link {
  display: block;
  position: relative;
  margin-top: var(--space-s);
}
.articles-wrapper.grid-news--four .item .article-link .article-text {
  padding: 0;
}
.articles-wrapper.grid-news--four .item .article-image {
  grid-row-end: span 1;
  height: 340px;
}
@media (max-width: 1100px) {
  .articles-wrapper.grid-news--four .item {
    height: 400px;
  }
}
.articles-wrapper.grid-news--two .item {
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
}
.articles-wrapper.grid-news--two .item .article-link {
  align-self: end;
}
.articles-wrapper.grid-news--two .item .article-link .article-text .article-content {
  justify-content: flex-end;
}
.articles-wrapper.grid-news--two .item .article-link .article-text .article-content .headline-font {
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.6px;
}
.articles-wrapper.grid-news--two .item .article-image {
  position: absolute;
  width: 100%;
}
.articles-wrapper.grid-news--two .item .article-image .lens {
  display: block;
}
.articles-wrapper.grid-news--two .item .article-tag {
  position: absolute;
  z-index: 3;
  margin: 0;
  left: 0;
  top: 27px;
  border-radius: 0 50px 50px 0;
}
@media (max-width: 1100px) {
  .articles-wrapper.grid-news--two .item {
    height: 400px;
  }
  .articles-wrapper.grid-news--two .text {
    height: 300px;
    align-self: center;
    grid-column: 1/3;
  }
}
@media (max-width: 700px) {
  .articles-wrapper.grid-news--two .text {
    grid-column: 1;
  }
}
@media (max-width: 650px) {
  .articles-wrapper.grid-news--two {
    display: flex;
    flex-direction: column;
    margin-top: var(--space-l);
  }
  .articles-wrapper.grid-news--two .text {
    height: auto;
  }
  .articles-wrapper.grid-news--two .list-article-tags {
    margin-bottom: var(--space-l);
  }
  .articles-wrapper.grid-news--two .item {
    margin-bottom: var(--space-m);
  }
  .articles-wrapper.grid-news--two .item:last-child {
    margin-bottom: 0;
  }
}
.articles-wrapper.grid-news--small .text {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 4;
}
.articles-wrapper.grid-news--small .item {
  height: 130px;
}
@media (max-width: 1100px) {
  .articles-wrapper.grid-news--small {
    grid-template-columns: repeat(2, 1fr);
  }
  .articles-wrapper.grid-news--small .text {
    grid-column: 1;
    grid-row-end: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media (max-width: 700px) {
  .articles-wrapper.grid-news--small {
    grid-template-columns: repeat(1, 1fr);
  }
}
.articles-wrapper.grid-news--3-columns {
  max-width: var(--content-medium-width);
  margin: auto;
  margin-bottom: var(--space-xl);
}
.articles-wrapper.grid-news--3-columns .item .article-image {
  width: 100%;
}
@media (max-width: 1100px) {
  .articles-wrapper.grid-news {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .articles-wrapper.grid-news {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 700px) {
  .articles-wrapper.grid-news--small .text {
    grid-row-end: 2;
    margin-bottom: var(--space-l);
  }
}

.contacts_contact-info {
  justify-content: center;
}
.contacts_contact-info .content .text-block {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contacts_contact-map {
  padding: 0 !important;
}
.contacts_contact-map .content {
  max-width: none;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
.contacts_contact-map .content .map-multi {
  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) {
  .contacts_contact-map .content .map-multi {
    height: 225px;
  }
}

.recomendations {
  display: grid;
  grid-template-columns: 200px 1fr;
  -moz-column-gap: var(--space-xxl);
       column-gap: var(--space-xxl);
  width: 100%;
}
@media (max-width: 1000px) {
  .recomendations {
    -moz-column-gap: var(--space-xl);
         column-gap: var(--space-xl);
  }
}
@media (max-width: 640px) {
  .recomendations {
    grid-template-columns: 1fr;
    row-gap: var(--space-xl);
  }
}
@media (max-width: 640px) {
  .recomendations .choice {
    justify-self: center;
  }
}
.recomendations .choice__title {
  font-size: 2rem;
  color: var(--white);
  background-color: var(--bc-1);
  text-align: center;
}
.recomendations .choice__items {
  background-color: var(--bc-1-lighter-75);
  display: grid;
}
@media (max-width: 640px) {
  .recomendations .choice__items {
    grid-template-columns: 33.333% 33.333% 33.333%;
  }
}
.recomendations .choice__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-l) var(--space-m);
  border-bottom: 1px solid var(--bc-1);
}
@media (max-width: 640px) {
  .recomendations .choice__item {
    border-bottom: 0;
  }
}
.recomendations .choice__item:last-child {
  border-bottom: 0;
}
.recomendations .choice__item img {
  width: 50px;
  margin-bottom: var(--space-s);
}
.recomendations .choice__item p {
  font-weight: 600;
  color: var(--bc-1);
  line-height: 2rem;
}
.recomendations .choice__item .choice__item-title {
  display: flex;
  align-items: center;
  font-weight: 500;
  position: absolute;
  left: var(--space-l);
  top: var(--space-l);
}
.recomendations .choice__item .choice__item-title p {
  margin-left: var(--space-s);
}
.recomendations .choice__item .choice__item-content {
  margin-bottom: auto;
  margin-top: var(--space-l);
}
@media (max-width: 640px) {
  .recomendations .choice__item .choice__item-content {
    margin-top: var(--space-xl);
  }
}
.recomendations .choice__item .choice__number {
  color: var(--white);
  background-color: var(--bc-1);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}
.recomendations .choice__item .choice__number span {
  transform: translateX(-1px);
}
.recomendations .results__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "image details";
  margin-bottom: var(--space-xl);
  align-items: center;
}
@media (max-width: 1000px) {
  .recomendations .results__row {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "details";
    margin-bottom: var(--space-xl);
    row-gap: var(--space-l);
  }
  .recomendations .results__row:last-child {
    margin-bottom: 0;
  }
}
.recomendations .results__row .result-img {
  overflow: hidden;
  grid-area: image;
  margin-right: var(--space-xl);
  max-height: 360px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 1000px) {
  .recomendations .results__row .result-img {
    margin-right: 0;
  }
}
.recomendations .results__row .result-data {
  grid-area: details;
}
.recomendations .results__row .result-data .body-font, .recomendations .results__row .result-data body, .recomendations .results__row .result-data .profile-page input, .profile-page .recomendations .results__row .result-data input, .recomendations .results__row .result-data .newOrder .filter-input, .newOrder .recomendations .results__row .result-data .filter-input, .recomendations .results__row .result-data .form .form-block label, .form .form-block .recomendations .results__row .result-data label, .recomendations .results__row .result-data .form .form-block input[type=text], .form .form-block .recomendations .results__row .result-data input[type=text],
.recomendations .results__row .result-data .form .form-block input[type=textarea],
.form .form-block .recomendations .results__row .result-data input[type=textarea],
.recomendations .results__row .result-data .form .form-block input[type=email],
.form .form-block .recomendations .results__row .result-data input[type=email],
.recomendations .results__row .result-data .form .form-block input[type=tel],
.form .form-block .recomendations .results__row .result-data input[type=tel],
.recomendations .results__row .result-data .form .form-block input[type=number],
.form .form-block .recomendations .results__row .result-data input[type=number],
.recomendations .results__row .result-data .form .form-block input[type=date],
.form .form-block .recomendations .results__row .result-data input[type=date],
.recomendations .results__row .result-data .form .form-block input[type=password],
.form .form-block .recomendations .results__row .result-data input[type=password],
.recomendations .results__row .result-data .form .form-block textarea,
.form .form-block .recomendations .results__row .result-data textarea,
.recomendations .results__row .result-data .form .form-block select,
.form .form-block .recomendations .results__row .result-data select, .recomendations .results__row .result-data .article__socials .date p, .article__socials .date .recomendations .results__row .result-data p, .recomendations .results__row .result-data .articles-related .content .articles-wrapper article .article-text p, .articles-related .content .articles-wrapper article .article-text .recomendations .results__row .result-data p, .recomendations .results__row .result-data .select-pure__select {
  margin-top: var(--space-s);
}
.recomendations .results__row .result-data__features {
  margin-top: var(--space-m);
}
.recomendations .results__row .result-data__feature {
  display: grid;
  grid-template-columns: 1fr;
}
.recomendations .results__row .result-data__feature p {
  display: list-item;
  list-style-type: disc;
  list-style-position: inside;
}
.recomendations .results__row:nth-child(even) {
  grid-template-areas: "details image";
}
@media (max-width: 1000px) {
  .recomendations .results__row:nth-child(even) {
    grid-template-areas: "image" "details";
  }
}
.recomendations .results__row:nth-child(even) .result-data {
  margin-right: var(--space-xl);
}
@media (max-width: 1000px) {
  .recomendations .results__row:nth-child(even) .result-data {
    margin-right: 0;
  }
}

@media (max-width: 640px) {
  .custom_recomendations-propuse img {
    display: none;
  }
}

.blocks .block .content .flex-content.recomendation {
  display: grid;
  row-gap: var(--space-m);
}
.blocks .block .content .flex-content.recomendation .help-text {
  transition: 0.25s ease-in-out;
  grid-row: 1/auto;
  grid-column: 1/5;
  justify-self: center;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: var(--space-l);
  color: white;
  background: linear-gradient(45deg, #9a0f0f, #ff3b3b);
  border: 0;
  outline: 0;
  color: var(--white);
  border-radius: 20px;
  padding: 5px 15px;
}
@media (max-width:815px) {
  .blocks .block .content .flex-content.recomendation .help-text {
    grid-column: 1/3;
    margin-top: var(--space-m);
    margin-bottom: var(--space-m);
  }
}
.blocks .block .content .flex-content.recomendation .help-text.shake {
  animation: shake 0.5s;
  animation-iteration-count: 4;
}
@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
.blocks .block .content .flex-content.recomendation .text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 770px;
  margin: auto;
  text-align: center;
}
.blocks .block .content .flex-content.recomendation .recom-form {
  display: flex;
  width: var(--content-max-width);
  min-height: 450px;
  justify-content: center;
  align-items: center;
}
.blocks .block .content .flex-content.recomendation .recom-form .question-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  max-width: var(--content-medium-width);
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out, opacity 0.75s ease-in-out;
}
@media (max-width: 815px) {
  .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper {
    padding-top: var(--space-l);
  }
}
.blocks .block .content .flex-content.recomendation .recom-form .question-wrapper--form {
  padding: 0 var(--space-m);
}
@media (max-width: 815px) {
  .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper--form {
    padding-top: 0;
  }
}
.blocks .block .content .flex-content.recomendation .recom-form .question-wrapper--form .form-container {
  width: 100%;
}
.blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--space-l);
}
@media (max-width:375px) {
  .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .form {
    grid-template-columns: 1fr;
  }
}
.blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .question {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: var(--space-l);
}
.blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .question__image {
  max-width: 165px;
}
.blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .question__buttons {
  display: flex;
  width: 100%;
  margin-top: calc(1.5 * var(--space-s));
}
.blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .question__title {
  max-width: 280px;
}
.blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .question__description {
  max-width: 360px;
}
.blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}
.blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option {
  display: grid;
  justify-content: center;
  align-items: start;
  border-left: 1px solid black;
  border-right: 1px solid black;
  padding: var(--space-l) var(--space-m);
  grid-template-rows: 110px auto;
  row-gap: var(--space-m);
  cursor: pointer;
}
@media (max-width: 480px) {
  .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option {
    grid-template-rows: 80px auto;
  }
}
.blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option__image {
  height: 110px;
  width: auto;
  justify-self: center;
}
@media (max-width: 480px) {
  .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option__image {
    height: 80px;
  }
}
.blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option .body-font, .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option body, .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option .profile-page input, .profile-page .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option input, .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option .newOrder .filter-input, .newOrder .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option .filter-input, .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option .form .form-block label, .form .form-block .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option label, .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option .form .form-block input[type=text], .form .form-block .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option input[type=text],
.blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option .form .form-block input[type=textarea],
.form .form-block .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option input[type=textarea],
.blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option .form .form-block input[type=email],
.form .form-block .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option input[type=email],
.blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option .form .form-block input[type=tel],
.form .form-block .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option input[type=tel],
.blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option .form .form-block input[type=number],
.form .form-block .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option input[type=number],
.blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option .form .form-block input[type=date],
.form .form-block .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option input[type=date],
.blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option .form .form-block input[type=password],
.form .form-block .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option input[type=password],
.blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option .form .form-block textarea,
.form .form-block .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option textarea,
.blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option .form .form-block select,
.form .form-block .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option select, .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option .article__socials .date p, .article__socials .date .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option p, .blocks .block .articles-related .content .flex-content.recomendation .recom-form .question-wrapper .options .option .articles-wrapper article .article-text p, .articles-related .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option .articles-wrapper article .article-text p, .blocks .block .articles-related .content .articles-wrapper article .article-text .flex-content.recomendation .recom-form .question-wrapper .options .option p, .articles-related .blocks .block .content .articles-wrapper article .article-text .flex-content.recomendation .recom-form .question-wrapper .options .option p, .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option .select-pure__select {
  max-width: 90%;
  text-align: center;
  justify-self: center;
  line-height: 2.5rem;
}
.blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option.selected, .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option:hover {
  background-color: var(--bc-2-transparent);
}
.blocks .block .content .flex-content.recomendation .recom-form .question-wrapper.actual {
  opacity: 1;
  transform: translateY(0px);
  transition: transform 0.75s ease-in-out, opacity 0.5s ease-in-out;
  z-index: 2;
  position: relative;
}
@media (max-width: 1230px) {
  .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options {
    grid-template-columns: repeat(2, 1fr);
  }
  .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option:nth-child(odd) {
    border-right: 0;
  }
  .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .options .option:nth-child(even) {
    border-left: 0;
  }
}
@media (max-width: 815px) {
  .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .question {
    padding: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: var(--space-m);
  }
  .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper:not(.question-wrapper--form) .question__buttons {
    justify-content: center;
  }
}
@media (max-width: 650px) {
  .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .form {
    grid-template-columns: 1fr;
  }
  .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper--form .question__buttons {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .blocks .block .content .flex-content.recomendation .recom-form .question-wrapper .question {
    margin-bottom: 0;
  }
}

.recomendations-propuses {
  display: grid;
  grid-template-columns: auto 1fr auto;
  max-width: var(--content-medium-width);
  width: 100%;
}
@media (max-width: 1300px) {
  .recomendations-propuses {
    grid-template-columns: 1fr;
    justify-content: center;
    row-gap: 38px;
  }
}
@media (max-width: 450px) {
  .recomendations-propuses {
    padding: 0 var(--space-m);
  }
}
@media (max-width: 1300px) {
  .recomendations-propuses img {
    justify-self: center;
  }
}
.recomendations-propuses .recomendations-propuse {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.recomendations-propuses .recomendations-propuse .button, .recomendations-propuses .recomendations-propuse .add-img-establishment .input-file label, .add-img-establishment .input-file .recomendations-propuses .recomendations-propuse label, .recomendations-propuses .recomendations-propuse .element--image .input-file label, .element--image .input-file .recomendations-propuses .recomendations-propuse label, .recomendations-propuses .recomendations-propuse .edit--image .input-file label, .edit--image .input-file .recomendations-propuses .recomendations-propuse label, .recomendations-propuses .recomendations-propuse .form#marketing-form .input-file label, .form#marketing-form .input-file .recomendations-propuses .recomendations-propuse label {
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: var(--space-s);
}
.recomendations-propuses .recomendations-propuse__title {
  max-width: 312px;
  padding-bottom: 20px;
  text-align: center;
}
.recomendations-propuses .recomendations-propuse__detail {
  display: flex;
  flex-direction: row;
}
@media (max-width: 530px) {
  .recomendations-propuses .recomendations-propuse__detail {
    flex-direction: column;
  }
}
.recomendations-propuses .recomendations-propuse__detail .propuse1 {
  text-align: right;
  padding-right: 50px;
  border-right: 1px solid var(--bc-1);
}
@media (max-width: 530px) {
  .recomendations-propuses .recomendations-propuse__detail .propuse1 {
    text-align: center;
    padding-right: 0;
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid var(--bc-1);
  }
}
.recomendations-propuses .recomendations-propuse__detail .propuse1 .button, .recomendations-propuses .recomendations-propuse__detail .propuse1 .add-img-establishment .input-file label, .add-img-establishment .input-file .recomendations-propuses .recomendations-propuse__detail .propuse1 label, .recomendations-propuses .recomendations-propuse__detail .propuse1 .element--image .input-file label, .element--image .input-file .recomendations-propuses .recomendations-propuse__detail .propuse1 label, .recomendations-propuses .recomendations-propuse__detail .propuse1 .edit--image .input-file label, .edit--image .input-file .recomendations-propuses .recomendations-propuse__detail .propuse1 label, .recomendations-propuses .recomendations-propuse__detail .propuse1 .form#marketing-form .input-file label, .form#marketing-form .input-file .recomendations-propuses .recomendations-propuse__detail .propuse1 label {
  margin-left: auto;
}
@media (max-width: 530px) {
  .recomendations-propuses .recomendations-propuse__detail .propuse1 .button, .recomendations-propuses .recomendations-propuse__detail .propuse1 .add-img-establishment .input-file label, .add-img-establishment .input-file .recomendations-propuses .recomendations-propuse__detail .propuse1 label, .recomendations-propuses .recomendations-propuse__detail .propuse1 .element--image .input-file label, .element--image .input-file .recomendations-propuses .recomendations-propuse__detail .propuse1 label, .recomendations-propuses .recomendations-propuse__detail .propuse1 .edit--image .input-file label, .edit--image .input-file .recomendations-propuses .recomendations-propuse__detail .propuse1 label, .recomendations-propuses .recomendations-propuse__detail .propuse1 .form#marketing-form .input-file label, .form#marketing-form .input-file .recomendations-propuses .recomendations-propuse__detail .propuse1 label {
    margin-right: auto;
  }
}
.recomendations-propuses .recomendations-propuse__detail .propuse1 .prouse-text {
  max-width: 200px;
  font-size: 1.7rem;
  line-height: 2rem;
  padding-bottom: 10px;
  color: var(--bc-1);
}
.recomendations-propuses .recomendations-propuse__detail .propuse2 {
  padding-left: 50px;
}
@media (max-width: 530px) {
  .recomendations-propuses .recomendations-propuse__detail .propuse2 {
    text-align: center;
    padding-left: 0;
    padding-top: 20px;
  }
}
@media (max-width: 530px) {
  .recomendations-propuses .recomendations-propuse__detail .propuse2 .button, .recomendations-propuses .recomendations-propuse__detail .propuse2 .add-img-establishment .input-file label, .add-img-establishment .input-file .recomendations-propuses .recomendations-propuse__detail .propuse2 label, .recomendations-propuses .recomendations-propuse__detail .propuse2 .element--image .input-file label, .element--image .input-file .recomendations-propuses .recomendations-propuse__detail .propuse2 label, .recomendations-propuses .recomendations-propuse__detail .propuse2 .edit--image .input-file label, .edit--image .input-file .recomendations-propuses .recomendations-propuse__detail .propuse2 label, .recomendations-propuses .recomendations-propuse__detail .propuse2 .form#marketing-form .input-file label, .form#marketing-form .input-file .recomendations-propuses .recomendations-propuse__detail .propuse2 label {
    margin-right: auto;
    margin-left: auto;
  }
}
.recomendations-propuses .recomendations-propuse__detail .propuse2 .prouse-text {
  max-width: 205px;
  font-size: 1.7rem;
  line-height: 2rem;
  padding-bottom: 10px;
  color: var(--bc-1);
}
.recomendations-propuses .propuse-img6 {
  margin-top: -170px;
}
@media (max-width: 1300px) {
  .recomendations-propuses .propuse-img6 {
    margin-top: 0;
    z-index: 4;
  }
}

.blocks .block.custom_want-more .content {
  max-width: var(--content-max-width);
}
.blocks .block.custom_want-more .content .grid-content {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.blocks .block.custom_want-more .content .grid-content__item {
  display: flex;
  justify-content: center;
  position: relative;
}
.blocks .block.custom_want-more .content .grid-content__item .decoration {
  position: absolute;
  bottom: 0;
}
.blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .text {
  text-align: center;
}
.blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: var(--space-l) 0;
  width: 100%;
}
.blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option {
  max-width: 200px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .body-font, .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option body, .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .profile-page input, .profile-page .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option input, .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .newOrder .filter-input, .newOrder .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .filter-input, .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .form .form-block label, .form .form-block .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option label, .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .form .form-block input[type=text], .form .form-block .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option input[type=text],
.blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .form .form-block input[type=textarea],
.form .form-block .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option input[type=textarea],
.blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .form .form-block input[type=email],
.form .form-block .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option input[type=email],
.blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .form .form-block input[type=tel],
.form .form-block .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option input[type=tel],
.blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .form .form-block input[type=number],
.form .form-block .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option input[type=number],
.blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .form .form-block input[type=date],
.form .form-block .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option input[type=date],
.blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .form .form-block input[type=password],
.form .form-block .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option input[type=password],
.blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .form .form-block textarea,
.form .form-block .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option textarea,
.blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .form .form-block select,
.form .form-block .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option select, .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .article__socials .date p, .article__socials .date .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option p, .blocks .block.custom_want-more .articles-related .content .grid-content__item:nth-child(2) .info .choose__option .articles-wrapper article .article-text p, .articles-related .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .articles-wrapper article .article-text p, .blocks .block.custom_want-more .articles-related .content .articles-wrapper article .article-text .grid-content__item:nth-child(2) .info .choose__option p, .articles-related .blocks .block.custom_want-more .content .articles-wrapper article .article-text .grid-content__item:nth-child(2) .info .choose__option p, .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .select-pure__select {
  margin-top: var(--space-s);
  line-height: 1.3;
}
@media (max-width: 450px) {
  .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose {
    flex-direction: column;
  }
  .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option img {
    width: 120px;
  }
  .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .body-font, .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option body, .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .profile-page input, .profile-page .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option input, .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .newOrder .filter-input, .newOrder .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .filter-input, .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .form .form-block label, .form .form-block .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option label, .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .form .form-block input[type=text], .form .form-block .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option input[type=text],
  .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .form .form-block input[type=textarea],
  .form .form-block .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option input[type=textarea],
  .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .form .form-block input[type=email],
  .form .form-block .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option input[type=email],
  .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .form .form-block input[type=tel],
  .form .form-block .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option input[type=tel],
  .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .form .form-block input[type=number],
  .form .form-block .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option input[type=number],
  .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .form .form-block input[type=date],
  .form .form-block .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option input[type=date],
  .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .form .form-block input[type=password],
  .form .form-block .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option input[type=password],
  .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .form .form-block textarea,
  .form .form-block .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option textarea,
  .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .form .form-block select,
  .form .form-block .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option select, .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .article__socials .date p, .article__socials .date .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option p, .blocks .block.custom_want-more .articles-related .content .grid-content__item:nth-child(2) .info .choose__option .articles-wrapper article .article-text p, .articles-related .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .articles-wrapper article .article-text p, .blocks .block.custom_want-more .articles-related .content .articles-wrapper article .article-text .grid-content__item:nth-child(2) .info .choose__option p, .articles-related .blocks .block.custom_want-more .content .articles-wrapper article .article-text .grid-content__item:nth-child(2) .info .choose__option p, .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option .select-pure__select {
    font-size: 3rem;
  }
  .blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .choose__option:nth-child(2) {
    margin-top: var(--space-m);
  }
}
.blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .text--small {
  display: flex;
  justify-content: center;
  text-align: center;
  opacity: 0.5;
  margin-top: var(--space-l);
}
.blocks .block.custom_want-more .content .grid-content__item:nth-child(2) .info .text--small p {
  max-width: 360px;
  width: 100%;
}
@media (max-width: 900px) {
  .blocks .block.custom_want-more .content .grid-content {
    grid-template-columns: 1fr;
    row-gap: var(--space-l);
  }
  .blocks .block.custom_want-more .content .grid-content__item .decoration {
    position: relative;
    padding: 0px var(--space-m);
  }
}

.top--provinces {
  margin-top: 0;
  height: 300px;
}
@media (max-width: 480px) {
  .top--provinces {
    height: 250px;
  }
}
.top--provinces .top__foreground .top__container {
  position: relative;
  width: var(--content-medium-width);
}
@media (max-width: 1500px) {
  .top--provinces .top__foreground .top__container {
    width: 100%;
    padding: 0 var(--space-l);
  }
}
@media (max-width: 480px) {
  .top--provinces .top__foreground .top__container {
    padding: 0 var(--space-m);
  }
}
@media (max-width: 480px) {
  .top--provinces .top__foreground .top__container .top__content .display-4 {
    font-size: 5rem;
    line-height: 5.5rem;
  }
}
.top--provinces .background {
  position: relative;
}
@media (max-width: 768px) {
  .top--provinces .background .waves {
    transform: rotate(180deg) scale(1.5, 1);
  }
}
.top--provinces .province-hoja {
  position: absolute;
  z-index: 2;
  right: 80px;
  bottom: 0;
}
@media (max-width: 1500px) {
  .top--provinces .province-hoja {
    right: var(--space-l);
  }
}
@media (max-width: 730px) {
  .top--provinces .province-hoja {
    display: none;
  }
}

@media (max-width: 1200px) {
  .blocks .block--province .image--cup-decoration {
    display: none;
  }
}
@media (max-width: 1200px) {
  .blocks .block--province .content--brands {
    padding: 0;
  }
}
@media (max-width: 1200px) {
  .blocks .block--province .content--quote {
    grid-row-start: 1;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .blocks .block--province .content--quote .display-2, .blocks .block--province .content--quote .article__socials p, .article__socials .blocks .block--province .content--quote p, .blocks .block--province .content--quote .articles-related .content .text h3, .articles-related .content .text .blocks .block--province .content--quote h3, .blocks .block--province .content--quote .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .headline-font, .articles-wrapper.featured .item.big-article .article-link .article-text .article-content .title-content .blocks .block--province .content--quote .headline-font {
    font-size: 3.4rem;
    line-height: 4.5rem;
  }
}
.blocks .block--province .button-province {
  grid-column-start: 1;
  grid-column-end: 7;
}

.blocks .block__brands .brands {
  grid-row-gap: var(--space-xxl);
}
.blocks .block__brands .brands .brand {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-l);
}
@media (max-width: 768px) {
  .blocks .block__brands .brands .brand {
    display: flex;
    flex-direction: column;
  }
}
.blocks .block__brands .brands .brand__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blocks .block__brands .brands .brand__text p {
  color: var(--bc-1);
}
.blocks .block__brands .brands .brand__text p:first-of-type {
  margin-top: calc(var(--space-s) * 1.5);
}
.blocks .block__brands .brands .brand__image {
  width: 100%;
  display: flex;
  justify-content: center;
}
.blocks .block__brands .brands .brand__image img {
  max-width: 360px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 480px) {
  .blocks .block__brands .brands .brand__image img {
    max-width: 100%;
  }
}
.blocks .block__brands .brands .brand:nth-child(even) .brand__text {
  grid-column: 2;
  grid-row: 1;
}
@media (max-width: 768px) {
  .blocks .block__brands .brands .brand:nth-child(even) .brand__text {
    grid-column-start: 1;
  }
}

.block-brands .brands-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-l);
}
.block-brands .brands-images .brand__item {
  margin: 10px;
}
.block-brands .brands-images .brand__item img {
  width: 200px;
}
@media (max-width: 768px) {
  .block-brands .brands-images .brand__item img {
    width: 150px;
  }
}

/* ---------------------------------- */
/* -------------------------- */
/* ------- 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 (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 (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 (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 (orientation: portrait) {
  .gallery .viewport .images {
    height: 100%;
    width: 100%;
  }
  .gallery .viewport .images .before {
    left: 0;
  }
  .gallery .viewport .images .after {
    right: 0;
  }
}

/* -------------------------- */
/* -------------------------- */
/* -------- NEO SCROLL ------ */
/* -------------------------- */
.scrollable {
  /*.button{
      justify-content: center;
      &.hidden{
          display: none !important;
      }
  }*/
}
.scrollable .loading {
  clear: both;
  opacity: 0.5;
  padding-bottom: 40px;
  margin: var(--space-m) 0;
  background-image: url(../resources/style/loading.png);
  background-size: 60px 20px;
  background-position: center bottom;
  background-repeat: no-repeat;
  text-align: center;
}
.scrollable .loading.hidden {
  display: none;
}
.scrollable .loading-message {
  display: none;
  text-align: center;
}
.scrollable .loading-message.visible {
  display: block;
  color: var(--g-05);
}
.scrollable .end-loading {
  display: none;
  text-align: center;
}
.scrollable .end-loading.visible {
  display: block;
  color: var(--g-05);
}

.fader {
  opacity: 0;
  transform: translateY(100px);
}
.fader.active {
  opacity: 1;
  transform: translateY(0%);
  transition: all 0.5s ease-out 0s;
}
.fader.active.center {
  transition: all 0.5s ease-out 0.1s;
}
.fader.active.right {
  transition: all 0.5s ease-out 0.2s;
}

.box {
  transform: translate(0, 0);
  transitioon: all 0.2s ease-out;
}

/* -------------------------- */
/* -------------------------- */
/* -------- 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%;
  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 (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;
  }
}
/* -------------------------- */
/* -------------------------- */
/* --------- NEO TABS ------- */
/* -------------------------- */
.tabs .header-tabs {
  display: table;
  width: 100%;
}
.tabs .header-tabs .tab {
  display: table-cell;
  text-align: center;
  background: #EEE;
  padding: var(--space-s) var(--space-m);
  cursor: pointer;
  transition: 0.2s all ease-out;
  vertical-align: middle;
  background: var(--black);
  color: var(--white);
}
.tabs .header-tabs .tab:hover {
  background-color: var(--bc-1);
  color: var(--black);
}
.tabs .header-tabs .tab.current {
  color: var(--black);
  background: var(--white);
}
.tabs .content-tabs .tab {
  display: none;
  padding: var(--space-m);
}
@media (max-device-width: 480px) and (orientation: portrait) {
  .tabs .content-tabs .tab {
    padding: var(--space-xs);
  }
}

/* -------------------------- */
@media screen and (min-width: 0\0 ) {
  .ie-alert {
    display: table;
  }
  .ie-alert .message {
    display: table-cell;
    vertical-align: middle;
  }
}/*# sourceMappingURL=style.css.map */