/* Regional Content 1.0.0 by Jesse Fowler, Copyright 2020 Fiserv. All rights reserved. */
.regional-content {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    position: fixed;
    width: 100%;
    height: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 4010;
    padding: 1rem;
}

    .regional-content::before {
        content: '';
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        z-index: 4000;
        height: 100vh;
        width: 100vw;
        background-color: rgba(0,0,0,.85);
    }

    .regional-content.dismissed {
        display: none;
    }

.regional-content-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 2rem;
    background-color: #fff;
    box-sizing: border-box;
    box-shadow: 0px .35rem 0 0rem rgb(170, 170, 170), 0px 15px 30px rgba(0,0,0,.75);
    border-radius: .25rem;
}

@media (min-width:34rem) {
    .regional-content-form {
        max-width: 32rem;
    }
}

@media (max-width:34rem) {
    .regional-content-form {
        max-width: calc(100% - 2rem);
    }
}

.regional-content > form {
    display: block;
    width: 100%;
    z-index: 4010;
}

    .regional-content > form > *:first-child {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .regional-content > form > *:not([class*='Button']):last-child {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

.regional-content > .regional-content-close {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    top: 0;
    z-index: 4010;
    margin: 1rem;
    font-size: 2rem;
    height: 2rem;
    width: 2rem;
    color: #fff;
    cursor: pointer;
}

    .regional-content > .regional-content-close:hover {
        color: #ccc;
    }

    .regional-content > .regional-content-close:before {
        font-family: 'FontAwesome';
    }

/* Pre styled forms  */

.pre-styled form {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.pre-styled form {
    margin-bottom: 0;
    width: 100%;
}

@media (max-width:28rem) {
    .pre-styled > form > *:nth-last-child(2) input,
    .pre-styled > form > button:last-child {
        width: 100%;
    }
}

@media (min-width:28rem) {
    .pre-styled > form > *:nth-last-child(2) input {
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    .pre-styled > form > button:last-child {
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }
}

.pre-styled h1,
.pre-styled h2,
.pre-styled h3 {
    width: 100%;
    margin: 0;
}

.pre-styled label {
    flex-grow: 1;
    margin: 0.25em 0;
    /* width: 100%; */
    border-right: solid 1px rgb(238, 238, 238);
    position: relative;
    line-height: inherit;
    box-sizing: border-box;
    font-size: inherit;
}

.pre-styled label {
    min-height: 3em;
}

.pre-styled button {
    margin: 0.25em 0;
    cursor: pointer;
}

.pre-styled label span {
    display: none;
}

.pre-styled input:not([type=radio]):not([type=checkbox]),
.pre-styled select,
.pre-styled textarea {
    border: none;
    width: 100%; /* Comment out if not using label > input structure*/
    box-sizing: border-box;
    border-radius: 0;
    padding: 0.5em 1em;
    background-color: rgb(255, 255, 255);
    height: 100%;
    line-height: inherit;
    font-size: inherit;
    font-family: inherit;
    transition: background-color 0.25s ease;
    border: solid 1px rgba(204, 204, 204, 1);
    -webkit-appearance: none;
}

.pre-styled textarea {
    min-height: 10em;
    resize: vertical;
}

.pre-styled input:not([type=radio]):not([type=checkbox]) {
    -webkit-appearance: none;
    -moz-appearance: none;
}

    .pre-styled input:not([type=radio]):not([type=checkbox]):focus,
    .pre-styled select:focus,
    .pre-styled textarea:focus {
        background-color: rgba(238, 238, 238, 0.75);
    }

.pre-styled ul {
    display: flex;
    list-style: none;
    padding: 0;
    width: 100%;
}

    .pre-styled ul li {
        margin: 0 1em 0 0;
        list-style-type: none;
    }

.pre-styled ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: rgb(51, 51, 51);
}

.pre-styled ::-moz-placeholder { /* Firefox 19+ */
    color: rgb(51, 51, 51);
}

.pre-styled :-ms-input-placeholder { /* IE 10+ */
    color: rgb(51, 51, 51);
}

.pre-styled :-moz-placeholder { /* Firefox 18- */
    color: rgb(51, 51, 51);
}

.pre-styled fieldset {
    border: none;
    padding: 0;
    margin: 0 0 0.5em 0;
    display: block;
    position: relative;
    flex-grow: 1;
}

    .pre-styled fieldset legend {
        display: block;
        margin-bottom: 0.5em;
    }

    .pre-styled fieldset label {
        border: none;
        width: auto;
        display: inline-flex;
        flex-wrap: wrap;
        height: auto;
        margin-right: 1em;
        overflow: hidden;
        cursor: pointer;
    }

        .pre-styled fieldset label:last-child {
            margin-right: 0;
        }

.pre-styled input[type=radio] {
    position: absolute;
    left: -12em;
    top: -12em;
    visibility: hidden;
}

    .pre-styled input[type=radio] + span::before {
        content: "";
        width: 1em;
        height: 1em;
        display: inline-flex;
        border-radius: 50%;
        border: solid 2px #666;
        margin-right: 0.5em;
        transition: background-color 0.25s ease;
    }

    .pre-styled input[type=radio]:checked + span::before {
        background-color: rgb(102, 102, 102);
    }

    .pre-styled input[type=checkbox] + span,
    .pre-styled input[type=radio] + span {
        display: block;
    }

/* Border Radius */

.pre-styled input:not([type=radio]):not([type=checkbox]),
.pre-styled select,
.pre-styled textarea,
.pre-styled button {
    border-radius: .25em; /*Change the border-radius here.*/
}

.pre-styled label {
    border: none;
}

.regional-content-template {
    display: none !important;
}

.zip-error-valid-zip {
    width: 100%;
    display: none;
    color: red;
}

#regional-content-form.zip-invalid .zip-error-valid-zip {
    display: inherit;
}

/* Customize based on the region title you have */
html.in-region .out-of-region {
    display: none !important;
}

.in-region:not(html) {
    display: none;
}

html.in-region .in-region:not(html) {
    display: inherit;
}

.regional-content h1 {
    line-height: 1em;
}

/* Online Banking 1.10.1 by JP Larson, Copyright 2020 Fiserv. All rights reserved. */
#login,
#login form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#login {
    background-color: #eee;
    padding: 1em 2em;
    box-sizing: border-box;
    width: 20em;
    font-size: 1rem;
    position: relative;
    z-index: 340;
    align-content: center;
}

@media only screen and (min-width: 670px) {
    #login {
        font-size: 1rem;
    }
}

#login form {
    margin-bottom: 0;
    width: 100%;
}

#login h2 {
    width: 100%;
    margin-top: 0;
}

#login label {
    flex-grow: 1;
    margin: 0.25em 0;
    border-right: solid 1px #eee;
    position: relative;
    line-height: inherit;
    box-sizing: border-box;
    font-size: inherit;
    box-shadow: none !important;
}

#login form label {
    width: 51%;
}

#login label,
#login [class*=Button] {
    height: 3em;
}

#login [class*=Button] {
    border: none;
    margin: 0.25em 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #aaa;
    font-size: 1em;
    padding: 0 0.75em;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

    #login [class*=Button]:hover {
        background-color: #ccc;
    }

#login label span {
    display: none;
}

#login:not(.personal) .personal,
#login:not(.business) .business,
#login:not(.other) .other {
    display: none;
}

#login input:not([type=radio]):not([type=checkbox]),
#login select {
    border: none;
    width: 100%; /* Comment out if not using lable > input structure*/
    box-sizing: border-box;
    border-radius: 0;
    padding: 0 1em;
    background-color: #fff;
    height: 100%;
    font-size: inherit;
    font-family: inherit;
    transition: background-color 0.25s ease;
    border: solid 1px rgba(204, 204, 204, 1);
    -webkit-appearance: none;
    -moz-appearance: none;
}

#login label .error {
    padding-left: 1rem;
    padding-right: 1rem;
    z-index: -1;
}

select::-ms-value {
    background: none;
    color: inherit;
}

#login select::-ms-expand {
    display: none;
}

#login input:not([type=radio]):not([type=checkbox]):focus {
    background-color: #eee;
}

#login ul {
    display: flex;
    list-style: none;
    padding: 0;
    width: 100%;
}

    #login ul li {
        margin: 0 1em 0 0;
        list-style-type: none;
    }

#login ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #333;
}

#login ::-moz-placeholder { /* Firefox 19+ */
    color: #333;
}

#login :-ms-input-placeholder { /* IE 10+ */
    color: #333;
}

#login :-moz-placeholder { /* Firefox 18- */
    color: #333;
}

#login fieldset {
    border: none;
    padding: 0;
    margin: 0 -0.5em 0.5em -0.5em;
    padding: 0.5em;
    display: block;
    position: relative;
    flex-grow: 1;
}

    #login fieldset legend {
        display: block;
        margin-bottom: 0.5em;
        float: left;
        width: 100%;
    }

    #login fieldset label {
        border: none;
        width: auto;
        display: inline-flex;
        flex-wrap: wrap;
        height: auto;
        margin-right: 1em;
        overflow: hidden;
        cursor: pointer;
        clear: both;
    }

        #login fieldset label:last-child {
            margin-right: 0;
        }

#login input[type=radio] {
    position: absolute;
    left: -12em;
    top: -12em;
    visibility: hidden;
}

    #login input[type=radio] + span::before {
        content: "";
        width: 1em;
        height: 1em;
        display: inline-flex;
        border-radius: 50%;
        border: solid 2px #666;
        margin-right: 0.5em;
        transition: background-color 0.25s ease;
    }

    #login input[type=radio]:checked + span::before {
        background-color: #666;
    }

    #login input[type=checkbox] + span,
    #login input[type=radio] + span {
        display: block;
    }

#login .validation {
    display: none !important;
}

#login label:last-of-type input:not([type=radio]):not([type=checkbox]) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right-width: 0;
}

#login label {
    border: none;
}

#login input + span[class*=fa-],
#login select + span[class*=fa-] {
    position: absolute;
    display: flex;
    height: 100%;
    right: 0.5em;
    top: 0;
    align-items: center;
    font-size: 1.5em;
    pointer-events: none;
}

#login.loading {
    pointer-events: none;
}

#login .spinner {
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.75);
    z-index: 12;
    border-radius: inherit;
    padding: inherit;
    box-sizing: border-box;
    text-align: center;
}

    #login .spinner,
    #login .spinner::after {
        transition: opacity 0.25s 0s ease;
        opacity: 0;
    }

#login.loading .spinner {
    opacity: 1;
}

    #login.loading .spinner::after {
        opacity: 0.75;
    }

#login .spinner::after {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

#login .spinner::after {
    content: "";
    width: 3em;
    height: 3em;
    border-radius: 50%;
    box-sizing: border-box;
    border: solid 0.25em rgba(170, 170, 170, 0.5);
    border-top-color: transparent;
    border-bottom-color: transparent;
    animation-name: spinner;
    animation-duration: 1.25s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    z-index: 4;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
        border-width: 1.5em;
    }

    50% {
        border-width: 0.25em;
    }

    100% {
        transform: rotate(360deg);
        border-width: 1.5em;
    }
}

/* Border Radius */
#login.rounded-corners,
#login.rounded-corners.horizontal fieldset ~ form label:first-child input:not([type=radio]):not([type=checkbox]),
#login.rounded-corners input:not([type=radio]):not([type=checkbox]),
#login.rounded-corners select,
#login.rounded-corners [class*=Button],
#login.rounded-corners label .error {
    border-radius: 0.5em; /*Change the border-radius here. */
}

    #login.rounded-corners label .error,
    #login.rounded-corners fieldset .error {
        border-top: solid 2.5rem transparent;
        transform: translateY(-2.5rem);
    }

    #login.rounded-corners form:not(.error) [class*=Button],
    #login.rounded-corners.horizontal form.error [class*=Button] {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    #login.rounded-corners.horizontal fieldset ~ form label:first-child input:not([type=radio]):not([type=checkbox]) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
/* Hide Password */
#login.hide-password form label + label {
    display: none;
}

#login.hide-password form label.valid + label {
    display: flex;
}

#login.hide-password label:not(.valid) input:not([type=radio]):not([type=checkbox]) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right-width: 0;
}

/* Horizontal Layout */
@media (min-width: 768px) {
    #login.horizontal {
        width: auto;
        flex-direction: row;
    }

        #login.horizontal label {
            width: 10em;
        }

        #login.horizontal form {
            flex-grow: 2;
            flex-wrap: nowrap;
            width: 24em;
        }

        #login.horizontal fieldset {
            margin-right: 0.5em;
            flex-grow: 0;
            max-width: 24em;
        }

        #login.horizontal input:not([type=radio]):not([type=checkbox]) {
            border-left-width: 0;
            border-right-width: 0;
        }

        #login.horizontal label + label input:not([type=radio]):not([type=checkbox]),
        #login.horizontal fieldset ~ form label:first-child input:not([type=radio]):not([type=checkbox]) {
            border-left-width: 1px;
        }

        #login.horizontal.rounded-corners form input:not([type=radio]):not([type=checkbox]) {
            border-radius: 0;
        }

        #login.horizontal.rounded-corners select {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
        }
}

/* Error and Direct Login*/
#login form:not(.error) > .error,
#login form.error > label,
#login form.error > [class*=Button] {
    display: none !important;
}

#login form > .error {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    width: 100%;
}

#login form.error .error [class*=Button] {
    flex-grow: 1;
}

#login form .error .message {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 5;
    background-color: rgba(255,255,255,0.9);
    margin: 0;
    padding: 1.5em;
    font-size: 1.25em;
    line-height: 1.2;
    box-sizing: border-box;
}

#login:not(.loading) form.error.message .error .message {
    opacity: 1;
    pointer-events: all;
}

@media (min-width: 768px) {
    #login.horizontal form.error {
        flex-grow: 0;
        width: auto;
    }
}

/* Validate Form 1.4.2 by JP Larson, Copyright 2020 Fiserv. All rights reserved. */
.validate-form label,
.validate-form fieldset {
    position: relative;
}

    .validate-form label .error,
    .validate-form fieldset .error {
        display: flex !important;
        content: "Please fill out this field.";
        font-size: 0.75em;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: block;
        z-index: 10;
        background-color: #666;
        padding: 1em;
        box-sizing: border-box;
        color: #fff;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }

.validate-form :invalid {
    box-shadow: none;
}

.validate-form .invalid {
    box-shadow: inset 0 0 0 2px #666 !important;
    z-index: 100;
    animation-name: slideShake;
    animation-iteration-count: 2;
    animation-duration: 0.0833s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    z-index: 900;
}

    .validate-form .invalid .error {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

.validate-form .validation {
    display: flex !important;
    position: absolute;
    right: 0;
    bottom: 0;
    color: rgb(255, 102, 0);
    font-size: 0.75em;
    padding: 0.25em 0.5em 0.25em 0.25em;
    opacity: 0.5;
    transition: opacity 0.25s ease;
    z-index: 346;
    align-items: center;
    align-content: center;
    margin: 0;
}

    .validate-form .validation:hover {
        opacity: 1;
    }

    .validate-form .validation::before {
        display: block;
        font-family: 'FontAwesome';
    }

    .validate-form .validation::after {
        display: block;
        max-width: 0;
        overflow: hidden;
        transition: max-width 0.25s ease, margin 0.25s ease;
    }

    .validate-form .validation:hover::after {
        max-width: 5em;
        margin-left: 0.25em;
    }

.validate-form .required .validation::before {
    content: "\f06a";
}

.validate-form .required .validation::after {
    content: "Required";
}

.validate-form .valid .validation::before {
    content: "\f058";
}

.validate-form .valid .validation::after {
    content: "Completed";
}

.validate-form .valid .validation {
    color: rgb(102, 102, 102);
}

.validate-form fieldset label .validation,
.validate-form fieldset label .error {
    display: none !important;
}

@keyframes slideShake {
    0% {
        transform: translateX(0em);
    }

    25% {
        transform: translateX(-0.125em);
    }

    75% {
        transform: translateX(0.125em);
    }

    100% {
        transform: translateX(0em);
    }
}

/* Table-Timeline */
[class*="Subsection-Table"][class*="-Red"] {
    background: linear-gradient(to bottom, #942c31 0%, #ee2529 100%);
}

/* Table-Timeline */
[class*="Table-"][class*="-Grow"][class*="-Panel"][class*="-Timeline"] {
    position: relative;
    display: flex;
    width: 100%;
}

    [class*="Table-"][class*="-Grow"][class*="-Panel"][class*="-Timeline"]:before {
        content: "";
        position: absolute;
        top: 0;
        left: 1.5rem;
        transform: translateX(-.5rem);
        background-color: #fff;
        width: .03rem;
        height: 100%;
        border-radius: 50rem;
    }

@media (min-width:1001px) {
    [class*="Table-"][class*="-Grow"][class*="-Panel"][class*="-Timeline"]:before {
        left: 50%;
        transform: translateX(-.015rem);
    }
}

[class*="Table-"][class*="-Grow"][class*="-Panel"][class*="-Timeline"] > * {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 2rem);
}

[class*="Table-"][class*="-Panel"][class*="-Timeline"] > * {
    margin: 1.5rem -1rem;
}

@media (min-width:1001px) {
    [class*="Table-"][class*="-Panel"][class*="-Timeline"] > * {
        margin: 1.5rem -1rem;
    }
}

[class*="Table-"][class*="-Timeline"] > * > tr {
    position: relative;
    display: flex;
    width: calc(100% - 6rem);
    transition: all 1s;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.25);
}

@media screen {
    body:not(#tinymce) [class*="Table-"][class*="-Timeline"] > * > tr {
        transform: translateX(-100vw);
        opacity: 0;
    }

        body:not(#tinymce) [class*="Table-"][class*="-Timeline"] > * > tr:nth-child(even) {
            transform: translateX(100vw);
        }

        body:not(#tinymce) [class*="Table-"][class*="-Timeline"] > * > tr:first-child,
        body:not(#tinymce) [class*="Table-"][class*="-Timeline"] > * > tr.scroll-active {
            transform: translateX(0vw);
            opacity: 1;
        }
}

@media (min-width:1001px) {
    [class*="Table-"][class*="-Timeline"] > * > tr {
        width: calc(50% - 6rem);
    }
}

body:not(#tinymce) [class*="Table-"][class*="-Timeline"] > * > tr:hover {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.25), 0 0 0 .5rem rgba(255, 255, 255, .5);
    cursor: pointer;
    opacity: 1;
}

[class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr {
    margin: 1rem 1rem 1rem auto;
    border-radius: .3rem;
}

@media (min-width:1001px) {
    [class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr {
        margin: -.5rem 1rem;
        margin-right: 20%;
    }

        [class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr:nth-child(even) {
            margin-left: auto;
            margin-right: 1rem;
        }
}

[class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr:before {
    content: "";
    position: absolute;
    top: 2.15rem;
    z-index: -1;
    background-color: #fff;
    width: 5.5rem;
    height: .03rem;
    border-radius: 50rem;
    transition: all .4s;
}

[class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr:after {
    content: "";
    position: absolute;
    top: 1.15rem;
    z-index: -1;
    background-color: #fff;
    background-image: url(../images/Logomark.svg);
    background-size: contain;
    width: 2rem;
    height: 2rem;
    border-radius: 50rem;
    transition: all .4s;
    box-shadow: 0 0 0 .5rem #fff;
}

[class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr:hover:after {
    box-shadow: 0 0 0 .5rem #fff, 0 0 0 1rem rgba(255, 255, 255, .5);
}


@media (max-width:1000px) {
    [class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr:before {
        left: -4rem;
    }

    [class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr:after {
        left: -4rem;
    }
}

@media (min-width:1001px) {
    [class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr:before {
        right: -5rem;
    }

    [class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr:nth-child(even):before {
        right: auto;
        left: -5rem;
    }

    [class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr:after {
        right: -6rem;
    }

    [class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr:nth-child(even):after {
        right: auto;
        left: -6rem;
    }
}

[class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr > td {
    background-color: #f1f1f1;
    padding: 1.75rem 1rem !important;
    flex-grow: 2;
    float: none !important;
    display: block;
}

    [class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr > td > *:first-child {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    [class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr > td > *:last-child {
        margin-bottom: 0 !important;
    }

        [class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr > td > *:last-child:not([class*="Button"]) {
            padding-bottom: 0 !important;
        }

@media (min-width:1001px) {
    [class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr:nth-child(odd) > td:first-child {
        order: 2;
    }

    [class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr:nth-child(odd) > td {
        order: 1;
    }
}

[class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr > td:first-child {
    flex-grow: 0;
    width: 7.333rem;
    min-width: 7.333rem;
    padding: 1.25rem 1rem !important;
    color: #fff !important;
    background: linear-gradient(to top, rgb(41, 54, 149) 0%, rgb(0, 101, 179) 100%);
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    transition: background-color .4s;
}

[class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr:hover > td:first-child {
    background-color: #005695;
}

[class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr > td:first-child {
    border-top-left-radius: .3rem;
    border-bottom-left-radius: .3rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

[class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr > td:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: .3rem;
    border-bottom-right-radius: .3rem;
}

@media (min-width:1001px) {
    [class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr:nth-child(odd) > td:last-child {
        border-top-left-radius: .3rem;
        border-bottom-left-radius: .3rem;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    [class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr:nth-child(odd) > td {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-top-right-radius: .3rem;
        border-bottom-right-radius: .3rem;
    }
}

@media (max-width:1000px) {
    [class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr > td:first-child {
        width: 5.333rem !important;
        min-width: 5.333rem !important;
        max-width: 5.333rem !important;
        font-size: 1.25rem;
    }
}

[class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr > td:first-child p {
    font-size: inherit;
    padding: 0;
    margin: 0 !important;
}

    [class*="Table-"][class*="-Panel"][class*="-Timeline"] > * > tr > td:first-child p + p {
        margin-top: 1rem !important;
    }

[class*="Table-"][class*="-Panel"][class*="-Timeline"] img {
    max-width: 100%;
}
