@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700&display=swap');


:root {
  --warna-1: #243775;
  --warna-2: rgb(32, 66, 110);
  --warna-bg: #e2e2e2;
  --warna-font: #1f1f1f;
}

body {
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  background-color: var(--warna-bg);
  color: var(--warna-font);
}

::-webkit-scrollbar {
  width: 5px;
}

::selection {
  background-color: var(--warna-2);
  color: var(--warna-bg);
}

.content {
  padding: 50px 10px;
}

.col-line {
  position: relative;
}

.col-line::before {
  content: '';
  width: 1px;
  height: 100%;
  background-color: #a0a0a0;
  position: absolute;
  top: 0;
  bottom: 0;
  /* transform: translateX(50%); */
  right: 0;
}

@media (max-width: 767.98px) {
  .col-line::before {
    display: none;
  }
}

.img-logo {
  width: 150px;
  height: auto;
  display: inline-block;
  margin-top: 30px;
}

.form-scaner {
  max-width: 400px;
  display: inline-block;
  margin-top: 30px;
}

.jam-digital {
  margin-top: 30px;
  margin-bottom: 50px;
}

.jam-digital h2 {
  font-weight: bold;
  margin-bottom: -5px;
  color: var(--warna-1);
}

table {
  font-size: 13px;
}

table thead {
  position: sticky;
  top: -1px;
  background-color: var(--warna-bg);
}

.box-table {
  max-height: 450px;
  overflow-y: auto;
}

.page-login {
  width: 270px;
}

.page-login .img-logo {
  width: 100px;
  margin-top: 10px;
}

.page-content {
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
  margin-top: auto;
}


#LoadingPage {
  margin: 0;
  position: fixed;
  /* transform: translate(-50%, -50%); */
  z-index: 99999;
  background-color: #63616185;
  width: 100vw;
  height: 100vh;
  text-align: center;
  padding-top: 40vh;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
}