::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.nav-link {
  cursor: pointer;
}

tbody tr {
  cursor: pointer !important;
}

/* tbody tr:hover {
  background-color: #54637b !important;
  color: #fff !important;
} */

/*
.table> :not(caption)>*>* {
  background-color: transparent !important;
  color: unset !important;
} */

.dt-type-numeric {
  text-align: left !important;
}

body {
  overflow: auto !important;
  /* zoom: 90%; */
}

#loader {
  display: flex;
  background: white;
  position: relative;
  height: 100%;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  animation-fill-mode: forwards !important;
}

#loader>div {
  /* position: fixed; */
}

#loader .spins {
  animation: spin 1.2s ease-in-out infinite;
  border: 1px solid transparent;
  border-top-color: rgba(49, 6, 80, 0.518);
  border-radius: 100%;
  height: 150px;
  margin: 0 auto;
  position: relative;
  width: 150px;
}

#loader .spins div {
  animation: spin 1s ease-in-out infinite;
  border: 1px solid transparent;
  border-radius: 100%;
  bottom: -1px;
  left: -1px;
  position: absolute;
  right: -1px;
  top: -1px;
}

#loader .spins div:first-child {
  border-top-color: #fff;
  transform: rotate(120deg);
}

#loader .spins div:last-child {
  animation-duration: 2s;
  border-top-color: #2a2aff;
  transform: rotate(240deg);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  50% {
    box-shadow: 0 -2px 4px rgba(255, 255, 255, .2);
    opacity: 0.7;
  }

  100% {
    transform: rotate(360deg);
  }
}

.fadeIn {
  animation: fade-in 0.75s ease-in;
}

.fadeOut {
  animation: fade-out 0.5s ease-out !important;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  1% {
    visibility: visible;
    opacity: 0.1;
  }

  100% {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }

  1% {
    opacity: 0.9;
  }

  100% {
    visibility: hidden;
    opacity: 0;
  }
}

.blink {
  animation: blinker 1.5s infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: transparent !important;
  border: none !important;
}

.DetailPageNavLink {
  color: #ebedefe9 !important;
  cursor: pointer;
  font-size: 17px !important
}

.DetailPageNavLink:hover {
  color: white !important;
}

.showAfterDataTable {
  display: none !important;
}

.lineNumbers {
  position: absolute;
  scrollbar-width: none;
  margin: 0;
  padding: 0 5px;
  background: #EEEEEE;
  user-select: none;
  color: black;
  text-align: right;
  overflow-y: hidden;
  overflow-x: scroll;
  max-width: 40px !important;


  border: 1px solid;
  line-height: 30px;
  padding-top: 3px;

}

.numberedTextArea {
  padding-left: 45px !important;
  flex-grow: 1;
  border-left: none;
  min-height: 250px;
  line-height: 30px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.onDevelopment {
  color: #888888a1 !important;
  pointer-events: none;
}

.minimize {
  position: absolute;
  right: 1px;
  top: 1px;
}

.sharp-corners {
  border-radius: 0 !important;
}

.raporOnayCheck {
  cursor: pointer;
  pointer-events: none;
}

.fixedHeightRow>td>.tdContent {
  height: 50px !important;
  width: auto;
  min-width: 200px;
  block-size: fit-content;
  overflow-x: auto;
}

#captchaTextInput:focus {
  box-shadow: unset !important;
}

#sentry-feedback {
  --background: #000000dc;
  --bottom: 47px;
  padding: 8px 10px;
  margin-bottom: 40px;
  margin-right: -10px;
}


/* CollapsibleCard.css */
.collapsible-card {
  overflow: hidden;
}

.collapsible-card-body {
  overflow: hidden;
  transition: height 0.5s ease, padding 0.5s ease;
}

.collapse-enter {
  height: 0;
  visibility: visible !important;
}

.collapse-enter-done {
  height: auto;
  visibility: visible !important;
}

.collapse-exit {
  height: auto;
  padding: 0 !important;
}

.collapse-exit-done {
  visibility: hidden;
  height: 0;
  padding: 0 !important;
}
