.top-banner-container {
    position: relative;
    background-color: #333333;
    color: #ffffff;
    transition: all .5s ease-in;
    display: none;
}
.top-banner {
    max-width: 1381px;
    padding: 12px 24px;
    margin: 0 auto;
    font-size: 0;
}
.top-banner p,
.top-banner a,
.top-banner button {
    font-size: 16px;
    line-height: 22px;
}
.top-banner a:hover {
    color: #cccccc;
}

.top-banner button.close {
    width: 15px;
    height: 15px;
    background: url("images/close_ffffff.svg") center/contain no-repeat;
}

.top-banner button.btn-primary,
.top-banner button.btn-secondary {
    display: inline-block;
    height: unset;
    width: unset;
    padding: 8px 16px;
    user-select: none;
    min-width: 150px;
}

@media screen and (max-width: 767px) {
    .top-banner .btn:not(:last-of-type) {
        margin-bottom: 12px;
    }

    .top-banner a.btn,
    .top-banner button.btn {
        width: 100%;
    }
}

/* Cookie banner */
.cookie-banner .top-banner .top-banner__close-button {
    position: absolute;
    top: 15px;
    right: 15px;
}
.cookie-banner .top-banner .top-banner__close-button button {
    width: 32px;
    height: 32px;
}
.cookie-banner .top-banner .top-banner__close-button svg {
    width: 100%;
    height: 100%;
    stroke: #ffffff;
}
.cookie-banner .top-banner .top-banner__content {
    max-width: calc(100% - 32px);
}
.cookie-banner .top-banner .top-banner__content-buttons {
    margin-top: 12px;
}
@media screen and (max-width: 767px) {
    .cookie-banner .top-banner .top-banner__close-button {
        position: static;
        text-align: right;
    }
    .cookie-banner .top-banner .top-banner__close-button button {
        width: 24px;
        height: 24px;
        margin-bottom: 8px;
    }
    .cookie-banner .top-banner .top-banner__content {
        max-width: unset;
    }
}
