#notification-view {
    --base-background-color: rgb(237, 237, 237);
    --base-font-size: 14px;
    --base-text-color: rgb(62, 65, 71);
    --heading-text-color: rgb(54, 56, 59);
    --sub-heading-text-color: rgb(70, 73, 81);
    --cta-border-color: rgb(54, 56, 59);
    --cta-text-color: var(--cta-border-color);
    --cta-primary-border-color: rgb(255, 134, 0);
    --cta-primary-active-border-color: rgb(255, 166, 0);
    --cta-primary-background-color: var(--cta-primary-border-color);
    --cta-primary-text-color: #fff;
    --base-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --heading-font: 'Heading', var(--base-font);

    position: fixed;
    left: calc(50% - 600px);
    top: calc(50% - 360px);
    width: 1200px;
    height: 720px;
    z-index: 4;
    background-color: var(--base-background-color);
    font-size: var(--base-font-size);
    color: var(--base-text-color);
    font-family: var(--base-font);
    border-radius: 10px;
    opacity: 0;
    z-index: -1
}

#notification-overlay {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    z-index: 1;
    display: block;
    position: fixed;
    z-index: -1;
    opacity: 0;
}

/* body,
html {
    background-color: var(--base-background-color);
    font-size: var(--base-font-size);
    color: var(--base-text-color);
    font-family: var(--base-font)
} */

#notification-view .close-btn {
    position: absolute;
    top: 7px;
    width: 20px;
    height: 20px;
    background-image: url(close.svg);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 100px;
    z-index: 100000;
    -webkit-app-region: no-drag;
    transition: .5s
}

#notification-view .close-btn:hover {
    background-color: #c8c8c8
}

#notification-view .close-btn:active {
    opacity: .5
}

#notification-view .close-btn.window-mac {
    left: 7px
}

#notification-view .close-btn.window-win {
    right: 7px
}

#notification-view .container {
    display: flex;
    height: 100%
}

#notification-view .container-flex-left {
    flex: 2;
    object-fit: cover;
    margin: 20px;
    margin-right: 20px;
    border-radius: 20px;
    max-width: 570px
}

#notification-view .container-flex-right {
    flex: 2;
    height: 100%;
    margin: 20px;
    margin-left: 20px;
    margin-right: 40px
}

#notification-view .container-logo {
    display: flex;
    align-items: center;
    margin: 20px 0
}

#notification-view .container-logo-icon {
    width: 40px;
    height: 40px
}

#notification-view .container-logo-text {
    margin-left: 5px;
    font-size: 18px
}

#notification-view .container-heading {
    font-size: 34px;
    margin: 10px 0;
    font-family: var(--heading-font);
    text-transform: uppercase;
    color: var(--heading-text-color)
}

#notification-view .container-sub-heading {
    color: var(--sub-heading-text-color);
    font-weight: 700
}

#notification-view .container-info {
    margin: 30px 0
}

#notification-view button {
    -webkit-app-region: no-drag
}

#notification-view .cta {
    background-color: transparent;
    border: none;
    padding: 8px 20px;
    border-radius: 100px;
    border: 2px solid var(--cta-border-color);
    color: var(--cta-text-color);
    text-transform: uppercase;
    font-family: var(--heading-font)
}

#notification-view .cta-primary {
    border: 2px solid var(--cta-primary-border-color);
    background-color: var(--cta-primary-background-color);
    margin-left: 10px;
    color: var(--cta-primary-text-color);
    text-transform: uppercase;
    font-family: var(--heading-font)
}

#notification-view .cta-primary:active {
    border: 2px solid var(--cta-primary-active-border-color)
}

#notification-view .cta-primary:active,
#notification-view .cta:active {
    opacity: .8
}

#notification-view .container-legal {
    position: absolute;
    bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #a7a7a7;
    width: calc(60% - 200px);
    font-size: 12px
}