
.file_upload { float: left; width: 48%;
  padding: 0px 0;
  padding-bottom: 0px; text-align: left;
}
.file_upload.hidden {
  display: none;
}
.file_upload input {
  visibility: hidden;
}
.file_upload i {
  font-size: 65px;
  color: lightgray;
}
.file_upload p {
  font-size: 14px;
  padding-top: 0px;
  line-height: 1.4; margin: 0px; padding: 0px;
}
.file_upload p b,
.triggerFile.read_more { padding-left: 60px; padding-right: 60px;}
.triggerFile.read_more:hover {
    padding-right: 60px;
	padding-left: 60px;}
.file_upload.active {
  border: dashed 2px #4db6ac;
}
.file_upload.active i {
  box-shadow: 0 0 0 -3px #fff, 0 0 0 lightgray, 0 0 0 -3px #fff, 0 0 0 lightgray;
  -webkit-animation: file 0.5s ease both;
          animation: file 0.5s ease both;
}
@-webkit-keyframes file {
  50% {
    box-shadow: -8px 8px 0 -3px #fff, -8px 8px 0 lightgray, -8px 8px 0 -3px #fff, -8px 8px 0 lightgray;
  }
  75%, 100% {
    box-shadow: -8px 8px 0 -3px #fff, -8px 8px 0 lightgray, -16px 16px 0 -3px #fff, -16px 16px 0 lightgray;
  }
}
@keyframes file {
  50% {
    box-shadow: -8px 8px 0 -3px #fff, -8px 8px 0 lightgray, -8px 8px 0 -3px #fff, -8px 8px 0 lightgray;
  }
  75%, 100% {
    box-shadow: -8px 8px 0 -3px #fff, -8px 8px 0 lightgray, -16px 16px 0 -3px #fff, -16px 16px 0 lightgray;
  }
}
.file_upload.active .pointer-none {
  pointer-events: none;
}
.progress {
  width: 48%; float: left; margin-left: 4%;
  height: 0;
}
.progress .divider {
  margin: 0 auto;
  width: 0;
  border-top: solid 4px #46aba1;
  text-align: center;
  overflow: hidden;
  transition: width 0.5s ease;
}
.progress .divider span {
  display: inline-block;
  transform: translateY(-25px);
  font-size: 12px;
  padding-top: 8px;
}
.progress.hasFiles {
  height: auto;
}
.progress.hasFiles .divider {
  width: 100%;
}
.progress.hasFiles .divider span {
  transform: translateY(0);
  transition: transform 0.5s 0.5s ease;
}
.progress .list-files {
  width: 100%;
  padding-left: 5px;
  text-align: center;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 210px;
}
.progress .list-files::-webkit-scrollbar-track {
  background-color: rgba(211, 211, 211, 0.25);
}
.progress .list-files::-webkit-scrollbar {
  width: 4px;
  background-color: rgba(211, 211, 211, 0.25);
}
.progress .list-files::-webkit-scrollbar-thumb {
  background-color: rgba(77, 182, 172, 0.5);
}
.progress .list-files .file {
  width: 100%; float: left;
  min-height: 50px;
  justify-content: space-between;
  opacity: 0;
  -webkit-animation: fade 0.35s ease both;
          animation: fade 0.35s ease both;
}
.progress .list-files .file .name {
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%; float: left;
  text-align: left; font-family: 'montserratregular'; font-size: 16px; color: #707070; margin-bottom: 10px;
}
.progress .list-files .file .progress {
  width: 70%; float: left;
  height: 6px;
  border: solid 0px lightgray;
  border-radius: 2px;
  background: linear-gradient(to left, rgba(205, 220, 60, 0.8), rgba(137, 163, 60, 1)) no-repeat;
  background-size: 100% 100%; margin-left: 0px;
}
.progress .list-files .file .progress.active {
  -webkit-animation: progress 30s linear;
          animation: progress 30s linear;
}
@-webkit-keyframes progress {
  from {
    background-size: 0 100%;
  }
  to {
    background-size: 100% 100%;
  }
}
@keyframes progress {
  from {
    background-size: 0 100%;
  }
  to {
    background-size: 100% 100%;
  }
}
.progress .list-files .file .done {
     cursor: pointer;
    width: 108px;
    float: left;
    height: 90px;
    background: url(../images/tick.jpg) no-repeat left top;
    border-radius: 50%;
    margin-left: 0px;
    transform: scale(0);
    position: relative;
    background-size: 100%;
    margin-top: -48px;
}
.progress .list-files .file .done:before {
  content: "View";
  position: absolute;
  top: 0;
  left: -5px;
  font-size: 24px;
  opacity: 0; display: none;
}
.progress .list-files .file .done:hover:before {
  transition: all 0.25s ease;
  top: -30px;
  opacity: 1;
}
.progress .list-files .file .done.anim {
  -webkit-animation: done1 0.5s ease forwards;
          animation: done1 0.5s ease forwards;
}
.progress .list-files .file .done.anim #path {
  -webkit-animation: done2 2.5s 0.5s ease forwards;
          animation: done2 2.5s 0.5s ease forwards;
}
.progress .list-files .file .done #path {
  stroke-dashoffset: 7387.5942382813;
  stroke-dasharray: 7387.5942382813 7387.5942382813;
  stroke: #fff;
  fill: transparent;
  stroke-width: 50px;
}
@-webkit-keyframes done2 {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes done2 {
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes done1 {
  50% {
    transform: scale(0.5);
    opacity: 1;
  }
  80% {
    transform: scale(0.25);
    opacity: 1;
  }
  100% {
    transform: scale(0.5);
    opacity: 1;
  }
}
@keyframes done1 {
  50% {
    transform: scale(0.5);
    opacity: 1;
  }
  80% {
    transform: scale(0.25);
    opacity: 1;
  }
  100% {
    transform: scale(0.5);
    opacity: 1;
  }
}
.progress .importar {
  outline: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  margin: auto;
  border: solid 1px #4db6ac;
  color: #4db6ac;
  background: transparent;
  padding: 8px 15px;
  font-size: 12px;
  border-radius: 4px;
  font-family: Roboto;
  line-height: 1;
  cursor: pointer;
  transform: translateY(15px);
  opacity: 0;
  visibility: hidden;
  margin-left: calc(50% - 40px);
}
.progress .importar.active {
  transition: transform 0.5s 1.5s ease, opacity 0.5s 1.5s ease, background;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.progress .importar:hover {
  background: #4db6ac;
  color: #fff;
}


.apply__form .file_upload { float: left; width: 100%;}
.apply__form .progress { float: left; width: 100%; margin-top: 0px;}
.apply__form .progress .list-files .file .name { margin-top: 10px;}


@-webkit-keyframes fadeup {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeup {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes faderight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes faderight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade {
  to {
    opacity: 1;
  }
}
@keyframes fade {
  to {
    opacity: 1;
  }
}
@media (max-width: 400px) {
  .upload {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 900px) {
	
	.progress { width: 100%; margin: 0px ;padding: 0px; margin-top: 15px;}
		.file_upload {
    float: left;
			width: 100%;}
	.progress .list-files .file .done { float: right;     margin-top: -28px;}	
}
@media (max-width: 580px) {
	
	.file_upload p b, .triggerFile.read_more {
    padding-left: 20px;
    padding-right: 20px;     padding-top: 6px;
    padding-bottom: 4px;
}
	
}

@media (max-width: 414px) {
	
	
	.progress .list-files .file .done{ margin-top: -48px;}
}

