﻿* {
  scrollbar-width: thin;
  scrollbar-color: #d6dee1 transparent;
}
*::-webkit-scrollbar {
  width: 15px;
}
*::-webkit-scrollbar-track {
  background: transparent;
  background: #1f2528;
}
*::-webkit-scrollbar-thumb {
  background-clip: content-box;
  background-color: #d6dee1;
  background-color: rgb(44, 51, 55);
  border-radius: 20px;
  border: 4px solid transparent;
}

a, button {
  transition: all 0.15s ease-in-out;
}

a, a:before, a:after {
  -webkit-user-select: none; /* Safari 3.1+ */
  -moz-user-select: none; /* Firefox 2+ */
  -ms-user-select: none; /* IE 10+ */
  user-select: none; /* Standard syntax */
  user-drag: none;
  -webkit-user-drag: none;
}
a a:hover {
  cursor: pointer;
}

.btn {
  font-weight: 600;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  overflow-y: hidden;
}
@media (min-width: 768px) {
  body {
    background: linear-gradient(125deg, rgb(234.0818965517, 246.7715517241, 252.9181034483) 45%, var(--b-theme-background-primary) 45%);
  }
}

#root {
  height: 100vh;
}

.app {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

.b-layout.b-layout-root {
  overflow-y: scroll;
}

.container {
  --bs-gutter-x: 0;
  max-width: 600px;
}
@media (min-width: 768px) {
  .container {
    --bs-gutter-x: 24px;
  }
}

.card {
  --bs-card-border-radius: 0;
  --bs-card-border-width: 0;
  align-items: center;
  display: flex;
  width: 100%;
}
@media (min-width: 768px) {
  .card {
    --bs-card-border-radius: 14px;
    --bs-card-border-width: 1px;
    margin-top: 64px;
    margin-bottom: 64px;
  }
}
.card .card-body {
  max-width: 480px;
  width: 100%;
}
@media (min-width: 768px) {
  .card .card-body {
    padding-top: 42px;
    padding-bottom: 42px;
  }
}
.card .card-body .summary .summary-invoice, .card .card-body .account-balance .balance {
  text-align: left;
}
.card .card-body .summary .summary-invoice span, .card .card-body .account-balance .balance span {
  color: #7d7d7d;
  display: block;
  font-size: 14px;
  font-weight: 500;
}
.card .card-body .summary .summary-invoice .h2, .card .card-body .account-balance .balance .h2 {
  font-size: 26px;
  font-weight: 500;
}
.card .card-body .summary {
  margin-bottom: 12px;
  text-align: center;
}
@media (min-width: 768px) {
  .card .card-body .summary {
    text-align: left;
  }
}
.card .card-body .summary .summary-secure {
  color: var(--b-theme-success);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .card .card-body .summary .summary-secure {
    text-align: left;
  }
}
.card .card-body .summary .logo {
  margin-bottom: 24px;
  max-height: 80px;
}
.card .card-body .details .b-table {
  margin-bottom: 0;
}
.card .card-body .details .b-table > :not(caption) > * > * {
  border-bottom: 0;
  padding: 2px 0;
}
.card .card-body .details .b-table th {
  color: #7d7d7d;
  font-size: 14px;
  font-weight: 500;
  padding-right: 24px;
  text-align: right;
  width: 120px;
}
.card .card-body .details .b-table address {
  font-size: 14px;
  margin-top: 2px;
}
.card .card-body .account-balance .balance span {
  font-size: 13px;
}
.card .card-body .account-balance .balance .h2 {
  font-size: 24px;
}
.card .card-body .payment-options {
  border-top: 1px solid #d6d6d6;
  margin-top: 24px;
  padding-top: 24px;
}
.card .card-body .payment-options .h6 {
  margin-bottom: 16px;
}
.card .card-body .payment-options .placeholder {
  margin-bottom: 12px;
}
.card .card-body .payment-options .nav-tabs {
  border: 1px solid #d6d6d6;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}
.card .card-body .payment-options .nav-tabs .nav-item {
  flex: 1 1 auto;
}
.card .card-body .payment-options .nav-tabs .nav-item a.nav-link {
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  padding: 6px 12px;
}
@media (min-width: 768px) {
  .card .card-body .payment-options .nav-tabs .nav-item a.nav-link {
    font-size: 14px;
  }
}
.card .card-body .payment-options .nav-tabs .nav-item a.nav-link:not(.active) {
  color: var(--bs-body-color);
}
.card .card-body .payment-options .nav-tabs .nav-item a.nav-link:not(.active):hover {
  background-color: #eee;
}
.card .card-body .payment-options .nav-tabs .nav-item a.nav-link.active {
  background-color: var(--b-theme-primary);
  border: 1px solid var(--b-theme-primary);
  color: #fff;
}
.card .card-body .payment-options .nav-tabs .nav-item:first-child .nav-link {
  border-top-left-radius: 4px;
}
.card .card-body .payment-options .nav-tabs .nav-item:last-child .nav-link {
  border-top-right-radius: 4px;
}
.card .card-body .payment-options .nav-tabs .nav-item:not(:last-child) .nav-link {
  border-right: 1px solid #d6d6d6;
}
.card .card-body .payment-options .tab-content {
  margin-bottom: 14px;
}
.card .card-body .payment-options .tab-content .tab-pane {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.card .card-body .payment-options .tab-content .tab-pane.active {
  border: 1px solid #d6d6d6;
  border-top: 0;
  padding: 16px 18px 4px;
}
.card .card-body .payment-options .tab-content .tab-pane .form-group {
  display: flex;
  flex-wrap: wrap;
}
.card .card-body .payment-options .tab-content .tab-pane .form-group .form-label {
  font-size: 14px;
}
.card .card-body .payment-form .wrapper {
  width: 100%;
}
.card .card-body .payment-form .wrapper .payment-heading {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.card .card-body .payment-form .wrapper #card-loader {
  display: block;
  margin-bottom: 14px;
}
.card .card-body .payment-form .wrapper #google-pay-button, .card .card-body .payment-form .wrapper #apple-pay-button {
  background: none;
  border: 0;
  padding: 0;
  width: 100%;
}
.card .card-body .payment-form .wrapper #google-pay-button {
  margin-bottom: 16px;
}
.card .card-body .payment-form .wrapper #apple-pay-button {
  -apple-pay-button-style: black;
  -apple-pay-button-type: plain;
  appearance: -apple-pay-button;
  display: inline-block;
  height: 48px;
  width: 100%;
}
.card.payment-success-card .summary, .card.payment-failed-card .summary, .card.payment-error .summary {
  margin-bottom: 24px;
  text-align: center;
}
.card.payment-success-card .summary .icon, .card.payment-failed-card .summary .icon, .card.payment-error .summary .icon {
  font-size: 48px;
  margin-bottom: 24px;
}
.card.payment-success-card .summary .h1, .card.payment-failed-card .summary .h1, .card.payment-error .summary .h1 {
  margin-bottom: 24px;
}
.card.payment-success-card .details, .card.payment-failed-card .details, .card.payment-error .details {
  margin-bottom: 24px;
}
.card.payment-success-card .details .b-table th, .card.payment-failed-card .details .b-table th, .card.payment-error .details .b-table th {
  min-width: 160px;
  width: 50%;
}

.loader {
  animation: spinning 1.7s linear infinite;
  background-image: var(--b-theme-primary);
  border-radius: 50px;
  box-shadow: 0px -1.25px 5px 0px var(--b-theme-primary), 0px 1.25px 5px 0px var(--b-theme-primary);
  filter: blur(1px);
  height: 50px;
  margin: 48px 0;
  text-align: center;
  width: 50px;
}
.loader .loader-inner {
  background-color: #fff;
  border-radius: 50px;
  filter: blur(5px);
  height: 50px;
  width: 50px;
}

@keyframes spinning {
  to {
    transform: rotate(360deg);
  }
}
