#cookiesBox {
  box-shadow: 5px 5px 5px 5px rgb(0 0 0 / 50%);
  background-color: rgb(214, 214, 214);
  color: black;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding: 10px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cookiesBox button {
  color: rgb(46, 46, 46);
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cookiesBox button i {
  margin-right: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  #cookiesBox {
    flex-direction: column !important;
  }

  #cookiesBox h5 {
    text-align: center !important;
  }
  #cookiesBox button {
    margin-top: 10px !important;
  }
}

@media only screen and (max-width: 767px) {
  #cookiesBox {
    flex-direction: column !important;
  }

  #cookiesBox h5 {
    text-align: center !important;
  }
  #cookiesBox button {
    margin-top: 10px !important;
  }
}
