/* light grey #FAFAFA */
/* body font Arial, Helvetica, sans-serif */
/* body font size 18px */
/*body main color*/
/*heading main color*/

:root {
    /*brand*/
    --main-brand-font: 'Barlow', sans-serif !important;
    --main-brand-font-size: 18px;
    /* colors */
    --main-brand-color: #1E4164;
    --main-brand-secondary-color: #394149;
    --main-brand-body-color: #394149;
    /* buttons */
    --main-brand-primary-button-bg: #1E4164;
    --main-brand-primary-border-color: #1E4164;
    --main-brand-primary-button-color: #FFFFFF;
    --main-brand-button-border-radius: 0 !important;
    --main-brand-button-bg: transparent;
    --main-brand-border-color: var(--main-brand-color);
    --main-brand-button-color: var(--main-brand-color);
    /* form */
    --main-brand-input-border-radius: 0 !important;
    --main-brand-input-border-color: #1E4164;
    --main-brand-input-label-color: #1E4164;
    /* card & layout */
    --main-brand-hero-bg: var(--main-brand-color);
    --main-brand-hero-color: #FFFFFF;
    --main-brand-border-radius: 0 !important;
    --main-brand-sm-border-radius: 0;
    --main-brand-portal-body: #FFFFFF;
    --main-brand-card-background: #FFFFFF;
    --main-brand-card-border: 1px solid #E5E6EB;
}


body {
    background: #ffffff;
    color: var(--main-brand-body-color) !important;
    font-family: var(--main-brand-font) !important;
    font-weight: 400 !important;
    font-size: var(--main-brand-font-size) !important;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 1em;
}

.p-2 {
    padding: 2em;
}

.p-3 {
    padding: 3em;
}

.m-0 {
    margin: 0;
}

.m-1 {
    margin: 1em;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1em;
}

.mt-2 {
    margin-top: 2em;
}

.mt-3 {
    margin-top: 3em;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1em;
}

.mb-2 {
    margin-bottom: 2em;
}

.mb-3 {
    margin-bottom: 3em;
}

.brandcolor {
    color: var(--main-brand-hero-color);
}

/* headings */


h1.fv-h1 {
    font-size: 2em;
    font-family: var(--main-brand-font)
}

h2.fv-h2 {
    font-size: 1.6em;
    font-family: var(--main-brand-font)
}

h3.fv-h3 {
    font-size: 1.3em;
    font-family: var(--main-brand-font)
}

h4.fv-h4 {
    font-size: 1.1em;
    font-family: var(--main-brand-font)
}

/* end of headings */




h1 a {
    font-size: 2em !important;
}

h2 a {
    font-size: 1.6em !important;
}

h3 a {
    font-size: 1.3em !important;
}

h4 a {
    font-size: 1.1em !important;
}

.fv-padding-25 {
    padding: 25px;
}

.fv-xl-wrap {
    margin: 0 auto;
    max-width: 1700px;
}

.fv-event-wrap-grid {
    display: flex;
}

.fv-event-aside {
    background-color: #E9EDF1;
    min-width: 330px;
}

.fv-event-content {
    flex-grow: 1;
}

.fv-event-grid-sort-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fv-event-grid-container {
    display: flex;
    flex-wrap: wrap;
}

.fv-event-content-heading {
    border-bottom: 1px solid #E2E2E2;
}

.fv-event-grid-item {
    border-right: 1px solid #E2E2E2;
    border-bottom: 1px solid #E2E2E2;
    flex-grow: 1;
    max-width: 340px;
}

.fv-event-grid-heading {
    border-bottom: 1px solid #e2e2e2;
    padding: 20px 0;
}

    .fv-event-grid-heading h3 {
        margin: 0;
    }

        .fv-event-grid-heading h3 a {
            display: block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

.fv-event-grid-info p {
    margin: 0;
}

.fv-bg-light {
    background-color: #F3F9FA;
}

.fv-event-grid-info {
    border-bottom: 1px solid #e2e2e2;
    padding: 15px 0;
}

    .fv-event-grid-info p:first-child {
        margin-bottom: 5px;
    }

.fv-event-grid-item-details {
    display: flex;
    justify-content: space-between;
    padding: 15px 0 0;
}

p.fv-accent-text {
    color: #2E74BB;
    font-size: 90%;
}

.fv-event-grid-item-details p {
    margin: 0;
}

p.fv-muted-text {
    font-size: 80%;
}

p.fv-loud-text {
    font-size: 120%;
}

.fv-event-grid-item-discount-rate {
    text-align: right;
}

.section-form-row input:not([type=checkbox], .section-form-row [type=radio]),
.section-form-row select,
.section-form-row textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    .section-form-row input:hover,
    .section-form-row select:hover,
    .section-form-row input[type=checkbox]:hover,
    .section-form-row textarea:hover {
        border-color: rgba(0, 0, 0, 0.87);
    }

    .section-form-row input:focus,
    .section-form-row select:focus,
    .section-form-row textarea:focus {
        border-color: #273481;
        box-shadow: inset 0 0 0 1px #273481, 0 0 0 4px #ebac40;
    }

    .section-form-row input:focus,
    .section-form-row textarea:focus,
    .section-form-row select:focus {
        outline: none;
    }

.checkbox-row {
    display: flex;
    align-items: center;
}

    .checkbox-row label {
        margin-left: .3em;
    }

        .checkbox-row label:hover {
            cursor: pointer;
        }

.section-form-row input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 24px;
    width: 24px;
    background-color: #ffffff;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

    .section-form-row input[type=checkbox]:checked {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg stroke='%23fff' stroke-width='2px' fill='none'%3E%3Cpath d='M6 12l4 4 8-8'/%3E%3C/g%3E%3C/svg%3E");
        background-size: 24px;
        background-position: center;
        background-color: #273481;
        border-color: #273481;
    }

/* template one */

.fv-sm-wrap {
    margin: 0 auto;
    max-width: 1024px;
}

.fv-t1-grid-container {
    gap: 20px;
}

.fv-event-grid-item-t1 {
    min-width: calc(50% - 10px);
    max-width: calc(50% - 10px);
}

@media (min-width: 700px) {
    .fv-event-grid-item-t1 {
        min-width: calc(33.5% - 15px);
        max-width: calc(33.5% - 15px);
    }
}

@media (min-width: 1024px) {
    .fv-event-grid-item-t1 {
        min-width: calc(25% - 15px);
        max-width: calc(25% - 15px);
    }
}

.fv-t1-grid-container {
    gap: 20px;
}

.fv-event-grid-item-t1 .fv-event-grid-img-wrap img {
    width: 100%;
    height: 150px !important;
}

.fv-event-grid-heading-t1 h3 {
    margin: 5px 0;
}

.fv-event-grid-info-t1 p {
    margin: 5px 0;
}

.fv-event-grid-img-wrap {
    position: relative;
}

span.fv-event-grid-img-label {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2px 10px;
    background: #AAEB76;
    color: var(--main-brand-body-color);
    font-size: 90%;
}

a.fv-link-img-wrap {
    display: grid;
    margin: 0;
}

.fv-event-content-heading-t1 {
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.fv-event-grid-form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 20px;
}

@media (min-width: 700px) {
    .fv-event-grid-form-container {
        flex-direction: row;
    }
}

.fv-width-100 {
    width: 100%;
}

label.fv-event-grid-form-label {
    display: block;
    margin-bottom: 5px;
}

label.fv-form-label {
    color: var(--main-brand-input-label-color);
    display: block;
    margin-bottom: 8px;
}

.fv-portal-screen {
    background-color: var(--main-brand-portal-body);
}


/* ===== INPUT ===== */

.fv-select-input,
.fv-input-field {
    border-radius: var(--main-brand-input-border-radius) !important;
    border: 1px solid;
    border-color: #CBD5E1;
    color: var(--main-brand-body-color);
    font-family: var(--main-brand-font);
    font-size: var(--main-brand-font-size);
    font-weight: 400;
    min-height: 46px;
    padding: 10px;
    margin-top: 10px !important;
}

/* ===== END OF INPUT ===== */

/* ===== BUTTONS ===== */

.fv-portal-button {
    background-color: var(--main-brand-button-bg) !important;
    border: 1px solid;
    border-color: var(--main-brand-border-color) !important;
    border-radius: var(--main-brand-button-border-radius) !important;
    color: var(--main-brand-button-color) !important;
    cursor: pointer;
    font-family: var(--main-brand-font) !important;
    font-size: var(--main-brand-font-size) !important;
    font-weight: 600 !important;
    text-decoration: none;
    padding: 15px 25px !important;
}

.fv-primary-button {
    background-color: var(--main-brand-primary-button-bg) !important;
    border-color: var(--main-brand-primary-border-color) !important;
    color: var(--main-brand-primary-button-color) !important;
}

    .fv-primary-button:hover {
        color: var(--main-brand-primary-button-bg) !important;
        background-color: #FFFFFF00 !important;
        border-color: var(--main-brand-primary-button-bg) !important;
    }

.fv-secondary-button {
    background: none !important;
    color: var(--main-brand-primary-button-bg) !important;
    border-color: var(--main-brand-primary-border-color) !important;
}

    .fv-secondary-button:hover {
        color: #FFFFFF !important;
        background-color: var(--main-brand-primary-button-bg) !important;
        border-color: var(--main-brand-primary-border-color) !important;
        text-decoration: none !important;
    }

/* ===== END OF BUTTONS ===== */
.portal-link {
    color: var(--main-brand-body-color) !important;
    font-weight: 600 !important;
}

    .portal-link:hover {
        text-decoration: underline !important;
    }

    .portal-link:focus {
        outline: 3px solid transparent;
        color: #000000;
        background-color: #ebac40;
        box-shadow: 0 -2px #ebac40, 0 4px #000000;
        text-decoration: none;
        -webkit-box-decoration-break: clone;
        box-decoration-break: clone;
    }


.fv-position-static {
    position: static !important;
}

.fv-event-single-wrap {
    display: flex;
    flex-direction: column;
    flex-flow: column-reverse;
}

@media (min-width: 800px) {
    .fv-event-single-wrap {
        flex-direction: row;
        gap: 60px;
        padding: 90px 0;
        justify-content: space-between;
    }
}

.fv-event-single-content-block {
    padding: 25px;
}

@media (min-width: 800px) {
    .fv-event-single-content-block {
        padding: 0;
    }
}

.fv-event-single-aside {
    max-width: 100%;
    min-width: 100%;
}

@media (min-width: 800px) {
    .fv-event-single-aside {
        max-width: 360px;
        min-width: 360px;
    }
}

.fv-event-single-aside img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

.fv-event-single-aside-description {
    padding: 20px;
    background: #e9edf1;
}

.fv-event-main-heading {
    display: none;
    margin-top: 0;
}

@media (min-width: 800px) {
    .fv-event-main-heading {
        display: block;
    }
}

.fv-event-main-mobile-heading {
    display: block;
}

@media (min-width: 800px) {
    .fv-event-main-mobile-heading {
        display: none;
    }
}

.fv-padding-25 {
    padding: 25px;
}

.fv-xl-wrap {
    margin: 0 auto;
    max-width: 1700px;
}

.fv-event-wrap-grid {
    display: flex;
}

.fv-event-aside {
    background-color: #E9EDF1;
    min-width: 330px;
}

.fv-event-content {
    flex-grow: 1;
}

.fv-event-grid-sort-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fv-event-grid-container {
    display: flex;
    flex-wrap: wrap;
}

.fv-event-content-heading {
    border-bottom: 1px solid #E2E2E2;
}

.fv-event-grid-item {
    border-right: 1px solid #E2E2E2;
    border-bottom: 1px solid #E2E2E2;
    flex-grow: 1;
    max-width: 340px;
}

.fv-event-grid-heading {
    border-bottom: 1px solid #e2e2e2;
    padding: 20px 0;
}

    .fv-event-grid-heading h3 {
        margin: 0;
    }

        .fv-event-grid-heading h3 a {
            display: block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

.fv-event-grid-info p {
    margin: 0;
}

.fv-event-grid-info {
    border-bottom: 1px solid #e2e2e2;
    padding: 15px 0;
}

    .fv-event-grid-info p:first-child {
        margin-bottom: 5px;
    }

.fv-event-grid-item-details {
    display: flex;
    justify-content: space-between;
    padding: 15px 0 0;
}

p.fv-accent-text {
    color: #2E74BB;
    font-size: 90%;
}

.fv-event-grid-item-details p {
    margin: 0;
}

p.fv-muted-text {
    font-size: 80%;
}

p.fv-loud-text {
    font-size: 120%;
}

.fv-event-grid-item-discount-rate {
    text-align: right;
}

.section-form-row input:not([type=checkbox], .section-form-row[type=radio]),
.section-form-row select,
.section-form-row textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    .section-form-row input:hover,
    .section-form-row select:hover,
    .section-form-row input[type=checkbox]:hover,
    .section-form-row textarea:hover {
        border-color: rgba(0, 0, 0, 0.87);
    }

    .section-form-row input:focus,
    .section-form-row select:focus,
    .section-form-row textarea:focus {
        border-color: #273481;
        box-shadow: inset 0 0 0 1px #273481, 0 0 0 4px #ebac40;
    }

    .section-form-row input:focus,
    .section-form-row textarea:focus,
    .section-form-row select:focus {
        outline: none;
    }

.checkbox-row {
    display: flex;
    align-items: center;
}

    .checkbox-row label {
        margin-left: .3em;
    }

        .checkbox-row label:hover {
            cursor: pointer;
        }

.section-form-row input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 24px;
    width: 24px;
    background-color: #ffffff;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

    .section-form-row input[type=checkbox]:checked {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg stroke='%23fff' stroke-width='2px' fill='none'%3E%3Cpath d='M6 12l4 4 8-8'/%3E%3C/g%3E%3C/svg%3E");
        background-size: 24px;
        background-position: center;
        background-color: #273481;
        border-color: #273481;
    }

/* template one */

.fv-sm-wrap {
    margin: 0 auto;
    max-width: 1024px;
}

.fv-t1-grid-container {
    gap: 20px;
}

.fv-event-grid-item-t1 {
    min-width: calc(50% - 10px);
    max-width: calc(50% - 10px);
}

@media (min-width: 700px) {
    .fv-event-grid-item-t1 {
        min-width: calc(33.5% - 15px);
        max-width: calc(33.5% - 15px);
    }
}

@media (min-width: 1024px) {
    .fv-event-grid-item-t1 {
        min-width: calc(25% - 15px);
        max-width: calc(25% - 15px);
    }
}

.fv-t1-grid-container {
    gap: 20px;
}

.fv-event-grid-item-t1 .fv-event-grid-img-wrap img {
    width: 100%;
    height: auto;
}

.fv-event-grid-heading-t1 h3 {
    margin: 5px 0;
}

.fv-event-grid-info-t1 p {
    margin: 5px 0;
}

.fv-event-grid-img-wrap {
    position: relative;
}

span.fv-event-grid-img-label {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2px 10px;
    background: #AAEB76;
    color: #394149;
    font-size: 90%;
}

a.fv-link-img-wrap {
    display: grid;
    margin: 0;
}

.fv-event-content-heading-t1 {
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.fv-event-grid-form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 20px;
}

@media (min-width: 700px) {
    .fv-event-grid-form-container {
        flex-direction: row;
    }
}

.section-form-row input:not([type=checkbox], .section-form-row [type=radio]),
.section-form-row select,
.section-form-row textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    .section-form-row input:hover,
    .section-form-row select:hover,
    .section-form-row input[type=checkbox]:hover,
    .section-form-row textarea:hover {
        border-color: rgba(0, 0, 0, 0.87);
    }

    .section-form-row input:focus,
    .section-form-row select:focus,
    .section-form-row textarea:focus,
    .section-form-row button:focus {
        border-color: #394149;
        box-shadow: inset 0 0 0 1px #394149, 0 0 0 4px #ebac40;
        outline: none;
    }

    .section-form-row input:focus,
    .section-form-row textarea:focus,
    .section-form-row select:focus,
    .section-form-row button:focus {
    }

.fv-event-single-wrap {
    display: flex;
    flex-direction: column;
    flex-flow: column-reverse;
}


@media (min-width: 800px) {
    .fv-event-single-wrap {
        flex-direction: row;
        gap: 60px;
        padding: 90px 0;
        justify-content: space-between;
    }
}

.fv-event-single-content-block {
    padding: 25px;
}

@media (min-width: 800px) {
    .fv-event-single-content-block {
        padding: 0;
    }
}

.fv-event-single-aside {
    max-width: 100%;
    min-width: 100%;
}

@media (min-width: 800px) {
    .fv-event-single-aside {
        max-width: 360px;
        min-width: 360px;
    }
}

.fv-event-single-aside img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

.fv-event-single-aside-description {
    padding: 20px;
    background: #e9edf1;
}

.fv-event-main-heading {
    display: none;
    margin-top: 0;
}

@media (min-width: 800px) {
    .fv-event-main-heading {
        display: block;
    }
}

.fv-event-main-mobile-heading {
    display: block;
}

@media (min-width: 800px) {
    .fv-event-main-mobile-heading {
        display: none;
    }
}

.fv-dashboard-hero-container {
    background-color: var(--main-brand-hero-bg);
    color: var(--main-brand-hero-color);
    padding: 1em;
}

@media (min-width: 800px) {
    .fv-dashboard-hero-container {
        padding: 40px 25px;
    }
}

.fv-main-wrap {
    max-width: 1130px;
    margin: 0 auto;
}

.fv-dashoard-inner-hero {
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

@media (min-width: 800px) {
    .fv-dashoard-inner-hero {
        flex-direction: row;
        align-items: center;
    }
}

.fv-dashboard-inner-content {
    color: #ffffff;
}

@media (min-width: 800px) {
    .fv-dashboard-inner-content {
        max-width: 400px;
    }
}

.fv-dashboard-inner-actions {
    flex: 1;
}

.fv-dashboard-inner-actions-wrap {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

a.fv-dashboard-inner-action-link {
    background: #ffffff;
    border-radius: var(--main-brand-border-radius) !important;
    color: var(--main-brand-body-color);
    display: block;
    max-width: calc(50% - 20px);
    min-width: calc(50% - 20px);
    padding: 25px;
    text-decoration: none;
}

    a.fv-dashboard-inner-action-link:hover {
        text-decoration: underline !important;
    }

    a.fv-dashboard-inner-action-link h3 {
        margin: 0 0 5px;
    }

    a.fv-dashboard-inner-action-link p {
        margin: 10px 0 0;
    }

a.fv-card-link:focus {
    outline: 3px solid transparent;
    color: #000000;
    background-color: #ebac40;
    box-shadow: 0 -2px #ebac40, 0 4px #000000;
    text-decoration: none;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.fv-dashboard-more-features-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 800px) {
    .fv-dashboard-more-features-block {
        flex-direction: row;
    }
}

.fv-dashboard-feature-card {
    margin-bottom: 1.2em;
}

@media (min-width: 800px) {
    .fv-dashboard-feature-card {
        min-width: calc(33.4% - 20px);
        max-width: calc(33.4% - 20px);
    }
}

.fv-dashboard-feature-card-img img {
    border-radius: var(--main-brand-border-radius) !important;
    height: auto;
    width: 100%;
}

.fv-dashboard-more-features-wrap {
    margin: 1em;
}

@media (min-width: 800px) {
    .fv-dashboard-more-features-wrap {
        margin: 3em auto;
    }
}

.fv-dashboard-feature-card-content h3 {
    margin: .3em 0;
}

.fv-dashboard-feature-card-content p {
    margin-bottom: 1em;
}

a.fv-dashboard-feature-card-anchor {
    color: var(--main-brand-body-color) !important;
    text-decoration: none !important;
}

    a.fv-dashboard-feature-card-anchor:focus,
    a.fv-dashboard-feature-card-anchor:hover {
        -webkit-transition: none;
        color: var(--main-brand-body-color) !important;
        text-decoration: underline !important;
        transition: none;
    }

.fv-web-portal-wrap {
    max-width: 1130px;
    flex-direction: column;
    margin: 0 auto;
    padding: 1em;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

@media (min-width: 800px) {
    .fv-web-portal-wrap {
        padding: 2.5em 0;
        flex-direction: row;
    }
}

.fv-web-portal-sidebar {
    min-width: 230px;
}

    .fv-web-portal-sidebar ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .fv-web-portal-sidebar li {
        margin: 0;
    }

    .fv-web-portal-sidebar svg {
        max-width: 17px;
        max-height: 17px;
        margin-right: 10px;
    }

    .fv-web-portal-sidebar .portal-link {
        align-items: center;
        border-radius: var(--main-brand-sm-border-radius);
        display: flex;
        font-weight: 600;
        padding: 12px 30px;
        text-decoration: none;
    }

        .fv-web-portal-sidebar .portal-link:hover {
            background-color: #F3F9FA;
            text-decoration: underline;
        }

        .fv-web-portal-sidebar .portal-link.fv-active-portal-sidebar-link {
            background: var(--main-brand-color);
            color: #ffffff !important;
        }

.fv-active-portal-sidebar-link svg path {
    fill: #ffffff;
}

.fv-notification-banner {
    /*    border: 4px solid var(--main-brand-secondary-color);*/
    border-radius: var(--main-brand-sm-border-radius) !important;
    padding: 10px;
}

.fv-web-portal-content-section {
    flex: 1;
}

.fv-details-row-item {
    display: flex;
    min-width: 560px;
    padding: 5px 0;
    margin-bottom: 5px;
    border-bottom: 1px solid #e5e5e5;
}

.fv-details-item-start {
    min-width: 200px;
}

.fv-details-item {
    font-weight: 700;
}

.fv-details-action-link {
    width: 100%;
}

@media (min-width: 800px) {
    .fv-details-action-link {
        margin-top: 1.5em;
    }
}

.fv-details-action-link .fv-portal-button {
    text-align: center;
    width: 100%;
}

@media (min-width: 800px) {
    .fv-details-action-link .fv-portal-button {
        width: auto;
    }
}

.fv-heading-grid {
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
    gap: 10px;
}

@media (min-width: 800px) {
    .fv-heading-grid {
        align-items: center;
        flex-direction: row;
    }
}

.fv-heading-grid-first-item {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.fv-active-badge {
    background: #aaeb76;
    padding: 5px 10px;
}

.fv-action-panel {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 800px) {
    .fv-action-panel {
        flex-direction: row;
    }
}

.fv-details-action-link .fv-portal-button:first-child {
    margin-right: 10px;
}

.fv-action-need-help {
    max-width: 330px;
}

    .fv-action-need-help h3 {
        margin-bottom: 5px;
    }

    .fv-action-need-help p {
        margin: 0;
    }

.fv-intro-heading-text h3 {
    margin: 0 0 5px;
}

.fv-intro-heading-text p {
    margin: 0;
}

.fv-intro-heading-text {
    margin: 35px 0 20px;
}

.fv-portal-card {
    background-color: var(--main-brand-card-background) !important;
    border-radius: var(--main-brand-border-radius) !important;
    border: var(--main-brand-card-border);
    padding: 20px;
}

.fv-heading-grid h2,
.fv-heading-grid p {
    margin: 0;
}

.fv-card-panel-actions .fv-portal-button {
    display: inline-block;
}

.fv-card-preview-block p {
    margin: 5px 0;
}

.fv-card-preview-block {
    display: flex;
    gap: 40px;
}

.fv-card-preview-intro p {
    color: grey;
}

.fv-card-preview-value p {
    font-weight: 600;
}

.fv-card-grid {
    display: flex;
    gap: 1em;
    flex-direction: column;
}

@media (min-width: 800px) {
    .fv-card-grid {
        flex-direction: row;
    }
}

.fv-card-grid .fv-portal-card {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.fv-grid-3-items {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 20px;
}

.fv-web-content-promo-wrap {
    max-width: 1130px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 800px) {
    .fv-web-content-promo-wrap {
        flex-direction: row;
    }
}

.fv-web-content-promo-block {
    padding: 3em 1em;
}

.fv-web-content-promo-main {
    max-width: 460px;
    min-width: 420px;
}

.fv-grid-single-item {
    min-width: 33.3%;
}

    .fv-grid-single-item img {
        border-radius: var(--main-brand-border-radius);
        max-width: 100%;
    }

.fv-web-content-promo-main img {
    border-radius: var(--main-brand-border-radius);
    width: 100%;
}

.fv-web-content-promo-block a {
    color: var(--main-brand-body-color);
    text-decoration: none;
}

    .fv-web-content-promo-block a:hover {
        text-decoration: underline;
    }

.fv-web-content-promo-block h3 {
    font-size: 1em;
    margin: 10px 0;
}

@media (min-width: 800px) {
    .fv-web-content-promo-block h3 {
        font-size: 1.2em;
    }
}



















/** {
  box-sizing: border-box;
}

body {
    background-color: #FAFAFA;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: 400;
	margin: 0;
	padding: 0;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
	color: #333333;
	font-weight: 700;
}

h1 {
	font-size: 40px;
}

h2 {
	font-size: 34px;
}

h3 {
	font-size: 28px;
}

p {
	color: #666666;
}

.section-wrap {
	padding: 1rem;
	margin: 3rem auto;
	max-width: 1200px;
}

@media (min-width: 1300px) {
	.section-wrap {
		padding: 0;
		margin: 3rem auto;
		max-width: 1200px;
	}
}*/

.fv-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.fv-flex-grow {
    flex-grow: 1;
}

.fv-space-between {
    justify-content: space-between !important;
}

@media (min-width: 678px) {
    .fv-flex {
        display: flex;
        align-items: center;
    }
}

.fv-card {
    background-color: #fff;
    border: 1px solid #D9D9D9;
    border-radius: var(--main-brand-sm-border-radius);
    padding: 1rem;
}

/*.fv-card-header {
	margin: 0;
}

.fv-card-with-action {
	justify-content: space-between;
}*/

.fv-flex-action {
    align-self: flex-end;
    margin-left: auto;
}

.fv-flex-action {
    margin-top: 1rem;
}

form.fv-form-flex {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1024px) {
    form.fv-form-flex {
        flex-direction: row;
    }
}

@media (min-width: 678px) {
    .fv-flex-action {
        align-self: flex-end;
        margin: 0 0 0 auto;
    }
}

.fv-flex-wrap {
    flex-wrap: wrap;
}

/*.fv-width-100 {
    width: 100%;
}*/

p.fv-section-text {
    color: #666;
}

/*ul.fv-card-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul.fv-card-list li {
    color: #666666;
}

.border-top {
    border-top: 1px solid #DEDEDE;
}

.border-bottom {
    border-bottom: 1px solid #DEDEDE;
}

.oomi-input-field {
	appearance: none;
	border: 1px solid #D9D9D9;
	border-radius: 10px;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 1rem;
	width: 100%;
}

.fv-resp-w100 {
	display: block;
	width: 100%;
}

.mt-0{margin-top:0;}.mt-1{margin-top:1rem;}.mt-2{margin-top:2rem;}.mt-3{margin-top:3rem;}
.mb-0{margin-bottom:0;}.mb-1{margin-bottom: 1rem;}.mb-2{margin-bottom:2rem;}.mb-3{margin-bottom:3rem;}
.pt-0{padding-top:0;}.pt-1{padding-top:1rem;}.pt-2{padding-top:2rem;}.pt-3{padding-top:3rem;}
.pb-0{padding-bottom:0;}.pb-1{padding-bottom:1rem;}.pb-2{padding-bottom:2rem;}.pb-3{padding-bottom:3rem;}

.fv-button {
    appearance: none;
    background: #0066FF;
    border-radius: 12px;
    border: none;
    color: #ffffff;
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    max-height: 44px;
    padding: .7rem 2.5rem;
    text-align: center;
    text-decoration: none;
}

.fv-secondary-button {
    color: #000000;
    background: #D2DDEE;
}

.fv-alert-button {
    background-color: #F04813;
    color: #ffffff;
}

.fv-button:hover {
    text-decoration: underline;
}

.fv-button:active,
.fv-button:focus {
    outline: 3px solid #2e45bd;
    outline-offset: 0;
    box-shadow: 0 0 0 6px #b7c2fd;
}

.form-section label {
	display: inline-block;
	margin-bottom: .5rem;
}

p.fv-text-muted {
    font-size: 90%;
    font-style: italic;
}

span.user-card-success {
    font-weight: 500;
}

span.user-card-success:before {
    content: "";
    width: 15px;
    height: 15px;
    display: inline-block;
    background: #12D25F;
    margin-right: 5px;
    border-radius: 50%;
}



@media (min-width: 600px) {
    
    .fv-4-col-grid {
        display: flex;
        column-gap: 1rem;
    }

    .fv-4-col-grid > div {
        column-gap: 1rem;
        display: flex;
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .fv-4-col-grid > div {
        width: 25%;
    }
}

.fv-product-card-image {
    position: relative;
    overflow: hidden;
}

.fv-product-card-image img {
	display: block;
    border-radius: 6px;
    min-height: 175px;
    width: 100%;
}

span.event-alert {
    text-align: center;
    display: block;
    margin-top: 1rem;
    background: #f1f3fd;
    padding: 0.4rem;
    font-size: 90%;
}

span.event-success {
    text-align: center;
    display: block;
    margin-top: 1rem;
    background: #D2F0DE;
    padding: 0.4rem;
    font-weight: 500;
}

.fv-product-card {
    align-items: flex-start;
	display: flex;
    flex-direction: column;   
    justify-content: space-around; 
}

.position-relative {
	position: relative;
}

.position-absolute {
	position: absolute;
}

.fv-single-banner-col {
    min-height: 310px;
    overflow: hidden;
    position: relative;
}

.fv-single-banner-col img {
	position: absolute;
	min-height: 310px;
	width: 100%;
}

@media (min-width: 768px) {
	.fv-single-banner-col {
	    min-height: 400px;
	}

	.fv-single-banner-col img {
		min-height: 400px;
	}
}

.fv-single-banner-heading {
    bottom: 2rem;
}

.fv-text-light {
	color: #ffffff;
}

.fv-single-banner-heading h1 {
    margin: 0;
}

aside.fv-content-aside {
    max-width: 350px;
    min-width: 350px;
}

.fv-img-full {
	width: 100%;
}*/

.fv-gap-10 {
    column-gap: 10px;
    row-gap: 10px;
}

.fv-gap-20 {
    column-gap: 20px;
    row-gap: 20px;
}

/*.gap-30 {
	column-gap: 30px;
}

.fv-icon-text img {
	vertical-align: middle;
	margin-right: 7px;
}

.fv-align-center {
    text-align: center;
}

.fv-align-left {
	text-align: left !important;
}*/

.fv-form-row {
    margin-bottom: 1rem;
}

/*label.fv-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 16px;
    font-weight: 500;
}

.fv-input-field {
    display: block;
    width: 100%;
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid #D9D9D9;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.sticky-div {
    background: #fff;
    border-top: 1px solid #D9D9D9;
    bottom: 0;
    left: 0;
    padding: 2rem;
    position: fixed;
    right: 0;
    z-index: 1;
}

.bottom-wrap {
	margin: 0 auto;
	max-width: 1024px;
}

.bottom-wrap a {
	margin-right: 1rem;
}

.pb-xl {
	padding-bottom: 5rem;
}

.fv-active-step {
	background: #FF9900;
	border-radius: 15px;
	color: #fff;
	display: inline-block;
	font-weight: 500;
	margin-right: 0.5rem;
	padding: 0.3rem 0.9rem;
}

.ng-form-flex {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.fv-alert-card {
    padding: 1rem;
    background: #fff3e0;
}

span.fv-member-profile {
    background: #F5F5F5;
    padding: 2rem;
    display: inline-block;
    border-radius: 100%;
    font-size: 3rem;
}

ul.fv-member-nav {
    padding: 0;
    margin: 0;
}

ul.fv-member-nav li {
    list-style: none;
    border-bottom: 1px solid #D9D9D9;
}

ul.fv-member-nav li:last-child {
    border-bottom: none;
}

ul.fv-member-nav li a {
    padding: 0.7rem;
    display: block;
    color: black;
    text-decoration: none;
}

ul.fv-member-nav li a.fv-active-nav {
    background: #4663ff;
    color: white;
    font-weight: 600;
}

ul.fv-member-nav li a:hover {
    text-decoration: underline;
}*/


/* new stuff */

/*section.fv-portal-nav-container {
    background: #ffffff;
}

ul.fv-nav-ul {
    display: flex;
    padding: 0;
    margin: 0;
}

li.fv-nav-li {
    list-style: none;
}

li.fv-nav-li a {
    padding: 1em;
    display: inline-block;
    text-decoration: none;
}

a.fv-nav-li-active {
    border-bottom: 4px solid blue;
    padding-bottom: 1em;
}

.fv-nav-wrap {
    margin: 0 auto;
    max-width: 1200px;
}*/

.fv-notification {
    padding: 1em;
    background-color: #F4F7FB;
    border-radius: var(--main-brand-sm-border-radius);
    border: 1px solid #D2DDEE;
    color: #000000;
    margin-bottom: 1em;
}

    .fv-notification p {
        color: #000000;
    }

.fv-notification-success {
    background-color: #E5FFF0;
    border-color: #12D25F;
}

.fv-notification-warning {
    background-color: #FFF6E9;
    border-color: #FF9900;
}

.fv-notification-alert {
    background-color: #FFEFED;
    border-color: #FF5336;
}

.fv-notification h4 {
    font-size: 1.2em;
    margin: 0 0 .5em 0;
}

.fv-notification p {
    margin: 0;
}

.fv-card-alert {
    border-left: 5px solid #ff8b5f;
    background: #fdf2ed;
}

/*.fv-badge {
    background: #D2DDEE;
    border-radius: 12px;
    font-size: 80%;
    padding: 5px 10px;
}

.fv-badge.fv-primary-badge {
    background: #0066FF;
    color: #ffffff;
}

.fv-badge.fv-alert-badge {
    background: #F04813;
    color: #ffffff;
}

.fv-card-meta-info p {
    margin: 0 0 0.2em 0;
    word-break: break-word;
}

.fv-border-radius-sm {
    border-radius: 6px;
}*/

ul.fv-breadcrumb-ul {
    margin: 0;
    padding: 0;
    display: flex;
}

li.fv-breadcrumb-li {
    list-style: none;
}

    li.fv-breadcrumb-li a:after {
        content: "\203A";
        display: inline-block;
        height: 15px;
        margin: 0 8px;
        width: auto;
    }

/*.fv-full-product-card .fv-product-card-image img {
    max-width: 380px;
    min-height: auto;
}

.fv-full-product-card {
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
}

.fv-full-product-card-details {
    flex-grow: 1;
}*/

.fv-flex-button-container {
    display: flex;
    gap: 1rem;
    max-width: 500px;
}

/*ul.fv-card-meta-data-ul {
    display: flex;
    margin: 0;
    padding-left: 0;
    font-size: 90%;
}

li.fv-card-meta-data-li {
    list-style: none;
}

li.fv-card-meta-data-li:after {
    content: "\2013";
    margin: 0 5px;
}

li.fv-card-meta-data-li:last-child:after {content: "";
}*/

table.fv-card-table {
    border-collapse: collapse;
    color: var(--main-brand-body-color) !important;
    font-family: var(--main-brand-font) !important;
    font-weight: 400 !important;
    font-size: var(--main-brand-font-size);
    width: 100%;
}

    table.fv-card-table thead {
        background: var(--main-brand-secondary-color) !important;
        color: #fff !important;
    }

    table.fv-card-table td,
    table.fv-card-table th {
        text-align: left;
        padding: 12px;
    }

    table.fv-card-table tr {
        border-bottom: 1px solid #dedede;
    }

        table.fv-card-table tr:last-child {
            border-bottom: none;
        }

        table.fv-card-table tr:nth-child(even) {
            background-color: #FAFAFA;
        }

.align-table-container {
    width: 100%;
    padding: 10px;
}

/*added for table responsiveness*/
@media screen and (max-width: 600px) {
    table.fv-card-table {
        border: 0;
    }

        table.fv-card-table thead {
            border: none;
            clip: rect(0 0 0 0);
            height: 1px;
            margin: -1px;
            overflow: hidden;
            padding: 0;
            position: absolute;
            width: 1px;
        }

        table.fv-card-table tr {
            display: block;
            /*margin-bottom: .625em;*/
        }

        table.fv-card-table td {
            border-bottom: 1px solid #ddd;
            display: block;
            font-size: .8em;
            text-align: right;
        }

            table.fv-card-table td::before {
                content: attr(data-label);
                float: left;
                font-weight: bold;
                text-transform: uppercase;
            }

            table.fv-card-table td:last-child {
                border-bottom: 0;
            }
}

/* NJ - events page start form here */

.fv-FW-600 {
    font-weight: 600;
}

.fv-event-tabbed-img-wrap img {
    width: 100%;
    height: 400px !important;
}

.fv-event-tabbed-img-content {
    background: rgba(255, 255, 255, 0.75);
    padding: 2rem;
    position: absolute;
    left: 0px;
    top: 120px;
    z-index: 1000;
}

.fv-event-tabbed-min-sec {
    border-bottom: 3px solid var(--main-brand-primary-button-bg);
}

.fv-event-tabbed {
    display: flex !important;
    flex-direction: column !important;
}

    .fv-event-tabbed li {
        padding: 7px 3px;
        background: #E1EAEF;
        margin: 3px;
    }

    .fv-event-tabbed a {
        padding: 10px;
    }

.fv-event-single-tabbed-wrap {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.fv-event-tabbed-main-heading {
    font-size: 32px !important;
    line-height: 50px !important;
    color: #005F9D;
}

.fv-event-tabbed-sub-heading {
    font-size: 24px;
    font-weight: 600;
    color: #005F9D;
}

.fv-event-tabbed-reg-intructions-ol {
    list-style-type: decimal;
    padding: 10px 30px;
}

.fv-event-tabbed-reg-intructions-ul {
    list-style-type: disc;
    padding: 10px 30px;
}

    .fv-event-tabbed-reg-intructions-ol li, .fv-event-tabbed-reg-intructions-ul li {
        line-height: 40px;
    }

.fv-event-tabbed-a {
    color: #505050;
    font-weight: 600;
    text-decoration: underline;
}

.fv-event-tabbed-card-grid {
    display: flex;
    gap: 1em;
    flex-direction: column;
    margin: 1em 0em;
}

.fv-event-tabbed-card-table {
    width: 100%;
    border-collapse: collapse;
}

.fv-event-tabbed-mob-overflow {
    overflow-x: auto;
}

table.fv-event-tabbed-card-table th, table.fv-event-tabbed-card-table td {
    padding: 10px;
}

.fv-event-tabbed-card-table thead {
    background: #E9EDF1;
    font-weight: 700;
    text-align: left;
}

.fv-event-tabbed-col-w20 {
    width: 20%;
}

.fv-event-tabbed-col-w25 {
    width: 25%;
}

.fv-event-tabbed-col-w50 {
    width: 50%;
}

.fv-event-tabbed-col-w15 {
    width: 15%;
}

.fv-event-tabbed-ol {
    list-style-type: decimal;
    padding: 10px 30px;
    line-height: 30px;
}

.fv-event-tabbed-ul {
    list-style-type: disc;
    padding: 10px 30px;
    line-height: 30px;
}

.fv-event-tabbed-light-bg {
    background: #F6F7F8;
    padding: 25px;
}

.fv-flex-row {
    display: flex;
    gap: 20px;
    flex-direction: row;
    margin-top: 12px;
    justify-content: center;
}

.fv-item-center {
    align-items: center;
}

.fv-event-tabbed-flex {
    display: flex;
    gap: 20px;
    flex-direction: column-reverse;
}

.fv-event-tabbed-contnet-img-div {
    flex-shrink: 0;
}

.fv-event-tabbed-flex-row-reverse {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.fv-event-tabbed-location-light-bg {
    background: #F6F7F8;
    padding: 10px 20px;
}

/*here css added to remove default jquery css */
.ui-widget-content, .ui-widget-header {
    background: none;
    border: none !important;
    color: var(--main-brand-body-color) !important;
}

    .ui-widget-header .ui-state-default {
        border: none !important;
        background: #E1EAEF;
        color: white;
        border-radius: 0px !important;
    }

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
    color: white;
    background: var(--main-brand-color);
    font-weight: 600;
}

.ui-tabs .ui-tabs-panel {
    padding: 1em;
}

.warning {
    margin: 0px auto 20px auto;
    padding: 10px;
    background: #FAFAFA;
    position: relative;
    border: 1px solid #EAEAEA;
    border-left: 4px solid #4D607A;
    box-shadow: inset 0 0 14px rgb(0 0 0 / 3%);
    text-transform: none;
    font-weight: 400;
    text-align: center;
}

    .warning p {
        font-weight: bold;
    }

.failure {
    background: #FAFAFA;
    border-left: 4px solid #DC3952;
}

    .failure p {
        color: #DA314B;
    }

.success {
    background: #FAFAFA;
    border-left: 4px solid #90C353;
}

    .success p {
        color: #8CC14C;
    }

.fv-event-grid-item-w-100 {
    display: flex;
    width: 100%;
    gap: 20px;
    padding-bottom: 1em;
}

.fv-event-grid-label-wrap {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

span.fv-label-d1 {
    background: #ababb3;
    padding: 2px 5px;
    border-radius: 3px;
    color: #fff;
}

.fv-border-bottom {
    border-bottom: 1px solid #e2e2e2;
}

/*end default jquery css */


.fv-memform-bg {
    background: #1E4164;
    padding: 10px;
    color: #fff !important;
}

    .fv-memform-bg h1 {
        font-size: 50px;
    }


.fv-progressbar-bg {
    background: #EFF3F8;
}

section.box-section.Division\(s\).Selection {
    display: flex;
    align-items: flex-end;
}

.fv-form-w-60 {
    width: 100%;
}

.fv-hero-webform-p {
    font-size: 30px;
}

@media (min-width: 1024px) {
    .fv-form-w-60 {
        width: 60% !important;
    }


    .ui-tabs .ui-tabs-panel {
        padding: 2.5em 0em;
    }

    .fv-event-tabbed-flex {
        flex-direction: row;
    }

    .fv-event-tabbed li {
        margin: 0px 2px;
    }

    .fv-event-single-tabbed-wrap {
        flex-direction: row;
        gap: 50px;
    }

    .fv-event-tabbed-ol {
        padding: 15px 30px;
        line-height: 40px;
    }

    .fv-event-tabbed-ul {
        padding: 15px 30px;
        line-height: 40px;
    }

    .fv-event-tabbed-flex-row-reverse {
        flex-direction: row;
    }

    .fv-event-tabbed {
        flex-direction: row !important;
    }
}

/* NJ - events page end here */



.membership-division-selection {
    overflow: hidden;
}

.division-selection {
    padding: 1em;
    border: 1px solid #CBD5E1;
    border-radius: var(--main-brand-border-radius);
    overflow: hidden;
    position: relative;
    margin-right: 1em;
    width: 220px;
    min-height: 150px;
}

.checkbox-selected {
    padding: 1em;
    border: 1px solid #1E4164;
    border-radius: var(--main-brand-border-radius);
    overflow: hidden;
    position: relative;
    margin-right: 1em;
    width: 220px;
    min-height: 150px;
}

.division-selection .division-select-img-block {
    width: 100%;
    height: 90px;
    margin-bottom: 1em;
}

.division-selection.MotorFinanceDivision .division-select-img-block {
    background-image: url('../images/MFD.png');
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}

.division-selection.ConsumerFinanceDivision .division-select-img-block {
    background-image: url('../images/CFD.png');
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}

.division-selection.AssetFinanceDivision .division-select-img-block {
    background-image: url('../images/AFD.png');
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}

.division-label {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 125px;
    padding-left: 45px;
    cursor: pointer;
}

.division-select-label {
    font-weight: 600;
}

input[type='checkbox'] {
    accent-color: #1E4164;
    height: 18px;
    width: 18px;
}


/*toggle password*/
.password-container {
    position: relative;
    width: 100%;
}

.field-icon, .toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-90%);
    cursor: pointer;
}

.fv-gird-inline-mob {
    display: inline-flex;
    gap: 20px;
    align-items: center;
}

@media (max-width: 667px) {
    .fv-gird-inline-mob {
        flex-direction: column;
        align-items: baseline !important;
    }
}

.event-booking-model-bg {
    background: white;
    z-index: 44444;
}

.fv-icon-color i {
    color: var(--main-brand-body-color);
    font-size: 90%;
}

.fv-card-table td[colspan] {
    padding: 12px 0px;
}

.fv-shrink-0 {
    flex-shrink: 0;
}

span.fv-date-icon {
    position: relative;
}

    span.fv-date-icon svg {
        position: absolute;
        top: 0;
        right: 10px;
        pointer-events: none;
    }

.fv-justify-start{
    justify-content:start;
}
    .fv-justify-start input#Radio, .fv-justify-start input#Radio1 {
        flex-shrink:0;
    }


.my-1 {
    margin: 1em 0em;
}

.fv-event-delegate-img {
    height: 100px;
    width: 100px;
}

.fv-delegate-detail li {
    border-bottom: var(--main-brand-card-border);
    padding: 10px;
}

    .fv-delegate-detail li:last-child {
        border-bottom: none;
    }

.fv-event-delegate-p p {
    margin: 0px;
    font-weight: 500;
}

.px-1 {
    padding: 0em 1em;
}

.fv-event-delegate-p-span {
    font-size: 80%;
}

.fv-text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fv-800-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.fv-background-accent-row {
    background: #e5eaef;
    padding: 1em;
}



.fv-heading-with-border {
    padding-bottom: 0.5em;
    border-bottom: 1px solid #e3e8ed;
}

.fv-alert-p {
    background: #fff5e2;
    padding: 1em;
}