.spacer30 {
  height: 30px;
}

.spacer100 {
  height: 100px;
}

.background {
  height: 100vh;
}

.whiteText {
  color: #fff;
}

.MuiTableCell-root {
  border-bottom: none !important;
}

body {
  background-color: #EFEFEF;
  margin: 0 !important;
  padding: 0 !important;
  font-family: Arial, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
}

#root {
  width: 100%;
  height: 100%;
  display: flex;
}

#scanner-container>video {
  width: 100%;
  height: 100%;
}

#scanner-container>canvas.drawing,
canvas.drawingBuffer {
  position: absolute;
  left: 0;
  top: 0;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

.selectedLineContainer {
  display: inline-block;
  height: 32px;
  position: relative;
  animation: 0.7s clap-out forwards;
  border-radius: 16px;
  background-color: white;
}

.selectedLineInnerContainer {
  height: 32px;

}

@keyframes clap-out {
  from {
    transform-origin: left;
    transform: scaleX(0);

  }

  to {
    transform-origin: left;
    transform: scaleX(1);
  }
}

.bottomThumb {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: white;
  position: relative;
  right: 4px;
  bottom: 26px;
  animation: 0.5s switch-down forwards;
}

.topThumb {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: white;
  position: relative;
  right: 4px;
  top: 25px;
  animation: 0.5s switch-up forwards;

}

@keyframes switch-down {
  100% {
    transform: translateY(51px)
  }
}

@keyframes switch-up {
  100% {
    transform: translateY(-51px)
  }
}


@font-face {
  font-family: "Campton-medium";
  src: url("Campton-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Campton-light";
  src: url("Campton-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Campton-bold";
  src: url("Campton-Bold.ttf") format("truetype");
}