.spacer30 {
  height: 30px;
}

html {
  height: 100%;
  font-family: 'Lato, sans-serif';
}

body {
  height: 100%;
}

.spacer100 {
  height: 100px;
}

.background {
  height: 100vh;
}

.whiteText {
  color: #fff;
}

.commentItem {
  transition: all 0.5s ease;
  opacity: 1;
  /* transform: translateX(0); */
}

.commentItem.deleting {
  opacity: 0;
  /* transform: translateX(100px); */
  /* slides right */
}

.MuiTableCell-root {
  border-bottom: none !important;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgb(194, 194, 203);
}

body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Lato", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#root {
  width: 100%;
  height: 100%;
  display: flex;
}

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)
  }
}

#center-container {
  max-height: 100px;
}

#chartDiv>div {
  height: 100px !important;
}


@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");
}