﻿#cookieConsent {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    background-color: rgba(0,0,0,0.5); 
}

#cookieConsent.active { 
      display: block;
}

#cookieConsent .content   { 
   position: fixed;
   bottom:-300px;
   left:0;
   height:300px;
   width:100%; 
   background-image: url(/img/cookie.svg);
   background-position:center;
   background-repeat:no-repeat;
   padding: 120px 0 0 0; 
  transition:bottom ease 0.5s;
}

#cookieConsent.bounce .content   { 
   bottom:0;
  
}
#cookieConsent .content h3  {
   margin:0;
}
#cookieConsent .content p  {
   margin:0;  
   width:260px;
   margin:auto;
   line-height:120%;   
}
 
#cookieConsent button, #cookieConsent a  {   
    width:110px;
    height:36px;
    font-size:15px;
    margin:5px;
    display:inline-block;
    white-space:nowrap;
    padding: 3px;
    vertical-align:top;
 }
 
 