html {
  /* font-size: 62.5% !important; */
  font-size: 12px !important;
}

main#premium-payment-application {
  min-height: 100vh;
}

p {
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
}

label,input,button {
  font-family: Roboto, sans-serif !important;
}

#prequalify-section {
  background-image: url(./assets/GettyImages-1095318150.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: inherit;
}

#setup-policy-section, #verify-premium-section, #payor-section, #cc-section, #success-section, #error-section {
  background-color: #EDEDED;
  display: none;
  min-height: inherit;
}

.policy-input {
  text-transform: uppercase;
}

.divider {
  max-width: 10%;
  height: 12px;
  background-color: #2d2d2d !important;;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.divider-long {
  max-width: 100%;
  height: 5px;
  background-color: #2d2d2d;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.title {
  font-size: 3rem;
}

.card {
  background-color: rgba(255, 255, 255, .8);
  box-shadow: 0 12px 17px 2px rgba(0,0,0,0.14), 0 5px 22px 4px rgba(0,0,0,0.12), 0 7px 8px -4px rgba(0,0,0,0.20);
}

.progress {
  background-color: #EDEDED;
  height: 2rem;
  border-radius: 2rem;
}
.progress-bar {
  background-color: #2d2d2d !important;
}

.bg-gold {
  background-color: #f3d48c;
}

.rounded-major {
  border-radius: 2rem;
}

.txt-grey {
  color: #A3A3A3;
}

.bg-grey {
  background-color: #EDEDED;
}

.pp-btn {
  padding: 1rem 2rem;
  background-color: #2d2d2d !important;
  color: #ffffff !important;
  border-radius: 0px;
}

.pp-btn-inverse {
  padding: 1rem 2rem;
  background-color: #ffffff !important;
  color: #2d2d2d !important;
  border-radius: 0px;
  border: 1px solid #2D2D2D;
}

.error-text {
  color: #E40046; /* Ruby Red */
  /* color: #FA1A0C; */
  font-size: 2rem;
  font-weight: bold;
}

.form-control, .form-select {
  border-radius: 0px !important;
  border: 2px solid #A3A3A3 !important;
  background-color: #F7F7F7 !important;
  padding: .375rem .75rem !important;
  line-height: 1.7 !important;
}

.museo-font-bolder {
  font-family: museo-slab,serif !important;
  font-weight: 900;
  font-style: normal;
}

.museo-font-bold {
  font-family: museo-slab,serif !important;
  font-weight: 700;
  font-style: normal;
}

.museo-font {
  font-family: museo-slab,serif !important;
  font-weight: 300;
  font-style: normal;
}

#plp-iframe {
  display: none;
  width: 100%;
  height: 350px;
}

.loading-overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba( 255, 255, 255, .8)
                no-repeat;
}
.loading-overlay-image {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url('./assets/spinner-solid.svg')
              50% 50%/5%
              no-repeat;
}

@keyframes spinning {
  from { transform: rotate(0deg) }
  to { transform: rotate(360deg) }
}

body.loading .loading-overlay {
  overflow: hidden;
  display: block;
}

body.loading .loading-overlay-image {
  overflow: hidden;
  animation-name: spinning;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  /* linear | ease | ease-in | ease-out | ease-in-out */
  animation-timing-function: linear;
}