.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 2147483645;
    box-sizing: border-box;
    width: 100%;
    background-color: var(--co-bg-color);
    border-top: 6px;
    border-color: var(--bg-alt-color);
    border-style: solid;
  }
  
  .cookie-consent-banner__inner {     
    max-width: 960px;
    margin: 0px auto;
    padding: 32px 0;
  }
  
  .cookie-consent-banner__copy { 
    margin-bottom: 16px;
  }
  
  .cookie-consent-banner__header {
    margin-bottom: 8px;
    font-family: "CeraPRO-Bold", sans-serif, arial;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--a-active);
    background-color: var(--co-bg-color);
  }
  
  .cookie-consent-banner__description {
    font-family: "CeraPRO-Regular", sans-serif, arial;
    font-weight: normal;
    color: var(--co-fg-color);
    font-size: 16px;
    line-height: 24px;
  }
  
  .cookie-consent-banner__cta {
    box-sizing: border-box;
    display: inline-block;
    min-width: 164px;
    padding: 11px 13px;
    border-radius: 4px;
    background-color: var(--co-su-color);
    color: var(--bg-alt-color);
    text-decoration: none;
    text-align: center;
    font-family: "CeraPRO-Regular", sans-serif, arial;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
  }
  
  .cookie-consent-banner__cta--secondary { 
    padding: 9px 13px;
    font-size: 16px;
    border: 2px solid var(--bg-color);
    background-color: transparent;
    color: var(--bg-color);
  }
  
  .cookie-consent-banner__cta:hover {
    background-color: color-mix(in srgb, var(--co-su-color), transparent 20%) !important;
    color: var(--bg-color) !important;
    font-weight: bold;
  }
  
  .cookie-consent-banner__cta--secondary:hover {
    border-color: color-mix(in srgb, var(--bg-color), transparent 40%) !important;
    background-color: color-mix(in srgb, var(--accent1), transparent 75%) !important;
    color: var(--bg-color) !important;
    font-weight: bold;
  }
  
  .cookie-consent-banner__cta:last-child {
    margin-left: 16px;
  }

.cookie-consent-icon {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 2147483645;
    box-sizing: border-box;
    display: none;
  }
  
  .cookie-consent-icon__inner {
    margin: 0px auto;
    padding: 4px;
  }

@media screen and (max-width: 1024px){
  .cookie-consent-banner {
    padding: 0px 38px;
  }
}
@media screen and (max-width: 480px){
  .cookie-consent-banner {
    height: 100%;
  }
} 