.theme-modal {
	height: fit-content;
	/* width: fit-content; */
	/* height: 400px; */
	width: 600px;
	/* max-height: 100vh; */
	max-width: 100vw;
	background-color: #fff;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%) scale(0);
	pointer-events: none;
	transition: transform .3s ease-in;
	z-index: 99999;
	overflow-y: auto;
	padding: 30px;
}
.theme-modal.modal-open {
	pointer-events: all;
	transform: translate(-50%,-50%) scale(1);
	opacity: 1;
}
.theme-modal .close-modal {
	position: absolute;
	right: 20px;
	top: 10px;
	font-size: 40px;
	font-weight: 750;
	color: #374957;
	transform: rotate(45deg);
	cursor: pointer;
	transition: color .3s ease-in;
}
.theme-modal .close-modal:hover {
	color: #e31e24;
}
.theme-modal .title {
	text-align: center;
	margin-bottom: 20px;
}
.theme-modal .subtitle {
	margin-bottom: 30px;
	text-align: center;
}
.theme-modal .subtitle strong {
	font-weight: 700;
}
.theme-modal .request-form {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-gap: 30px;
}
.theme-modal .request-form .form-input {
	width: 100%;
}
.theme-modal .request-form .form-input.dynamic-input {
	display: none;
}
.theme-modal .request-form .form-input.columns-2 {
	grid-column: span 2;
}
.theme-modal .request-form .input-title {
	font-size: 16px;
	margin-bottom: 5px;
	font-weight: 700;
}
.theme-modal .request-form input {
	width: 100%;
	outline: none;
	border: none;
	border-bottom: 1px solid #cecece;
	padding: 10px 0;
	font-size: 16px;
}
.theme-modal .request-form input:focus {
	border-color: #e31e24;
}
.theme-modal .request-form select {
	width: 100%;
	padding: 10px;
	border-color: #e31e24;
	font-size: 16px;
	cursor: pointer;
	border-radius: 5px;
}
.theme-modal .request-form select[disabled] {
	background-color: #f3f3f3;
}
.theme-modal .request-form select option {
	font-size: 16px;
	width: 100%;
	overflow-wrap: break-word !important;
	white-space: normal !important;
}
.theme-modal .request-form .btn {
	transition: background-color .3s ease-in, color .3s ease-in;
	padding: 10px;
}
.theme-modal .request-form .btn:hover {
	background-color: #e31e24;
	color: #fff;
}

@media (max-width: 498px) {
	.theme-modal {
		padding: 20px;
	}
	.theme-modal .request-form {
		grid-template-columns: 1fr;
	}
	.theme-modal .request-form .form-input.columns-2 {
		grid-column: unset;
	}
	.theme-modal .close-modal {
		right: 15px;
		top: 5px;
	}
}