.error {
    color: #EB5E28;
    border-color: #EB5E28 !important;
}

.valid {
    color: #66615b;
    border-color: #e8e7e3 !important;
}

/*            Navigation menu                */
.nav-pills {
    background-color: #F3F2EE;
    position: absolute;
    width: 100%;
    height: 4px;
    top: 40px;
    text-align: center;
}
.nav-pills > li + li {
    margin-left: 0;
}
.nav-pills > li > a {
    padding: 0;
    max-width: 78px;
    margin: 0 auto;
    color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    position: relative;
    top: -32px;
    z-index: 100;
}
.nav-pills > li > a:after {
    content: '';
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    right: -1px;
    top: -4px;
    transform: scale(0);
    transition: .2s all linear;
}
.nav-pills > li > a:hover, .nav-pills > li > a:focus {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.2);
    outline: 0 !important;
    cursor: pointer;
}
.nav-pills > li.active > a:after {
    content: '';
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    right: 5px;
    top: -2px;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transition: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
    background-color: transparent;
    font-size: 15px;
    -webkit-transition: font-size 0.2s linear;
    -moz-transition: font-size 0.2s linear;
    -o-transition: font-size 0.2s linear;
    -ms-transition: font-size 0.2s linear;
    transition: font-size 0.2s linear;
}
.nav-pills > li.active > a [class*="ti-"],
.nav-pills > li.active > a:hover [class*="ti-"],
.nav-pills > li.active > a:focus [class*="ti-"] {
    color: #FFFFFF;
    font-size: 24px;
    top: 21px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}


.wizard-container {
    z-index: 3;
}

.made-with-pk {
    width: 50px;
    height: 50px;
    display: block;
    position: fixed;
    z-index: 555;
    bottom: 40px;
    right: 40px;
    border-radius: 30px;
    background-color: rgba(16, 16, 16, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    cursor: pointer;
    padding: 10px 12px;
    white-space: nowrap;
    overflow: hidden;
    -webkit-transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1);
    -moz-transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1);
    -o-transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1);
    transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1);
}

.made-with-pk:hover, .made-with-pk:active, .made-with-pk:focus {
    width: 218px;
    color: #FFFFFF;
    transition-duration: .55s;
    padding: 10px 19px;
}

.made-with-pk:hover .made-with, .made-with-pk:active .made-with, .made-with-pk:focus .made-with {
    opacity: 1;
}

.made-with-pk .brand,
.made-with-pk .made-with {
    float: left;
}

.made-with-pk .brand {
    position: relative;
    top: 4px;
    letter-spacing: 1px;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 600;
}

.made-with-pk .made-with {
    color: rgba(255, 255, 255, 0.6);
    position: absolute;
    left: 58px;
    top: 14px;
    opacity: 0;
    margin: 0;
    -webkit-transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1);
    -moz-transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1);
    -o-transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1);
    transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1);
}

.made-with-pk .made-with strong {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}


.wizard-card {
    min-height: 410px;
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.57);
}

.wizard-card .picture-container {
    position: relative;
    cursor: pointer;
    text-align: center;
}

.wizard-card .icon-circle {
    font-size: 20px;
    border: 3px solid #F3F2EE;
    text-align: center;
    border-radius: 50%;
    color: rgba(0, 0, 0, 0.2);
    font-weight: 600;
    width: 70px;
    height: 70px;
    background-color: #FFFFFF;
    margin: 0 auto;
    position: relative;
    top: -2px;
}

.wizard-card .icon-circle [class*="ti-"] {
    position: absolute;
    z-index: 1;
    left: 1px;
    right: 0px;
    top: 23px;
}

.wizard-card .picture {
    width: 106px;
    height: 106px;
    background-color: #d8d1c9;
    border: 4px solid transparent;
    color: #FFFFFF;
    border-radius: 50%;
    margin: 5px auto;
    overflow: hidden;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

.wizard-card .picture:hover {
    border-color: #2ca8ff;
}

.wizard-card .picture-src {
    width: 100%;
}

.wizard-card[data-color="azure"] .picture:hover {
    border-color: #7A9E9F;
}

.wizard-card[data-color="azure"] .nav-pills > li.active > a:after {
    background-color: #7A9E9F;
}

.wizard-card[data-color="azure"] .nav-pills > li.active > a {
    color: #7A9E9F;
}

.wizard-card[data-color="azure"] .nav-pills .icon-circle.checked {
    border-color: #7A9E9F;
}

.wizard-card[data-color="azure"] .choice.active .card-checkboxes {
    color: #7A9E9F;
}

.wizard-card[data-color="azure"] .wizard-navigation .progress-bar {
    background-color: #7A9E9F;
}

.wizard-card[data-color="green"] .picture:hover {
    border-color: #7AC29A;
}

.wizard-card[data-color="green"] .nav-pills > li.active > a:after {
    background-color: #7AC29A;
}

.wizard-card[data-color="green"] .nav-pills > li.active > a {
    color: #7AC29A;
}

.wizard-card[data-color="green"] .nav-pills .icon-circle.checked {
    border-color: #7AC29A;
}

.wizard-card[data-color="green"] .choice.active .card-checkboxes {
    color: #7AC29A;
}

.wizard-card[data-color="green"] .wizard-navigation .progress-bar {
    background-color: #7AC29A;
}

.wizard-card[data-color="blue"] .picture:hover {
    border-color: #68B3C8;
}

.wizard-card[data-color="blue"] .nav-pills > li.active > a:after {
    background-color: #68B3C8;
}

.wizard-card[data-color="blue"] .nav-pills > li.active > a {
    color: #68B3C8;
}

.wizard-card[data-color="blue"] .nav-pills .icon-circle.checked {
    border-color: #68B3C8;
}

.wizard-card[data-color="blue"] .choice.active .card-checkboxes {
    color: #68B3C8;
}

.wizard-card[data-color="blue"] .wizard-navigation .progress-bar {
    background-color: #68B3C8;
}

/*purple*/
.wizard-card[data-color="purple"] .picture:hover {
    border-color: #5e2ced;
}

.wizard-card[data-color="purple"] .nav-pills > li.active > a {
    color: #5e2ced;
}

.wizard-card[data-color="purple"] .nav-pills > li.active > a:after {
    background-color: #5e2ced;
}

.wizard-card[data-color="purple"] .nav-pills .icon-circle.checked {
    border-color: #5e2ced;
}

.wizard-card[data-color="purple"] .choice.active .card-checkboxes {
    color: #5e2ced;
}

.wizard-card[data-color="purple"] .wizard-navigation .progress-bar {
    background-color: #5e2ced;
}

.wizard-card[data-color="orange"] .picture:hover {
    border-color: #F3BB45;
}

.wizard-card[data-color="orange"] .nav-pills > li.active > a:after {
    background-color: #F3BB45;
}

.wizard-card[data-color="orange"] .nav-pills > li.active > a {
    color: #F3BB45;
}

.wizard-card[data-color="orange"] .nav-pills .icon-circle.checked {
    border-color: #F3BB45;
}

.wizard-card[data-color="orange"] .choice.active .card-checkboxes {
    color: #F3BB45;
}

.wizard-card[data-color="orange"] .wizard-navigation .progress-bar {
    background-color: #F3BB45;
}

.wizard-card[data-color="red"] .picture:hover {
    border-color: #EB5E28;
}

.wizard-card[data-color="red"] .nav-pills > li.active > a:after {
    background-color: #EB5E28;
}

.wizard-card[data-color="red"] .nav-pills > li.active > a {
    color: #EB5E28;
}

.wizard-card[data-color="red"] .nav-pills .icon-circle.checked {
    border-color: #EB5E28;
}

.wizard-card[data-color="red"] .choice.active .card-checkboxes {
    color: #EB5E28;
}

.wizard-card[data-color="red"] .wizard-navigation .progress-bar {
    background-color: #EB5E28;
}

.wizard-card .picture input[type="file"] {
    cursor: pointer;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0 !important;
    position: absolute;
    top: 0;
    width: 100%;
}

.wizard-card .tab-content {
    min-height: 435px;
    padding: 105px 20px 10px;
}

.wizard-card .wizard-footer {
    padding: 0 15px 5px;
}

.wizard-card .disabled {
    display: none;
}

.wizard-card .wizard-title {
    color: #252422;
    font-weight: 300;
    margin: 0;
}

.wizard-card .category {
    font-size: 14px;
    font-weight: 400;
    color: #9A9A9A;
    margin-bottom: 0px;
    text-align: center;
}

.wizard-card .wizard-navigation {
    position: relative;
}

.wizard-card .wizard-navigation .progress-with-circle {
    position: relative;
    top: 40px;
    z-index: 50;
    height: 4px;
}

.wizard-card .wizard-navigation .progress-with-circle .progress-bar {
    box-shadow: none;
    -webkit-transition: width .3s ease;
    -o-transition: width .3s ease;
    transition: width .3s ease;
}

.wizard-card .info-text {
    text-align: center;
    padding-bottom: 18px;
    padding-top: 12px;
}

.wizard-card .choice {
    text-align: center;
    cursor: pointer;
    margin-top: 38px;
}

.wizard-card .choice .icon {
    text-align: center;
    vertical-align: middle;
    height: 116px;
    width: 116px;
    border-radius: 50%;
    background-color: #999999;
    color: #FFFFFF;
    margin: 0 auto 20px;
    border: 4px solid #CCCCCC;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

.wizard-card .choice i {
    font-size: 32px;
    line-height: 55px;
}

.wizard-card .choice:hover .icon, .wizard-card .choice.active .icon {
    border-color: #2ca8ff;
}

.wizard-card .choice input[type="radio"],
.wizard-card .choice input[type="checkbox"] {
    position: absolute;
    left: -10000px;
    z-index: -1;
}

.wizard-card .description {
    color: #999999;
    font-size: 14px;
}
