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

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

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

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

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

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

.ui.button.fill.orange_500 {
  background-color: var(--orange_500);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

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

.ui.heading.size-headings {
  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-headingmd {
  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_dd);
  font-family: Inter;
}

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