﻿/* ------------------------------------------------ */
/* ############### 4.6 jQuery Steps ############### */
/* ------------------------------------------------ */
/***** DEFAULT STYLE WIZARD *****/
.wizard > .steps {
    margin-left: 20px;
}

.wizard   section {
    margin-bottom: 0 !important;
}

.wizard > .steps > ul {
    margin-left: -0.5em;
    margin-right: -0.5em;
    display: flex;
}

    .wizard > .steps > ul li {
        float: none;
        display: block;
        width: auto;
    }

        .wizard > .steps > ul li .title {
            display: none;
            margin-left: 10px;
        }

@media (min-width: 768px) {
    .wizard > .steps > ul li .title {
        display: block;
    }
}

.wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active {
    color: #adb5bd;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
}

@media (min-width: 1200px) {
    .wizard > .steps a,
    .wizard > .steps a:hover,
    .wizard > .steps a:active {
        justify-content: flex-start;
    }
}

.wizard > .steps a .number,
.wizard > .steps a:hover .number,
.wizard > .steps a:active .number {
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border: 1px solid #adb5bd;
    border-radius: 50px;
    margin-right: 10px;
}

.wizard > .steps .disabled a, .wizard > .steps .disabled a:hover, .wizard > .steps .disabled a:active {
    background-color: #e9ecef;
}

.wizard > .steps .current a, .wizard > .steps .current a:hover, .wizard > .steps .current a:active {
    background-color: #FF0000;
}

    .wizard > .steps .current a .number, .wizard > .steps .current a:hover .number, .wizard > .steps .current a:active .number {
        border-color: #fff;
    }

.wizard > .steps .done a, .wizard > .steps .done a:hover, .wizard > .steps .done a:active {
    background-color: rgba(255,0,0,.5); /*#1CAF9A;*/
}

    .wizard > .steps .done a .number, .wizard > .steps .done a:hover .number, .wizard > .steps .done a:active .number {
        border-color: #fff;
    }

.wizard > .content {
    background-color: white;
    margin: 0.5em 0;
    min-height: 150px;
    border-radius: 3px;
}

    .wizard > .content > .body {
        float: none;
        position: static;
        width: auto;
        height: auto;
        padding: 40px;
    }

        .wizard > .content > .body input.parsley-error {
            border-color: #DC3545;
        }

            .wizard > .content > .body input.parsley-error + ul {
                list-style: none !important;
            }

.wizard > .actions {
    padding-top: 0.5em;
}

    .wizard > .actions > ul {
        /*margin-left: -0.5em;
        margin-right: -0.5em;*/
        display: flex;
        justify-content: space-between;
        margin: 0 20px 30px 20px;
    }

    .wizard > .actions a,
    .wizard > .actions a:hover,
    .wizard > .actions a:active {
        background-color: #FF0000;
        padding: 9px 20px;
        line-height: 1.6;
        border-radius: 3px;
    }

    .wizard > .actions .disabled a,
    .wizard > .actions .disabled a:hover,
    .wizard > .actions .disabled a:active {
        background-color: #e9ecef;
    }

.wizard.vertical > .steps {
    padding-right: 1em;
    width: 25%;
}

@media (min-width: 480px) {
    .wizard.vertical > .steps {
        width: 17%;
    }
}

@media (min-width: 768px) {
    .wizard.vertical > .steps {
        width: 12%;
    }
}

@media (min-width: 1200px) {
    .wizard.vertical > .steps {
        width: 30%;
    }
}

.wizard.vertical > .steps ul {
    flex-direction: column;
}

    .wizard.vertical > .steps ul li + li {
        margin-top: 0.5em;
    }

@media (min-width: 768px) {
    .wizard.vertical > .steps ul li .title {
        display: none;
    }
}

@media (min-width: 1200px) {
    .wizard.vertical > .steps ul li .title {
        display: block;
    }
}

.wizard.vertical > .content {
    margin: 0;
    width: 75%;
    min-height: 250px;
    display: block;
    float: none;
}

@media (min-width: 480px) {
    .wizard.vertical > .content {
        width: 83%;
    }
}

@media (min-width: 768px) {
    .wizard.vertical > .content {
        width: 88%;
    }
}

@media (min-width: 1200px) {
    .wizard.vertical > .content {
        width: 70%;
    }
}

.wizard.vertical > .actions {
    float: none;
}

    .wizard.vertical > .actions ul {
        float: none;
        margin-left: 0;
        margin-right: 0;
        margin-top: -0.5em;
    }

        .wizard.vertical > .actions ul li:first-child {
            margin-left: 25%;
        }

@media (min-width: 480px) {
    .wizard.vertical > .actions ul li:first-child {
        margin-left: 17%;
    }
}

@media (min-width: 768px) {
    .wizard.vertical > .actions ul li:first-child {
        margin-left: 12%;
    }
}

@media (min-width: 1200px) {
    .wizard.vertical > .actions ul li:first-child {
        margin-left: 30%;
    }
}

/****** EQUAL COLUMN WIDTH STEP INDICATOR *****/
.step-equal-width > .steps > ul {
    display: flex;
}

    .step-equal-width > .steps > ul > li {
        flex: 1;
        width: auto;
        float: none;
    }

/***** CUSTOM STYLES *****/
.wizard-style-1 > .steps > ul a, .wizard-style-1 > .steps > ul a:hover, .wizard-style-1 > .steps > ul a:active {
    padding: 0;
    height: 50px;
}

    .wizard-style-1 > .steps > ul a .number, .wizard-style-1 > .steps > ul a:hover .number, .wizard-style-1 > .steps > ul a:active .number {
        width: 50px;
        height: 100%;
        border: 0;
        font-size: 18px;
        font-weight: bold;
        color: #868e96;
        background-color: #dee2e6;
        border-radius: 2px;
    }

    .wizard-style-1 > .steps > ul a .title, .wizard-style-1 > .steps > ul a:hover .title, .wizard-style-1 > .steps > ul a:active .title {
        margin-right: 10px;
    }

.wizard-style-1 > .steps > ul .current a .number, .wizard-style-1 > .steps > ul .current a:hover .number, .wizard-style-1 > .steps > ul .current a:active .number {
    background-color: #148ea1;
    color: #fff;
}

.wizard-style-1 > .steps > ul .done a .number, .wizard-style-1 > .steps > ul .done a:hover .number, .wizard-style-1 > .steps > ul .done a:active .number {
    background-color: #189987;
    color: #fff;
}

.wizard-style-2 > .steps > ul a, .wizard-style-2 > .steps > ul a:hover, .wizard-style-2 > .steps > ul a:active {
    padding: 0;
    height: 50px;
    border-radius: 50px;
}

    .wizard-style-2 > .steps > ul a .number, .wizard-style-2 > .steps > ul a:hover .number, .wizard-style-2 > .steps > ul a:active .number {
        width: 50px;
        height: 100%;
        border: 2px solid #e9ecef;
        font-size: 18px;
        font-weight: bold;
        color: #868e96;
        background-color: #fff;
    }

    .wizard-style-2 > .steps > ul a .title, .wizard-style-2 > .steps > ul a:hover .title, .wizard-style-2 > .steps > ul a:active .title {
        margin-right: 20px;
    }

.wizard-style-2 > .steps > ul .current a .number, .wizard-style-2 > .steps > ul .current a:hover .number, .wizard-style-2 > .steps > ul .current a:active .number {
    border-color: #FF0000;
    color: #FF0000;
}

.wizard-style-2 > .steps > ul .done a .number, .wizard-style-2 > .steps > ul .done a:hover .number, .wizard-style-2 > .steps > ul .done a:active .number {
    border-color: #1CAF9A;
    color: #1CAF9A;
}

.wizard-style-3 > .steps > ul a, .wizard-style-3 > .steps > ul a:hover, .wizard-style-3 > .steps > ul a:active {
    padding: 0 20px 0 0;
    height: 50px;
}

    .wizard-style-3 > .steps > ul a .number, .wizard-style-3 > .steps > ul a:hover .number, .wizard-style-3 > .steps > ul a:active .number {
        width: 50px;
        height: 100%;
        border: 0;
        font-size: 18px;
        font-weight: bold;
        color: #adb5bd;
        background-color: #e9ecef;
    }

.wizard-style-3 > .steps > ul .disabled a, .wizard-style-3 > .steps > ul .disabled a:hover, .wizard-style-3 > .steps > ul .disabled a:active {
    background-color: transparent;
}

.wizard-style-3 > .steps > ul .current a, .wizard-style-3 > .steps > ul .current a:hover, .wizard-style-3 > .steps > ul .current a:active {
    background-color: transparent;
    color: #FF0000;
}

    .wizard-style-3 > .steps > ul .current a .number, .wizard-style-3 > .steps > ul .current a:hover .number, .wizard-style-3 > .steps > ul .current a:active .number {
        background-color: #FF0000;
        color: #fff;
    }

.wizard-style-3 > .steps > ul .done a, .wizard-style-3 > .steps > ul .done a:hover, .wizard-style-3 > .steps > ul .done a:active {
    background-color: transparent;
    color: #1CAF9A;
}

    .wizard-style-3 > .steps > ul .done a .number, .wizard-style-3 > .steps > ul .done a:hover .number, .wizard-style-3 > .steps > ul .done a:active .number {
        background-color: #1CAF9A;
        color: #fff;
    }

/* ############### RTL SUPPORT ############### */
.rtl .wizard > .steps > ul li .title {
    margin-left: 0;
    margin-right: 10px;
}

.rtl .wizard.vertical > .steps {
    float: right;
    padding-left: 1em;
    padding-right: 0;
}

.rtl .wizard.vertical > .actions ul li {
    margin: 0 1em 0 0;
}

    .rtl .wizard.vertical > .actions ul li:first-child {
        margin-left: 0;
        margin-right: 25%;
    }

@media (min-width: 480px) {
    .rtl .wizard.vertical > .actions ul li:first-child {
        margin-right: 17%;
    }
}

@media (min-width: 768px) {
    .rtl .wizard.vertical > .actions ul li:first-child {
        margin-right: 12%;
    }
}

@media (min-width: 1200px) {
    .rtl .wizard.vertical > .actions ul li:first-child {
        margin-right: 30%;
    }
}

.rtl .wizard-style-1 > .steps > ul a .title, .rtl .wizard-style-1 > .steps > ul a:hover .title, .rtl .wizard-style-1 > .steps > ul a:active .title {
    margin-right: 10px;
    margin-left: 10px;
}

.rtl .wizard-style-2 > .steps > ul a .title, .rtl .wizard-style-2 > .steps > ul a:hover .title, .rtl .wizard-style-2 > .steps > ul a:active .title {
    margin-left: 20px;
}

.rtl .wizard-style-3 > .steps > ul a, .rtl .wizard-style-3 > .steps > ul a:hover, .rtl .wizard-style-3 > .steps > ul a:active {
    padding: 0 0 0 20px;
    height: 50px;
}
