* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* > img {
  display: block;
  max-width: 100%;
}

:root {
  font-size: 10px;
  
  --gray100: #eeeeee;
  --gray200: #dfdfdf;
  --gray300: #dadada;
  --gray500: #515151;
  --gray900: #222222;

  --green500: #08f824;
  --green600: #07DA1F;

  --yellow500: #fff600;
  --yellow600: #E0D900;

  --red200: #FF261F;
  --red500: #dc0900;
  --red600: #CC0700;
  --red700: #a32b2b;
  --red800: #5f0606;
  
  --section-max-width: 1440px;
  --section-padding: 64px;
  --section-gap: 64px;
}

html, body {
  text-size-adjust: none;
  overflow-x: hidden;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

a, li, button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button, input, select, textarea {
  border: none;
}

body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Generic styles */

/* Buttons */

.btn {
  display: block;
  padding: 8px 16px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  text-align: center;
  color: #fff;
  background-color: var(--red500);
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: background-color .2s;
}

.btn--btn-large-height {
  padding: 8px 16px;
}

.btn--btn-red {
  background-color: var(--red500);
}

.btn--btn-red:hover {
  background-color: var(--red600);
  color: #fff;
}

.btn--btn-yellow {
  background-color: var(--yellow500);
}

.btn--btn-yellow:hover {
  background-color: var(--yellow600);
  color: #fff;
}

.btn--btn-green {
  background-color: var(--green500);
}

.btn--btn-green:hover {
  background-color: var(--green600);
  color: #fff;
}

/* Links */

.text-link {
  display: block;
  padding: 6px 18px;
  font-family: "DM Sans", sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 5vw, 1.6rem);
  color: #fff;
  transition: color 0.2s ease;
  text-wrap: nowrap;
}

.link--link-red:hover {
  color: var(--red500);
}

.link--link-black {
  color: #000;
}

.link--link-black:hover {
  color: var(--red500);
}

.link--link-underlined:hover {
  text-decoration: underline;
}

/* Search Box */

.search-container {
  width: 100%;
}

.search-container label, legend {
  display: block;
  max-width: 0px;
  max-height: 0px;
  width: 0px;
  height: 0px;
  overflow: hidden;
  color: #818181;
}

.search-container__search-box {
  display: flex;
  height: 53px;
}

.search-container__search-box input {
  width: 100%;
  padding: 16px 24px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 5vw, 1.6rem);
  color: #515151;
  outline-style: solid;
  outline-color: transparent;
}

.search-box__btn-search {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 0px 12px 0px 0px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 5vw, 1.6rem);
  color: #515151;
  background-color: #fff;
  cursor: pointer;
}

.search-box__btn-search::before {
  content: '';
  width: 1px;
  height: 60%;
  margin-right: 6px;
  background-color: var(--gray);
}

.search-box__btn-search span {
  display: block;
  width: 20px;
  min-width: 20px;
  margin-top: 3px;
}

.locales-container{
  padding: 12px 0px;
  background-color: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.locales-container .search-url{
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 5vw, 1.5rem);
  color: #2b2b2b;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.locales-container a img{
  height: clamp(1rem, 5vw, 1.5rem);
  margin-left: 20px;
}

.locales-container span.search-url{
  margin-left: 20px;
}

.breadcrumb{
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb-list, .breadcrumb-separator{
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 5vw, 1.5rem);
  color: #000;
  transition: color 0.2s ease-out;
}

.breadcrumb-list a{
  color: #000;
}

.breadcrumb-separator{
  padding: 0 10px;
}

.align-breadcrumb{
  padding: 10px var(--section-padding);
}

.breadcrumb a:hover{
  color: var(--red500);
}

@media(max-width: 768px) {

  :root {
    --section-padding: 36px;
  }
}

@media(max-width: 460px) {

  :root {
    --section-padding: 24px;
  }
}

@media screen and (max-width: 900px) {
  
  .breadcrumb{
    display: block;
  }

  .breadcrumb-list, .breadcrumb-separator{
    padding: 5px;
  }

  .breadcrumb > div{
    padding: 5px 0;
  }
}

.cookie-modal{
  width: 100vw;
  height: 100vh;
  background-color: #0000008c;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cookie-modal-content{
  background-color: #fff;
  width: 410px;
  height: 450px;
  padding: 2vw 3vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  max-width: 90vw;
  max-height: 90vh;
  justify-content: center;
}

.cookie-modal-content h1{
  font-family: 'DM Sans', sans-serif;
  /* font-size: clamp(1.4rem, 5vw, 1.6rem); */
}

.cookie-modal-content span{
  font-size: clamp(12rem, 5vw, 14rem);
  color: var(--red500);
  font-weight: 900;
  font-family: 'DM Sans', sans-serif;
}

.cookie-modal-content h2{
  text-align: center;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.3rem, 5vw, 1.5rem);
}

.cookie-modal-content h2 a{
  color: var(--red500);
}

.cookie-modal-content button{
  background-color: var(--red500);
  color: #fff;
  padding: 5px 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  border-radius: 5px;
  font-size: clamp(1.4rem, 5vw, 1.6rem);
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.cookie-modal-content button:hover{
  background-color: #000;
}