.plans-table {
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}
.plans-table table {
  width: 100%;
  border-collapse: collapse;
}
.plans-table table:not(.no-bottom-line) {
  border-bottom: 4px solid #6cc;
}
@media (min-width: 992px) {
  .plans-table table.cols_3 th {
    width: 33.3333333333%;
  }
  .plans-table table.cols_3_short th {
    width: 37.5%;
  }
  .plans-table table.cols_3_short th:first-child {
    width: 25%;
  }
  .plans-table table.cols_4 th {
    width: 26.3333333333%;
  }
  .plans-table table.cols_4 th:first-child {
    width: 21% !important;
  }
  .plans-table table.cols_4_eq th {
    width: 25%;
  }
  .plans-table table.cols_5 th {
    width: 20%;
  }
}
.plans-table table thead tr th {
  vertical-align: top;
}
@media (min-width: 992px) {
  .plans-table table thead tr th {
    padding: 10px 15px;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .plans-table table tbody {
    display: table-row-group;
  }
}
.plans-table table tbody.is-active {
  display: table-row-group;
}
.plans-table table tbody.is-hidden {
  display: none !important;
}
.plans-table table tbody tr:first-child:not(.no-top-border) td:not([colspan]) {
  border-top: 4px solid #6cc;
}
.plans-table table tbody tr:nth-child(even) {
  background: #F6F6F6;
}
.plans-table table tbody tr td[colspan], .plans-table table tbody tr td.label-section {
  padding: 6px 15px;
  background-color: #6cc;
}
.plans-table table tbody tr td[colspan] span, .plans-table table tbody tr td.label-section span {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.plans-table table tbody tr td:not([colspan]) {
  padding: 10px 15px;
  line-height: 1.4;
}
.plans-table table tbody tr td:not([colspan]):not(:first-child) {
  text-align: center;
}
.plans-table table tbody tr td:not([colspan]):first-child > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.plans-table table tbody tr td.valign_top {
  vertical-align: top;
}
.plans-table table tbody tr.border-bottom-bold td:not([colspan]) {
  border-bottom-width: 4px;
}
.plans-table table tbody tr:last-child td {
  border-bottom: none;
}
.plans-table table tbody.text-left tr td {
  text-align: left !important;
}
.plans-table table tbody.contents-table tr td:nth-child(even) {
  background-color: #f2f2f2;
}
.plans-table table tbody.contents-table tr td:not([colspan]) {
  vertical-align: top;
  text-align: left;
}
.plans-table table tfoot td {
  padding: 12px;
  text-align: center;
}
.plans-table table ul.plan-options {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
.plans-table table ul.plan-options li {
  padding-left: 14px;
  display: flex;
  align-items: center;
  position: relative;
  line-height: 1.4;
}
.plans-table table ul.plan-options li:before {
  content: "";
  width: 4px;
  height: 4px;
  display: block;
  position: absolute;
  top: 9px;
  left: 0;
  background-color: #000;
  border-radius: 100%;
}
.plans-table table [area-info] {
  width: 13px;
  height: 13px;
  margin-left: 5px;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #A2A2A2 url("img/plan_q.svg") no-repeat center;
  background-size: 4px;
  border-radius: 100%;
  cursor: pointer;
  z-index: 10;
  transition: all 200ms;
}
.plans-table table [area-info]:hover {
  box-shadow: 0px 0px 5px 0 rgba(0, 0, 0, 0.15);
}
.plans-table table [area-info] span {
  min-width: 220px;
  padding: 8px 8px 30px;
  display: block;
  position: absolute;
  left: 50%;
  bottom: 100%;
  text-align: center;
  font-size: 13px;
  color: #fff;
  background: #b0b0b0;
  box-shadow: 0px 0px 30px 0 rgba(0, 0, 0, 0.2);
  transform: translate(-50%, 12px);
}
.plans-table table [area-info] span:after {
  content: "";
  width: 35px;
  height: 35px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 100%;
  left: 50%;
  background: #A2A2A2 url("img/plan_q.svg") no-repeat center;
  background-size: 12px;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  z-index: 15;
}
@media (min-width: 1200px) {
  .plans-table table [area-info] span {
    padding: 8px 35px 8px 13px;
    top: 50%;
    right: 50%;
    left: unset;
    bottom: unset;
    text-align: left;
    transform: translateY(-50%);
  }
  .plans-table table [area-info] span:after {
    top: 50%;
    left: 100%;
  }
}
.plans-table table [area-info].always-left span {
  padding: 8px 35px 8px 13px;
  top: 50%;
  right: 50%;
  left: unset;
  bottom: unset;
  text-align: left;
  transform: translateY(-50%);
}
.plans-table table [area-info].always-left span:after {
  top: 50%;
  left: 100%;
}
@media (max-width: 991px) {
  .plans-table table {
    display: block;
  }
  .plans-table table tbody,
  .plans-table table tfoot {
    display: none;
  }
  .plans-table table thead {
    display: block;
  }
  .plans-table table thead tr {
    display: flex;
    flex-direction: column;
    gap: 50px 0;
  }
  .plans-table table thead th, .plans-table table thead td {
    display: block;
  }
  .plans-table table thead th:first-child, .plans-table table thead td:first-child {
    display: none;
  }
}
.plans-table .plus:after,
.plans-table .minus:after {
  content: "";
  display: inline-block;
}
.plans-table .plus:after {
  width: 20px;
  height: 20px;
  background-color: #66CCCC;
  border-radius: 100%;
}
.plans-table .minus:after {
  width: 22px;
  height: 4px;
  background-color: #A2A2A2;
}
@media (min-width: 992px) {
  .plans-table .single-plan__thead th {
    height: 0;
    background: none !important;
  }
}
.plans-table .single-plan__thead th:not(.has-paddings) {
  padding: 0;
}
@media (min-width: 992px) {
  .plans-table .single-plan__thead th:not(.has-paddings) {
    padding-bottom: 5px;
  }
}
.plans-table .single-plan__thead-container {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 15px 15px 0 0;
}
@media (max-width: 991px) {
  .plans-table .single-plan__thead-container {
    height: auto !important;
  }
}
@media (min-width: 992px) {
  .plans-table .single-plan__thead-container {
    margin: 0 4px;
    padding: 15px;
    border-radius: 15px;
  }
}
@media (min-width: 992px) {
  .plans-table .single-plan__thead-container {
    margin: 0 4px;
    padding: 15px;
    border-radius: 15px;
  }
}
@media (min-width: 1200px) {
  .plans-table .single-plan__thead-container {
    padding: 24px;
    border-radius: 30px;
  }
}
.plans-table .single-plan__thead-container.image-holder {
  padding: 0 !important;
  justify-content: center;
  align-items: center;
}
.plans-table .single-plan__thead-container.image-holder img {
  max-width: 90%;
  max-height: 200px;
}
.plans-table .single-plan__header {
  --fz-name: 20px;
  padding: 10px;
  display: flex;
}
@media (min-width: 992px) {
  .plans-table .single-plan__header {
    padding: 20px;
    background: none;
  }
}
.plans-table .single-plan__header-content {
  max-width: 330px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  display: flex;
  gap: 10px 0;
  flex-direction: column;
  justify-content: center;
  position: relative;
  text-align: center;
}
.plans-table .single-plan__header-content[onclick] {
  cursor: pointer;
}
.plans-table .single-plan__header-name {
  text-transform: uppercase;
  font-size: var(--fz-name);
}
.plans-table .single-plan__header-caption {
  padding: 0 15px;
  font-weight: 300;
}
.plans-table .single-plan__header-price {
  font-size: var(--fz-name);
}
.plans-table .single-plan__header-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 15px;
  font-weight: 400;
  transform: translateY(10px);
  cursor: pointer;
}
.plans-table .single-plan__header-link:after {
  content: "";
  width: 15px;
  height: 8px;
  margin-top: 2px;
  display: block;
  background: url("img/arrow.svg") no-repeat left center/contain;
  pointer-events: none;
  transition: all 150ms;
}
.plans-table .single-plan__header-link:hover:after {
  transform: translateX(2px);
}
@media (min-width: 992px) {
  .plans-table .single-plan__header-link {
    display: none;
  }
}
.plans-table .single-plan__header-content {
  aspect-ratio: 1;
  align-items: center;
}
.plans-table .single-plan__header-content:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: -2;
}
.plans-table .single-plan__header-content:after {
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
}
.plans-table .single-plan__header-content.type_circle:before {
  background-image: url("img/type_circle.svg");
}
.plans-table .single-plan__header-content.type_circle:after {
  height: 60px;
  background-image: url("img/i-1.svg");
  transform: translate(30px, 50%);
}
.plans-table .single-plan__header-content.type_square:before {
  background-image: url("img/type_square.svg");
}
.plans-table .single-plan__header-content.type_square:after {
  height: 100px;
  background-image: url("img/i-2.svg");
  transform: translate(20px, 50%);
}
.plans-table .single-plan__header-content.type_rhombus:before {
  background-image: url("img/type_rhombus.svg");
}
.plans-table .single-plan__header-content.type_rhombus:after {
  height: 105px;
  background-image: url("img/i-3.svg");
  transform: translate(0px, 45%);
}
.plans-table .single-plan__button {
  height: auto;
  margin: 0 auto;
  padding: 5px 8px;
  font-size: 14px;
  border-width: 2px;
}
.plans-table .single-plan__expand {
  font-size: 14px;
  color: #666;
  border: none;
  background: none;
  border-bottom: 1px dashed #666;
  cursor: pointer;
  transition: all 200ms;
}
.plans-table .single-plan__expand:hover {
  color: #6cc;
  border-color: #6cc;
}

.d-none {
  display: none;
}

@media (min-width: 992px) {
  .d-992-visible {
    display: block;
  }
}

@media (min-width: 992px) {
  .d-992-hidden {
    display: none;
  }
}

.block-toggler {
  display: none;
}
.block-toggler + div {
  display: none;
}
.block-toggler:checked + div {
  display: block;
}

.scroll-popup {
  --header-gap: 10px;
  --fz-large: 20px;
  --fz-small: 16px;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .scroll-popup {
    --header-gap: 13px;
    --fz-large: 22px;
  }
}
@media (min-width: 992px) {
  .scroll-popup {
    --header-gap: 16px;
    --fz-large: 26px;
    --fz-small: 18px;
  }
}
.scroll-popup__header, .scroll-popup__footer {
  flex-shrink: 0;
  text-align: center;
}
.scroll-popup__header {
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: var(--header-gap);
}
.scroll-popup__footer {
  padding-top: 20px;
}
@media (max-width: 991px) {
  .scroll-popup__footer .btn {
    height: 40px !important;
  }
}
.scroll-popup__content {
  flex-grow: 1;
  overflow: auto;
}
.scroll-popup__headline {
  padding: 0 30px;
  text-transform: uppercase;
  font-size: var(--fz-large);
  font-weight: 700;
}
.scroll-popup__caption {
  font-size: var(--fz-small);
}
.scroll-popup__cost {
  font-size: var(--fz-large);
  font-weight: 700;
  color: #194C4C;
}
.scroll-popup__subheadline {
  text-transform: uppercase;
  font-size: var(--fz-small);
  font-weight: 700;
}
.scroll-popup__text {
  padding: 0 20px;
  font-size: var(--fz-small);
}
.scroll-popup__text h6 {
  font-size: inherit;
}
.scroll-popup__text p {
  margin: 0;
}
.scroll-popup__text ul, .scroll-popup__text ol {
  margin: 0 0 0 24px;
}
.scroll-popup__text p + h6,
.scroll-popup__text ul + h6,
.scroll-popup__text ol + h6 {
  margin-top: 15px;
}
@media (min-width: 992px) {
  .scroll-popup__text p + h6,
  .scroll-popup__text ul + h6,
  .scroll-popup__text ol + h6 {
    margin-top: 20px;
  }
}
