@keyframes bounceDown {
  0% {
    transform: scale(1, 1) translateX(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateX(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-4px);
  }
  50% {
    transform: scale(1.05, 0.95) translateY(6px);
  }
  57% {
    transform: scale(1, 1) translateY(-2px);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes bounce2 {
  0% {
    transform: scale(1, 1) translateX(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateX(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateX(-4px);
  }
  50% {
    transform: scale(1.05, 0.95) translateX(2px);
  }
  57% {
    transform: scale(1, 1) translateX(-2px);
  }
  64% {
    transform: scale(1, 1) translateX(0);
  }
  100% {
    transform: scale(1, 1) translateX(0);
  }
}
/* Fonts */
.table-compare {
  padding: 32px 0;
  background-color: #F1F5F9;
}
.table-compare__title {
  text-align: center;
}
.table-compare__head {
  justify-content: center;
}
.table-compare__wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}
.table-compare__wrapper::-webkit-scrollbar {
  height: 10px;
  width: auto;
}
.table-compare__table {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  background-color: #E7EDF5;
  padding: 24px;
  border-radius: 8px;
  color: #232933;
  width: 904px;
}
.table-compare__table .table__head, .table-compare__table .table__body {
  width: 100%;
  flex: 0 0 100%;
}
.table-compare__table .table__row {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
}
.table-compare__table .table__col {
  flex: 1;
  width: 100%;
  min-width: 250px;
}
.table-compare__table .table__col .box {
  background-color: #FFF;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 12px;
  border-bottom: 1px solid #E7EDF5;
}
.table-compare__table .table__col .box .title {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  align-items: center;
}
.table-compare__table .table__col .box .title .ico {
  flex: 0 0 24px;
  width: 24px;
  display: none;
}
.table-compare__table .table__col .box .title strong {
  flex: 0 0 auto;
  width: auto;
}
.table-compare__table .table__col.checked .box {
  padding-left: 48px;
}
.table-compare__table .table__head .table__row .table__col {
  position: relative;
}
.table-compare__table .table__head .table__row .table__col.active .box {
  border: 2px solid #631CFE;
  border-bottom: 1px solid #E7EDF5;
}
.table-compare__table .table__head .table__row .table__col.hide-mobile {
  display: none;
}
.table-compare__table .table__head .table__row .table__col .box {
  padding: 24px 16px 16px 16px;
  border-radius: 8px 8px 0 0;
  justify-content: center;
  align-items: center;
  min-height: 132px;
  gap: 24px;
}
.table-compare__table .table__head .table__row .table__col .head__badge {
  position: absolute;
  left: 50%;
  top: -12px;
  transform: translateX(-50%);
  display: inline-flex;
  padding: 2px 12px;
  color: #fff;
  background-color: #631CFE;
  font-size: 14px;
  line-height: 20px;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  border-radius: 6px;
  width: auto;
  flex: 0 0 auto;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.table-compare__table .table__head .table__row .table__col .head__title {
  font-size: 20px;
  line-height: 28px;
  width: 100%;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.table-compare__table .table__head .table__row .table__col .head__img {
  width: 100%;
}
.table-compare__table .table__head .table__row .table__col .head__img img {
  display: block;
  height: 46px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
.table-compare__table .table__head .table__row .table__col .head__cta {
  flex: 0 0 100%;
  width: 100%;
}
.table-compare__table .table__body .table__row .table__col.hide-mobile {
  display: none;
}
.table-compare__table .table__body .table__row .table__col.table__group-title {
  font-size: 20px;
  line-height: 28px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.table-compare__table .table__body .table__row .table__col.table__group-title .box {
  background: transparent;
}
.table-compare__table .table__body .table__row .table__col.table__group-title.hide-desktop strong {
  opacity: 1;
  visibility: visible;
}
.table-compare__table .table__body .table__row .table__col.active.table__group-title .box {
  border-left: 2px solid #631CFE;
  border-right: 2px solid #631CFE;
}
.table-compare__table .table__body .table__row .table__col.active .box {
  border-left: 2px solid #631CFE;
  border-right: 2px solid #631CFE;
}
.table-compare__table .table__body .table__row .table__col .box {
  align-items: flex-start;
  display: block;
}
.table-compare__table .table__body .table__row .table__col .box .title {
  display: flex;
  margin-bottom: 8px;
}
.table-compare__table .table__body .table__row .table__col .box .value-icon {
  display: flex;
}
.table-compare__table .table__body .table__row .table__col .box .value-icon .ico {
  display: block;
  width: 24px;
  height: 24px;
  min-width: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-right: 12px;
}
.table-compare__table .table__body .table__row .table__col .box .content.checked {
  padding-left: 36px;
  position: relative;
}
.table-compare__table .table__body .table__row .table__col .box .content.checked::before {
  content: "";
  width: 24px;
  height: 24px;
  top: 1px;
  left: 0;
  background-image: url("data:image/svg+xml;base64,CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMS4yNSAxMkMxLjI1IDYuMDg1NzkgNi4wODU3OSAxLjI1IDEyIDEuMjVDMTcuOTE0MiAxLjI1IDIyLjc1IDYuMDg1NzkgMjIuNzUgMTJDMjIuNzUgMTcuOTE0MiAxNy45MTQyIDIyLjc1IDEyIDIyLjc1QzYuMDg1NzkgMjIuNzUgMS4yNSAxNy45MTQyIDEuMjUgMTJaTTE2Ljc3OTkgOS43MDA4MUMxNy4wNzMgOS40MDgxOCAxNy4wNzM0IDguOTMzMyAxNi43ODA4IDguNjQwMTVDMTYuNDg4MiA4LjM0NyAxNi4wMTMzIDguMzQ2NTggMTUuNzIwMSA4LjYzOTIyTDEwLjU4MDUgMTMuNzY5OEw4LjI4MDMzIDExLjQ2OTdDNy45ODc0NCAxMS4xNzY4IDcuNTEyNTYgMTEuMTc2OCA3LjIxOTY3IDExLjQ2OTdDNi45MjY3OCAxMS43NjI2IDYuOTI2NzggMTIuMjM3NCA3LjIxOTY3IDEyLjUzMDNMMTAuMDQ5NyAxNS4zNjAzQzEwLjM0MjQgMTUuNjUzMSAxMC44MTY5IDE1LjY1MzMgMTEuMTA5OSAxNS4zNjA4TDE2Ljc3OTkgOS43MDA4MVoiIGZpbGw9IiM2OEJFNzkiLz4KPC9zdmc+Cg==");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
}
.table-compare__table .table__body .table__row .table__col .box.as_label {
  align-items: center;
}
.table-compare__table .table__body .table__row:last-child .table__col .box {
  border-radius: 0 0 8px 8px;
}
.table-compare__table .table__body .table__row:last-child .table__col.active .box {
  border: 2px solid #631CFE;
  border-top: none;
}
@media screen and (min-width: 1200px) {
  .table-compare {
    padding: 64px 0;
  }
  .table-compare__wrapper {
    overflow: hidden;
  }
  .table-compare__table {
    width: 100%;
  }
  .table-compare__table .table__head .table__row .table__col.hide-mobile {
    display: block;
  }
  .table-compare__table .table__body .table__row .table__col.hide-mobile {
    display: block;
  }
  .table-compare__table .table__body .table__row .table__col.table__group-title.hide-desktop strong {
    opacity: 0;
    visibility: hidden;
  }
  .table-compare__table .table__body .table__row .table__col .box {
    display: flex;
  }
  .table-compare__table .table__body .table__row .table__col .box .title {
    display: none;
  }
  .table-compare__table .table__body .table__row .table__col .box.as_label .title {
    display: flex;
  }
  .table-compare__table .table__body .table__row .table__col .box.as_label .title .ico {
    display: block;
  }
  .table-compare__table .table__body .table__row .table__col .box.as_label .value-icon {
    display: none;
  }
}/*# sourceMappingURL=table-compare-mekari.css.map */