


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


body {
 background: #E4E4E4;
 font-family: 'PT Sans', Arial, Helvetica, sans-serif;
}

.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: #00263e;
    font-weight: normal;
    padding: 0 0 1rem;
}

h2 {
    font-size: 22px;
    line-height: 18px;
    color: #6FACDE;
    font-weight: bold;
    padding: 1.5rem 0 1rem;
}

h3 {
    font-size: 18px;
    color: #00263e;
    font-weight: bold;
  padding: 0 0 0.5rem;
}

.checkbox-group-label {
    color: #df6534;
    font-size: 16px;
}

.bg-secondary {
    background: #c5def2 !important;
}

.form-label {
    font-size: .9rem;
    margin-bottom: .2rem;
    font-weight: bold;
}

.form-control {
    padding: .175rem .75rem;
    border-color: #00000061;
    border-radius: 0;
 font-size: .9rem;
}

.form-check-label {
    font-size: .9rem;
    color: #2b5a80;
}

.form-check-label-name {
 font-weight: bold;
 display: block;
}
.form-check-input {
    margin-top: .1em;
}

.btn-primary {
    background: #00263e;
    border: none;
}

.btn-primary:hover {
    background: #df6534;
}
a.sm-link {
    text-decoration: none;
    display: inline-block;
}
.footer-text {
  font-size: .7em;
  margin-top:5rem;
}

/* 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: #2b5a80;
    font-size: 18px;
    font-weight: bold;
}

.preference-field-description {
    font-size: 18px;
    color: #2b5a80;
}

.preference-option {
 margin: 15px 52px;
}

.opt-out-text {
    color: #df6534;
    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);
}

ul.event-list {
    margin: 1rem 0;
    padding: 0;
    list-style: none;
}

.event-list li {
    padding: .2em;
    /* margin-bottom: .5rem; */
    clear: both;
    /* border-bottom: 1px solid #ccc; */
}

span.event-date {
    font-weight: bold;
    font-size: 1.1rem;
    clear:  right;
}

span.time {
    font-size: .9rem;
}
span.event-date:after {
    display: inline-block;
    content: "/";
    padding: 0 .5rem;
}

.time .material-icons {
    display: inline-block;
    position: relative;
    top: 4px;
    /* padding-right: .5rem; */
    /* display: none; */
    font-size: 18px;
}

.event-list li:first-child {
    /* border-top: 1px solid #ccc; */
}