  #CookiesAlert {
    border-radius: 4px;
    box-sizing: border-box !important;
    margin: 0 auto;
    border: none !important;
    width: fit-content !important;
    min-height: 10px !important;
    max-height: 250px !important;
    display: none;
    clear: both !important;
    left: 0;
    right: 0;
    padding: 12px !important;
    position: fixed;
    bottom: 0 !important;
    opacity: 1;
    transform: translateY(-15px);
    z-index: 99999;
    color: black;
  }

  #CookiesAlert.active {
      display: block
  }

  #CookiesAlert .content {
    padding: 15px;
    margin: auto auto auto 0;
    text-align: left;
    border-radius: 10px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    display: flex;
    gap: 0.5rem;
    max-width: 600px;
    align-items: center;
  }

  #CookiesAlert .content p {
      line-height: 1;
      font-size: 14px;
      margin: 0;
      font-family: 'Montserrat',Arial,sans-serif;
  }

  #CookiesAlert .content .buttons {
      display: flex;
      align-items: flex-end
  }

  #CookiesAlert .content .buttons a {
      border-radius: 6px;
      margin: auto 15px auto auto;
      padding: 10px 15px;
      transition: .3s
      text-decoration: none !important;
      font-family: 'Montserrat',Arial,sans-serif;
  }

  #CookiesAlert .content .buttons a.CUAgree {
      margin: auto 0;
      background: #1aa5b6;
      color: #fff;
  }

  #CookiesAlert .content p a {
      text-decoration: underline;
  }


  @media (max-width: 768px) {
    #CookiesAlert .content {
        flex-direction: column;
        align-items: center;
    }

    #CookiesAlert .content p {
        margin: 0;
        padding: 0;
    }
  }