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

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

.ui.button.size-xs {
  height: 30px;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
  font-size: 13px;
}

.ui.button.size-sm {
  height: 36px;
  padding-left: var(--space-4xl);
  padding-right: var(--space-4xl);
  font-size: 14px;
}

.ui.button.size-md {
  height: 42px;
  padding-left: 34px;
  padding-right: 34px;
  font-size: 15px;
}

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

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

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

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

/*-------------------------------------
  2. Input CSS
--------------------------------------*/
.ui.input.square {
  border-radius: 0px;
}

.ui.input.size-xs {
  height: 30px;
  padding-left: 4px;
  padding-right: 4px;
  font-size: 14px;
}

.ui.input.fill.white_a700 {
  background-color: var(--white_a700);
  color: var(--black_900);
}

.ui.input {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: text;
  color: var(--black_900);
  letter-spacing: 0.15px;
  font-size: 14px;
  background-color: var(--white_a700);
  border: 1px solid var(--blue_gray_100);
}

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

.ui.selectbox.size-xs {
  height: 48px;
  padding-left: var(--space-3xl);
  padding-right: var(--space-3xl);
  font-size: 12px;
}

.ui.selectbox.outline.black_900_3a {
  color: var(--black_900_99);
  border: 1px solid var(--black_900_3a);
}

.ui.selectbox {
  display: flex;
}

/*-------------------------------------
  4. Floatingtextfield CSS
--------------------------------------*/
.ui.floatingtextfield.round {
  border-radius: var(--radius-xs);
}

.ui.floatingtextfield.size-xs {
  height: 40px;
  padding-left: var(--space-4xl);
  padding-right: var(--space-4xl);
  font-size: 12px;
}

.ui.floatingtextfield.ftxtfillwhitea700.white_a700 {
  background-color: var(--white_a700);
}

.ui.floatingtextfield.ftxtoutlineblack9003a.black_900_3a {
  border: 1px solid var(--black_900_3a);
}

.ui.floatingtextfield {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: text;
  gap: var(--space-lg);
}

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

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

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

/*-------------------------------------
  6. Heading CSS
--------------------------------------*/
.ui.heading.size-headingxs {
  font-size: 38px;
  font-weight: 700;
  font-style: bold;
  @media only screen and (max-width: 1050px) {
    font-size: 36px;
  }

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

.ui.heading.size-headings {
  font-size: 20px;
  font-weight: 700;
  font-style: bold;
  @media only screen and (max-width: 550px) {
    font-size: 17px;
  }
}

.ui.heading.size-headingmd {
  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-headinglg {
  font-size: 30px;
  font-weight: 700;
  font-style: bold;
  @media only screen and (max-width: 1050px) {
    font-size: 28px;
  }

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

.ui.heading.size-textxs {
  font-size: 13px;
  font-weight: 500;
}

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

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