/*
 * 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;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #FFF;
	/*background-image: linear-gradient(145deg, rgba(152, 119, 234, 0.7) 0%, #0d9245 80%)!important;*/
	background-repeat: repeat-x;
	font-weight: 400;
	font-size: 16px;
}

.cookiealert.show {
    opacity: .7;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}


/* Let's get this party started */
::-webkit-scrollbar {
    width: 14px;
}
 
/* Track */
::-webkit-scrollbar-track {
    background: #a6d293;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #a6d293;
    -webkit-box-shadow: inset 0 0 8px #000; 
}
::-webkit-scrollbar-thumb:window-inactive {
    background: #a6d293;
}