.scn-cookie-notice[hidden] {
    display: none !important;
}

.scn-cookie-notice {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    box-sizing: border-box;
    width: 100%;
    border-top: 1px solid #ebebeb;
    background: #fff;
    box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.1);
    color: #43454b;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.618;
}

.scn-cookie-notice *,
.scn-cookie-notice *::before,
.scn-cookie-notice *::after {
    box-sizing: border-box;
}

.scn-cookie-notice__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 18px max(15px, 4.6875%);
    padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
}

.scn-cookie-notice__text {
    margin: 0;
    color: inherit;
}

.scn-cookie-notice__text a {
    color: #0063d1;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.scn-cookie-notice__text a:hover,
.scn-cookie-notice__text a:focus {
    color: #0059bd;
}

.scn-cookie-notice__button {
    flex: 0 0 auto;
    min-width: 96px;
    margin: 0;
    padding: 10px 24px;
    border: 1px solid #0063d1;
    border-radius: 12px;
    background: #0063d1;
    box-shadow: none;
    color: #fff;
    font: inherit;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    text-transform: none;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.scn-cookie-notice__button:hover,
.scn-cookie-notice__button:focus {
    border-color: #0059bd;
    background: #0059bd;
    color: #fff;
}

.scn-cookie-notice__button:focus-visible {
    outline: 3px solid rgba(0, 99, 209, 0.3);
    outline-offset: 2px;
}

@media screen and (max-width: 767px) {
    .scn-cookie-notice {
        font-size: 13px;
    }

    .scn-cookie-notice__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding-top: 16px;
        padding-right: 15px;
        padding-left: 15px;
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    }

    .scn-cookie-notice__button {
        width: 100%;
        min-height: 44px;
    }
}
