.dropzone
{
    border: 2px dashed #e6e6e6;
    width: 717px;
    height: 222px;
}
.dropzone.has-advanced-upload
{
    border: 2px dashed #e6e6e6;
}
.dropzone.is-dragover
{
    border: 2px dashed #711e82;
    background: #FFFAF8;
}
.dropzone__dragndrop,
.dropzone__icon
{
    display: none;
}
.dropzone.has-advanced-upload .dropzone__dragndrop
{
    display: inline;
}
.dropzone.has-advanced-upload .dropzone__icon
{
    width: 100%;
    height: 80px;
    fill: #92b0b3;
    display: block;
    margin-bottom: 40px;
}

.dropzone.is-uploading .dropzone__input,
.dropzone.is-success .dropzone__input,
.dropzone.is-error .dropzone__input
{
    visibility: hidden;
}

.dropzone .displayInline
{
    display: inline-block;
    width: 750px;
    height: 150px;
}
.dropzone .uploadIcon
{
    /*background: transparent url('../images/uploadIcon.png') no-repeat 0 0;*/
    height: 28px;
    width: 21px;
    margin-left:15px;
}

.dropzone__uploading,
.dropzone__success,
.dropzone__error
{
    display: none;
}
.dropzone.is-uploading .dropzone__uploading,
.dropzone.is-success .dropzone__success,
.dropzone.is-error .dropzone__error
{
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;

    -webkit-transform: translateY( -50% );
    transform: translateY( -50% );
}
.dropzone__uploading
{
    font-style: italic;
}
.dropzone__success
{
    -webkit-animation: appear-from-inside .25s ease-in-out;
    animation: appear-from-inside .25s ease-in-out;
}
@-webkit-keyframes appear-from-inside
{
    from	{ -webkit-transform: translateY( -50% ) scale( 0 ); }
    75%		{ -webkit-transform: translateY( -50% ) scale( 1.1 ); }
    to		{ -webkit-transform: translateY( -50% ) scale( 1 ); }
}
@keyframes appear-from-inside
{
    from	{ transform: translateY( -50% ) scale( 0 ); }
    75%		{ transform: translateY( -50% ) scale( 1.1 ); }
    to		{ transform: translateY( -50% ) scale( 1 ); }
}

.dropzone__restart
{
    font-weight: 700;
}
.dropzone__restart:focus,
.dropzone__restart:hover
{
    color: #39bfd3;
}

.js .dropzone__file
{
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
    display:none;
}
.js .dropzone__file + label
{
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
}
.js .dropzone__file + label:hover strong,
.dropzone__file:focus + label strong,
.dropzone__file.has-focus + label strong
{
    color: #39bfd3;
}
.js .dropzone__file:focus + label,
.js .dropzone__file.has-focus + label
{
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.dropzone .readyToUpload
{
    display:none;
}

.dropZoneTable
{
    background: transparent;
    width:750px;
    height: 222px;
    display: table;
    border-collapse:collapse;
    border: 0px;
}
.dropZoneRow
{
    display:table-row;
}

.dropZoneCol
{
    display:table-cell;
    padding:10px;
    vertical-align: middle;
}
.dropZoneUploadLable
{
    width: 450px;
}

.dropzone ._icon
{
    font-size: 60px;
    color: #e6e6e6;
}

.replaceCartPopup
{
    padding: 10px;
}