/*******************
COMMON
*******************/
	.js-show-chprgrm {
		width: 100%;
		border: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		cursor: pointer;
	}
	.js-show-chprgrm:hover {
		filter: saturate(1.25);
	}
	.js-show-chprgrm:focus {
		border: none;
		outline: none;
	}


	.chprgrm {
		margin: 30px 0 50px;
		font-size: 16px;
		font-weight: 400;
		text-decoration: none;
		transition: .2s;
	}

	.chprgrm__b {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		min-height: 120px;
		padding: 32px 24px;
		border-radius: 4px 4px 0 0;
		background: #244CC8 url('/assets/upload/v5/b/chprgrm_sm.png') no-repeat center;
		background-size: cover;
		color: #fff;
		transition: .2s;
	}

	.chprgrm__caption {
		display: block;
		margin: 0 0 12px;
		font-size: 24px;
		font-weight: bold;
		line-height: 1.2;
	}
	.chprgrm__caption_top {
		margin: 0;
		text-align: center;
	}

	.chprgrm__btn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		height: 55px;
		width: 100%;
	  padding: 12px 24px;
	  border: none;
	  border-radius: 4px;
	  background: #f85969;
	  font-size: 16px;
	  font-weight: 700;
	  color: #fff;
	  transition: .2s;
	}

	.js-show-chprgrm .chprgrm__btn {
		max-width: 190px;
		margin: 32px 0 0;
	}

	.chprgrm__inner {
		padding: 26px 12px;
		background: #fff;
		border-radius: 0 0 10px 10px;
	}


	.chprgrm__programms {
		padding: 10px 0 38px;
	}
	.chprgrm__programms .programs__card {
		border: 1px solid #CFD1DF;
	}



/*******************
576
*******************/
	@media (min-width: 576px) {
		.chprgrm__b {
			background-image: url('/assets/upload/v5/b/chprgrm_md.png');
		}
	}



/*******************
768
*******************/
	@media (min-width: 768px) {
		.chprgrm {
			font-size: 18px;
		}

		.chprgrm__b {
			background-image: url('/assets/upload/v5/b/chprgrm_lg.png');
			padding: 50px 24px;
		}

		.chprgrm__caption {
			font-size: 32px;
		}

		.chprgrm__inner {
			padding: 40px;
		}
	}



/*******************
992
*******************/
	@media (min-width: 992px) {
		.chprgrm__b {
			min-height: 144px;
		}

		.chprgrm__caption {
			font-size: 40px;
		}

		.chprgrm__inner {
			padding: 56px 64px 50px;
		}
	}




/*******************
QUESTIONS
*******************/
	.chprgrm__slide {
		display: none;
		position: relative;
		margin: 0 0 0 20px;
		padding: 0 0 16px 32px;
		border-left: 1px solid transparent;
	}
	.chprgrm__slide_completed {
		border-left-color: #244CC8;
	}
	.chprgrm__slide:last-child {
		border-left-color: transparent;
	}

	.chprgrm__question {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		min-height: 2em;
		font-size: 18px;
		font-weight: 700;
		line-height: 1.25;
	}

	.chprgrm__answer {
		display: block;
		margin: 12px 0;
	}

	.chprgrm__answer-input {
		position: absolute;
		z-index: -1;
		opacity: 0;
	}

	.chprgrm__answer-text {
		position: relative;
		display: block;
		padding: 0 0 0 32px;
		cursor: pointer;
	}
	.chprgrm__answer-text:before {
		position: absolute;
		left: 0;
		top: 0;
		display: block;
		width: 20px;
		height: 20px;
		border: 1px solid #CFD1DF;
		box-sizing: border-box;
		content: '';
		transition: background-color, border .15s;
	}
	.chprgrm__answer-text:hover:before {
		border-color: #244CC8;
	}
	[type="checkbox"] ~ .chprgrm__answer-text:before {
		border-radius: 4px;
	}
	[type="checkbox"]:checked ~ .chprgrm__answer-text:before {
		border-color: #244CC8;
		background: #244CC8 url('/assets/upload/v5/_icons/check_white.svg') no-repeat center;
	}
	[type="radio"] ~ .chprgrm__answer-text:before {
		border-radius: 50%;
	}
	[type="radio"]:checked ~ .chprgrm__answer-text:before {
		border: 5px solid #244CC8;
	}

	.chprgrm__answer-input:disabled ~ .chprgrm__answer-text {
		cursor: default;
		opacity: .25;
	}
	.chprgrm__answer-input:disabled ~ .chprgrm__answer-text:hover:before {
		border-color: #CFD1DF;
	}

	.chprgrm__counter {
		position: absolute;
		left: -21px;
		top: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		width: 38px;
		height: 38px;
		border-radius: 50%;
		border: 1px solid #CFD1DF;
		background: #fff;
		font-size: 18px;
		font-weight: 400;
		text-decoration: none;
		opacity: 1;
		transition: .2s .2s;
	}
	.chprgrm__slide_completed .chprgrm__counter {
		border-color: #244CC8;
		transition-delay: 0s;
	}

	.chprgrm__counter-current {
		font-weight: 700;
		text-decoration: none;
	}

	.chprgrm__counter-summ {
		line-height: 1;
		text-decoration: none;
		color: #CFD1DF;
	}
	.chprgrm__counter-summ:before {
		content: '/';
	}



/*******************
576
*******************/
	@media (min-width: 576px) {
		.chprgrm__answers {
			display: -ms-grid;
			display: grid;
			-ms-grid-columns: 1fr 1fr;
			grid-template-columns: 1fr 1fr;
		}

		.chprgrm__answers_inline {
			display: block;
		}

		.chprgrm__answers_inline .chprgrm__answer {
			display: inline-block;
			margin-right: 32px;
		}
	}



/*******************
768
*******************/
	@media (min-width: 768px) {
		.chprgrm__slide {
			margin: 0 0 0 30px;
    	padding: 0 0 18px 72px;
		}

		.chprgrm__question {
			min-height: 0;
			padding: 16px 0 10px;
			font-size: 28px;
		}

		.chprgrm__answer-text {
			padding: 0 0 0 36px;
		}
		.chprgrm__answer-text:before {
			width: 24px;
			height: 24px;
		}
		.chprgrm__counter {
			left: -32px;
			width: 64px;
    	height: 64px;
			font-size: 28px;
		}
	}



/*******************
992
*******************/
	@media (min-width: 992px) {
		.chprgrm__slide {
			margin: 0 0 0 36px;
			padding: 0 0 22px 135px;
		}

		.chprgrm__question {
			padding: 16px 0;
			font-size: 32px;
		}

		.chprgrm__answers {
			-ms-grid-columns: 1fr 1fr 1fr;
			grid-template-columns: 1fr 1fr 1fr;
		}

		.chprgrm__counter {
			left: -36px;
			width: 72px;
    	height: 72px;
		}
	}




/**********************
RESULTS
**********************/
	.chprgrm__result {
		display: none;
		border-top: 1px solid #CFD1DF;
	}

	.chprgrm__result .chprgrm__caption {
		color: #244CC8;
	}



/*******************
992
*******************/
	@media (min-width: 992px) {
		.chprgrm__rogramms {
			display: -ms-grid;
			display: grid;
			-ms-grid-columns: 1fr 20px 1fr;
			grid-template-columns: 1fr 1fr;
			grid-gap: 0 20px;
		}
	}





/**********************
BOTTOM
**********************/
	.chprgrm__bottom {
		padding: 28px 0 0;
		border-top: 1px solid #CFD1DF;
	}

	.chprgrm__msg {
		margin: 0 0 28px;
		text-align: center;
	}
	.chprgrm__msg_success {
		display: none;
	}

	.chprgrm__description {
		display: block;
	}
	.chprgrm__description br {
		display: none;
	}

	.chprgrm__phones {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin: 22px 0;
	}

	.block-chprgrm__phone {
		display: inline-block;
		margin: 6px 0;
		font-size: 18px;
		text-decoration: none;
		color: inherit;
	}




/*******************
576
*******************/
	@media (min-width: 576px) {
		.chprgrm__feedback {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-ms-flex-wrap: wrap;
			flex-wrap: wrap;
		}

		.js-show-chprgrm__form {
			max-width: 160px;
		}

		.chprgrm__phones {
			-webkit-box-orient: horizontal;
			-webkit-box-direction: normal;
			-ms-flex-direction: row;
			flex-direction: row;
			margin: 0;
			padding: 0;
		}

		.chprgrm__form + .chprgrm__phones {
			-webkit-box-pack: center;
			-ms-flex-pack: center;
			justify-content: center;
			width: 100%;
			padding: 0;
		}

		.block-chprgrm__phone {
			margin: 0 0 0 30px;
		}

		.chprgrm__form + .chprgrm__phones .block-chprgrm__phone {
			margin: 0 20px;
		}
	}



/*******************
768
*******************/
	@media (min-width: 768px) {
		.chprgrm__bottom {
			padding: 34px 0 0;
		}

		.chprgrm__msg {
			margin: 0 0 38px;
			text-align: left;
		}

		.chprgrm__feedback {
			-ms-flex-wrap: nowrap;
			flex-wrap: nowrap;
		}

		.chprgrm__phones {
			-ms-flex-wrap: wrap;
			flex-wrap: wrap;
			-webkit-box-pack: start;
			-ms-flex-pack: start;
			justify-content: flex-start;
			padding: 0 0 0 8px;
		}
		.chprgrm__form + .chprgrm__phones {
			-ms-flex-item-align: start;
			align-self: flex-start;
			width: auto;
		}

		.block-chprgrm__phone {
			margin: 0 0 0 40px;
			font-size: 20px;
		}
		.chprgrm__form + .chprgrm__phones .block-chprgrm__phone {
			margin: 0 0 12px;
		}



	}




/*******************
992
*******************/
	@media (min-width: 992px) {
		.chprgrm__phones,
		.chprgrm__form + .chprgrm__phones {
			-ms-flex-wrap: wrap;
			flex-wrap: wrap;
			-webkit-box-pack: start;
			-ms-flex-pack: start;
			justify-content: flex-start;
			padding: 0 0 0 8px;
		}

		.chprgrm__form + .chprgrm__phones .block-chprgrm__phone {
			margin: 0 0 12px 40px;
		}
	}



/**********************
FORM
**********************/
	.chprgrm__form {
		display: none;
		width: 100%;
		margin: 0;
	}

	.chprgrm__form-item {
		display: block;
		margin: 0 0 12px;
	}

	.chprgrm__form-input {
		width: 100%;
		padding: 14px 20px;
		border: 1px solid #CFD1DF;
		border-radius: 4px;
		background: #fff;
		font-size: 16px;
		line-height: 1.2;
	}
	.chprgrm__form-input_textarea {
		height: 168px;
		resize: vertical;
		font-family: inherit;
	}

	.chprgrm .capture-form__privacy {
		position: relative;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		padding: 6px 0 20px;
	}
	.chprgrm .capture-form__privacy-checkbox {
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
	}
	.chprgrm .capture-form__privacy-checkbox,
	.chprgrm .capture-form__privacy-ico {
		-webkit-box-flex: 0;
		-ms-flex: none;
		flex: none;
		display: block;
		width: 20px;
		height: 20px;
		border: 1px solid #CFD1DF;
		border-radius: 4px;
		transition: .15s;
	}
	.chprgrm :checked ~ .capture-form__privacy-ico {
		border-color: #244CC8;
		background: #244CC8 url('/assets/upload/v5/_icons/check_white.svg') no-repeat center;
	}
	.chprgrm .capture-form__privacy-text {
		padding: 0 0 0 16px;
		font-size: 12px;
		line-height: 1.3;
	}
	.chprgrm .capture-form__privacy-text a {
		color: inherit;
		text-decoration: underline;
	}


	.chprgrm__form-success {
		padding: 28px 16px;
		border-radius: 4px;
		background: #F3F6FD;
		text-align: center;
	}
	.chprgrm__form-success h3 {
		display: block;
		margin: 0 0 12px;
		font-size: 18px;
		line-height: 1.2;
	}
	.chprgrm__form-success p {
		font-size: 18px;
		line-height: 1.2;
	}



/*******************
576
*******************/
	@media (min-width: 576px) {
		.chprgrm__form {
			margin: 0 0 50px;
		}
	}


/*******************
768
*******************/
	@media (min-width: 768px) {
		.chprgrm__form-item {
	    margin: 0 0 20px;
		}

		.chprgrm__form-row {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
		}
		.chprgrm__form-row .chprgrm__form-item {
			width: 100%;
			margin-left: 20px;
		}
		.chprgrm__form-row .chprgrm__form-item:first-child {
			margin-left: 0;
		}

		.chprgrm__form-input {
			padding: 16px 20px;
			font-size: 18px;
		}

		.chprgrm__form-input_textarea {
			height: 164px;
		}

		.chprgrm .capture-form__privacy {
			padding: 2px 0 25px;
		}
	}




/*******************
992
*******************/
	@media (min-width: 992px) {
		.chprgrm__form {
			flex: none;
			max-width: 582px;
		}
	}