/*=========== TABLE OF CONTENTS ===========
1. Button CSS
2. Input CSS
3. Text CSS
4. Heading CSS
==========================================*/

/*-------------------------------------
  1. Button CSS
--------------------------------------*/
.ui.button.round {
  border-radius: var(--radius-xs);
}

.ui.button.size-7xl {
  height: 86px;
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
  font-size: 25px;
}

.ui.button.fill.red_600_01 {
  background-color: var(--red_600_01);
  box-shadow: var(--shadow-xs);
  color: var(--white_a700);
}

.ui.button {
  text-align: center;
  display: flex;
  cursor: pointer;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  color: var(--white_a700);
  font-size: 25px;
  font-weight: 700;
  background-color: var(--red_600_01);
  box-shadow: var(--shadow-xs);
  border-radius: var(--radius-xs);
  @media only screen and (max-width: 1440px) {
    font-size: 21px;
  }
}

/*-------------------------------------
  2. Input CSS
--------------------------------------*/
.ui.input.round {
  border-radius: var(--radius-xs);
}

.ui.input.size-7xl {
  height: 86px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 18px;
}

.ui.input.fill.white_a700 {
  background-color: var(--white_a700);
  box-shadow: var(--shadow-sm);
  color: var(--gray_500);
}

.ui.input {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: text;
  color: var(--gray_500);
  font-size: 18px;
  font-weight: 500;
  background-color: var(--white_a700);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-xs);
}

/*-------------------------------------
  3. Text CSS
--------------------------------------*/
.ui.text.size-text3xl {
  font-size: 18px;
  font-weight: 400;
  @media only screen and (max-width: 1440px) {
    font-size: 15px;
  }
}

.ui.text.size-text7xl {
  font-size: 33px;
  font-weight: 400;
  @media only screen and (max-width: 1440px) {
    font-size: 28px;
  }

  @media only screen and (max-width: 1050px) {
    font-size: 31px;
  }

  @media only screen and (max-width: 550px) {
    font-size: 29px;
  }
}

.ui.text.size-text9xl {
  font-size: 50px;
  font-weight: 400;
  @media only screen and (max-width: 1440px) {
    font-size: 42px;
  }

  @media only screen and (max-width: 1050px) {
    font-size: 46px;
  }

  @media only screen and (max-width: 550px) {
    font-size: 40px;
  }
}

.ui.text {
  color: var(--gray_900);
  font-family: Montserrat;
}

/*-------------------------------------
  4. Heading CSS
--------------------------------------*/
.ui.heading.size-heading2xl {
  font-size: 16px;
  font-weight: 600;
  @media only screen and (max-width: 1440px) {
    font-size: 13px;
  }
}

.ui.heading.size-heading3xl {
  font-size: 18px;
  font-weight: 600;
  @media only screen and (max-width: 1440px) {
    font-size: 15px;
  }
}

.ui.heading.size-heading4xl {
  font-size: 20px;
  font-weight: 600;
  @media only screen and (max-width: 1440px) {
    font-size: 17px;
  }
}

.ui.heading.size-heading9xl {
  font-size: 50px;
  font-weight: 700;
  @media only screen and (max-width: 1440px) {
    font-size: 42px;
  }

  @media only screen and (max-width: 1050px) {
    font-size: 46px;
  }

  @media only screen and (max-width: 550px) {
    font-size: 40px;
  }
}

.ui.heading {
  color: var(--white_a700);
  font-family: Montserrat;
}
