/* common border radius */
/* disable text selection */
/*	Font / Text Mixins
======================================================================== */
/*	Font family mixin
--------------------------------------- */
/*	Font size mixin
--------------------------------------- */
/*	Text gradient Mixin
--------------------------------------- */
/*	list styling
--------------------------------------- */
/*	Table
--------------------------------------- */
/*	Defined widths
--------------------------------------- */
section.gt-block.comparison-table-section {
  padding: 3rem 0;
  --ct-header-h: 8.4rem;
  --ct-header-gap: 0.4rem;
  --ct-col-gap: 0.4rem;
  --ct-label-extra-gap: 0.0rem;
}
@media screen and (max-width: 900px) {
  section.gt-block.comparison-table-section {
    --ct-header-h: 7rem;
    --ct-header-gap: 0.4rem;
    --ct-col-gap: 0.4rem;
    --ct-label-extra-gap: 0.0rem;
  }
  section.gt-block.comparison-table-section .width--wide {
    padding: 0;
  }
}
section.gt-block.comparison-table-section .comparison-table__heading {
  margin: 0 0 3.2rem;
  text-align: center;
}
section.gt-block.comparison-table-section .comparison-table {
  position: relative;
  width: 100%;
}
section.gt-block.comparison-table-section .comparison-table__viewport {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 900px) {
  section.gt-block.comparison-table-section .comparison-table__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
}
section.gt-block.comparison-table-section .comparison-table__inner {
  position: relative;
}
@media screen and (max-width: 900px) {
  section.gt-block.comparison-table-section .comparison-table__inner {
    min-width: max-content;
  }
}
section.gt-block.comparison-table-section .comparison-table__bg-layer {
  position: absolute;
  top: calc(var(--ct-header-h) + var(--ct-header-gap));
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: var(--ct-col-gap);
  z-index: 0;
  pointer-events: none;
}
section.gt-block.comparison-table-section .comparison-table__bg-col {
  min-width: 0;
}
section.gt-block.comparison-table-section .comparison-table__bg-col--label {
  margin-right: var(--ct-label-extra-gap);
}
section.gt-block.comparison-table-section .comparison-table__bg-col[data-color="1"] {
  opacity: 0.1;
  background: linear-gradient(180deg, #1F65F4 62.4%, rgba(31, 101, 244, 0) 100%);
}
section.gt-block.comparison-table-section .comparison-table__bg-col[data-color="2"] {
  opacity: 0.1;
  background: linear-gradient(180deg, #1F65F4 62.4%, rgba(31, 101, 244, 0) 100%);
}
section.gt-block.comparison-table-section .comparison-table__bg-col[data-color="3"] {
  opacity: 0.11;
  background: linear-gradient(180deg, #3460F5 62.4%, rgba(52, 96, 245, 0) 100%);
}
section.gt-block.comparison-table-section .comparison-table__bg-col[data-color="4"] {
  opacity: 0.13;
  background: linear-gradient(180deg, #485BF6 62.46%, rgba(72, 91, 246, 0) 100%);
}
section.gt-block.comparison-table-section .comparison-table__bg-col[data-color="5"] {
  opacity: 0.14;
  background: linear-gradient(180deg, #5D55F6 61.85%, rgba(93, 85, 246, 0) 100%);
}
section.gt-block.comparison-table-section .comparison-table__bg-col[data-color="6"] {
  opacity: 0.15;
  background: linear-gradient(180deg, #7150F7 69.77%, rgba(113, 80, 247, 0) 100%);
}
section.gt-block.comparison-table-section .comparison-table__rows-layer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
section.gt-block.comparison-table-section .comparison-table__row {
  display: flex;
  align-items: stretch;
  gap: var(--ct-col-gap);
}
section.gt-block.comparison-table-section .comparison-table__row--head {
  margin-bottom: var(--ct-header-gap);
}
section.gt-block.comparison-table-section .comparison-table__row--data {
  position: relative;
  min-height: 6rem;
}
@media screen and (max-width: 900px) {
  section.gt-block.comparison-table-section .comparison-table__row--data {
    min-height: 5rem;
  }
}
section.gt-block.comparison-table-section .comparison-table__row--data::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='4300' height='3' viewBox='0 0 4300 3' fill='none'><path d='M0 1.41992H4299.33' stroke='black' stroke-opacity='0.3' stroke-width='2.83988' stroke-dasharray='5.68 5.68'/></svg>");
  background-repeat: repeat-x;
  background-position: left center;
  background-size: auto 100%;
  pointer-events: none;
  z-index: 1;
}
section.gt-block.comparison-table-section .comparison-table__row--fadeout {
  height: 8rem;
}
@media screen and (max-width: 900px) {
  section.gt-block.comparison-table-section .comparison-table__row--fadeout {
    height: 5rem;
  }
  section.gt-block.comparison-table-section .comparison-table__row--fadeout .comparison-table__cell--label::after {
    display: none !important;
  }
}
section.gt-block.comparison-table-section .comparison-table__cell--label {
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 1.4rem 2rem 1.4rem 0.4rem;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #0D142D;
  margin-right: var(--ct-label-extra-gap);
}
section.gt-block.comparison-table-section .comparison-table__cell--label.comparison-table__cell--label-empty {
  padding: 0;
}
section.gt-block.comparison-table-section .comparison-table__cell--label.comparison-table__cell--label-empty::after {
  display: none !important;
}
@media screen and (max-width: 900px) {
  section.gt-block.comparison-table-section .comparison-table__cell--label {
    position: sticky;
    left: 0;
    z-index: 2;
    background: #fff;
    padding: 1.2rem 1rem 1.2rem 0.4rem;
    font-size: 1.6rem;
  }
  section.gt-block.comparison-table-section .comparison-table__cell--label::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.5px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='4300' height='3' viewBox='0 0 4300 3' fill='none'><path d='M0 1.41992H4299.33' stroke='black' stroke-opacity='0.3' stroke-width='2.83988' stroke-dasharray='5.68 5.68'/></svg>");
    background-repeat: repeat-x;
    background-position: left center;
    background-size: auto 100%;
    pointer-events: none;
    z-index: 1;
  }
}
section.gt-block.comparison-table-section .comparison-table__cell--label .theme-tooltip {
  font-weight: normal;
}
section.gt-block.comparison-table-section .comparison-table__label-text {
  display: block;
}
section.gt-block.comparison-table-section .comparison-table__cell--head,
section.gt-block.comparison-table-section .comparison-table__cell--data {
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
section.gt-block.comparison-table-section .comparison-table__cell--head {
  height: var(--ct-header-h);
  border-radius: 1.2rem 1.2rem 0 0;
  overflow: hidden;
  padding: 1.2rem 1rem;
}
@media screen and (max-width: 900px) {
  section.gt-block.comparison-table-section .comparison-table__cell--head {
    padding: 1rem 0.6rem;
  }
}
section.gt-block.comparison-table-section .comparison-table__cell--head .comparison-table__head-bg {
  position: absolute;
  inset: 0;
  background: var(--ct-color, #1F65F4);
  z-index: 0;
}
section.gt-block.comparison-table-section .comparison-table__cell--head .comparison-table__head-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: #fff;
  width: 100%;
}
section.gt-block.comparison-table-section .comparison-table__cell--head .comparison-table__head-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.6rem;
  height: 2.6rem;
}
section.gt-block.comparison-table-section .comparison-table__cell--head .comparison-table__head-icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
section.gt-block.comparison-table-section .comparison-table__cell--head .comparison-table__head-name {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.1;
  text-align: center;
  color: #fff;
}
section.gt-block.comparison-table-section .comparison-table__cell--data {
  min-height: 6rem;
  padding: 1rem 1.2rem;
}
@media screen and (max-width: 900px) {
  section.gt-block.comparison-table-section .comparison-table__cell--data {
    min-height: 5rem;
    padding: 0.8rem 0.6rem;
  }
}
section.gt-block.comparison-table-section .comparison-table__cell--data .comparison-table__cell-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  color: #0D142D;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.25;
}
@media screen and (max-width: 900px) {
  section.gt-block.comparison-table-section .comparison-table__cell--data .comparison-table__cell-content {
    font-size: 1.6rem;
  }
}
section.gt-block.comparison-table-section .comparison-table__cell--data .comparison-table__cell-content svg {
  width: 2.4rem;
  height: 2.4rem;
  display: block;
}
@media screen and (max-width: 900px) {
  section.gt-block.comparison-table-section .comparison-table__cell--data .comparison-table__cell-content svg {
    width: 2rem;
    height: 2rem;
  }
}
section.gt-block.comparison-table-section .theme-tooltip {
  /*display: inline-flex;
  vertical-align: middle;*/
}
section.gt-block.comparison-table-section [data-color="1"] {
  --ct-color: #6293F7;
}
section.gt-block.comparison-table-section [data-color="2"] {
  --ct-color: #1F65F4;
}
section.gt-block.comparison-table-section [data-color="3"] {
  --ct-color: #1F50CF;
}
section.gt-block.comparison-table-section [data-color="4"] {
  --ct-color: #203BA9;
}
section.gt-block.comparison-table-section [data-color="5"] {
  --ct-color: #202684;
}
section.gt-block.comparison-table-section [data-color="6"] {
  --ct-color: #20115E;
}
section.gt-block.comparison-table-section .comparison-table[data-cols="2"] .comparison-table__cell--label,
section.gt-block.comparison-table-section .comparison-table[data-cols="2"] .comparison-table__cell--head,
section.gt-block.comparison-table-section .comparison-table[data-cols="2"] .comparison-table__cell--data,
section.gt-block.comparison-table-section .comparison-table[data-cols="2"] .comparison-table__bg-col {
  flex: 0 0 calc((100% - 2 * var(--ct-col-gap) - var(--ct-label-extra-gap)) / 3);
  max-width: calc((100% - 2 * var(--ct-col-gap) - var(--ct-label-extra-gap)) / 3);
}
@media screen and (max-width: 900px) {
  section.gt-block.comparison-table-section .comparison-table[data-cols="2"] .comparison-table__cell--label,
  section.gt-block.comparison-table-section .comparison-table[data-cols="2"] .comparison-table__bg-col--label {
    flex: 0 0 40vw;
    max-width: 40vw;
  }
  section.gt-block.comparison-table-section .comparison-table[data-cols="2"] .comparison-table__cell--head,
  section.gt-block.comparison-table-section .comparison-table[data-cols="2"] .comparison-table__cell--data,
  section.gt-block.comparison-table-section .comparison-table[data-cols="2"] .comparison-table__bg-col:not(.comparison-table__bg-col--label) {
    flex: 0 0 16rem;
    max-width: 16rem;
  }
}
section.gt-block.comparison-table-section .comparison-table[data-cols="3"] .comparison-table__cell--label,
section.gt-block.comparison-table-section .comparison-table[data-cols="3"] .comparison-table__cell--head,
section.gt-block.comparison-table-section .comparison-table[data-cols="3"] .comparison-table__cell--data,
section.gt-block.comparison-table-section .comparison-table[data-cols="3"] .comparison-table__bg-col {
  flex: 0 0 calc((100% - 3 * var(--ct-col-gap) - var(--ct-label-extra-gap)) / 4);
  max-width: calc((100% - 3 * var(--ct-col-gap) - var(--ct-label-extra-gap)) / 4);
}
@media screen and (max-width: 900px) {
  section.gt-block.comparison-table-section .comparison-table[data-cols="3"] .comparison-table__cell--label,
  section.gt-block.comparison-table-section .comparison-table[data-cols="3"] .comparison-table__bg-col--label {
    flex: 0 0 40vw;
    max-width: 40vw;
  }
  section.gt-block.comparison-table-section .comparison-table[data-cols="3"] .comparison-table__cell--head,
  section.gt-block.comparison-table-section .comparison-table[data-cols="3"] .comparison-table__cell--data,
  section.gt-block.comparison-table-section .comparison-table[data-cols="3"] .comparison-table__bg-col:not(.comparison-table__bg-col--label) {
    flex: 0 0 16rem;
    max-width: 16rem;
  }
}
section.gt-block.comparison-table-section .comparison-table[data-cols="4"] .comparison-table__cell--label,
section.gt-block.comparison-table-section .comparison-table[data-cols="4"] .comparison-table__cell--head,
section.gt-block.comparison-table-section .comparison-table[data-cols="4"] .comparison-table__cell--data,
section.gt-block.comparison-table-section .comparison-table[data-cols="4"] .comparison-table__bg-col {
  flex: 0 0 calc((100% - 4 * var(--ct-col-gap) - var(--ct-label-extra-gap)) / 5);
  max-width: calc((100% - 4 * var(--ct-col-gap) - var(--ct-label-extra-gap)) / 5);
}
@media screen and (max-width: 900px) {
  section.gt-block.comparison-table-section .comparison-table[data-cols="4"] .comparison-table__cell--label,
  section.gt-block.comparison-table-section .comparison-table[data-cols="4"] .comparison-table__bg-col--label {
    flex: 0 0 40vw;
    max-width: 40vw;
  }
  section.gt-block.comparison-table-section .comparison-table[data-cols="4"] .comparison-table__cell--head,
  section.gt-block.comparison-table-section .comparison-table[data-cols="4"] .comparison-table__cell--data,
  section.gt-block.comparison-table-section .comparison-table[data-cols="4"] .comparison-table__bg-col:not(.comparison-table__bg-col--label) {
    flex: 0 0 16rem;
    max-width: 16rem;
  }
}
section.gt-block.comparison-table-section .comparison-table[data-cols="5"] .comparison-table__cell--label,
section.gt-block.comparison-table-section .comparison-table[data-cols="5"] .comparison-table__cell--head,
section.gt-block.comparison-table-section .comparison-table[data-cols="5"] .comparison-table__cell--data,
section.gt-block.comparison-table-section .comparison-table[data-cols="5"] .comparison-table__bg-col {
  flex: 0 0 calc((100% - 5 * var(--ct-col-gap) - var(--ct-label-extra-gap)) / 6);
  max-width: calc((100% - 5 * var(--ct-col-gap) - var(--ct-label-extra-gap)) / 6);
}
@media screen and (max-width: 900px) {
  section.gt-block.comparison-table-section .comparison-table[data-cols="5"] .comparison-table__cell--label,
  section.gt-block.comparison-table-section .comparison-table[data-cols="5"] .comparison-table__bg-col--label {
    flex: 0 0 40vw;
    max-width: 40vw;
  }
  section.gt-block.comparison-table-section .comparison-table[data-cols="5"] .comparison-table__cell--head,
  section.gt-block.comparison-table-section .comparison-table[data-cols="5"] .comparison-table__cell--data,
  section.gt-block.comparison-table-section .comparison-table[data-cols="5"] .comparison-table__bg-col:not(.comparison-table__bg-col--label) {
    flex: 0 0 16rem;
    max-width: 16rem;
  }
}
section.gt-block.comparison-table-section .comparison-table[data-cols="6"] .comparison-table__cell--label,
section.gt-block.comparison-table-section .comparison-table[data-cols="6"] .comparison-table__cell--head,
section.gt-block.comparison-table-section .comparison-table[data-cols="6"] .comparison-table__cell--data,
section.gt-block.comparison-table-section .comparison-table[data-cols="6"] .comparison-table__bg-col {
  flex: 0 0 calc((100% - 6 * var(--ct-col-gap) - var(--ct-label-extra-gap)) / 7);
  max-width: calc((100% - 6 * var(--ct-col-gap) - var(--ct-label-extra-gap)) / 7);
}
@media screen and (max-width: 900px) {
  section.gt-block.comparison-table-section .comparison-table[data-cols="6"] .comparison-table__cell--label,
  section.gt-block.comparison-table-section .comparison-table[data-cols="6"] .comparison-table__bg-col--label {
    flex: 0 0 40vw;
    max-width: 40vw;
  }
  section.gt-block.comparison-table-section .comparison-table[data-cols="6"] .comparison-table__cell--head,
  section.gt-block.comparison-table-section .comparison-table[data-cols="6"] .comparison-table__cell--data,
  section.gt-block.comparison-table-section .comparison-table[data-cols="6"] .comparison-table__bg-col:not(.comparison-table__bg-col--label) {
    flex: 0 0 16rem;
    max-width: 16rem;
  }
}
section.gt-block.comparison-table-section .comparison-table__scroll-fade {
  display: none;
}
@media screen and (max-width: 900px) {
  section.gt-block.comparison-table-section .comparison-table__scroll-fade {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 4rem;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    z-index: 3;
  }
}
