@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
/** {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  background-color: #8fc1e3;
}*/
.cookies-box {
  font-family: 'Poppins', sans-serif;
  position: fixed;
  z-index: 9;
  max-width: 100%;
  left: 0;
  right: 0;
  bottom: -225px;
  width: 100%;
  background-color: #2a7291;
  padding: 12px;
  margin: 0 auto;
  color: #112d32;
  transition: all 0.3s ease;
}
.cookies-box.show {
  bottom: 0px;
}
.cookies__title {
  margin: 0;
  padding: 0;
  line-height: 18px;
}
.cookies__text {
  font-size: 13px;
}
.cookies__title,
.cookies__text {
  height: 38px;
  line-height: 38px;
  /* margin-bottom: 15px; */
  text-align: right;
}
.cookies__link {
  margin-left: 10px;
  display: inline-block;
  color: #ffffff;
}
.cookies__btn {
  font-size: 16px;
  padding: 5px 25px;
  background-color: #ffffff;
  color: #112d32;
  border-radius: 3px;
  border: none;
  transition: background 0.3s;
  cursor: pointer;
}
.cookies__btn--accept {
  margin-right: 15px;
}
.cookies__btn:hover {
  background-color: #112d32;
  color: #ffffff;
}
.cookies__link:hover {
  color: #112d32;
}

@media (max-width: 991.98px) {
  .cookies__title, .cookies__text {
    height: auto;
    line-height: 20px;
    text-align: center;
  }
  .cookies__link{
    display: block;
    margin-left: 0px;
    padding: 5px 0 10px 0;
  }
}