/* TYPOGRAPHY */
@font-face {
    font-family: 'Helvetica Now Display';
    src: url('../fonts/HelveticaNowDisplay-Lt.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Now Display';
    src: url('../fonts/HelveticaNowDisplay-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Now Display';
    src: url('../fonts/HelveticaNowDisplay-Bd.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Formula Condensed Black';
    src:
        url('../fonts/PPFormula-CondensedBlack.woff2') format('woff2'),
        url('../fonts/PPFormula-CondensedBlack.woff') format('woff'),
        url('../fonts/PPFormula-CondensedBlack.ttf') format('truetype'),
        url('../fonts/PPFormula-CondensedBlack.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* GENERAL BASE STYLES */
:root {
    --header-height-mobile: 70px;
    --header-height-desktop: 70px;
    --background-gradient: linear-gradient(312deg, rgb(249, 250, 255) 54%, rgb(232, 235, 248) 100%);
    --box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
    --box-shadow-inset: 0px 0px 3px rgba(0,0,0,0.1) inset;
    /* --text-shadow: 0px 1px 1px rgba(0,0,0,0.3); */
    --text-shadow: 0px 1px 4px rgba(0,0,0,0.3);

    --color-charcoal-black: #0D0D0D;
    --color-dark-gray: #858585;
    --color-light-gray: #D9D9D9;
    --color-gold: #B09167;
    --color-gold-alt: #D09167;
    --color-blue: rgba(77, 73, 252, 0.4);
    --color-blue-alt: rgba(77, 73, 252, 0.6);
    --color-heaven-blue: #2900FF;
    --color-heaven-blue-alt: #5900FF;
    --color-mortals-magenta: #EE5085;
    --color-mortals-magenta-alt: #FF5085;

    --color-black: #000;
    --color-crimson: #DC143C;
    --color-crimson-alt: #ED133F;
    --color-green: #1CAC78;
    --color-green-alt: #50C878;
    --color-white: #FFF;
    --color-white-alt: #FAFCFF;
    --font-family-1: 'Inter', sans-serif;
    --font-family-2: 'FontAwesome';
    --font-family-helvetica-now-display: 'Helvetica Now Display';
    --font-family-pp-formula-condensed-black: 'PP Formula Condensed Black';
}
*,
*:after,
*:before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
::selection {
	background: var(--color-gold);
	color: var(--color-white);
	text-shadow: none;
}
::-webkit-selection {
	background: var(--color-gold);
	color: var(--color-white);
	text-shadow: none;
}
::-moz-selection {
	background: var(--color-gold);
	color: var(--color-white);
	text-shadow: none;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
body,
html {
    height: 100%;
}
body {
    /* background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(28,16,76,0.02703088071165971) 100%); */
    /* color: var(--color-gray-dark); */
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-family-helvetica-now-display);
    font-size: 14px;
    font-weight: normal;
    height: fit-content;
    line-height: 20px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
a {
    color: var(--color-heaven-blue);
    transition: 300ms color ease, 300ms background-color ease;
    /* text-decoration: underline; */
}
a:hover,
a:active,
a:focus {
    color: var(--color-heaven-blue-alt);
    text-decoration: none;
}
.cta {
    appearance: none;
    background-color: var(--color-blue);
    /* border: 1px solid var(--color-gold-alt); */
    /* border-radius: 20px; */
    box-shadow: 0 3px 3px var(--color-heaven-blue);
    border-radius: 6px;
    color: var(--color-white);
    display: block;
    font-family: var(--font-family-helvetica-now-display);
    font-size: 13px;
    font-weight: bold;
    height: 36px;
    line-height: 22px;
    padding: 7px 18px;
    text-align: center;
    text-decoration: none;
    text-shadow: var(--text-shadow);
    transition: 300ms background-color ease, 300ms opacity ease;
    user-select: none;
    /* width: fit-content; */
}
.cta:hover,
.cta:active,
.cta:focus {
    background-color: var(--color-blue-alt);
    color: var(--color-white);
    opacity: 1;
    text-decoration: none;
}
.cta-alt {
    background-color: var(--color-gold);
    /* border-color: var(--color-gold-alt); */
}
.cta-alt:hover,
.cta-alt:active,
.cta-alt:focus {
    background-color: var(--color-gold-alt);
}
.cta-alt-2 {
    background-color: var(--color-gray-darker-1);
    border-color: var(--color-gray-medium);
}
.cta-alt-2:hover,
.cta-alt-2:active,
.cta-alt-2:focus {
    background-color: var(--color-gray-darker-2);
}
.cta.cta-loading:hover,
.cta.cta-loading:active,
.cta.cta-loading:focus {
    color: transparent;
}
.cta.cta-loading {
    color: transparent;
    pointer-events: none;
    position: relative;
    text-shadow: none;
}
.cta.cta-loading::after {
    animation: loading 2s linear infinite;
    border: 3px solid var(--color-white);;
    border-top-color: transparent;
    border-radius: 50%;
    content: '';
    display: block;
    height: 18px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 9px;
    width: 18px;
}
@keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
img {
    height: auto;
    max-width: 100%;
    width: 100%;
}
h1,
.h1,
h2 {
    font-family: var(--font-family-pp-formula-condensed-black);
    font-weight: 800;
    text-transform: uppercase;
}
h1,
.h1 {
    color: var(--color-navy);
    font-size: 40px;
    line-height: 48px;
    margin: 0 0 20px 0;
}
h2 {
    color: var(--color-navy);
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 20px 0;
}
hr {
    border-top-color: var(--color-white);
    margin: 20px 0;
}
.container {
    transition: 300ms width ease;
}
@media (min-width: 1400px) {
    .container {
        /* width: 1370px; */
        width: 100%;
    }
}
@media (min-width: 768px) {
    .form-centered {
        margin: 0 auto;
        max-width: 500px;
    }
}
.width-date {
    width: 122px;
}
.form-error {
    background-color: var(--color-mortals-magenta);
    border-radius: 6px;
    color: var(--color-white);
    display: block;
    font-weight: bold;
    margin: 14px 0 0 0;
    /* min-height: 42px; */
    padding: 7px 18px 9px;
    text-align: center;
    text-shadow: var(--text-shadow);
}
.form-field-inline {
    display: flex;
    flex-direction: row;
    gap: 8px;
}
.form-field-inline .form-field {
    flex-grow: 1;
    width: 100%;
}
.form-field-columns {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
@media (min-width: 768px) {
    .form-field-columns {
        flex-direction: row;
        overflow: auto;
    }
    .form-field-columns .form-field-column {
        border-right: 1px dashed var(--color-gray-medium);
        flex-direction: column;
        padding-right: 15px;
        width: 100%;
    }
    .form-field-columns .form-field-column:last-of-type {
        border-right: none;
        padding-right: 0;
    }
    .form-field-columns .form-field {
        flex-grow: 1;
    }
}
.form-field {
    /* break-inside: avoid-column; */
    margin-bottom: 10px;
    position: relative;
}
/* @media (min-width: 768px) {
    .form-field:last-child {
        margin-bottom: 0 !important;
    }
} */
.form-field-heading h2 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
}
.form-field-heading p {
    color: var(--color-gold);
    font-weight: bold;
    text-transform: uppercase;
}
.form-field-divider {
    border-top: 1px solid var(--color-gray-light);
    margin: 20px 0;
}
.form-field-spacer-30 {
    margin-bottom: 30px;
}
@media (min-width: 768px) {
    .form-field-spacer-30-desktop {
        margin-bottom: 30px;
    }
}
.form-field .label {
    color: var(--color-white);
    cursor: pointer;
    display: block;
    font-size: 13px;
    font-weight: bold;
    line-height: 16px;
    margin-bottom: 3px;
    padding: 0;
    text-align: left;
    user-select: none;
}
.form-field .input {
    background-color: transparent;
    border: 1px solid var(--color-white);
    border-radius: 6px;
    /* box-shadow: var(--box-shadow-inset); */
    height: 40px;
    font-size: 14px;
    line-height: 24px;
    /* padding: 10px; */
    padding: 5px 10px;
    transition: 300ms background-color ease;
    width: 100%;
}
.form-field .input::placeholder {
    text-align: center;
}
.form-field .input:hover {
    background-color: var(--color-charcoal-black);
}
.form-field .input:focus {
    background-color: var(--color-charcoal-black);
    outline: none;
}
.form-field .input[disabled] {
    cursor: not-allowed;
}
.form-field .input[type="checkbox"] {
    appearance: none;
    cursor: pointer;
    display: block;
    height: 16px;
    margin: 0;
    padding: 10px;
    position: relative;
    width: 16px;
}
.form-field .input[type="checkbox"]:checked::after {
    color: var(--color-gray-dark);
    content: '\f00c';
    font-family: var(--font-family-2);
    font-size: 26px;
    font-weight: bold;
    left: 1px;
    line-height: 18px;
    position: absolute;
    top: 0;
    transform-origin: center;
    transition: 300ms transform ease;
}
.form-field .input[type="checkbox"]:checked:hover::after {
    transform: scale(1.2);
}
.form-field textarea.input {
    height: 60px;
}
.form-field.form-field-date {
    width: 160px;
}
.form-field.form-field-select {
    position: relative;
}
.form-field.form-field-select::after {
    /* bottom: 12px; */
    bottom: 8px;
    color: var(--color-gray-dark);
    content: '\f0d7';
    font-family: var(--font-family-2);
    font-size: 22px;
    height: 23px;
    line-height: normal;
    pointer-events: none;
    position: absolute;
    right: 11px;
    /* top: 29px; */
}
.form-field.form-field-select.form-field-select-disabled {
    pointer-events: none;
}
.form-field.form-field-select.form-field-select-disabled::after {
    content: '';
}
.form-field.form-field-select.form-field-select-multiple::after {
    content: '';
}
.form-field.form-field-select select.input {
    appearance: none;
    background-color: transparent;
    border: 1px solid var(--color-white);
    /* border-radius: 5px; */
    cursor: pointer;
    /* height: 40px;
    padding: 10px; */
    font-size: 14px;
    height: 36px;
    line-height: 24px;
    min-width: fit-content;
    /* padding: 5px 10px; */
    padding: 5px 32px 5px 10px;
    position: relative;
    transition: 300ms background-color ease;
    width: 100%;
}
.form-field.form-field-select.form-field-select-multiple select.input {
    background-color: var(--color-gray-light);
    border: 1px solid var(--color-white);
    border-radius: 5px;
    box-shadow: var(--box-shadow-inset);
    height: auto;
    padding: 6px;
    width: 100%;
}
.form-field.form-field-select.form-field-select-disabled select.input {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    text-align: center;
}
.form-field.form-field-select.form-field-select-multiple.form-field-select-editable select.input {
    border-bottom: none;
    border-radius: 5px 5px 0 0;
}
.form-field.form-field-select.form-field-select-multiple.form-field-select-editable .form-field-edit-buttons {
    background-color: var(--color-white-alt);
    border: 1px solid var(--color-gray-medium);
    border-radius: 0 0 5px 5px;
    color: var(--color-gray-light);
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    padding: 2px 6px;
    width: 100%;
}
.form-field.form-field-select.form-field-select-multiple.form-field-select-editable .form-field-edit-buttons .form-field-edit-button {
    color: var(--color-gray-dark);
    font-size: 14px;
}
.form-field.form-field-select.form-field-select-multiple.form-field-select-editable .form-field-edit-buttons .form-field-edit-button:hover {
    color: var(--color-navy);
}
.form-field.form-field-select.form-field-select-multiple.form-field-select-editable .form-field-edit-buttons .form-field-edit-button.disabled {
    opacity: 0.5;
    pointer-events: none;
}
.form-field.form-field-select select.input:hover {
    background-color: var(--color-charcoal-black);
}
.form-field.form-field-select select.input:focus {
    background-color: var(--color-charcoal-black);
}
.form-field.form-field-input-price {
    position: relative;
}
.form-field.form-field-input-price::after {
    bottom: 12px;
    content: '$';
    left: 9px;
    position: absolute;
}
.form-field.form-field-input-price .input {
    padding: 10px 10px 10px 20px;
}
.form-field.form-field-checkbox-group {
    margin-bottom: 9px;
}
.form-field.form-field-checkbox-group .form-field-checkbox {
    margin-bottom: 0;
}
.form-field.form-field-checkbox-group .form-field-checkbox-group-description {
    color: var(--color-black);
    cursor: pointer;
    display: block;
    font-size: 13px;
    font-weight: bold;
    line-height: 16px;
    margin-bottom: 2px;
    padding: 0;
    text-align: left;
    user-select: none;
}
.form-field.form-field-checkbox {
    align-items: center;
    /* border-bottom: 1px dashed var(--color-gray-medium); */
    display: flex;
    flex-direction: row;
    /* gap: 9px; */
    gap: 0;
    justify-content: center;
    padding: 6px 0;
    transition: 300ms background-color ease;
}
.form-field.form-field-checkbox.form-field-checkbox-readonly {
    background-color: var(--color-gray-light-light-medium);
    opacity: 0.8;
    pointer-events: none;
}
.form-field.form-field-checkbox.form-field-checkbox-indented {
    margin-left: 22px;
}
.form-field.form-field-checkbox.form-field-checkbox-indented::before {
    border-bottom: 2px solid var(--color-gray-light-medium);
    border-left: 2px solid var(--color-gray-light-medium);
    content: '';
    height: 34px;
    left: -12px;
    position: absolute;
    top: -16px;
    width: 18px;
}
.form-field.form-field-checkbox.form-field-checkbox-indented:first-of-type::before {
    height: 24px;
    top: -6px;
}
.form-field.form-field-checkbox.form-field-checkbox-right-align {
    justify-content: flex-end;
}
.form-field.form-field-checkbox.form-field-checkbox-right-align label {
    width: fit-content;
}
/* .form-field.form-field-checkbox:last-child {
    border-bottom: none;
} */
.form-field.form-field-checkbox:hover {
    background-color: var(--color-white-alt);
}
.form-field.form-field-checkbox .checkbox,
.form-field.form-field-checkbox .label {
    display: inline-block;
}
.form-field.form-field-checkbox .checkbox {
    margin: 0 7px 0 0;
}
.form-field.form-field-checkbox .label {
    color: var(--color-white);
    display: block;
    font-weight: normal;
    margin: 0;
    /* padding-left: 9px; */
    padding-left: 8px;
    white-space: normal;
    width: 100%;
}
.form-field-dollar {
    position: relative;
}
.form-field-dollar .input {
    text-align: right;
}
.form-field p.note {
    color: var(--color-gray-dark);
    font-size: 13px;
    line-height: 20px;
}
.form-field p.note a {
    text-decoration: underline;
}
.mb-0 {
    margin-bottom: 0 !important;
}

.loader-wrapper {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - (var(--header-height-mobile) + 1px));
    top: calc(var(--header-height-mobile) + 1px);
    width: 100%;
    background: rgba(255,255,255,0.5);
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (min-width: 992px) {
    .loader-wrapper {
        top: 107px;
        height: calc(100vh - 190px);
    }
}
.loader {
    position: relative;
    display: flex;
  }
.loader:before,
.loader:after {
    content: '';
    width: 15px;
    height: 15px;
    display: inline-block;
    position: relative;
    margin: 0  5px  ;
    border-radius: 50%;
    color: var(--color-gray-light-medium);
    background: currentColor;
    box-shadow: 50px 0 ,  -50px 0;
    animation: left 1s infinite ease-in-out;
}
.loader:after {
    color: var(--color-navy);
    animation: right 1.1s infinite ease-in-out;
}

@keyframes right {
    0% , 100%{transform: translateY(-10px) }
    50% { transform: translateY(10px) }
}

@keyframes left {
    0% , 100%{ transform: translateY(10px) }
    50% { transform: translateY(-10px) }
}

    


 

/*------------------------------------*\
    BOOTSTRAP OVERRIDES
\*------------------------------------*/
.modal .modal-dialog {
    margin: 0;
    transform: none !important;
    width: 100%;
}
@media (min-width: 768px) {
    .modal .modal-dialog {
        align-items: center;
        display: flex;
        justify-content: center;
        margin: 0;
        min-height: 100vh;
        width: 100%;
    }
}
.modal .modal-dialog .modal-content {
    border: none;
    border-radius: 0;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: 300ms width ease;
    width: 100%;
}
@media (min-width: 768px) {
    .modal .modal-dialog .modal-content {
        border-radius: 10px;
    }
}
@media (min-width: 768px) {
    .modal.modal-delete .modal-dialog .modal-content {
        width: 510px;
    }
}
.modal .modal-dialog .modal-content .modal-header {
    background-color: var(--color-navy);
    border-radius: 0;
    border-bottom: none;
    padding: 15px;
}
.modal .modal-dialog .modal-content .modal-header .title {
    color: var(--color-white);
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 0;
    text-shadow: var(--text-shadow);
}
.modal .modal-dialog .modal-content .modal-header .close {
    color: var(--color-white);
    font-size: 20px;
    opacity: 1;
    position: absolute;
    right: 15px;
    text-shadow: none;
    top: 17px;
    transition: 300ms color ease;
}
.modal .modal-dialog .modal-content .modal-header .close:hover,
.modal .modal-dialog .modal-content .modal-header .close:active,
.modal .modal-dialog .modal-content .modal-header .close:focus {
    color: var(--color-gray-medium);
}
.modal .modal-dialog .modal-content .modal-body {
    padding: 22px 15px 15px;
}
.modal .modal-dialog .modal-content .modal-footer {
    background-color: var(--color-white-alt);
    /* background-color: var(--color-white); */
    /* background-color: var(--color-mortals-magenta-light); */
    border-top: 1px solid var(--color-gray-light);
    /* border-top: 1px dashed var(--color-gray-light); */
    padding: 15px;
}
.modal .modal-dialog .modal-content .modal-footer .cta-wrapper {
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: flex-end;
}
.modal .modal-dialog .modal-content .modal-footer .cta-wrapper .stick-left {
    left: 15px;
    position: absolute;
}
.modal-backdrop {
    /* background-color: var(--color-white); */
    background: var(--background-gradient);
}
.modal-backdrop.in {
    opacity: 0.8;
}
#modal-general-message::after,
.modal-secondary::after {
    background: rgba(255, 255, 255, 0.5);
    bottom: 0;
    content: '';
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: -1;
}
@media (min-width: 768px) {
    #modal-general-message .modal-dialog .modal-content {
        width: 310px;
    }
}

.table > thead > tr > th {
    border-color: var(--color-gray-light-medium);
}

.table-striped > tbody > tr:nth-of-type(2n+1) {
    background-color: var(--color-white-alt);
}

.table.table-first-two-columns-sticky {
    border-collapse: separate;
}
.table.table-first-two-columns-sticky thead tr.non-pre-heading th,
.table.table-first-two-columns-sticky tfoot tr td {
    white-space: nowrap;
}
.table.table-first-two-columns-sticky thead tr.pre-heading th:first-of-type,
.table.table-first-two-columns-sticky thead tr.non-pre-heading th:nth-of-type(1),
.table.table-first-two-columns-sticky thead tr.non-pre-heading th:nth-of-type(2),
.table.table-first-two-columns-sticky tbody tr td:nth-of-type(1),
.table.table-first-two-columns-sticky tbody tr td:nth-of-type(2),
.table.table-first-two-columns-sticky tfoot tr.pre-heading th:first-of-type,
.table.table-first-two-columns-sticky tfoot tr td:nth-of-type(1),
.table.table-first-two-columns-sticky tfoot tr td:nth-of-type(2) {
    background-color: var(--color-white);
    border-radius: 0;
    border-right: none;
    /* border-top: none; */
    left: 0;
    position: sticky;
    top: 0;
    z-index: 1;
}
.table.table-first-two-columns-sticky thead tr.non-pre-heading th:nth-of-type(2),
.table.table-first-two-columns-sticky tbody tr td:nth-of-type(2),
.table.table-first-two-columns-sticky tfoot tr td:nth-of-type(2) {
    border-right: 2px solid var(--color-gray-light-medium);
}
.table.table-first-two-columns-sticky tbody tr td:nth-of-type(1)::before,
.table.table-first-two-columns-sticky tbody tr td:nth-of-type(2)::before {
    content: '';
    background: var(--color-white);
    /* border-right: 2px solid var(--color-gray-light-medium); */
    display: block;
    left: 0;
    position: absolute;
    top: -100px;
    /* width: 268px; */
    height: 61px;
    z-index: 1;
}
.table.table-first-two-columns-sticky thead tr.non-pre-heading th:first-of-type,
.table.table-first-two-columns-sticky tfoot tr td:first-of-type {
    background-color: var(--color-white);
    /* border-right: 2px solid var(--color-gray-light-medium); */
    border-right: none;
    height: 37px;
    left: 0;
    position: sticky;
    top: 0;
    z-index: 1;
}
.table.table-first-two-columns-sticky tfoot tr td.total-totals-column {
    background-color: var(--color-white);
    border-right: 2px solid var(--color-gray-light-medium);
    height: 37px;
    left: 0;
    position: sticky;
    top: 0;
    z-index: 2;
}
.table.table-first-two-columns-sticky tfoot tr td.total-totals-column {
    background-color: var(--color-white-alt);
}
.table.table-first-two-columns-sticky tfoot tr td p {
    font-weight: bold;
}
.table.table-first-two-columns-sticky tfoot tr {
    background-color: var(--color-white-alt);
    border-right: 2px solid var(--color-gray-light-medium);
    bottom: 0;
    height: 37px;
    left: 0;
    position: sticky;
    z-index: 1;
}

/* AUTOCOMPLETE OVERRIDES */
ul.ui-widget.ui-autocomplete {
    border: 1px solid var(--color-gray-medium);
    border-radius: 5px;
    box-shadow: var(--box-shadow-inset);
    overflow: hidden;
    z-index: 1050;
}
ul.ui-widget.ui-autocomplete li.ui-menu-item {
}
ul.ui-widget.ui-autocomplete li.ui-menu-item .ui-menu-item-wrapper {
    border: none !important;
    border-top: 1px solid rgb(230, 230, 230) !important;
    color: var(--color-gray-900);
    cursor: pointer;
    font-family: var(--font-family-1);
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    margin: 0 !important;
    padding: 10px;
    transition: 300ms background-color ease;
}
ul.ui-widget.ui-autocomplete li.ui-menu-item .ui-menu-item-wrapper:hover,
ul.ui-widget.ui-autocomplete li.ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    background-color: var(--color-gray-light);
}
ul.ui-widget.ui-autocomplete li.ui-menu-item:nth-of-type(1) .ui-menu-item-wrapper {
    border-top: none;
}

/* DATE/TIME PICKER OVERRIDES */
.xdsoft_datetimepicker {
    border-radius: 5px;
    padding: 4px 10px 8px 2px;
}
.xdsoft_datetimepicker .xdsoft_datepicker {
    width: 250px;
}
.xdsoft_datetimepicker .xdsoft_label {
    font-size: 13px;
    color: var(--color-navy);
}
.xdsoft_datetimepicker .xdsoft_label span {
    display: inline-block;
    margin-right: 4px;
}
.xdsoft_datetimepicker .xdsoft_calendar {
    padding-top: 2px;
}
.xdsoft_datetimepicker .xdsoft_calendar td,
.xdsoft_datetimepicker .xdsoft_calendar th {
    height: 32px;
}
.xdsoft_datetimepicker .xdsoft_calendar th {
    color: var(--color-black);
}
.xdsoft_datetimepicker .xdsoft_calendar td {
    color: var(--color-gray-dark);
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today {
    background-color: var(--color-gray-medium);
    color: var(--color-white);
    font-weight: bold;
}
.xdsoft_datetimepicker .xdsoft_calendar td > div {
    padding: 2px;
    text-align: center;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current {
    background: var(--color-navy);
    color: var(--color-white);
    box-shadow: none;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
    background: var(--color-gold) !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current:hover {
    background: var(--color-navy) !important;
}
.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current {
    background: var(--color-navy);
}
.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
    background: var(--color-gold) !important;
}
.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current:hover {
    background: var(--color-navy) !important;
}
.xdsoft_datetimepicker .xdsoft_datepicker.active + .xdsoft_timepicker {
    margin-top: 11px;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
    background: var(--color-navy);
    color: var(--color-white);
    box-shadow: none;
}
.xdsoft_datetimepicker .xdsoft_timepicker {
    width: 70px;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box {
    height: 160px;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div {
    color: var(--color-gray-dark);
    height: 32px;
    line-height: 30px;
}

/* GOOGLE PLACES AUTOCOMPLETE */
.pac-container {
    z-index: 10000 !important;
}
.pac-container.pac-logo::after {
    display: none;
}
.pac-container {
    border: 1px solid var(--color-gray-medium);
    border-radius: 5px;
    box-shadow: var(--box-shadow-inset);
    display: block;
    margin: 0;
    width: fit-content !important;
}
.pac-container .pac-item {
    background-color: var(--color-white);
    cursor: pointer;
    font-family: var(--font-family-1);
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    padding: 10px;
    transition: 300ms background-color ease;
}
.pac-container .pac-item:hover,
.pac-container .pac-item.pac-item-selected {
    background-color: var(--color-gray-light);
}
.pac-container .pac-item:nth-of-type(1) {
    border-top: none;
}
.pac-container .pac-item .pac-icon {
    display: none;
}
.pac-container .pac-item .pac-item-query {
    color: var(--color-gray-900);
    font-size: 13px;
}

/* HIDE/SHOW PASSWORD */
.hideShowPassword-wrapper {
    width: 100%;
}
.hideShowPassword-wrapper .hideShowPassword-field {
    padding-right: 10px !important;
}
.hideShowPassword-wrapper .hideShowPassword-toggle {
    appearance: none;
    background-color: transparent;
    border: none;
    font-size: 0;
    margin: 0 !important;
    padding: 0;
    position: relative;
    right: 10px !important;
    top: 9px !important;
}
.hideShowPassword-wrapper .hideShowPassword-toggle::after {
    font-family: var(--font-family-2);
    font-size: 14px;
    margin: 0;
    position: absolute;
    right: 0;
    /* top: 10px; */
}
.hideShowPassword-wrapper .hideShowPassword-toggle.hideShowPassword-toggle-show::after {
    content: '\f06e';
    right: 1px;
}
.hideShowPassword-wrapper .hideShowPassword-toggle.hideShowPassword-toggle-hide::after {
    content: '\f070';
}

/* HEADER */
/* General */
header {
    background: var(--color-charcoal-black);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 3;
}
/* Mobile */
header.header-mobile {
    height: var(--header-height-mobile);
}
header.header-mobile .top-section {
}
header.header-mobile .top-section .mobile-nav-toggle {
    color: var(--color-white);
    display: block;
    /* display: none; */
    font-size: 22px;
    left: 30px;
    height: 21px;
    position: absolute;
    top: 23px;
    transition: 300ms color ease;
    width: 30px;
    z-index: 1;
}
header.header-mobile .top-section .mobile-nav-toggle:hover,
header.header-mobile .top-section .mobile-nav-toggle:active,
header.header-mobile .top-section .mobile-nav-toggle:focus {
}
header.header-mobile .top-section .logo-column {
}
header.header-mobile .top-section .logo-column .logo {
    display: block;
    margin: 21px auto 0;
    opacity: 1;
    text-align: center;
    transition: 300ms opacity ease;
    width: fit-content;
}
header.header-mobile .top-section .logo-column .logo:hover,
header.header-mobile .top-section .logo-column .logo:active,
header.header-mobile .top-section .logo-column .logo:focus {
    opacity: 0.8;
}
header.header-mobile .top-section .logo-column .logo .logo-img {
    height: 25px;
    width: auto;
}
header.header-mobile.mobile-nav-open .top-section .mobile-nav-toggle {
}
header.header-mobile .bottom-section {
    background-color: var(--color-charcoal-black);
    display: none;
    height: calc(100vh - var(--header-height-mobile));
    left: 0;
    margin: 0;
    overflow: auto;
    padding: 30px 15px;
    position: absolute;
    top: var(--header-height-mobile);
    width: 100vw;
}
header.header-mobile.mobile-nav-open .bottom-section {
    display: block;
}
header.header-mobile .bottom-section nav.primary {
    border-bottom: 2px solid white;
    margin-bottom: 0;
    padding-bottom: 30px;
}
header.header-mobile .bottom-section nav > ul {
    /* align-items: center; */
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}
header.header-mobile .bottom-section nav.secondary > ul {
    gap: 4px;
}
header.header-mobile .bottom-section nav > ul > li {
    margin-left: 0;
}
header.header-mobile .bottom-section nav > ul > li > a {
    color: var(--color-white);
    display: block;
    font-size: 20px;
    font-weight: 900;
    line-height: 24px;
    margin-bottom: 14px;
    text-decoration: none;
    text-transform: uppercase;
    width: fit-content;
}
header.header-mobile .bottom-section nav > ul > li:last-of-type > a {
    margin-bottom: 0;
}
header.header-mobile .bottom-section nav > ul > li > a i {
    /* display: none; */
    font-size: 18px;
    margin-right: 4px;
    text-align: center;
    width: 30px;
}
header.header-mobile .bottom-section nav.secondary > ul > li > a {
    color: var(--color-gold);
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
}
header.header-mobile .bottom-section nav > ul > li > a:hover,
header.header-mobile .bottom-section nav > ul > li > a:active,
header.header-mobile .bottom-section nav > ul > li > a:focus {
    color: var(--color-gold);
}
header.header-mobile .bottom-section nav.secondary > ul > li > a:hover,
header.header-mobile .bottom-section nav.secondary > ul > li > a:active,
header.header-mobile .bottom-section nav.secondary > ul > li > a:focus {
    color: var(--color-white);
}
header.header-mobile .bottom-section nav > ul > li > ul {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}
header.header-mobile .bottom-section nav > ul > li > ul > li {
    margin-left: 0;
}
header.header-mobile .bottom-section nav > ul > li > ul > li > a {
    color: var(--color-white);
    display: block;
    font-size: 18px;
    line-height: 28px;
    text-transform: uppercase;
    transition: 300ms color ease;
}
header.header-mobile .bottom-section nav > ul > li > ul > li > a:hover,
header.header-mobile .bottom-section nav > ul > li > ul > li > a:active,
header.header-mobile .bottom-section nav > ul > li > ul > li > a:focus {
    color: var(--color-black);
}
header.header-mobile .bottom-section nav > ul > li > ul > li.menu-item-has-children > a {
    cursor: default;
}
header.header-mobile .bottom-section nav > ul > li > ul > li > ul {
    display: inline-block;
    list-style: none;
    margin-bottom: 5px;
    padding: 0;
    width: 100%;
}
header.header-mobile .bottom-section nav > ul > li > ul > li > ul > li {
    margin-left: 0;
}
header.header-mobile .bottom-section nav > ul > li > ul > li > ul > li > a {
    color: var(--color-white);
    display: block;
    font-size: 18px;
    line-height: 28px;
    padding-left: 20px;
    transition: 300ms color ease;
}
header.header-mobile .bottom-section nav > ul > li > ul > li > ul > li > a:hover,
header.header-mobile .bottom-section nav > ul > li > ul > li > ul > li > a:active,
header.header-mobile .bottom-section nav > ul > li > ul > li > ul > li > a:focus {
    color: var(--color-black);
}
/* Desktop */
header.header-desktop {
    border-bottom: 36px solid var(--color-gray-darker-1);
    box-sizing: content-box;
    height: var(--header-height-desktop);
}
@media (min-width: 1400px) {
    header.header-desktop .header-inner {
        width: 100%;
    }
}
header.header-desktop .top-section {
    position: relative;
}
header.header-desktop .top-section .logo-column {
    margin-bottom: 0;
}
header.header-desktop .top-section .logo-column .logo {
    display: inline-block;
    margin-top: 21px;
    opacity: 1;
    text-align: left;
    transform-origin: center;
    transition: 300ms opacity ease;
    /* transition: 300ms transform ease; */
}
header.header-desktop .top-section .logo-column .logo:hover,
header.header-desktop .top-section .logo-column .logo:active,
header.header-desktop .top-section .logo-column .logo:focus {
    /* transform: scale(1.08); */
    opacity: 0.8;
}
header.header-desktop .top-section .logo-column .logo .logo-img {
    height: 25px;
    /* transition: 1000ms transform ease; */
    width: auto;
}
/* header.header-desktop .top-section .logo-column .logo:hover .logo-img {
    transform: rotate(360deg);
} */
header.header-desktop .top-section .welcome-section {
    /* animation: fadeIn 2s ease 1s; */
    animation-fill-mode: forwards;
    color: var(--color-gray-dark);
    /* opacity: 0; */
    font-size: 13px;
    position: absolute;
    right: 140px;
    top: 20px;
}
header.header-desktop .top-section .welcome-section .welcome-text {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
}
header.header-desktop .top-section .welcome-section .welcome-text .time-of-day {
}
header.header-desktop .top-section .welcome-section .welcome-text .first-name {
    color: var(--color-gray-darker-1);
    font-weight: bold;
    text-decoration: none;
}
header.header-desktop .top-section .welcome-section .welcome-text .first-name:hover {
    color: var(--color-gray-darker-2);
}
header.header-desktop .top-section .welcome-section .notifications-count {
    background-color: var(--color-gold-alt);
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    color: var(--color-white);
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    height: 22px;
    line-height: 21px;
    margin: 0 0 0 4px;
    text-align: center;
    text-decoration: none;
    text-shadow: var(--text-shadow);
    transition: 300ms background-color ease;
    vertical-align: middle;
    width: 22px;
}
header.header-desktop .top-section .welcome-section .notifications-count:hover {
    background-color: var(--color-gold);
}
header.header-desktop .top-section .welcome-section .separator {
    background-color: var(--color-gray-dark);
    display: inline-block;
    font-size: 0;
    height: 16px;
    margin: 0 5px;
    vertical-align: middle;
    width: 1px;
}
header.header-desktop .top-section .welcome-section .sign-out-link {
    display: inline-block;
    vertical-align: middle;
}
header.header-desktop .top-section nav {
    /* margin-top: 39px; */
    margin-top: 15px;
    position: relative;
}
header.header-desktop .top-section nav ul {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
header.header-desktop .top-section nav ul li {
    position: relative;
}
header.header-desktop .top-section nav > ul > li {
    display: inline-block;
    position: relative;
}
header.header-desktop .top-section nav > ul > li:last-of-type {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}
header.header-desktop .top-section nav > ul > li > a {
    background-color: var(--color-blue);
    /* border: 1px solid var(--color-gold-alt); */
    border-radius: 6px;
    box-shadow: 0 3px 3px var(--color-heaven-blue);
    /* border-radius: 10px 10px 0 0; */
    color: var(--color-white);
    display: block;
    /* font-family: var(--font-family-1); */
    font-size: 13px;
    font-weight: bold;
    height: 36px;
    line-height: 22px;
    padding: 7px 18px;
    text-decoration: none;
    text-shadow: var(--text-shadow);
    transition: 300ms background-color ease;
    user-select: none;
    white-space: nowrap;
}
header.header-desktop .top-section nav > ul > li > a:hover,
header.header-desktop .top-section nav > ul > li > a:active,
header.header-desktop .top-section nav > ul > li > a:focus {
    background-color: var(--color-blue-alt);
    /* color: var(--color-white); */
}
header.header-desktop .top-section nav > ul > li > a.active {
    /* border-bottom: 3px solid var(--color-navy); */
}
header.header-desktop .top-section nav > ul > li > a i {
    /* display: none; */
    font-size: 0;
    transition: 300ms font-size ease, 300ms margin-right ease;
}
@media (min-width: 768px) {
    header.header-desktop .top-section nav > ul > li > a i {
        font-size: 12px;
        margin-right: 5px;
    }
}
header.header-desktop .top-section nav > ul > li > ul {
    box-shadow: 0 1px 15px rgba(0,0,0,0.8);
    display: none;
    left: 0;
    position: absolute;
    top: 35px;
    text-align: left;
    width: 342px;
    z-index: 1;
}
header.header-desktop .top-section nav > ul > li:last-of-type > ul {
    left: auto;
    right: 0;
    width: 356px;
}
header.header-desktop .top-section nav > ul > li:hover > ul {
    display: block;
}
header.header-desktop .top-section nav > ul > li > ul > li {
    position: relative;
}
header.header-desktop .top-section nav > ul > li > ul > li > a {
    border-bottom: 1px solid #B9B4B3;
    color: var(--color-white);
    display: block;
    font-size: 18px;
    height: 51px;
    line-height: 51px;
    padding: 0 22px;
    transition: 300ms background-color ease;
}
header.header-desktop .top-section nav > ul > li > ul > li:last-child > a {
    border-bottom: none;
}
header.header-desktop .top-section nav > ul > li > ul > li > ul {
    box-shadow: 0 1px 15px rgba(0,0,0,0.8);
    display: none;
    left: 342px;
    position: absolute;
    top: 0;
    width: 305px;
    z-index: 1;
}
header.header-desktop .top-section nav > ul > li > ul > li:hover > a {
}
header.header-desktop .top-section nav > ul > li > ul > li:hover > ul {
    display: block;
}
header.header-desktop .top-section nav > ul > li > ul > li > ul > li > a {
    border-bottom: 1px solid #B9B4B3;
    color: var(--color-white);
    display: block;
    font-size: 18px;
    height: 51px;
    line-height: 51px;
    padding: 0 22px;
    transition: 300ms background-color ease;
}
header.header-desktop .top-section nav > ul > li > ul > li > ul > li:last-child > a {
    border-bottom: none;
}
header.header-desktop .top-section nav > ul > li > ul > li > ul > li:hover > a {
}
header.header-desktop .bottom-section nav {
    max-width: 1170px;
    /* overflow: auto; */
}
@media (min-width: 1400px) {
    header.header-desktop .bottom-section nav {
        /* max-width: 1370px; */
        max-width: none;
    }
}
header.header-desktop .bottom-section nav > ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
header.header-desktop .bottom-section nav > ul > li {
    display: inline-block;
    max-width: 150px;
    position: relative;
    width: 100%;
}
@media (min-width: 1400px) {
    header.header-desktop .bottom-section nav > ul > li {
        max-width: 200px;
    }
}
header.header-desktop .bottom-section nav > ul > li > a {
    background-color: var(--color-gray-darker-1);
    border-left: 1px solid var(--color-gray-darker-2);
    /* background-color: var(--color-green);
    border: 1px solid var(--color-green-alt); */
    /* border-radius: 20px; */
    /* border-radius: 10px 10px 0 0; */
    color: var(--color-white);
    display: block;
    font-family: var(--font-family-1);
    font-size: 13px;
    font-weight: bold;
    height: 36px;
    line-height: 20px;
    padding: 7px 12px;
    text-align: center;
    text-decoration: none;
    text-shadow: var(--text-shadow);
    text-transform: uppercase;
    transition: 300ms background-color ease;
    user-select: none;
    white-space: nowrap;
}
header.header-desktop .bottom-section nav > ul > li > a:hover,
header.header-desktop .bottom-section nav > ul > li > a:active,
header.header-desktop .bottom-section nav > ul > li > a:focus {
    /* background-color: var(--color-green-alt); */
    background-color: var(--color-gray-darker-2);
}
@media (min-width: 1400px) {
    header.header-desktop .bottom-section nav > ul > li > a {
        padding: 7px 20px;
    }
}
header.header-desktop .bottom-section nav > ul > li > a.active {
    background-color: var(--color-gray-dark);
}
header.header-desktop .bottom-section nav > ul > li:last-of-type a {
    border-right: 1px solid var(--color-gray-darker-2);
}
header.header-desktop .bottom-section nav > ul > li > a i {
    display: none;
}
header.header-desktop .bottom-section nav > ul > li > a.has-down-arrow i {
    display: inline-block;
    margin-left: 4px;
    position: relative;
    top: -1px;
}
header.header-desktop .bottom-section nav > ul > li > ul {
    display: none;
    left: 0;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    position: absolute;
    right: 0;
    top: 36px;
}
header.header-desktop .bottom-section nav > ul > li:hover > a + ul {
    display: block;
}
header.header-desktop .bottom-section nav > ul > li > ul > li {
    display: inline-block;
    position: relative;
    width: 100%;
}
header.header-desktop .bottom-section nav > ul > li > ul > li > a {
    background-color: var(--color-gray-darker-1);
    border-left: 1px solid var(--color-gray-darker-2);
    border-top: 1px solid var(--color-gray-darker-2);
    color: var(--color-white);
    display: block;
    font-family: var(--font-family-1);
    font-size: 13px;
    font-weight: bold;
    height: 36px;
    line-height: 20px;
    padding: 7px 12px;
    text-align: center;
    text-decoration: none;
    text-shadow: var(--text-shadow);
    text-transform: uppercase;
    transition: 300ms background-color ease;
    user-select: none;
    white-space: nowrap;
}
header.header-desktop .bottom-section nav > ul > li > ul > li > a:hover,
header.header-desktop .bottom-section nav > ul > li > ul > li > a:active,
header.header-desktop .bottom-section nav > ul > li > ul > li > a:focus {
    /* background-color: var(--color-green-alt); */
    background-color: var(--color-gray-darker-2);
}
header.header-desktop .bottom-section nav > ul > li > ul > li > a.active {
    background-color: var(--color-gray-darker-0);
}

/* MAIN */
main {
    margin-top: 70px;
    padding: 30px 15px;
    transition: 300ms padding ease;
}
@media (min-width: 992px) {
    main {
        margin-top: 106px;
        /* padding: 100px 15px 140px; */
        padding: 30px 15px 50px;
    }
}
@media (min-width: 1400px) {
    main .container {
        width: 100%
    }
}
main ul,
main ol {
    margin-bottom: 15px;
    padding-left: 20px;
}
main .title-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
@media (min-width: 768px) {
    main .title-wrapper {
        flex-direction: row;
    }
}
/* main .title-wrapper.breadcrumbs-after {
    margin-bottom: 0;
} */
main .title-wrapper h1,
main .title-wrapper .h1,
main .title-wrapper h2 {
    width: 100%;
}
@media (min-width: 768px) {
    main .title-wrapper h1,
    main .title-wrapper .h1,
    main .title-wrapper h2 {
        margin-bottom: 2px;
        white-space: nowrap;
        width: fit-content;
    }
}

main .table > thead > tr > th,
main .table > tbody > tr > td,
main .table > tfoot > tr > td {
    border-right: 2px solid var(--color-gray-light-medium);
    line-height: 18px;
    padding: 7px 10px;
    vertical-align: middle;
    white-space: nowrap;
}
main .table > thead > tr > th:last-of-type,
main .table > tbody > tr > td:last-of-type,
main .table > tfoot > tr > td:last-of-type {
    border-right: none;
}
main .table > thead > tr > th.text-align-center,
main .table > tbody > tr > td.text-align-center {
    text-align: center;
}
main .table > thead > tr > th.text-align-right,
main .table > tbody > tr > td.text-align-right,
main .table > tfoot > tr > td.text-align-right {
    text-align: right;
}
main .table > thead > tr > th {
    border-bottom: 2px solid var(--color-gray-light-medium);
    border-top: none;
}
main .table > tbody > tr > td {
    border-bottom: 1px solid var(--color-gray-light-medium);
    border-top: none;
}
main .table > tfoot > tr > td {
    border-bottom: 2px solid var(--color-gray-light-medium);
    border-top: 1px solid var(--color-gray-light-medium);
}
body.service main .service-section.service-section-new .table > tbody > tr:last-child > td {
    border-bottom: none;
}
main .table > tfoot > tr > td > p {
    font-weight: bold;
}

/* HOME */
body.home main h1 {
    display: none;
}
body.home main .text-1 {
    font-size: 24px;
    letter-spacing: 4px;
    line-height: 30px;
    margin-bottom: 0;
    text-align: center;
}
body.home main .text-2 {
    font-size: 40px;
    letter-spacing: 8px;
    line-height: 44px;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 1px 10px var(--color-heaven-blue);
    text-transform: uppercase;
    transition: 300ms font-size ease, 300ms letter-spacing ease, 300ms line-height ease;
}
@media (min-width: 768px) {
    body.home main .text-2 {
        font-size: 56px;
        letter-spacing: 16px;
        line-height: 60px;
    }
}
body.home main .video {
    display: block;
    margin: 0 auto 25px;
    max-width: 400px;
    width: 100%;
}
body.home main .text-3 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 40px;
    text-align: center;
}
body.home main .text-3 .divider {
    display: inline-block;
    font-size: 13px;
    line-height: 20px;
    margin: 0 5px;
}
body.home main .signup-form {
    margin-bottom: 40px;
    text-align: center;
}
body.home main .text-4 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 60px;
    text-align: center;
}
body.home main .text-5 {
    font-size: 11px;
    line-height: 14px;
    margin: 0 auto;
    max-width: 350px;
    text-align: center;
}

/* PROFILE */

/* FOOTER */
footer {
    /* background-color: var(--color-dark-gray); */
    /* border-top: 1px solid var(--color-white); */
    padding: 20px 15px;
}
/* @media (min-width: 992px) {
    footer {
        bottom: 0;
        left: 0;
        position: fixed;
        right: 0;
        z-index: 2;
    }
} */
footer .wise-quote {
    animation: fadeIn 2s ease 1s;
    animation-fill-mode: forwards;
    /* color: var(--color-white); */
    color: var(--color-gold);
    font-size: 0;
    /* font-style: italic; */
    font-weight: bold;
    margin-bottom: 4px;
    opacity: 0;
    text-align: center;
}
footer .wise-quote .quote-mark {
    font-size: 16px;
    line-height: 14px;
}
footer .wise-quote .quote {
    font-size: 13px;
    line-height: 16px;
    text-shadow: var(--text-shadow);
}
footer .links {
    text-align: center;
}
footer .links a {
    color: var(--color-gold);
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    text-shadow: var(--text-shadow);
}
footer .links a:hover,
footer .links a:active,
footer .links a:focus {
    text-decoration: underline;
}
footer .links .separator {
    color: var(--color-white);
    display: inline-block;
    padding: 0 4px;
}
footer .copyright {
    color: var(--color-white);
    font-size: 11px;
    line-height: 14px;
    margin-bottom: 0;
    text-align: center;
    text-shadow: var(--text-shadow);
}
