:root {
  --my-primary: #772ea9 !important;
}

* {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}

/* HEADER  */
/* ==================== */
.navbar-toggler {
  border: none !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler i {
  color: white;
  font-size: 40px;
  font-weight: bold !important;
}

.navbar .navbar-brand p {
  font-family: "Agbalumo", system-ui;
  font-weight: 400;
}

.mynavbar {
  background-image: linear-gradient(to right, rgb(71, 138, 201, .4), rgb(119, 46, 169, .4)) !important;
  backdrop-filter: blur(5px);
}

.mynavbar .offcanvas {
  height: 100vh;
}

/* BODY  */
/* ==================== */

/* ASSET */
/* ==================== */
.highlight {
  background-color: yellow;
  color: red;
  padding: 0 5px;
  text-transform: uppercase;
}

.bg-blue-black {
  background-color: #101652;
}

.bg-purple {
  background-color: var(--my-primary);
}

.my-gradient {
  color: white;
  background-image: linear-gradient(to right, #478ac9, #772ea9);
}

.my-gradient-bottom {
  color: white;
  background-image: linear-gradient(to bottom, #478ac9, #772ea9);
}

.my-gradient-top {
  color: white;
  background-image: linear-gradient(to top, #478ac9, #772ea9);
}

.text-shadow {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.u-gradient {
  color: white !important;
  background-image: linear-gradient(to bottom, #478ac9, #772ea9);
}

.kod-table {
  max-height: 500px;
  overflow-y: auto;
  overflow-x: auto;
}

.warning-border {
  border: 10px dashed red;
}

.transparent-table {
  --bs-table-striped-bg: var(--bs-secondary-bg-subtle);
  --bs-table-bg: transparent;
  --bs-table-color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
}

.cus-table {
  --bs-table-striped-bg: var(--my-primary);
  --bs-table-striped-color: white;
}

.alert-box {
  padding: 40px;
}

.alert-box-title {
  font-weight: bold;
}

.alert-box-quote {
  border-left: 14px solid rgb(15, 196, 252);
  padding: 5px;
  font-style: italic;
  background-color: #ccc;
}

/* LISTS  */
/* ===================== */
.lists {
  text-decoration: none;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 2px 2px 8px 0px rgba(119, 46, 169, 0.6);
  transition-duration: .5s;
  transition-timing-function: ease;
  background-color: white;
}

.lists .list-icon {
  width: 100px;
}

.lists:hover {
  color: white;
  background-image: linear-gradient(to bottom, #478ac9, #772ea9);
  transform: translateX(0px) translateY(0px) scale(1.1) rotate(0deg);
}

.lists.bank .list-icon {
  width: 100%;
  border: 1px solid black;
  border-radius: 10px;
  padding: 15px 25px;
}

.lists.bank p {
  color: black;
  font-size: 20px;
}

.lists.bank:hover {
  color: black;
  background-image: none;
  transform: none;
}



/* FOOTER  */
/* ==================== */
footer {
  padding: 1.5rem;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  color: greenyellow;
}

.social-icons {
  display: flex;
  width: 200px;
  justify-content: space-around;
}

.social-icons a {
  overflow: hidden;
  display: inline-block;
  width: 35px;
}

.social-icons a img {
  width: 100%;
}

.social-icons i {
  color: white;
  font-size: 20px;
}