.modal-open {
	overflow: hidden;
}

#modalContainer {
	display: none;
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

#modalContent {
	width: 500px;
	margin: 130px auto;
	min-height: 440px;
}

.get-back-right {
	background: #f0f1f7;
	border: 1px solid #c4cbd2;
	box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.16);
	border-radius: 24px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	min-height: 500px;
}

.get-back-right-upper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.leave-info {
	color: #878f98;
	font-weight: 400;
	font-size: 16px;
	line-height: 28px;
	text-align: center;

	margin-bottom: 24px;
}

.info-input {
	background: #ffffff;
	border: 1px solid #c4cbd2;
	border-radius: 10px;
	padding: 14px 16px;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;

	width: 100%;
}

.send-request-btn {
	width: 100%;
	background: #17252f;
	border-radius: 90px;
	padding: 18px;

	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	color: #ffffff;
}

#modalContentSent {
	display: none;

	background: #ffffff;
	border: 1px solid #e2e7ed;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
	border-radius: 24px;

	width: 500px;
	margin: 180px auto;
	padding: 72px;
}

.modalTitleText {
	font-weight: 600;
	font-size: 24px;
	line-height: 32px;
	color: #17252f;
	text-align: center;
}

.modalSecondaryText {
	margin-top: 12px;
	color: #878f98;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
}

@media screen and (max-width: 767px) {
	#modalContent {
		width: 90%;
	}
}
