html,
body,
#root,
#root > div {
  width: 100%;
  height: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.my-datetime-picker {
  font-family: Oswald-Light;
  width: 250px;
  height: 262px;
}

.dropzone {
  min-height: 75px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dropzone-errors {
  font-size: 14px;
  font-family: 'Oswald-Regular';
  color: #d32f2f;
}

#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  font-size: 17px;
  font-family: 'Oswald-Regular';
  background-color: #404040;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  top: 100px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 100px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 100px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    top: 100px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    top: 100px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}

/* .colorPicker {
  width:'100%';
} */
