@CHARSET "UTF-8";

.fileuploader {
   display: block;
    width: 100%;
    /* padding: 15px; */
    border-radius: 4px;
    line-height: normal;
    text-align: left;
    overflow: hidden;
}

.fileuploader,
.fileuploader *,
.fileuploader :before,
.fileuploader :after {
    box-sizing: border-box;
}

.fileuploader-input {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid transparent;
    cursor: pointer;
    overflow: hidden;
}

.fileuploader-input-caption {
    position: relative;
    display: inline-block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-item-align: start;
    align-self: flex-start;
    padding: 5px 5px;
    background: #fff;
    border: 1px solid #ccc;
    color: #ccc;
    /* font-weight: bold; */
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.fileuploader-input-button {
    display: inline-block;
    background: rgb(105, 108, 117) /* #687ddb */;
    padding: 5px 10px;
    color: #fff;
    text-align: center;
    /* font-weight: bold; */
    vertical-align: top;
    cursor: pointer;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.fileuploader-items-list {
    display: block;
    /* margin: 0 -15px; */
    padding: 0;
    list-style: none;
}

.fileuploader-item {
    position: relative;
    margin: 0;
    padding: 12px 15px;
    border-bottom: 1px solid #e8e8e8;
    -webkit-animation: fileuploaderSlideIn 0.4s ease;
    animation: fileuploaderSlideIn 0.4s ease;
}

.fileuploader-item .columns {
    position: relative;
    z-index: 2;
}

.fileuploader-item .column-thumbnail {
    position: absolute;
    width: 36px;
    height: 36px;
    line-height: 36px;
    left: 0;
    top: 0;
}

.fileuploader-item .column-thumbnail .fileuploader-item-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.fileuploader-item .fileuploader-item-image img,
.fileuploader-item .fileuploader-item-image canvas {
    border-radius: 4px;
    -webkit-animation: fileuploaderFadeIn .2s ease;
    animation: fileuploaderFadeIn .2s ease;
    cursor: pointer;
}


.fileuploader-item .column-contents {
	display: block;
    padding-left: 51px;
    padding-right: 81px;
    overflow: hidden;
}

.fileuploader-item .column-title {
	width: 50%;
    color: #696c75;
    padding-right: 15px;
    float: left;
}

.fileuploader-item .column-input-field {
	width: 50%;
    color: #74809D;
    float: left;
}

.fileuploader-item .column-input-field .refer-field{
	padding-top: 5px;
    float: left;
}

.fileuploader-item .column-input-field .input-field{
    float: right;
}

.fileuploader-item .column-title div {
    width: 100%;
    /* font-weight: bold; */
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.fileuploader-item .column-title span {
    font-size: 12px;
    color: #696c75;
}

.fileuploader-item .column-actions {
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -9px;
}

.fileuploader-item a {
    color: #74809D;
    text-decoration: none;
}

.fileuploader-item .fileuploader-item-icon {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    font-size: 11px;
    background: #ddd;
    border-radius: 4px;
    -webkit-animation: fileuploaderFadeIn .2s ease;
    animation: fileuploaderFadeIn .2s ease;
}

.fileuploader-item .fileuploader-item-icon i {
    display: block;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    font-style: normal;
    font-weight: bold;
}

.fileuploader-action {
    display: inline-block;
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    vertical-align: top;
    -webkit-transform: translateZ(0px);
    transform: translateZ(0px);
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.fileuploader-action-remove {
	background: #e8e9f2;
    border: 1px solid #696c75;
}
.fileuploader-action-remove i:before, .fileuploader-action-remove i:after {
    content: '';
    position: absolute;
    top: 4px;
    left: 7px;
    height: 8px;
    width: 2px;
    background-color: #696c75;
}

.fileuploader-action-remove i:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.fileuploader-action-remove i:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.fileuploader-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color : rgba( 25, 29, 30, 0.8);
    z-index: 1090;
    animation-duration: .4s;
}

.fileuploader-popup .fileuploader-popup-preview {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 2;
}

.fileuploader-popup .fileuploader-popup-node {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    height: 100%;
    min-width: 20px;
    min-height: 20px;
    padding: 80px 56px 64px;
    overflow: hidden;
}

.fileuploader-popup .fileuploader-popup-node .reader-node {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    text-align: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.fileuploader-popup .fileuploader-popup-node .reader-node img {
	max-width: 100%;
	max-height: 100%;
}

.fileuploader-popup .close-preview i {
	color: #fff;
}