@charset "UTF-8";

/*Миксины*/

.shema {
  counter-reset: step;
}

.shema__item {
  padding-left: 112px;
  margin-bottom: 48px;
  position: relative;
}

.shema__item::before {
  content: counter(step);
  counter-increment: step 1;
  display: block;
  width: 64px;
  height: 64px;
  position: absolute;
  top: 0px;
  left: 0px;
  background: var(--blueDark, #263B72);
  color: var(--white, #FFF);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}

.shema__arrow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 100%;
  background: url(/local/templates/ulmc/img/icons/shema-arrow.svg) center bottom no-repeat;
}

.shema__arrow::before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  position: absolute;
  bottom: 0px;
  left: 31px;
  z-index: -1;
  background: var(--gray2, #7B8893);
}

.shema__arrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
  position: absolute;
  top: 64px;
  left: 0px;
  background: var(--white, #FFF);
}

.shema__text {
  margin-top: 36px;
  min-height: 50px;
}

@media (max-width: 680px) {
  .shema__item {
    margin-bottom: 36px;
    padding-left: 72px;
  }

  .shema__item::before {
    width: 48px;
    height: 48px;
  }

  .shema__arrow {
    width: 48px;
  }

  .shema__arrow::before {
    left: 23px;
  }

  .shema__arrow::after {
    top: 48px;
  }
}