.inp-layout-01{
    position: relative;
    margin-bottom: 15px;
}

.js .inp-layout-01 label{
    position: absolute;
    top: 5px;
    left: 10px;
    z-index: 0;
    transition: all 0.2s;
}

.inp-layout-01 input[type=text]{
    position: relative;
    z-index: 0;
    background-color: transparent;
    z-index: 1;
}

.inp-layout-01.focus input[type=text],
.inp-layout-01.has_content input[type=text]{
    padding-top: 10px;
}

.inp-layout-01.focus label,
.inp-layout-01.has_content label{
    top: -13px;
    font-size: 14px;
    background-color: #fff;
    z-index: 2;
}











/* Base for label styling */
.checkbox [type="checkbox"]:not(:checked),
.checkbox [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
.checkbox [type="checkbox"]:not(:checked) + label,
.checkbox [type="checkbox"]:checked + label {
  position: relative;
  padding-left: 1.95em;
  cursor: pointer;
}

/* checkbox */
.checkbox [type="checkbox"]:not(:checked) + label:before,
.checkbox [type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 1.1em; height: 1.1em;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 4px;
}

.checkbox [type="checkbox"]:checked + label:before{
    border-color: #474747;
}

.checkbox [type="checkbox"]:not(:checked) + label:after,
.checkbox [type="checkbox"]:checked + label:after {
  content: '\2713\0020';
  position: absolute;
  top: .20em; 
  left: .18em;
  font-size: 1.1em;
  line-height: 0.75;
  color: #09ad7e;
  transition: all .2s;
  font-weight: bold;
}

.checkbox [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.checkbox [type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

.checkbox [type="checkbox"]:disabled:not(:checked) + label:before,
.checkbox [type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
.checkbox [type="checkbox"]:disabled:checked + label:after {
  color: #999;
}

.checkbox [type="checkbox"]:disabled + label {
  color: #aaa;
}

label:hover:before {
  border: 1px solid #2981b3!important;
}




ul.step-pager{
  margin: 0;
  padding: 0;
  list-style-type: none;
  /* margin-bottom: 30px; */
}

ul.step-pager li{
  display: inline-block;
  width: 20%;
}

ul.step-pager li a{
  display: block;
  padding: 0.5em;
  border-bottom: 3px solid #aaa;
  text-align: center;
  color: #aaa;
  cursor: pointer;
}

ul.step-pager li.active a{
  border-color: #2981b3;
  color: #2981b3;
}

.step-form .step{
  display: none;
  padding: 30px;
  /* border: solid #ccc;
  border-width: 0 1px 1px 1px; */
  background-color: #f5f5f5;
}

.step-form .step.active{
  display: block;
}