.breadcrumbs {
  margin-bottom: 24px;
  opacity: 0;
  animation: breadcrumbs-animation .4s forwards;
  animation-delay: .25s;
  position: relative;
}

.breadcrumbs__back {
  position: relative;
  top: 2px;
}

@keyframes breadcrumbs-animation {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.breadcrumbs__main-block {
  margin-top: 24px;
  border-radius: 20px;
  border: 1px solid  #82A0EF;
  overflow: hidden;
}

.form__filter-btn-block {
  display: flex;
  align-items: start;
  margin-bottom: 16px;
}

.form__checkbox-text {
  font-size: 14px;
  line-height: 14px;
}

.form__checkbox-text a {
  font-size: 14px;
  line-height: 14px;
}

.custom-checkbox {
  margin-right: 5px;
}

.breadcrumbs__chips-block {
  padding: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumbs__chip {
  border-radius: 100px;
  border: 1px solid #DBDFFF;
  display: inline-block;
  padding: 6px 12px;
}

.disable-breadcrumbs {
  opacity: 0.65;
  position: relative;
  z-index: -1;
}

.breadcrumbs__chip-icon {
  font-size: 18px;
  line-height: 22px;
  padding: 11px 17px 9px 17px;
  border-radius: 50%;
  background-color: #82A0EF;
  margin-right: 11px;
  transition: background-color .2s linear;
}

.breadcrumbs__chip-icon span {
  color: #FFF;
}

.breadcrumbs__chip-icon svg {
  display: none;
}

.breadcrumbs__chip-content {
  display: flex;
  align-items: center;
  transition: opacity .2s linear;
}

.breadcrumbs__dashed-line {
  width: 9%;
  border-top: 1px dashed #DBDFFF;
}

.breadcrumbs__loading-bar {
  width: 10%;
  height: 8px;
  flex-shrink: 0;
  background-color: #D946D1;
  border-radius: 100px;
  transition: width .8s ease-in-out;
}

.loading-bar-middle {
  width: 55%;
}

.loading-bar-penultimate {
  width: 78%;
}

.loading-bar-last {
  width: 100%;
}

.form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 120px;
  gap: 10px;
  transition: opacity .3s linear;
  opacity: 1;
}

.active-form {
  display: grid;
}

.form-success {
  display: none;
}

.form__picture {
  padding: 140px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F3F5FC;
  border-radius: 30px;
  opacity: 0;
  animation: picture-animation .4s forwards;
  animation-delay: .5s;
}

@keyframes picture-animation {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.form__success-header {
  max-width: 372px;
  text-align: center;
}

.form__picture-success {
  padding: 72px 0;
  display: flex;
  flex-direction: column;
}

.form__btn-success {
  max-width: 250px;
}

.form__info {
  border: 1px solid #DBDFFF;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: info-animation .4s forwards;
  animation-delay: .5s;
}

.breadcrumbs__link-back {
  border: none;
  background: none;
}

@keyframes info-animation {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.form__info-block {
  max-width: 460px;
  width: 100%;
  padding: 47px 16px;
  padding-bottom: 32px;
}

.form__reset-text {
  width: 100%;
  text-align: center;
  font-weight: 700;
  color: #000150;
}

.form__info-block-middle {
  max-width: 608px;
  width: 100%;
  padding: 47px 16px;
  padding-bottom: 32px;
}

.form__header {
  text-align: center;
  margin-bottom: 39px;
}

.form__input {
  padding: 11px;
  border: 1px solid #F3F5FC;
  width: 100%;
  background: #F3F5FC;
  color: #353535;
  border: none;
  border-radius: 8px;
  margin-bottom: 4px;
  transition: border .3s linear;
}

.form__textarea {
  min-height: 111px;
}

.choices:focus {
  outline: none;
}

.is-focused .choices__inner, .is-open .choices__inner {
  border: 1px solid #F3F5FC;
  border-radius: 8px;
}

.choices {
  margin-bottom: 4px;
}

.choices__placeholder {
  opacity: 1;
}

.choices__list--dropdown, .choices__list[aria-expanded] {
  background-color: #F3F5FC;
  border: 1px solid #dbe3ff !important;
  border-radius: 8px;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #edf1ff;
}

.choices__inner {
  border-radius: 8px;
  border: 1px solid #F3F5FC;
  background-color: #F3F5FC;
  color: #353535 !important;
}

.form__textarea-block {
  position: relative;
}

.form__counter {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 12px;
line-height: 18px;
}

.error-message .form__input {
  border: 1px solid #CA3227;
}

.error-message .choices__inner {
  border: 1px solid #CA3227;
}

.error-message .form_error-message {
  opacity: 1;
}

.form__title {
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 18px;
}

.form__btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.form__btn-about-company {
  max-width: 608px
}

.form_error-message {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
  color: #CA3227;
  margin-bottom: 4px;
  opacity: 0;
  transition: opacity .3s linear;
}

.chip-icon-success {
  background-color: #D946D1;
  padding: 9px;
}

.chip-icon-success span {
  display: none;
}

.chip-icon-success svg {
  display: block;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.input-file {
  position: relative;
  width: 100%;
}

.input-file-btn {
  position: relative;
  cursor: pointer;
  text-align: center;
  border-radius: 8px;
  background-color: #F3F5FC;
  line-height: 22px;
  padding: 10px;
  color: #808080;
  border: none;
  margin: 0;
  transition: background-color 0.2s;
  text-align: left;
  font-size: 16px;
  line-height: 20px;
  transition: color .2s linear;
}

.input-file-btn:hover {
  color: #353535;
}

.form-second-block .choices__inner .choices__list .choices__item {
  color: #808080 !important;
}

.input-file-btn svg {
  position: relative;
  bottom: 2px;
}

.input-file-btn path {
  stroke: #808080;
  transition: stroke .2s linear;
}

.input-file-btn:hover path {
  stroke: #353535;
}

.input-file input[type=file] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}

.form__companies {
  margin-bottom: 32px;
}

.form__company {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.form__company-btn {
  border: none;
  background: none;
  cursor: pointer;
}

.form__company-btn path{
  transition: stroke .2s linear;
}

.form__company-btn:hover path{
  stroke: #CA3227;
}

.form__forget-password {
  display: flex;
  justify-content: center;
}

.form__link-forget-password {
  color: #000150;
  transition: color .1s linear;
}

.form__link-forget-password:hover {
  color: #7273B4;
}

.form__link-forget-password:active {
  color: #030573;
}

.form__input-password {
  position: relative;
}

.form__input-password-btn {
  position: absolute;
  right: 3px;
  top: 7px;
  background: none;
  border: none;
}

.form__input-password-btn path {
  transition: stroke 0.1s linear;
}

.form__input-password-btn:hover path {
  stroke: #7273B4;
}

.eye {
  display: none;
}

.form__login-services {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.form__login-services a {
  margin-right: 12px;
}

@media (max-width: 1090px) {
  .breadcrumbs__title {
    display: none;
  }
  
  .breadcrumbs__chip-icon {
    margin-right: 0;
  }

  .breadcrumbs__chip {
    padding: 12px;
  }

  .form {
    display: block;
    padding-bottom: 68px;
    gap: 20px;
  }

  .form__picture {
    display: none;
  }

  .form__picture-success {
    display: flex;
  }

  .form__header {
    font-size: 32px;
    line-height: 36px;
  }

  .form__row {
    display: block;
  }

  .form__btn {
    margin-bottom: 33px;
  }

  .form__success-header {
    font-size: 32px;
    line-height: 36px;
  }
}