a, body {
    color: #333
}

*, body {
    margin: 0
}

body, h1, h2, h3, h4, h5, h6, textarea {
    font-family: "Inter",sans-serif;
}

* {
    padding: 0;
    box-sizing: border-box
}

body {
    font-weight: 400;
    font-size: 18px;
    background-color: #f4f4f4;
    overflow-x: hidden
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 140%;
    color: #333
}

h1 {
    font-size: 36px
}

h2 {
    font-size: 26px
}

h3 {
    font-size: 22px
}

h4 {
    font-size: 20px
}

h5 {
    font-size: 18px
}

h6 {
    font-size: 16px
}

a {
    text-decoration: none !important
}

.notification-popup {
    display: flex;
    max-width: 480px;
    width: 100%;
    height: 178px;
    padding: 16px;
    border-radius: 0 0 20px 20px;
    border: 3px solid #fb0d1b;
    background: #fff;
    margin: auto;
    box-shadow: 0 0 10px 0 #959595;
    position: fixed;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    opacity: 0;
    visibility: hidden
}

    .notification-popup.show {
        top: 0;
        opacity: 1;
        visibility: visible
    }

    .notification-popup .popup-logo {
        width: 60px;
        height: 60px;
        margin-right: 24px
    }

    .notification-popup .popup-icerik {
        display: flex;
        flex-direction: column
    }

        .notification-popup .popup-icerik span {
            font-size: 18px;
            font-weight: 600;
            padding-bottom: 8px;
            margin-bottom: 8px;
            border-bottom: 1px solid #fb0d1b;
            line-height: 150%
        }

        .notification-popup .popup-icerik p {
            font-size: 14px;
            line-height: 150%;
            margin-bottom: 16px
        }

        .notification-popup .popup-icerik .button-group {
            display: flex;
            justify-content: flex-end
        }

    .notification-popup #popup-close {
        font-size: 14px;
        color: #888;
        padding: 10px 24px;
        border: none;
        background-color: #fff;
        cursor: pointer
    }

    .notification-popup #popup-allow {
        background-color: #fb0d1b;
        font-size: 16px;
        font-weight: 600;
        border: none;
        color: #fff;
        padding: 10px 24px;
        border-radius: 5px;
        margin-left: 8px;
        cursor: pointer
    }
    