

.form-control {
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 12px;
  color: #7a7a7a;
  -ms-box-shadow: none;
  box-shadow: none;
  background: #FFF;
  transition: all 200ms ease-in;
}
.form-control:focus{
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.3);
}

#contactForm label{
  color: #777777;
  margin-bottom: 5px;
}

#contactForm label span{
  color: red;
  margin-left: 5px;
}



/**PROGRESS BAR**/

input[type="file"]{
  display: none;
}

.file-upload-wrapper ul{
  color: #7a7a7a;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: block;
  margin-top: 12px;
  margin-left: 0;
}
.uploadItem{
  border: 1px solid #ddd;
  display: flex;
  padding: 5px 75px 5px 5px;
  font-size: 10px;
  /* height: 30px; */
  margin-top: 8px;
  max-width: 250px;
  align-items: center;
  position: relative;
  /* white-space: nowrap; */
  overflow-x: hidden;
  box-sizing: border-box;
  cursor: default;
  /* text-overflow: ellipsis; */
}
.uploadItem .file-name{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.delete-item{
  color: #333;
  display: flex;
  background-color: transparent;
  border: none;
  outline: none;
  color: #fff;
  border-radius: 3px;
  color: #7a7a7a;
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  align-items: center;
  justify-content: center;
}

.help-block{
  color: #ff0000;
  font-size: 13px;
}
.total-size{
  color: #7a7a7a;
  font-size: 12px;
  /* border-top: 1px solid #ddd; */
  margin-top: 15px;
}

#progress-outer{
  position: relative;
  max-width: 250px;
  background-color: #ddd;
  height: 3px;
  margin-top: 5px;
  border-radius: 3px;
  overflow: hidden;
}
#progress-inner{
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background-color: #a2b015;
  width: 0%;
  border-radius: 3px;
  transition: width 0.5s ease-in-out, background-color 1s linear;
}
.loader{
  height: 14px;
}
#success{
  margin-bottom: 20px;
  font-size: 18px;
  color: #2f2f2f;
}

.input-field{
  display: none;
  margin-bottom: 15px;
}
.input-field input{
  border: 1px solid #ddd;
  width: 100%;
  min-height: 45px;
}
.input-field input:focus{
  border: 1px solid rgba(0, 0, 0, 0.3) !important;
  outline: none;
}
.input-field p {
  color: #777777;
  font-size: 14px;
  font-weight: 700;
}
.file-size{
  font-size: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
