/*!**********************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js!./components/pricetable/src/pricetable.scss ***!
  \**********************************************************************************************************************************************************************************************************/
section {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
section .heading .subtitle {
  opacity: 0;
  transform: translate(0, -20px);
  transition: all 0.6s ease-out 0.3s;
}
section .heading .title {
  opacity: 0;
  transform: translate(0, -20px);
  transition: all 0.6s ease-out 0.5s;
}
section.h.v {
  opacity: 1;
}
section.h.v .subtitle,
section.h.v .title {
  opacity: 1;
  transform: translate(0, 0);
}

.price.count2 .price__table {
  max-width: var(--container-xs);
  margin-inline: auto;
}
.price__table {
  display: flex;
  gap: 4rem;
}
@media only screen and (max-width: 767px) {
  .price__table {
    flex-direction: column;
  }
}
.price__item {
  border: 1px solid var(--border);
  border-radius: var(--border-radius-s);
  background: var(--white);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.price__item-top, .price__item-middle, .price__item-bottom {
  display: flex;
}
.price__item-top {
  align-items: center;
  justify-content: space-between;
}
.price__item-middle {
  flex-direction: column;
  gap: 1rem;
}
.price__item-bottom {
  align-items: flex-end;
  flex: 1;
}
.price__item-icon {
  --icon-size: 5rem;
  background: var(--beige);
  border-radius: var(--border-radius-xxs);
  height: 5rem;
  width: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.price__item-icon img {
  width: auto;
  height: 1.6rem;
}
.price__item-amount {
  font-size: 2.8rem;
  font-weight: bold;
  display: flex;
  gap: 1rem;
  align-items: flex-end;
}
.price__item-amount span {
  font-size: 1.6rem;
  font-weight: normal;
  padding-bottom: 0.5rem;
}
.price__item-subtitle {
  color: var(--themecolor3);
}
.price__item ul > li {
  position: relative;
  padding-left: 2.5rem;
  line-height: 1.7;
}
.price__item ul > li::before {
  content: "";
  position: absolute;
  border-radius: 100%;
  background: var(--textcolor);
  width: 0.6rem;
  height: 0.6rem;
  left: 1rem;
  top: 1ch;
}
.price__item nav {
  width: 100%;
}
.price__item nav a.more {
  width: 100%;
  text-align: center;
}

/*# sourceMappingURL=pricetable.css.map*/