@CHARSET "UTF-8";
/*
 * definice css pro jquery multiuploader
 */
.nsMultiupload .nsMultiupload__cover
{
    float: left;
}

.nsMultiupload  .nsMultiupload__log
{
    height: 70px;
    font-size: 11px;
    line-height: 12px;
    min-width: 400px;
    overflow: auto;
    margin: 5px 0px 0px 0px;
    border: solid 1px #ccc;
    border-radius: 3px;
    padding: 5px;
    background: rgba(255,255,255,0.5);
}

.nsMultiupload .nsMultiupload__btn
{
    position: relative;
    overflow: hidden;
    display: inline-block;
    margin-bottom: 5px;
}
.nsMultiupload  .nsMultiupload__btn input
{
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    opacity: 0;
    -ms-filter: 'alpha(opacity=0)';
    font-size: 200px !important;
    direction: ltr;
    cursor: pointer;
}

/* Fixes for IE < 8 */
@media screen\9 {
    .nsMultiupload  .nsMultiupload__btn input
    {
        filter: alpha(opacity=0);
        font-size: 100%;
        height: 100%;
    }
}



/*
 * progress bar
 */
.progress
{
    height: 20px;
    overflow: hidden;
    background-color: #cecece;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    display: block ;
    clear: both;
}
.progress::before
{
    content: " ";
    display: block;
}
.progress-bar
{
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #337ab7;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease;
}
.progress-bar-success
{
    background-color: #5cb85c;
}

/*
 * dropzone
 */
.dropzone
{
    position: relative;
}
.dropzone.in
{
    -webkit-box-shadow: inset 0px 0px 30px 0px palegreen;
    -moz-box-shadow: inset 0px 0px 30px 0px palegreen;
    box-shadow: inset 0px 0px 30px 0px palegreen;
}
.dropzone.hover
{
    background: palegreen !important;
}
.dropzone.fade
{
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 1;
}

/*
 * loader
 */
.loader
{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    text-align: center;
    pointer-events: none;
}
.loader > div
{
    width: 24px;
    height: 24px;
    top: calc(50% - 12px);
    position: relative;
    background-color: #0070ba;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.loader .bounce1
{
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.loader .bounce2
{
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay
{
    0%, 80%, 100%
    {
        -webkit-transform: scale(0)
    }
    40% 
    {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay
{
    0%, 80%, 100%
    {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40%
    {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}