.tailwind-custom {
  /** Tailwind CSS grid **/
  /** Tailwind CSS flex **/
  /** Tailwind CSS padding **/
  /** Tailwind CSS rounded **/
  /** Tailwind CSS align **/
  /** Tailwind CSS faq **/
  background: white;
}
.tailwind-custom * {
  margin: 0;
  padding: 0;
  color: #2f2f2f;
  font-family: Roboto;
  box-sizing: border-box;
}
.tailwind-custom .apk-download {
  width: 400px;
  height: 48px;
  display: flex;
  place-content: center;
  place-items: center;
  gap: 10px;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 10px 20px;
  border-radius: 8px;
  background: linear-gradient(90deg, #b946dc 0%, #f24995 48%, #ff7b48 100%);
  text-align: center;
  color: #ffffff;
  font-family: Roboto;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  user-select: none;
}
.tailwind-custom .apk-download:active {
  opacity: 0.8;
  transform: scale(0.95);
}
.tailwind-custom img {
  display: block;
}
.tailwind-custom .base-block-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 0;
}
.tailwind-custom .w-2-5 {
  width: 40%;
}

.tailwind-custom .w-400 {
  width: 400px;
}

.tailwind-custom .block {
  display: block;
}
.tailwind-custom .h2 {
  font-size: 32px;
  font-weight: bold;
  line-height: 42px;
}
.tailwind-custom .h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 32px;
}
.tailwind-custom .h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
}
.tailwind-custom .text-base {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.tailwind-custom .text-sm {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.tailwind-custom .color-secondary {
  color: #8c919e;
}
.tailwind-custom .bg-linear-pink {
  background: linear-gradient(90deg, #fbeeff 0%, #fdf0f6 50%, #fef4f0 100%);
}
.tailwind-custom .bg-gray {
  background-color: #f9fafb;
}
.tailwind-custom .mb-md {
  margin-bottom: 32px;
}
.tailwind-custom .mb-xs {
  margin-bottom: 16px;
}
.tailwind-custom .mb-sm {
  margin-bottom: 8px;
}
.tailwind-custom .mb-2sm {
  margin-bottom: 10px;
}
.tailwind-custom .text-center {
  text-align: center;
}
.tailwind-custom .gap-40 {
  gap: 40px;
}
.tailwind-custom .gap-32 {
  gap: 32px;
}
.tailwind-custom .gap-16 {
  gap: 16px;
}
.tailwind-custom .gap-10 {
  gap: 10px;
}
.tailwind-custom .gap-8 {
  gap: 8px;
}
.tailwind-custom .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.tailwind-custom .grid-item-1 {
  display: flex;
  flex-direction: column;
}
.tailwind-custom .grid {
  display: grid;
}
.tailwind-custom .grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.tailwind-custom .span-col-1 {
  grid-column: span 1 / span 1;
}
.tailwind-custom .flex {
  display: flex;
}
.tailwind-custom .flex-1 {
  flex: 1;
}
.tailwind-custom .flex-col {
  flex-direction: column;
}
.tailwind-custom .item-center {
  align-items: center;
}
.tailwind-custom .py-32 {
  padding-top: 32px;
  padding-bottom: 32px;
}
.tailwind-custom .px-80 {
  padding-left: 80px;
  padding-right: 80px;
}
.tailwind-custom .rounded-lg {
  border-radius: 16px;
}
.tailwind-custom .text-start {
  text-align: start;
}
.tailwind-custom .faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tailwind-custom .faq-item {
  border-radius: 8px;
  overflow: hidden;
  padding: 16px 20px;
  background: #f9fafb;
}
.tailwind-custom .faq-question {
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tailwind-custom .faq-answer {
  background-color: #f9f9f9;
  max-height: 0;
  overflow: hidden;
}
.tailwind-custom input[type="checkbox"] {
  display: none;
}
.tailwind-custom input[type="checkbox"]:checked + .faq-question .faq-icon {
  transform: rotate(180deg);
}
.tailwind-custom input[type="checkbox"]:checked + .faq-question + .faq-answer {
  max-height: 500px;
  padding-top: 8px;
}
@media not all and (min-width: 640px) {
  .tailwind-custom .base-block-container {
    padding: 64px 20px;
  }
  .tailwind-custom .h2 {
    font-size: 24px;
    font-weight: bold;
    line-height: 32px;
  }
  .tailwind-custom .h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 28px;
  }
  .tailwind-custom .h4 {
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
  }
  .tailwind-custom .text-base {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
  }
  .tailwind-custom .text-sm {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
  }
  .tailwind-custom .max-sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .tailwind-custom .max-sm\:flex-col {
    flex-direction: column;
  }
  .tailwind-custom .max-sm\:flex-row {
    flex-direction: row;
  }
  .tailwind-custom .max-sm\:w-full {
    width: 100%;
  }
  .tailwind-custom .max-sm\:flex-col-reverse {
    flex-direction: column-reverse;
  }
  .tailwind-custom .max-sm\:gap-16 {
    gap: 16px;
  }
  .tailwind-custom .max-sm\:gap-8 {
    gap: 8px;
  }
  .tailwind-custom .max-sm\:gap-x-10 {
    column-gap: 10px;
  }
  .tailwind-custom .max-sm\:py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .tailwind-custom .max-sm\:px-20 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .tailwind-custom .max-sm\:mle-3 {
    margin-inline-end: 3px;
  }
  .tailwind-custom .max-sm\:mb-16 {
    margin-bottom: 16px;
  }
  .tailwind-custom .max-sm\:flex-inline {
    display: inline-flex;
  }
  .tailwind-custom .max-sm\:float-left {
    float: left;
  }
  .tailwind-custom .max-sm\:text-center {
    text-align: center;
  }
  .tailwind-custom .max-sm\:text-start {
    text-align: start;
  }
  .tailwind-custom .max-sm\:inline {
    display: inline;
  }
  .tailwind-custom .max-sm\:mb-0 {
    margin-bottom: 0;
  }
  .tailwind-custom .apk-download {
    width: 100%;
  }
  .tailwind-custom .svg-star {
    width: 16px;
    height: 16px;
  }
}
