@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 */
.tab-side-fea.alt .tab-side-fea__box {
  border-radius: 12px;
  background: #F1F5F9;
}
.tab-side-fea.alt .tab-side-fea__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}
.tab-side-fea.alt .tab-side-fea__list .item {
  display: flex;
  width: 100%;
  flex: 0 0 100%;
  gap: 12px;
}
.tab-side-fea.alt .tab-side-fea__list .item .item__head {
  display: inline-flex;
  flex: 0 0 100%;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding: 12px;
}
.tab-side-fea.alt .tab-side-fea__list .item .item__head .icon {
  padding: 0;
  flex: 0 0 100%;
  width: 100%;
  max-width: 36px;
}
.tab-side-fea.alt .tab-side-fea__list .item.active .item__head {
  border: 1px solid #C02A34;
  border-radius: 8px;
  background: #FCF1F2;
  flex: 0 0 100%;
  width: 100%;
}
.tab-side-fea.alt .tab-side-fea__list .item.active .item__head .text {
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.tab-side-fea.alt.mekari .tab-side-fea__list .item.active .item__head {
  background: #F7F4FF;
  border-color: #5B37D4;
}
.tab-side-fea.alt.qontak .tab-side-fea__list .item.active .item__head {
  background: #ECF5FF;
  border-color: #2C76ED;
}
.tab-side-fea__title {
  text-align: center;
  margin: 0 0 8px;
}
.tab-side-fea__desc {
  text-align: center;
  margin: 0 0 24px;
}
.tab-side-fea__action {
  justify-content: center;
  margin: 0 -8px 24px;
  display: flex;
}
.tab-side-fea__action .btn {
  margin-left: 8px;
  margin-right: 8px;
}
.tab-side-fea__list {
  display: block;
  width: 100%;
  padding: 12px;
  margin-right: 24px;
}
.tab-side-fea__list .item__head {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #D0D6DD;
  cursor: pointer;
  transition: all 0.4s ease;
}
.tab-side-fea__list .item__head .icon {
  display: block;
  width: 100%;
  max-width: 60px;
  flex: 0 0 60px;
  padding: 12px;
}
.tab-side-fea__list .item__head .icon .box img {
  display: block;
  width: 36px;
  height: 36px;
  filter: grayscale(100);
  opacity: 0.7;
  transition: all 0.4s ease;
}
.tab-side-fea__list .item__head .text {
  display: block;
  width: 100%;
  max-width: calc(100% - 60px);
  flex: 0 0 calc(100% - 60px);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #626B79;
}
.tab-side-fea__list .item__box {
  display: none;
}
.tab-side-fea__list .item.active .item__head {
  border-bottom-color: #4B61DD;
  border-bottom-width: 4px;
}
.tab-side-fea__list .item.active .icon .box img {
  filter: grayscale(0);
  opacity: 1;
}
.tab-side-fea__list .item.active .text {
  color: #232933;
}
.tab-side-fea__list .item__action a {
  margin-right: 16px;
}
.tab-side-fea__list .item__action a:last-child {
  margin-right: 16px;
}
.tab-side-fea__box {
  background: #EAECFB;
  padding: 32px;
  display: none;
}
.tab-side-fea__box.active {
  display: block;
}
.tab-side-fea__box img {
  margin: 0 auto 24px auto;
}
.tab-side-fea__box h3 {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.tab-side-fea__box .item__action a {
  margin-right: 16px;
}
.tab-side-fea__box .item__action a:last-child {
  margin-right: 16px;
}
.tab-side-fea__left {
  padding-top: 24px;
  padding-right: 52px !important;
}
.tab-side-fea__right {
  padding-top: 24px;
}
.tab-side-fea__wrap {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (max-width: 991px) {
  .tab-side-fea {
    padding-left: 8px;
    padding-right: 8px;
  }
  .tab-side-fea.alt .tab-side-fea__box {
    border-radius: 0;
    background: #F1F5F9;
  }
  .tab-side-fea.alt .item.active {
    display: block;
  }
  .tab-side-fea.alt .item.active .item__head {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    border-bottom: 4px solid #704bec !important;
  }
  .tab-side-fea .item__box {
    background: #F2F4F7;
    padding: 24px 24px 32px;
  }
  .tab-side-fea .item__box img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 0 auto 24px auto;
  }
  .tab-side-fea .item.active .item__box {
    display: block;
  }
  .tab-side-fea__action {
    flex-wrap: wrap;
    margin: 0;
  }
  .tab-side-fea__action .btn {
    display: block;
    margin-bottom: 8px;
  }
  .tab-side-fea__list {
    padding: 0;
  }
  .tab-side-fea__box {
    padding: 0 24px 24px;
    display: none;
  }
  .tab-side-fea__box.active {
    display: none;
  }
  .tab-side-fea__left {
    padding-right: 12px !important;
  }
  .tab-side-fea__right {
    display: none;
  }
  .tab-side-fea__wrap {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .tab-side-fea .item__action a {
    margin-right: 0;
    margin-bottom: 16px;
  }
  .tab-side-fea .item__action a.btn {
    width: 100%;
    display: block;
  }
  .tab-side-fea .item__action a:last-child {
    margin-bottom: 0;
  }
  .tab-side-fea__box .item__action a {
    margin-right: 0;
    margin-bottom: 16px;
  }
  .tab-side-fea__box .item__action a.btn {
    width: 100%;
    display: block;
  }
  .tab-side-fea__box .item__action a:last-child {
    margin-bottom: 0;
  }
}/*# sourceMappingURL=tab-side-fea.css.map */