.contract-page {
  margin-top: 280px;
}
@media(max-width: 991px){
	.contract-page {
	  margin-top: 150px;
	}
}
.contract-page .main-heading {
  margin-bottom: 65px;
}

.contract-steps {
  width: 100%;
}
.contract-steps .step-dotes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 50px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .contract-steps .step-dotes {
    padding: 0;
  }
}
.contract-steps .step-dotes:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 1px;
  width: calc(100% - 100px);
  background-color: #F6F6F4;
}
@media (max-width: 768px) {
  .contract-steps .step-dotes:after {
    width: 100%;
  }
}
.contract-steps .step-dotes:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  height: 4px;
  width: 0;
  transition: 0.4s;
  background-color: #F6F6F4;
  display: none;
}
@media (max-width: 768px) {
  .contract-steps .step-dotes:before {
    left: 0;
  }
}
.contract-steps .step-dotes.show:before {
  width: calc(50% - 50px);
  display: block;
}
@media (max-width: 768px) {
  .contract-steps .step-dotes.show:before {
    width: 50%;
  }
}
.contract-steps .step-dotes.show-full:before {
  width: calc(100% - 100px);
  display: block;
}
@media (max-width: 768px) {
  .contract-steps .step-dotes.show-full:before {
    width: 100%;
  }
}
.contract-steps .step-dotes span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #F6F6F4;
}
.contract-steps .step-dotes span.active {
  width: 20px;
  height: 20px;
}
.contract-steps .step-text {
  display: flex;
  justify-content: space-between;
}
.contract-steps .step-text span {
  font-family: "MensealRegular";
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #F6F6F4;
}
@media (max-width: 768px) {
  .contract-steps .step-text span {
    font-size: 10px;
    line-height: 13px;
  }
}

.contract-wrap {
  display: none;
}
.contract-wrap.wrap1 {
  display: block;
}
.contract-wrap__form {
  border-radius: 10px;
  border: 1px solid #F6F6F4;
  padding: 70px 60px;
}
@media (max-width: 768px) {
  .contract-wrap__form {
    padding: 50px 21px;
  }
}
.contract-wrap__title {
  font-weight: 500;
  font-size: 80px;
  line-height: 60px;
  color: #F6F6F4;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .contract-wrap__title {
    text-align: start;
    font-size: 70px;
    line-height: 60px;
  }
}
.contract-wrap .title-contact-form {
  margin-bottom: 35px;
  color: #F6F6F4;
  font-family: "MensealRegular";
  font-size: 400;
  font-size: 20px;
  line-height: 27.8px;
}
@media (max-width: 768px) {
  .contract-wrap .title-contact-form {
    text-align: center;
    margin-bottom: 20px;
  }
}
.contract-wrap .descr-contact-form {
  font-weight: 400;
  font-family: "MensealRegular";
  font-size: 16px;
  line-height: 22.24px;
  color: #F6F6F4;
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .contract-wrap .descr-contact-form {
    margin-bottom: 20px;
  }
}
.contract-wrap .input {
  margin-bottom: 35px;
  width: 100%;
}
.contract-wrap .input input {
  border: 1px solid #F6F6F4;
  border-radius: 10px;
  height: 73px;
  padding: 0 23px;
  font-family: "MensealRegular";
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #F6F6F4;
  background-color: transparent;
  width: 100%;
}
.contract-wrap .input input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #F6F6F4;
  opacity: 1;
}
.contract-wrap .input input.phone::placeholder {
  opacity: 0.3;
}
.contract-wrap .col-wrap {
  margin-bottom: 35px;
}
.contract-wrap .col-wrap__title {
  font-family: "MensealRegular";
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #F6F6F4;
  margin-bottom: 35px;
  padding-left: 25px;
  text-transform: uppercase;
}
.contract-wrap .col-wrap select {
  width: 100%;
  border: 1px solid #F6F6F4;
  border-radius: 10px;
  height: 73px;
  padding: 0 23px;
  font-family: "MensealRegular";
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #F6F6F4;
  background-color: transparent;
  width: 100%;
}
.contract-wrap .col-wrap select::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #F6F6F4;
  opacity: 1;
}
.contract-wrap .col-wrap .select {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contract-wrap .col-wrap .select .error {
  order: 2;
}
.contract-wrap .col-wrap .select .select2-container {
  order: 1;
}
.contract-wrap .col-wrap .col3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}
@media (max-width: 768px) {
  .contract-wrap .col-wrap .col3 {
    grid-template-columns: repeat(1, 1fr);
    gap: unset;
    row-gap: 20px;
  }
}
.contract-wrap .col-wrap .col3 .select {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contract-wrap .col-wrap .col3 .select .error {
  order: 2;
}
.contract-wrap .col-wrap .col3 .select .select2-container {
  order: 1;
}
.contract-wrap .contract-label {
  border-radius: 10px;
  background-color: #F6F6F4;
  padding: 22px 25px;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .contract-wrap .contract-label {
    flex-direction: column;
    align-items: flex-start;
  }
}
.contract-wrap .contract-label__info-course {
  font-family: "MensealRegular";
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #292929;
}
@media (max-width: 768px) {
  .contract-wrap .contract-label__info-course {
    margin-bottom: 43px;
  }
}
.contract-wrap .contract-label__info-course .line {
  margin-bottom: 30px;
}
@media(max-width: 768px){
	.contract-wrap .contract-label__info-course .line{
		flex-direction: column;
		align-items: flex-start;
	}
}
.contract-wrap .contract-label__info-course .line__title {
  text-transform: uppercase;
  margin-right: 5px;
}
.contract-wrap .contract-label__info-course .line__descr {
  text-transform: none;
}
.contract-wrap .contract-label__info-course .line:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .contract-wrap .contract-label__info-course .line:last-of-type {
    flex-direction: column;
    align-items: flex-start;
  }
}
.contract-wrap .contract-label__price-course {
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
  color: #292929;
}
.contract-wrap .custom-radio {
  margin-bottom: 35px;
}
/* .contract-wrap .custom-radio:last-of-type {
  margin-bottom: 70px;
} */
@media(max-width: 768px){
	.custom-radio.confirm .custom-radio__checkmark{
		top: 15px;
	}
}

.contract-wrap .contract-text {
  color: #F6F6F4;
  font-family: "MensealRegular";
  font-weight: 400;
  font-size: 16px;
  line-height: 22.24px;
  max-height: 600px;
  overflow: auto;
  margin-bottom: 70px;
  padding-right: 30px;
}
.contract-wrap .contract-text h2 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-size: 20px;
}
.contract-wrap .contract-text p {
  margin-bottom: 20px;
}
.contract-wrap .selected-payment-methods {
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .contract-wrap .selected-payment-methods {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }
}
.contract-wrap .selected-payment-methods .payment-method-row {
  border: 2px solid #F6F6F4;
  border-radius: 10px;
  padding: 22px 70px 22px 22px;
	display: flex;
  flex-direction: column;
  justify-content: space-between;
	cursor: pointer;
}
@media (max-width: 768px) {
  .contract-wrap .selected-payment-methods .payment-method-row {
    padding: 22px;
  }
}
.contract-wrap .selected-payment-methods .payment-method-row .custom-radio__text {
  padding-left: 25px;
}
.contract-wrap .selected-payment-methods .payment-method-row .custom-radio__checkmark {
  left: 0;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
.contract-wrap .selected-payment-methods .payment-method-row .custom-radio:hover input ~ .custom-radio__checkmark {
  background-color: #33EA9F;
}
.contract-wrap .selected-payment-methods .payment-method-row .custom-radio input:checked ~ .custom-radio__checkmark:after {
  display: none;
}
.contract-wrap .selected-payment-methods .payment-method-row .custom-radio input:checked ~ .custom-radio__checkmark {
  background-color: #33EA9F;
  outline: 1px solid #33EA9F;
  border: 1px solid #292929;
}
.contract-wrap .selected-payment-methods .payment-method-row p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22.24px;
  color: #F6F6F4;
  font-family: "MensealRegular";
	margin-top: 10px;
}
@media(max-width: 768px){
	.contract-wrap .selected-payment-methods .payment-method-row p {
		margin-top: 25px;
	}
}
.contract-wrap .payment-by-card-wrap {
  display: none;
  margin-bottom: 0;
}
.payment-part-right .payment-method-row .custom-radio{
	margin-bottom: 0;
	cursor: pointer;
}
.payment-part-right .payment-method-row:first-of-type{
	margin-bottom: 30px;
}
@media(max-width: 768px){
	.payment-part-right .payment-method-row:first-of-type{
		margin-bottom: 20px;
	}
}
.payment-part-right .payment-method-row .custom-radio:last-of-type{
	margin-bottom: 0;
}
.payment-part-right{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.icon-pay-method{
	width: 50px;
	height: 20px;
	margin-left: 25px;
}
.icon-pay-method.mastercard{
	height: 35px;
	margin-left: 15px;
}
.icon-pay-method.visa{
	margin-left: 15px;
}

.simplebar-scrollbar::before {
  background: #F6F6F4 !important;
}

.custom-radio {
  display: flex;
  align-items: center;
  position: relative;
}
.custom-radio .error {
  position: absolute;
  top: 100%;
}

.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-radio__checkmark {
  position: absolute;
  top: 50%;
  left: 14px;
  height: 20px;
  width: 20px;
  border: 2px solid #F6F6F4;
  background-color: transparent;
  transform: translateY(-50%);
  cursor: pointer;
}

.custom-radio:hover input ~ .custom-radio__checkmark {
  background-color: #ccc;
}

.custom-radio__checkmark:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 7px;
  background-image: url(../../../assets/images/icons/done.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: none;
}

.custom-radio input:checked ~ .custom-radio__checkmark:after {
  display: block;
}

.custom-radio__text {
  font-family: "MensealRegular";
  padding-left: 50px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #F6F6F4;
}
.custom-radio__text a {
  color: #E9F62A;
	margin-left: 5px;
}

.select2-container--default .select2-selection--single {
  background-color: transparent !important;
	border: unset!important;
/*   border: 2px solid #F6F6F4 !important;
  border-radius: 10px !important; */
}
.select2-container--default .select2-results__option--disabled {
  color: #999 !important;
}

.select2-container .select2-selection--single {
/*   height: 73px !important; */
/* 	height: 100%!important; */
  display: flex !important;
  align-items: center !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-family: "MensealRegular";
  font-weight: 400 !important;
  font-size: 16px !important;
  color: #F6F6F4 !important;
  line-height: 22.24px !important;
}
.select.payment .select2-container--default .select2-selection--single .select2-selection__rendered{
	font-size: 13px!important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50% !important;
  transform: translateY(-50%) !important;
  right: 22px !important;
  width: 30px !important;
  height: 30px !important;
  background-image: url(../../../assets/images/icons/arrow_in_select.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none !important;
}

.select2-container {
  width: 100% !important;
/* 	height: 73px!important; */
		padding: 22px 0;
	border: 2px solid #F6F6F4 !important;
  border-radius: 10px !important;
}
.select2-container.select2-container--open{
/* 	border: unset!important; */
	width: auto!important;
}
.select2-container--open .select2-dropdown {
  left: -2px!important;
}

/* .select2-search--dropdown {
  display: none !important;
} */

.select2-dropdown {
  background-color: #292929;
  border: 2px solid #F6F6F4;
box-shadow: -1px 8px 9px rgb(0, 0, 0, 0.4);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #E9F62A !important;
  color: #292929 !important;
}

.select2-container--default .select2-results__option--selected {
  color: #292929 !important;
}

.select2-results__option {
  font-family: "MensealRegular";
  font-weight: 400 !important;
  font-size: 16px !important;
  color: #F6F6F4 !important;
  line-height: 22.24px !important;
}

.select2-container--open.select2-container--default .select2-selection--single {
  border-radius: 10px 10px 0 0 !important;
}

.select .error {
  order: 2;
}
.input-promocode{
	display: none;
}