/*
 * 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%;
    height: auto;
    margin: 0 !important;
    z-index: 10000000;
    visibility: hidden;
    text-align: left;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    background-color: firebrick;
    vertical-align: baseline;
    opacity: 0.4;
}

    .info {float: left;
        letter-spacing: normal;
    opacity: 1;
    color:white;
    font-weight: 500;
        font-size: 14px;
    padding: 15px 20px 15px 12px;
    letter-spacing: 1px;
    }   

.cookiealert.show {

    visibility: visible;
    transform: translateY(0%);
    transition-delay: 500ms;
        opacity: 0.9;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    vertical-align: baseline;
}

    .cookiealert i {
        color: white;
        float: right;
        margin: 9px 15px auto auto;
        font-size: 28px;
        
        
    }



@media screen and (max-width: 660px) {
	
    .info {
    padding: 5px 5px 5px -2px;
    width: 80%;}    
    
.cookiealert {
    bottom: 50px;
}
    
    .cookiealert i {
        font-size: 40px;
        
        
    }
    
    
    
	}