@font-face {
  font-family: Foco;
  src: url(/fonts/Foco-Regular.ttf);
}
* {
  font-family: Foco;
}
.bg-gradient-primary {
    background-color: #003055;
    background-image: linear-gradient(
180deg
,#003055 10%,#003055 100%);
}
.text-primary {
  color: #003055 !important;
}
.page-item.active .page-link {
    background-color: #003055;
    border-color: #003055;
}
.btn-confirm {
  border: 0;
  padding: 10px;
  margin: auto;
  border-radius: 10px;
  background-color: #c22026;
  color: white;
}

.exid-spinner {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.75);
  border-color: #ddd;
  color: #003055;
}

.exid-spinner.active {
  display: flex;
}
.mailingAddressCheckbox{
  display:flex;
  justify-content: left;
  width:90%;
  align-items: center;
  text-align: center;
}

.inputCheckbox{
  margin-right:10px;
}

.mailingAddressLabel{
  padding-top:10px;
}

.d-none {
  display: none;
}
.mailingAddressHide{
  display:none;
}

.exid-spinner::before {
  content: "";
  box-sizing: border-box;
  width: 1em;
  height: 1em;
  border: 0.1em solid;
  border-color: inherit;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: exid-spin 0.75s linear infinite;
}

@keyframes exid-spin {
  from { transform: rotate(0deg) }
  to { transform: rotate(360deg) }
}
.table-confirmed{
  display: none !important;
  }