/* Style cho Popup */
.modal {
    display: none; /* Ẩn popup khi không được hiển thị */
    position: fixed; /* Ở trên mọi thứ khác */
    z-index: 99999999; /* Đặt trên cùng */
    left: 0;
    top: 0;
    width: 100%; /* Chiều rộng đầy đủ */
    height: 100%; /* Chiều cao đầy đủ */
    overflow: auto; /* Khi cần, có thể cuộn */
    background-color: rgb(0,0,0); /* Màu nền */
    background-color: rgba(0,0,0,0.4); /* Màu nền với độ trong suốt */

}

/* Style cho nội dung Popup */
.modal-content {
    background-color: #0A4E89;
    margin: 15% auto; /* 15% từ trên và giữa */
    padding: 20px;
    border: 0;
    width: 523px; /* Chiều rộng của nội dung popup */
    border-radius: 30px;
    position: relative;
}

/* Nút đóng */
.close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: normal;
    position: absolute;
    right: -25px;
    top: -20px;
    background: #38556F;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    text-align: center;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-content p{
    text-align: left;
    line-height: 24px;
    font-size: 14px;
}
.modal-content strong{
    font-weight: bold;
}
.pop-light{
    background: #c2d4e6;
    padding: 10px 15px;
    border-radius: 20px;
    margin: 15px 0;
    
    font-size: 16px;
    color: #38556F;
}

@media (max-width: 431px) {

    .modal-content {
        width: 77% !important;
    }
    
}