﻿
.notification-popup {
    max-width: 480px;
    width: 100%;
    padding: 16px;
    border-radius: 0px 0px 20px 20px;
    border: 3px solid #FF6600;
    background: #fff;
    margin: auto;
    box-shadow: 0 0 10px 0px #959595;
    position: fixed;
    transition: top 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999999;
    opacity: 0;
    visibility: hidden;
}

    .notification-popup.show {
        top: 0px;
        opacity: 1;
        visibility: visible;
    }



    .notification-popup .popup-logo {
        width: 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 #FF6600;
            line-height: 150%;
        }

        .notification-popup .popup-icerik p {
            font-size: 14px;
            margin-bottom: 16px;
            line-height: 150%;
        }

        .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;
    }

    .notification-popup #popup-allow {
        background-color: #FF6600;
        font-size: 16px;
        font-weight: 600;
        border: none;
        color: #fff;
        padding: 10px 24px;
        border-radius: 5px;
        margin-left: 8px;
    }
