/**
    How to add a new icon?
    * Add the SVG source file to '~/Assets/Icons/svg'
    * In case you want to add a color variation to this icon, check the Gulp task called 'icons'
    * Add a variable here with SVG file name in the following template: $svg-icons-{file-name}_{color}: '{file-name}_{color}.svg'
    * Add a new 'scss' file, name it using the following template: '_svg-icons-{file-name}_{color}.scss'. Use other files as example for the content
*/
/*
  HEX to filter conversion:
  https://isotropic.co/tool/hex-color-to-css-filter/
*/
.tw-switch-input {
  font-size: 24px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 2em;
  height: 1em;
  background-color: #d7d7de;
  box-shadow: inset 0px 4px 6px rgba(74, 172, 203, 0.1);
  border-radius: 1em;
  position: relative;
  will-change: background-color;
  transition: background-color 0.15s ease-out;
  cursor: pointer;
  flex-shrink: 0;
}

.tw-switch-input::before {
  content: "";
  width: calc(1em - 2px);
  height: calc(1em - 2px);
  background-color: white;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 1px;
  transform: translate(0, -50%);
  will-change: transform;
  transition: transform 0.15s ease-out;
}

.tw-switch-input:checked {
  background-color: #746dff;
}

.tw-switch-input:checked::before {
  transform: translate(1em, -50%);
}

.tw-switch-input:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.tw-switch-input-with-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tw-switch-input-with-label__label {
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.billing-frequency-switch .tw-switch-input-with-label__label {
  position: relative;
  color: black;
  font-weight: bold;
  text-transform: uppercase;
  min-width: 70px;
}
.billing-frequency-switch .tw-switch-input-with-label__label:first-child {
  text-align: right;
}
.billing-frequency-switch .tw-switch-input-with-label__label:not(.billing-frequency-switch__label--active) {
  color: #797986;
}

.billing-frequency-switch__discount {
  padding: 4px 16px;
  font-size: 12px;
  font-weight: bold;
  background: #0abc54;
  border-radius: 4px;
  color: white;
  position: absolute;
  top: calc(-100% - 4px);
  right: -50%;
  line-height: 1.25;
}

.tool-tip-message {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff4da;
  border-radius: 6px;
}

.tool-tip-message__emoji {
  font-size: 24px;
}

.tool-tip-message__text {
  font-size: 14px;
  color: #ba7c26;
}

.svg-icons {
  vertical-align: middle;
  display: inline-block;
  background-size: 1em;
  width: 1em;
  height: 1em;
}

.svg-icons.lazyload {
  background-image: none;
}

.svg-icons_baseline {
  vertical-align: baseline;
}

.svg-icons--color-white {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(64deg) brightness(107%) contrast(101%);
}

.svg-icons--color-border {
  filter: invert(89%) sepia(4%) saturate(231%) hue-rotate(164deg) brightness(103%) contrast(93%);
}

.svg-icons--color-muted {
  filter: invert(90%) sepia(8%) saturate(170%) hue-rotate(158deg) brightness(87%) contrast(87%);
}

.svg-icons--color-gray-60 {
  filter: invert(70%) sepia(7%) saturate(323%) hue-rotate(202deg) brightness(90%) contrast(100%);
}

.svg-icons--color-gray-70 {
  filter: invert(48%) sepia(7%) saturate(548%) hue-rotate(202deg) brightness(97%) contrast(89%);
}

.svg-icons--color-yellow-60 {
  filter: invert(88%) sepia(100%) saturate(1110%) hue-rotate(314deg) brightness(103%) contrast(101%);
}

.svg-icons--color-yellow-40 {
  filter: invert(89%) sepia(15%) saturate(1180%) hue-rotate(332deg) brightness(104%) contrast(102%);
}

.svg-icons-lightbulb-on {
  background-image: url(https://cdn.twee.com/e/dist_20250807111911/icons/icons-sprite.svg#svg--lightbulb-on);
}

.subscription-name--free {
  color: #0abc54;
}

.subscription-name--basic {
  color: #00bfc9;
}

.subscription-name--pro {
  color: #746dff;
}

.subscription-name--business {
  color: #ffb200;
}

.t-btn {
  --t-btn-background: null;
  --t-btn-color: null;
  --t-btn-border-color: null;
  --t-btn-hover-background: null;
  --t-btn-hover-color: null;
  --t-btn-hover-border-color: null;
  --t-btn-active-background: null;
  --t-btn-active-color: null;
  --t-btn-active-border-color: null;
  --t-btn-disabled-background: null;
  --t-btn-disabled-color: null;
  --t-btn-disabled-border-color: null;
  --t-btn-focus-background: null;
  --t-btn-focus-color: null;
  --t-btn-focus-border-color: null;
  --t-btn-border-radius: 8px;
  --t-btn-padding-y: 9px;
  --t-btn-padding-x: 23px;
  --t-btn-padding-left: var(--t-btn-padding-x);
  --t-btn-font-size: 14px;
  --t-btn-icon-size: 20px;
  --t-btn-border-width: 1px;
  --t-btn-font-weight: 400;
  --t-btn-min-width: auto;
  --t-btn-min-height: auto;
  --t-btn-gap: 6px;
  --t-btn-line-height: 20px;
  --t-btn-focus-box-shadow: 0 0 0 3px #cfccff;
  --t-btn-text-decoration: none;
  padding: var(--t-btn-padding-y) var(--t-btn-padding-x);
  padding-left: var(--t-btn-padding-left);
  border-radius: var(--t-btn-border-radius);
  font-size: var(--t-btn-font-size);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: var(--t-btn-line-height);
  gap: var(--t-btn-gap);
  min-height: var(--t-btn-min-height);
  min-width: var(--t-btn-min-width);
  font-weight: var(--t-btn-font-weight);
  -webkit-text-decoration: var(--t-btn-text-decoration);
  text-decoration: var(--t-btn-text-decoration);
  background-color: var(--t-btn-background);
  color: var(--t-btn-color);
  cursor: pointer;
  border: var(--t-btn-border-width) solid var(--t-btn-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, opacity 0.15s ease-in-out;
}
.t-btn i {
  flex-shrink: 0;
  font-size: var(--t-btn-icon-size);
}
.t-btn:hover {
  background-color: var(--t-btn-hover-background);
  color: var(--t-btn-hover-color);
  border-color: var(--t-btn-hover-border-color);
}
.t-btn:active, .t-btn:active:hover {
  background-color: var(--t-btn-active-background);
  color: var(--t-btn-active-color);
  border-color: var(--t-btn-active-border-color);
}
.t-btn:focus-visible {
  background-color: var(--t-btn-focus-background);
  color: var(--t-btn-focus-color);
  border-color: var(--t-btn-focus-border-color);
  box-shadow: var(--t-btn-focus-box-shadow);
  outline: none;
}
.t-btn:disabled, .t-btn.t-btn-disabled, .t-btn:disabled:hover, .t-btn.t-btn-disabled:hover, .t-btn:disabled:focus, .t-btn.t-btn-disabled:focus, .t-btn:disabled:active, .t-btn.t-btn-disabled:active, .t-btn:disabled:active:hover, .t-btn.t-btn-disabled:active:hover {
  background-color: var(--t-btn-disabled-background);
  color: var(--t-btn-disabled-color);
  border-color: var(--t-btn-disabled-border-color);
  cursor: not-allowed;
}

.t-btn.t-btn-primary {
  --t-btn-background: #746dff;
  --t-btn-color: #ffffff;
  --t-btn-border-color: #746dff;
  --t-btn-hover-background: #9590ff;
  --t-btn-hover-color: #ffffff;
  --t-btn-hover-border-color: #9590ff;
  --t-btn-active-background: #5336d6;
  --t-btn-active-color: #ffffff;
  --t-btn-active-border-color: #5336d6;
  --t-btn-disabled-color: #a2a2af;
  --t-btn-disabled-background: #e8e8ec;
  --t-btn-disabled-border-color: #e8e8ec;
  --t-btn-focus-background: #746dff;
  --t-btn-focus-color: #ffffff;
  --t-btn-focus-border-color: #746dff;
}
.t-btn.t-btn-primary i {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}
.t-btn.t-btn-primary:hover i {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}
.t-btn.t-btn-primary:active i, .t-btn.t-btn-primary:active:hover i {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}
.t-btn.t-btn-primary:focus i {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}
.t-btn.t-btn-primary:disabled i, .t-btn.t-btn-primary.t-btn-disabled i, .t-btn.t-btn-primary:disabled:hover i, .t-btn.t-btn-primary.t-btn-disabled:hover i, .t-btn.t-btn-primary:disabled:focus i, .t-btn.t-btn-primary.t-btn-disabled:focus i, .t-btn.t-btn-primary:disabled:active i, .t-btn.t-btn-primary.t-btn-disabled:active i, .t-btn.t-btn-primary:disabled:active:hover i, .t-btn.t-btn-primary.t-btn-disabled:active:hover i {
  filter: invert(70%) sepia(7%) saturate(323%) hue-rotate(202deg) brightness(90%) contrast(100%);
}

.t-btn.t-btn-secondary {
  --t-btn-background: transparent;
  --t-btn-color: #746dff;
  --t-btn-border-color: #746dff;
  --t-btn-hover-background: transparent;
  --t-btn-hover-color: #9590ff;
  --t-btn-hover-border-color: #9590ff;
  --t-btn-active-background: transparent;
  --t-btn-active-color: #5336d6;
  --t-btn-active-border-color: #5336d6;
  --t-btn-disabled-color: #e8e8ec;
  --t-btn-disabled-background: transparent;
  --t-btn-disabled-border-color: #d7d7de;
  --t-btn-focus-background: transparent;
  --t-btn-focus-color: #746dff;
  --t-btn-focus-border-color: #746dff;
}
.t-btn.t-btn-secondary i {
  filter: invert(40%) sepia(70%) saturate(711%) hue-rotate(207deg) brightness(103%) contrast(102%);
}
.t-btn.t-btn-secondary:hover i {
  filter: invert(52%) sepia(54%) saturate(841%) hue-rotate(205deg) brightness(106%) contrast(103%);
}
.t-btn.t-btn-secondary:active i, .t-btn.t-btn-secondary:active:hover i {
  filter: invert(26%) sepia(37%) saturate(5017%) hue-rotate(243deg) brightness(83%) contrast(104%);
}
.t-btn.t-btn-secondary:focus i {
  filter: invert(52%) sepia(54%) saturate(841%) hue-rotate(205deg) brightness(106%) contrast(103%);
}
.t-btn.t-btn-secondary:disabled i, .t-btn.t-btn-secondary.t-btn-disabled i, .t-btn.t-btn-secondary:disabled:hover i, .t-btn.t-btn-secondary.t-btn-disabled:hover i, .t-btn.t-btn-secondary:disabled:focus i, .t-btn.t-btn-secondary.t-btn-disabled:focus i, .t-btn.t-btn-secondary:disabled:active i, .t-btn.t-btn-secondary.t-btn-disabled:active i, .t-btn.t-btn-secondary:disabled:active:hover i, .t-btn.t-btn-secondary.t-btn-disabled:active:hover i {
  filter: invert(70%) sepia(7%) saturate(323%) hue-rotate(202deg) brightness(90%) contrast(100%);
}

.subscription-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  box-shadow: -10px 20px 50px 0px rgba(35, 33, 126, 0.1);
  border-radius: 6px;
}

.subscription-card--highlight {
  position: relative;
}

.subscription-card--highlight::before {
  content: "";
  position: absolute;
  inset: -3px;
  background: linear-gradient(90deg, #817bff 0%, #4f99ff 100%);
  border-radius: 6px;
  z-index: -1;
}

.subscription-card-content {
  position: relative;
  overflow: hidden;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 20px;
}

.subscription-card-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.subscription-card-header--empty {
  display: none;
}

.subscription-card__best-value {
  background: #0abc54;
  height: 32px;
  color: white;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 200px;
  top: -15px;
  right: -15px;
  clip-path: polygon(100% 100%, 0 100%, 999px calc(100% - 999px), calc(100% - 999px) calc(100% - 999px));
  transform: translate(29.2893218813%, -100%) rotate(45deg);
  transform-origin: 0% 100%;
}

.subscription-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.subscription-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
}

.subscription-card-title__text {
  font-weight: bold;
}

.subscription-card-price {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.subscription-card-price-monthly {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.subscription-card-price-monthly__value {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.25;
}

.subscription-card-price-monthly__suffix {
  font-size: 18px;
  font-weight: bold;
}

.subscription-card--secondary-price {
  font-size: 18px;
  line-height: 24px;
}

.subscription-card-features {
  color: #222229;
  font-size: 14px;
  margin-bottom: 0;
  list-style: none;
  padding-left: 10px;
  line-height: 1.7;
}

.subscription-card-features li {
  background-image: url(https://cdn.twee.com/e/dist_20250807111911/decorators/bullet.svg);
  background-repeat: no-repeat;
  background-position: left top 4px;
  padding-left: 18px;
}

.subscription-card__footer-button {
  align-self: center;
}

.subscription-card__subscribe-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid #d7d7de;
  border-radius: 6px;
}

.subscription-card__subscribe-container .subscription-card__footer-button {
  width: 100%;
}

.subscription-card__badge {
  align-self: center;
}

.subscription-card-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 8px 0 4px;
  border-radius: 6px;
}

.subscription-card-badge__text {
  font-size: 14px;
}

.subscription-card-badge--current {
  background-color: #e8e7ff;
}

.subscription-card-badge--current .subscription-card-badge__text {
  color: #9590ff;
}

.subscription-card-badge--current i {
  filter: invert(52%) sepia(54%) saturate(841%) hue-rotate(205deg) brightness(106%) contrast(103%);
}

.subscription-card-badge--danger {
  background-color: #fff0f3;
}

.subscription-card-badge--danger .subscription-card-badge__text {
  color: #cf0025;
}

.subscription-card-badge--danger i {
  filter: invert(12%) sepia(93%) saturate(5880%) hue-rotate(344deg) brightness(79%) contrast(108%);
}

.subscription-card-badge i {
  font-size: 24px;
}

.subscription-card-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: auto;
}

@media (min-width: 768px) {
  .subscription-card-header {
    min-height: 40px;
  }
  .subscription-card-header--empty {
    display: flex;
  }
}
.t-btn-block {
  display: flex;
  width: 100%;
}

.free-subscription-card__price {
  font-size: 36px;
  font-weight: bold;
}

.subscription-card-sbp-provider {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subscription-card-sbp-provider__label {
  font-size: 14px;
  text-align: center;
  color: #bcc3c7;
}

.subscription-card-sbp-provider__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid #d7d7de;
  border-radius: 6px;
}

.subscription-card-sbp-provider__button {
  width: 100%;
}

.business-subscription-card__badge {
  font-size: 14px;
  color: #797986;
  text-align: center;
}

.business-subscription-card .subscription-card-price-monthly__value {
  color: #797986;
}

.subscription-plans-list {
  display: grid;
  grid-template-columns: 335px;
  justify-content: center;
  gap: 20px;
}

@media (min-width: 970px) {
  .subscription-plans-list {
    grid-template-columns: repeat(2, 335px);
    justify-content: center;
  }
}
@media (min-width: 1680px) {
  .subscription-plans-list {
    grid-template-columns: repeat(4, 335px);
  }
  .business-subscription-card {
    grid-column: auto;
  }
}
@media (min-width: 768px) {
  .subscription-plans-list {
    gap: 20px;
  }
}
.faq-card {
  background: white;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-card__icon {
  font-size: 24px;
}

.faq-card__title {
  font-weight: bold;
  font-size: 14px;
}

.faq-card__content {
  font-size: 14px;
}

.faq-card__content p {
  margin-bottom: 0;
}

.faq-card__content p + p {
  margin-top: 10px;
}

.faq-card__content a {
  font-weight: bold;
  text-decoration: underline;
}

.faq-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-block__title {
  font-weight: bold;
  font-size: 24px;
}

.subscriptions-compare-radio-buttons {
  background-color: #f2f6f8;
  display: flex;
  gap: 10px;
  padding: 4px;
  border-radius: 9px;
}

.subscriptions-compare-radio-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  min-height: 0;
  flex: 1 0 0;
  border-radius: 6px;
  padding: 10px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.subscriptions-compare-radio-button:hover,
.subscriptions-compare-radio-button--active {
  background-color: white;
}

.svg-icons-check {
  background-image: url(https://cdn.twee.com/e/dist_20250807111911/icons/icons-sprite.svg#svg--check);
}

.subscription-feature-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.available-badge {
  background-color: #e4ffe7;
}

.available-badge i {
  filter: invert(44%) sepia(76%) saturate(2989%) hue-rotate(120deg) brightness(106%) contrast(92%);
}

.svg-icons-close {
  background-image: url(https://cdn.twee.com/e/dist_20250807111911/icons/icons-sprite.svg#svg--close);
}

.not-available-badge {
  background-color: #f2f6f8;
}

.subscriptions-compare-table-mobile {
  background-color: white;
  border-radius: 6px;
  box-shadow: -10px 20px 50px rgba(33, 81, 126, 0.1);
  padding: 30px;
}

.subscriptions-compare-table-mobile__title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.subscriptions-compare-table-mobile__groups {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.subscriptions-compare-table-mobile__group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.subscriptions-compare-table-mobile__row {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 20px;
}

.subscriptions-compare-table-mobile__row-title {
  font-size: 14px;
}

.subscriptions-compare-table-mobile__row-value {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 14px;
}

.subscriptions-compare-table-mobile__row--main .subscriptions-compare-table-mobile__row-title {
  font-weight: bold;
  font-size: 18px;
}

.subscriptions-compare-block-mobile__title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.subscriptions-compare-block-mobile__radio {
  margin-bottom: 20px;
}

.subscriptions-compare-table-desktop {
  background-color: white;
  box-shadow: -5px 10px 15px rgba(0, 70, 151, 0.1);
  border-radius: 6px;
  padding: 30px 30px;
  position: relative;
}

.subscriptions-compare-table-desktop__background {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr 1fr;
  -moz-column-gap: 10px;
  column-gap: 10px;
  position: absolute;
  inset: 0;
  padding: 0 30px;
}

.subscriptions-compare-table-desktop__background-highlight {
  box-shadow: -10px 20px 50px 0px rgba(92, 60, 186, 0.25), 10px 20px 42px 0px rgba(92, 159, 255, 0.25), 0px 22px 25px -20px #fff;
  background-color: white;
  border-radius: 6px;
  margin-top: -10px;
  margin-bottom: -10px;
}

.subscriptions-compare-table-desktop__groups {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.subscriptions-compare-table-desktop__group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.subscriptions-compare-table-desktop__plan-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.subscriptions-compare-table-desktop__title-cell {
  font-size: 14px;
}

.subscriptions-compare-table-desktop__value-cell {
  font-size: 14px;
  display: flex;
  justify-content: center;
}

.subscriptions-compare-table-desktop__row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr 1fr;
  -moz-column-gap: 10px;
  column-gap: 10px;
  align-items: center;
}

.subscriptions-compare-table-desktop__group-title {
  font-size: 18px;
  font-weight: bold;
}

.subscriptions-compare-block-desktop__title {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 30px;
}

.tw-message-box {
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 6px;
  min-height: 200px;
  background-color: var(--tw-message-box-background-color, #ffffff);
}

.tw-message-box__emoji {
  display: flex;
  font-size: 24px;
  margin-bottom: 24px;
  line-height: 1;
}
.tw-message-box__emoji .svg-icons {
  font-size: 40px;
}

.tw-message-box__title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
  color: var(--tw-message-box-title-color, var(--tw-message-box-color, #222229));
}

.tw-message-box__content {
  font-size: 14px;
  text-align: center;
  color: var(--tw-message-box-content-color, var(--tw-message-box-color, #222229));
}

.tw-message-box__content p {
  margin-bottom: 0;
}

.tw-message-box__content p + p {
  margin-top: 10px;
}

.tw-message-box__content a {
  text-decoration: underline;
}
.tw-message-box__content a, .tw-message-box__content a:hover {
  color: inherit;
  font-weight: bold;
}

.tw-message-box__content a:hover {
  text-decoration: none;
}

.tw-message-box--error {
  --tw-message-box-background-color: #fff0f3;
  --tw-message-box-title-color: #cf0025;
  --tw-message-box-content-color: #cf0025;
}
.tw-message-box--error .tw-message-box__emoji .svg-icons {
  filter: invert(61%) sepia(53%) saturate(7343%) hue-rotate(324deg) brightness(107%) contrast(107%);
}

.tw-message-box--warning {
  --tw-message-box-background-color: #fff4da;
  --tw-message-box-title-color: #ba7c26;
  --tw-message-box-content-color: #ba7c26;
}
.tw-message-box--warning .tw-message-box__emoji .svg-icons {
  filter: invert(81%) sepia(29%) saturate(7084%) hue-rotate(0deg) brightness(105%) contrast(104%);
}

.tw-message-box--info {
  --tw-message-box-background-color: #f3f3ff;
  --tw-message-box-title-color: #746dff;
  --tw-message-box-content-color: #746dff;
}
.tw-message-box--info .tw-message-box__emoji .svg-icons {
  filter: invert(52%) sepia(54%) saturate(841%) hue-rotate(205deg) brightness(106%) contrast(103%);
}

.tw-message-box--success {
  --tw-message-box-background-color: #e1ffee;
  --tw-message-box-title-color: #00860d;
  --tw-message-box-content-color: #00860d;
}
.tw-message-box--success .tw-message-box__emoji .svg-icons {
  filter: invert(52%) sepia(27%) saturate(5829%) hue-rotate(113deg) brightness(100%) contrast(92%);
}

.tw-message-box--muted {
  --tw-message-box-background-color: #f5f5f5;
  --tw-message-box-title-color: #222229;
  --tw-message-box-color: #797986;
}
.tw-message-box--muted .tw-message-box__emoji .svg-icons {
  filter: invert(48%) sepia(7%) saturate(548%) hue-rotate(202deg) brightness(97%) contrast(89%);
}

.tw-message-box--horizontal {
  display: flex;
  flex-direction: row;
  padding: 10px;
  gap: 10px;
  min-height: 0;
}
.tw-message-box--horizontal .tw-message-box__emoji {
  margin-bottom: 0;
  flex-shrink: 0;
}
.tw-message-box--horizontal .tw-message-box__content {
  text-align: left;
  flex-grow: 1;
}
.tw-message-box--horizontal .tw-message-box__button {
  flex-shrink: 0;
}

.christmas-banner__img {
  max-width: 100%;
  height: auto;
}

.christmas-banner__desktop {
  display: none;
}

@media (min-width: 768px) {
  .christmas-banner__mobile {
    display: none;
  }
  .christmas-banner__desktop {
    display: block;
  }
}
@media (max-width: 575.98px) {
  .current-subscription-plan-banner.tw-message-box--horizontal {
    flex-direction: column;
  }
}
.page-heading__title {
  display: flex;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.page-heading__underline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 48px;
  width: 100%;
}

.page-heading__description {
  max-width: 640px;
  color: #797986;
  font-size: 14px;
  text-align: center;
  margin: 16px auto 0;
}

.page-heading--mb {
  margin-bottom: 24px;
}

.page-heading--small .page-heading__title {
  font-size: 24px;
}

@media (min-width: 768px) {
  .page-heading__title {
    font-size: 48px;
  }
}
.subscription-plans-screen__first-container {
  padding: 32px 20px;
}

.subscription-plans-screen__heading .page-heading__title {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzQ0IiBoZWlnaHQ9IjMzIiB2aWV3Qm94PSIwIDAgMzQ0IDMzIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8ZyBzdHlsZT0ibWl4LWJsZW5kLW1vZGU6bXVsdGlwbHkiPgo8cGF0aCBkPSJNMTEgMzNWOUgxMC40MjhDOS44MTUgOSA5LjIwMyA5LjEwOSA4LjY3NiA5LjQyMkM2LjkyNiAxMC40NjIgMyAxMy42MTcgMyAyMUMzIDIzLjE4OSAyLjA2NSAyNi4wNjcgMS4wOTkgMjguNDU2QzAuMjQ5IDMwLjU1NyAxLjc0MiAzMyA0LjAwOSAzM0gxMVpNMzAuNjIwMSAxOC44MDE1TDMxLjUxOTkgMzAuNzY3N0wzMC42MjAxIDE4LjgwMTVaTTEyNC43OTYgMTQuNTE0NEwxMjUuMzU3IDI2LjUwMTJMMTI0Ljc5NiAxNC41MTQ0Wk0zMzMgMC4wOTU5NzY4VjI0LjA5NkgzMzMuNTcyQzMzNC4xODUgMjQuMDk2IDMzNC43OTcgMjMuOTg3IDMzNS4zMjQgMjMuNjc0QzMzNy4wNzQgMjIuNjM0IDM0MSAxOS40NzkgMzQxIDEyLjA5NkMzNDEgOS45MDY5OCAzNDEuOTM1IDcuMDI4OTggMzQyLjkwMSA0LjYzOTk4QzM0My43NTEgMi41Mzg5OCAzNDIuMjU4IDAuMDk1OTc2OCAzMzkuOTkxIDAuMDk1OTc2OEgzMzNaTTExIDMzQzE1LjI4MDMgMzMgMTkuMjgwNSAzMi40NTMgMjIuNTk5NiAzMS45NTQ2QzI2LjE1NjYgMzEuNDIwNSAyOC43NzgxIDMwLjk3MzkgMzEuNTE5OSAzMC43Njc3TDI5LjcyMDMgNi44MzUyNkMyNS44MzQzIDcuMTI3NDYgMjEuOTY5OCA3Ljc4MDExIDE5LjAzNTggOC4yMjA2NkMxNS44NjM5IDguNjk2OTUgMTMuMzY3OSA5IDExIDlWMzNaTTMxLjUxOTkgMzAuNzY3N0M2Mi4zODIzIDI4LjQ0NyA5My41NTM3IDI3Ljk4OTYgMTI1LjM1NyAyNi41MDEyTDEyNC4yMzUgMi41Mjc0N0M5My41NDA5IDMuOTYzOSA2MC45NDUxIDQuNDg3MzIgMjkuNzIwMyA2LjgzNTI2TDMxLjUxOTkgMzAuNzY3N1pNMTI1LjM1NyAyNi41MDEyQzE5NC41MDYgMjMuMjY1MiAyNjMuMTExIDI0LjA5NiAzMzMgMjQuMDk2VjAuMDk1OTc2OEMyNjMuNTE2IDAuMDk1OTc2OCAxOTQuMTEgLTAuNzQyNDYgMTI0LjIzNSAyLjUyNzQ3TDEyNS4zNTcgMjYuNTAxMloiIGZpbGw9IiNDNUZGREQiLz4KPC9nPgo8L3N2Zz4K");
}

.subscription-plans-screen__black-friday-banner {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.subscription-plans-screen__billing-frequency {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}

.subscription-plans-screen__current-plan {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  margin-bottom: 24px;
}

.subscription-plans-screen__payment-method {
  margin-top: 48px;
}

.subscription-plans-screen__plans {
  margin-top: 40px;
}

.subscription-plans-screen__second-container {
  padding: 40px;
}

.subscription-plans-screen__compare-mobile {
  margin-left: -20px;
  margin-right: -20px;
}

.subscription-plans-screen__compare-desktop {
  display: none;
}

.subscription-plans-screen__note,
.subscription-plans-screen__faq {
  max-width: 640px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .subscription-plans-screen__payment-method {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .subscription-plans-screen__compare-mobile {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .subscription-plans-screen__note {
    margin-top: 80px;
  }
}
@media (min-width: 1280px) {
  .subscription-plans-screen__compare-mobile {
    display: none;
  }
  .subscription-plans-screen__compare-desktop {
    display: block;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.t-btn.t-btn-lg {
  --t-btn-padding-y: 11px;
  --t-btn-padding-x: 39px;
  --t-btn-icon-size: 24px;
  --t-btn-line-height: 24px;
  --t-btn-font-weight: 700;
}

.svg-icons-add-circle {
  background-image: url(https://cdn.twee.com/e/dist_20250807111911/icons/icons-sprite.svg#svg--add-circle);
}

.svg-icons-minus-circle {
  background-image: url(https://cdn.twee.com/e/dist_20250807111911/icons/icons-sprite.svg#svg--minus-circle);
}

.faq-card {
  position: relative;
  padding: 24px;
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 8px;
}

.faq-card__header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 2;
}

.faq-card:focus-within {
  box-shadow: 0 0 0 4px #e8e7ff;
}

.faq-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 5px;
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  min-height: 0;
}

.faq-card__title {
  font-size: 20px;
  font-weight: bold;
}

.faq-card__toggle-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.faq-card__body {
  color: #797986;
}

.faq-card-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.subscription-plans-screen__heading .page-heading__title {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzQ0IiBoZWlnaHQ9IjMzIiB2aWV3Qm94PSIwIDAgMzQ0IDMzIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8ZyBzdHlsZT0ibWl4LWJsZW5kLW1vZGU6bXVsdGlwbHkiPgo8cGF0aCBkPSJNMTEgMzNWOUgxMC40MjhDOS44MTUgOSA5LjIwMyA5LjEwOSA4LjY3NiA5LjQyMkM2LjkyNiAxMC40NjIgMyAxMy42MTcgMyAyMUMzIDIzLjE4OSAyLjA2NSAyNi4wNjcgMS4wOTkgMjguNDU2QzAuMjQ5IDMwLjU1NyAxLjc0MiAzMyA0LjAwOSAzM0gxMVpNMzAuNjIwMSAxOC44MDE1TDMxLjUxOTkgMzAuNzY3N0wzMC42MjAxIDE4LjgwMTVaTTEyNC43OTYgMTQuNTE0NEwxMjUuMzU3IDI2LjUwMTJMMTI0Ljc5NiAxNC41MTQ0Wk0zMzMgMC4wOTU5NzY4VjI0LjA5NkgzMzMuNTcyQzMzNC4xODUgMjQuMDk2IDMzNC43OTcgMjMuOTg3IDMzNS4zMjQgMjMuNjc0QzMzNy4wNzQgMjIuNjM0IDM0MSAxOS40NzkgMzQxIDEyLjA5NkMzNDEgOS45MDY5OCAzNDEuOTM1IDcuMDI4OTggMzQyLjkwMSA0LjYzOTk4QzM0My43NTEgMi41Mzg5OCAzNDIuMjU4IDAuMDk1OTc2OCAzMzkuOTkxIDAuMDk1OTc2OEgzMzNaTTExIDMzQzE1LjI4MDMgMzMgMTkuMjgwNSAzMi40NTMgMjIuNTk5NiAzMS45NTQ2QzI2LjE1NjYgMzEuNDIwNSAyOC43NzgxIDMwLjk3MzkgMzEuNTE5OSAzMC43Njc3TDI5LjcyMDMgNi44MzUyNkMyNS44MzQzIDcuMTI3NDYgMjEuOTY5OCA3Ljc4MDExIDE5LjAzNTggOC4yMjA2NkMxNS44NjM5IDguNjk2OTUgMTMuMzY3OSA5IDExIDlWMzNaTTMxLjUxOTkgMzAuNzY3N0M2Mi4zODIzIDI4LjQ0NyA5My41NTM3IDI3Ljk4OTYgMTI1LjM1NyAyNi41MDEyTDEyNC4yMzUgMi41Mjc0N0M5My41NDA5IDMuOTYzOSA2MC45NDUxIDQuNDg3MzIgMjkuNzIwMyA2LjgzNTI2TDMxLjUxOTkgMzAuNzY3N1pNMTI1LjM1NyAyNi41MDEyQzE5NC41MDYgMjMuMjY1MiAyNjMuMTExIDI0LjA5NiAzMzMgMjQuMDk2VjAuMDk1OTc2OEMyNjMuNTE2IDAuMDk1OTc2OCAxOTQuMTEgLTAuNzQyNDYgMTI0LjIzNSAyLjUyNzQ3TDEyNS4zNTcgMjYuNTAxMloiIGZpbGw9IiNDNUZGREQiLz4KPC9nPgo8L3N2Zz4K");
}

.faq-card {
  box-shadow: -10px 20px 50px rgba(33, 81, 126, 0.1);
}

.subscription-plans-screen__main-faq {
  max-width: 640px;
  margin-top: 80px;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
}

.subscription-plans-screen__second-container,
.subscription-plans-screen__faq-container {
  padding: 80px 32px;
}

.subscription-plans-screen__first-container {
  padding: 32px 32px 80px;
}

.subscription-plans-screen__second-container {
  background-color: #5336d6;
}

.subscriptions-compare-block-desktop__title,
.subscriptions-compare-block-mobile__title {
  font-size: 36px;
  color: #ffcc56;
  margin-bottom: 80px;
}

.subscription-plans-screen__plans {
  margin-top: 32px;
}

.subscription-plans-screen__compare-desktop {
  max-width: 1320px;
}

.subscription-plans-screen__note {
  max-width: 640px;
  margin: 60px auto 0;
  text-align: center;
  color: #ffffff;
}

.subscription-plans-screen__note a,
.subscription-plans-screen__note a:visited,
.subscription-plans-screen__note a:active,
.subscription-plans-screen__note a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.subscription-plans-screen__note-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  margin: 0 0 16px;
}

.subscription-plans-screen__note-text {
  font-size: 16px;
  margin: 0;
}

.subscription-plans-screen__faq-container {
  background: #f3f3ff;
}

.faq-block__title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 80px;
  text-align: center;
}

.subscription-plans-screen__faq {
  max-width: 880px;
  margin-top: 0;
}

.faq-block {
  gap: 0;
}

.faq-block__cta-btn {
  align-self: center;
  margin-top: 40px;
}

.subscriptions-compare-table-desktop {
  border-radius: 12px;
}

.subscriptions-compare-table-desktop__groups {
  gap: 16px;
}

.subscriptions-compare-table-desktop__background-highlight {
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 12px;
  border: 3px solid #ffcc56;
  box-shadow: -10px 20px 50px rgba(33, 81, 126, 0.1);
}

@media (min-width: 1280px) {
  .subscription-plans-screen__second-container,
  .subscription-plans-screen__faq-container {
    padding: 80px;
  }
}
@media (min-width: 1680px) {
  .subscription-plans-screen__second-container {
    padding: 80px 120px;
  }
}