@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined');

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  font-family: Inter, Roboto, sans-serif;
}

.c2c-container {
  width: 100%;
  height: 100vh;
}

.c2c-header-indicator {
  width: 100%;
  background-color: #30aba9;
  text-align: center;
  color: white;
  font-size: 12px;
  padding-block: 8px;
}

.c2c-initial-content, .c2c-call-content, .c2c-error-content {
  width: 100%;
  height: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

li {
  list-style-type: none;
  list-style: none;
}

.c2c-btn {
  padding: 6px 16px;
  border-radius: 8px;
  color: white;
  border: none;
  align-content: center;
  line-height: 24px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  column-gap: 8px;

  &:hover {
    cursor: pointer;
  }

  &.primary {
    background-color: #30aba9;
    color: white;
    border: none;
  }

  &.elevated {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: rgba(226, 232, 240, 0.45);
    border: none;
    color: black;
  }

  &.error {
    background-color: rgba(190, 18, 60, 1);
  }
}

a {
  color: #30aba9;
}

/* End Main */

/* Start Initial */

.c2c-initial-content .c2c-banner {
  background-image: url('/img/banner.svg');
  width: 56px;
  background-repeat: no-repeat;
  height: 56px;
  background-size: contain;
}

.c2c-initial-content .c2c-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 15rem;

  & > h2 {
    text-align: center;
    font-size: 1.25rem;
    line-height: 28px;
    font-weight: 600;
  }
}

.c2c-steps-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  & > li {
    display: flex;
    gap: 12px;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #334155;
  }
}

.c2c-list-index {
  display: flex;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  height: 20px;
  width: 22px;
  border-radius: 50%;
  background-color: #cff2f1;
  color: #000000;
}

/* End Initial */

/* Start Call */

.c2c-call-content .c2c-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.c2c-counter-call {
  margin: 0;
}

.c2c-digits-list {
  width: 184px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 12px;
  column-gap: 8px;
  align-items: center;

  li {
    text-align: center;
    display: flex;
    justify-content: center;
  }
}

/* End Call */

/* Start Error*/

.c2c-error-content .c2c-text {
  text-align: center;
  /* max-width: 320px; */
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

/* End Error */