.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;
}

.checkbox-group .head{
  padding: 11px;
  background-color: #555555;
  color: #fff;
}

.checkbox-group .item{
  padding: 10px;
  border: solid #ccc;
  border-width: 0 1px 1px 1px;
}

.checkbox-group .item:first-child{
  border-width: 1px;
}



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: #eaeaea;
}

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

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 34px;
  top: -2px;
  }

  /* Hide default HTML checkbox */
  .switch input {
  opacity: 0;
  width: 0;
  height: 0;
  }

  /* The slider */
  .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  }

  .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  }

  input:checked + .slider {
  background-color: #2196F3;
  }

  input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
  }

  input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
  }

  /* Rounded sliders */
  .slider.round {
  border-radius: 34px;
  }

  .slider.round:before {
  border-radius: 50%;
  } 


.inp-btn-row{
  position: relative;
}

.inp-btn-row button{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    line-height: 10px;
}