.cookiealert {
    width: 100vw;
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 0 !important;
    left: 0;
    padding: 36px 77px;
    justify-content: space-between;
    background-color: #ffffff;
    box-shadow: 0px -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 500ms ease-out;
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}
.btn-white{
    background-color: #fff; border-color: #fff; color: #000;
}
.btn-white:hover{
    background-color: #eee; border-color: #eee; color: #000;
}

.g-recaptcha > div{ margin:0 auto; }

.cookei-content{ display:flex; flex-direction:row; justify-content:space-between; }
.cookei-content .textleft{ flex:0.6; text-align:left; }
.cookei-content .buttons{flex: 0.4;}
.cookei-content .buttons button{ width:calc(50% - 50px); margin:0 10px; display: inline-block;}


@media only screen and (max-width : 767px) {
    .cookei-content{ display:block; }
    .cookei-content .buttons button{ width:100%; margin:10px 0px; display: block;}
    .cookiealert{padding: 20px 20px;}
    .cookei-content .buttons { margin-top: 10px; }
}

