/* ===== Dasboard ===== */

.slick-list {
  box-sizing: initial;
  padding: 0px 0px 2px 0px;
}

.slick-slide {
  margin: 0px 20px;
}

.slick-list {
  margin: 0 -20px;
}

.slick-prev:before,
.slick-next:before {
  color: #0ea5e9;
  font-size: 40px;
}

.slick-prev, .slick-next{
  width: 40px;
  height: 40px;
}

.slick-prev {
  left: 25px;
}

.slick-next {
  right: 25px;
}

.slick-prev, .slick-next{
  z-index: 1;
}

/* ===== Simulation ===== */

.simulation .slick-slide {
  margin: 0px 10px;
}

@media only screen and (max-width: 768px) {
  .simulation .slick-slide {
    margin: 0px 0px;
  }
}

.simulation .slick-dots LI.slick-active BUTTON::before,
.simulation .slick-dots LI.slick-active BUTTON:focus {
  color: #000;
  opacity: 1 !important;
}

.simulation .slick-dots LI.past BUTTON::before,
.simulation .slick-dots LI.past BUTTON:focus {
  color: #0ea5e9;
  opacity: 1;
}

.simulation .slick-dots LI:not(.past) BUTTON:focus {
  opacity: .25;
}

.simulation .slick-dots {
  max-width: 1024px;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-color: #9ca3af #f3f4f6;
  position: static !important;
  padding-left: 0px;
}

.simulation .slick-dots li {
  margin: 0 5px 10px 5px;
}

/* ===== Scrollbar ===== */

.simulation .slick-dots::-webkit-scrollbar {
  width: 10px;
}

.simulation .slick-dots::-webkit-scrollbar-track {
  background: #f3f4f6;
}

.simulation .slick-dots::-webkit-scrollbar-thumb {
  background-color: #9ca3af;
  border-radius: 10px;
  border: 6px solid #f3f4f6;
}

.simulation .slick-dots::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* ===== welcome ===== */

.text-outline {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #0ea5e9;
}

.shadow-1 {
  -webkit-box-shadow: 0px 10px 20px 0px rgba(119, 119, 147, 0.1);
  box-shadow: 0px 10px 20px 0px rgba(119, 119, 147, 0.1);
}

.item-animateOne {
  -webkit-animation: animateOne 15s infinite ease-in-out;
  -o-animation: animateOne 15s infinite ease-in-out;
  -ms-animation: animateOne 15s infinite ease-in-out;
  -moz-animation: animateOne 15s infinite ease-in-out;
  animation: animateOne 15s infinite ease-in-out;
}

@-webkit-keyframes animateOne {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes animateOne {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.item-animateTwo {
  -webkit-animation: animateTwo 15s infinite ease-in-out;
  -o-animation: animateTwo 15s infinite ease-in-out;
  -ms-animation: animateTwo 15s infinite ease-in-out;
  -moz-animation: animateTwo 15s infinite ease-in-out;
  animation: animateTwo 15s infinite ease-in-out;
}

@-webkit-keyframes animateTwo {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(-50px, 50px);
    transform: translate(-50px, 50px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes animateTwo {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(-50px, 50px);
    transform: translate(-50px, 50px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.item-bounce {
  -webkit-animation: bounce 3s infinite ease-in-out;
  -o-animation: bounce 3s infinite ease-in-out;
  -ms-animation: bounce 3s infinite ease-in-out;
  -moz-animation: bounce 3s infinite ease-in-out;
  animation: bounce 3s infinite ease-in-out;
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }

  50% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }

  50% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

.item-zooming {
  -webkit-animation: zooming 3s infinite ease-in-out;
  -o-animation: zooming 3s infinite ease-in-out;
  -ms-animation: zooming 3s infinite ease-in-out;
  -moz-animation: zooming 3s infinite ease-in-out;
  animation: zooming 3s infinite ease-in-out;
}

@-webkit-keyframes zooming {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zooming {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* ===== Preloader ===== */
.preloader-inner {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  background-color: #f3f4f6;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.spinner {
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 15px;
  height: 15px;
  background-color: #38bdf8;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bouncedelay {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* ===== Tooltips ===== */
.ui-tooltip {
  padding: 8px 12px;
  font-size: 12px;
  line-height: 16px;
  color: #111827;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

/* ===== Scrollbar default ===== */
@media screen and (min-width: 721px) {
  /* Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: #d4d4d8 #f3f4f6;
  }

  /* Chrome, Edge and Safari */
  *::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }

  *::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #f3f4f6;
  }

  *::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #d4d4d8;
  }

  *::-webkit-scrollbar-thumb:hover {
    background-color: #a1a1aa;
  }

  *::-webkit-scrollbar-thumb:active {
    background-color: #71717a;
  }
}

/* ===== Auto-tables ===== */
.tablesort th:hover{
  cursor: pointer;
}

.tablesort th::after {
  content: "▲";
  opacity: 0.4;
}

.tablesort th.tablesort-asc::after {
  content: "▲";
  opacity: 1;
  color: #38bdf8;
}

.tablesort th.tablesort-desc::after {
  content: "▼";
  opacity: 1;
  color: #38bdf8;
}

.tablesort th.no-sort{
  cursor: default;
}

.tablesort th.no-sort::after {
  content: none;
}