/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}

.modal a {
  color: #444;
}

/* Custom default button */
.btn-default,
.btn-default:hover,
.btn-default:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
  background-color: #fff;
  border: 1px solid #fff;
}

.is-waiting,
.is-valid,
.is-invalid {
  transition: all 200ms ease-out;
}
.is-waiting {
  box-shadow: 0 0 15px 10px rgba(0, 0, 230, 0.5);
}
.is-valid {
  box-shadow: 0 0 15px 10px rgba(0, 230, 0, 0.5);
}
.is-invalid  {
  box-shadow: 0 0 15px 10px rgba(230, 0, 0, 0.5);
}

i.material-icons {vertical-align:middle}

html,
body {
  height: 100%;
  background-color: #333;
}
body {
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
  padding-top: 50px;
}
.starter-template {
  /*padding: 40px 15px;*/
  /*text-align: center;*/
}


.file-drop-area {
  /*position: relative;
  display: flex;
  align-items: center;
  /*width: 450px;
  max-width: 100%;*/
  padding: 10px;
  border: 1px dashed #888 /*rgba(255, 255, 255, 0.4)*/;
  border-radius: 3px;
  transition: 0.2s;
}
.file-drop-area:hover {
  border-color: #ccc;
}

.choose-file-button {
  flex-shrink: 0;
  background-color: #222 /*rgba(255, 255, 255, 0.04)*/;
  border: 1px solid #444 /*rgba(255, 255, 255, 0.1)*/;
  border-radius: 3px;
  padding: 8px 15px;
  margin-right: 10px;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  position:relative;
  z-index: 1;
  user-select: none;
}
.choose-file-button:hover {
  border-color: #ccc;
}

.file-message {
  font-size: small;
  font-weight: 300;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}
