/*=========== 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-xs);
}

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

.ui.button.size-sm {
  height: 48px;
  padding-left: var(--space-5xl);
  padding-right: var(--space-5xl);
  font-size: 16px;
}

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

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

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

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

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

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

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

.ui.text.size-texts {
  font-size: 16px;
  font-weight: 400;
  font-style: bold;
}

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

/*-------------------------------------
  3. Heading CSS
--------------------------------------*/
.ui.heading.size-texts {
  font-size: 18px;
  font-weight: 500;
}

.ui.heading.size-textmd {
  font-size: 18px;
  font-weight: 500;
  font-style: bold;
}

.ui.heading.size-textlg {
  font-size: 19px;
  font-weight: 500;
  font-style: bold;
}

.ui.heading.size-textxl {
  font-size: 22px;
  font-weight: 500;
  font-style: bold;
}

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

.ui.heading.size-text3xl {
  font-size: 80px;
  font-weight: 500;
  font-style: bold;
  @media only screen and (max-width: 1050px) {
    font-size: 48px;
  }
}

.ui.heading.size-text4xl {
  font-size: 56px;
  font-weight: 500;
  font-style: bold;
  @media only screen and (max-width: 1050px) {
    font-size: 48px;
  }

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

.ui.heading.size-headingxs {
  font-size: 14px;
  font-weight: 700;
  font-style: bold;
}

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

.ui.heading {
  color: var(--blue_gray_900);
  font-family: Urbanist;
}

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