.formOpen
		{
			padding: 10px;
			position: relative;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			cursor: pointer;
			background: black;
			color: white;
			font-size: 20px;
			border-radius: 4px;
		}

		.popup_form
		{
			width: 50%;
			height: auto;
			position: fixed;
			top: -50%;
			left: 50%;
			transform: translate(-50%, -50%) scale(0.1);
			background: white;
			display: flex;
			justify-content: space-between;
			align-items: center;
			transition: 0.5s, opacity 300ms ease-in-out;
			padding: 100px 20px 40px;
			z-index: 10;
			border-radius: 12px;
		}

		.form-head
		{
			text-align: center;
		}
		

		.form-head h2
		{
			font-size: 24px;
			font-weight: 700;
		}

		.form-head p
		{
			font-size: 14px;
		}

		.popup_form .info_img
		{
			width: 300px;
			height: auto;
		}

		.form_open
		{
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%) scale(1.0);
		}

		.formClose
		{
			width: 30px;
			height: 30px;
			border-radius: 100%;
			background: transparent;
			cursor: pointer;
			font-size: 20px;
			position: absolute;
			top: 20px;
			right: 20px;
			border: 0;
		}

		.form_info
		{
			display: flex;
			flex-direction: column;
			width: 60%;
			height: auto;
			padding: 0 20px;
			line-height: 10px;
		}

		.input_info
		{
			width: 100%;
			height: 40px;
			display: flex;
			padding: 0 10px;
			margin-bottom: 20px;
			border: 1.5px solid black;
			border-radius: 4px;
			position: relative;
			/*border: 1px solid black;*/
		}

		.input_info img
		{
			width: 16px;
			height: auto;
		}

		.input_info input
		{
			width: 100%;
			height: 100%;
			margin-bottom: 20px;
			background: transparent;
			padding-left: 10px;
			margin-left: 10px;
			border: 0;
			outline: 0;
			font-size: 16px;
			font-weight: 400;
			border-left: 1px solid black;
			/*border: 1px solid black;*/
		}

		.input_info .fa-circle-exclamation, .fa-circle-check
		{
			position: absolute;
			right: 10px;
			top: 50%;
			transform: translate(0, -50%);
			opacity: 0;
		}

		.input_info .fa-circle-exclamation
		{
			color: red;
		}

		.input_info .fa-circle-check
		{
			color: green;
		}

		.course_select_main
		{
			display: flex;
		}

		.course_option
		{
			width: 100%;
			height: 40px;
			outline: 0;
			border: 1.5px solid black;
			/*background: rgba(238, 238, 238, 0.5);*/
			font-weight: 400;
			font-size: 14px;
			padding: 0 10px;
			border-radius: 4px;
			margin-right: 10px;
		}

		.time-select
		{
			width: 100%;
			padding: 0 10px;
			border: 1.5px solid black;
			border-radius: 4px;
		}

		.info_btn
		{
			width: 120px;
			height: 40px;
			line-height: 40px;
			text-decoration: none;
			background: rgba(0, 0, 255, 0.8);
			color: white;
			text-align: center;
			margin-top: 20px;
			border-radius: 4px;
		}

		textarea
		{
			width: 100%;
			height: 100px;
			margin-top: 10px;
			border: 1.5px solid black;
			border-radius: 4px;
			font-weight: 400;
			font-size: 14px;
			padding: 10px;
		}


		/* ------ Media Start ------- */
		/* -------------------------- */

		@media (max-width: 768px)
		{
			.popup_form
			{
				width: 85%;
				padding: 100px 10px 10px;
				flex-direction: column;
			}

			.form-head
			{
				width: 100%;
			}

			.form-head h2
			{
				font-size: 20px;
				font-weight: 600;
				padding: 0 30px;
			}

			.popup_form .info_img
			{
				display: none;
			}

			.form_info
			{
				width: 100%;
				padding: 0 10px;
			}

			.formClose
			{
				top: 5px;
				right: 5px;
			}

			.input_info
			{
				width: 100%;
				padding: 0 10px;
				margin-bottom: 0px;
			}

			.input_info img
			{
				width: 16px;
				height: auto;
			}

			.input_info input
			{
				font-size: 14px;
				margin-right: 14px;
			}

			.input_info .fa-circle-exclamation, .fa-circle-check
			{
				font-size: 14px;
			}

			.info_btn
			{
				margin: 0 auto;
				margin-top: 10px;
			}

			textarea
			{
				width: 100%;
				height: 60px;
				margin-top: 10px;
				border: 1.5px solid black;
				border-radius: 4px;
				font-weight: 400;
				font-size: 14px;
				padding: 10px;
			}


		}