﻿.cookie-consent-banner {
   position: fixed;
   bottom: 0;
   left: 0;
   z-index: 2147483645;
   box-sizing: border-box;
   width: 100%;
   background-color: #fff;
   border: 2px solid #000;
   width: 100%;
   animation:fade-up 2s;
 }
 @keyframes fade-up {
   0% {transform: translateY(100%);opacity: 0;}
   100% {transform: translateY(0%);opacity: 1;}
 
 }
 .cookie-consent-banner a {
   color:#838F93;
 }
  .cookie-consent-banner__inner {    
   max-width: 960px;
   margin: 0 auto;
   padding: 5vh 2vw;
 }
  .cookie-consent-banner__copy {
   margin-bottom: 16px;
 }
  .cookie-consent-banner__actions {   
 }
  .cookie-consent-banner__header {
   margin-bottom: 8px;
  
   font-family: "CeraPRO-Bold", sans-serif, arial;
   font-weight: normal;
   font-size: 16px;
   line-height: 24px;
 }
  .cookie-consent-banner__description {
   font-family: "CeraPRO-Regular", sans-serif, arial;
   font-weight: normal;
   color: #838F93;
   font-size: 16px;
   line-height: 24px;
 }
  .cookie-consent-banner__cta {
   box-sizing: border-box;
   display: inline-block;
   min-width: 164px;
   padding: 11px 13px;
   border:none;
   background-color: #000066;
   color: #FFF;
   text-decoration: none;
   text-align: center;
   font-family: "CeraPRO-Regular", sans-serif, arial;
   font-weight: normal;
   font-size: 16px;
   line-height: 20px;
   transition: 250ms ease-in-out;
 }
  .cookie-consent-banner__cta--decline {
   padding: 9px 13px;
  
   border: none;
  
   background-color: transparent;
   text-decoration: underline;
   color: #838F93;
   transition: 250ms ease-in-out;
 }
  .cookie-consent-banner__cta:hover {
   background-color: green;
   transition: 250ms ease-in-out;
 }
  .cookie-consent-banner__cta--decline:hover {
   border-color: #838F93;
    
   background-color: red;
  
   color: #fff;
   transition: 250ms ease-in-out;
 }
  .cookie-consent-banner__cta:last-child {
   margin-left: 16px;
 }
 .display-none {
   display:none;
 }
