.pricing_page_platforms {
  display: none;
}
.pricing_page_platforms * {
  color: #14151F;
}
.pricing_page_platforms.active {
  display: flex;
}

.pricing_page_plan {
  position: relative;
  padding: 42px 32px 16px;
  border-radius: 16px;
  border: 1px solid rgba(20, 21, 31, 0.12);
  background: #FFF;
}
.pricing_page_plan.most-popular {
  border-color: #3339F1;
}
.pricing_page_plan.most-popular .label {
  position: absolute;
  background-color: #3339F1;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.6px;
  width: calc(100% + 1px);
  padding: 8px 32px;
  border-radius: 16px 16px 0 0;
  left: -1px;
  box-sizing: border-box;
  top: -30px;
  height: 69px;
  z-index: -1;
}
.pricing_page_plan .pricing_page_services {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing_page_plan .pricing_page_service {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pricing_page_plan .pricing_page_service.highlighted .service-title {
  font-weight: 500;
}
.pricing_page_plan .pricing_page_service.highlighted img {
  width: 14px;
  height: 14px;
  margin-right: 8px;
}
.pricing_page_plan .pricing_page_service.ai_credits {
  padding-bottom: 24px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(20, 21, 31, 0.12);
}
.pricing_page_plan .service-title {
  color: rgba(20, 21, 31, 0.8);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
.pricing_page_plan .service-value {
  color: #14151F;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px; /* 160% */
  padding: 2px 7px;
  border-radius: 32px;
  border: 1px solid rgba(20, 21, 31, 0.12);
}
.pricing_page_plan .pricing_page_additional {
  border-top: 1px solid rgba(20, 21, 31, 0.12);
  padding-top: 24px;
  margin-top: 24px;
  font-size: 12px;
  line-height: 18px; /* 150% */
}
.pricing_page_plan .pricing_page_additional-title {
  font-weight: 700;
  margin-bottom: 16px;
}
.pricing_page_plan .pricing_page_additional-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing_page_plan .pricing_page_additional-item {
  display: flex;
  gap: 8px;
}
.pricing_page_plan .pricing_page_additional-item img {
  width: 14px;
  height: 14px;
}
.pricing_page_plan .pricing_page_additional-item > span {
  font-weight: 400;
  color: rgba(20, 21, 31, 0.8);
}
.pricing_page_plan .with-tooltip {
  position: relative;
  cursor: pointer;
}
.pricing_page_plan .with-tooltip .tooltip-text {
  text-align: left;
  position: absolute;
  padding-top: 16px;
  box-sizing: border-box;
  font-size: 12px;
  line-height: 18px;
  width: 320px;
  -webkit-transition: -webkit-transform 0.2s;
  -moz-transition: -moz-transform 0.2s;
  transition: transform 0.2s;
  opacity: 0;
  z-index: -5;
  pointer-events: none;
  left: 0;
  top: calc(100% - 8px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  transform: translateY(10px);
}
.pricing_page_plan .with-tooltip .tooltip-text > div {
  padding: 16px;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0 4px 8px 0 rgba(20, 21, 31, 0.1), 0 2px 4px 0 rgba(20, 21, 31, 0.06);
}
.pricing_page_plan .with-tooltip .tooltip-text * {
  color: rgba(20, 21, 31, 0.7);
}
.pricing_page_plan .with-tooltip .tooltip-text br {
  display: block;
}
.pricing_page_plan .with-tooltip .tooltip-text ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 20px;
  margin-top: 10px;
}
.pricing_page_plan .with-tooltip .tooltip-text ul li {
  position: relative;
}
.pricing_page_plan .with-tooltip .tooltip-text ul li:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(20, 21, 31, 0.7);
  left: -11px;
  top: 8px;
}
.pricing_page_plan .with-tooltip .tooltip-text .title {
  color: #14151F;
  margin-bottom: 2px;
  font-weight: 500;
}
.pricing_page_plan .with-tooltip .tooltip-text .description:not(:last-child) {
  margin-bottom: 10px;
}
.pricing_page_plan .with-tooltip:hover .tooltip-text {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
  z-index: 1;
  opacity: 1;
  pointer-events: unset;
}
.pricing_page_plan .with-tooltip:not(:hover) span {
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 10%; /* 1.2px */
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.tabs_switcher {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tabs_switcher .pricing_tab {
  display: flex;
  padding: 3px;
  align-items: center;
  gap: 2px;
  border-radius: 8px;
  background: rgba(20, 21, 31, 0.06);
  box-sizing: border-box;
}
.tabs_switcher .pricing_tab.hidden {
  display: none;
}
.tabs_switcher .pricing_tab.period_tabs {
  display: none;
}
.tabs_switcher .tab {
  color: rgba(20, 21, 31, 0.7);
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px; /* 150% */
  padding: 9px 16px;
  cursor: pointer;
}
.tabs_switcher .tab .fire {
  width: 12px;
  height: 12px;
  margin-top: -2px;
}
.tabs_switcher .tab .percent {
  font-size: 10px;
  line-height: 16px;
  border-radius: 32px;
  border: 1px solid rgba(20, 21, 31, 0.12);
  background: #FFF;
  margin-left: 8px;
  padding: 3px 8px;
}
.tabs_switcher .tab.active {
  color: #14151F;
  border-radius: 6px;
  background: #FFF;
  box-shadow: 0 4px 8px 0 rgba(20, 21, 31, 0.1), 0 2px 4px 0 rgba(20, 21, 31, 0.06);
}
.tabs_switcher .tab.active .percent {
  border: 1px solid rgba(51, 57, 241, 0.16);
  background: rgba(51, 57, 241, 0.16);
}

.periods_switcher {
  position: relative;
  display: none;
}
.periods_switcher .periods_switcher_selected {
  border-radius: 8px;
  border: 1px solid rgba(20, 21, 31, 0.12);
  background: #FFF;
  padding: 3px 16px;
  width: 250px;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.periods_switcher .periods_switcher_selected:hover {
  border-color: rgba(20, 21, 31, 0.5);
}
.periods_switcher .periods_switcher_selected .arrow-down {
  width: 12px;
  height: 12px;
  opacity: 0.6;
}
.periods_switcher .periods_switcher_selected .period-item {
  padding: 7px 16px 7px 0;
}
.periods_switcher .period {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.periods_switcher .period-item {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px; /* 150% */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 8px;
  width: 100%;
  box-sizing: border-box;
}
.periods_switcher .period-item .percent {
  color: #3339F1;
  display: flex;
  align-items: center;
  gap: 4px;
}
.periods_switcher .period-item .fire {
  width: 12px;
  height: 12px;
}
.periods_switcher .periods_switcher_options {
  display: none;
  z-index: 1;
  padding: 8px;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  left: 0;
  top: 44px;
  border-radius: var(--Radius-12, 12px);
  border: 1px solid rgba(20, 21, 31, 0.12);
  background: linear-gradient(0deg, #FFF 0%, #FFF) 100%, #14151F;
  box-shadow: 0 4px 8px 0 rgba(20, 21, 31, 0.1), 0 2px 4px 0 rgba(20, 21, 31, 0.06);
}
.periods_switcher .periods_switcher_options .period-item {
  cursor: pointer;
}
.periods_switcher .periods_switcher_options .period-item:hover {
  background: rgba(20, 21, 31, 0.04);
  border-radius: var(--Radius-12, 8px);
}
.periods_switcher .periods_switcher_options .period-item.selected {
  background: rgba(20, 21, 31, 0.08);
  border-radius: var(--Radius-12, 8px);
}
.periods_switcher.active .arrow-down {
  transform: rotate(180deg);
}
.periods_switcher.active .periods_switcher_selected {
  border-color: #3339F1;
}
.periods_switcher.active .periods_switcher_options {
  display: block;
}
