.modal_form_send {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: all 300ms ease-in-out;
	overflow: auto;
	z-index: 500;
}
html.open_modal_form_send .modal_form_send {
	opacity: 1;
	pointer-events: all;
}
/*html.open_modal_form_send, html.open_modal_form_send body {
	overflow: hidden;
}*/

.modal_form_send_backdrop {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(3,3,3,0.2);
	z-index: 2;
}

.modal_form_send_content_inside {
	/* width: 444px; */
	/* height: 486px; */
	position: relative;
	z-index: 10;
	background: #fff;
	padding: 3.5em 4.5em;
	/*	 background-image: url('../form_modal.png');
	background-position: -41px 0; */
	overflow: hidden;
	border-radius: 14px;
	/* max-height: 70vh; */
	/* overflow: auto; */
}

.modal_form_send_icon {
	position: absolute;
	top: 3.3em;
	left: -3.3em;
	border-radius: 100%;
	width: 9.2em;
	height: 9.2em;
	background: #375ba7;
	z-index: 20;
	background-image: url('../icons/mail_user.svg');
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: 4.2em;
}

.modal_form_send_close {
	position: absolute;
	top: 2em;
	right: 2.1em;
	width: 1.5em;
	height: 1.5em;
	background: url('../icons/mail_close.svg') no-repeat;
}

.modal_form_send_title {
	font-size: 4em;
	height: 2em;
	display: flex;
	align-items: flex-end;
	padding-left: 3.5em;
	padding-right: 1.15em;
	letter-spacing: -0.06em;
	position: relative;
	color: #3c3c3c;
	margin-bottom: 1.1em;
}

.modal_form_send_title:before {
	content: '';
	position: absolute;
	top: 0.125em;
	left: 1.43em;
	background: url('../icons/mail_head.svg') no-repeat;
	background-size: contain;
	background-position: 50% 100%;
	width: 1.65em;
	height: 1.7em;
}

.modal_form_send_field.tooltip_container {
	position: relative;
}

.modal_form_send_field {
	min-height: 2.8em;
	margin: 0 auto 2.2em;
	width: 84%;
	box-sizing: border-box;
	position: relative;
	opacity: 0;
	transition: all .3s;
	transform: translate(0px, 40px);
}
html.open_modal_form_send .modal_form_send_field:nth-child(1) {
	transition-delay: 300ms;
	opacity: 1;
	transform: translate(0px, 0px);
}
html.open_modal_form_send .modal_form_send_field:nth-child(2) {
	transition-delay: 600ms;
	opacity: 1;
	transform: translate(0px, 0px);
}
html.open_modal_form_send .modal_form_send_field:nth-child(3) {
	transition-delay: 900ms;
	opacity: 1;
	transform: translate(0px, 0px);
}
html.open_modal_form_send .modal_form_send_field:nth-child(4) {
	transition-delay: 1200ms;
	opacity: 1;
	transform: translate(0px, 0px);
	margin-bottom: 0;
}
.modal_form_send_field .modal_form_send_container_files {
	padding: 0.5em 0 0.6em 0.2em;
	margin-left: 2.9em;
}
.modal_form_send_field .modal_form_send_container_files > label {
	margin-bottom: 2em;
	display: block;
	cursor: pointer;
}
.modal_form_send_field .modal_form_send_container_files > label span,
.modal_form_send_field .modal_form_container_file > label span{
	color: #919191;
	letter-spacing: 0.03em;
	display: block;
}
.modal_form_send_field .modal_form_send_container_files label input {
	display: none;
}
.modal_form_field_container {
	margin-bottom: 130px;
	transition: all 300ms ease;
	max-height: none;
}
html.modal_completed .modal_form_field_container {
	overflow: auto;
	max-height: 38vh;
}
html.modal_completed .modal_form_field_container.scroll::-webkit-scrollbar,
html.modal_completed .modal_form_field_container.backdrop::-webkit-scrollbar {
	width: 2px;
	height: 2px;
}
html.modal_completed .modal_form_field_container.scroll::-webkit-scrollbar-thumb,
html.modal_completed .modal_form_field_container.backdrop::-webkit-scrollbar-thumb {
	background: #4e7399;
}
.modal_form_container_file {
	margin-top: 1em;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal_form_send_field input {
	background: transparent;
	height: 100%;
	padding: 0.2em 0 0.6em 0.2em;
	margin-left: 2.3em;
	display: block;
	color: #919191;
	font-size: 1.25em;
	letter-spacing: 0.06em;
	box-sizing: border-box;
	width: 91%;
	border: 0;
	border-bottom: 1px solid #efefef;
}

.modal_form_send_field input::placeholder {
	color: #919191;
}

.buttons {
	padding-top: 1.4em;
	box-sizing: border-box;
	margin: 0 auto;
	width: 91%;
}

.modal_form_send_field .icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 1.8em;
	height: 2em;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.modal_form_send_field .icon:before {
	font-size: 1.5em;
	color: #919191;
	/* line-height: 2em; */
}
.modal_form_send_field .icon.fa-download {
	margin-top: 0.3em;
}

.modal_form_send_field .icon.icon-theme {
	background-image: url('../icons/theme.svg');
}

.modal_form_send_field .icon.icon-mail {
	background-image: url('../icons/mail.svg');
}

.modal_form_send_field .icon.icon-comment {
	background-image: url('../icons/comment.svg');
}

.modal_form_send_tooltip {
	position: absolute;
	top: 140%;
	right: -1.3em;
	width: 13.4em;
	height: 3.9em;
	border-radius: 0.5em;
	box-shadow: 1.882px 17.901px 29px 0px rgba(0, 0, 0, 0.1);
	border-style: solid;
	border-width: 1px;
	border-color: rgb(210, 210, 210);
	background-color: rgb(246, 246, 246);
	pointer-events: none;
	opacity: 0;
	transform: translateY(-20px);
}

html.open_modal_form_send .modal_form_send_tooltip.first {
	animation: tooltip_show 5s ease;
}
html.open_modal_form_send .modal_form_send_tooltip.show {
	animation: tooltip_show_second 5s ease;
}

@keyframes tooltip_show {
	0% {
		opacity: 1;
		transform: translateY(0px);
	}
	80% {
		opacity: 1;
		transform: translateY(0px);
	}
	100% {
		opacity: 0;
		transform: translateY(-20px);
	}
}

@keyframes tooltip_show_second {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	20% {
		opacity: 1;
		transform: translateY(0px);
	}
	80% {
		opacity: 1;
		transform: translateY(0px);
	}
	100% {
		opacity: 0;
		transform: translateY(-20px);
	}
}

.modal_form_send_field.tooltip_container .modal_form_send_tooltop_helper {
	position: absolute;
	top: 0;
	right: 0;
	width: 1.9em;
	height: 2em;
	background: url('../icons/tooltip_info.svg') no-repeat 50%;
	background-size: contain;
	cursor: pointer;
}

.modal_form_send_tooltip:before {
	content: '';
	width: 1.4em;
	height: 1.4em;
	position: absolute;
	top: -0.8em;
	right: 1.5em;
	border-radius: 0.3em;
	background: rgb(246, 246, 246);
	transform: rotate(45deg);
	border-left: 1px solid rgb(210, 210, 210);
	border-top: 1px solid rgb(210, 210, 210);
	pointer-events: none;
}

.modal_form_send_tooltip_content {
	color: #3c3c3c;
	position: relative;
	z-index: 2;
	padding: 0.5em 1.1em;
	letter-spacing: -0.01em;
	line-height: 1.4em;
}
.modal_form_send_content {
	position: absolute;
	z-index: 20;
}

.modal_form_send .buttons {
	opacity: 0;
	transition: all .3s;
	transform: translate(0px, 40px);
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding-left: 4.5em;
	padding-right: 4.5em;
	padding-bottom: 3.5em;
}
html.open_modal_form_send .modal_form_send .buttons {
	transition-delay: 1200ms;
	opacity: 1;
	transform: translate(0px, 0px);
}

.buttons a,
.buttons input,
.buttons button {
	display: block;
	opacity: 0.8;
	font-size: 1.3em;
	text-transform: uppercase;
	font-weight: 600;
	height: 2.7em;
	margin-bottom: 0.8em;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Montserrat",sans-serif;
	-webkit-appearance: none;
	appearance: none;
}
.buttons a.btn-default {
	background: #9e9e9e;
}
.buttons a.btn-default:hover {
	background: #767676;
}
.modal_form_send .btn-submit {
	background: #497fd0;
}
.modal_form_send .btn-submit:hover {
	background: #3a6db9;
}
.modal_form_send_field .excel-open:after {
	background-image: url(../images/font/31.svg);
	background-size: 85%;
}
@media(max-width:900px) {
	html.modal_completed .modal_form_field_container {
		max-height: 41vh;
	}
	.modal_form_send_icon {
		display: none;
	}
	.modal_form_send_title {
		padding-right: 0;
		padding-left: 1.8em;
	}
	
	.modal_form_send_title:before {
		left: 0em;
		width: 1.35em;
	}
	
	.modal_form_send_content_inside {
		padding: 3.5em 2em;
	}
	.modal_form_send_field {
		width: 90%;
	}
}