.alert-cookie {
    min-height: 70px;
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    left: 0px;
    position: fixed;
    z-index: 10000000;
    color: rgb(78, 80, 59);
    background: rgb(245, 234, 196);
    font-size: 16px;
    font-family: inherit;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    bottom: 0px;
  }
  
  .alert-cookie p {
    margin: 0;
  }
  .alert-cookie p a {
    background-color: transparent;
    color: inherit;
    text-decoration: inherit;
  }
  .alert-cookie p a span {
    color: #1f81d1;
  }
  
  .alert-cookie button {
    background: rgb(31, 129, 209);
    border: 0px;
    border-radius: 4px;
    box-shadow: none;
    color: white;
    cursor: pointer;
    flex: 0 0 auto;
    padding: 8px 16px;
    font-size: 15px;
  }
  
  @media (max-width: 1440px) {
    .alert-cookie p {
      text-overflow: ellipsis;
      word-wrap: break-word;
      overflow: hidden;
      max-width: 71.6em;
    }
  }
  
  @media (max-width: 1024px) {
    .alert-cookie p {
      text-overflow: ellipsis;
      word-wrap: break-word;
      overflow: hidden;
      max-width: 50.6em;
    }
  }
  
  @media (max-width: 768px) {
    .alert-cookie {
      justify-content: center;
    }
    .alert-cookie button {
      margin-top: 15px;
    }
  }