/* fallback */
/* @font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(official_fonts.woff2) format('woff2');
} */

@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(official_fonts.woff2) format("woff2");
}

@font-face {
  font-family: "Karrik";
  font-style: normal;
  font-weight: 400;
  src: url(Karrik-Regular.ttf) format("ttf"),
    url(Karrik-Regular.woff2) format("woff2"),
    url(Karrik-Regular.woff) format("woff"),
    url("../assets/font/Karrik-Regular.eot?#iefix") format("embedded-opentype");
  /* For IE6-8 */
}

@font-face {
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  src: url(Georgia.ttf) format("ttf");
}

.shakeButton:hover {
  animation: shake 1s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(1px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-2px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(2px, 0, 0);
  }
}

.topic {
  padding: 10px;
  margin: 10px;
  display: inline-block;
  transition: all 0.5s;
  border-radius: 10px;
}

.topic:hover {
  transform: translateY(-10px);
  font-size: 20px;
}

.checkbox {
  margin-right: 10px;
}

/* Muted effect by default */
.functionalButton {
  transition: transform 0.3s, filter 0.3s;
  /* Smooth transition for transform and filter */
}
.notFunctionalButton {
  cursor: not-allowed;
  opacity: 0.5;
}
/* Full color and scale increase on hover */
.functionalButton:hover {
  cursor: pointer;
  transform: scale(1.1);
  filter: grayscale(0%);
  /* Removes grayscale, showing full color */
}

/* Further scale increase when active, maintaining full color */
.functionalButton:active {
  transform: scale(1.3);
  /* Keep your scaling as desired */
}

.canClick .functionalButtonProg,
.canClick .col {
  cursor: pointer;
}

.canClick .functionalButtonProg:hover {
  transform: scale(1.1);
  transition-duration: 0.5s;
  text-decoration: underline;
}

.canClick .functionalButtonProg:active {
  transform: scale(1.3);
  transition-duration: 0.5s;
  opacity: 1;
}

.lo-stats__cell-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.lo-stats__cell-text {
  display: flex;
  margin: 0;
}

.lo-stats__cell-clickable {
  cursor: pointer;
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.modal-header h5 {
  width: 100%;
}

.modal-backdrop.show {
  z-index: 99999 !important;
}
.custom-backdrop{
  background-color: rgba(0, 0, 0, 0.5) !important;
}

.modal {
  z-index: 999999 !important;
}

.containerGeneral {
  padding: 0;
  background: white;
  height: 100%;
}

footer {
  position: fixed !important;
}

@media screen and (min-width: 768px) {
  .containerGeneral {
    padding: 0px 12.5px 12.5px 12.5px;
  }
}

@media screen and (min-width: 1024px) {
  .containerGeneral {
    padding: 0px 45px 45px 45px;
  }
}

@media screen and (min-width: 1440px) {
  .containerGeneral {
    padding: 0px 90px 90px 90px;
  }
}

@media screen and (max-width: 768px) {
  footer {
    position: static !important;
  }
}

.nav-item.dropdown {
  align-content: center;
}

@media only screen and (max-width: 768px) {
  .onlyMobile {
    display: block;
  }

  .main-footer {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .onlyMobile {
    display: none;
  }
}
@media only screen and (min-width: 769px) {
  .main-footer {
    width: 67%;
  }
}

@media only screen and (min-width: 992px) {
  .main-footer {
    width: 75%;
  }
}

@media only screen and (min-width: 1440px) {
  .main-footer {
    width: calc(100% - 350px);
  }
}

.btn-outline-primary-bold {
  border-width: medium !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm:hover {
  background-color: #007bff !important;
  color: white !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
  background-color: transparent !important;
  color: #007bff !important;
  font-weight: 400 !important;
  font-family: "Karrik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif !important;
  border: medium solid #007bff !important;
  padding: 0.5625rem 1rem !important;
  font-size: 0.75rem !important;
  line-height: 1.125 !important;
  border-radius: 0.25rem !important;
  border-radius: 50px !important;
  transition: all 250ms cubic-bezier(0.27, 0.01, 0.38, 1.06) !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel {
  background-color: #007bff !important;
  color: white !important;
  font-weight: 400 !important;
  font-family: "Karrik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif !important;
  border: medium solid #007bff !important;
  padding: 0.5625rem 1rem !important;
  font-size: 0.75rem !important;
  line-height: 1.125 !important;
  border-radius: 0.25rem !important;
  border-radius: 50px !important;
  transition: all 250ms cubic-bezier(0.27, 0.01, 0.38, 1.06) !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm:focus {
  box-shadow: none !important;
}
.badge-beta {
  background-color: #007bff;
  color: white;
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 8px;
  display: inline-block;
}

.react-datepicker-popper {
  z-index: 9999 !important;
}
