/*
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate3d(-5%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(-5%, 0, 0);
    }
}

.fieldset.active-form {
    opacity: 1;
}

.fieldset {
    transform: translateY(10%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}
 */

ul {
    margin-left: 15px !important;
}

.wizard ul[role="tablist"] {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.wizard .steps ul li {
    float: none !important;
    display: table-cell;
    width: auto;
}

.captcha[role="custom_form"] {
    display: none;
}

.tooltip {
    display: inline-block;
}

i.fa {
    margin-left: 5px;
}