/*-----------------------
    Common CSS
-------------------------*/
* {
    margin: 0;
    padding: 0;
  }
  
  html {
    padding: 0;
    margin: 0;
    font-weight: 400;
    font-family: 'Noto Sans', sans-serif;
  }
  
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
    font-family: 'Noto Sans', sans-serif;
    background: white;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    line-height: 1.2;
    font-family: 'Noto Sans', sans-serif;
  }
  p{
    font-family: 'Noto Sans', sans-serif;
    margin-bottom: 0;
  }
  
  ul {
    padding: 0;
    margin: 0;
  }
  
  textarea {
    resize: none !important;
  }
  
  button,
  select {
    cursor: pointer;
  }
  button{
    border: none;
    outline: none;
  }
  
  button:focus,
  input:focus,
  select:focus,
  textarea:focus {
    outline: none;
  }
  
  ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }
    
  a {
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: none;
  }
  
  
  /*-----------------------
      Common CSS
  -------------------------*/

  .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 1px solid #009348;
    background: #009348;
    font-weight: normal;
    color: #ffffff !important;
}