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

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

.ui.input.size-xs {
  height: 40px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 20px;
}

.ui.input.underline.white_a700 {
  color: var(--white_a700);
  border-bottom: 1px solid var(--white_a700);
}

.ui.input {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: text;
  color: var(--white_a700);
  font-size: 20px;
  border-bottom: 1px solid var(--white_a700);
}

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

.ui.button.size-xs {
  height: 56px;
  padding-left: var(--space-9xl);
  padding-right: var(--space-9xl);
  font-size: 18px;
}

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

.ui.button.gradient.linear_light_green_500 {
  background: linear-gradient(34deg, #08bbbf, #9ad63c);
  color: var(--white_a700);
}

.ui.button.outline.linear_light_green_500 {
  border-image: linear-gradient(34deg, #08bbbf, #9ad63c) 1;
  color: var(--white_a700);
  border: 2px solid transparent;
}

.ui.button {
  text-align: center;
  display: flex;
  cursor: pointer;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-weight: 700;
  border-radius: var(--radius-2xl);
}

/*-------------------------------------
  3. Text CSS
--------------------------------------*/
.ui.text.size-__ {
  font-size: 20px;
  font-weight: 400;
  @media only screen and (max-width: 1560px) {
    font-size: 17px;
  }
  @media only screen and (max-width: 767px) {
    font-size: 14px;
  }
}

.ui.text.size-textxs {
  font-size: 16px;
  font-weight: 400;
  @media only screen and (max-width: 1560px) {
    font-size: 13px;
  }
}

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

.ui.text.size-textmd {
  font-size: 19px;
  font-weight: 400;
  @media only screen and (max-width: 1560px) {
    font-size: 16px;
  }
}

.ui.text.size-textxl {
  font-size: 24px;
  font-weight: 400;
  @media only screen and (max-width: 1560px) {
    font-size: 20px;
  }

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

.ui.text {
  color: var(--white_a700);
  font-family: var(--font-product);
}

/*-------------------------------------
  4. Heading CSS
--------------------------------------*/
.ui.heading.size-_____ {
  font-family: var(--font-product);
  font-size: 60px;
  font-weight: 700;
  @media only screen and (max-width: 1560px) {
    font-size: 40px;
  }

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

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

.ui.heading.size-____ {
  font-family: var(--font-product);
  font-size: 32px;
  font-weight: 700;
  @media only screen and (max-width: 1560px) {
    font-size: 27px;
  }

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

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

.ui.heading.size-textlg {
  font-size: 20px;
  font-weight: 500;
  @media only screen and (max-width: 1560px) {
    font-size: 17px;
  }
}

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

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

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

.ui.heading.size-headingmd {
  font-size: 40px;
  font-weight: 700;
  @media only screen and (max-width: 1560px) {
    font-size: 34px;
  }

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

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

.ui.heading.size-headinglg {
  font-size: 64px;
  font-weight: 700;
  @media only screen and (max-width: 1560px) {
    font-size: 40px;
  }

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

.ui.heading.size-headingxl {
  font-size: 65px;
  font-weight: 700;
  @media only screen and (max-width: 1560px) {
    font-size: 40px;
  }

  @media only screen and (max-width: 1050px) {
    font-size: 48px;
  }
}
@media (max-width: 1199px) {
	.post-details .ui.heading.size-____ {
		font-size: 20px;
	}
}
@media (max-width: 767px) { 
	.ui.button.size-xs { height: 46px; font-size: 16px; padding-left: 15px; padding-right: 15px; width: 140px; min-width: 140px; }
}
.ui.heading {
  color: var(--white_a700);
  font-family: var(--font-product);
}

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

.container-sm {
  max-width: 1572px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.container-md {
  max-width: 1574px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.container-lg {
  max-width: 1702px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
