body, html, #root {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.column {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}

.row {
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}
.row.spaceBetween {
  justify-content: space-between;
}
.row.end {
  justify-content: flex-end;
}

html, body {
  padding: 0;
  margin: 0;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.FormUploadProgress {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 2;
}
.FormUploadProgress.animated.mounting, .FormUploadProgress.animated.mounted {
  transition-delay: 500ms;
}
.FormUploadProgress .wrapper {
  position: sticky;
  top: 40%;
  margin-top: 40%;
  margin-left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.FormUploadProgress .wrapper .CircleProgress, .FormUploadProgress .wrapper .SpinningProgress {
  position: absolute;
  width: 107px;
  height: 107px;
  top: 0;
  left: 0;
}
.FormUploadProgress .wrapper .CircleProgress .line, .FormUploadProgress .wrapper .SpinningProgress .line {
  stroke: #2196F3;
}
.FormUploadProgress .wrapper > .progress {
  width: 107px;
  height: 107px;
  min-height: 107px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  background: white;
  position: relative;
}
.FormUploadProgress .wrapper > .progress > .value {
  display: inline-block;
  margin-top: 5px;
  font-weight: bold;
  line-height: 16px;
  font-size: 13px;
  text-align: center;
  color: #818181;
}
.FormUploadProgress .wrapper .cancel {
  min-width: 107px;
  margin-top: 20px;
  background-color: white;
  color: #F96B5C;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

.DropFileInput {
  flex-grow: 1;
}
.DropFileInput .Dropzone {
  border: 1px dashed #808080;
  padding: 12px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  color: gray;
  cursor: pointer;
  border-radius: 3px;
  font-weight: normal;
  line-height: 22px;
  font-size: 14px;
  color: #7E7E7E;
  max-width: 100%;
  word-break: break-all;
  word-break: break-word;
}
.DropFileInput .Dropzone .icon.withText {
  margin-right: 10px;
}

.Button {
  position: relative;
  min-width: 64px;
  min-height: 36px;
  height: 24px;
  margin: 0px;
  padding: 0px 16px;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.25px;
  background: #dfdfdf;
  text-transform: uppercase;
  font-family: Roboto, sans-serif;
  -webkit-tap-highlight-color: transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  user-select: none;
  border-radius: 3px;
  transition: all 0.2s ease;
}
.Button.flat {
  background-color: transparent;
}
.Button.flat:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.Button.green {
  background-color: #43a047;
  color: white;
}
.Button.green:hover {
  background-color: #3b8e3f;
}
.Button.blue {
  background-color: #039be5;
  color: white;
}
.Button.blue:hover {
  background-color: #038acc;
}
.Button.red {
  background-color: #e53935;
  color: white;
}
.Button.red:hover {
  background-color: #e2231e;
}
.Button.black {
  background-color: #1e252d;
  color: white;
}
.Button.black:hover {
  background-color: #14181e;
}
.Button.gray {
  background: #D9D9D9;
  color: #999999;
}
.Button.gray:hover {
  background-color: #cccccc;
}
.Button.small {
  padding: 0px 8px;
  min-height: 16px;
  min-width: 16px;
}
.Button > .material-icons {
  margin-right: 10px;
}
.Button.round {
  padding: 0px;
  min-width: 36px;
  border-radius: 50%;
}
.Button.round > .material-icons {
  margin: 0px;
}
.Button .ripple {
  position: absolute;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  transform: scale(0);
  pointer-events: none;
  transition: opacity 0.2s ease-out;
}
.Button .ripple.show {
  animation: ripple 0.35s ease-out;
}
.Button:active .ripple.showed {
  opacity: 1;
}
.Button:focus .ripple.focused {
  opacity: 1;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  transform: scale(1);
  animation: resize 1.25s ease-out infinite;
  animation-delay: 0.2s;
  animation-direction: alternate;
}
.Button .ripple.showed {
  transform: scale(2);
  opacity: 0;
}
@keyframes ripple {
  to {
    transform: scale(2);
  }
}
@keyframes resize {
  to {
    transform: scale(0.9);
  }
}
.Button.raised {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.Button.raised:hover {
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
}
.Button.raised:active {
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.35);
}
.Button.disabled {
  box-shadow: none;
  background: #D9D9D9;
  color: #999999;
}
.Button.disabled:hover {
  background-color: #cccccc;
}
.Button::-moz-focus-inner {
  border: 0;
}

.animated {
  transition: opacity 250ms ease;
  opacity: 0;
}
.animated.mounting, .animated.mounted {
  opacity: 1;
}

.CircleProgress {
  width: 48px;
  height: 48px;
}
.CircleProgress .line {
  stroke-width: 2px;
  stroke: black;
  stroke-linecap: square;
  fill: none;
  transition: stroke-dashoffset 0.2s ease;
}

.SpinningProgress {
  width: 48px;
  height: 48px;
  position: relative;
  margin: 0 auto;
}
.SpinningProgress:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.SpinningProgress .circular {
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.SpinningProgress .line {
  stroke: black;
  stroke-width: 2px;
  stroke-dasharray: 1, 96;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 96;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 43, 96;
    stroke-dashoffset: -17px;
  }
  100% {
    stroke-dasharray: 43, 96;
    stroke-dashoffset: -53px;
  }
}

.Dropzone {
  position: relative;
}
.Dropzone > .overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #38ADC4;
  z-index: 1;
  opacity: 0;
  transition: all 0.2s ease;
  transition-delay: 100ms;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Dropzone > .overlay .drop {
  border-radius: 4px;
  border: 1px dashed #FFFFFF;
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  color: #FFFFFF;
}
.Dropzone.dragging > .overlay {
  opacity: 0.7;
  visibility: visible;
  transition-delay: 0s;
}
.Dropzone.dragging > * {
  pointer-events: none;
}
.Dropzone > input.file {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
