.cookies {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: black;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  padding: 8px 24px;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10000;
  box-sizing: border-box;
}
.cookies.blocked {
  pointer-events: none;
}
.cookies.hidden {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.cookies__text {
  color: white;
  margin-right: 24px;
  font-size: 16px;
  line-height: 24px;
}
.cookies__text a {
  color: #fff;
}
.cookies__text:last-child {
  margin-right: 0;
}
.cookies__text a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: underline;
}
.cookies__btn {
  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;
  border: 1px solid #fff;
  background-color: transparent;
  border-radius: 16px;
  color: #fff;
  font-size: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: .4s;
  transition: .4s;
  cursor: pointer;
  text-transform: uppercase;
  padding: 15px;
}
@media only screen and (min-width: 1024px) {
  .cookies__text a:hover {
    color: #d34415;
    text-decoration: none;
  }
}
.cookies__btn {
  color: white !important;
  border-color: white !important;
  background-color: transparent !important;
}
@media only screen and (min-width: 1024px) {
  .cookies__btn:hover {
    color: black !important;
    border-color: white !important;
    background-color: white !important;
  }
}
@media only screen and (max-width: 767px) {
  .cookies {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookies__text {
    margin-right: 0;
    margin-bottom: 20px;
  }
}