.custom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* overflow: auto; */
    background-color: rgba(0, 0, 0, 0.5);
}

.custom-modal-content {
    background-color: #fff;
    margin: 8% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    height: 64%;
    overflow: auto;
    max-width: 850px;
    position: relative;
	border-radius: 20px;
}

.custom-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.custom-modal-close:hover,
.custom-modal-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.custom-modal-open {
    /* background-color: #0073aa; */
    /* color: #fff; */
    /* padding: 10px 20px; */
    /* border: none; */
    /* cursor: pointer; */
    /* font-size: 16px; */
}

.custom-modal-open:hover {
    /* background-color: #005177; */
}
