.cookie-consent-overlay {
    display: none;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
}
.cookie-consent-banner {
    display: none;
    position: fixed;
    z-index: 9999;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    max-height: 90%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 24px;
    box-shadow: 0 3px 10px 0 #606060;
}
.cookie-consent-banner__inner {
    display: flex;
    justify-content: center;
}
@media screen and (max-width: 567px) {
    .cookie-consent-banner {
        padding: 8px 24px 16px 24px;
    }
    .cookie-consent-banner__inner {
        flex-direction: column;
    }
}
.cookie-consent-banner__wrapper {
    margin-bottom: 10px;
}
.cookie-consent-banner__actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: calc(100% + 8px);
    margin-left: -4px;
    flex-wrap: wrap;
    align-content: center;
}
@media screen and (min-width: 568px) {
    .cookie-consent-banner__actions {
        justify-content: flex-end;
        flex-wrap: wrap;
        max-width: 300px;
        min-width: 240px;
    }
}
.cookie-consent-banner__actions a {
    align-items: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    font-family: sans-serif;
    justify-content: center;
    line-height: inherit;
    overflow: visible;
    padding: 0;
    user-select: none;
    white-space: nowrap;
    background: #3a3a3a !important;
    padding-left: 16px;
    padding-right: 16px;
    height: 36px;
    color: #ffffff !important;
    font-size: 14px;
    text-decoration: none;
    margin: 4px;
}
.cookie-consent-banner__actions a:hover {
    background: #1a1a1a !important;
    text-decoration: none;
}
.cookie-consent-banner__header {
    font-size: 14px;
    font-family: sans-serif;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.cookie-consent-banner__description {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: sans-serif;
}
