.prices {
  margin-bottom: 75px;
  position: relative;
}

.prices__inner-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
}

.arrow {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
  cursor: pointer;
  color: #fff;
  font-size: 84px;
}

.arrow-next {
  right: 7%;
  top: 45%;
}

.arrow-back {
  left: 7%;
  top: 45%;
}

.slider-prices {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}

.slide-track-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.slide-price {
  padding: 35px 45px 75px 45px;
  background: #261A33;
  border: 2px solid #4D3366;
  border-radius: 12px;
  min-width: 32%;
  margin-right: 20px;
  text-align: center;
}
.slide-price:last-child {
  margin-right: 0;
}

.prices__items {
  position: relative;
  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;
}

.prices__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.prices__item-header .prices__item-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.prices__item-header .prices__item-info {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 12px;
  background: #801AE5;
  font-weight: 600;
  font-size: 12px;
  color: #fff;
}

.prices__item-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
}
.prices__item-price .prices__item-price-value {
  font-weight: 900;
  font-size: 36px;
  color: #fff;
}
.prices__item-price .prices__item-price-period {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.prices__item-button {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 20px 55px;
  background: #362447;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}
.prices__item-button:hover {
  color: #fff;
  background: #801AE5;
  scale: 1;
}

.prices__item-advantages {
  margin-top: 25px;
}
.prices__item-advantages .prices__item-advantages__item {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.prices__item-advantages .prices__item-advantages__item .prices__item-advantages-icon {
  margin-right: 10px;
}
.prices__item-advantages .prices__item-advantages__item .prices__item-advantages-text {
  color: #fff;
  font-weight: 400;
  font-size: 13px;
}

.not-active-price {
  position: absolute;
  margin-left: 10000%;
}