.course-selection {
	padding: 80px 0;
}
.course-selection__container {
	max-width: 920px;
}
.course-selection__row {
	display: flex;	
	align-items: center;
	justify-content: space-between;
}
.course-selection__text {
	max-width: 460px;
}
.course-selection__text p {
	margin-bottom: 20px;
}
.course-selection__title {
	margin-bottom: 20px;
	font-size: 30px;
	font-family: Furore, sans-serif;
	font-style: normal;
	font-weight: 400;
	line-height: 40px;
	letter-spacing: 1.5px;
	color: rgba(220, 220, 240, 1);
}
.course-selection__form {
	max-width: 380px;
}
.course-selection .modal__form {
	gap: 10px;
}
.course-selection__form .modal__label {
	margin-bottom: 10px;
}
.course-selection__form .modal__input {
	padding: 20px 20px 18px;
	height: 60px;
}
.modal__text_type_abs {
	position: absolute;
	z-index: 9;
	top: 4px;
	left: 20px;
	font-size: 12px;
	line-height: 16px;
}
.course-selection .modal__text_checkbox {  
	font-size: 14px;
	line-height: 18px;
}
.course-selection .modal__text_marg {
	margin-bottom: 10px;
}
.course-selection .modal__label[for="agreement1"] {
	margin-bottom: 10px;
}
.course-selection .modal__btn {
	width: 100%;
	margin-top: 40px;
}
.course-selection .error, .course-selection .error-phone {
	position: absolute;
	font-size: 12px;
	color: rgb(220, 220, 240);
	bottom: 0;
	border-radius: 10px;
	background: rgba(150, 0, 255, 1);
	right: -170px;
	width: 150px;
	line-height: 16px;
	padding: 5px 10px;
	left: inherit;
}
.course-selection .error::before, 
.course-selection .error-phone::before {
	content:"";
	display: block;;
	width: 0; 
	height: 0;
	border-top: 7px solid transparent;
	border-right: 7px solid rgb(150, 0, 255);
	border-bottom: 7px solid transparent;
	position: absolute;
	left: -7px;
	top: calc(50% - 7px);
}
@media(max-width: 600px) {
	.course-selection__row {
		flex-wrap: wrap;
	}
	.course-selection__form,
	.course-selection__text {
		max-width: 100%;
		width: 100%;
	}
}