:root {
  --theme-color: #ff6600;
  --theme-secondary-color: #616161;
}

/* Scrollbar */
body::-webkit-scrollbar {
  background-color: white;
  width: 16px;
}
body::-webkit-scrollbar-track {
  background-color: white;
}
body::-webkit-scrollbar-thumb {
  background-color: #babac0;
  border-radius: 16px;
  border: 4px solid white;
}
body::-webkit-scrollbar-button {
  display: none;
}


blockquote {
  border-left: 5px solid var(--theme-color);
}

/* Header */
.navigation nav {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.navigation nav .nav-wrapper {
  display: flex;
  align-items: center;
  padding: 1em 2.5em;
}
.navigation nav .navbar-logo {
  line-height: normal;
}
.navigation nav .brand-logo {
  font-size: 1.5rem;
  color: var(--theme-color);
}
.navigation nav .brand-logo span {
  color: var(--theme-secondary-color);
}

/* Footer */
footer {
  font-size: 0.875rem;
  background-color: #f0f0f0;
}
footer .footer-sitemap {
  padding: 1em 2.5rem;
}
footer .footer-copyright .copyright-wrapper {
  width: 100%;
  padding: 1.125em 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footer-copyright .copyright-policy {
  margin: 0 -0.5rem;
}
footer .footer-copyright .copyright-policy li {
  display: inline-block;
  padding: 0 0.5rem;
  border-right: 1px solid black;
}
footer .footer-copyright .copyright-policy li:last-child {
  border-right: none;
}

/* Page */
.home-page,
.pay-page,
.payee-page {
  min-height: 100dvh;
}

/* Button */
.btn-theme {
  font-size: 1rem;
  width: fit-content;
  min-width: 150px;
  border-radius: 40px;
}
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--theme-secondary-color);
}

/* Card */
.card-wallet-type,
.card-wallet-payment {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
}
.card-wallet-payment {
  width: fit-content;
  min-width: 31.25rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 2em;
  border-radius: 20px;
  background-color: #f0f0f0;
}
.card-wallet-payment #qr_reader select {
  display: block;
}

/* Cookie Policy */
.cookie-policy {
  display: flex;
  position: fixed;
  bottom: 0;
  z-index: 99;
  align-items: center;
  padding: 20px;
  width: 100%;
  animation-name: slide-bar;
  animation-direction: normal;
  animation-duration: 900ms;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes slide-bar {
  from {
    transform: translateY(50px);
  }

  to {
    transform: translateY(0);
  }
}

.policy-banner {
  padding: 20px;
  opacity: 1;
  width: unset;
  max-width: 1280px;
  margin: 0 auto;
  border: 1px solid rgb(232, 232, 232);
  border-radius: 8px;
  box-shadow: rgb(0 0 0 / 10%) 0px 2px 8px 0px;
}

.policy-banner .policy-title {
  margin-bottom: 5px;
}

.policy-banner .policy-link {
  /* margin: 0 0.2em; */
  color: var(--theme-color);
}

.policy-btn .policy-btn-accept {
  background-color: var(--theme-color);
  border-radius: 10px;
  font-weight: 400;
  margin-top: 1.5em;
  color: white;
}