/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {margin: 0; padding: 0;}

html {
  height: 100%;
  /*Image only BG fallback*/
  background: url(https://claimform.midwiferycouncil.health.nz/MCNZ_Background.png);
  /*background = gradient + image pattern combo*/
  /*background: url(http://img6.uploadhouse.com/fileuploads/17737/17737075bdad5cfa9423bb2c3c2beee695c72bb8.jpg); */
}
img {
  width: 200px;
}
  
.Required:placeholder-shown {
  border-left: 5px solid red;
  }

body {
  font-family: montserrat, arial, verdana;
  min-height: 100vh;
}
h1 {
    color: rgba(11, 23, 190, 0.849);
    font-family: Arial, Helvetica, sans-serif;
}

/*form styles*/
#msform {

  text-align:left;
}
#msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 3px;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  position: absolute;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
  display: none;
  
}

.Table1, .Table2 {
  display:none;
}

/*inputs*/

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input, textarea, select {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 10px;
  width: 100%;
  background: rgba(0,0,0,0.05);
  box-sizing: border-box;
  font-family: montserrat;
  color: #2C3E50;
  font-size: 10px;
  transition: background 0.5s;
  &:focus{
    outline-width: 0;
    background: rgba(31,134,252, 0.15);
    transition: background 0.5s;
  }
}

/*buttons*/
#msform .action-button {
  width: 100px;
  background: #27AE60;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 1px;
  cursor: pointer;
  padding: 10px;
  margin: 10px 5px;
  text-decoration: none;
  font-size: 14px;
}
#msform .action-button:hover, #msform .action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}
/*headings*/
.fs-title {
  font-size: 15px;
  text-transform: uppercase;
  color: #2C3E50;
  margin-bottom: 10px;
}
.fs-subtitle {
  font-weight: normal;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
    overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
}
#progressbar li {
  list-style-type: none;
  color: white;
  text-transform: uppercase;
  font-size: 0px;
  float: left;
  position: relative;
}
#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 0px;
  line-height: 0px;
  display: block;
  font-size: 0px;
  color: #333;
  background: white;
  border-radius: 3px;
  margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
  content: '';
  width: 0%;
  height: 0px;
  background: white;
  position: absolute;
  left: 0%;
  top: 0px;
  z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
  /*connector not needed before the first step*/
  content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
  background: #27AE60;
  color: black;
}
.RateText {
    content: 'Rate: ';
    border:0;
}

.fieldsetCSS1 {
  position: relative;
}
.TableExp, .workclass {
  width: 100%;
  border: solid;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: left;
  position: relative;

  border-collapse: collapse; 
}
.TableExp th {
  color: white;
  border-color: white;
  background: url(http://img6.uploadhouse.com/fileuploads/17737/17737075bdad5cfa9423bb2c3c2beee695c72bb8.jpg);
  position: sticky;
  top: 0%;
}
.TableExp td,.TableExp th {
  padding: 10px;
  text-align: left;
  font-size: 10px;

} 
.TableExp input,
.TableExp select{
  background-color: rgb(246, 248, 250);
  color: black; 
  padding: 1px;
}
.SubTotalExplbl {
  color: black;
}

div.scroll {

  width:auto;
  height:200PX;
  FLOAT: left;
  padding: 1%;
  overflow:scroll;
  }
  .IRDLink {
    color: blue;
  }


  
  @media (min-width:900px)
  {
    body {
    font-family: montserrat, arial, verdana;
    height: 100vh;
    }
    #msform {
      margin: 50px auto;
      position: relative;
      width: 900px;
      text-align: center;
    }

    #msform fieldset {
      margin: 0 10%;
      
    }

    img {
      width: 400px;
      margin: 10px auto;
      text-align: center;
      position: relative;
    }

    textarea {
      resize: none;
    }
    .SummaryTable, .TableExp td,.TableExp th {
      padding: 10px;
      text-align: left;
      font-size: 14px;
    
    } 
    #progressbar {
      margin-bottom: 30px;
      overflow: hidden;
      /*CSS counters to number the steps*/
      counter-reset: step;
    }
    #progressbar li {
      list-style-type: none;
      color: white;
      text-transform: uppercase;
      font-size: 9px;
      width: 16.6%;
      float: left;
      position: relative;
    }
    #progressbar li:before {
      content: counter(step);
      counter-increment: step;
      width: 20px;
      line-height: 20px;
      display: block;
      font-size: 10px;
      color: #333;
      background: white;
      border-radius: 3px;
      margin: 0 auto 5px auto;
    }
    /*progressbar connectors*/
    #progressbar li:after {
      content: '';
      width: 100%;
      height: 2px;
      background: white;
      position: absolute;
      left: -50%;
      top: 9px;
      z-index: -1; /*put it behind the numbers*/
    }

    input, textarea, select {
      padding: 15px;
      border: 1px solid #ccc;
      border-radius: 3px;
      margin-bottom: 10px;
      width: 80%;
      background: rgba(0,0,0,0.05);
      box-sizing: border-box;
      font-family: montserrat;
      color: #2C3E50;
      font-size: 13px;
      transition: background 0.5s;
      &:focus{
        outline-width: 0;
        background: rgba(31,134,252, 0.15);
        transition: background 0.5s;
      }
    }
    #msform fieldset {
      padding: 20px 30px;
      width: 80%;
  
    }
    .currencyinput::before {
      content: '$';
      border:0;
      
  }

    div.Summary {
      width: 100%;
      margin-left: 30%;
  }
  }