/*
    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: 0px 33px 0px 0px;
}

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


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

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

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

.container.content .wizard a:hover {
    border-color: transparent;
}

.container.content .wizard > .steps .disabled a,
.container.content .wizard > .steps .disabled a:hover,
.container.content .wizard > .steps .disabled a:active
{
    background: #eee;
    color: #aaa;
    cursor: default;
}

.container.content .wizard > .steps .current a,
.container.content .wizard > .steps .current a:hover,
.container.content .wizard > .steps .current a:active
{
    background: #cc2939;
    color: #fff;
    cursor: default;
}

.container.content .wizard > .steps .done a,
.container.content .wizard > .steps .done a:hover,
.container.content .wizard > .steps .done a:active
{
    background: #6a727a;
    color: #fff;
}

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

.wizard > .content
{
    border: 1px solid #e6e6e6;
    display: inline-block;
    width: 70%;
    margin: 0.5em;
    /*min-height: 35em;*/
    overflow: hidden;
    position: relative;
    margin-left: 0;
}

.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: 100%;
    padding: 2.5%;
}

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

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

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

.wizard > .content > .body label.error
{
    display: inline-block;
    margin-bottom: 3px;
}

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

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

.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 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: #cc2939;
    color: #fff;
    display: block;
    padding: 0.5em 1em;
    text-decoration: none;
}

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

.wizard > .loading
{
}

.wizard > .loading .spinner
{
}



/*
    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;
}


.form-steps .form-control {
    height: 48px ;
    background-color: #f7f7f7;
    border-color: #f7f7f7;
    padding: 10px 20px;
    width: 100%;
}

.form-steps .form-control::placeholder {
    color: rgb(13, 23, 24);
}

.container.content .steps ul {
    margin-left: 0;
    padding-left: 0;
}

.form-steps .disabled a {
    cursor: default;
}

.form-steps .checkbox-group {
  background-color:#f1f1f1;
  padding: 10px 25px;
}
.form-steps .checkbox-group .title-group {
  margin-bottom:0px;
  border: none;
  font-size: 14px;
  font-weight: 500;
}

.form-steps  .checkbox-group input[type="text"] {
    display: none;
}

.form-steps  .checkbox-group .check-box,
.form-steps  .checkbox-group .radio input[type="radio"] + i {
    background-color: #fff;
}

.form-steps textarea {
    min-height: 100px;
}

.form-steps .checkbox label {
    padding-left: 0px;
    font-size: 14px;
}


.form-steps label.checkbox {
    margin-top: 5px;
    margin-bottom: 5px;
}

.form-steps .actions ul {
    margin-right: 33px;
}

form[name="b2b_auth"] .callback-form-timer {
    text-align: left;
}