.wizard-block .name  {

    display: block;
    width: 100%;
    clear:both;

    margin-bottom: 30px;

}

.wizard-block .type  {

  display: block;
  width: 100%;
  clear:both;

  margin-bottom: 10px;
  margin-top: 20px;

}

.wizard-block-content #form{
  margin: 30px 0;
  height: auto;
  display: block;
  pointer-events: none;
  position: relative;
}

.wizard-block-content #form .loader-div{
  width:100%;
  height:100%;
  position: absolute;
  align-items: center;
  justify-content: center;
  display:none;
  pointer-events: none;
  background-color: #fff;
}

.wizard-block-content #form .loader {
  position: absolute;
  border: 8px solid #f3f3f3; /* Light grey */
  border-top: 8px solid #cc0c00; /* Blue */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#iframe{
  min-height: 30px;
  pointer-events: all;
}


.wizard-block .input-block{
  padding: 15px;
  display: block;
  float: left;
  background-color: #cc0c00;
  color: #fff !important;
  margin-bottom: 20px;
  font-size: 18px;

  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;



  width: -webkit-calc(50% - 40px);
  width: expression(50% - 40px);
  width: -moz-calc(50% - 40px);
  width: -o-calc(50% - 40px);
  width: calc(50% - 40px);

  -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.4);
  -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.4);
  box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.4);
}

.wizard-block .input-block:hover{
  background: #e7e7e7;
  color: #000 !important;
}

.wizard-block .input-block input{
  width: 1px;
  height: 0px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
}

.wizard-block .input-block:nth-child(odd) {
  float:right;
}

.wizard-block .input-block:nth-child(even) {
  clear: both;
}

#wizard .back a{
  margin-bottom: 20px;
  display: block;
}
