/*
 * Globals
 */

hr{
  border: 1px solid #fff;
    border-radius: 10px;
}
 
.orange {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-align: center;
    font-family: inherit;
    line-height: 1.1;
    font-size: 42px;
    box-sizing: border-box;
    font-weight: 700;
    color: #f7941e;
}

/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}

/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
  background-color: #fff;
  border: .05rem solid #fff;
}


/*
 * Base structure
 */

html,
body {
  min-height: 100%;
  background-color: #333;
}

body {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}

.cover-container {
  max-width: 42em;
  min-height: 100vh;
}


/*
 * Header
 */
.masthead {
  margin-bottom: 2rem;
}

.masthead-brand {
  margin-bottom: 0;
}

.nav-masthead .nav-link {
  padding: .25rem .75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 4px;
  text-decoration: none;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  color: #fff;
  border-color: rgba(255, 255, 255, .6);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: .5rem;
}

.nav-masthead .active {
  color: #fff;
  border-color: #fff;
}

@media (min-width: 48em) {
  .masthead-brand {
    float: left;
  }
  .nav-masthead {
    float: right;
  }
}


/*
 * Cover
 */
.cover {
  padding: 0 1.5rem;
}
.cover .btn-lg {
  padding: .75rem 1.25rem;
  font-weight: 700;
}


/*
 * Payment grid
 */
.payment-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.payment-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: background .2s;
}

.payment-card:hover {
  background: rgba(255, 255, 255, .1);
}

.payment-title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.qr-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.qr-group img {
  border-radius: 6px;
}

.payment-card .form-control {
  max-width: 320px;
  margin: 0 auto;
}

.payment-card .btn-success {
  margin-top: .5rem;
}


/*
 * Footer
 */
.mastfoot {
  color: rgba(255, 255, 255, .5);
}