.modal-com .custom-modal-mask {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-com .custom-modal {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 530px;
    width: 530px;
    z-index: 1000;
}
.modal-com .custom-modal-content {
    padding: 50px;
}
.modal-com .custom-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    font-size: 16px;
    color: #333333;
    letter-spacing: 0;
    line-height: 24px;
    font-weight: 500;
}
.modal-com .custom-modal-body {
    padding-top: 10px;
    text-align: center;
}
@media screen and (max-width: 1024px) {
    .modal-com .custom-modal {
        width: 360px;
    }
}
@media screen and (max-width: 460px) {
    .modal-com .custom-modal {
        width: 80%;
    }
}
