.box {
}

.box.has-advanced-upload {
}

.box.is-dragover {
    border-style: solid;
    background-color: transparent;
}

.box__dragndrop,
.box__icon {
    display: none;
}

.box.has-advanced-upload .box__dragndrop {
    display: inline;
}

.box.has-advanced-upload .box__icon {
    display: block;
}

.box.is-uploading .box__input,
.box.is-success .box__input,
.box.is-error .box__input {
    visibility: hidden;
}

.box__uploading,
.box__success,
.box__error {
    display: none;
}

.box.is-uploading .box__uploading,
.box.is-success .box__success,
.box.is-error .box__error {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    -webkit-transform: translateY( -50% );
    transform: translateY( -50% );
}

.box__uploading {
    font-style: italic;
}

.box__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 ); }
}

.box__restart {
    font-weight: 700;
}

.js .box__file {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.js .box__file + label {
    display: inline-block;
    cursor: pointer;
}

/*.box__file:focus + label strong,
.box__file.has-focus + label strong,
.js .box__file + label:hover strong {

}*/

.js .box__file:focus + label,
.js .box__file.has-focus + label {
    outline: none;
}

.js .box__file + label * {
    /* pointer-events: none; */ /* in case of FastClick lib use */
}

.no-js .box__file + label {
    display: none;
}

.buttonsform {
    display: block;
    text-align: center;
    margin-top: 9px;
}

.SD_FormGen_form .SD-drag-and-drop-select-file-label {
    display: inline-block;
}

.form-button {
    display: inline-block;
    cursor: pointer;
}

.text_under_form {
}

.uploaded-file {
    display: none;
}

.uploaded-file .file-icon {
    display: inline-block;
}

.uploaded-file span {
    display: block;
    margin-bottom: 0;
}

.resetform {
    display: none;
}

.resetform.show {
    display: inline-block;
}