body {
  pointer-events: none;
}

.container {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease-in-out;
  margin: 50px auto 50px auto;
}

.upload-and-example-form {
  transition: opacity 0.25s ease-in-out;
}

.dropzone {
  border: 2px dashed;
  border-color: #9e9e9e;
  height: 400px;
  width: 75%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 50px auto 50px auto;
}

.dropzone header {
  font-size: 30px;
  font-weight: 500;
}

.dropzone input {
  padding: 10px 25px;
  font-size: 20px;
  font-weight: 500;
  border: none;
  outline: none;
  cursor: pointer;
}

.dropzone-text-smaller {
  font-size: 25px;
  font-weight: 500;
  margin: 10px 0 15px 0;
}

.dropzone.active {
  border: 2px solid;
  border-color: #66BB6A;
  background-color: #E0F2F1;
}

.icon-cloud {
  color: #26A69A;
}

.file-type {
  color: #26A69A;
  font-weight: bold;
}

.example-images:hover {
  cursor: pointer;
}

.error-card {
  display: none;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

.image-card {
  display: none;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

.resultzone-card {
  display: none;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -76px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #26a69a;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader-website-loading {
  transition: opacity 0.5s ease-in-out;
}

.loader-file-processing {
  display: none;
}

.tabs .tab a {
  color: #66BB6A
}

.tabs .tab a:hover {
  color: #66BB6A
}

.tabs .tab a.active {
  color: #66BB6A
}

.tabs .tab a:focus.active {
  color: #66BB6A;
  background-color: #E8F5E9
}

.tabs .indicator {
  background-color: #66BB6A
}