@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css");
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=PT+Sans:wght@400;700&family=Raleway:ital,wght@0,300;1,500&family=Source+Sans+3:wght@300;400&display=swap');


body {
  background: #e4e4e4;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
}
.hero-image-container img {
  display: block;
  width: calc(100% + 56px);
  margin-left: -28px;
  margin-right: -28px;
}
.container {
  background: white;
  padding-right: var(--bs-gutter-x, 1.75rem);
  padding-left: var(--bs-gutter-x, 1.75rem);
}
.header {
  margin: 0 -1.75rem;
}
h1 {
  font-size: 35px;
  line-height: 42px;
  color: #D2452D;
  font-weight: normal;
  padding: 0;
}
h2 {
  font-size: 22px;
  line-height: 26px;
  color: #297A8E;
  font-weight: bold;
  padding: 1rem 0 1rem;
}
h3 {
  font-size: 18px;
  color: #00263e;
  font-weight: bold;
  padding: 0 0 0.5rem;
}
.checkbox-group-label {
  font-size: 16px;
}
form#lg-form {
  background: rgb(223, 234, 235);
  padding: 2rem;
}
.form-label {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  font-weight: bold;
}
.form-control {
  padding: 0.175rem 0.75rem;
  border-color: #00000061;
  border-radius: 0;
  font-size: 0.9rem;
}
.form-check-label {
  font-size: 0.9rem;
}
.form-check-label-name {
  font-weight: bold;
  display: block;
}
.form-check-input {
  margin-top: 0.1em;
}
.btn-primary {
  background: #297A8E;
  border: none;
}
.btn-primary:hover {
  background: #D2452D;
}
a.sm-link {
  text-decoration: none;
  display: inline-block;
}
.footer-text {
  font-size: 0.7em;
}
/* preference center checkboxes */
@media (min-width: 481px) {
  .preference-option {
    column-gap: 40px;
  }
}
@media (max-width: 480px) {
  .preference-option {
    column-count: 1 !important;
  }
}
.preference-field-name {
  color: #297A8E;
  font-weight: bold;
}
.preference-field-description {
  color: #297A8E;
}
.preference-option {
  /* margin: 15px 52px; */
}
.opt-out-text {
  color: #D2452D;
  font-size: 18px;
  font-weight: bold;
}
/* Checkbox styling section */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 35px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 150%;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}
.checkbox-container-active {
  cursor: pointer;
}
.checkbox-container-inactive {
  cursor: not-allowed;
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 20px;
  width: 20px;
  border-style: solid;
  border-width: 1px;
  border-color: #6facde;
}
.preference-opt-out .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-style: solid;
  border-width: 1px;
  border-color: #6facde;
}
.checkbox-container-active:hover input ~ .checkmark {
  background-color: #6facde;
}
.preference-opt-out .checkbox-container-active:hover input ~ .checkmark {
  background-color: #6facde;
}
.checkbox-container-inactive input ~ .checkmark {
  background-color: #eeeeee;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 1px 1px 0;
  border-color: #00263e;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.preference-opt-out .checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 1px 1px 0;
  border-color: #00263e;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}