/*!
 * 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.
 */

a.cookie-link {
    position: initial !important;
    text-decoration: underline !important;
}

    a.cookie-link:hover {
        text-decoration: underline !important;
        color: #E40613;
    }

a.cookiebar-close {
    background-color: #0D5F8F;
    color: #fff !important;
    margin-top: 40px !important;
    margin-right: 20px !important;
    border: 2px solid #fff;
    padding: 10px;
    font-weight: bold;
}

    a.cookiebar-close:hover {
        border: 2px solid #fff;
        padding: 10px;
        background-color: #E40613;
        color: #fff !important;
    }

.cookie-message {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 40px 20px 20%;
    background: #fff;
    z-index: 1199;
    height: 160px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
}
.cookie-message a {
  cursor:pointer;
}
.cookie-message p, .cookie-message a {
  color:#000;
  font:bold 13px/18px;
  margin:1.6em 0;
}



/* Media Queries
--------------------------------------------------------*/
/*small smartphones (landscape)*/
@media only screen and (min-device-width : 320px) and (max-device-width : 667px) and (orientation : landscape) {

    .cookie-message {
        height: 240px !important;
        padding:20px;
    }

       
}

/*small smartphones (portrait)*/
@media only screen and (min-device-width : 320px) and (max-device-width : 667px) and (orientation : portrait) {

    .cookie-message {
        height: 340px !important;
        padding: 20px;
    }

}

/* iPads (landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
    .cookie-message {
        height: 240px !important;
    }
    
}

/* iPads (portrait) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
    .cookie-message {
        height: 240px !important;
    }
}


