* {
box-sizing: border-box;
}
.wte_upload_files_zone {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 40px 20px;
cursor: pointer;
overflow: hidden;
clear: both;
position: relative;
margin-bottom: 15px;
border: 1px dashed #333;
background: #f5f5f5;
}
.wte_upload_files_area {
position: relative;
overflow: hidden;
width: 100%;
clear: both;
margin-bottom: 30px;
}
.wte_upload_files_zone:before {
content: '';
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
height: calc(100% - 30px);
width: calc(100% - 30px);
position: absolute;
top: 13px;
left: 13px;
transition: .15s border-color ease-in;
-moz-transition: .15s border-color ease-in;
-webkit-transition: .15s border-color ease-in;
}
.wte_file_remove{
color: red;
cursor: pointer;
}
.wte_download_file{
color: green;
cursor: pointer;
}
.wte_upload_files_zone .wte-icon {
display: block;
margin: 0 auto;
font-size: 80px;
height: 80px;
text-align: center;
width: 80px;
line-height: 80px;
}
input.wte_upload_files_input {
display: none;
}
.wte_upload_files_zone.wte_uploade_hover {
background-color: #deeccc;
}
.wte_upload_files_area p.wte_desc:empty {
margin: 0;
}
span.wte_upload_progress_bar {
height: 10px;
display: block;
background: green;
}
.wte_upload_progress {
display: none;
}
.wte_file_info > a, .wte_file_info > a:hover, .wte_file_info > a:active  {
text-decoration: none;
}
span.wte_upload_progress_status {
display: block;
color: #000;
}
.wte_file_icon:after {
content: '';
position: absolute;
width: 600px;
height: 80px;
top: 20px;
right: -515%;
background: #036dda;
transform-origin: 54% 0;
transform: rotate(45deg);
z-index: -1;
}
.wte_file_icon span {
font-size: 35px;
padding: 10px;
display: block;
padding-top: 15px;
color: #fff;
}
.wte_file_icon {
height: 65px;
width: 55px;
position: relative;
overflow: hidden;
}
.wte_file_info {
padding: 8px;
width: calc(79%);
}
.wte_file_info span.wte_file_name {
color: #333;
display: block;
}
.wte_file_upload_item {
display: flex;
flex-wrap: wrap;
margin-bottom: 5px;
} .wte-spinner {
display: none;
position: relative;
width: 80px;
height: 80px;
}
.wte-spinner div {
transform-origin: 40px 40px;
animation: wte-spinner 1.2s linear infinite;
}
.wte-spinner div:after {
content: " ";
display: block;
position: absolute;
top: 3px;
left: 37px;
width: 6px;
height: 18px;
border-radius: 20%;
background: #000;
}
.wte-spinner div:nth-child(1) {
transform: rotate(0deg);
animation-delay: -1.1s;
}
.wte-spinner div:nth-child(2) {
transform: rotate(30deg);
animation-delay: -1s;
}
.wte-spinner div:nth-child(3) {
transform: rotate(60deg);
animation-delay: -0.9s;
}
.wte-spinner div:nth-child(4) {
transform: rotate(90deg);
animation-delay: -0.8s;
}
.wte-spinner div:nth-child(5) {
transform: rotate(120deg);
animation-delay: -0.7s;
}
.wte-spinner div:nth-child(6) {
transform: rotate(150deg);
animation-delay: -0.6s;
}
.wte-spinner div:nth-child(7) {
transform: rotate(180deg);
animation-delay: -0.5s;
}
.wte-spinner div:nth-child(8) {
transform: rotate(210deg);
animation-delay: -0.4s;
}
.wte-spinner div:nth-child(9) {
transform: rotate(240deg);
animation-delay: -0.3s;
}
.wte-spinner div:nth-child(10) {
transform: rotate(270deg);
animation-delay: -0.2s;
}
.wte-spinner div:nth-child(11) {
transform: rotate(300deg);
animation-delay: -0.1s;
}
.wte-spinner div:nth-child(12) {
transform: rotate(330deg);
animation-delay: 0s;
}
@keyframes wte-spinner {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}