.consentMessageDiv {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: #b9e4ea;
    color: black;
    z-index: 9999;
    animation: ease-in showCookieBar 500ms;
    font-size: 12px;
    padding: 16px 32px;
    text-align: center;
    overflow: hidden;
}
#cookieElfogad, #cookieElutasit{
    letter-spacing: .06em;
    transition: .33s all ease;
    white-space: normal;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    font-weight: 400;
    border-radius: 4px;
    font-size: 14px;
    padding: 5px 10px;
    font-family: 'Montserrat-Medium', sans-serif;
    border: 1px solid;
}
#cookieElfogad:hover {
    color:black;
    background-color: #fff;
    border-color: #e0e0e2;
}
#cookieElfogad {
    border-color: #e0e0e2;
    background-color: #a12323;
    color: white;
}
#cookieElutasit:hover {
    border-color: #a12323;
    background-color: #a12323;
    color: white;
}
#cookieElutasit{
    background-color: #fff;
    border-color: #e0e0e2;
    color: black;
}
.consentMessageDiv a {
    color: #a12323;
}
@keyframes showCookieBar {
    from {bottom: -128px;}
    to {bottom: 0px;}
}
@keyframes hideCookieBar {
    from {bottom: 0px;}
    to {bottom: -128px;}
}