#header #logo img {
    max-width: inherit;
    height: 80px;
}

@media screen and (max-width: 1024px) {
    #header #logo img {
        height: 55px;
    }
}

.sticky-wrapper.is-sticky #header #logo img {
    height: 65px;
}

#loading-logo {
    width: 200px;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

#loading-logo-rotate {
    animation: rotate 5s linear infinite;
    transform-origin: center center;
    transform-box: fill-box;
}







#cookie-banner {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background: #FFF;
    padding: 30px 20px;
    box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.3);
    z-index: 9999999;
  }

  .banner-container {
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
  }
  
  #cookie-banner p {
    margin: 0;
    padding: 0;
  }
  
  #cookie-banner .text-lg {
    font-size: 1.2em;
    line-height: 1.3em;
    margin-bottom: 0.3em;
  }
  
  .cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 10px;
  }
  
  .cookie-banner-actions a {
    display: inline-block;
    padding: 10px 20px;
    background: #808080;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    font-size: .8em;
    letter-spacing: .1em;
    color: #FFF;
  }
  
  .cookie-banner-actions a.approve-cookies {
    background: #96c600;
  }
  
  .cookie-banner-actions a.decline-cookies {
    background: #ff401a;
  }

  ul.regular-list {
    margin-top: 3px;
    margin-bottom: 20px;
  }

  ul.regular-list li {
    background: none;
    padding-left: 0;
    list-style: disc;
    list-style-position: inside;
  }