﻿/* #region Common */
.front-page {
  position: relative;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #181D27;
}

.front-page .container {
  width: 100%;
  max-width: 1310px;
  margin: 0 auto;
}

.nowrap {
  white-space: nowrap;
}

.text-center {
  text-align: center;
}

.text-bold {
  font-family: Inter Bold;
}

.default-title {
  font-family: Inter Bold;
  font-weight: normal;
  font-size: 32px;
  color: #1F1F1F;
  line-height: 1.25;
  letter-spacing: -0.2px;
  margin: 0;
}

.pb-title {
  padding-bottom: 12px;
}

.default-subtitle {
  font-size: 20px;
  color: #535862;
}

.section-p {
  padding: 48px 0;
}

.check-item {
  background: url(/mshopkeeper/images/front-page/ic-check.svg) no-repeat top left;
  background-size: 24px;
  padding-left: 32px;
  color: #535862;
  letter-spacing: -0.2px;
  text-align: start;
}

.gradient-text {
  background: linear-gradient(70.21deg, #1B49F5 21.68%, #875BF7 63.83%, #F969B7 80.58%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 500% auto;
  animation: textShine 5s ease-in-out infinite alternate;
}

.play-video-item {
  cursor: pointer;
}

.cta-group {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
}

.justify-center {
  justify-content: center;
}

a.base-btn {
  position: relative;
  font-family: Inter SemiBold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  letter-spacing: -0.2px;
  border-radius: 12px;
  transition: all ease 0.5s;
  box-shadow: 0px 3px 6px -6px rgba(10, 27, 137, 0.03), 0px 6px 20px 3px rgba(116, 135, 255, 0.03);
}

a.primary-btn {
  background: linear-gradient(61.32deg, #4155F5 -13.94%, #875BF7 92.5%);
  padding: 14px 26px;
  color: #FFF;
}

a.second-btn {
  border: 2px solid transparent;
  padding: 12px 24px;
  background: linear-gradient(#FFF, #FFF) padding-box, linear-gradient(61.32deg, #4155F5 -13.94%, #875BF7 92.5%) border-box;
  color: #1B49F5;
}

a.third-btn {
  background-color: #FFF;
  border: 2px solid transparent;
  padding: 12px 24px;
  color: #1B49F5;
}

a.second-btn span,
a.third-btn span {
  background: linear-gradient(61.32deg, #4155F5 -13.94%, #875BF7 92.5%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

a.arrow-btn img {
  transform: translateX(0px);
  transition: transform 0.3s ease;
}

a.arrow-btn:hover img {
  transform: translateX(4px);
}

a.shadow-btn {
  opacity: 1 !important;
}

.shadow-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  background: linear-gradient(90deg,
      #ff6ec4,
      #7873f5,
      #22d3ee,
      #4ade80,
      #ff6ec4);
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.3s ease;
}

.shadow-btn:hover::before {
  opacity: 1;
  animation: shadowMove 4s linear infinite;
}

.border-btn:hover {
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(90deg,
      #ff6ec4,
      #7873f5,
      #4ade80,
      #22d3ee,
      #ff6ec4) border-box;
  background-size: 200% 200%;
  animation: borderMove 3s linear infinite;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 100%;
}

.bg-play-btn {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: #FFF;
  animation: pulse 1.2s ease infinite;
}

.home-page form[lz-id='f2ebf8f9-0985-4b2b-bfc9-c43276c732f2'].private-form .submit-wrapper .btn-form-submit {
  background: linear-gradient(61.32deg, #4155F5 -13.94%, #875BF7 92.5%);
  padding: 14px 20px !important;
  height: 52px !important;
  font-family: Inter SemiBold !important;
  font-size: 16px !important;
  border-radius: 12px !important;
}

@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }

  50% {
    opacity: 0.8;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

@keyframes shadowMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 300% 50%;
  }
}

@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@media (max-width: 979px) {
  .home-page {
    gap: 60px;
  }

  .default-title {
    font-size: 28px;
  }

  .default-subtitle {
    font-size: 18px;
  }

  .section-p {
    padding: 40px 0;
  }

  .play-btn {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 767px) {
  .default-title {
    font-size: 24px;
  }

  .cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-group:has(> :nth-child(3))> :first-child {
    width: 100%;
    justify-content: center;
    max-width: 332px;
    margin: 0 auto;
  }

  .play-btn {
    width: 36px;
    height: 36px;
  }

  .section-p {
    padding: 30px 0;
  }
}

/* #endregion */

/* #region hero */
.hero {
  background: linear-gradient(360deg, rgba(195, 181, 253, 0.5) -16.88%, rgba(248, 250, 255, 0.5) 52.03%, rgba(255, 255, 255, 0) 70.23%);
  padding: 96px 0;
}

.hero-head {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: Inter Bold;
  font-size: 52px;
  line-height: 60px;
  margin: 0;
}

.hero-desc {
  font-size: 20px;
  max-width: 762px;
  padding-bottom: 32px;
  margin: 0 auto;
}

.hero-wrap {
  display: flex;
  gap: 32px;
  padding-top: 64px;
}

.hero-image {
  position: relative;
  width: 733px;
  aspect-ratio: 733/509;
  max-width: 100%;
}

.hero-image .hero-img {
  position: absolute;
  max-width: 795px;
  width: 109%;
  left: -4%;
  z-index: 1;
}

.hero-image .hero-img-shadow {
  position: absolute;
}

.hero-image .play-btn {
  z-index: 3;
}

.hero-register {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 515px;
  height: fit-content;
  border: 2px solid transparent;
  background:
    linear-gradient(#FFF, #FFF) padding-box,
    linear-gradient(205.64deg, #A48AFB 0.25%, #D9E6FF 74.4%) border-box;
  border-radius: 24px;
  overflow: hidden;
  padding: 8px;
}

.hero-register-title {
  font-family: Inter SemiBold;
  font-size: 20px;
  text-align: center;
  color: #252B37;
  padding: 24px 24px 0;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 36px;
    line-height: 1.2;
  }
}

@media (max-width: 979px) {
  .hero-section {
    padding: 32px 0;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-wrap {
    flex-direction: column;
    align-items: center;
    padding-top: 32px;
    gap: 48px;
  }
}

@media (max-width: 767px) {
  .hero-register {
    padding: 0;
  }

  .hero-desc {
    font-size: 18px;
    padding-bottom: 24px;
  }
}

/* #endregion */

/* #region bussiness-category */
.bussiness-category .default-title {
  margin-bottom: 40px;
}

.bc-body {
  display: flex;
  gap: 32px;
}

.bc-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 32px;
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.bc-card--retail {
  background: linear-gradient(180deg, #F0EEFF 0%, #FBFAFF 100%);
}

.bc-card--fnb {
  background: linear-gradient(178.83deg, #DDEAFF 0%, #F8FAFF 100%);
}

.bc-card:hover {
  box-shadow: 0 8px 32px rgba(65, 85, 245, 0.1);
}

.bc-card-logo {
  position: absolute;
  bottom: 0px;
  right: 16px;
  height: auto;
  pointer-events: none;
}

.bc-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bc-card-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bc-card-title {
  font-family: Inter Bold, Inter, Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.2px;
  color: #181D27;
}

.bc-card-desc {
  font-size: 14px;
  line-height: 18px;
  color: #535862;
  letter-spacing: -0.2px;
}

.bc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bc-grid li {
  margin: 0;
}

.bc-item {
  display: flex;
  align-items: center;
}

.bc-item-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  width: 100%;
  cursor: pointer;
}

.bc-item-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.bc-item-text {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.2px;
  color: #181D27;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.bc-item-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.bc-item-link:hover .bc-item-text {
  background: linear-gradient(61.32deg, #4155F5 -13.94%, #875BF7 92.5%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bc-item-link:hover .bc-item-arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 980px) {
  .bussiness-category {
    padding-top: 96px;
  }
}

@media (max-width: 979px) {
  .bussiness-category {
    padding-top: 48px;
  }

  .bc-body {
    flex-direction: column;
    gap: 20px;
  }

  .bussiness-category .default-title {
    margin-bottom: 28px;
  }
}

@media (max-width: 767px) {
  .bc-card {
    padding: 24px;
  }

  .bc-card-title {
    font-size: 20px;
  }

  .bc-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bc-item-text {
    white-space: normal;
  }
}

/* #endregion */

/* #region optimize */
.optimize .default-title {
  margin-bottom: 40px;
}

.optimize-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.optimize-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  padding: 24px;
  overflow: hidden;
  border: none;
}

.optimize-card--1 {
  background: linear-gradient(180deg, #EDFCF2 0%, #FFFFFF 100%);
}

.optimize-card--2 {
  background: linear-gradient(180deg, #F0E7FF 2.88%, #FFFFFF 100%);
}

.optimize-card--3 {
  background: linear-gradient(180deg, #E7F1FF 0%, #FFFFFF 100%);
}

.optimize-card--4 {
  background: linear-gradient(180deg, #FFF7E7 0%, #FFFFFF 100%);
}

.optimize-card-img {
  width: 100%;
  aspect-ratio: 254/220;
  flex-shrink: 0;
  position: relative;
}

.optimize-card-img img {
  position: absolute;

}

.optimize-card--1 .optimize-card-img img {
  width: 115%;
  max-width: 294px;
  left: -8%;
}

.optimize-card--2 .optimize-card-img img {
  width: 114%;
  max-width: 292px;
  left: -5%;
}

.optimize-card--3 .optimize-card-img img {
  width: 106%;
  max-width: 271px;
  left: -2%;
}

.optimize-card--4 .optimize-card-img img {
  position: relative;
  margin: 0 auto;
  max-width: 254px;
}

.optimize-card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.optimize-card-title {
  font-family: Inter SemiBold, Inter, Arial, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #181D27;
  letter-spacing: -0.2px;
}

.optimize-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 1024px) {
  .optimize-body {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .optimize-body {
    grid-template-columns: 1fr;
  }

  .optimize .default-title {
    margin-bottom: 24px;
  }
}

/* #endregion */

/* #region advice */
.advice-wrap {
  background: url(/mshopkeeper/images/front-page/bg-cta-action.webp) no-repeat center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px;
  border-radius: 24px;
  overflow: hidden;
}

.advice-title {
  font-family: Inter Bold;
  font-size: 32px;
  line-height: 40px;
  color: #FFF;
  letter-spacing: -0.2px;
  text-align: center;
  max-width: 450px;
}

.advice-form {
  position: relative;
}

.advice-line {
  position: absolute;
}

@media (max-width: 1100px) {
  .advice-wrap {
    padding: 48px 24px;
  }

  .advice-title {
    font-size: 24px;
  }
}

@media (max-width: 979px) {
  .advice-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    background: linear-gradient(89.4deg, #FF5E14 1.19%, rgba(255, 162, 0, 0) 153.34%);
  }
}

/* #endregion */

/* #region channel */
.channel .default-title {
  margin-bottom: 40px;
}

.channel-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.channel-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 23px;
  border-radius: 9999px;
  border: 1px solid #D5D7DA;
  background: #FFF;
  font-family: Inter Medium, Arial, sans-serif;
  font-size: 16px;
  color: #252B37;
  letter-spacing: -0.2px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.channel-tab-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(69%) sepia(8%) saturate(271%) hue-rotate(175deg) brightness(94%) contrast(84%);
}

.channel-tab.active {
  border: 2px solid transparent;
  background: linear-gradient(#FFF, #FFF) padding-box, linear-gradient(61.32deg, #4155F5 -13.94%, #875BF7 92.5%) border-box;
  font-family: Inter SemiBold, Inter, Arial, sans-serif;
  padding: 10px 22px;
  box-shadow: 0px 8px 30px 0px rgba(116, 135, 255, 0.05), 0px 8px 30px 0px rgba(10, 27, 137, 0.03);
}

.channel-tab.active .channel-tab-icon {
  filter: none;
}

.channel-tab.active span {
  background: linear-gradient(61deg, var(--Brand-600, #4155F5) -13.94%, var(--Violet-500, #875BF7) 92.5%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.channel-panels {
  position: relative;
}

.channel-panel {
  display: none;
  gap: 64px;
  align-items: flex-start;
  justify-content: center;
}

.channel-panel.active {
  display: flex;
}

.channel-panel-img {
  width: 608px;
  flex-shrink: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #EEF4FF;
}

.channel-panel-img img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.channel-panel-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 608px;
  flex-shrink: 0;
}

.channel-panel-title {
  font-family: Inter Bold, Inter, Arial, sans-serif;
  font-size: 24px;
  color: #181D27;
  letter-spacing: -0.2px;
  line-height: 1;
}

.channel-panel-content .optimize-checklist {
  gap: 20px;
}

@media (max-width: 1310px) {
  .channel-panel {
    gap: 32px;
  }

  .channel-panel-img {
    width: 50%;
    min-width: 0;
  }

  .channel-panel-content {
    width: 50%;
    min-width: 0;
  }
}

@media (max-width: 979px) {
  .channel-tabs {
    gap: 8px;
    margin-bottom: 40px;
  }

  .channel-tab {
    padding: 10px 16px;
    font-size: 14px;
  }

  .channel-tab-icon {
    width: 20px;
    height: 20px;
  }

  .channel-panel.active {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .channel-panel-img {
    width: 100%;
  }

  .channel-panel-img img {
    height: auto;
    aspect-ratio: 608/405;
  }

  .channel-panel-content {
    width: 100%;
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .channel .default-title {
    margin-bottom: 24px;
  }

  .channel-tabs {
    gap: 8px;
    margin-bottom: 28px;
    display: grid;
  }

  .channel-tab {
    padding: 8px 14px;
    font-size: 13px;
  }

  .channel-panel-title {
    font-size: 20px;
  }
}

/* #endregion */

/* #region feature */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 64px;
}

.feature-item-reverse {
  flex-direction: row-reverse;
}

.feature-title-mobile {
  display: none;
}

.feature-image {
  flex-shrink: 0;
  width: 48%;
  max-width: 608px;
  border-radius: 24px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  display: block;
}

.feature-item-content {
  flex: 1;
}

.feature-desc {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-cta {
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .feature-item {
    gap: 40px;
  }

  .feature-image {
    width: 46%;
  }
}

@media (max-width: 979px) {
  .feature-list {
    gap: 48px;
  }

  .feature-item,
  .feature-item-reverse {
    flex-direction: column;
    gap: 28px;
  }

  .feature-title-mobile {
    display: block;
    text-align: center;
  }

  .feature-title {
    display: none;
  }

  .feature-image {
    width: 100%;
    max-width: 100%;
  }

  .feature-desc {
    padding: 24px 0;
  }

  .feature-cta {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .feature-list {
    gap: 60px;
  }

  .feature-cta {
    gap: 12px;
  }

  .feature-item,
  .feature-item-reverse {
    gap: 16px;
  }

  .feature-desc {
    padding: 0 0 24px;
    gap: 12px;
  }
}

/* #endregion */

/* #region solution */
.solution-bg {
  width: 100%;
  max-width: 1472px;
  margin: 0 auto;
  background: url(/mshopkeeper/images/front-page/bg-solution.webp) no-repeat center;
  background-size: cover;
  border-radius: 32px;
  padding: 96px 0;
}

.solution-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.solution-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #475467;
  text-align: center;
  margin-top: 12px;
}

.solution-cta {
  margin-top: 8px;
}

/* Tab panel */
.tab-panel {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.tab-panel-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 0 0 484px;
  min-width: 0;
}

.tab-panel-item {
  border-radius: 16px;
  padding: 16px 20px;
  cursor: pointer;
  transition: background 0.2s;
}

.tab-panel-item.active {
  background: #fff;
  border: 1px solid #D9E6FF;
  box-shadow: 0px 8px 30px -4px rgba(10, 27, 137, 0.03), 0px 8px 30px -6px rgba(116, 135, 255, 0.05);
}

.tab-panel-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tab-panel-title h3 {
  font-family: Inter SemiBold;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.tab-panel-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.tab-panel-desc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.tab-panel-item.active .tab-panel-desc {
  max-height: 500px;
  opacity: 1;
  padding: 16px 20px 0;
}

.tab-panel-image {
  flex: 1;
  min-width: 0;
  position: relative;
}

.tab-panel-img {
  width: 100%;
  border-radius: 16px;
  display: none;
}

.tab-panel-img-2 {
  position: absolute;
  width: 103%;
  max-width: 753px;
  left: -2%;
}

.tab-panel-img-4 {
  position: absolute;
  max-width: 764px;
  width: 105%;
  left: -1%;
}

.tab-panel-img.active {
  display: block;
}

@media (max-width: 1199px) {
  .solution-bg {
    padding: 64px 0;
  }

  .tab-panel {
    gap: 40px;
  }

  .tab-panel-list {
    flex: 0 0 380px;
  }
}

@media (max-width: 979px) {
  .solution-bg {
    padding: 48px 0;
    border-radius: 24px;
  }

  .tab-panel {
    flex-direction: column;
    gap: 32px;
  }

  .tab-panel-list {
    flex: none;
    width: 100%;
  }

  .tab-panel-image {
    width: 100%;
  }

  .solution-inner {
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .solution-bg {
    padding: 32px 0;
    border-radius: 16px;
  }

  .solution-inner {
    gap: 32px;
  }
}

/* #endregion */

/* #region business */
.business {
  overflow: hidden;
}

.business-head {
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.business-tabs {
  display: flex;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 9999px;
  padding: 8px;
  width: fit-content;
  margin: 0 auto 32px;
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 2;
}

.business-tab {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 9999px;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #181d27;
  letter-spacing: -0.2px;
  line-height: 24px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  -webkit-text-fill-color: #181d27;
}

.business-tab.active {
  background: #fff;
}

.business-tab.active span {
  background: linear-gradient(79.45deg, #4155F5 -14.47%, #759AFF 106.2%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.business-panels {
  position: relative;
}

.business-panel {
  display: none;
  text-align: center;
  position: relative;
  aspect-ratio: 1280/478;
}

.business-panel.active {
  display: block;
}

.business-panel img {
  position: absolute;
  left: 0;
  top: -50%;
}

@media (max-width: 1023px) {
  .business-tabs {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .business-tabs {
    flex-direction: column;
    width: 100%;
    border-radius: 16px;
    align-items: stretch;
  }

  .business-tab {
    text-align: center;
  }
}

/* #endregion */

/* #region success story */
.ss-main {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.ss-left {
  flex: 1;
  min-width: 0;
}

.ss-title {
  margin-bottom: 40px;
}

.ss-item {
  display: none;
  animation: ssFadeIn 0.35s ease forwards;
}

.ss-item.active {
  display: block;
}

@keyframes ssFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ss-name {
  font-family: Inter SemiBold;
  font-size: 20px;
  text-transform: uppercase;
  padding: 16px 0 16px 20px;
  line-height: 1.4;
  border-left: 4px solid #7839EE;
}

.ss-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 16px 0 16px 20px;
  border-left: 4px solid #E9EAEB;
}

.ss-stat-num {
  font-family: Inter Bold;
  font-size: 32px;
  line-height: 1.25;
  color: #181D27;
  margin-bottom: 12px;
}

.ss-stat-desc {
  color: #535862;
  font-size: 18px;
  line-height: 1.333;
}

.ss-channels {
  padding: 16px 24px;
  border-left: 4px solid #E9EAEB;
}

.ss-channels-label {
  color: #535862;
  font-size: 18px;
  line-height: 1.333;
  margin-bottom: 20px;
}

.ss-channels-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 32px;
}

.ss-channel {
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Inter SemiBold;
  font-size: 16px;
  color: #181D27;
}

/* Right side */
.ss-right {
  flex: 0 0 auto;
  width: 58%;
  max-width: 732px;
}

.ss-img {
  display: none;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  animation: ssFadeIn 0.35s ease forwards;
}

.ss-img.active {
  display: block;
}

.ss-img>img {
  width: 100%;
  display: block;
  aspect-ratio: 732/488;
  object-fit: cover;
}

.ss-img-overlay {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(188, 212, 255, 0.16) 79.18%, #759AFF 104.44%);
}

.ss-img-desc {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 24px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.ss-img-text {
  font-family: Inter SemiBold;
  font-size: 20px;
  color: #FFF;
  max-width: 398px;
}

a.ss-case-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: Inter SemiBold;
  color: #FFF;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Logo navigation */
.ss-logos {
  padding-top: 32px;
}

.ss-logos .owl-stage {
  display: flex;
}

.ss-logos .owl-item+.owl-item .ss-logo {
  border-left: 1px solid #D7D7D7;
}

.ss-logo {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  filter: grayscale(1) opacity(0.4);
  transition: filter ease 0.3s;
}

.ss-logo.active {
  filter: none;
}

.ss-logo img {
  max-width: unset;
  max-height: 60px;
  object-fit: contain;
  display: block;
}

.ss-cta {
  padding-top: 40px;
}

@media (max-width: 1200px) {
  .ss-main {
    gap: 40px;
  }

  .ss-right {
    width: 50%;
  }
}

@media (max-width: 979px) {
  .ss-main {
    flex-direction: column;
    gap: 32px;
  }

  .ss-right {
    width: 100%;
    max-width: 100%;
  }

  .ss-title {
    margin-bottom: 28px;
  }

  .ss-stat-num {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .ss-stat-num {
    font-size: 28px;
  }

  .ss-logos {
    margin-top: 28px;
    padding-top: 20px;
  }

  .ss-logo {
    padding: 12px 16px;
  }

  .ss-img-desc {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 0 16px 16px;
  }

  .ss-img-name {
    font-size: 16px;
  }

  .ss-name,
  .ss-stat-desc {
    font-size: 16px;
  }

  .ss-stats {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .ss-name,
  .ss-stats,
  .ss-channels {
    padding: 8px 0 8px 16px;
  }

  .ss-cta {
    padding-top: 32px;
  }
}

/* #endregion */

/* #region News */
.news-bg {
  background: linear-gradient(257.45deg, #F8FAFF -29.49%, #F5F3FF 125.17%);
  padding: 96px 0;
}

.news-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
}

.news-item {
  background-color: #FFF;
  border-radius: 24px;
  padding: 24px 23px;
  box-shadow: 0px 8px 30px -4px rgba(10, 27, 137, 0.03), 0px 8px 30px -6px rgba(116, 135, 255, 0.05);
}

.news-item-thumb {
  width: 100%;
  aspect-ratio: 357/240;
  display: block;
  transition: all 0.3s ease;
  border-radius: 16px;
  overflow: hidden;
}

.news-item-thumb:hover img {
  transform: scale(1.05);
}

.news-item-content {
  padding-top: 20px;
}

a.news-item-title {
  font-family: Inter SemiBold;
  font-size: 20px;
  color: #181D27;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
}

.news-item-info {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.news-item img.news-item-source {
  height: 38px;
  width: auto;
}

.news-item-date {
  display: flex;
  align-items: center;
  gap: 4px;
}

.news-item .news-item-date img {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.news-item-date span {
  font-family: Inter Medium;
  font-size: 14px;
  color: #535862;
}

@media (max-width: 979px) {
  .news-bg {
    padding: 48px 0;
  }

  .news-wrap {
    display: block;
    gap: 0;
  }

  .news-item {
    max-width: 100%;
    margin: 0;
  }

  .news-wrap .owl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-top: 16px;
  }

  .news-wrap.owl-theme .owl-dot span {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #D5D7DA;
    transition: background 0.2s, width 0.2s;
  }

  .news-wrap.owl-theme .owl-dot.active span {
    background: #7839EE;
  }
}

@media (max-width: 767px) {
  .news-bg {
    padding: 32px 0;
  }

  .news-wrap {
    padding-top: 32px;
  }

  .news-item {
    padding: 16px;
  }

  a.news-item-title {
    font-size: 18px;
  }
}

/* #endregion */

/* #region posts */
.posts-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 40px 0;
}

.posts-item {
  border-radius: 24px;
  overflow: hidden;
  background: #FFF;
  border: 1px solid transparent;
}

.posts-item:hover {
  border: 1px solid transparent;
  background: linear-gradient(#FFF, #FFF) padding-box, linear-gradient(180deg, #F8FAFF 42.49%, #D9E6FF 109.34%) border-box;
  box-shadow: 0px 8px 30px -4px rgba(10, 27, 137, 0.03), 0px 8px 30px -6px rgba(116, 135, 255, 0.05);
}

a.posts-item-thumb {
  display: block;
  aspect-ratio: 405/232;
  overflow: hidden;
  transition: all 0.3s ease;
}

a.posts-item-thumb img {
  transform: scale(1.05);
}

.posts-item-content {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

a.posts-item-title {
  font-family: Inter SemiBold;
  font-size: 18px;
  color: #181D27;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;

}

.posts-item-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #535862;
}

@media (max-width: 979px) {
  .posts-wrap {
    display: block;
  }

  .posts-wrap.owl-theme .owl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-top: 24px;
  }

  .posts-wrap.owl-theme .owl-dot span {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #D5D7DA;
    transition: background 0.2s, width 0.2s;
  }

  .posts-wrap.owl-theme .owl-dot.active span {
    background: #7839EE;
  }
}
/* #endregion */

/* #region certificate */
.certificate {
  background: linear-gradient(257.45deg, #F8FAFF -29.49%, #F5F3FF 125.17%);
}

.cert-wrap {
  padding-top: 40px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
  flex: 1;
  background-color: #FFF;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 24px 50px -8px rgba(10, 27, 137, 0.03), 0 4px 8.7px 4px rgba(10, 27, 137, 0.02);
}

.cert-item img {
  max-height: 100%;
}

@media (min-width: 1300px) {
  .certificate {
    padding: 96px 0;
    margin: 48px 0;
  }
}

@media (max-width: 979px) {
  .cert-wrap {
    padding-top: 28px;
    gap: 24px;
  }

  .cert-item {
    flex: unset;
    width: calc(33.33% - 24px);
  }
}

@media (max-width: 767px) {
  .cert-wrap {
    padding-top: 24px;
    gap: 16px;
  }

  .cert-item {
    width: calc(50% - 16px);
  }
}

/* #endregion */

/* #region Prize */
.prize-wrap {
  padding: 40px 60px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.prize-item {
  max-width: 268px;
  margin: 0 auto;
}

.prize-cup {
  aspect-ratio: 267/245;
  max-width: 267px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.prize-item:hover .prize-cup {
  background: url(/mshopkeeper/images/front-page/bg-circle.png) no-repeat center;
  background-size: cover;
}

.prize-title {
  font-family: Inter Medium;
  font-size: 18px;
  text-align: center;
}

.prize-wrap.owl-carousel .owl-item img {
  object-fit: contain;
  width: auto;
}

.prize-wrap.owl-theme .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  background: #E9EAEB;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #7839EE;
}

.prize-wrap.owl-theme .owl-nav {
  margin: 0;
}

.prize-wrap.owl-theme .owl-nav [class*='owl-'] {
  display: none;
  margin: 0;
}

.prize-wrap:hover .owl-nav [class*='owl-'] {
  display: block;
}

.prize-wrap.owl-theme .owl-nav [class*='owl-']:hover {
  background-color: transparent;
}

.prize-wrap.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
}

.prize-wrap.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
}

@media (max-width: 979px) {

  .prize .default-subtitle br,
  .prize-title br {
    display: none;
  }

  .prize-wrap {
    padding: 32px 0 0;
  }
}

@media (max-width: 767px) {
  .prize-wrap {
    padding: 24px 0 0;
  }
}

/* #endregion */

/* #region Customer */
.customer-wrap {
  padding-top: 60px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.customer-item {
  width: 296px;
  box-shadow: 0 2px 20px -6px rgba(116, 135, 255, 0.12), 0 12px 46px -4px rgba(10, 27, 137, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.customer-item-head {
  font-family: Inter SemiBold;
  font-size: 18px;
  color: #FFF;
  padding: 8px 16px;
  background: linear-gradient(90deg, #4155F5 75.48%, #875BF7 100%),
      linear-gradient(89.51deg, #4155F5 80.14%, #875BF7 106.03%);
  text-align: center;
}

.customer-item-content {
  padding: 16px 16px 36px;
}

@media (max-width: 979px) {
  .customer-wrap {
    padding-top: 30px;
    gap: 16px;
  }

  .customer .default-subtitle br {
    display: none;
  }
}

@media (max-width: 767px) {
  .customer-wrap {
    padding-top: 24px;
  }

  .customer-item-head {
    font-size: 16px;
  }
}

/* #endregion */

/* #region register */
.register-page {
  background: url(/mshopkeeper/images/front-page/bg-register.webp) no-repeat center;
  background-size: cover;
  padding: 96px 0;
  margin-top: 48px;
}

.register-page-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.register-page .default-title {
  color: #FFF;
}

.register-page-desc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.rp-desc-item-text {
  color: #FFF;
  letter-spacing: -0.2px;
  padding-top: 12px;
  max-width: 280px;
}

.register-page-form {
  padding: 8px;
  width: 100%;
  max-width: 515px;
  border-radius: 16px;
  background: #FFF;
  overflow: hidden;
  box-shadow: 0 20px 24px -4px rgba(10, 27, 137, 0.04), 0 8px 8px -4px rgba(10, 27, 137, 0.01), 0 3px 3px -1.5px rgba(10, 27, 137, 0.02);
}

.register-page-form-title {
  font-family: Inter SemiBold;
  font-size: 20px;
  text-align: center;
  padding: 24px 24px 0;
}

.register-page-agent {
  position: absolute;
  left: 44%;
  bottom: -20px;
}

@media (max-width: 1100px) {
  .register-page-agent {
    display: none;
  }

  .register-page-wrap {
    gap: 24px;
  }

  .register-page .default-title br {
    display: none;
  }
}

@media (max-width: 979px) {
  .register-page {
    padding: 48px 0;
    margin-top: 30px;
  }

  .register-page-wrap {
    flex-direction: column;
  }

    .register-page-form {
      padding: 0;
    }

  .register-page-desc {
    gap: 16px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .register-page-desc {
    margin-top: 24px;
  }

  .rp-desc-item-text {
    max-width: unset;
  }
}

/* #endregion */

/*#region Question */
.question-wrap {
  margin-top: 40px;
}

.question .panel-group .panel {
  border-radius: 16px;
  border-color: #E9EAEB;
}

.question .panel-group .panel:not(:first-child) {
  margin-top: 20px;
}

.question .panel-default>.panel-heading {
  padding: 24px 64px 12px 24px;
  background-color: #fff;
  border-radius: 24px;
  cursor: pointer;
  background: url(/mshopkeeper/images/front-page/ic-minus.svg) no-repeat right 24px top 24px;
  background-size: 24px;
  font-family: Inter SemiBold, Arial, sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #2662FF;
}

.question .panel-default>.panel-heading h3 {
  font-family: Inter SemiBold, Arial, sans-serif;
  font-size: 18px;
  line-height: 24px;
}

.question .panel-default>.panel-heading.collapsed {
  padding-bottom: 24px;
  background: url(/mshopkeeper/images/front-page/ic-plus.svg) no-repeat right 24px top 24px;
  background-size: 24px;
  color: #181D27;
}

.answer-text {
  padding: 0 64px 24px 24px;
  color: #414651;
  letter-spacing: -0.2px;
}

.answer-text p {
  display: block;
}

@media (max-width: 979px) {
  .question-wrap {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .question-wrap {
    margin-top: 24px;
  }

  .question .panel-group .panel:not(:first-child) {
    margin-top: 16px;
  }

  .question .panel-default>.panel-heading {
    font-size: 14px;
    padding: 16px 24px 8px 16px;
    background-position: top 16px right 0;
  }

  .question .panel-default>.panel-heading.collapsed {
    background-position: top 16px right 0;
    padding-bottom: 16px;
  }

  .answer-text {
    font-size: 14px;
    padding: 0 24px 16px 16px;
  }
}

/*#endregion */

/*#region Purchase Popup */
a.purchase-item:focus {
  color: #212121;
  opacity: 1;
}

.purchase-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.purchase-popup-content {
  background: #fff;
  border-radius: 20px;
  max-width: 1366px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0px 20px 40px 0px #0000001F;
  position: relative;
}

.purchase-popup-header {
  display: flex;
  align-items: center;
  padding: 32px 32px 8px;
  /* border-bottom: 1px solid #E5E7EB; */
  justify-content: center;
}

.popup-title {
  font-size: 28px;
  font-family: "Inter Bold", Arial, sans-serif;
  color: #000;
  margin: 0;
  line-height: 1.3;
}

.popup-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #6B7280;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.popup-close:hover {
  background: #F3F4F6;
  color: #374151;
}

.purchase-popup-body {
  padding: 12px 31px 32px;
}

/* Grid Layout - Copy từ solution-grid */
.purchase-categories-grid {
  display: grid;
  grid-template-rows: auto 1fr;
  /* gap: 40px; */
}

.purchase-categories-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: #fff;
  border-radius: 20px;
  padding: 16px;
}

.purchase-category-wrapper {
  height: 100%;
}

.purchase-category {
  height: 100%;
}

.purchase-category-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 12px;
  padding: 24px;
  background: linear-gradient(270deg, #FFF 14.92%, #F2EDFF 93.92%);
  border-radius: 8px;
}

.purchase-category-header.nha-hang-color {
  background: linear-gradient(90deg, #E2F0FE 0%, #FFF 100%);
}

.purchase-category-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.purchase-category-icon img {
  /* filter: brightness(0) invert(1); */
  width: 42px;
}

.purchase-category-title {
  font-size: 24px;
  font-family: "Inter Bold", Arial, sans-serif;
  color: #212121;
  margin: 0;
}

.purchase-category-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.purchase-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 20px;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #212121;
  padding-left: 7px;
}

.purchase-item:hover {
  color: #6625FF;
  text-decoration: none;
}

.purchase-categories-content .purchase-category-wrapper:nth-child(2) .purchase-item:hover {
  color: #00A6EE;
}

.purchase-categories-content .purchase-category-wrapper:nth-child(2) .purchase-item .purchase-arrow {
  color: #00A6EE;
}

.purchase-categories-content .purchase-category-wrapper:nth-child(2) .purchase-item img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(1482%) hue-rotate(177deg) brightness(103%) contrast(101%);
}

.purchase-categories-content .purchase-category-wrapper:nth-child(2) .purchase-item:hover img {
  filter: brightness(0) saturate(100%) invert(47%) sepia(99%) saturate(2476%) hue-rotate(193deg) brightness(96%) contrast(101%);
}

.purchase-item:hover img {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(13%) sepia(84%) saturate(7494%) hue-rotate(258deg) brightness(95%) contrast(114%);
}

.purchase-item:hover .purchase-arrow {
  opacity: 1;
  transform: translateX(0);
}

.purchase-item img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  filter: brightness(0) saturate(100%) invert(20%) sepia(89%) saturate(6613%) hue-rotate(258deg) brightness(124%) contrast(108%);
}

.purchase-arrow {
  color: #6625FF;
  font-size: 16px;
  /* margin-left: auto; */
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

/* Responsive */
@media screen and (max-width: 979px) {
  .purchase-popup-content {
    max-width: 90%;
    margin: 20px;
  }

  .purchase-popup-header {
    padding: 24px 20px 20px;
  }

  .popup-title {
    font-size: 22px;
  }

  .purchase-popup-body {
    padding: 20px;
  }

  .purchase-categories-content {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 20px;
  }

  .purchase-category {
    padding: 20px;
    margin-bottom: 20px;
  }

  .purchase-category-title {
    font-size: 18px;
  }

  .purchase-category-list {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .purchase-item {
    font-size: 15px;
  }

  .purchase-arrow {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .purchase-popup-overlay {
    padding: 10px;
  }

  .purchase-popup-content {
    max-height: 95vh;
  }

  .purchase-popup-header {
    padding: 10px 10px 8px;
  }

  .popup-title {
    font-size: 15px;
    line-height: 1.4;
    max-width: 250px;
    text-align: center;
    padding-top: 8px;
  }

  .purchase-popup-body {
    padding: 16px;
  }

  .purchase-categories-content {
    padding: 0;
    gap: 16px;
  }

  .purchase-category {
    padding: 0;
  }

  .purchase-category-title {
    font-size: 17px;
  }

  .purchase-category-header {
    margin-bottom: 16px;
    gap: 8px;
    padding: 10px;
  }

  .purchase-category-icon {
    width: 32px;
    height: 32px;
  }

  .purchase-category-icon img {
    width: 42px;
    height: 42px;
  }

  .purchase-category-list {
    gap: 8px;
  }

  .purchase-item {
    font-size: 14px;
    gap: 8px;
    padding: 6px 0;
  }

  .purchase-item img {
    width: 24px;
    height: 24px;
  }

  .purchase-arrow {
    font-size: 12px;
  }
}

/* Prevent body scroll when popup is open */
body.popup-open {
  overflow: hidden;
}

/*#endregion*/