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

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

.wizard > .body {
    margin: 15px 0px 0px 0
}

/*
    Wizard
*/

.wizard > .steps
{
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

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

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

.wizard > .steps > ul {
    padding: 0;
    margin: 0 0 20px;
    font-size: 1rem;
    line-height: 3.6rem;
    color: #727272;
    list-style: none;
}

.wizard > .steps > ul > li:after {
    position: absolute;
    top: 0;
    right: -12px;
    z-index: 1;
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 0 18px 12px;
    border-color: transparent transparent transparent #f5f9fc;
    transition: border .3s ease-in-out;
}

.wizard > .steps > ul > li
{
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0 20px;
    background: #f5f9fc;
    transition: background-color .3s ease-in-out,color .3s ease-in-out;
}

.wizard > .steps > ul > .current,
.wizard > .steps > ul > .done {
    font-size: 1rem;
    line-height: 3.6rem;
    background-color: #0077be;
}

.wizard > .steps > ul > .current {
    font-weight: 700;
}


.wizard > .steps > ul > .current:after,
.wizard > .steps > ul > .done:after {
    border-color: transparent transparent transparent #0077be;
}

.wizard > .steps > ul > .current > a,
.wizard > .steps > ul > .done > a {
    color: #fff;
}



.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;
    text-decoration: none;
}




.wizard > .content
{
    display: block;
    position: relative;
    width: auto;
}

.wizard.vertical > .content
{
    display: inline;
}

.wizard > .content > fieldset > legend,
.wizard.vertical > .content > fieldset > legend {
    border: none;
}

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

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

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

.wizard > .actions .btn-default,
.wizard > .actions .btn-default:active {
    padding: 9px 15px;
  font-size: 14px;
  color: #0077be !important;
  background: #fff !important;
  border: 1px solid #0077be;
  border-radius: 3px;
  box-shadow: none;
  min-width: auto;
  line-height: normal;
  min-width: 144px;
  -webkit-transition: opacity 300ms ease-in-out,
    -webkit-box-shadow 300ms ease-in-out;
  transition: opacity 300ms ease-in-out, -webkit-box-shadow 300ms ease-in-out;
  transition: opacity 300ms ease-in-out, box-shadow 300ms ease-in-out;
  transition: opacity 300ms ease-in-out, box-shadow 300ms ease-in-out,
    -webkit-box-shadow 300ms ease-in-out;
}

.wizard > .actions .btn-default:hover,
.wizard > .actions .btn-default:focus {
background: #fff !important;
  color: #0077be !important;
  box-shadow: none;
  opacity: 0.9;
}

.wizard > .actions > ul
{
    display: inline-block;
    text-align: right;
    list-style: none;
    padding-inline-start: 0;
    margin-block-start: 0;
    margin-block-end: 0;
}

.wizard > .actions > ul > li
{
    margin-right: 10px;
}

.wizard > .actions > ul > li.disabled
{
    opacity: 0.4;
}

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


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

/*
    Tabcontrol
*/

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