.cookie-close {
    font-size: inherit;
    line-height: 1;
    text-shadow: 0 1px 0 #fff;
    opacity: 1.0;
    padding: 0 !important;
    position: absolute;
    right: 0;
    cursor: pointer;
    border: none !important;
    background-color: transparent !important;
}

.cookie-close::before {
    content: 'x';
    color: #3e3e3e;
    font-weight: 300;
}

.cookie-close:hover {
    opacity: 0.5;
}

.cookiealert {
    position: fixed;
    bottom: -200px;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    padding: 20px 20px 20px 30px;
    background: white;
    color: #333;
    box-shadow: 0px -6px 13px rgba(0, 0, 0, 0.23);
    animation-name: slideup;
    animation-delay: 0.5s;
    animation-duration: 1.0s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}

.cookiealert .cookiealert-container {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    max-width: 1390px;
}

.cookiealert .cookiealert-container .cookie-left {
    padding-right: 20px;
    order: -1;
}

.cookie-button:hover {
    background-color: #f8f9fa;
}

.cookie-button {
    padding: 0.5rem 1rem;
    white-space: nowrap;
    box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.16);
    font-weight: 500;
    cursor: pointer;
    background-color: white;
}

@media (min-width: 768px) {

    .cookiealert .cookiealert-container .cookie-left {
        width: 75%;
    }

}

.cookiealert .cookiealert-container .cookie-right {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    order: 0;
    position: relative;
    margin-top: 10px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {

    .cookiealert .cookiealert-container .cookie-right {
        padding: 0;
        float: right;
        margin-top: 0;
    }

}

.cookiealert .cookiealert-container h3 {
    font-size: 20px !important;
    margin: 0px 0px 10px 0px;
}

@media (max-width: 767.98px) {

    .cookiealert .cookiealert-container .cookie-button {
        top: -200px;
    }

}

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

.cookiealert a {
    text-decoration: underline;
}

.cookiealert .cookie-button {
    margin-left: 10px;
    vertical-align: baseline;
}

.cookiealert.cookie-show {
    display: block;
}

.cookiealert.cookie-hide {
    display: none !important;
}

@-webkit-keyframes slideup {

    0% {
        bottom: -150px;
    }

    100% {
        bottom: -25px;
    }

}

@keyframes slideup {

    0% {
        bottom: -150px;
    }

    100% {
        bottom: -25px;
    }

}