/*
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0,1;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 0ms ease-out;
    color: #fff;
    background: #139847; font-size:16px; padding:25px
}



.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline; line-height:50px; color:#FFFFFF; font-size:16px;font-weight:700; 
}
.cookiealert a:hover {
text-decoration: none;  
}

.cookiealert .acceptcookies {
    margin-left: 0px; text-align:center; vertical-align: middle; border:2px solid #fff; padding:12px; background:transparent; font-size:15px; font-weight:700; color:#bbb; cursor:pointer; cursor:hand
}
.cookiealert .acceptcookies:hover{
    margin-left: 0px; text-align:center; vertical-align: middle; border:2px solid #fff; padding:12px; background-color:rgba(255,255,255, 0.1); font-size:15px; font-weight:700; color:#fff
}

@media only screen and (max-width: 768px){
.cookiealert {font-size:12px}
.cookiealert .acceptcookies {
    margin-left: 0px; text-align:center; vertical-align: middle; border:2px solid #fff; padding:4px; background:transparent; font-size:12px; font-weight:700; color:#fff; cursor:pointer; cursor:hand; margin-top:10PX 
}
.cookiealert .acceptcookies:hover{
    margin-left: 0px; text-align:center; vertical-align: middle; border:2px solid #fff; padding:4px; background-color:rgba(255,255,255, 0.1); font-size:12px; font-weight:700; color:#978566
}
.cookiealert a {
 font-size:12px; margin-top:10PX 
}


}