/* ================================
   Popup Overlay
================================ */

.fraud-popup-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    box-sizing: border-box;
		font-family: "Myriad-Pro-Light", Sans-serif;
}


/* ================================
   Popup Box
================================ */

.fraud-popup {
    position: relative;
    width: 100%;
    max-width: 850px;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.30);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /*font-family: Arial, Helvetica, sans-serif;
	  font-family: "Myriad-Pro-Light", Sans-serif;*/
	  color: #0E0E0E;
    font-size: 18px;
    line-height: 26px;
    font-weight: normal !important;
    font-style: normal !important;
    text-align: left;
}


/* ================================
   Close X Button
================================ */

.fraud-popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #f1f1f1;
    color: #333;
    font-size: 27px;
    line-height: 38px;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
}

.fraud-popup-close:hover {
    background: #0faff0;
    color: #fff;
}

/* ================================
   Header
================================ */

.fraud-popup-header {
    text-align: center;
    padding: 30px 60px 22px;
    border-bottom: 1px solid #eeeeee;
}

.fraud-alert-icon {
    width: 35px;
    height: 35px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #0faff0;
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
    line-height: 35px;
}

.fraud-popup-header h2 {
    margin: 0 !important;
		color: #0faff0;
		font-size: 22px;
    line-height: 1.25;
		font-weight: 700;
}

.fraud-popup-header p {
    margin: 8px 0 0;
    color: #555;
    font-size: 18px;
    line-height: 26px;
		font-family: "Myriad-Pro-Light", Sans-serif;
		font-weight:normal;
}


/* ================================
   Scrollable Content
================================ */

.fraud-popup-content {
    padding: 25px 35px;
    overflow-y: auto;
    flex: 1;
    color: #333;
    font-size: 18px;
    line-height: 26px;
}

.fraud-popup-content p {
    margin: 0 0 16px !important;
		font-family: "Myriad-Pro-Light", Sans-serif;
		font-weight:normal;
}

.fraud-popup-content ul {
    margin: 0 0 20px;
    padding-left: 25px;
}

.fraud-popup-content li {
    margin-bottom: 12px;
}


/* ================================
   Important Section
================================ */

.fraud-important {
    margin: 22px 0;
    padding: 20px 22px;
    background: #e5f4ff;
    border-left: 5px solid #0faff0;
    border-radius: 5px;
}

.fraud-important h3 {
    margin: 0 0 10px !important;
    color: #0faff0;
    font-size: 18px;
}

.fraud-important p {
    margin-bottom: 10px !important;
		font-family: "Myriad-Pro-Light", Sans-serif;
		font-weight:normal;
}

.fraud-important p:last-child {
    margin-bottom: 0;
}


/* ================================
   Footer Message
================================ */

.fraud-footer-message {
    margin-top: 25px;
    padding: 16px;
    text-align: center;
    /*background: #e5f4ff;*/
    border-radius: 6px;
    color: #222;
    font-size: 17px;
    font-weight: 700;
	  border:2px solid #0faff0;
}


/* ================================
   Bottom Footer
================================ */

.fraud-popup-footer {
    padding: 15px 25px;
    border-top: 1px solid #eeeeee;
    text-align: right;
    background: #ffffff;
}

.fraud-close-button {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    background: #0faff0;
    color: #ffffff;
    font-size: 18px;
	  line-height:26px;
    /*font-weight: 600;*/
    cursor: pointer;
    transition: background 0.2s ease;
	  font-family: "Myriad-Pro-Light", Sans-serif;
}

.fraud-close-button:hover {
    background: #0faff0;
}


/* ================================
   Mobile Responsive
================================ */

@media (max-width: 600px) {

    .fraud-popup-overlay {
        padding: 12px;
    }

    .fraud-popup {
        max-height: 75vh;
        border-radius: 9px;
    }

    .fraud-popup-header {
        padding: 22px 45px 18px;
    }

    .fraud-alert-icon {
        width: 42px;
        height: 42px;
        font-size: 26px;
        line-height: 42px;
    }

    .fraud-popup-header h2 {
        font-size: 20px;
    }

    .fraud-popup-header p {
        font-size: 14px;
    }

    .fraud-popup-content {
        padding: 18px 20px;
        font-size: 14px;
        line-height: 1.6;
    }

    .fraud-popup-content ul {
        padding-left: 20px;
    }

    .fraud-important {
        padding: 16px;
    }

    .fraud-footer-message {
        font-size: 15px;
    }

    .fraud-popup-footer {
        padding: 12px 18px;
    }

    .fraud-close-button {
        width: 100%;
    }

    .fraud-popup-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 23px;
        line-height: 32px;
    }
}