.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    z-index: 9999;
    border: 2px solid #3498db;
    background-color: #fff;
    border-radius: 15px 15px 0 0;
    text-align: center;
    flex-direction: column;
  }
  @media screen and (max-width: 500px) {
    .cookie-banner {
      padding: 10px;
    }
  }
  .cookie-banner p {
    display: inline-block;
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 1.5rem;
  }
  .cookie-banner p br {
    display: none;
  }
  @media screen and (max-width: 1400px) {
    .cookie-banner p br {
      display: initial;
    }
  }
  @media screen and (max-width: 768px) {
    .cookie-banner p {
      font-size: 1.3rem;
    }
  }
  .cookie-banner__apply {
    color: #fff;
    background: #71c9ee;
    border: 1px solid #71c9ee;
    color: #FFF;
    transition: all 0.5s ease-out;
    border: 1px solid;
    font-weight: 300;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    border-radius: 4px;
    transition: 0.2s;
    width: fit-content;
    padding: 0.3rem 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    font-size: 1.5rem;
    font-family: "Proxima Nova Bold";
  }
  .cookie-banner__apply:hover {
    color: #fff;
    background: #e3ae17;
    border-color: #e3ae17;
  }
  .cookie-banner__apply:focus {
    outline: none;
  }
  .cookie-banner__read {
    color: #777;
  }
  .cookie-banner__read:hover {
    color: #5998c0;
  }