:root {
  --primary: #2a80c2;
  --secondary: #d4e6f3;
  --dark: #103178;
  --red: #ef4f5e;
  --surface-subdued: #F5F5F5;
  --text-default: #2f3031;
  --text-subdued: #65686c;
  --text-informational: #2C70E5;
  --rounded: 4px;
  --rounded-md: 8px;
  --rounded-lg: 12px;
  --border-default: #808489;
  --border-subdued: #C9CBCF;
  --icon-informational: #054BCC;
  --base-primary: #0B5FEF;
}

p {
  margin: 0;
}

body {
  font-family: sans-serif;
  padding-bottom: 0;
}

/* ------ for RT ----------- */

.lp-wrapper {
  background-color: #eff0f0;
  padding: 100px 0;
}

.wrapper-landing-page *,
.lp-modal * {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.wrapper-landing-page {
  border-radius: var(--rounded);
  padding-top: 22px;
  overflow: hidden;
  background-color: #fff;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0px -3px 31px rgba(0, 0, 0, 0.05);
}

.lp-container {
  padding-left: 16px;
  padding-right: 16px;
}

.red-indicator {
  background-color: var(--red);
  color: #fff;
  padding: 4px 16px;
  border-radius: var(--rounded);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  text-align: center;
}

.heading {
  color: var(--primary);
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  text-align: left;
  margin: 0;
  margin-bottom: 4px;
}

.heading-container {
  width: 70%;
}

.list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-left: 14px;
}

.list-item {
  flex: 1;
  overflow: initial;
  position: relative;
}

.list-item-number {
  position: absolute;
  top: -14px;
  left: -14px;
  color: #ffffff;
  background-color: var(--dark);
  width: 28px;
  height: 28px;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: center;
  padding: 4px;
  border-radius: 50%;
}

.lp-card {
  border-radius: var(--rounded);
  padding: 12px 16px;
  width: 100%;
  font-weight: 500;
}

.cta {
  cursor: pointer;
}

.cta,
.cta:visited {
  text-align: center;
  display: inline-block;
  width: 100%;
  font-weight: 600;
  color: white;
  text-decoration: underline;
}

.cta:hover,
.cta:focus {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s ease;
  text-decoration: underline;
}

.section {
  display: flex;
  justify-content: space-between;
}

.section-left {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.lp-img-thumbnail {
  width: 80%;
  transform: scale(1.27);
  transform-origin: center right;
}

.lp-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1040;
	display: none;
	color: #2F3031;
}
.lp-modal-show {
	display: block;
}
.lp-modal-overlay {
  background: rgba(47, 48, 49, 0.5);
  width: 100%;
  height: 100%;
}
.lp-modal-content {
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 8px;
  width: 90%;
  max-width: 560px;
  padding: 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.lp-modal-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 12px;
}
.lp-modal-desc {
  font-size: 16px;
  line-height: 24px;
}
.lp-modal-cta {
  margin-top: 48px;
  padding: 8px 16px;
  border: 1px solid #808489;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  background-color: white;
  cursor: pointer;
  transition: all 0.2s ease;
}
.lp-modal-cta:hover,
.lp-modal-cta:focus {
  background-color: rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.lp-modal-icon {
  width: 60px;
  height: 60px;
  background: #ffc453;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 32px;
  margin-bottom: 20px;
}

.lp-modal-icon-info {
  background-color: var(--icon-informational);
}

.lp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.img-logo-arkas {
  width: 108px;
}

.loading-wrapper {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 1040;
}

.loading-wrapper-show {
  display: flex;
}

.loading-download {
  background-color: white;
  padding: 20px 32px;
  border-radius: var(--rounded);
}

/* ------ for RN ----------- */

.rn-wrapper *:not(.mdi) {
  font-family: "Poppins", sans-serif;
}

.rn-cta,
.rn-cta:visited {
  background-color: white;
  padding: 12px 20px;
  width: 250px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  border-radius: var(--rounded);
  color: var(--text-default);
  border: 1px solid var(--border-default);
  cursor: pointer;
}

.rn-cta:hover span,
.rn-cta:focus span {
  transition: all 0.2s ease;
  text-decoration: underline;
}

.rn-cta .mdi {
  font-size: 16px;
}

.text-link {
  color: var(--text-informational);
  font-weight: 700;
  text-decoration-line: underline;
  transition: all .2s ease;
}
.text-link:hover,
.text-link:focus {
  text-decoration-line: underline;
}

.rn-box {
  border-radius: var(--rounded-lg);
  border: 1px solid var(--border-subdued);
  padding: 32px 32px;
}

.rn-box:not(:last-of-type) {
  margin-bottom: 24px;
}

.rn-section-title {
  font-size: 18px;
  margin: 0;
  line-height: 30px;
  letter-spacing: 2px;
}

.rn-logo-dikdasmen {
  width: 44px;
  height: 44px;
}
.rn-logo-arkas {
  height: 44px;
}

.rn-hr {
  margin: 0;
}

.rn-icon-info {
  color: var(--base-primary);
}

#lp-modal-cek-perangkat ol {
  padding-left: 16px;
  color: var(--text-subdued);
  font-size: 16px;
  line-height: 24px;
}

.ordered-list {
  padding-left: 20px;
}

.ordered-list li {
  padding-left: 8px;
}

/* utilities */
.lp-bg-primary {
  background-color: var(--primary);
  color: white;
}

.lp-bg-secondary {
  background-color: var(--secondary);
  color: var(--dark);
}

.lp-bg-dark {
  background-color: var(--dark);
  color: white;
}

.lp-bg-subdued {
  background-color: var(--surface-subdued);
  color: var(--text-subdued);
}

.lp-bg-white {
  background-color: white;
}

.text-center {
  text-align: center;
}

.p-5 {
  padding: 20px !important;
}

.p-12 {
  padding: 48px !important;
}

.px-12 {
  padding-left: 48px !important;
  padding-right: 48px !important;
}

.px-6 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.py-4 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.py-6 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.py-9 {
  padding-top: 36px !important;
  padding-bottom: 36px !important;
}

.pt-4 {
  padding-top: 16px !important;
}

.pb-6 {
  padding-bottom: 24px !important;
}

.mr-2 {
  margin-right: 8px !important;
}

.mr-8 {
  margin-right: 32px !important;
}

.mt-4 {
  margin-top: 16px !important;
}

.mb-4 {
  margin-bottom: 16px !important;
}
.mb-5 {
  margin-bottom: 20px !important;
}
.mb-6 {
  margin-bottom: 24px !important;
}
.mb-7 {
  margin-bottom: 28px !important;
}
.mb-8 {
  margin-bottom: 32px !important;
}
.mb-12 {
  margin-bottom: 48px !important;
}


.mb-3 {
  margin-bottom: 12px !important;
}

.mb-2 {
  margin-bottom: 8px !important;
}

.text {
  font-size: 18px;
  line-height: 24px;
}

.weight-medium {
  font-weight: 500;
}

.weight-bold {
  font-weight: 600;
}

.text-sm {
  font-size: 14px;
  line-height: 20px;
}

.text-md {
  font-size: 16px;
  line-height: 22px; /* 137.5% */
}

.text-lg {
  font-size: 20px;
  line-height: 22px; /* 110% */
}

.text-xl {
  font-size: 32px;
  line-height: 28px; /* 87.5% */
}

.text-default {
  color: var(--text-default);
}

.text-subdued {
  color: var(--text-subdued);
}

.flex {
  display: flex;
}

.flex-limiter-container>:not(.flex-limiter)>div {
  flex-basis: 0px;
  flex-grow: 1;
  overflow-y: hidden;
}
.flex-limiter {
  height: fit-content;
}
.flex-limiter-container>div {
  display: flex;
}
.flex-limiter-container > div {
  flex-direction: column;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-6 {
  gap: 24px;
}

.justify-between {
  justify-content: space-between;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

.flex-column {
  flex-direction: column;
}

.rounded-md {
  border-radius: var(--rounded-md);
}

.rounded-b-md {
  border-bottom-left-radius: var(--rounded-md);
  border-bottom-right-radius: var(--rounded-md);
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.border {
  border: 1px solid var(--border-default)
}

.height-full {
  height: 100%;
}