:root {
  --bg-primary: #29569f;
  --bg-seconds: #f1f5f8;
  --bg-light: #ffffff;
  --bg-secondary: #e9ebec;
  ---bg-success: #099e51;
  ---bg-info: #00a2aa;
  --bg-indigo: #405189;
  --bg-purple: #6559cc;
  --bg-pink: #f672a7;
  ---bg-warning: #d9bf36;
  ---bg-danger: #bc1616;
  --text-white: #ffffffff;
  --text-dark: #0f172a;
  --text-secondary: #e9ebeccf;
  --text-success: #0ab39c;
  --text-danger: #cb1414;
  --background-light: #f5f5f5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg-seconds);
  color: var(--text-white);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #29569f;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 10px;
}

.textKeaslian {
  font-weight: 700;
}

.textTerbit {
  background: #29569f !important;
  color: white;
  padding: 4px;
  font-size: 10px;
  border-radius: 4px;
}

.layoutSertifikat ul {
  list-style: none; /* Menghapus tanda titik default */
  padding: 0;
  color: #099e51;
}

.layoutSertifikat li::before {
  content: "\2713"; /* Karakter Unicode untuk tanda centang */
  margin-right: 8px; /* Jarak antara tanda centang dan teks */
  color: #099e51; /* Warna tanda centang */
}

.textKeaslian {
  word-wrap: break-word;
  word-break: break-all;
  overflow-wrap: break-word;
}

.layoutSertifikat {
  width: 100%;
}

.bordered-label {
  position: relative;
  display: inline-block;
  margin-bottom: 14px !important;
}

.bordered-label::before,
.bordered-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 200px;
  height: 2px;
  background-color: #f3f3f9;
}

.bordered-label::before {
  left: 100%;
}

.bordered-label::after {
  right: 100%;
}

.notificationApp {
  background-color: #333;
  color: #fff;
  padding: 15px 30px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.5s ease-in-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translate(-50%, -20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 600px) {
  .textTerbiting {
    flex-direction: column;
  }

  .textAndroid {
    font-size: 10px !important;
  }
  .bordered-label::before,
  .bordered-label::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100px;
    height: 2px;
    background-color: #f3f3f9;
  }

  .bordered-label::before {
    left: 100%;
  }

  .bordered-label::after {
    right: 100%;
  }
}
