.price-module {
  position: relative;
  width: 100%;
  padding: 0 $gutter;
  margin: 80px 0;

  @include sm {
    padding: 0 $gutter-mobile;
    margin: 50px 0;
  }

  &__wrapper {
    width: 100%;
    max-width: 1203px;
    margin: 0 auto;
  }

  &__container {
    width: calc(100% + 30px);
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin: 0 -15px;

    @include md {
      flex-direction: column;
      width: 100%;
      margin: 0;
    }

    &[data-items="3"] {
      padding-bottom: 40px;

      @include md {
        padding-bottom: 0;
      }

      .price-module__item {
        &:nth-child(1),
        &:nth-child(3) {
          position: relative;
          transform: translateY(40px);

          @include md {
            transform: translateY(0);
          }
        }
      }
    }
  }

  &__item {
    width: 100%;
    min-height: 360px;
    max-width: 401px;
    background-color: $background-blue;
    padding: 64px 32px;
    color: $primary-color;
    margin: 0 15px;

    @include md {
      max-width: 100%;
      margin: 0 0 30px;

      &:last-child {
        margin-bottom: 0;
      }
    }

    @include sm {
      padding: 40px 24px;
      min-height: 270px;
    }
  }

  &__title {
    margin: 0;
    text-align: center;
  }

  &__subtitle {
    font-size: 1.8rem;
    line-height: 2.4rem;
    font-weight: 700;
    color: $secondary-color;
    display: block;
    text-align: center;
    margin-top: 10px;

    @include sm {
      margin-top: 4px;
    }

    > * {
      margin: 0;
    }
  }

  &__list {
    margin-top: 40px;

    @include sm {
      margin-top: 16px;
    }

    ul {
      list-style: none;
      margin-left: 0;
      padding-left: 0;

      li {
        font-size: 1.6rem;
        letter-spacing: 0.02rem;
        line-height: 2rem;
        margin-top: 8px;
        padding-left: 32px;
        text-indent: -32px;

        &:before {
          content: "";
          width: 16px;
          height: 16px;
          mask-image: url(../img/svg/check-light-blue.svg);
          mask-repeat: no-repeat;
          mask-size: contain;
          background-color: $secondary-color;
          display: inline-flex;
          margin-right: 16px;
        }
      }
    }
  }
}
