:root {
  --cookies-warning-color: #f5f5f5;
  --cookies-text-color: #707070;
}

.cookies-warning {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  bottom: 10px;
  background: var(--cookies-warning-color);
  width: 90%;
  left: 5%;
  height: 100px;
  z-index: 101;
  transition: all ease-out 0.3s;
  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
}

.cookies-warning .cookie-content {
  width: 90%;
  height: 95%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cookies-warning .cookie-content h5 {
  color: var(--cookies-text-color);
  font: 14px "ralewaythin", sans-serif;
}

.cookies-warning button {
  cursor: pointer;
  background-color: #F55A06;
  font: 15px "ralewaythin", sans-serif;
  padding: 10px 30px;
  border-radius: 20px;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #F55A06;
  color: #ffffff;
  animation: 0.4s;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  -webkit-animation: 0.4s;
}

.cookies-warning button:hover {
  background-color: transparent;
  color: #F55A06;
  animation: 0.4s;
  -webkit-animation: 0.4s;
}

@media screen and (min-width: 1300px) {
  .cookies-warning {
    width: 1256px;
    left: calc(50% - 628px);
  }
}

@media screen and (max-width: 1000px) {
  .cookies-warning {
    height: 120px;
  }
}

@media screen and (max-width: 800px) {
  .cookies-warning {
    height: 140px;
  }
}

@media screen and (max-width: 720px) {
  .cookies-warning {
    height: 160px;
  }

  .cookies-warning .cookie-content {
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }

  .cookies-warning .cookie-content h5 {
    text-align: center;
  }
}

@media screen and (max-width: 560px) {
  .cookies-warning {
    height: 180px;
  }
}

@media screen and (max-width: 503px) {
  .cookies-warning button {
    padding: 10px 25px;
  }
}

@media screen and (max-width: 483px) {
  .cookies-warning {
    height: 200px;
  }

  .cookies-warning button {
    font-size: 14px;
  }
}
