body,
html {
  height: 100%;
  margin: 0;
  font-family: Helvetica, arial, sans-serif;
  overflow: hidden;
}
.segment {
  stroke: none;
}
.segment:hover {
  fill: rgba(20, 20, 20, 0.82);
}
.my-uploader {
  width: 100%;
  padding: 20px;
  position: relative;
  box-sizing: border-box;
  display: block;
}
.file-drop {
  /* relatively position the container bc the contents are absolute */
  position: relative;
  height: 100px;
  width: 100%;
}
.file-drop > .file-drop-target {
  /* basic styles */
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 2px;
  /* --------------- */
  /* a little transition sizzle */
  transition: all 150ms linear;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  opacity: 1;
  /* horizontally and vertically center all content */
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  align-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
  /* --------------- */
}
.file-drop > .file-drop-target.file-drop-dragging-over-frame {
  /* overlay a black mask when dragging over the frame */
  border: none;
  background-color: rgba(0, 0, 0, 0.65);
  box-shadow: none;
  z-index: 50;
  opacity: 1;
  /* --------------- */
  /* typography */
  color: white;
  /* --------------- */
}
.file-drop > .file-drop-target.file-drop-dragging-over-target {
  /* turn stuff orange when we are dragging over the target */
  color: #ff6e40;
  box-shadow: 0 0 13px 3px #ff6e40;
}
li.placeholder {
  background: #fff078;
}
li.placeholder:before {
  content: "Drop here";
  color: #e1d25a;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
li {
  padding: 5px;
  background: #eee;
}
.paperSize {
  width: 100% !important;
  margin-top: 15px;
}
.paperSize div div {
  line-height: 1.5em !important;
}
#sidebar label,
.mui-input-description {
  font-size: 15px;
}
.content > div {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.csv-drop {
  height: 36px;
}
.drawer {
  position: fixed;
  top: 56;
  right: 0;
  width: 90%;
  max-width: 738px;
  z-index: 80;
  height: 95%;
  overflow: scroll;
  box-shadow: -5px 0 5px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
.drawer.open {
  transform: translateX(0);
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
