@-webkit-keyframes button {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes button {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.cookies {
  z-index: 2;
  position: fixed;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 10px 18px;
  background: white;
  border: 1px solid #C6C6C6;
  font-family: TTNormsProMedium, serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  width: 90%;
}

@media only screen and (min-width: 768px) {
  .cookies {
    width: auto;
    min-width: 488px;
  }
}
.cookies_fade {
  opacity: 0;
}

.cookies__text {
  font-size: 1.125rem;
  line-height: 1.5rem;
}

.cookies__text a {
  color: #1796EE;
}

.cookies__button {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  margin: 0 0 0 18px;
  padding: 0;
  border-radius: 0;
  cursor: pointer;
  background: #F5F5F5;
  border: 1px solid #000000;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 52px;
          flex: 0 0 52px;
  max-width: 52px;
  height: 36px;
  font-size: 0.875rem;
  line-height: 0.875rem;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cookies__button__text {
  z-index: 3;
  position: absolute;
}

.cookies__button__gradient {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(84.36deg, #BEDFA1 5.36%, #8CDACD 94.85%);
  z-index: 1;
  -webkit-animation: button 6s forwards linear;
          animation: button 6s forwards linear;
}