#premium-payment-application section {
  background: none !important;
}

#premium-payment-application div.card-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

#premium-payment-application h1 {
  font-family: 'SF Pro Display', Sans-Serif;
  font-size: 40px !important;
}

#premium-payment-application h2 {
  font-family: 'SF Pro Display', Sans-Serif;
  font-size: 25px !important;
}

#premium-payment-application p {
  margin-top: 0 !important;
  font-size: 20px !important;
  margin-bottom: 1rem !important;
  font-family: 'SF Pro Display', Sans-serif;
}

#premium-payment-application label,
#premium-payment-application input,
#premium-payment-application button,
#premium-payment-application select {
  font-family: 'SF Pro Display', Sans-serif !important;
  font-size: 20px !important;
  margin-top: 5px;
}

#premium-payment-application #prequalify-section {
  /*background-image: url(./assets/GettyImages-1095318150.jpg);*/
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: inherit;
}

#premium-payment-application #setup-policy-section,
#verify-premium-section,
#payor-section,
#cc-section,
#success-section,
#error-section {
  display: none;
  min-height: inherit;
}

#premium-payment-application .policy-input {
  text-transform: uppercase;
}

#premium-payment-application .divider {
  max-width: 10%;
  height: 12px;
  background-color: #2d2d2d !important;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

#premium-payment-application .divider-long {
  max-width: 100%;
  height: 5px;
  background-color: #2d2d2d;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

#premium-payment-application .card {
  background-color: rgba(255, 255, 255, 0.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.2);
  max-width: 800px;
  padding: 3rem;
}

#premium-payment-application .progress {
  background-color: #ededed;
  height: 2rem;
  border-radius: 2rem;
}
#premium-payment-application .progress-bar {
  background-color: #2d2d2d !important;
}

#premium-payment-application .bg-gold {
  background-color: #f3d48c;
}

#premium-payment-application .rounded-major {
  border-radius: 2rem;
}

#premium-payment-application.txt-grey {
  color: #a3a3a3;
}

#premium-payment-application .bg-grey {
  background-color: #ededed;
}

#premium-payment-application .pp-btn {
  padding: 1rem 2rem;
  border-radius: 0px;
}

#premium-payment-application .pp-btn-inverse {
  padding: 1rem 2rem;
  background-color: #ffffff !important;
  color: #2d2d2d !important;
  border-radius: 0px;
  border: 1px solid #2d2d2d;
}

#premium-payment-application.error-text {
  color: #e40046; /* Ruby Red */
  /* color: #FA1A0C; */
  font-size: 2rem;
  font-weight: bold;
}

#premium-payment-application .form-control,
#premium-payment-application .form-select {
  border-radius: 0px !important;
  border: 2px solid #a3a3a3 !important;
  background-color: #f7f7f7 !important;
  padding: 0.375rem 0.75rem !important;
  line-height: 1.7 !important;
}

#premium-payment-application .font-bolder {
  font-family: 'SF Pro Display', Sans-Serif !important;
  font-weight: 900;
  font-style: normal;
}

#premium-payment-application .font-bold {
  font-family: 'SF Pro Display', Sans-Serif !important;
  font-weight: 700;
  font-style: normal;
}

#premium-payment-application .font {
  font-family: 'SF Pro Display', Sans-Serif !important;
  font-weight: 300;
  font-style: normal;
}

#premium-payment-application #plp-iframe {
  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, 0.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;
}
