@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

.card-notif {
  position: fixed;
  width: 342px;
  height: 80px;
  right: 20px;
  top: 100px;

  background: #fafafa;
  box-shadow: 0px 0px 4.18163px 9.29252px rgba(180, 180, 180, 0.25);
  border-radius: 13.9388px;
}
.box-gambar {
  position: absolute;
  width: 68px;
  height: 62px;
  left: 9.5px;
  top: 9px;

  background: #262b2a;
  box-shadow: 0px 2px 8px rgba(99, 99, 99, 0.2);
  border-radius: 5px;
}

.text-judul,
.text-body,
.garis,
.buled-close {
  position: absolute;
  left: 100px;
}

.text-judul {
  top: 17px;
  font-family: "Plus Jakarta Sans-ExtraBold", helvetica;
  font-size: 18px;
  font-weight: 800;
  color: #28a745;
}

.text-body {
  top: 45px;
  font-family: "Plus Jakarta Sans-Medium", Helvetica;
  font-size: 11px;
  color: #737373;
}

.garis {
  top: 68px;
  width: 221px;
  height: 1.5px;
  border-radius: 1px;
  animation: shrink 3s ease-in-out forwards;
}

.buled-close {
  width: 20px;
  height: 18.24px;
  left: 330px;
  top: -5px;
  border-radius: 50px;
}

@keyframes shrink {
  from {
    width: 221px; /* Mulai dari 100% lebar container */
  }
  to {
    width: 0px; /* Berakhir pada 0% (garis menghilang) */
  }
}

/* STYLE ALERT CONFIRM */
.card-confirm {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Background transparan */
  justify-content: center;
  align-items: center;
  z-index: 9999999999;
}

.confirm-content {
  padding: 20px;
  text-align: center;
  background: #FAFAFA;
  box-shadow: 0px 2px 8px rgba(99, 99, 99, 0.2);
  border-radius: 5px;
}

.logo-confirm {
  left: 150px;
  margin-bottom: 10px;
}

.text-jdl {
  left: 365px;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  text-align: center;
  line-height: 20px;
  color: #E4AA5A;
}

.text-ctn {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 30px;
  color: #525756;
  margin-bottom: 20px;
}

.btn-confirm {
  width: 90px;
  height: 28px;
  background: #E4AA5A;
  box-shadow: 0px 2px 8px rgba(99, 99, 99, 0.2);
  border-radius: 5px;
  color: #262B2A;
  border: none;
}
.btn-cancel {
  width: 90px;
  height: 28px;
  background: #262B2A;
  box-shadow: 0px 2px 8px rgba(99, 99, 99, 0.2);
  border-radius: 5px;
  color: #FFFFFF;
  border: none;
}


