/*
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
.cookiealert {
	padding: 15px;
    position: fixed;
    bottom: 50px;
    left: 57px;
    width: 486px;
	/* max-width: 486px; */
    margin: 0 !important;
    z-index: 6000;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    /*transform: translateY(100%);
    transition: all 500ms ease-out;*/
    color: #ecf0f1;
    background: #181C32;
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    /*transform: translateY(0%);
    transition-delay: 500ms;*/
    /* padding: 30px 0; */
}

.cookiealert a {
    text-decoration: none !important;
    margin: 30px 0 0 0;
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}
