/*=========== TABLE OF CONTENTS ===========
1. Input CSS
2. Text CSS
3. Heading CSS
4. Container CSS
==========================================*/

/*-------------------------------------
  1. Input CSS
--------------------------------------*/
.ui.input.square {
    border-radius: 0px;
  }
  
  .ui.input.size-md {
    height: 30px;
    padding-left: var(--space-xs);
    padding-right: var(--space-xs);
    font-size: 13px;
  }
  
  .ui.input.underline.white_a700 {
    color: var(--gray_800);
    border-bottom: 1px solid var(--white_a700);
  }
  
  .ui.input {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: text;
    color: var(--gray_800);
    font-family: Glacial Indifference;
    font-size: 13px;
    align-self: stretch;
    border-bottom: 1px solid var(--white_a700);
  }
  
  /*-------------------------------------
    2. Text CSS
  --------------------------------------*/
  .ui.text.size-textxl {
    font-size: 13px;
    font-weight: 400;
    color: white !important;
    background-color: black !important;
  }
  
  .ui.text.size-text4xl {
    font-size: 20px;
    font-weight: 400;
  }
  
  .ui.text.size-text5xl {
    font-size: 24px;
    font-weight: 400;
    @media only screen and (max-width: 1050px) {
      font-size: 22px;
    }
  }
  
  .ui.text.size-text7xl {
    font-size: 36px;
    font-weight: 400;
    @media only screen and (max-width: 1050px) {
      font-size: 34px;
    }
  
    @media only screen and (max-width: 550px) {
      font-size: 32px;
    }
  }
  
  .ui.text.size-text8xl {
    font-size: 48px;
    font-weight: 400;
    @media only screen and (max-width: 1050px) {
      font-size: 44px;
    }
  
    @media only screen and (max-width: 550px) {
      font-size: 38px;
    }
  }
  
  .ui.text {
    color: var(--white_a700);
    font-family: Glacial Indifference;
  }
  
  /*-------------------------------------
    3. Heading CSS
  --------------------------------------*/
  .ui.heading.size-headingxl {
    font-size: 13px;
    font-weight: 700;
  }
  
  .ui.heading.size-heading2xl {
    font-size: 15px;
    font-weight: 700;
  }
  
  .ui.heading.size-heading4xl {
    font-size: 20px;
    font-weight: 700;
    /* @media only screen and (max-width: 768px) {
      font-size: 10px; */
  }
  
  .ui.heading {
    color: var(--white_a700);
    font-family: Glacial Indifference;
  }
  
  /*-------------------------------------
    4. Container CSS
  --------------------------------------*/
  .container-xs {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  

  