button {
  outline: none!important;
  box-shadow: none!important;
  background: transparent;
  cursor: pointer;
}
button:disabled {
  background-color: #e0e0e0 !important;
  cursor: default!important;
  border: none!important;
  color: #bdbdbd!important;
}
.form-row {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 12px;
}
.form-row label {
  width: 80px;
  padding: 0 8px 0 0;
  text-align: right;
  margin-bottom: 0;
  font-weight: bold;
  color: #757575;
}
.form-row .form-input {
  flex: 1 1 auto;
  margin-left: 8px;
  max-width: calc(100% - 88px);
}
input[type=text], textarea {
  padding: 4px 8px;
}
#choose-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #03a9f4;
  color: #fff;
  border-radius: 2px;
  transition: background-color .3s;
}
#choose-btn:hover {
  background: #1e88e5;
}
.dropzone {
  width: 100%;
  background-color: #bbdefb;
  display: inline-flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  border: 1px solid #757575;
}
.dropzone.over {
  border: 3px dashed #2196f3;
}
.dropzone #drop-tips {
  width: 100%;
  color: #757575;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dropzone #file-table {
  table-layout: fixed;
  width: 100%;
  background-color: #fff;
}
#file-table tbody tr td {
  text-align: center;
  border-left: 1px solid #bcbcbc;
  border-top: 1px solid #bcbcbc;
}
#file-table tbody tr:first-child {
  border-top: none;
}
#file-table tbody tr td:first-child {
  border-left: none;
  text-align: left;
  padding-left: 8px;
}
#file-table .filename {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dropzone .file-delete-btn {
  color: tomato;
  border: none!important;
  transition: color .3s;
}
.dropzone .file-delete-btn:hover {
  color: #f44336;
  font-weight: bold;
}
.form-error {
  color: tomato;
  font-size: 10px;
  margin-top: 4px;
}

#upload-btn {
  background: #2196f3;
  border: 1px solid #1e88e5;
  color: #fff;
  transition: all .4s;
  border-radius: 4px;
  font-size: 18px;
  font-weight: bold;
}
#upload-btn:not(:disabled):hover {
  transform: scale(105%);
}

/* Spinner */
#spinner-area {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.15);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lds-spinner {
  color: #e91e63;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #e91e63;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Spinner */

/* Common */
.shadow {
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.divider {
  position: absolute;
  bottom: 8px;
  left: 4px;
  right: 4px;
  height: 1px;
  background-color: #bcbcbc;
  box-shadow: 0 5px 10px rgba(0,0,0,0.25);
}
/* Common */
