:root {
  --orange: #EF7D00;
  --grey-dark: #383838;
  --black: #000000;
  --white: #FFFFFF;
  --grey: #78777A;
  --grey-medium: #FAFAFA;
  --green: #5AA700;
  --yellow-light: #FFF8F2;
  --grey-light: #ECECEC;
}

.ratio-3x4 {
  --bs-aspect-ratio: calc(4 / 3 * 100%);
}

@font-face {
  font-family: 'dinproblack';
  src: url('../font/dinpro-black-webfont.woff2') format('woff2'),
  url('../font/dinpro-black-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'dinprobold';
  src: url('../font/dinpro-bold-webfont.woff2') format('woff2'),
  url('../font/dinpro-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'dinprolight';
  src: url('../font/dinpro-light-webfont.woff2') format('woff2'),
  url('../font/dinpro-light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'dinpromedium';
  src: url('../font/dinpro-medium-webfont.woff2') format('woff2'),
  url('../font/dinpro-medium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'dinproregular';
  src: url('../font/dinpro-regular-webfont.woff2') format('woff2'),
  url('../font/dinpro-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */

body,
button,
input,
select,
optgroup,
textarea {
  color: var(--grey);
  font-family: "dinproregular", Arial, sans-serif ;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

@media screen and (min-width: 992px) {
  body,
  button,
  input,
  select,
  optgroup,
  textarea {
    font-size: 1.1rem;
  }
}

h1,.h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5
h6, .h6 {
  clear: both;
  color: var(--grey-dark);
}

h1, .h1, .has-x-large-font-size {
  font-family: "dinprobold", Arial, sans-serif;
  font-size: 30px;
  font-weight: normal;
  margin-top: .5rem;
}

h2, .h2, .has-large-font-size {
  font-family: "dinprobold", Arial, sans-serif ;
  font-size: 26px;
  font-weight: normal;
}

h3, .h3 {
  font-family: "dinpromedium", Arial, sans-serif ;
  font-size: 24px;
  font-weight: normal;
}

h4, .h4, .has-medium-font-size {
  font-family: "dinpromedium", Arial, sans-serif ;
  font-size: 23px;
  font-weight: normal;
}

h5, .h5 {
  font-family: "dinproregular", Arial, sans-serif ;
  font-size: 20px;
  font-weight: normal;
}

h6, .h6, .has-small-font-size  {
  font-family: "dinproregular", Arial, sans-serif ;
  font-size: 14px;
  font-weight: 400;
}

@media screen and (min-width: 992px) {
  h1, .h1, .has-x-large-font-size {
    font-size: 48px;
  }

  h2, .h2, .has-large-font-size {
    font-size: 36px;
    margin-bottom: 1rem;
  }

  h3, .h3 {
    font-size: 30px;
  }

  h4, .h4, .has-medium-font-size {
    font-size: 26px;
  }

  h5, .h5 {
    font-size: 22px;
  }

  h6, .h6, .has-small-font-size {
    font-size: 16px;
  }
}

p {
  margin-bottom: 1.5rem;
  font-family: "dinproregular", Arial, sans-serif ;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  text-decoration: none;
}

big {
  font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
  background: #fff;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1em;
}

ul,
ol {
  margin: 0 0 1.5rem 1rem;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
--------------------------------------------- */
a {
  color: var(--orange);
}

a:hover,
a:focus,
a:active {
  color: var(--grey-dark);
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

.text-bold, .fw-bold {
  font-family: "dinprobold", Arial, sans-serif;
}

.fw-medium {
  font-family: "dinpromedium", Arial, sans-serif;
}

.fw-normal {
  font-family: "dinproregular", Arial, sans-serif;
}

.fw-light {
  font-family: "dinprolight", Arial, sans-serif;
}

.has-orange-color {
  color: var(--orange);
}

.has-blanc-color {
  color: var(--white);
}

.has-noir-color {
  color: var(--black);
}

.has-grey-color {
  color: var(--grey);
}

.has-grey-light-color {
  color: var(--grey-light);
}

.has-grey-dark-color {
  color: var(--grey-dark);
}

.has-orange-background-color {
  background-color: var(--orange);
}

.has-blanc-background-color {
  background-color: var(--white);
}

.has-noir-background-color {
  background-color: var(--black);
}

.has-grey-background-color {
  background-color: var(--grey);
}

.has-grey-light-background-color {
  background-color: var(--grey-light);
}

.has-grey-medium-background-color {
  background-color: var(--grey-medium);
}

.has-grey-dark-background-color {
  background-color: var(--grey-dark);
}

.has-yellow-light-background-color {
  background-color: var(--yellow-light);
}

/*BUTTONS*/

.button, .woocommerce button.button {
  display: inline-block;
  border-width: 1px;
  border-style: solid;
  border-radius: 0;
  padding: calc(.567em + 2px) calc(1.533em + 2px);
  font-weight: 600;
}

.btn, .woocommerce button.button {
  padding: calc(.567em + 2px) calc(1.533em + 2px);
  background-color: transparent;
  color: var(--orange);
  border-color: var(--orange);
  font-weight: 600;
  border-radius: 0;
}

.btn:hover, .btn:focus, .woocommerce button.button:hover, .woocommerce button.button:focus {
  color: var(--white);
  background-color: var(--orange);
  border-color: var(--orange);
}


.wp-block-button .wp-block-button__link {
  padding: calc(.567em + 2px) calc(1.533em + 2px);
  background-color: transparent !important;
  color: var(--orange) !important;
  border-color: var(--orange) !important;
  font-weight: 600;
  border-radius: 0;
  font-size: 1rem;
  border-width: 1px;
  border-style: solid;

}

.wp-block-button .wp-block-button__link:focus,
.wp-block-button .wp-block-button__link:hover {
  color: var(--white) !important;
  background-color: var(--orange) !important;
  border-color: var(--orange) !important;
}

.btn-black {
  border-color: var(--grey-dark);
  color: var(--white);
  background-color: var(--grey-dark);
  font-weight: 600;

}

.btn-black:hover {
  border-color: var(--white);
  color: var(--grey-dark);
  background-color: var(--white);
}

.btn.btn-large {
  padding: calc(.767em + 2px) calc(1.733em + 2px);
}

.btn-o-white {
  border-color: var(--white);
  color: var(--white);
  background-color: transparent;
}

.btn-o-white:hover, .btn-o-white:focus {
  color: var(--black);
  background-color: var(--white);
  border-color: var(--white);
}

.btn-o-orange, .button {
  background-color: transparent;
  border-color: var(--orange);
  color: var(--orange);
}

.btn-o-orange:hover, .btn-o-orange:focus, .button:hover, .button:focus {
  color: var(--white);
  background-color: var(--orange);
  border-color: var(--orange);
}

.btn.btn-rounded {
  border-radius: 30px;
}

a.btn-more:link,a.btn-more:visited {
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.product-card .add_to_cart_button, .woocommerce .add_to_cart_button {
  background-color: transparent;
  border: solid 1px transparent;
  color: var(--orange);
  padding: 0;
  font-size: 1rem;
  border-radius: 30px !important;
}

.woocommerce .add_to_cart_button:hover, .woocommerce .add_to_cart_button:focus,
.product-card .add_to_cart_button:hover, .product-card .add_to_cart_button:focus {
  background-color: transparent;
  border-color: transparent;
  color: var(--dark-grey);
}

a.btn-more:hover,a.btn-more:focus {
  color: var(--black);
  text-decoration: none;
}

a.btn-more::after{
  display: inline-block;
  content: "\e900";
  margin-left: .5rem;
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}










