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

/*-------------------------------------
  1. Button CSS
--------------------------------------*/
.ui.button.circle {
  border-radius: 50%;
}

.ui.button.round {
  border-radius: var(--radius-sm);
}

.ui.button.size-lg {
  height: 52px;
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

.ui.button.size-xs {
  height: 28px;
  padding-left: 34px;
  padding-right: 34px;
  font-size: 12px;
}

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

.ui.button.size-sm {
  height: 38px;
  padding-left: var(--space-3xl);
  padding-right: var(--space-3xl);
  font-size: 12px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui.input {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: text;
  color: var(--gray_500_01);
  background-color: var(--white_a700);
}

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

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

.ui.textarea.taroutlinegray300.white_a700 {
  background-color: var(--white_a700);
  border: 1px solid var(--gray_300) !important;
}

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

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

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

.ui.selectbox.fill.white_a700 {
  background-color: var(--white_a700);
  color: var(--gray_700_01);
}

.ui.selectbox {
  display: flex;
}

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

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

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

.ui.text.size-textlg {
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
}

.ui.text.size-textxl {
  font-size: 18px;
  font-weight: 300;
  font-style: bold;
}

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

.ui.text.size-text3xl {
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  @media only screen and (max-width: 1050px) {
    font-size: 22px;
  }
}

.ui.text.size-text4xl {
  font-size: 28px;
  font-weight: 400;
  font-style: normal;
  @media only screen and (max-width: 1050px) {
    font-size: 26px;
  }

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

.ui.text.size-text5xl {
  font-size: 30px;
  font-weight: 400;
  font-style: normal;
  @media only screen and (max-width: 1050px) {
    font-size: 28px;
  }

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

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

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

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

/*-------------------------------------
  6. Heading CSS
--------------------------------------*/
.ui.heading.size-headingxs {
  font-size: 8px;
  font-weight: 600;
  font-style: italic;
}

.ui.heading.size-headings {
  font-size: 10px;
  font-weight: 600;
  font-style: bold;
}

.ui.heading.size-headingmd {
  font-size: 12px;
  font-weight: 700;
  font-style: bold;
}

.ui.heading.size-headinglg {
  font-size: 14px;
  font-weight: 600;
  font-style: bold;
}

.ui.heading.size-headingxl {
  font-size: 28px;
  font-weight: 600;
  font-style: bold;
  @media only screen and (max-width: 1050px) {
    font-size: 26px;
  }

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

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

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

/* Responsive button and text styles */
@media only screen and (max-width: 550px) {
  .ui.button.size-md {
    height: 36px;
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .ui.text.size-textxl {
    font-size: 16px;
  }
}
