* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inter;
}

:root {
  --color-nearx-purple: #8932fc;
  --color-purple-10: #D0ADFE;
  --color-neutral: #fff;
  --color-neutral-10: #f4f4f4;
  --color-neutral-20: #ebebeb;
  --color-neutral-30: #c4c4c4;
  --color-neutral-40: #696969;
  --color-neutral-50: #303030;
}

body {
  background-color: var(--color-neutral-10);
  width: 100%;
}

#copy-success {
  color: var(--color-nearx-purple);
  text-align: center;
}

/* BACKGROUND COLORS */
.bg-neutral {
  background-color: var(--color-neutral);
}

.bg-nearx-purple {
  background-color: var(--color-nearx-purple);
}

.bg-neutral-10 {
  background-color: var(--color-neutral-10);
}

.bg-neutral-20 {
  background-color: var(--color-neutral-20) !important;
}

.bg-neutral-30 {
  background-color: var(--color-neutral-30);
}

.bg-neutral-40 {
  background-color: var(--color-neutral-40);
}

.bg-neutral-50 {
  background-color: var(--color-neutral-50);
}

/* TEXT */
.text-nearx-purple {
  color: var(--color-nearx-purple);
}

.text-neutral-50 {
  color: var(--color-neutral-50);
}

.text-neutral-40 {
  color: var(--color-neutral-40);
}

.text-neutral-30 {
  color: var(--color-neutral-30);
}

.text-neutral-20 {
  color: var(--color-neutral-20);
}

.text-neutral-10 {
  color: var(--color-neutral-10);
}

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

.text-h1 {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
}

.text-h2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
}

.text-h3 {
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
}

.text-heavy {
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
}

.text-caption {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}

.text-caption2 {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}

.text-caption3 {
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
}

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

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

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

/* CONTENT SIZE */
.w-fit {
  width: fit-content;
}

.w-40perc {
  width: 40%;
}

.w-50perc {
  width: 50%;
}

.w-full {
  width: 100%;
}

.h-100vh {
  height: 100vh;
}

/* Flex */
.gap-10p {
  gap: 10px;
}

.flex-1 {
  flex: 1;
}

/* CUSTOM COMPONENTS */

.header {
  max-width: 1440px;
}

.content {
  width: 95%;
  margin: auto;
  padding: 16px 0;
  max-width: 1440px;
}

.card-simple {
  border: 1px solid var(--color-neutral-30);
  border-radius: 16px;
  padding: 16px;
  background-color: var(--color-neutral);
}

.card-selector {
  border: 1px solid var(--color-neutral-30);
  border-radius: 16px;
  padding: 16px;
  background-color: var(--color-neutral);
  cursor: pointer;
  margin-bottom: 16px;
}

.card-selector.selected {
  border: 1px solid var(--color-nearx-purple);
}

.card-selector>div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.card-selector>div:first-child>div:first-child {
  border: 1px solid var(--color-neutral-30);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-selector.selected>div:first-child>div:first-child {
  border: 1px solid var(--color-nearx-purple);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-selector>div:first-child>div:first-child>div {
  height: 14px;
  width: 14px;
  background-color: var(--color-neutral);
  border-radius: 50%;
}

.card-selector.selected>div:first-child>div:first-child>div {
  height: 14px;
  width: 14px;
  background-color: var(--color-nearx-purple);
  border-radius: 50%;
}

.button {
  background-color: var(--color-nearx-purple);
  border: 1px solid var(--color-nearx-purple);
  width: 100%;
  color: var(--color-neutral);
  border-radius: 20px;
  height: 40px;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
}

.button-outlined {
  background-color: transparent;
  border: 1px solid var(--color-nearx-purple);
  width: 100%;
  color: var(--color-nearx-purple);
  border-radius: 20px;
  height: 40px;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
}

.button-plain {
  background-color: transparent;
  border: 1px solid transparent;
  width: 100%;
  color: var(--color-neutral-50);
  border-radius: 20px;
  height: 40px;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tag {
  background-color: var(--color-purple-10);
  color: var(--color-nearx-purple);
  border-radius: 4px;
  padding: 4px;
}

.card-content {
  margin-top: 10px;
}

.select-plan {
  width: 100%;
}

.divider {
  height: 1px;
  width: 100%;
  background-color: #C4C4C4;
  margin: 40px 0px;
}

@media (min-width: 376px) {
  .text-h3 {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (min-width: 768px) {
  .content {
    gap: 20px;
  }

  .select-plan {
    width: 300px;
  }


  .card-content {
    margin-top: 0;
    width: 100%;
    max-width: 740px;
    padding: 16px;
  }
}