/* Add here all your CSS customizations */

.font-sans {
  font-family: "Open Sans", "Arial", sans-serif;
}

.font-abril {
  font-family: 'Abril Fatface', cursive;
}

.font-chakra {
  font-family: 'Chakra Petch', sans-serif;
}

.font-courgette {
  font-family: 'Courgette', cursive;
}

.font-garamond {
  font-family: 'EB Garamond', serif;
}

.font-ibm {
  font-family: 'IBM Plex Sans', sans-serif;
}

.font-nunito {
  font-family: 'Nunito Sans', sans-serif;
}

.font-pacifico {
  font-family: 'Pacifico', cursive;
}

.font-parisienne {
  font-family: 'Parisienne', cursive;
}

.font-philosopher {
  font-family: 'Philosopher', sans-serif;
}

.font-raleway {
  font-family: 'Raleway', sans-serif;
}

.font-tektur {
  font-family: 'Tektur', cursive;
}

.font-signika {
  font-family: 'Signika Negative', sans-serif;
}

.font-orbitron {
  font-family: 'Orbitron', sans-serif;
}

#background_data {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  /* change if the mask should have another color then white */
  z-index: 9996;
  /* makes sure it stays on top */
  opacity: 0.9;
  display: none;
}

.box-loader {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  z-index: 9997;
}

.loader {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 10rem;
  border: 3px solid white;
  background: linear-gradient(#eb31b0, #e4c352, #7df8d6);
  box-shadow: 0px 0px 100px -50px black;
  animation: animate 1s linear infinite;
}

.icon-loader {
  position: fixed;
  background-image: url('../../images/logo_pipkra_load.png');
  background-repeat: no-repeat;
  left: 50%;
  top: 50%;
  margin-left: -75px;
  margin-top: -75px;
  width: 80%;
  height: 80%;
  z-index: 9998;
}

.loader::before {
  position: absolute;
  content: "";
  background: #fff;

  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border-radius: 10rem;
  border: 3px solid white;
  box-shadow: inset 0px 0px 100px -70px #111;
}

@keyframes animate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* 
#load_data {
  height: 100%; width: 100%; position: absolute;
}
.load-center {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100%; width: 100%; position: absolute; z-index: 1000000;
  background-color: rgba(227, 210, 148, 0.5);
}
.load-center .ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  animation: ring 2s linear infinite;
}
@keyframes ring {
  0% {
    transform: rotate(0deg);
    box-shadow: 1px 5px 2px #e65c00;
  }
  50% {
    transform: rotate(180deg);
    box-shadow: 1px 5px 2px #18b201;
  }
  100% {
    transform: rotate(0360deg);
    box-shadow: 1px 5px 2px #0456c8;
  }
}
.load-center .ring::before {
  position: absolute;
  left: 0;
  content: "";
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}
.load-center span {
  color: #737373;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 200px;
  animation: text 3s ease-in-out infinite;
}
@keyframes text {
  50% {
    color: black;
  }
}
 */
/*Custom Dropify*/
/* .dropify-wrapper .dropify-message span.file-icon {
  font-size: 1rem;
  color: #CCC;
} */
.dropify-wrapper .dropify-message span.file-icon {
  font-size: 1rem;
  color: #CCC;
}

/* .dropify-font-file {
  font-size: 2rem;
  color: #CCC;
} */

.error text {
  /* display: block; margin-top: 10px; */
  height: 0;
}

.error text:after {
  display: block;
  margin-top: 10px;
  /* height: 0; */
}

.my-custom-class .mfp-content img {
  height: 500px;
  max-height: 95vh;
  /* width: 800px; */
  max-width: 95vw;
}

html body .tabs .nav-tabs li.active .nav-link,
html.dark body .tabs .nav-tabs li.active .nav-link {
  border-top-color: #BD2D31;
  color: #BD2D31;
  font-weight: 700;
}

.btn-round-custom {
  border-radius: 50px;
}
.fs-11 {
  font-size: 1.1rem;
}

.container-table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* Untuk smooth scrolling di iOS */
  margin: 20px 0;
}