﻿/*
    Common 
*/

.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: 15%;
    float: left;
    padding-top: 3.5rem;
}
.wizard > .steps::before {
    content: "Steps";
    position: absolute;
    right: 0;
    top: .6rem;
    color: #fff;
    font-size: .8rem;
    left: 0;
    text-align: center;
    display: block;
    width: 100%;
}
.wizard > .steps::after {
    content: "to follow";
    position: absolute;
    left: 0;
    top: 1.5rem;
    color: #fff;
    font-size: .8rem;
    right: 0;
    text-align: center;
    display: block;
}

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

.wizard > .steps .number {
    font-size: 1.5rem;
    font-family: 'Roboto', serif;
    font-weight: bolder;
    letter-spacing: .5px;
}
.wizard > .steps > ul > li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.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;
    padding: 0;
    text-decoration: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.wizard > .steps .disabled a, .wizard > .steps .disabled a:hover, .wizard > .steps .disabled a:active {
    color: #fff;
    cursor: pointer;
    display: block;
    text-align: center;
    font-family: 'Roboto Slab', serif;
    padding: .8rem 0;
}

.wizard > .steps .current a, .wizard > .steps .current a:hover, .wizard > .steps .current a:active {
    background: #faab1e;
    color: #fff;
    cursor: default;
    display: block;
    text-align: center;
    padding: .8rem 0;
}


.wizard > .steps .done a, .wizard > .steps .done a:hover, .wizard > .steps .done a:active {
    background: #00408a;
    color: #fff;
    padding: .8rem 0;
    text-align: center;
}

.wizard > .steps .error a,
.wizard > .steps .error a:hover,
.wizard > .steps .error a:active
{
    background: #ff3111;
    color: #fff;
}

.wizard > .content {
    background: #eee;
    display: block;
    margin-right: 5%;
    min-height: 34em;
    overflow: scroll;
    position: relative;
    width: auto;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 6px;
    float: right;
    width: 75%;
    margin-top: 1rem;
    transition:.3s ease;
}

.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: 90%;
    left: 0;
    right: 0;
    margin: auto;
    box-sizing: border-box;
    overflow: hidden;
}

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

.wizard > .content > .body > iframe
{
    border: 0 none;
    width: 100%;
    height: 100%;
}

.wizard > .content > .body input
{
    display: block;
    border: 1px solid #ccc;
}

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

.wizard > .content > .body input.error
{
    background: rgb(251, 227, 228);
    border: 1px solid #fbc2c4;
    color: #8a1f11;
}

.wizard > .content > .body label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 400;
    font-family: 'Roboto Slab', serif;
    font-size: .8rem;
    color: #383838;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -o-font-smoothing: antialiased;
}
.wizard h4 {
    color: #5f5f5f;
    font-size: .9rem;
    position: relative;
    width: 100%;
    margin: auto;
    padding-bottom: .5rem;
    margin-top: 1rem;
    margin-bottom: .8rem;
    float: left;
    font-weight: 600;
}
.wizard h4::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    background-color: #5f5f5f;
    height: 1px;
    width: 100%;
    opacity: .4;
    margin: auto;
    left: 0;
    right: 0;
}

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

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

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

.wizard > .actions > ul {
    display: inline-block;
    text-align: right;
    margin-right: 3%;
    margin-bottom: .5rem;
    margin-top: 1rem;
}

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

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

.wizard > .actions a
{
    background: #0055b7;
    color: #fff;
    display: block;
    padding: 0.5em 1em;
    text-decoration: none;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    transition:.3s ease;
}
.wizard > .actions a:hover,
.wizard > .actions a:active
{
    background: #0b396f;
}

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

.wizard > .loading
{
}

.wizard > .loading .spinner
{
}
.wizard fieldset {
    margin-top: 1.5rem;
    margin-bottom: 1.3rem;
}
.wizard h3 {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: .5px;
    width: 90%;
    margin: auto;
    margin-top: 1rem;
}
.wizard i {
    font-size: .7rem;
    line-height: 1.3;
    display: block;
    width: 90%;
    margin: auto;
    text-align: center;
    margin-top: .3rem;
    max-width: 24rem;
    color: #757575;
}
.applicant-referred li {
    float: left;
    width: 50%;
    list-style: none;
    margin-bottom: 1rem;
}
.applicant-referred li:last-child{
    width: 100%;
}
/*
    Tabcontrol
*/
label.css-label::after{
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: grey;
  border-radius: 50%;
}
label.css-label::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  border-radius: 50%;
  z-index: 10;
  background-image: url(../img/check-icon.png);
  background-size: 85%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
input[type=checkbox].css-checkbox {
    position: absolute;
    width: 85% !important;
    background: red;
    display: block !important;
    overflow: hidden;
    height: 20px;
    z-index: 10;
    visibility: hidden;
}
input[type=checkbox].css-checkbox + label.css-label {
    padding-left: 25px;
    display: inline-block;
    line-height: 20px;
    background-repeat: no-repeat;
    background-position: 0 0;
    font-size: .9rem;
    vertical-align: middle;
    cursor: pointer;
}
input[type=checkbox].css-checkbox:checked + label.css-label::before {
  opacity: 1;
}
input[type=checkbox].css-checkbox:checked + label.css-label::after {
  background-color: #faab1e;
}
label.css-label {
  position: relative;
}
.agent-data {
    display: block;
    margin-bottom: 1rem;
    float: left;
    width: 100%;
}
.control-group{
    padding: .5rem 0;
}
/* input ratio*/
.control {
  display: inline-block !important;
  position: relative;
  padding-left: 28px;
  margin-bottom: 5px;
  cursor: pointer;
}
.control span{
    font-weight: 400;
    font-family: 'Roboto Slab', serif;
    font-size: .9rem;
    line-height: 2.2;
    display: block;
}
.two-rem{
    margin-left: 2rem;
}
.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    display: none !important;
}
.control_indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #e6e6e6;
    border: 0px solid #000000;
}
.control-radio .control_indicator {
    border-radius: 50%;
}

.control:hover input ~ .control_indicator,
.control input:focus ~ .control_indicator {
    background: #cccccc;
}

.control input:checked ~ .control_indicator {
    background: #faab1e;
}
.control:hover input:not([disabled]):checked ~ .control_indicator,
.control input:checked:focus ~ .control_indicator {
    background: #0e6647d;
}
.control input:disabled ~ .control_indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}
.control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}
.control input:checked ~ .control_indicator:after {
    display: block;
}
.control-radio .control_indicator:after {
    left: 7px;
    top: 7px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: #ffffff;
}
.control-radio input:disabled ~ .control_indicator:after {
    background: #7b7b7b;
}





.special-label {
    display: block;
    width: 100%;
    clear: both;
}

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

.tabcontrol > .steps > ul
{
    position: relative;
    margin: 6px 0 0 0;
    top: 1px;
    z-index: 1;
}

.tabcontrol > .steps > ul > li
{
    float: left;
    margin: 5px 2px 0 0;
    padding: 1px;

    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.tabcontrol > .steps > ul > li:hover
{
    background: #edecec;
    border: 1px solid #bbb;
    padding: 0;
}

.tabcontrol > .steps > ul > li.current
{
    background: #fff;
    border: 1px solid #bbb;
    border-bottom: 0 none;
    padding: 0 0 1px 0;
    margin-top: 0;
}

.tabcontrol > .steps > ul > li > a
{
    color: #5f5f5f;
    display: inline-block;
    border: 0 none;
    margin: 0;
    padding: 10px 30px;
    text-decoration: none;
}

.tabcontrol > .steps > ul > li > a:hover
{
    text-decoration: none;
}

.tabcontrol > .steps > ul > li.current > a
{
    padding: 15px 30px 10px 30px;
}

.tabcontrol > .content
{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 35em;
    overflow: hidden;
    border-top: 1px solid #bbb;
    padding-top: 20px;
}

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

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

.tabcontrol > .content > .body ul > li
{
    display: list-item;
}
ol{
    float: left;
    width: 100%;
    overflow: hidden;
}
.nm-bottom{
  margin-bottom: 0 !important;
}
.stp{
    display: block;
}
.ath {
    float: left;
    width: 100%;
    margin-bottom: 1rem !important;
}
.ath li {
    font-size: .8rem;
    margin-bottom: .4rem;
    line-height: 1.4;
}
.fees input {
    display: initial !important;
    width: initial !important;
    max-width: 5rem;
    height: initial !important;
    margin: 0 !important;
}
.fees span {
    display: initial;
}
.control_indicator {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #9a9a9a;
    border: 0px solid #000000;
    border-radius: 0 !important;
    z-index: 1;
    width: initial;
    height: initial;
}
.control {
    display: inline-block !important;
    position: relative;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
}
.control-group{
    text-align: center;
}
.control-group li {
    display: inline-block !important;
    margin: .2rem;
}
.control span {
    font-weight: 400;
    font-family: 'Roboto Slab', serif;
    font-size: .9rem;
    line-height: 2.2;
    display: block;
    position: relative;
    z-index: 10;
    padding: .1rem .9rem;
    color: #fff;
}
.control-radio .control_indicator:after {
    left: 7px;
    top: 7px;
    height: 6px;
    width: 6px;
    border-radius: 0;
    background: transparent;
    display: none !important;
}
.qst label,
.qst .other{
    text-align: center;
}
.qst li{
    margin-bottom: .4rem;
}
@media screen and (min-width: 400px){
  .wizard > .steps::before {
    right: 0;
    top: .6rem;
    color: #fff;
    font-size: .9rem;
    left: 0;
    margin: auto;
    text-align: center;
    width: 100%;
    display: block;
    font-weight: 600;
  }
  .wizard > .steps::after {
    left: 0;
    top: 1.9rem;
    color: #fff;
    font-size: .9rem;
    right: 0;
    text-align: center;
    width: 100%;
    display: block;
    font-weight: 600;
  }
}
@media screen and (min-width: 500px){

  .wizard > .content {
    margin-top: 2.2rem;
    margin-bottom: 1rem;
  }
  .wizard > .actions > ul {
    margin-right: 4%;
  }
  .wizard > .steps::before {
    font-size: 1.1rem;
  }
  .wizard > .steps::after {
    font-size: 1.1rem;
  }
  .wizard > .steps {
    padding-top: 4.5rem;
  }
}
@media screen and (min-width: 600px){
  .input-group li {
    float: left;
    width: 47%;
    margin-left: 2%;
  }
  .three li {
    float: left;
    width: 31%;
    margin-left: 2%;
  }
  .four li {
    float: left;
    width: 22.5%;
    margin-left: 2%;
  }
  .alone {
    width: 96% !important;
  }
  .alns{
    margin-left: 2%;
    width: 96% !important;
  }
  .control-group li {
    float: none;
    width: initial !important;
    margin-left: inherit;
    }
}
@media screen and (min-width: 800px){
  .applicant-referred li {
    width: 25%;
  }
  .wizard h3 {
    margin-top: 2rem;
  }
  .wizard > .content {
    margin-top: 2.4rem;
  }
  .wizard > .content > .body {
    width: 95%;
  }
}




