/* ==========================================================================
   multistep css
   ========================================================================== */
   .multisteps-form__progress {
    padding-top: 60px;
    height: 100%;
  }
  
  .multisteps-form__panel {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    overflow: hidden;
    height: 0;
  }
  .multisteps-form__panel.js-active {
    opacity: 1;
    visibility: visible;
    overflow: visible;
    height: auto;
  }
  .multisteps-form__panel[data-animation=scaleOut] {
    transform: scale(1.1);
  }
  .multisteps-form__panel[data-animation=scaleOut].js-active {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    transform: scale(1);
  }
  .multisteps-form__panel[data-animation=slideHorz] {
    left: -50px;
  }
  .multisteps-form__panel[data-animation=slideHorz].js-active {
    transition-property: all;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(0.2, 1.13, 0.38, 1.43);
    transition-delay: 0s;
    left: 0;
  }
  .multisteps-form__panel[data-animation=slideVert] {
    top: 30px;
  }
  .multisteps-form__panel[data-animation=slideVert].js-active {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    top: 0;
  }
  .multisteps-form__panel[data-animation=fadeIn].js-active {
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: linear;
    transition-delay: 0s;
  }
  .multisteps-form__panel[data-animation=scaleIn] {
    transform: scale(0.9);
  }
  .multisteps-form__panel[data-animation=scaleIn].js-active {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    transform: scale(1);
  }
  
  .actions {
    right: 0px;
    bottom: -125px;
    margin-bottom: 20px;
    position: absolute;
  }
  .actions li {
    height: 65px;
    width: 430px;
    color: #3c3c3c;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
    line-height: 70px;
    margin-left: 15px;
    text-align: center;
    border-radius: 3px;
    display: inline-block;
    background-color: #fff;
    overflow: hidden;
    text-transform: uppercase;
  }
  .actions li span, .actions li button {
    border: none;
    text-transform: uppercase;
    width: 100%;
    display: block;
    transition: 0.3s all ease-in-out;
  }
  .actions li span:hover, .actions li button:hover {
    background-color: #78c68e;
    color: #fff;
  }
  
  .wizard-progress {
    bottom: -80px;
    width: 250px;
    position: absolute;
  }
  .wizard-progress span {
    color: #1b1b1b;
    display: block;
    margin-bottom: 10px;
  }
  .wizard-progress .progress {
    border-radius: 30px;
    background-color: #fff;
  }
  .wizard-progress .progress-bar {
    border-radius: 30px;
    background-color: #eebb0e;
  }
  /*---------------------------------------------------- */
  /*inner area*/
  /*----------------------------------------------------*/
  .wizard-content-1 {
    margin: 0px auto 150px;
    max-width: 1680px;
    background-color: #fff;
    border-radius: 20px;
  }
  .wizard-content-1 .survey-top-title {
    top: -90px;
    z-index: 1;
    margin: 0 auto;
    font-size: 45px;
    max-width: 1490px;
    border-radius: 100px;
    padding: 45px 0px 35px;
    background-color: #414040;
  }
  .wizard-content-1 .survey-top-title:before {
    top: 0;
    right: -10px;
    content: "";
    z-index: -1;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 100px;
    background-color: #78c68e;
  }
  .wizard-content-1 .survey-top-title:after {
    top: 0;
    content: "";
    z-index: -2;
    width: 100%;
    height: 100%;
    right: -20px;
    position: absolute;
    border-radius: 100px;
    background-color: #414040;
  }
  .wizard-content-1 .survey-top-title h2 {
    color: #fff;
    margin: 0 auto;
    font-size: 45px;
    max-width: 550px;
    font-weight: 700;
    line-height: 1.111;
  }
  .wizard-content-1 .survey-form-img {
    float: left;
    margin-right: 100px;
  }
  .wizard-content-1 .survey-form-area {
    padding: 10px 115px 80px;
  }
  .wizard-content-1 .survey-form-field h3 {
    color: #1b1b1b;
    font-size: 42px;
    font-weight: 700;
    padding-bottom: 45px;
  }
  .wizard-content-1 .survey-form-field li {
    margin-bottom: 40px;
  }
  .wizard-content-1 .survey-form-field li label {
    width: 100%;
    color: #414040;
    font-size: 30px;
    padding-left: 65px;
  }
  .wizard-content-1 .survey-form-field li .exp-option-box {
    display: none;
  }
  .wizard-content-1 .survey-form-field li .checkmark-border:before {
    top: 0px;
    width: 45px;
    content: "";
    left: -65px;
    height: 45px;
    position: absolute;
    border-radius: 100%;
    background-color: #fff;
    border: 1px solid #c4c4c4;
  }
  .wizard-content-1 .survey-form-field li .checkmark-border:after {
    top: 7px;
    left: -57px;
    width: 30px;
    content: "";
    height: 30px;
    display: none;
    position: absolute;
    border-radius: 100%;
    background-color: #78c68e;
  }
  .wizard-content-1 .survey-form-field li .exp-option-box:checked ~ .checkmark-border:after {
    display: block;
  }
  .wizard-content-1 .q-depth-input-area .input-depth input {
    width: 100%;
  }
  .wizard-content-1 .survey-content-two .survey-form-field {
    max-width: 700px;
    padding-bottom: 60px;
    display: inline-block;
  }
  .wizard-content-1 .survey-content-two .survey-form-field h3 {
    font-size: 40px;
  }
  .wizard-content-1 .survey-content-two .survey-form-field .q-depth-input-area .input-depth {
    margin-bottom: 20px;
  }
  .wizard-content-1 .survey-content-two .survey-form-field .q-depth-input-area .input-depth input {
    height: 80px;
    border-radius: 4px;
    padding-left: 90px;
    border: 2px solid #000;
  }
  .wizard-content-1 .survey-content-two .survey-form-field .q-depth-input-area .input-depth .in-icon {
    top: 23px;
    left: 30px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    position: absolute;
    border-radius: 100%;
    background-color: #002e52;
  }
  .wizard-content-1 .survey-content-two .survey-form-field .q-depth-input-area .input-depth .in-icon i {
    color: #fff;
  }
  .wizard-content-1 .survey-content-two .survey-form-field .survey-ratting {
    margin: 18px 0px 65px;
    border-radius: 5px;
    display: inline-block;
    padding: 10px 40px 30px;
    border: 2px solid #78c68e;
  }
  .wizard-content-1 .survey-content-two .survey-form-field .survey-ratting .survey-rate-text {
    left: 0;
    right: 0;
    color: #fff;
    width: 155px;
    height: 28px;
    bottom: -15px;
    margin: 0 auto;
    font-size: 14px;
    text-align: center;
    line-height: 27px;
    position: absolute;
    border-radius: 6px;
    background-color: #78c68e;
  }
  .wizard-content-1 .survey-content-two .survey-form-field .survey-ratting li {
    width: 30px;
    height: 25px;
    padding-left: 0;
    margin-bottom: 0;
    display: inline-block;
  }
  .wizard-content-1 .survey-content-two .survey-form-field .survey-ratting li label {
    padding-left: 0;
  }
  .wizard-content-1 .survey-content-two .survey-form-field .survey-ratting li .survey-rate {
    display: none;
  }
  .wizard-content-1 .survey-content-two .survey-form-field .survey-ratting li .survey-rate-option .survey-rate:checked ~ .rate-value:before {
    content: "";
    font-weight: 900;
  }
  .wizard-content-1 .survey-content-two .survey-rate-content {
    padding-top: 70px;
  }
  .wizard-content-1 .survey-content-two .survey-rate-content h3 {
    padding-bottom: 32px;
  }
  .wizard-content-1 .survey-content-two .survey-rate-content p {
    color: #1b1b1b;
    font-size: 20px;
  }
  .wizard-content-1 .survey-content-two .survey-connect-option {
    max-width: 470px;
    margin-top: 10px;
  }
  .wizard-content-1 .survey-content-two .survey-connect-option:after {
    top: 25px;
    right: 20px;
    font-size: 20px;
    content: "";
    position: absolute;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
  }
  .wizard-content-1 .survey-content-two .survey-connect-option select {
    width: 100%;
    height: 80px;
    font-weight: 400;
    font-size: 18px;
    border-radius: 4px;
    padding-left: 35px;
    border: 2px solid #78c68e;
    -webkit-appearance: none;
  }
  .wizard-content-1 .survey-content-two .survey-thankyou p {
    color: #1b1b1b;
    font-size: 20px;
    padding: 10px 0px;
  }
  .wizard-content-1 .survey-content-two .survey-thankyou h2 {
    color: #1b1b1b;
    font-size: 42px;
    font-weight: 700;
  }
  .actions {
    right: 0px;
    bottom: -125px;
    margin-bottom: 20px;
    position: absolute;
  }
  .actions li {
    height: 65px;
    width: 430px;
    color: #3c3c3c;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
    line-height: 70px;
    margin-left: 15px;
    text-align: center;
    border-radius: 3px;
    display: inline-block;
    background-color: #fff;
    overflow: hidden;
    text-transform: uppercase;
  }
  .actions li span, .actions li button {
    border: none;
    text-transform: uppercase;
    width: 100%;
    display: block;
    transition: 0.3s all ease-in-out;
  }
  .actions li span:hover, .actions li button:hover {
    background-color: #eebb0e;
    color: #fff;
  }
  .row.column-layout {
          flex-direction: column;
  }