/*
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
/* Cookies */

.cookiealert {
    position: fixed;
    bottom: 20px;
    right: -420px;
    max-width: 400px;
    width: 100%;
    background: #00295a;
    border-radius: 20px;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    text-align: center;
  }
  
  .cookiealert.show {
    right: 20px;
  }
  
  .cookiealert h4,
  .cookiealert p {
    text-align: left;
  }
  
  .second-heading {
    margin-top: 1rem;
  }
  
  .cookiealert a {
    text-decoration: underline;
  }
  
  .cookiealert .acceptcookies {
    border: none;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    background: #ffd200;
    color: #001f45;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    margin-top: 1.5rem;
  }
  
  .cookiealert .ref-content {
    font-size: 14px;
    font-weight: bold;
    color: white;
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
  }
  
  .top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }
  .cookies-content p {
    font-size: 14px;
    margin-top: 1rem;
    color: white;
  }
  
  .cookies-content h4 {
    color: #ffd200;
  }
  
  .cookies-content svg {
    color: #ffd200;
    font-size: 32px;
  }
  
  @media screen and (max-width: 415px) {
    .cookiealert {
      max-width: 300px;
    }
  }
  