@import url(//fonts.googleapis.com/css?family=Open+Sans);
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.bg-blue, .btn-blue {
  background-color: #66a6ff !important;
  color: white !important;
}

.bg-green, .btn-green {
  background-color: #25d366 !important;
  color: white !important;
}

.bg-red, .btn-red {
  background-color: #ff6467 !important;
  color: white !important;
}

body {
  background: linear-gradient(-45deg, #7f23d5, #235bd5, #23a6d5, #1ccfa5);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  align-items: center;
  padding-bottom: 20vh;
}

.main {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 24px;
  margin: 0px;
}

.card {
  border-radius: 20px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1s ease-out;
}

.card-header {
  border-radius: 20px !important;
  color: white;
}

.header-card {
  border-radius: 20px !important;
  background-color: #005ad8 !important;
  color: white;
}

.bg-white {
  background: white;
}

.bg-dompet {
  background-image: linear-gradient(90deg, #000046 0%, #1cb5e0 100%);
  color: white;
}

.bg-aset {
  background-image: linear-gradient(90deg, #005aa7 0%, #1cb5e0 100%);
  color: white;
}

.text-blue {
  color: #2575fc;
}

.thead-table {
  background-color: #66a6ff;
  color: white;
}

.title {
  font-family: system-ui;
  background: #2575fc;
  color: white;
  text-align: center;
}

.bottom-nav {
  display: flex;
  justify-content: center;
  flex-direction: row;
  width: 100%;
  height: 50px;
  filter: drop-shadow(0 0 5px rgba(31, 31, 31, 0.1));
  position: fixed;
  bottom: 0;
  z-index: 9999;
}
.bottom-nav .nav-slot {
  flex-basis: 15%;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottom-nav .nav-link {
  width: 25px;
  height: 25px;
  line-height: 1.5;
  align-items: center;
  color: #aab2bd;
  border-radius: 50rem;
  padding: 0.5rem 0.5rem;
  transition: 0.3s all;
}
.bottom-nav .nav-link:hover {
  transition: 0.3s all;
  background: rgba(31, 31, 31, 0.1);
}
.bottom-nav .curve {
  flex-basis: auto !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E%3Cpath d='M99,0A36.33,36.33,0,0,0,70,15,25,25,0,0,1,30,15,36.33,36.33,0,0,0,1,0H0V50H100V0Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
  width: 100px;
}
.bottom-nav .floating-button {
  position: fixed;
  width: 50px;
  height: 50px;
  line-height: 3;
  text-align: center;
  color: #ffce54;
  border-radius: 50%;
  bottom: 35px;
  background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
  box-shadow: 0 10px 6px -6px #777;
  z-index: 1060;
  transition: 0.3s all;
}
.bottom-nav .floating-button:hover {
  bottom: 40px;
  transition: 0.3s all;
}
.bottom-nav .round-top-left {
  border-top-left-radius: 15px;
}
.bottom-nav .round-top-right {
  border-top-right-radius: 15px;
}
.bottom-nav svg {
  height: 100%;
}/*# sourceMappingURL=style.css.map */