body {
  font-family: 'Overpass', sans-serif;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

.sticky-toolbar {
  position: fixed;
  display: flex;
  bottom: 15px;
  width: 100%;
  justify-content: center;
  z-index: 1000;
}
.container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-container {
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal.visible {
  visibility: visible;
  opacity: 1;
}

.hidden {
  display: none !important;
}

.button {
  padding: 8px 21px;
  box-shadow: 0px 0px 8px -2px rgba(0, 0, 0, 0.5);
  line-height: 1.25;
  background: #e54c38;
  text-decoration: none;
  color: white;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.button-reset {
  background: #1f1f17;
  margin-left: 15px;
}
.button:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  top: var(--mouse-y);
  left: var(--mouse-x);
  transform-style: flat;
  transform: translate3d(-50%, -50%, 0);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  transition: width 0.3s ease, height 0.3s ease;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.header-main {
  font-weight: 900;
  font-size: 28px;
}

.header-description {
  margin-top: 5px;
  color: grey;
}

.header-main > span {
  display: inline-flex;
  align-items: center;
  background: #e54c38;
  color: white;
  min-height: 50px;
  padding-top: 5px;
}

header {
  margin-bottom: 30px;
}

footer {
  color: black;
  text-align: center;
}

.modal {
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
}
.modal > .modal-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}
h2 {
  font-size: 24px;
  margin-top: 0;
}
p {
  margin-bottom: 20px;
}
label {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="text"],
input[type="date"] {
  border: none;
  border-radius: 3px;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 20px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 100%;
}
.clear-button {
  background-color: #fff;
  color: #0077cc;
  border: 1px solid #d9edff;
  border-radius: 3px;
  padding: 5px 10px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}
.signature-pad {
  border: 2px solid #d9edff;
  padding: 10px;
  border-radius: 5px;
  position: relative;
  margin-bottom: 20px;
}
.clear-button:hover {
  background-color: #0077cc;
  color: #fff;
}
.place-button {
  background-color: #0077cc;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 10px 20px;
  margin-top: 20px;
  cursor: pointer;
}
.place-button:hover {
  background-color: #005299;
}
.close-button {
  align-self: end;
  font-size: 25px;
  cursor: pointer;
}
.dragover {
  border: 2px dashed #e54c38;
}

.footer {
  font-size: 11px;
  display: flex;
  justify-content: center;
}

.footer a {
  margin-left: 2px;
}
