.modal_form {
	position: fixed;
	inset: 0;
	display: flex;
	justify-content: flex-end;
	z-index: 5;
}

.modal_form .form-control {
	border: 1px solid transparent;
}

.modal_form:before{
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgb(0 0 0 /60%);
	z-index: -1;
	opacity: 0;
	transition: opacity 0.3s;
}

.modal_form.active:before {
	opacity: 1;
}

.modal_container {
	height: 100%;
	max-width: 800px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: #1b1b1b;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	overflow: hidden;
	transform: translateX(100%);
	transition: transform 0.3s;
	overflow-y: auto;
}

.modal_form.active .modal_container {
	transform: translateX(0%);
}

.modal_header {
	background-color: #187db4;
	padding-top: 60px;
	padding-left: 50px;
	padding-right: 300px;
	padding-bottom: 40px;
}

.modal_title {
	position: relative;
	font-size: 1.5rem;
	line-height: 1;
}

.modal_title span {
	font-weight: 300;
	font-size: 1.15rem;
}

.modal_close {
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}

.modal_body {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	padding-top: 50px;
	padding-left: 50px;
	padding-right: 300px;
}

#form_reload_js {
	width: 100%;
}

.modal_footer {
	border-top: 1px solid #515151;
	padding: 30px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.modal_btn {
	padding: 0.75rem 3.75rem;
	transition: .3s;
}

.modal_btn:disabled {
	opacity: .5;
}

.form-group textarea {
	width: 100%;
}


@media (max-width: 767px) {
	.modal_header, .modal_body, .modal_footer {
		padding-right: 15%;
	}
}