
		.modal-help {
			display: block;
			position: fixed;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(0, 0, 0, 0.5);
			z-index: 1000;
			padding: 20px;
		}
		.modal-help.hidden{
			opacity: 0;
			visibility: hidden;
			transition: all .3s;
			pointer-events: none;
		}
		.modal-help.hidden .modal-help-content {
			transform: translate(-50%, -50%) scale(0);
		}
		.modal-help-content {
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			background-color: #00A499;
			padding: 64px;
			border-radius: 20px;
			width: calc(100% - 40px);
			max-width: 900px;
			overflow: hidden;
			transition: all .3s;
		}
		.modal-decor {
			position: absolute;
			right: -200px;
			bottom: -236px;
			width: 400px;
			height: 400px;
		}
		.modal-decor svg {
			display: block;
			width: 100%;
			height: 100%;
		}
		.modal-help-content h2{
			font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif;
			font-style: normal;
			font-weight: 700;
			font-size: 36px;
			line-height: 120%;
			color: #FFFFFF;
			padding: 0;
			margin: 0;
			margin-bottom: 20px;
			position: relative;
			z-index: 2;
		}
		.modal-help-content p {
			font-weight: 400;
			font-size: 20px;
			line-height: 135%;
			color: #FFFFFF;
			margin-bottom: 20px;
			position: relative;
			z-index: 2;
		}
		.modal-help-content .modal-btn {
			display: inline-flex;
			vertical-align: top;
			align-items: center;
			justify-content: center;
			font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif;
			font-style: normal;
			font-weight: 600;
			font-size: 18px;
			line-height: 120%;
			color: #FFFFFF;
			min-width: 258px;
			height: 56px;
			border-radius: 16px;
			background: #DC6B2F;
			border: 1px solid #DC6B2F;
			transition: all .3s;
			position: relative;
			z-index: 2;
		}
		.modal-help-content .modal-btn:hover {
			background: #00A499;
			border-color: #fff;
		}
		.modal-help-content .close-modal{
			width: 36px;
			height: 36px;
			position: absolute;
			top: 16px;
			right: 16px;
			cursor: pointer;
		}
		.modal-help-content .close-modal svg {
			display: block;
			width: 100%;
			height: 100%;
		}
		.modal-help-content .close-modal svg rect {
			transition: all .3s;
		}
		.modal-help-content .close-modal:hover svg rect {
			fill: #DC6B2F;
		}

		@media (max-width: 767px) {
			.modal-help-content {
				padding: 56px 28px;
				padding-bottom: 40px;
			}
			.modal-help-content .modal-btn {
				min-width: 100%;
				width: 100%;
			}
			.modal-help-content h2{
				font-size: 24px !important;
				line-height: 1.2;
			}
			.modal-help-content p{
				margin-bottom: 36px;
			}
			.modal-decor {
				width: 258px;
				height: 258px;
				right: -129px;
				bottom: -120px;
			}
		}
