

.cookiealert {
    position: fixed;
    bottom: 20px;
    left: 10%;
    width: 80%;
    margin: 0 !important;
    z-index: 999;
    border-radius: 10px;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #515151;
    background: #f6f6f6;
    border:solid;
    border-width: 1px;
    border-color: #009ac8;
    font-family: 'Rubik', sans-serif;
    font-size: 12px;
    text-align: center;
    padding: 2%;
    opacity: 0;
    line-height: 150%;
    font-weight: 300;
}

.cookiealert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: none;
    color:#515151;
}

.cookiealert b {font-weight: 600;}


.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
    background-color: #009ac8;
    color:#ffffff;
    text-align: center;
    
}

button {border-radius: 0px;
    height:50px;
    border:none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    width:50%;
}

