/*
Theme Name: Uncode Child
Description: Child theme for Uncode theme
Author: Undsgn™
Author URI: http://www.undsgn.com
Template: uncode
Version: 1.0.0
Text Domain: uncode
*/

.progress-bar-tabs .progress-container { width: 100%; background-color: rgba(119, 119, 119, 0.2); margin-top: 25px; }
.progress-bar-tabs .progress-bar { height: 7px; background-color: orange; width: 0; }
.progress-bar-tabs .progress-number { transition: all 2s ease; }
.progress-bar-tabs .progress-hidden { opacity: 0; }
.progress-bar-tabs .nav-tabs .active a { color: #00aa4a !important; border: none !important; }
.progress-bar-tabs .vertical-tab-contents .separator-break { width: 100% }
.progress-bar-tabs .nav-tabs > li > a span { text-transform: none !important; font-size: 1em !important; }
.progress-bar-tabs .vertical-tab-menu .nav-tabs { border: none !important; }
.progress-bar-tabs .tab-content { border: none !important; }
.progress-bar-tabs .tab-content h1 { font-weight: normal; margin-top: 13px; font-size: 3em; }
.progress-bar-tabs .tab-content h4 { margin-top: 14px; font-weight: normal; }
.progress-bar-tabs .vertical-tab-contents { padding-top: 8px; }

@keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

.progress-bar-tabs .tab-content .tab-pane {
	animation-duration: 2s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
	opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}