/*=========== TABLE OF CONTENTS ===========
1. Input CSS
2. Button CSS
3. Textarea CSS
4. Selectbox CSS
5. Text CSS
6. Heading CSS
7. Container CSS
==========================================*/

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

.ui.input.size-xs {
  height: 44px;
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
  font-size: 14px;
}

.ui.input.outline.blue_gray_100_02 {
  color: var(--gray_400_02);
  border: 1px solid var(--blue_gray_100_02);
}

.ui.input {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: text;
  color: var(--gray_400_02);
  font-size: 14px;
  align-self: stretch;
  border-radius: var(--radius-xl);
  border: 1px solid var(--blue_gray_100_02);
}

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

.ui.button.size-sm {
  height: 50px;
  padding-left: var(--space-11xl);
  padding-right: var(--space-11xl);
  font-size: 18px;
}

.ui.button.size-xs {
  height: 34px;
  padding-left: var(--space-7xl);
  padding-right: var(--space-7xl);
  font-size: 16px;
}

.ui.button.size-lg {
  height: 66px;
  padding-left: var(--space-6xl);
  padding-right: var(--space-6xl);
}

.ui.button.size-md {
  height: 54px;
  padding-left: var(--space-11xl);
  padding-right: var(--space-11xl);
  font-size: 18px;
}

.ui.button.outline.white_a700 {
  color: var(--white_a700);
  border: 1px solid var(--white_a700);
}

.ui.button.fill.gray_100_01 {
  background-color: var(--gray_100_01);
}

.ui.button.fill.deep_purple_a200 {
  background-color: var(--deep_purple_a200);
  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;
}

/*-------------------------------------
  3. Textarea CSS
--------------------------------------*/
.ui.textarea.round {
  border-radius: var(--radius-xl);
}

.ui.textarea.size-xs {
  height: 100px;
  font-size: 14px;
  padding: var(--space-3xl);
}

.ui.textarea.taroutlinebluegray10002.blue_gray_100_02 {
  border: 1px solid var(--blue_gray_100_02) !important;
}

/*-------------------------------------
  4. Selectbox CSS
--------------------------------------*/
.ui.selectbox.round {
  border-radius: var(--radius-xl);
}

.ui.selectbox.size-xs {
  height: 44px;
  padding-left: var(--space-7xl);
  padding-right: var(--space-7xl);
  font-size: 14px;
}

.ui.selectbox.fill.red_50 {
  background-color: var(--red_50);
  color: var(--gray_900_02);
}

.ui.selectbox {
  display: flex;
}

/*-------------------------------------
  5. Text CSS
--------------------------------------*/
.ui.text.size-textxs {
  font-size: 14px;
  font-weight: 400;
}

.ui.text.size-texts {
  font-size: 16px;
  font-weight: 400;
  @media only screen and (max-width: 1440px) {
    font-size: 13px;
  }
}

.ui.text.size-textmd {
  font-size: 18px;
  font-weight: 400;
  @media only screen and (max-width: 1440px) {
    font-size: 15px;
  }
}

.ui.text.size-textlg {
  font-size: 20px;
  font-weight: 400;
  @media only screen and (max-width: 1440px) {
    font-size: 17px;
  }
}

.ui.text {
  color: var(--black_900);
  font-family: Open Sans;
}

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

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

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

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

.ui.heading.size-headingxl {
  font-size: 24px;
  font-weight: 700;
  @media only screen and (max-width: 1440px) {
    font-size: 20px;
  }

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

.ui.heading.size-heading2xl {
  font-size: 32px;
  font-weight: 700;
  @media only screen and (max-width: 1440px) {
    font-size: 27px;
  }

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

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

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

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

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

.ui.heading.size-heading4xl {
  font-size: 60px;
  font-weight: 700;
  @media only screen and (max-width: 1440px) {
    font-size: 51px;
  }

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

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

.ui.heading {
  color: var(--black_900);
  font-family: Open Sans;
}

/*-------------------------------------
  7. Container CSS
--------------------------------------*/
.container-xs {
  max-width: 1188px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.container-sm {
  max-width: 1396px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
