.spacer30 {
  height: 30px;
}

html {
  height: 100%;
}

body {
  height: 100%;
}

.spacer100 {
  height: 100px;
}

.background {
  height: 100vh;
}

.whiteText {
  color: #fff;
}

.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, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    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);
  }
}

.MuiStepConnector-vertical {
  margin-left: 25px !important;
}

.MuiStepContent-root {
  margin-left: 25px !important;
}
.MuiButton-root {
  text-transform: capitalize !important;
  font-weight: 500 !important;

}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  5% { transform: translate(-1px, -2px) rotate(-1deg); }
  10% { transform: translate(-3px, 0px) rotate(1deg); }
  15% { transform: translate(3px, 2px) rotate(0deg); }
  20% { transform: translate(1px, -1px) rotate(1deg); }
  25% { transform: translate(-1px, 2px) rotate(-1deg); }
  30% { transform: translate(-3px, 1px) rotate(0deg); }
  35% { transform: translate(3px, 1px) rotate(-1deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  45% { transform: translate(-1px, 2px) rotate(0deg); }
  50% { transform: translate(-3px, 1px) rotate(-1deg); }
  55% { transform: translate(3px, 1px) rotate(1deg); }
  60% { transform: translate(1px, -1px) rotate(0deg); }
  65% { transform: translate(-1px, 2px) rotate(-1deg); }
  70% { transform: translate(-3px, 1px) rotate(1deg); }
  75% { transform: translate(3px, 1px) rotate(0deg); }
  80% { transform: translate(1px, -1px) rotate(-1deg); }
  85% { transform: translate(-1px, 2px) rotate(1deg); }
  90% { transform: translate(-3px, 1px) rotate(0deg); }
  95% { transform: translate(3px, 1px) rotate(-1deg); }
  100% { transform: translate(1px, -1px) rotate(1deg); }
}

.shake {
  animation: shake 1s; /* Adjusted duration for faster shake */
}

.rotate {
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.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");
}