@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.choose_plan {
  position: relative;
  padding-top: 40px;
  padding-bottom: 80px;
}
.choose_plan__inner {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}
.choose_plan__tabs-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 15px;
  background-color: #f9fafb;
  box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px -1px rgba(16, 24, 40, 0.1);
  border-radius: 30px;
  margin-bottom: 40px;
}
.choose_plan__tabs-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px 14px;
  background-color: #ffffff;
  border: 1px solid var(--color-secondary);
  border-radius: 20px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: capitalize;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, padding 0.3s ease-in-out;
  cursor: pointer;
}
.choose_plan__tabs-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  transform: scale(0, 0);
  background-image: url("../../../new_icon/tabs_point.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
}
.choose_plan__tabs-item:hover {
  background-color: rgba(227, 227, 255, 0.2);
}
.choose_plan__tabs-item.active {
  color: #ffffff;
  background-color: var(--color-secondary);
  padding: 4px 47px 4px 14px;
}
.choose_plan__tabs-item.active::after {
  transform: scale(1, 1);
}
.choose_plan__tariffs {
  width: 100%;
}
.choose_plan__item-content {
  display: none;
  flex-direction: column;
}
.choose_plan__item-content.active {
  display: flex;
  animation-name: fadeIn;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}
.choose_plan__block {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
  width: 100%;
}
.choose_plan__block > * {
  min-width: 0 !important;
  max-width: 100% !important;
}
.choose_plan__block_text {
  font-size: 18px;
  line-height: 27px;
}
.choose_plan__block_text p {
  margin-bottom: 27px;
}
.choose_plan__block_text p:last-child {
  margin-bottom: 0;
}
.choose_plan__block_info {
  border: 2px solid #120d34;
  box-shadow: 15px 20px 0px #1c1c20;
  border-radius: 4px;
  padding: 18px 40px 33px 40px;
  margin: 0 15px 20px 0;
  background-color: #f5fffd;
}
.choose_plan__block_info h2 {
  font-weight: 800;
  font-size: 32px;
  line-height: 40px;
  color: #29a387;
  margin-bottom: 20px;
  text-align: center;
}
.choose_plan__block_info ul {
  display: block;
  column-count: 2;
  column-gap: 20px;
  margin-bottom: -15px !important;
}
.choose_plan__block_info ul li {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  display: flex;
  align-items: center;
  padding-left: 32px;
  break-inside: avoid;
  padding-bottom: 15px;
}
.choose_plan__block_info ul li::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 1px;
  left: 0;
  background-image: url("../../../new_icon/checkmarks.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.choose_plan__billed {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #ffffff;
  padding: 3px;
}
.choose_plan__billed-btn {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #525252;
  padding: 10px 12px;
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
  cursor: pointer;
}
.choose_plan__billed-btn:hover {
  color: #434396;
}
.choose_plan__billed-btn.active {
  color: #434396;
  background: rgba(227, 227, 255, 0.4);
}
.choose_plan__billed-sale {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 6px;
  background: #cf2f2f;
}
.choose_plan__tariffs-block {
  display: none;
}
.choose_plan__tariffs-block.active {
  display: block;
  animation-name: fadeIn;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}
.choose_plan .choose_plan__tariffs_header {
  margin: 0 0 16px;
}
.choose_plan .choose_plan__tariffs_header .btn_tariff_trial {
  display: none;
}
.choose_plan .table_tariff {
  padding: 0 15px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-align: center;
}
.choose_plan .table_tariff__row_custom {
  padding: 8px 16px;
}
.choose_plan .table_tariff__row_custom .table_tariff__dt:nth-child(5) {
  grid-row: span 2;
}
.choose_plan .table_tariff__row_custom .table_tariff__dt_list {
  grid-column: span 4;
}
.choose_plan .table_tariff__row {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 29% 10.5% 21% 224px;
  gap: 10px 20px;
  padding: 12px 16px;
}
.choose_plan .table_tariff__row > * {
  min-width: 0 !important;
  max-width: 100% !important;
}
.choose_plan .table_tariff__row::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  height: 100%;
  left: -15px;
  right: -15px;
  background-color: #fff;
  border: 2px solid #b3b3ff;
  box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px -1px rgba(16, 24, 40, 0.1);
  border-radius: 4px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.choose_plan .table_tariff__row:hover .tariff_title {
  color: #790ddb;
  font-weight: 800;
}
.choose_plan .table_tariff__row:hover::after {
  opacity: 1;
}
.choose_plan .table_tariff__row:nth-child(odd):not(.table_tariff__header) {
  background-color: #f9fafb;
}
.choose_plan .table_tariff__header {
  padding: 16px;
  border-bottom: 1px solid #e5e5e5;
  border-radius: 4px;
  margin-bottom: 16px;
  background-color: #fff;
}
.choose_plan .table_tariff__header::after {
  display: none;
}
.choose_plan .table_tariff__dt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.choose_plan .table_tariff__dt:first-child {
  justify-content: flex-start;
  text-align: left;
}
.choose_plan .table_tariff__dt span {
  flex-shrink: 0;
}
.choose_plan .table_tariff__dt_list {
  justify-content: flex-start;
}
.choose_plan .table_tariff .big {
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
}
.choose_plan .tariff_plan__list ul,
.choose_plan .table_tariff__dt_list ul {
  display: flex;
  align-items: center;
  gap: 16px 30px;
  flex-wrap: wrap;
}
.choose_plan .tariff_plan__list ul li,
.choose_plan .table_tariff__dt_list ul li {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  display: flex;
  align-items: center;
  padding-left: 26px;
  color: #7d7d82;
}
.choose_plan .tariff_plan__list ul li::after,
.choose_plan .table_tariff__dt_list ul li::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 1px;
  left: 0;
  background-image: url("../../../new_icon/checkmarks_violet.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.choose_plan .tariff_title {
  transition: all 0.3s ease-in-out;
}
.choose_plan .icon_yes,
.choose_plan .icon_no {
  display: flex;
  justify-content: center;
  align-items: center;
}
.choose_plan .icon_yes svg,
.choose_plan .icon_no svg {
  width: 22px;
  height: 22px;
}
.choose_plan .icon_no {
  color: #1c1c20;
}
.choose_plan .icon_no svg {
  stroke: currentColor;
}
.choose_plan .btn_tariff_trial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  color: #fff;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  border-radius: 5px;
  padding: 9px 3px;
  min-width: 224px;
}
.choose_plan .btn_tariff_trial:hover {
  color: var(--color-primary);
  background: #fff;
}
.choose_plan .btn_tariff_buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--color-primary-blue);
  color: var(--color-white);
  background: var(--color-primary-blue);
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  border-radius: 5px;
  padding: 9px 3px;
  min-width: 200px;
  min-height: 42px;
}
.choose_plan .btn_tariff_buy:hover {
  color: var(--color-primary-blue);
  background: #fff;
}
.choose_plan .tariff_popular {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 10px;
  background: #cf2f2f;
}
.choose_plan__slider {
  display: none;
}
.choose_plan__slider .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 16px;
}
.choose_plan__slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #e3e3ff;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.choose_plan__slider .swiper-pagination-bullet-active {
  background: #434396;
}
.choose_plan__slider .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.choose_plan__slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}
.choose_plan__slider-btn {
  display: none;
}
.choose_plan .tariff_plan {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 40px 24px 44px;
  gap: 24px;
  background-color: #ffffff;
  border-top: 4px solid #434396;
  box-shadow: 0px 20px 25px -5px rgba(16, 24, 40, 0.1), 0px 8px 10px -6px rgba(16, 24, 40, 0.1);
  border-radius: 8px;
  transform-style: preserve-3d;
}
.choose_plan .tariff_plan::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -6px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border: 2px solid #b3b3ff;
  transform: translateZ(-1px);
  pointer-events: none;
}
.choose_plan .tariff_plan:hover .tariff_plan__title {
  color: #790ddb;
  font-weight: 800;
}
.choose_plan .tariff_plan:hover::after {
  opacity: 1;
}
.choose_plan .tariff_plan__ticket {
  position: absolute;
  z-index: 3;
  top: -4px;
  right: 16px;
  padding: 15px 4px 16px 4px;
  writing-mode: vertical-rl;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  color: var(--color-white);
  background-color: var(--color-red);
  transform: rotate(180deg);
  -webkit-clip-path: polygon(0 0, 50% 10px, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 50% 10px, 100% 0, 100% 100%, 0 100%);
}
.choose_plan .tariff_plan__top {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.choose_plan .tariff_plan__main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.choose_plan .tariff_plan__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #434396;
  transition: color 0.3s ease-in-out;
  text-align: center;
  letter-spacing: -0.02em;
}
.choose_plan .tariff_plan__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
  flex-wrap: wrap;
}
.choose_plan .tariff_plan__price_all {
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.choose_plan .tariff_plan__price_unit {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.choose_plan .tariff_plan__manager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #7d7d82;
}
.choose_plan .tariff_plan__manager.active {
  color: #1c1c20;
}
.choose_plan .tariff_plan__manager .icon_no {
  color: #7d7d82;
}
.choose_plan .tariff_plan__manager .icon_no svg {
  stroke: currentColor;
}
.choose_plan .tariff_plan__bottom {
  margin-top: auto;
}
.choose_plan .tariff_plan__bottom .btn_tariff_buy {
  min-width: 0;
  width: 100%;
  min-height: 48px;
  font-weight: 400;
}
.choose_plan .tariff_plan_popular {
  border-top: 4px solid var(--color-red);
}
.choose_plan .tariff_plan_custom {
  grid-column: span 2;
}
.choose_plan .tariff_plan_custom .tariff_plan__list {
  padding-left: 24px;
  border-left: 1px solid #e5e5e5;
  margin-left: -8px;
}
.choose_plan .tariff_plan_custom .tariff_plan__list ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: nowrap;
}
.choose_plan .tariff_plan_custom .tariff_plan__top {
  display: grid;
  align-items: center;
  grid-template-columns: 57% 1fr;
}
.choose_plan .tariff_plan_custom .tariff_plan__top > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

@media (max-width: 1200px) {
  .choose_plan {
    padding-top: 20px;
  }
  .choose_plan__inner {
    max-width: 760px;
  }
  .choose_plan__tabs-nav {
    padding: 12px 16px;
    border-radius: 20px;
    margin-bottom: 32px;
  }
  .choose_plan__tabs-item {
    padding: 7px;
    font-size: 12px;
    line-height: 1;
  }
  .choose_plan__tabs-item::after {
    right: 8px;
    width: 14px;
    height: 14px;
    margin-top: -7px;
  }
  .choose_plan__tabs-item.active {
    padding: 7px 30px 7px 7px;
  }
  .choose_plan__block {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 80px;
  }
  .choose_plan__block_text {
    font-size: 16px;
    line-height: 24px;
  }
  .choose_plan__block_text p {
    margin-bottom: 24px;
  }
  .choose_plan__block_text p:last-child {
    margin-bottom: 0;
  }
  .choose_plan__block_info {
    border: 3px solid #1c1c20;
    box-shadow: 8px 8px 0px #120d34;
    border-radius: 0;
    padding: 21px 22px 37px 22px;
    margin: 0;
  }
  .choose_plan__block_info h2 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 16px;
  }
  .choose_plan__block_info ul {
    column-count: 1;
    column-gap: 0;
    margin-bottom: -16px !important;
  }
  .choose_plan__block_info ul li {
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 16px;
    padding-left: 26px;
  }
  .choose_plan__block_info ul li::after {
    top: 0px;
    left: -3px;
  }
  .choose_plan .choose_plan__tariffs_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin: 0 0 30px;
  }
  .choose_plan .choose_plan__tariffs_header .btn_tariff_trial {
    display: inline-flex;
  }
  .choose_plan .table_tariff {
    display: none;
  }
  .choose_plan__slider {
    display: block;
    overflow: visible;
  }
}
@media (min-width: 767.98px) {
  .choose_plan__slider .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .choose_plan__slider .swiper-wrapper > * {
    min-width: 0 !important;
    max-width: 100% !important;
  }
}
@media (max-width: 767px) {
  .choose_plan {
    padding-top: 16px;
    padding-bottom: 42px;
  }
  .choose_plan__inner {
    max-width: 560px;
  }
  .choose_plan__tabs-nav {
    gap: 16px 14px;
    padding: 16px 10px;
    margin-bottom: 24px;
    justify-content: center;
  }
  .choose_plan__tabs-item {
    padding: 5px;
    font-size: 10px;
  }
  .choose_plan__tabs-item::after {
    right: 6px;
    width: 10px;
    height: 10px;
    margin-top: -5px;
  }
  .choose_plan__tabs-item.active {
    padding: 5px 22px 5px 5px;
  }
  .choose_plan__block {
    grid-template-columns: 1fr;
    margin-bottom: 0;
    margin-top: 24px;
    order: 3;
    width: 100%;
  }
  .choose_plan__block_text {
    display: none;
  }
  .choose_plan__block_info {
    border: 3px solid #1c1c20;
    box-shadow: 8px 8px 0px #120d34;
    border-radius: 0;
    padding: 21px 22px 37px 22px;
    margin: 0;
  }
  .choose_plan__block_info h2 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 16px;
  }
  .choose_plan__block_info ul {
    column-count: 1;
    column-gap: 0;
    margin-bottom: -16px !important;
  }
  .choose_plan__block_info ul li {
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 16px;
    padding-left: 26px;
  }
  .choose_plan__block_info ul li::after {
    top: 0px;
    left: -3px;
  }
  .choose_plan__billed-btn {
    padding: 10px 10px;
  }
  .choose_plan__slider {
    margin: 0 14px;
  }
  .choose_plan__slider-btn {
    display: block;
    margin-top: 16px;
  }
  .choose_plan__slider-btn .btn_tariff_trial {
    width: 100%;
  }
  .choose_plan .choose_plan__tariffs_header {
    justify-content: center;
    gap: 0;
    margin: 0 0 24px;
  }
  .choose_plan .choose_plan__tariffs_header .btn_tariff_trial {
    display: none;
  }
  .choose_plan .tariff_plan {
    justify-content: center;
    height: auto;
  }
  .choose_plan .tariff_plan__ticket {
    padding: 12px 4px 16px 4px;
  }
  .choose_plan .tariff_plan__top {
    flex-grow: 0;
    padding-bottom: 25px;
  }
  .choose_plan .tariff_plan__title {
    margin: 0 -5px;
  }
  .choose_plan .tariff_plan__manager {
    margin: 0 -5px;
  }
  .choose_plan .tariff_plan__bottom {
    margin-top: 0;
  }
  .choose_plan .tariff_plan_custom {
    grid-column: span 1;
  }
  .choose_plan .tariff_plan_custom .tariff_plan__top {
    padding-bottom: 0;
  }
  .choose_plan .tariff_plan_custom .tariff_plan__list {
    padding-left: 0;
    border-left: 0;
    margin: 0;
  }
  .choose_plan .tariff_plan_custom .tariff_plan__list ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .choose_plan .tariff_plan_custom .tariff_plan__top {
    grid-template-columns: 1fr;
  }
  .choose_plan .btn_tariff_trial {
    padding: 12px 3px;
  }
}
@media (max-width: 359px) {
  .choose_plan__billed-btn {
    font-size: 13px;
    padding: 10px 8px;
  }
  .choose_plan__billed-sale {
    font-size: 13px;
    padding: 10px 8px;
  }
  .choose_plan__btn-main {
    font-size: 16px;
  }
}