/*
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
 .cookiealert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: fixed;
    bottom: 24px;
    left: 50%;
    max-width: 1140px;
    min-height: 76px;
    margin: 0 !important;
    padding: 15px 40px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 8px;
    transform: translate(-50%, 0);
    transition: all 500ms ease-out;
    color: #000;
    background: #fff;
    font-size: 13px;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.32);
    -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.32);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.32);
}

@media (min-width: 576px) {

    .cookiealert {
        width: 520px;
    }
}

@media (min-width: 768px) {

    .cookiealert {
        width: 700px;
    }
}

@media (min-width: 992px) {

    .cookiealert {
        width: 940px;
    }
}

@media (min-width: 1200px) {

    .cookiealert {
        width: 1140px;
    }
}

@media (max-width: 576px) {

    .cookiealert {
        flex-direction: column;
        align-items: start;
        justify-content: center;
        width: calc(100vw - 20px);
    }

    .cookiealert .accept-cookies {
        width: 100%;
    }
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline;
}

.cookiealert .accept-cookies,
.consentcookie {
    vertical-align: baseline;
    padding: 8px 30px;
    white-space: normal;
    color: #fff!important;
    border-radius: 8px;
    display: inline-block !important;
    font-size: 14px;
}

.cookiealert .accept-cookies:hover {
    opacity: 0.8;
}

.cookiealert .accept-cookies:active {
    opacity: 1;
}

.cookietext {
    padding: 20px;
    font-size: 16px;
    color: black;
}

.consentcookie:hover {
    color: white;
}