

  .wizard,
  .tabcontrol
  {
      display: block;
      width: 100%;
      overflow: hidden;
  }

  .wizard a,
  .tabcontrol a
  {
      outline: 0;
  }

  .wizard ul,
  .tabcontrol ul
  {
      list-style: none !important;
      padding: 0;
      margin: 0;
  }

  .wizard ul > li,
  .tabcontrol ul > li
  {
      display: block;
      padding: 0;
  }

  /* Accessibility */
  .wizard > .steps .current-info,
  .tabcontrol > .steps .current-info
  {
      position: absolute;
      left: -999em;
  }

  .wizard > .content > .title,
  .tabcontrol > .content > .title
  {
      position: absolute;
      left: -999em;
  }



  /*
      Wizard
  */

  .wizard > .steps
  {
      position: relative;
      display: block;
      width: 100%;
  }

  .wizard.vertical > .steps
  {
      display: inline;
      float: left;
      width: 30%;
  }

  .wizard > .steps .number
  {
      font-size: 1.429em;
  }

  .wizard > .steps > ul > li
  {
      width: 25%;
  }

  .wizard > .steps > ul > li,
  .wizard > .actions > ul > li
  {
      float: left;
  }

  .wizard.vertical > .steps > ul > li
  {
      float: none;
      width: 100%;
  }

  .wizard > .steps a,
  .wizard > .steps a:hover,
  .wizard > .steps a:active
  {
      display: block;
      width: auto;
      margin: 0 0.5em 0.5em;
      padding: 0.5em 0;
      text-decoration: none;
      -webkit-border-radius: 0px;
      -moz-border-radius: 0px;
      border-radius: 0px;
  }

  .wizard > .steps .disabled a,
  .wizard > .steps .disabled a:hover,
  .wizard > .steps .disabled a:active
  {
      cursor: default;
  }

  .wizard > .steps .current a,
  .wizard > .steps .current a:hover,
  .wizard > .steps .current a:active
  {
      color: #00a4af;
      cursor: default;
      border-bottom: 1px solid #00a4af;
  }

  .wizard > .steps .done a,
  .wizard > .steps .done a:hover,
  .wizard > .steps .done a:active
  {
      color: #00a4af;
  }

  .wizard > .steps .error a,
  .wizard > .steps .error a:hover,
  .wizard > .steps .error a:active
  {
      color: #ff5e24;
      border-bottom: 1px solid #ff5e24;
  }
  .wizard .form-group__flex{
      display: flex;
  }
  .wizard .form-group__flex input{
      width: 30%;
  }
  .wizard .form-group__flex p{
    margin-left: 10px;
    line-height: 40px;
}

  .wizard > .content
  {
      display: block;
      margin: 0.5em 0;
      /* min-height: 45em; */
      overflow: hidden;
      position: relative;
      width: auto;

      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      border-radius: 5px;
  }

  .wizard.vertical > .content
  {
      display: inline;
      float: left;
      margin: 0 2.5% 0.5em 2.5%;
      width: 65%;
  }

  .wizard > .content > .body
  {
      /* float: left;
      position: absolute; */
      width: 95%;
      height: 95%;
      padding: 2.5%;
  }

  .wizard > .content > .body ul
  {
      list-style: disc !important;
  }

  .wizard > .content > .body ul > li
  {
      display: list-item;
  }

  .wizard > .content > .body input[type="checkbox"]
  {
      display: inline-block;
  }

  .wizard > .content > .body input.error,
  .wizard > .content > .body textarea.error,
  .wizard > .content > .body select.error
  {
      background: rgb(251, 227, 228);
      border: 1px solid #fbc2c4;
      color: #8a1f11;
  }
  .wizard .form-inline .form-group label{
      margin-right: 5px;
  }

  .wizard > .content > .body label
  {
      display: inline-block;
  }

  .wizard > .content > .body label.radio-inline{
      margin-right: 15px;
      cursor: pointer;
  }

  .wizard > .content > .body label.error
  {
      color: #8a1f11;
      display: inline-block;
      margin-left: 1.5em;
      display: none !important;
  }

  .wizard > .actions
  {
      position: relative;
      display: block;
      text-align: right;
      width: 100%;
  }

  .wizard.vertical > .actions
  {
      display: inline;
      float: right;
      margin: 0 2.5%;
      width: 95%;
  }

  .wizard > .actions > ul
  {
      display: inline-block;
      text-align: right;
  }

  .wizard > .actions > ul > li
  {
      margin: 0 0.5em;
  }

  .wizard.vertical > .actions > ul > li
  {
      margin: 0 0 0 1em;
  }

  .wizard > .actions a,
  .wizard > .actions a:hover,
  .wizard > .actions a:active
  {
      background: #00a4af;
      color: #fff;
      display: block;
      padding: 0.5em 1em;
      text-decoration: none;

      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      border-radius: 5px;
  }

  .wizard > .actions .disabled a,
  .wizard > .actions .disabled a:hover,
  .wizard > .actions .disabled a:active
  {
      background: #eee;
      color: #aaa;
  }

  #contact input[type="text"],
  #contact input[type="email"],
  #contact input[type="tel"],
  #contact input[type="url"],
  #contact select{
    border-radius: 0;
    height: 32px;
    font-size: 13px;
  }

  #contact textarea{
    border-radius: 0;
    font-size: 13px;
  }

  #contact input:focus,
  #contact select{
      outline: none;
  }

  fieldset {
    border: medium none !important;
    margin: 0 0 10px;
    min-width: 100%;
    padding: 0;
    width: 100%;
  }

  #contact button[type="submit"] {
    cursor: pointer;
    width: 100%;
    border: none;
    background: #4CAF50;
    color: #FFF;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 15px;
  }

  #contact button[type="submit"]:hover {
    background: #43A047;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
  }

  #contact button[type="submit"]:active {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
  }

  .copyright {
    text-align: center;
  }

  #contact input:focus,
  #contact textarea:focus {
    outline: 0;
    border: 1px solid #aaa;
  }

  ::-webkit-input-placeholder {
    color: #888;
  }

  :-moz-placeholder {
    color: #888;
  }

  ::-moz-placeholder {
    color: #888;
  }

  :-ms-input-placeholder {
    color: #888;
  }

  .steps > ul > li > a,
  .actions li a {
      padding: 10px;
      text-decoration: none;
      margin: 1px;
      display: block;
      color: #777;
  }
  .steps > ul > li,
  .actions li {
      list-style:none;
  }

  #contact .select2-container{
      width: 100% !important;
  }
  #contact .select2-container--default .select2-selection--single,
  #contact .select2-container--default .select2-selection--multiple{
      border-radius: 0;
      min-height: 40px;
  }
  #contact .select2-container--default .select2-selection--multiple:after{
    content: '';
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    right: 8px;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
  }
  #contact .select2-container--default .select2-selection--single .select2-selection__rendered{
      line-height: 40px;
  }
  #contact .select2-container--default .select2-selection--multiple .select2-selection__rendered{
      line-height: 26px;
  }
  #contact .select2-container--default .select2-selection--single .select2-selection__arrow,
  #contact .select2-container--default .select2-selection--multiple .select2-selection__arrow{
      height: 40px;
  }

@media screen and (max-width: 992px) {
    .wizard > .steps > ul > li{
        display: inline-block;
        float: initial;
        width: 50%;
    }
}
@media screen and (max-width: 768px) {
    .wizard .form-inline .form-control{
        min-width: 110px;
    }
    .wizard .form-inline {
        flex-flow: initial;
    }
    .wizard .form-inline .form-group{
        display: block;
        flex: auto;
    }
    .wizard > .steps > ul > li a{
        font-size: 13px;
    }
    .wizard .form-inline .form-inline__div{
        flex: 1 1 0px;
    }
}
@media screen and (max-width: 576px) {
    .wizard > .steps > ul > li a{
        font-size: 12px;
    }
    .wizard .form-inline .form-group{
        margin: 0 5px 1rem 0;
    }
    .wizard .form-inline .form-inline__div{
        margin-right: 5px;
    }
    .wizard > .content > .body label{
        font-size: 13px;
    }
    .wizard .form-group__flex{
        display: block;
    }
    .wizard .form-group__flex input{
        width: 100%;
    }
    .wizard .form-group__flex p{
        margin-left: 0;
        font-size: 13px;
    }
}
@media screen and (max-width: 500px) {
    .wizard .form-inline .form-control{
        min-width: 70px;
    }
}
  @media screen and (max-width: 400px) {
      .wizard .form-inline .form-inline__div{
          flex: 1 1 0px;
      }
  }
