.tpfw-importer .theme-browser .theme:focus,
.tpfw-importer .theme-browser .theme:hover {
    cursor: default;
}

.theme-browser .theme .more-details {
    z-index: 999;
    text-decoration: none;
}

.tpfw-importer h2.one-click-title .title-count {
    top: -8px;
}

.demo-intro-text .about-description {
    font-weight: 400;
    line-height: 1.6em;
    font-size: 19px;
}

.demo-file-upload-container h2{
    margin: 20px 0 30px 0;
    font-size: 2.7em;
    line-height: 1.3;
    font-weight: 300;

}

.demo-file-upload {
    padding: 10px 20px 20px;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    margin-bottom: -1px;

}

.demo-button-container {
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.js-demo-ajax-loader {
    display: none;
    font-size: 1.5em;
}

.js-demo-ajax-loader .spinner {
    display: inline-block;
    float: none;
    visibility: visible;
    margin-bottom: 6px;
}


@keyframes animate-stripes {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 0;
    }
}
@-webkit-keyframes animate-stripes {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 0;
    }
}

/*Progress Bar*/

.js-importer-progress {
    width: 100%;
    display: none;
}

.js-importer-progress .title {
    margin-bottom: 5px;
    display: inline-block;
}

.js-demo-success {
    display: none;
}

.theme .js-importer-progress {
    position: absolute;
    bottom: 0;
    left: 0;
}

.theme .js-importer-progress .progress {
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    height: 5px;
    margin: 0;
}

.theme .js-importer-progress .progress .progress-bar {
    height: 5px;
    border-radius: 0;
}

.tpfw-importer .js-demo-ajax-loader {
    margin-top: 0;
}

.tpfw_importer{
    &{
        font-size: 15px;
    }
    .theme-browser {
        margin-top: 30px;
    }

    &__title{
        margin-bottom: 20px!important;
        span{
            font-size: 16px;
            font-weight: normal;
            color: #666;
            text-transform: lowercase;

        }
        .title-count{
            color: #fff;
        }
    }
    &__warning{
        ul{
            &{
                padding: 1px 0;
            }
            li{
                &{
                    margin: 12px 0px 12px 12px;
                }
                span{
                    display: inline-block;
                    background-color: #eb9800;
                    color: #fff;
                    margin-right: 7px;
                    font-size: 12px;
                    border-radius: 18px;
                    width: 18px;
                    height: 18px;
                    text-align: center;
                    line-height: 18px;
                    font-weight: bold;
                }
            }
        }
    }



    /* All good till now. Now we'll style the background */
    .progress {
        width: 100%;
        height: 20px;
        display: block;
        background: #23282d;
        border-radius: 50px;
        padding: 2px;
        box-shadow: 0 1px 0px 0 rgba(255, 255, 255, 0.2);
        margin: 40px 0px;
    }

    /* Now the value part */
    .progress-bar {
        width: 1%;
        height: 20px;
        border-radius: 50px;
        box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.4);
        -webkit-transition-property: width;
        -webkit-transition-duration: 1s;
        transition-property: width;
        transition-duration: 1s;
        box-sizing: border-box;
        background-color: #00a0d2;
        background-size: 30px 30px;
        background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        animation: animate-stripes 4s linear infinite;
    }

    .theme{
        .theme-name span{
            display: none;
        }
        &.disabled{
            &{
                position: relative;
                cursor: initial!important;
                outline: none;
                box-shadow: none!important;
                border-color: #ddd!important;
            }
            &:after{
                position: absolute;
                content: '';
                left: 0;
                right: 0;
                bottom: 0;
                top:0;
                background-color: rgba(255,255,255,.8);
            }
            .more-details,.theme-actions .button {
                display: none!important;
            }
            .theme-screenshot img{
                opacity: 1!important
            }
        }
        &.active{
            .theme-name{
                span{
                    display: inline;
                }
            }
        }
    }
}
.demo-file-upload{
    h3{
        &{
            margin-top: 8px;
            margin-bottom: 10px;
        }
        span{
            font-size: 14px;
            color: #ffb900;
            font-weight: normal;
            position: relative;
            top:-1px;
        }
    }
    p{
        margin: 0;
        color: #555;
    }
    input[type="file"]{
        margin-top: 20px;
    }
}