/*!
 * Main Style v1.2.1
 * Copyright 2020 Rio Agus Permana (rap.sherlock@gmail.com)
 */
html,
body,
#app.app-container {
  display: flex;
  height: 100vh;
  overflow: hidden;
  font-family: system-ui, sans-serif;
}
/*
* Start GLOBAL COMPONENT STYLE 
*/
/* start global class */
select.custom-select option[disabled] {
  color: gray;
  background: #e8e8e8;
}
.bg-gradient-success {
  background-color: #28a745 !important;
  background-color: linear-gradient(45deg, #28a745 0%, #058a24 100%) !important;
  border-color: #28a745 !important;
  background-image: url(../images/completed.png);
  background-blend-mode: color-burn;
  background-size: contain;
  background-repeat: no-repeat;
}
.bg-gradient-primary {
  background-color: #1f1498 !important;
  background-color: linear-gradient(45deg, #321fdb 0%, #1f1498 100%) !important;
  border-color: #1f1498 !important;
  background-image: url(../images/progress.png);
  background-blend-mode: color-burn;
  background-size: contain;
  background-repeat: no-repeat;
}
.bg-gradient-warning {
  background-color: #f6960b !important;
  background-color: linear-gradient(45deg, #f9b115 0%, #f6960b 100%) !important;
  border-color: #f6960b !important;
  background-image: url(../images/sales_order.png);
  background-blend-mode: color-burn;
  background-size: contain;
  background-repeat: no-repeat;
}
.bg-gradient-danger {
  background-color: #d93737 !important;
  background-color: linear-gradient(45deg, #e55353 0%, #d93737 100%) !important;
  border-color: #d93737 !important;
  background-image: url(../images/purchase_order.png);
  background-blend-mode: color-burn;
  background-size: contain;
  background-repeat: no-repeat;
}
.icon-input {
  position: absolute;
  cursor: pointer;
  z-index: 999;
}
.icon-input.rotating {
  -webkit-animation: rotating 3s infinite;
  animation: rotating 3s infinite;
}
.hide-in-small {
  display: none;
}
@media (max-width: 768px) {
  .hide-in-small {
    display: block;
  }
}
/* end global class */
/* start global class vue */
[v-cloak] {
  display: none !important;
}
/* --- start vue animation --- */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s;
}
.fade-enter,
.fade-leave-to {
  opacity: 0;
}
.slide-fade-enter-active {
  transition: all 0.3s ease;
}
.slide-fade-leave-active {
  transition: all 0.3s ease;
}
.slide-fade-enter,
.slide-fade-leave-to {
  transform: translateX(10px);
  opacity: 0;
}
.slide-fade-leavenone-enter-active {
  transition: all 0.3s ease;
}
.slide-fade-leavenone-leave-active {
  transition: all 0s ease;
}
.slide-fade-leavenone-enter,
.slide-fade-leavenone-leave-to {
  transform: translateX(10px);
  opacity: 0;
}
.slide-down-enter-active {
  transition-duration: 0.3s;
  transition-timing-function: ease-in;
}
.slide-down-leave-active {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
.slide-down-enter-to,
.slide-down-leave {
  max-height: 100px;
  overflow: hidden;
}
.slide-down-enter,
.slide-down-leave-to {
  overflow: hidden;
  max-height: 0;
}
.bounce-enter-active {
  -webkit-animation: bounce-in 0.5s;
  animation: bounce-in 0.5s;
}
.bounce-leave-active {
  animation: bounce-in 0.5s reverse;
}
@-webkit-keyframes bounce-in {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}
@keyframes bounce-in {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}
/* --- end vue animation --- */
/* --- start input icon ---*/
.icon-input {
  position: absolute;
  bottom: 4px;
  right: 28px;
  height: 28px;
  width: 16px;
  cursor: pointer;
  z-index: 999;
}
.icon-input.rotating,
.icon-rotate {
  -webkit-animation: rotating 3s infinite;
  animation: rotating 3s infinite;
}
@-webkit-keyframes rotating {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
/* --- end input icon ---*/
/* end global class vue */
/* start arrow dropdown */
.box-arrow {
  display: inline-flex;
  width: 16px;
  height: 100%;
  position: relative;
  float: right;
  padding-top: 2px;
}
.box-arrow .arrow {
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
}
.box-arrow .arrow span {
  top: 9px;
  position: absolute;
  width: 10px;
  height: 1px;
  background-color: #333;
  display: inline-block;
  transition: all 0.2s ease;
}
.box-arrow .arrow span:first-of-type {
  left: 0;
  transform: rotate(45deg);
}
.box-arrow .arrow span:last-of-type {
  right: 0;
  transform: rotate(-45deg);
}
.box-arrow .arrow.open span:first-of-type {
  transform: rotate(0deg);
}
.box-arrow .arrow.open span:last-of-type {
  transform: rotate(0deg);
}
/* end arrow dropdown */
/* start loader */
.content {
  width: 100%;
  height: 100vh;
  background-color: rgba(29, 42, 62, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9999;
}
.content .loading {
  width: 250px;
  height: 50px;
  position: relative;
  text-align: center;
}
@media (max-width: 768px) {
  .content .loading {
    width: 100px;
  }
}
.content .loading p {
  top: 0;
  padding: 0;
  margin: 0;
  color: #a6dcee;
  font-family: "Oxygen", sans-serif;
  -webkit-animation: text 3.5s ease both infinite;
  animation: text 3.5s ease both infinite;
  font-size: 16px;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .content .loading p {
    font-size: 12px;
  }
}
@-webkit-keyframes text {
  0% {
    letter-spacing: 1px;
    transform: translateX(0px);
  }
  40% {
    letter-spacing: 2px;
    transform: translateX(26px);
  }
  80% {
    letter-spacing: 1px;
    transform: translateX(32px);
  }
  90% {
    letter-spacing: 2px;
    transform: translateX(0px);
  }
  100% {
    letter-spacing: 1px;
    transform: translateX(0px);
  }
}
@keyframes text {
  0% {
    letter-spacing: 1px;
    transform: translateX(0px);
  }
  40% {
    letter-spacing: 2px;
    transform: translateX(26px);
  }
  80% {
    letter-spacing: 1px;
    transform: translateX(32px);
  }
  90% {
    letter-spacing: 2px;
    transform: translateX(0px);
  }
  100% {
    letter-spacing: 1px;
    transform: translateX(0px);
  }
}
.content .loading span {
  background-color: #5389a6;
  border-radius: 50px;
  display: block;
  height: 16px;
  width: 16px;
  bottom: 0;
  position: absolute;
  transform: translateX(64px);
  -webkit-animation: loading 3.5s ease both infinite;
  animation: loading 3.5s ease both infinite;
}
.content .loading span:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #a6dcee;
  border-radius: inherit;
  -webkit-animation: loading2 3.5s ease both infinite;
  animation: loading2 3.5s ease both infinite;
}
@-webkit-keyframes loading {
  0% {
    width: 16px;
    transform: translateX(0px);
  }
  40% {
    width: 100%;
    transform: translateX(0px);
  }
  80% {
    width: 16px;
    transform: translateX(64px);
  }
  90% {
    width: 100%;
    transform: translateX(0px);
  }
  100% {
    width: 16px;
    transform: translateX(0px);
  }
}
@keyframes loading {
  0% {
    width: 16px;
    transform: translateX(0px);
  }
  40% {
    width: 100%;
    transform: translateX(0px);
  }
  80% {
    width: 16px;
    transform: translateX(64px);
  }
  90% {
    width: 100%;
    transform: translateX(0px);
  }
  100% {
    width: 16px;
    transform: translateX(0px);
  }
}
@-webkit-keyframes loading2 {
  0% {
    transform: translateX(0px);
    width: 16px;
  }
  40% {
    transform: translateX(0%);
    width: 80%;
  }
  80% {
    width: 100%;
    transform: translateX(0px);
  }
  90% {
    width: 80%;
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0px);
    width: 16px;
  }
}
@keyframes loading2 {
  0% {
    transform: translateX(0px);
    width: 16px;
  }
  40% {
    transform: translateX(0%);
    width: 80%;
  }
  80% {
    width: 100%;
    transform: translateX(0px);
  }
  90% {
    width: 80%;
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0px);
    width: 16px;
  }
}
.loader {
  --path: #ffffff;
  --dot: #ac3535;
  --duration: 3s;
  width: 20px;
  height: 20px;
  position: relative;
}
.loader:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  display: block;
  background: var(--dot);
  top: 32px;
  left: 7px;
  -webkit-transform: translate(-12px, -26px);
  transform: translate(-12px, -26px);
  -webkit-animation: dotRect var(--duration)
    cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86)
    infinite;
}
.loader svg {
  display: block;
  width: 100%;
  height: 100%;
}
.loader svg rect,
.loader svg polygon,
.loader svg circle {
  fill: none;
  /* stroke: var(--path); */
  stroke-width: 10px;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.loader svg polygon {
  stroke-dasharray: 145 76 145 76;
  stroke-dashoffset: 0;
  -webkit-animation: pathTriangle var(--duration)
    cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86)
    infinite;
}
.loader svg rect {
  stroke-dasharray: 192 64 192 64;
  stroke-dashoffset: 0;
  -webkit-animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}
.loader svg circle {
  stroke-dasharray: 150 50 150 50;
  stroke-dashoffset: 75;
  -webkit-animation: pathCircle var(--duration)
    cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86)
    infinite;
}
.loader.triangle {
  width: 48px;
}
.loader.triangle:before {
  left: 21px;
  -webkit-transform: translate(-10px, -18px);
  transform: translate(-10px, -18px);
  -webkit-animation: dotTriangle var(--duration)
    cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86)
    infinite;
}
@-webkit-keyframes pathTriangle {
  33% {
    stroke-dashoffset: 74;
  }
  66% {
    stroke-dashoffset: 147;
  }
  100% {
    stroke-dashoffset: 221;
  }
}
@keyframes pathTriangle {
  33% {
    stroke-dashoffset: 74;
  }
  66% {
    stroke-dashoffset: 147;
  }
  100% {
    stroke-dashoffset: 221;
  }
}
@-webkit-keyframes dotTriangle {
  33% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  66% {
    -webkit-transform: translate(10px, -18px);
    transform: translate(10px, -18px);
  }
  100% {
    -webkit-transform: translate(-10px, -18px);
    transform: translate(-10px, -18px);
  }
}
@keyframes dotTriangle {
  33% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  66% {
    -webkit-transform: translate(10px, -18px);
    transform: translate(10px, -18px);
  }
  100% {
    -webkit-transform: translate(-10px, -18px);
    transform: translate(-10px, -18px);
  }
}
@-webkit-keyframes pathRect {
  25% {
    stroke-dashoffset: 64;
  }
  50% {
    stroke-dashoffset: 128;
  }
  75% {
    stroke-dashoffset: 192;
  }
  100% {
    stroke-dashoffset: 256;
  }
}
@keyframes pathRect {
  25% {
    stroke-dashoffset: 64;
  }
  50% {
    stroke-dashoffset: 128;
  }
  75% {
    stroke-dashoffset: 192;
  }
  100% {
    stroke-dashoffset: 256;
  }
}
@-webkit-keyframes dotRect {
  25% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(18px, -18px);
    transform: translate(18px, -18px);
  }
  75% {
    -webkit-transform: translate(0, -36px);
    transform: translate(0, -36px);
  }
  100% {
    -webkit-transform: translate(-18px, -18px);
    transform: translate(-18px, -18px);
  }
}
@keyframes dotRect {
  25% {
    -webkit-transform: translate(0, -14px);
    transform: translate(0, -14px);
  }
  50% {
    -webkit-transform: translate(12px, -26px);
    transform: translate(12px, -26px);
  }
  75% {
    -webkit-transform: translate(0, -20px);
    transform: translate(0, -36px);
  }
  100% {
    -webkit-transform: translate(-12px, -26px);
    transform: translate(-12px, -26px);
  }
}
@-webkit-keyframes pathCircle {
  25% {
    stroke-dashoffset: 125;
  }
  50% {
    stroke-dashoffset: 175;
  }
  75% {
    stroke-dashoffset: 225;
  }
  100% {
    stroke-dashoffset: 275;
  }
}
@keyframes pathCircle {
  25% {
    stroke-dashoffset: 125;
  }
  50% {
    stroke-dashoffset: 175;
  }
  75% {
    stroke-dashoffset: 225;
  }
  100% {
    stroke-dashoffset: 275;
  }
}
.loader {
  display: inline-block;
  margin: 0 16px;
}
.loader-circle {
  padding-top: 18px;
  width: 40px;
}
.loader-circle .circle {
  position: absolute;
  width: 38px;
  height: 38px;
  opacity: 0;
  transform: rotate(225deg);
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: orbit;
  animation-name: orbit;
  -webkit-animation-duration: 5.5s;
  animation-duration: 5.5s;
}
.loader-circle .circle:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: #333;
}
.loader-circle .circle:nth-child(2) {
  -webkit-animation-delay: 0.24s;
  animation-delay: 0.24s;
}
.loader-circle .circle:nth-child(3) {
  -webkit-animation-delay: 0.48s;
  animation-delay: 0.48s;
}
.loader-circle .circle:nth-child(4) {
  -webkit-animation-delay: 0.72s;
  animation-delay: 0.72s;
}
.loader-circle .circle:nth-child(5) {
  -webkit-animation-delay: 0.96s;
  animation-delay: 0.96s;
}
@-webkit-keyframes orbit {
  0% {
    transform: rotate(225deg);
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  7% {
    transform: rotate(345deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  30% {
    transform: rotate(455deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(690deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  70% {
    transform: rotate(815deg);
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  75% {
    transform: rotate(945deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  76% {
    transform: rotate(945deg);
    opacity: 0;
  }
  to {
    transform: rotate(945deg);
    opacity: 0;
  }
}
@keyframes orbit {
  0% {
    transform: rotate(225deg);
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  7% {
    transform: rotate(345deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  30% {
    transform: rotate(455deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(690deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  70% {
    transform: rotate(815deg);
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  75% {
    transform: rotate(945deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  76% {
    transform: rotate(945deg);
    opacity: 0;
  }
  to {
    transform: rotate(945deg);
    opacity: 0;
  }
}
/* end loader */
/*
* End GLOBAL COMPONENT STYLE 
*/

/*
* Start Auth 
*/
/* start wave animation */
.waves-container {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 1;
}
.waves-container .waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px;
  /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
}
.waves-container .waves .parallax use {
  -webkit-animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5)
    infinite;
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.waves-container .waves .parallax use:nth-child(1) {
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
  -webkit-animation-duration: 7s;
  animation-duration: 7s;
}
.waves-container .waves .parallax use:nth-child(2) {
  -webkit-animation-delay: -3s;
  animation-delay: -3s;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
}
.waves-container .waves .parallax use:nth-child(3) {
  -webkit-animation-delay: -4s;
  animation-delay: -4s;
  -webkit-animation-duration: 13s;
  animation-duration: 13s;
}
.waves-container .waves .parallax use:nth-child(4) {
  -webkit-animation-delay: -5s;
  animation-delay: -5s;
  -webkit-animation-duration: 16s;
  animation-duration: 16s;
}
.waves-container .waves .parallax use:nth-child(5) {
  -webkit-animation-delay: -5s;
  animation-delay: -5s;
  -webkit-animation-duration: 19s;
  animation-duration: 19s;
}
@media (max-width: 992px) {
  .waves-container .waves {
    height: 80px;
    min-height: 80px;
  }
}
@-webkit-keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
.waves-container .copyright-wave {
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 0;
  padding-left: 20px;
  font-size: 16px;
}
/* end wave animation */
/* start auth */
.div-auth .container-fluid.auth,
.div-auth .auth.container-sm,
.div-auth .auth.container-md,
.div-auth .auth.container-lg,
.div-auth .auth.container-xl {
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
  font-family: sans-serif;
  color: #333;
}
.div-auth .auth-poster {
  background: #01adff;
  background: linear-gradient(0deg, #01adff, #416cff);
}
.div-auth .auth-form {
  height: 100vh;
  z-index: 1;
  overflow: auto;
  padding-bottom: 40px;
}
.div-auth .auth-title {
  text-align: center;
  padding-top: 8vh;
  font-size: 24px;
  color: #6f6f6f;
}
.div-auth .auth-title .title img {
  height: 100px;
}
.div-auth .auth-wrapper {
  padding: 6px 20px;
  border: 0.5px solid gray;
  border-radius: 0.25rem;
  background: rgba(212, 235, 255, 0.5);
  position: relative;
}
.div-auth .auth-wrapper .auth-input,
.div-auth .auth-wrapper label {
  display: block;
  margin: 10px;
  padding: 5px;
  border: none;
  font-size: 22px;
}
.div-auth .auth-wrapper .auth-input:focus,
.div-auth .auth-wrapper label:focus {
  outline: 0;
}
.div-auth .auth-wrapper .input-icon {
  display: block;
  position: absolute;
  top: 22px;
  right: 14px;
}
.div-auth .auth-wrapper .auth-input {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
  border: none;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  transition: padding-top 0.2s ease, margin-top 0.2s ease;
  overflow-x: hidden;
}
.div-auth .auth-wrapper .auth-input + .placeholder-auth-input {
  display: block;
  position: relative;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  width: 10%;
  border-top: 1px solid red;
  transition: width 0.4s ease;
  height: 0px;
}
.div-auth .auth-wrapper .auth-input + .placeholder-auth-input > span {
  font-weight: 300;
  margin: 0;
  position: absolute;
  color: black;
  font-size: 24px;
  top: -40px;
  left: 0px;
  z-index: -1;
  transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}
.div-auth .auth-wrapper .auth-input:-webkit-autofill,
.div-auth .auth-wrapper .auth-input:-webkit-autofill:hover,
.div-auth .auth-wrapper .auth-input:-webkit-autofill:focus {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  color: white;
  padding-top: 35px;
  -webkit-animation: autofill 0s forwards;
  animation: autofill 0s forwards;
}
.div-auth .auth-wrapper .auth-input:-webkit-autofill::first-line,
.div-auth .auth-wrapper .auth-input:-webkit-autofill:hover::first-line,
.div-auth .auth-wrapper .auth-input:-webkit-autofill:focus::first-line {
  font-size: 24px;
}
.div-auth .auth-wrapper .auth-input:-webkit-autofill + .placeholder-auth-input,
.div-auth
  .auth-wrapper
  .auth-input:-webkit-autofill:hover
  + .placeholder-auth-input,
.div-auth
  .auth-wrapper
  .auth-input:-webkit-autofill:focus
  + .placeholder-auth-input {
  border-color: green;
}
.div-auth
  .auth-wrapper
  .auth-input:-webkit-autofill
  + .placeholder-auth-input
  > span,
.div-auth
  .auth-wrapper
  .auth-input:-webkit-autofill:hover
  + .placeholder-auth-input
  > span,
.div-auth
  .auth-wrapper
  .auth-input:-webkit-autofill:focus
  + .placeholder-auth-input
  > span {
  top: -80px;
  font-size: 18px;
  color: #545454;
  z-index: 1;
}
.div-auth .auth-wrapper .auth-input:focus {
  padding-top: 35px;
}
.div-auth .auth-wrapper .auth-input:focus + .placeholder-auth-input {
  width: 100%;
}
.div-auth .auth-wrapper .auth-input:focus + .placeholder-auth-input > span {
  top: -80px;
  font-size: 18px;
  color: #545454;
  z-index: 1;
}
.div-auth .auth-wrapper .auth-input:-moz-read-only {
  padding-top: 35px;
}
.div-auth .auth-wrapper .auth-input:valid,
.div-auth .auth-wrapper .auth-input:read-only {
  padding-top: 35px;
}
.div-auth .auth-wrapper .auth-input:-moz-read-only + .placeholder-auth-input {
  border-color: green;
}
.div-auth .auth-wrapper .auth-input:valid + .placeholder-auth-input,
.div-auth .auth-wrapper .auth-input:read-only + .placeholder-auth-input {
  border-color: green;
}
.div-auth
  .auth-wrapper
  .auth-input:-moz-read-only
  + .placeholder-auth-input
  > span {
  top: -80px;
  font-size: 18px;
  color: #545454;
  z-index: 1;
}
.div-auth .auth-wrapper .auth-input:valid + .placeholder-auth-input > span,
.div-auth .auth-wrapper .auth-input:read-only + .placeholder-auth-input > span {
  top: -80px;
  font-size: 18px;
  color: #545454;
  z-index: 1;
}
.div-auth .auth-wrapper .auth-input:invalid {
  box-shadow: none;
}
.div-auth .auth-wrapper .auth-input:invalid.has-value {
  padding-top: 35px;
}
.div-auth
  .auth-wrapper
  .auth-input:invalid.has-value
  + .placeholder-auth-input {
  border-color: red;
}
.div-auth
  .auth-wrapper
  .auth-input:invalid.has-value
  + .placeholder-auth-input
  > span {
  top: -80px;
  font-size: 18px;
  color: #545454;
  z-index: 1;
}
.div-auth .login-alternative {
  text-align: center;
  color: #6f6f6f;
}
.div-auth .login-btn,
.div-auth .login-google-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 1px 3px 0px black;
}
.div-auth .login-btn:focus,
.div-auth .login-google-btn:focus {
  outline: none;
  box-shadow: 0px 0px 0px 0px black;
}
/* end auth */
/*
* End Auth
*/

/*
* Start Navbar
*/
/* start desktop */
.app-container nav.nav-desktop {
  display: flex;
  align-items: center;
  height: 55px;
  background: white;
  /* box-shadow: 0px 1px 4px 0px grey; */
  border-bottom: 1px solid #e5e5e5;
  padding: 8px 14px;
}
@media (max-width: 768px) {
  .app-container nav.nav-desktop {
    display: none;
  }
}
.app-container nav.nav-desktop .nav-menu {
  position: relative;
}
.app-container nav.nav-desktop .nav-menu .nav-dropdown-toggle {
  color: #848484;
  padding: 2px 10px;
  border: 0px;
  border-radius: 18px;
  flex-wrap: nowrap;
  display: flex;
  align-items: center;
  background: inherit;
  outline: none;
}
.app-container nav.nav-desktop .nav-menu .nav-dropdown-toggle .notif-bullet {
  width: 10px;
  background: rgb(255 0 0 / 0.6);
  height: 10px;
  position: absolute;
  right: 12px;
  top: 4px;
  border-radius: 5px;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: dim-bullet;
  animation-name: dim-bullet;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}
@-webkit-keyframes dim-bullet {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes dim-bullet {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.app-container nav.nav-desktop .nav-menu .nav-dropdown-toggle:hover,
.app-container nav.nav-desktop .nav-menu .nav-dropdown-toggle.active {
  background: #eaeaea;
  text-decoration: none;
  outline: none;
}
.app-container nav.nav-desktop .nav-menu .dropdown-container {
  position: absolute;
  top: 0;
  text-align: left;
  background-color: #fff;
  padding: 4px 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  opacity: 0;
  transform: translateY(-120%);
  transition: opacity 0.3s, transform 0.1s;
  transition-delay: 0.2s;
  z-index: 2;
}
.app-container nav.nav-desktop .nav-menu .dropdown-container.open {
  opacity: 1;
  transform: translateY(30px);
  transition: opacity 0.1s, transform 0.3s;
  box-shadow: 1px 3px 8px -1px #07003c;
}
.app-container
  nav.nav-desktop
  .nav-menu
  .dropdown-container
  .dropdown-item:focus,
.app-container
  nav.nav-desktop
  .nav-menu
  .dropdown-container
  .dropdown-item:active {
  color: inherit;
  background-color: #eaeaea;
}
.app-container nav.nav-desktop .nav-menu .dropdown-container .notif {
  width: 18rem;
  font-size: 14px;
  border-right: 0;
  border-left: 0;
  border-bottom: 0;
}
.app-container
  nav.nav-desktop
  .nav-menu
  .dropdown-container
  .notif
  .card-header {
  padding: 4px 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.app-container
  nav.nav-desktop
  .nav-menu
  .dropdown-container
  .notif
  .list-group
  a {
  text-decoration: none;
  color: #888888;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: monospace, sans-serif;
  transition: all 0.3s;
}
.app-container
  nav.nav-desktop
  .nav-menu
  .dropdown-container
  .notif
  .list-group
  a:hover {
  background: #4d4d4d;
  color: white;
}
.app-container
  nav.nav-desktop
  .nav-menu
  .dropdown-container
  .notif
  .list-group
  a
  .item-content {
  display: flex;
  flex-direction: column;
  padding-left: 12px;
}
.btn-menu {
  width: 40px;
  height: 40px;
  border: none;
  background: inherit;
  padding: 0 12px;
  display: block;
}
.btn-menu span {
  height: 1px;
  background: #000;
  margin: 3px 0;
  display: block;
  transition: all 0.5s cubic-bezier(0.81, -0.33, 0.345, 1.375);
}
.btn-menu:focus {
  outline: 0;
}
.btn-menu span:first-of-type,
.btn-menu span:last-of-type,
.btn-menu span:nth-of-type(2) {
  transform: none;
  opacity: 1;
  margin: 5px auto;
}
.btn-menu.open span {
  margin: 0 auto;
}
.btn-menu.open span:first-of-type {
  transform: rotate(45deg) translate(1px, 1px);
}
.btn-menu.open span:nth-of-type(2) {
  opacity: 0;
}
.btn-menu.open span:last-of-type {
  transform: rotate(-45deg) translate(0.25px, 0px);
}
.box-arrow {
  display: inline-flex;
  width: 16px;
  height: 100%;
  position: relative;
  float: right;
  padding-top: 2px;
}
.box-arrow .arrow {
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
}
.box-arrow .arrow span {
  top: 9px;
  position: absolute;
  width: 10px;
  height: 1px;
  background-color: #333;
  display: inline-block;
  transition: all 0.2s ease;
}
.box-arrow .arrow span:first-of-type {
  left: 0;
  transform: rotate(45deg);
}
.box-arrow .arrow span:last-of-type {
  right: 0;
  transform: rotate(-45deg);
}
.box-arrow .arrow.open span:first-of-type,
.box-arrow .arrow.open span:last-of-type {
  transform: rotate(0deg);
}
/* end desktop */
/* start mobile */
.app-container nav.nav-mobile {
  display: none;
  height: 55px;
  position: fixed;
  bottom: 0;
  width: 100vw;
  align-items: center;
  justify-content: center;
  z-index: 99;
  background: white;
}
@media (max-width: 768px) {
  .app-container nav.nav-mobile {
    display: flex;
  }
}
.app-container nav.nav-mobile .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: darkgrey;
}
.app-container nav.nav-mobile .mobile-menu:hover {
  text-decoration: none;
}
.app-container nav.nav-mobile .mobile-menu .notif-bullet {
  width: 10px;
  background: rgb(255 0 0 / 0.6);
  height: 10px;
  position: absolute;
  right: 2px;
  top: 2px;
  border-radius: 5px;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: dim-bullet;
  animation-name: dim-bullet;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}
.app-container .message {
  flex: none;
  position: fixed;
  width: 256px;
  transition: 0.3s;
  right: -256px;
  height: 100vh;
  background: white;
  display: flex;
  flex-direction: column;
  z-index: 100;
}
.app-container .message.open-message {
  right: 0;
}
.app-container .back-layer-message {
  position: fixed;
  right: 0;
  height: 100vh;
  width: 100%;
  background-color: rgb(0 0 0 / 28%);
  display: none;
  z-index: 100;
}
@media (max-width: 768px) {
  .app-container .message {
    right: -100%;
  }
  .app-container .back-layer-message.open-message {
    display: block;
  }
}
.app-container .message .notif {
  font-size: 14px;
  border-right: 0;
  border-left: 0;
  border-bottom: 0;
}
.app-container .message .notif .card-header {
  padding: 4px 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.app-container .message .notif .list-group a {
  text-decoration: none;
  color: #888888;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: monospace, sans-serif;
  transition: all 0.3s;
}
.app-container .message .notif .list-group a:hover {
  background: #4d4d4d;
  color: white;
}
.app-container .message .notif .list-group a .item-content {
  display: flex;
  flex-direction: column;
  padding-left: 12px;
}
/* Belum Lengkap */
/* end mobile */
/*
* End Navbar
*/

/* 
* Start Loader
*/
.line-loader {
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #0772ff, #003882);
  background-color: #ccc;
  background-size: 20%;
  background-repeat: repeat-y;
  background-position: -25% 0;
  animation: scroll-line-loader 1.2s ease-in-out infinite;
  margin-top: -1px;
}

@keyframes scroll-line-loader {
  50% {
    background-size: 80%;
  }
  100% {
    background-position: 125% 0;
  }
}
/* 
* End Loader
*/

/* 
* Start Main Container
*/
.btn-completed {
  color: lightgray;
  border: none;
  border-radius: 4px;
  background: #089128;
  /*box-shadow: 4px 4px 8px #078725, -4px -4px 8px #099b2b;*/
  border: 1px solid #006f00;
}
.btn-completed:hover {
  color: white;
  background: linear-gradient(145deg, #099b2b, #078324);
}
.btn-in-progress {
  color: lightgray;
  border: none;
  border-radius: 4px;
  background: #2416a9;
  /*box-shadow: 4px 4px 8px #21149d, -4px -4px 8px #2718b5;*/
  border: 1px solid #00006c;
}
.btn-in-progress:hover {
  color: white;
  background: linear-gradient(145deg, #2718b5, #201498);
}
.btn-so-active {
  color: lightgray;
  border: none;
  border-radius: 4px;
  background: #f69a0c;
  /*box-shadow: 4px 4px 8px #e58f0b, -4px -4px 8px #ffa50d;*/
  border: 1px solid #c07407;
}
.btn-so-active:hover {
  color: white;
  background: linear-gradient(145deg, #ffa50d, #dd8b0b);
}
.btn-po-active {
  color: lightgray;
  border: none;
  border-radius: 4px;
  background: #db3c3c;
  /*box-shadow: 4px 4px 8px #cc3838, -4px -4px 8px #ea4040;*/
  border: 1px solid #b52e2e;
}
.btn-po-active:hover {
  color: white;
  background: linear-gradient(145deg, #ea4040, #c53636);
}
.app-container .item-select {
  position: absolute;
  height: 100vh;
  width: 100vw;
  z-index: 100;
  display: none;
  bottom: -100%;
  transition: 0.3s;
}
.app-container .item-select .back-layer {
  position: fixed;
  right: 0;
  height: 100vh;
  width: 100%;
  background-color: rgb(0 0 0 / 28%);
  z-index: -1;
}
.app-container .item-select .select {
  position: absolute;
  min-height: 50%;
  background: white;
  width: 100%;
  bottom: 0;
}
.app-container .item-select.open {
  display: block;
}
.app-container .item-select.open {
  bottom: 0;
}
.app-container .sidebar {
  flex: none;
  position: relative;
  width: 256px;
  transition: 0.3s;
  left: -256px;
  height: 100vh;
  background: #3c4b64;
  display: flex;
  flex-direction: column;
  z-index: 100;
}
.app-container .sidebar.mini {
  width: 56px;
}
.app-container .sidebar.open-sidebar {
  left: 0;
}
.app-container .sidebar .back-layer {
  position: fixed;
  right: 0;
  height: 100vh;
  width: 100%;
  background-color: rgb(0 0 0 / 28%);
  display: none;
  z-index: -1;
}
@media (max-width: 768px) {
  .app-container .sidebar {
    position: absolute;
    left: -100%;
  }
  .app-container .sidebar.open-sidebar .back-layer {
    display: block;
  }
}
.app-container .sidebar .nav-brand {
  color: white;
  height: 55px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0 / 0.2);
}
.app-container .sidebar .nav-brand img {
  width: 24px;
  transition: width 0.2s;
}
.app-container .sidebar .nav-brand + .nav-brand-separator {
  width: 0.5px;
  background: gray;
  height: 30px;
  transition: height 0.3s linear;
  margin-right: 12px;
}
.app-container .sidebar .nav-brand:hover {
  text-decoration: none;
}
.app-container .sidebar .nav-brand:hover img {
  width: 28px;
}
.app-container .sidebar .nav-brand:hover + .nav-brand-separator {
  height: 0px;
}
.app-container .sidebar .sidebar-nav {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  max-height: calc(100vh - 158px);
  overflow: auto;
}
.app-container .sidebar .sidebar-nav .nav-title {
  color: #d8d8d8;
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
  font-size: 80%;
  font-weight: 700;
  text-transform: uppercase;
}
.app-container .sidebar .sidebar-nav .nav-user {
  display: none;
}
@media (max-width: 768px) {
  .app-container .sidebar .sidebar-nav .nav-user {
    display: block;
  }
}
.app-container .sidebar .nav-link {
  color: #d8d8d8;
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 0.8445rem 1rem;
  transition: all 0.2s;
}
.app-container .sidebar .nav-link.dashboard {
  border-bottom: 1px solid #35425e;
}
.app-container .sidebar .nav-link:hover {
  background: #1a1c46;
}
.app-container .sidebar .nav-link.active {
  background: rgb(26 28 70 / 0.2);
}
.app-container .sidebar .sidebar-nav .nav-footer {
  display: flex;
  position: fixed;
  bottom: 0;
  background: rgb(0 0 0 / 0.2);
  height: 55px;
  width: 256px;
  align-items: center;
  justify-content: center;
  color: white;
  flex-direction: column;
  font-size: 12px;
}
.app-container .sidebar .sidebar-nav .nav-link {
  color: #d8d8d8;
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 0.8445rem 1rem;
  transition: all 0.2s;
}
.app-container .sidebar .sidebar-nav .nav-link:hover {
  background: #1a1c46;
}
.app-container .sidebar .sidebar-nav .nav-link.active {
  background: rgb(26 28 70 / 0.2);
}
.app-container .content-container {
  height: 100vh;
  width: 100vw;
  flex-grow: 1;
  transition: 0.3s;
  margin-left: -256px;
}
@media (max-width: 768px) {
  .app-container .content-container {
    margin-left: 0;
    overflow: auto;
  }
}
.app-container .content-container.open-sidebar {
  margin-left: 0;
}
.app-container .content-container .bread-bar {
  height: 48px;
  padding: 0px 26px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ffffff;
  background: white;
}
@media (max-width: 768px) {
  .app-container .content-container .bread-bar {
    display: none;
  }
}
.app-container .content-container .main {
  height: calc(100vh - 105px);
}
@media (max-width: 768px) {
  .app-container .content-container .main {
    height: calc(100vh - 55px);
  }
}
.app-container .content-container .action-bar {
  height: 48px;
  padding: 0px 14px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #c2c2c2;
}
.app-container .content-container .nav-desktop + .action-bar + .main-content {
  height: calc(100vh - 105px);
}
.app-container .content-container .action-bar + .main-content {
  height: calc(100vh - 50px);
}
.app-container .content-container .action-bar + .main-content .form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  width: 100%;
  height: 55px;
  background: #ffffff;
  color: #6c757d;
  border-top: 1px solid #c2c2c2;
}
.app-container .content-container .action-bar .btn-period {
  margin-left: auto;
}
.app-container .content-container .action-bar .container-period-selection {
  position: absolute;
  right: 14px;
  top: 98px;
  width: 350px;
  z-index: 1;
  box-shadow: 0 0 6px -1px black;
}
@media (max-width: 768px) {
  .app-container .content-container .action-bar .container-period-selection {
    width: calc(100% - 28px);
  }
}
.app-container
  .content-container
  .action-bar
  .container-period-selection
  .form-period-selection {
  background: white;
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.app-container
  .content-container
  .action-bar
  .container-period-selection
  .form-period-selection
  .period-selection-title {
  width: 100%;
  text-align: center;
  padding: 16px;
  background: steelblue;
  color: white;
  display: block;
}
.app-container
  .content-container
  .action-bar
  .container-period-selection
  .form-period-selection
  .month-selection {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}
.app-container
  .content-container
  .action-bar
  .container-period-selection
  .form-period-selection
  .month-selection
  input {
  width: 232px;
}
.app-container
  .content-container
  .action-bar
  .container-period-selection
  .form-period-selection
  .date-selection {
  padding: 20px 10px;
}
.app-container
  .content-container
  .action-bar
  .container-period-selection
  .form-period-selection
  .date-selection
  input {
  min-width: 136.5px;
  max-width: 136.5px;
}
.app-container
  .content-container
  .action-bar
  .container-period-selection
  .form-period-selection
  .date-selection
  .datepicker
  * {
  height: 29px;
}
.app-container
  .content-container
  .action-bar
  .container-period-selection
  .btn-period {
  width: 100%;
}
.app-container .content-container .main-content {
  height: calc(100vh - 55px);
  overflow: hidden auto;
  background: #ebedef;
}
.app-container .content-container .main-content .form-container {
  padding: 28px 14px;
}
.app-container .content-container .main-content .form-container .form-header {
  border: 1px solid #c2c2c2;
  padding: 14px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom: none;
  background-color: white;
  align-items: center;
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-header
  > h1 {
  font-size: 18px;
  margin: 0;
}
.app-container .content-container .main-content .form-container .form-content {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border: 1px solid #c2c2c2;
  padding: 4px;
  background: white;
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content.with-footer {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .label-deleted {
  position: absolute;
  right: 53px;
  top: 10px;
  z-index: 1;
}
@media (max-width: 768px) {
  .app-container
    .content-container
    .main-content
    .form-container
    .form-content
    .label-deleted {
    right: 15px;
    top: -20px;
  }
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .btn-files {
  width: 100%;
  height: 34px;
  border-radius: 0;
  text-align: left;
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .btn-files
  + [type="file"] {
  position: absolute;
  top: -1px;
  opacity: 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .app-container
    .content-container
    .main-content
    .form-container
    .form-content
    .btn-files
    + [type="file"] {
    width: 100% !important;
  }
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .preview-container {
  display: flex;
  width: 100%;
  padding: 2px 0px;
  flex-wrap: wrap;
  font-size: 12px;
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .preview-container
  span.file-preview-containers {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 2px 2px 0 0;
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .preview-container
  span.file-preview-containers
  svg {
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
  z-index: 1;
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .preview-container
  span.file-preview-containers
  svg.remove-file {
  color: #ff0700;
  padding: 3px;
  background: rgb(255 255 255 / 75%);
  border-radius: 4px;
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .preview-container
  span.file-preview-containers
  svg.remove-file:hover
  + img,
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .preview-container
  span.file-preview-containers
  svg.remove-file:hover
  + div.file-preview {
  -webkit-filter: brightness(0.9) blur(1px);
  filter: brightness(0.9) blur(1px);
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .preview-container
  span.file-preview-containers
  svg.download-file {
  color: #158745;
  padding: 3px;
  background: rgb(255 255 255 / 75%);
  border-radius: 4px;
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .preview-container
  span.file-preview-containers
  svg.download-file:hover
  + img,
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .preview-container
  span.file-preview-containers
  svg.download-file:hover
  + div.file-preview {
  -webkit-filter: brightness(0.9) blur(1px);
  filter: brightness(0.9) blur(1px);
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .preview-container
  span.file-preview-containers
  div.file-preview {
  height: 140px;
  border: 1px solid black;
  border-bottom: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: aliceblue;
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .preview-container
  span.file-preview-containers
  div.file-preview
  svg {
  position: unset;
  color: #416cff;
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .preview-container
  span.file-preview-containers
  img {
  border: 0.25px solid #545658;
  border-bottom: 0;
  width: 140px;
  height: 140px;
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .preview-container
  span.file-preview-containers
  span.file-preview-details {
  border: 0.25px solid #545658;
  background: whitesmoke;
  border-top: 0;
  padding: 4px 10px;
  width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .button-field-details {
  width: 100%;
  display: block;
  margin-top: -9px;
  text-align: center;
  cursor: pointer;
  font-size: 16px;
  cursor: pointer;
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .button-field-details:hover {
  background: #e9ecef;
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .detail-box
  .title {
  padding: 4px 12px;
  background: #e9ecef;
  font-weight: bold;
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .detail-box
  .details {
  display: flex;
  padding: 4px 12px;
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .detail-box
  .details
  div {
  flex-grow: 1;
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .detail-box
  .details
  div
  p {
  margin-bottom: 0;
  white-space: pre-line;
}
@media (max-width: 768px) {
  .app-container
    .content-container
    .main-content
    .form-container
    .form-content
    .detail-box
    .details {
    flex-direction: column;
  }
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .btn-attachment-single {
  position: absolute;
  width: inherit;
  height: 270px;
  z-index: 0;
  cursor: pointer;
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .btn-attachment-single
  span {
  width: 100%;
  display: block;
  height: inherit;
  background: linear-gradient(to right, #d6d6d6 2px, transparent 2px) 0 0,
    linear-gradient(to right, #d6d6d6 2px, transparent 2px) 0 100%,
    linear-gradient(to left, #d6d6d6 2px, transparent 2px) 100% 0,
    linear-gradient(to left, #d6d6d6 2px, transparent 2px) 100% 100%,
    linear-gradient(to bottom, #d6d6d6 2px, transparent 2px) 0 0,
    linear-gradient(to bottom, #d6d6d6 2px, transparent 2px) 100% 0,
    linear-gradient(to top, #d6d6d6 2px, transparent 2px) 0 100%,
    linear-gradient(to top, #d6d6d6 2px, transparent 2px) 100% 100%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #848484;
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .btn-attachment-single
  img {
  width: 100%;
  display: block;
  height: inherit;
  padding: 2px;
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-content
  .input-file-single {
  width: 100%;
  height: 270px;
  opacity: 0;
}
.app-container .content-container .main-content .form-container .form-footer {
  border: 1px solid #c2c2c2;
  padding: 14px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top: none;
  background-color: #f8fafc;
  align-items: center;
}
.app-container
  .content-container
  .main-content
  .form-container
  .form-footer
  > h1 {
  font-size: 18px;
  margin: 0;
}
.app-container
  .content-container
  .main-content
  .form-container
  .list-separator {
  display: block;
  width: 100%;
  height: 0.5px;
  background: #6f6f6f;
  margin-bottom: 2px;
}
.app-container
  .content-container
  .main-content
  .form-container
  .list-separator.end {
  margin-top: 2px;
}
@media (max-width: 768px) {
  .app-container
    .content-container
    .main-content
    .form-container
    .approval-box-container {
    display: block !important;
  }
}
.app-container
  .content-container
  .main-content
  .form-container
  .approval-box-container
  .approval-box {
  width: 24%;
  min-height: 170px;
  font-size: 12px;
}
@media (max-width: 768px) {
  .app-container
    .content-container
    .main-content
    .form-container
    .approval-box-container
    .approval-box {
    width: 100%;
  }
}
.app-container .content-container .main-content .view-container {
  padding: 28px 14px;
}
.app-container .content-container .main-content .view-container .view-header {
  border: 1px solid #c2c2c2;
  padding: 14px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom: none;
  background-color: #f8fafc;
  align-items: center;
}
.app-container
  .content-container
  .main-content
  .view-container
  .view-header.appended {
  display: flex;
}
@media (max-width: 768px) {
  .app-container
    .content-container
    .main-content
    .view-container
    .view-header.appended {
    display: block;
  }
  .app-container
    .content-container
    .main-content
    .view-container
    .view-header.appended
    > h1 {
    margin-bottom: 5px;
    text-align: center;
  }
}
.app-container
  .content-container
  .main-content
  .view-container
  .view-header
  > h1 {
  font-size: 18px;
  margin: 0;
}
.app-container
  .content-container
  .main-content
  .view-container
  .table-container {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border: 1px solid #c2c2c2;
  padding: 14px;
  background: white;
  font-size: 14px;
}
.app-container .content-container .main-content .left-nav-apps {
  width: 215px;
  border-right: 1px solid #c2c2c2;
}
@media (max-width: 768px) {
  .app-container .content-container .main-content .left-nav-apps {
    width: 100%;
    background: white;
    position: absolute;
    height: inherit;
    z-index: 2;
    left: -100%;
    transition: 0.5s;
  }

  .app-container .content-container .main-content .left-nav-apps.open {
    left: 0;
  }
}
.app-container .content-container .main-content .progress-invoice {
  display: flex;
  height: 100px;
  align-items: center;
}
.app-container
  .content-container
  .main-content
  .progress-invoice
  .progress-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}
.app-container
  .content-container
  .main-content
  .progress-invoice
  .progress-container
  .dotline {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  align-items: center;
}
.app-container
  .content-container
  .main-content
  .progress-invoice
  .progress-container
  .dotline
  .line {
  height: 4px;
  width: 100%;
  position: absolute;
}
.app-container
  .content-container
  .main-content
  .progress-invoice
  .progress-container
  .dotline
  .line.start {
  width: 50%;
  right: 0;
}
.app-container
  .content-container
  .main-content
  .progress-invoice
  .progress-container
  .dotline
  .line.end {
  width: 50%;
  left: 0;
}
.app-container
  .content-container
  .main-content
  .progress-invoice
  .progress-container
  .dotline
  .line.done {
  background: #59c866;
}
.app-container
  .content-container
  .main-content
  .progress-invoice
  .progress-container
  .dotline
  .line.inprogress {
  background: linear-gradient(
    90deg,
    rgba(89, 200, 102, 1) 0%,
    rgba(89, 200, 102, 1) 50%,
    rgba(191, 191, 191, 1) 100%
  );
}
.app-container
  .content-container
  .main-content
  .progress-invoice
  .progress-container
  .dotline
  .line.undone {
  background: #bfbfbf;
}
.app-container
  .content-container
  .main-content
  .progress-invoice
  .progress-container
  .dotline
  .dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #59c866;
  border: 2px solid #59c866;
  color: white;
  z-index: 1;
}
.app-container
  .content-container
  .main-content
  .progress-invoice
  .progress-container
  .dotline
  .dot.undone {
  border-color: gray;
  background: #ebedef;
  color: gray;
}
.app-container
  .content-container
  .main-content
  .progress-invoice
  .progress-container
  .text {
  color: gray;
  padding-top: 5px;
}

@media (max-width: 768px) {
  .app-container
    .content-container
    .main-content
    .progress-invoice
    .progress-container
    .text {
    font-size: 12px;
    text-align: center;
  }
}
.app-container
  .content-container
  .main-content
  .history:hover
  .line-history
  .dot {
  background: #59c866;
  border: 2px solid #fff;
}
.app-container
  .content-container
  .main-content
  .history:hover
  .line-history
  .dot.next {
  background: gray;
  border: 2px solid #fff;
}
.app-container .content-container .main-content .history {
  position: relative;
}
.app-container .content-container .main-content .history .line-history {
  width: 20px;
  justify-content: center;
  display: flex;
  padding-top: 8px;
  position: absolute;
  left: -24px;
  height: 100%;
}
.app-container .content-container .main-content .history .line-history .line {
  display: block;
  width: 2px;
  height: 93%;
  background: #cacaca;
  position: absolute;
}
.app-container .content-container .main-content .history .line-history .dot {
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  border: 2px solid #59c866;
}
.app-container
  .content-container
  .main-content
  .history
  .line-history
  .dot.next {
  border-color: gray;
}
/**
* End Main Container
*/

/**
* Start Re-Rule
*/
/* start bootstrap re-rule */
input.form-control,
textarea.form-control,
.input-group-text,
.custom-select {
  border-radius: 0;
}
a.btn,
button.btn,
.btn-sm,
.btn-group-sm > .btn {
  border-radius: 2px;
}
textarea.form-control {
  white-space: pre-wrap;
}
label.col-form-label,
input.form-control,
textarea.form-control {
  font-size: 14px;
}
.input-group-text {
  font-size: 14px;
}
.carousel-indicators {
  bottom: -15px;
}
/* end bootstrap re-rule */
/* start select2 kicker */
.select2.select2-container.select2-container--default {
  width: 100% !important;
}
.select2-selection__rendered {
  color: #495057 !important;
  font-size: 14px;
}
.select2-container--default,
.select2-selection--single,
.select2-selection--multiple {
  border-radius: 0 !important;
  border-color: #ced4da !important;
  outline: none;
  min-height: 35px !important;
}
.select2-selection__arrow {
  height: 32px !important;
  right: 12px !important;
}
.select2-selection__rendered {
  padding-left: 12px !important;
  line-height: 35px !important;
}
.select2-selection__clear {
  right: 10px;
}
.select2-hidden-accessible {
  bottom: 0;
  left: 30%;
}
.select2-results {
  font-size: 14px;
}
.select2-container--default.select2-container--disabled
  .select2-selection--single {
  background-color: #e9ecef;
}
select.select2-container.is-invalid {
  display: none;
}
select.is-invalid + span span span {
  border-color: #e3342f !important;
}
/* end select2 kicker */
/* start datatables re-rule */
.thead-custom tr th {
  background: #d8dbe0;
  border-color: #d8dbe0;
  padding: 8px 16px;
  color: #4e4e4e;
}
td.column-custom {
  padding: 8px 16px;
  white-space: pre-wrap;
}
.dataTables_filter.moved {
  margin-left: auto;
}
.dataTables_filter.moved label {
  display: flex;
  align-items: center;
}
.dataTables_filter.moved label input {
  border-radius: 15px;
  border: 1px solid lightsteelblue;
}
.dataTable tbody {
  white-space: nowrap;
}
.dataTables_filter label,
.dataTables_filter.moved label {
  position: relative;
}
.dataTables_filter label:before,
.dataTables_filter.moved label:before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill-rule='evenodd'%3E%3Cpath d='M16.036 18.455l2.404-2.405 5.586 5.587-2.404 2.404zM8.5 2C12.1 2 15 4.9 15 8.5S12.1 15 8.5 15 2 12.1 2 8.5 4.9 2 8.5 2zm0-2C3.8 0 0 3.8 0 8.5S3.8 17 8.5 17 17 13.2 17 8.5 13.2 0 8.5 0zM15 16a1 1 0 1 1 2 0 1 1 0 1 1-2 0'%3E%3C/path%3E%3C/svg%3E")
    center/contain no-repeat;
}
.dataTables_filter input,
.dataTables_filter.moved input {
  padding-left: 40px;
}
table.dataTable.dtr-inline.collapsed.table-sm tbody tr td:first-child:before,
table.dataTable.dtr-inline.collapsed.table-sm tbody tr th:first-child:before {
  top: 16px;
}
table.dataTable tbody tr.child ul.dtr-details {
  width: 100%;
}
div.dtr-modal div.dtr-modal-close {
  position: absolute;
  font-size: 30px;
  top: 14px;
  right: 6px;
  width: 38px;
  height: 38px;
  text-align: center;
  cursor: pointer;
  z-index: 12;
  border: none;
  background: none;
}
div.dtr-modal div.dtr-modal-display {
  width: 100%;
}
div.dtr-modal div.dtr-modal-display {
  top: unset;
  border: none;
  border-radius: 0;
  height: unset;
}
div.dtr-modal div.dtr-modal-content {
  transition: all 1s;
}
table.dataTable.dtr-column > tbody > tr > td.dtr-control:before,
table.dataTable.dtr-column > tbody > tr > th.dtr-control:before,
table.dataTable.dtr-column > tbody > tr > td.control:before,
table.dataTable.dtr-column > tbody > tr > th.control:before {
  line-height: 12px;
}
@media (max-width: 768px) {
  div.dataTables_wrapper div.dataTables_filter label,
  div.dataTables_wrapper div.dataTables_filter input {
    width: 100%;
  }
  div.dataTables_wrapper div.dataTables_filter input {
    margin-left: 0 !important;
  }
}
/* end datatables re-rule */
/**
* End Re-Rule
*/
/* start scroll */
@media (min-width: 768px) {
  .sidebar-nav::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
}
.sidebar-nav::-webkit-scrollbar-track {
  background: rgba(221, 221, 221, 0.2);
  border-radius: 4px;
}
.sidebar-nav::-webkit-scrollbar-track:hover {
  background: #dddddd;
}
.sidebar-nav::-webkit-scrollbar-thumb {
  background: #303c50;
  -webkit-transition: all 1s;
  transition: all 1s;
  border-radius: 4px;
}
.sidebar-nav::-webkit-scrollbar-thumb:hover {
  background: #000a13;
}

/* Buttons */
/*
.sidebar-nav::-webkit-scrollbar-button {
    border-style: solid;
    height: 6px;
    width: 6px;
    &:hover {
        background: #e4e4e4;
    }
}
/* Up */
/*
.sidebar-nav::-webkit-scrollbar-button:vertical:decrement {
    border-width: 0 4px 8px 4px;
    border-color: transparent transparent rgba(1, 90, 162, 1) transparent;
    &:hover {
        border-color: transparent transparent rgb(0, 10, 19) transparent;
    }
}
/* Down */
/*
.sidebar-nav::-webkit-scrollbar-button:vertical:increment {
    border-width: 8px 4px 0 4px;
    border-color: rgba(1, 90, 162, 1) transparent transparent transparent;
    &:hover {
        border-color: rgb(0, 10, 19) transparent transparent transparent;
    }
}
/* Left */
/*
.sidebar-nav::-webkit-scrollbar-button:horizontal:decrement {
    border-width: 4px 8px 4px 0;
    border-color: transparent rgba(1, 90, 162, 1) transparent transparent;
    &:hover {
        border-color: transparent rgb(0, 10, 19) transparent transparent;
    }
}
/* Right */
/*
.sidebar-nav::-webkit-scrollbar-button:horizontal:increment {
    border-width: 4px 0 4px 8px;
    border-color: transparent transparent transparent rgba(1, 90, 162, 1);
    &:hover {
        border-color: transparent transparent transparent rgb(0, 10, 19);
    }
}
*/
/* end scroll */
