/*!
 * jQuery Cookiebar Plugin
 * https://github.com/carlwoodhouse/jquery.cookieBar
 *
 * Copyright 2012, Carl Woodhouse
 * Disclaimer: if you still get fined for not complying with the eu cookielaw, it's not our fault.
 */
 
.cookie-message {
  position:fixed;
  bottom:0;left:0;right:0;
  padding:0 85px 0 20px;
  background:#fff;
  border-bottom:1px solid #ccc;
  box-shadow:0px 0px 3px #ccc;
  z-index: 99;
}
/*.cookie-message a {*/
/*  position:absolute;*/
/*  top:0; *top:-2px; right:20px;*/
/*  cursor:pointer;*/
/*}*/
.cookie-message p  {
  color:#333;
  font:bold 11px/18px Arial;
  margin:0.6em 0;
}
.blue {
  border-bottom:1px solid #0E83AE;
  background-color:#0990c3;
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0e83ae), color-stop(50%, #0990c3), color-stop(100%, #0e9dd2));
  background: -webkit-linear-gradient(#0e83ae, #0990c3, #0e9dd2);
  background: -moz-linear-gradient(#0e83ae, #0990c3, #0e9dd2);
  background: -o-linear-gradient(#0e83ae, #0990c3, #0e9dd2);
  background: -ms-linear-gradient(#0e83ae, #0990c3, #0e9dd2);
  background: linear-gradient(#0e83ae, #0990c3, #0e9dd2);
}
.blue p, .blue a { color:#fff; }


.cookiebar-close {
    display:none;
}

.cookie-message .popup-content{
    display:flex;
    align-items:center;
}

.cookie-message #popup-text {
    width:50vw;
    margin-right: 35%;
}

.cookie-message .popup-content #popup-text #popup-text-inner{
    display: flex;
    flex-direction: column;
    justify-content:center;
    white-space:nowrap;
    
}

.cookie-message .popup-content #popup-text #popup-text-inner p
{
    font-size: 0.8vw !important;
}

.cookie-message .popup-content #popup-text #popup-text-inner p > a{
    color: black;
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-message .popup-content #popup-text #popup-text-inner p > a:hover{
    color: white;
}

.cookie-message .popup-content #popup-text #popup-text-inner h2{
    font-size: 1.2vw !important;
    margin: 0 !important;
}

.cookie-message .popup-content > button{
    height: 5vh;
    padding: 0.5vh;
    background-color: transparent;
    border: none;
    outline: 2px solid black;
    margin: 0 1vw 0 0;
    transition: background-color 0.3s;
}

.cookie-message .popup-content > button:hover{
    background-color: white;
}