/* 16-dec-2019/hen Drag-and-drop file upload */
:root {
  --color-blue-default: #247ba0;
  --color-blue-medium: #217091;
  --color-blue-dark: #1c607d;

  --color-red-default: #ef6269;
  --color-red-medium: #ef5d64;
  --color-red-dark: #ed454e;

  --color-green-default: #25857d;
  --color-green-medium: #227770;
  --color-green-dark: #1c635e;
}
.file-upload {
  margin: 3em 0;
}
.file-upload > p {
  margin-bottom: 2em;
}
.file-upload-btn {
  width: 100%;
  margin: 0;
  color: white;
  background: var(--color-blue-default);
  border: none;
  padding: 10px;
  border-radius: 4px;
  border-bottom: 4px solid var(--color-blue-dark);
  transition: all .2s ease;
  outline: none;
  text-transform: uppercase;
  font-weight: 700;
}
.file-upload-btn:hover {
  background: var(--color-blue-medium);
  color: white;
  transition: all .2s ease;
  cursor: pointer;
}
.file-upload-btn:active {
  background: var(--color-blue-dark);
  transition: all .2s ease;
}
.file-upload-content {
  display: none;
  margin-top: 2em;
  text-align: center;
}
.file-upload-input {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
  top: 0;
  left: 0;
}
.image-upload-wrap {
  margin-top: 20px;
  border: 4px dashed var(--color-blue-default);
  position: relative;
  transition: all .2s ease;
  color: var(--color-blue-default);
}
.image-dropping,
.image-upload-wrap:hover {
  background: var(--color-blue-default);
  border: 4px dashed white;
  transition: all .2s ease;
  color: white;
}
.image-title-wrap {
  padding: 0 15px 15px 15px;
  color: #222;
}
.drag-text {
  text-align: center;
}
.drag-text h3 {
  font-weight: 100;
  font-size: 1.7em;
  text-transform: uppercase;
  padding: 60px 0;
  font-family: 'PT Sans', Verdana, Arial, Helvetica, sans-serif !important;
  /*color: var(--color-blue-default);*/
}
.file-upload-image {
  max-height: 200px;
  max-width: 200px;
  margin: auto;
  padding: 20px;
}
.remove-image {
  margin: 0;
  color: white;
  background: var(--color-red-default);
  border: none;
  padding: 10px;
  border-radius: 4px;
  border-bottom: 4px solid var(--color-red-dark);
  transition: all .2s ease;
  outline: none;
  text-transform: uppercase;
  font-weight: 700;
}
.remove-image:hover {
  background: var(--color-red-medium);
  color: white;
  transition: all .2s ease;
  cursor: pointer;
}
.remove-image:active {
  background: var(--color-red-dark);
  transition: all .2s ease;
}

.fill-available {
	width: 100%;
	width: -moz-available;
	width: -webkit-fill-available;
	width: fill-available;
	width: stretch;
}