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

/*-------------------------------------
  1. Selectbox CSS
--------------------------------------*/
.ui.selectbox.square {
  border-radius: 0px;
}

.ui.selectbox.size-xs {
  height: 28px;
  padding-left: var(--space-lg);
}

.ui.selectbox.underline.black_900_6b {
  border-bottom: 1px solid var(--black_900_6b);
}

.ui.selectbox {
  display: flex;
}

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

.ui.button.size-8xl {
  height: 40px;
  padding-left: 32px;
  padding-right: 32px;
  font-size: 13px;
}

.ui.button.size-4xl {
  height: 30px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 13px;
}

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

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

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

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

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

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

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

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

.ui.button {
  text-align: center;
  display: flex;
  cursor: pointer;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/*-------------------------------------
  3. Text CSS
--------------------------------------*/
.ui.text.size-textxl {
  font-size: 10px;
  font-weight: 400;
  font-style: normal;
}

.ui.text.size-text2xl {
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
}

.ui.text.size-text4xl {
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
}

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

.ui.text {
  color: var(--gray_700_10);
  font-family: Inter;
}

/*-------------------------------------
  4. Heading CSS
--------------------------------------*/
.ui.heading.size-heading4xl {
  font-size: 16px;
  font-weight: 700;
  font-style: bold;
  @media only screen and (max-width: 550px) {
    font-size: 13px;
  }
}

.ui.heading.size-heading7xl {
  font-size: 24px;
  font-weight: 700;
  font-style: bold;
  @media only screen and (max-width: 1050px) {
    font-size: 22px;
  }

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

.ui.heading.size-heading12xl {
  font-size: 40px;
  font-weight: 700;
  font-style: bold;
  @media only screen and (max-width: 1050px) {
    font-size: 38px;
  }

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

.ui.heading {
  color: var(--black_900_02);
  font-family: Inter;
}

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