/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* Steps */

.steps {
    width: 100%;
    border: 1px solid #dadada;
    font-size: 16px;
    position: relative;
    margin-bottom: 20px;
}

/* Fade Out */
/*.steps:before {
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #f8f8f8 50%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, #f8f8f8));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #f8f8f8 50%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #f8f8f8 50%);
    background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #f8f8f8 50%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #f8f8f8 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#f8f8f8', GradientType=1);

    height: 100%;
    width: 20px;

    position: absolute;
    content: "";
    right: 0;
    z-index: 10;
}*/

.steps ul {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    overflow-x: auto;
    /*display: table-row;*/
    float: left;
}

.steps ul.end {
    background: #ebebeb;
}

.steps li {
    position: relative;
    display: table-cell;
    background-color: #fff;
    color: #aaa;
    height: 43px;
    line-height: 43px;
    white-space: nowrap;
    padding-left: 45px;
    padding-right: 34px;
}
.steps li:first-child {
    padding-left: 35px;
}

:lang(en) .steps li {
    padding-left: 40px;
    padding-right: 29px;
}

:lang(es) .steps li {
    padding-left: 43px;
}

:lang(en) .steps li:first-child {
    padding-left: 30px;
}

.steps-default li {
    padding-left: 59px;
    padding-right: 49px;
}

.steps-default li:first-child {
    padding-left: 42px;
}


.steps li a {
    color: inherit;
}

/* Step Separator */
.steps li:before,
.steps li:after {
    border-top: 23px solid transparent;
    border-bottom: 23px solid transparent;
    border-left: 10px solid #dadada;
    content: '';
    display: block;
    position: absolute;
    z-index: 9;
    top: 50%;
    width: 0;
    margin-top: -23px;
    right: -11px;
}

.steps li:after {
    border-left-color: #fff;
    left: 100%;
    right: auto;
}

.steps li:last-child:before,
.steps li:last-child:after {
    display: none;
}

/* Step active */

.steps li.active {
    color: #006397;
    background-color: #ebebeb;
}

.steps li.active:after {
    border-left-color: #ebebeb;
}

.steps li.active:first-child:after {
    border-left: 10px solid #ebebeb;
}