/* Cookies */
.cookie {
  /* display: none; */
}
.cookie__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cookie__info {
  max-width: 1300px;
  position: fixed;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  background: white;
  bottom: 20px;
  -webkit-box-shadow: 0px 0px 10px #a5a4a4;
          box-shadow: 0px 0px 10px #a5a4a4;
  padding: 25px;
  z-index: 5;

}

.cookie__text {
  text-align: left;
  font-size: 15px;
  color: #000;
  font-size: 1rem;
  line-height: 120%;
  font-weight: 500;
}

.cookie__text-link {
  color: #031cfd;
}

.cookie__btn {
  padding: 15px 25px;
  background: #42CC50;
  border-radius: 10px;
  color: #fff;
  text-transform: uppercase;
}

@media (max-width: 47.99875em)  {

  .cookie__info {
    padding: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 15px;
  }

  .cookie__text {
    text-align: center;
  }

}

@media (max-width: 29.99875em) {
  .cookie__btn {
    width: 100%;
  }
}

@media (any-hover: hover) {

  .cookie__text-link:hover {
    -webkit-text-decoration: underline 1px solid #031cfd;
            text-decoration: underline 1px solid #031cfd;
    text-underline-offset: 3px;
  }
}