.gdpr {
  background-color: rgb(226, 223, 223);
  width: 100%;
  max-height: 120px;
  height: auto;
  bottom: 0;
  left: 0;
  position: fixed;
  display: block;

  /* border-radius: 0;  */
  padding: 6px 60px 6px 15px;
  color: #333;
  font-size: 12px;
  line-height: 16px;
  font-family: arial, sans-serif;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  z-index: 999999999999;
  transition: max-height 0.5s, overflow 0.5s 0.5s;
}

.gdpr.ok {
  max-height: 0;
  /*and eventually delay an overflow:auto; */
  overflow: hidden;
  transition: max-height 0.15s ease-out;
}

.gdpr__explanation {
  display: flex;
  gap: 20px;
  align-items: center;
}

.gdpr__explanation p {
  margin: 0.8rem 0;
}
.gdpr__button {
  min-width: 150px;
  text-align: center;
  cursor: pointer;
}

footer {
  background-color: rgb(225, 226, 230);
  /* color: white; */
  padding: 10px 50px;
  margin-top: 40px;
}

.footer_body {
  padding-bottom: 20px;
}

.nobullet {
  list-style-type: none;
  margin: 0;
  padding: 0 0 20px 0;
}

.flex_left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

@media (min-width: 1000px) {
  .footer {
    max-width: 1000px;
    display: grid;

    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "col1 col2 col3 col4"
      "col5 col5 col5 col5";
    column-gap: 10px;
    row-gap: 30px;
    margin-top: 40px;
  }

  .footer-box {
    padding: 0 1rem;
    border-right: solid 1px #7e8a92;
  }

  .footer-box-last {
    padding: 0 1rem;
  }

  .nobullet {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
}

.item-1 {
  grid-area: col1;
}

.item-2 {
  grid-area: col2;
}

.item-3 {
  grid-area: col3;
}

.item-4 {
  grid-area: col4;
}

.item-5 {
  grid-area: col5;
}

.footer_title {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--mainColor);
  margin-bottom: 1rem;
}

.footer_body,
.footer_body a,
.footer_body a:hover {
  font-size: 0.75rem;
  color: rgb(80, 89, 104);
  margin: 4px 0;
  display: block;
}

.footer_body a.flex_left, .footer_body a.flex_left:hover {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.underline_hover_only {
  text-decoration: none;
}

.underline_hover_only:hover {
  text-decoration: underline;
}

.underline_hover_only:active {
  text-decoration: underline;
}
