    .cookie-notification-wrapper {
        width: fit-content;
        position: fixed;
        z-index: 100;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
    }

.cookie-notification-wrapper .cookie-notification {
        display: flex;
        flex-direction: column;
        width: 400px;
        padding: 15px;
        background: #F2F3F5;
        border: 1px solid #3361FF;
        box-sizing: border-box;
        border-radius: 10px;
        background-color: white;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 12px 24px rgba(0, 0, 0, 0.14), 0 16px 32px rgba(0, 0, 0, 0.12);
}

.cookie-notification-wrapper .cookie-notification .cookie-notification-message {
        font-weight: 400;
        font-size: 16px;
        line-height: 18px;
        letter-spacing: 0;
        margin-bottom: 20px;
    }

.cookie-notification-wrapper .cookie-notification .button {
        height: 50;
        border-radius: 5px;
        padding: 10px 20px;
        width: fit-content;
        min-width: 150px;
        margin: auto;
    }

.button.style-blue {
    background: #776DE5;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button {
    line-height: 1.5em;
    display: flex;
    border: 0;
    border-radius: 8px;
    text-decoration: none;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    color: #fff;
    user-select: none;
    transition: background .2s ease-in-out;
}
