.modal-blur {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: gray;
	opacity: 0.5;
	z-index: 4;
}
.modal-wrap {
	position: absolute;
	min-width: 600px;
	min-height: 450px;
	left: 13%;
	top: 10%;
	z-index: 5;
	border: 2px solid var(--border);
	border-radius: 10px;
    background-color: var(--white);
}
.modal-wrap hr {
	margin: 0;
	border: 2px solid var(--border);
}
.modal-close {
	z-index: 2;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 15px;
}

.modal-header h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: var(--text85);
}
.modal-content {
	padding: 15px;
}