/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[12].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[12].oneOf[12].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
@font-face {
  font-family: 'Dobra';
  src: local('Dobra Black'), local('Dobra-Black'),
    url('/fonts/dobra_black/Dobra-Black.woff2') format('woff2'),
    url('/fonts//dobra_black/Dobra-Black.woff') format('woff'),
    url('/fonts/dobra_black/Dobra-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: block;
}

body {
  margin: 0;
  display: inline-block;
  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;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header {
  /* background-color: rgba(255, 255, 255, 0.12); */
  background-color: #1F1B24;
}

.headerBase {
  background-color: #000000;
}

.dobra {
  font-family: Dobra !important;
  font-size: 24px;
}

.borderSquare {
  box-shadow: 0 0 0 1px #4a5058;
}

.importantText {
  color: rgba(255, 255, 255, 0.9);
}

.textMedium {
  font-size: 20px;
}

.textMedium2 {
  font-size: 16px;
}

.noPointerEvent {
  pointer-events: none;
}

.mediumImportantText {
  color: rgba(255, 255, 255, 0.85);
}

.blackTextStroke {
  -webkit-text-stroke: 2px black;
}

.blackTextStroke1 {
  -webkit-text-stroke: 0.08rem black;
}

input[type="file"]::-webkit-file-upload-button {
  height: 40px;
  width: 150px;
  font-size: 20px;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}

.popoverContainer .MuiTypography-root {
  display: flex;
}

.hover:hover {
  cursor: pointer;
}

.drag:hover {
  cursor: move;
}

.noPointerEvents {
  pointer-events: none;
}

.greenDot {
  height: 7px;
  width: 7px;
  background-color: green;
  border-radius: 50%;
  display: inline-block;
}

.yellowDot {
  height: 7px;
  width: 7px;
  background-color: gold;
  border-radius: 50%;
  display: inline-block;
}

.redDot {
  height: 7px;
  width: 7px;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
}

.greenStripes {
  background: repeating-linear-gradient(45deg,
      #ffffff,
      #ffffff 10px,
      #42bb5d 10px,
      #42bb5d 20px);
}

.grayStripes {
  background:
    /* On "top" */
    repeating-linear-gradient(45deg,
      transparent,
      transparent 10px,
      #ccc 10px,
      #ccc 20px),
    /* on "bottom" */
    linear-gradient(to bottom,
      #eee,
      #999);
  /* background: repeating-linear-gradient(45deg,
      #ffffff,
      #ffffff 10px,
      #42bb5d 10px,
      #42bb5d 20px); */
}

.whiteBackground {
  background-color: white;
}

.lightGrayBackground {
  background-color: #f3f3f3;
}

.darkGrayBackground {
  background-color: #7d7d7d !important;
}

.grayBackground {
  background-color: gray;
}

.opaqueBackground {
  background-color: rgba(255, 255, 255, 0.5);
}

.redBorder {
  border: 1px solid red;
  box-sizing: border-box;
}

.tooltip-custom {
  /* margin: 10px; */
  /* border-radius: 5px; */
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  min-width: 200px;
  max-width: 400px;
  white-space: nowrap;
}

.tooltip {
  background-color: red !important;
}


.dragHandle {
  cursor: move;
}

.maxHeight .MuiTypography-root {
  height: 100%;
}

.suggestionHolder .MuiTypography-root {
  flex-direction: column;
}

.teamBuilder ul {
  margin: 0;
  padding: 0;
  width: 100%;
  /* height:100%;
  overflow-y: auto;
  overflow-x: auto; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.teamBuilder li {
  list-style-type: none;
  /* width: 256px; */
}

.elementExpandHeight {
  max-height: 100%;
  transition: max-height 0.45s ease-in;
}

.elementCollapseHeight {
  max-height: 0;
  transition: max-height 0.45s ease-out;
}

.hover {
  cursor: pointer;
}

.elementToFadeInAndOut {
  opacity: 1;
  animation: fade 2s linear infinite;
}

@keyframes fade {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.2
  }
}

.rainbowBorder {
  border: 5px solid transparent;
  border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
  border-image-slice: 1;
}


a {
  margin: 0 0 0 0;
}

.whiteBorder {
  border: 1.5px solid rgba(255, 255, 255, 0.8);
}

.highlight.blink-red {
  opacity: 1;
  animation: fade-border 2s linear infinite;
}

@keyframes fade-border {
  0%,
  100% {
    border: 3px solid rgba(255, 0, 0, 0)
  }

  50% {
    border: 3px solid rgba(255, 0, 0, 1)
  }
}

.inverseX {
  transform: scaleX(-1);
}

