:root {
    --color-white: #fff;
    --color-white-a50p: #ffffff80;
    --color-white-a10p: #ffffff1a;
    --color-grey-100: #f7f7f7;
    --color-grey-200: #ebecee;
    --color-grey-300: #dee2e6;
    --color-grey-350: #ddd;
    --color-grey-365: #ced4da;
    --color-grey-375: #bdc3ce;
    --color-grey-400: #bbc1cd;
    --color-grey-450: #b2b2b2;
    --color-grey-500: #adb5bd;
    --color-grey-500-a70p: #adb5bdb3;
    --color-grey-550: #aaa;
    --color-grey-600: #6e7685;
    --color-grey-700: #495057;
    --color-grey-725-a10p: #4343431a;
    --color-grey-735-a90p: #3c3c3ce6;
    --color-grey-750: #3b3b3b;
    --color-grey-800: #343a40;
    --color-grey-900: #212529;
    --color-blackish-a90p: #030303e6;
    --color-black: #000;
    --color-black-a10p: #0000001a;
    --color-black-a20: #00000033;
    --color-black-a90p: #000000e6;

    --color-light-blue: #4d8bff;
    --color-lightish-blue: #6fa1ff;
    --color-blue: #007bff;
    --color-bluish-grey: #9da8bd;
    --color-ashy-blue: #949db0;
    --color-blue-grey: #4c8bff;
    --color-dark-blue: #243b66;
    --color-mix-white-dark-blue-72p: #c2c8d4;
    --color-dark-blue-offset: #31518c;
    --color-navy-blue: #3e5278;
    --color-very-light-red: #fbf3f3;
    --color-red: #d16c6b;
    --color-redish: #c94748;
    --color-pure-red: #ff0000;
    --color-orange: #fd7e14;
    --color-yellow: #ffc107;
    --color-tan: #f5eacd;
    --color-gold: #e5c677;
    --color-light-gold: #edd8a2;
    --color-mix-white-gold-72p: #f8efd9;
    --color-dirty-gold: #2e2718;
    --color-very-light-green: #f8faf5;
    --color-green: #7ea352;
    --color-eggshell: #f8f0db;
    --color-dark-brown: #333;
    --color-dark-brown-lighten-10p: #4d4d4d;
    --color-brown: #444;
    --color-dirty-white: #ccc;
    --color-light-grey: #d3d3d3;
    --color-whitish: #e8e9ec;
    --color-very-light-brown: #eee;

    --theme-primary: var(--color-dark-blue);
    --theme-secondary: var(--color-gold);
    --theme-info: var(--theme-primary);
    --theme-info-background: #dbe8ff;
    --theme-success: var(--color-green);
    --theme-success-background: var(--color-very-light-green);
    --theme-alert: #b38600;
    --theme-mix-white-alert-72p: #eaddb8;
    --theme-alert-background: #fcfaf2;
    --theme-error: var(--color-red);
    --theme-error-background: var(--color-very-light-red);
    --theme-light: var(--color-grey-100);
    --theme-white: var(--color-white);

    --dark-theme-primary: var(--color-gold);
    --dark-theme-secondary: var(--color-white);
    --dark-theme-dark: #1d1d1d;
}

html {
    font-size: 16px;
}

html,
body {
    height: 100%;
}

body {
    font-size: 16px;
    font-weight: normal;
    color: var(--theme-primary);
    background-color: var(--color-white);
    letter-spacing: normal;
    font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    line-height: 1.33;
    display: flex;
    flex-direction: column;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h2 {
    font-weight: 500;
}

h4 {
    font-size: 1.5rem;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    color: var(--color-blue);
}

a:hover {
    color: var(--color-dark-blue-offset);
}

button,
select {
    text-transform: none;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button:not(:disabled),
[type='button']:not(:disabled),
[type='reset']:not(:disabled),
[type='submit']:not(:disabled) {
    cursor: pointer;
}

select {
    word-wrap: normal;
    appearance: none; /* Future */
    background-color: var(--color-white);
    padding: 0.375rem 1.5rem 0.375rem 0.75rem;

    /* Optional styles */
    background-repeat: no-repeat;
    background-position: right 5px center;
    background-size: 0.75em;
    background-image: url('/images/select-arrow.png');
}

/* IE11 */
select::-ms-expand {
    display: none;
}

select::after {
    background-color: transparent;
}

.clearfix::after {
    display: block;
    clear: both;
    content: '';
}

.absolute {
    position: absolute;
}

.clear {
    clear: both;
}

/* prettier-ignore */
.btn {
    display: inline-block;
    padding: 6px 12px;
    box-shadow: none !important;
    font-weight: 400;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    line-height: 1.5;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out,
        -webkit-box-shadow 0.15s ease-in-out;
}

.btn:focus {
    box-shadow: none;
}

a.btn {
    text-decoration: none;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid var(--color-very-light-brown);
}

li {
    font-size: 16px;
    line-height: 1.38;
    text-align: left;
    color: var(--theme-primary);
    padding: 8px 0;
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    font-size: inherit;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-grey-700);
    background-color: var(--color-white);
    background-clip: padding-box;
    border: 1px solid var(--color-grey-365);
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.form-control:not(select) {
    padding: 0.375rem 0.75rem;
}

/* Top-level defaults */
html,
body {
    height: 100%;
}

body {
    font-size: 16px;
    font-weight: normal;
    color: var(--color-dark-blue);
    background-color: var(--color-white);
    letter-spacing: normal;
    font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    line-height: 1.33;
    display: flex;
    flex-direction: column;
    text-rendering: optimizeLegibility;
}

/* Cursors */

.cursor-default {
    cursor: default;
}

.cursor-auto {
    cursor: auto;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-not-allowed {
    cursor: not-allowed;
}

/* Buttons */

.abr-primary-btn,
.abr-secondary-btn,
.abr-contrast-btn {
    border-radius: 3px;
    border: 1px solid transparent;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    padding: 7px 22px;
}

.abr-primary-btn {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    cursor: pointer;
}

.abr-primary-btn.disabled,
.abr-primary-btn:disabled {
    background-color: var(--color-grey-200);
    color: var(--color-grey-375);
    cursor: not-allowed;
    border-color: transparent;
}

.abr-primary-btn:hover:not(:disabled),
.abr-primary-btn:active:not(:disabled),
.abr-primary-btn:focus:not(:disabled) {
    background-color: var(--color-dark-blue-offset);
    color: var(--color-white);
}

.abr-secondary-btn {
    background-color: var(--color-white);
    color: var(--color-light-blue);
    border-color: var(--color-light-blue);
    cursor: pointer;
}

.abr-secondary-btn.disabled,
.abr-secondary-btn:disabled {
    background-color: var(--color-white);
    color: var(--color-grey-375);
    border: solid 1px var(--color-grey-200);
    cursor: not-allowed;
}

.abr-secondary-btn:hover:not(:disabled),
.abr-secondary-btn:active:not(:disabled),
.abr-secondary-btn:focus:not(:disabled) {
    background-color: var(--color-light-blue);
    color: var(--color-white);
}

.abr-contrast-btn,
.abr-contrast-btn:hover,
.abr-contrast-btn:active,
.abr-contrast-btn:focus {
    background-color: var(--theme-secondary);
    color: var(--color-black);
}

/* Material Icons */

.abr-checkbox-alt.checked::before {
    content: 'check_box';
}

.abr-checkbox-alt.indeterminate::before {
    content: 'indeterminate_check_box';
}

.abr-checkbox-alt::before {
    vertical-align: middle;
    content: 'check_box_outline_blank';
    font-size: 16px;
}

.abr-checkbox-alt {
    line-height: 0;
}

/* Links */
.abr-contrast-link {
    color: var(--color-white);
    font-size: 16px;
}

.abr-contrast-link:hover {
    color: var(--color-grey-200);
}

.abr-text-link,
.abr-text-link:hover {
    font-size: 16px;
    color: var(--color-light-blue);
    cursor: pointer;
}

.theme-color-set {
    background-color: var(--theme-light);
    color: var(--theme-primary);
}

/* Borders */
.border-standard {
    border: solid 1px;
    border-width: 1px;
    border-radius: 2px;
}

.border-left {
    border-left: solid 1px;
}

.border-right {
    border-right: solid 1px;
}

.border-top {
    border-top: solid 1px;
}

.border-bottom {
    border-bottom: solid 1px;
}

.border-width-1 {
    border-width: 1px;
}

.border-width-2 {
    border-width: 2px;
}

.border-width-3 {
    border-width: 3px;
}

.border-width-4 {
    border-width: 4px;
}

.border-top-thick {
    border-top: solid 3px !important;
}

.border-light-grey {
    border-color: var(--color-grey-200) !important;
}

.border-grey {
    border-color: var(--color-grey-400) !important;
}

.border-dark-grey {
    border-color: var(--color-grey-600) !important;
}

.border-light-blue {
    border-color: var(--color-light-blue) !important;
}

.border-blue {
    border-color: var(--color-blue) !important;
}

.border-dark-blue {
    border-color: var(--color-dark-blue) !important;
}

.border-top-dark-blue {
    border-top-color: var(--color-dark-blue) !important;
}

.border-top-red {
    border-top-color: var(--color-red) !important;
}

/* Colors */

.bg-light-grey {
    background-color: var(--color-grey-200) !important;
}

.bg-grey {
    background-color: var(--color-grey-400) !important;
}

.bg-dark-grey {
    background-color: var(--color-grey-600) !important;
}

.bg-black {
    background-color: var(--color-black) !important;
}

.bg-almost-white {
    background-color: var(--color-grey-100) !important;
}

.bg-white {
    background-color: var(--color-white) !important;
}

.bg-light-blue {
    background-color: var(--color-light-blue) !important;
}

.bg-blue {
    background-color: var(--color-blue) !important;
}

.bg-dark-blue {
    background-color: var(--color-dark-blue) !important;
}

.bg-red {
    background-color: var(--theme-error) !important;
}

.bg-eggshell {
    background-color: var(--color-eggshell) !important;
}

.bg-very-light-red {
    background-color: var(--color-very-light-red) !important;
}

.bg-info {
    background-color: var(--color-mix-white-dark-blue-72p) !important;
}

.bg-warning {
    background-color: var(--theme-mix-white-alert-72p) !important;
}

.text-black {
    color: var(--color-black) !important;
}

.text-white {
    color: var(--color-white) !important;
}

.text-light-grey {
    color: var(--color-grey-200) !important;
}

.text-grey {
    color: var(--color-grey-600) !important;
}

.text-dark-grey {
    color: var(--color-grey-600) !important;
}

.text-extra-dark-grey {
    color: var(--color-grey-800) !important;
}

.text-light-blue {
    color: var(--color-light-blue) !important;
}

.text-blue {
    color: var(--color-blue) !important;
}

.text-dark-blue {
    color: var(--color-dark-blue) !important;
}

.text-red {
    color: var(--color-red) !important;
}

.text-green {
    color: var(--color-green) !important;
}

/* Text */
.font-enlarge-3 {
    font-size: 145%;
}

.font-enlarge-2 {
    font-size: 130%;
}

.font-enlarge-1 {
    font-size: 115%;
}

.font-shrink-1 {
    font-size: 85%;
}

.font-shrink-2 {
    font-size: 70%;
}

.font-shrink-3 {
    font-size: 55%;
}

.sub-header {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-grey-600);
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

h1 {
    font-size: 36px;
    line-height: 1.22;
    font-family: Merriweather, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding: 24px 0;
}

h2 {
    font-size: 20px;
    line-height: 1.2;
    font-family: Merriweather, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding: 8px 0;
}

h3 {
    font-size: 16px;
    line-height: 1.31;
    padding: 8px 0;
    font-family: Merriweather, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

h3 .small,
h3.small {
    font-size: 14px;
}

h3.sub-header {
    font-family: Merriweather, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.38;
}

p {
    font-size: 16px;
    line-height: 1.31;
    text-align: left;
    color: var(--color-dark-blue);
    padding: 8px 0;
}

li {
    font-size: 16px;
    line-height: 1.38;
    text-align: left;
    color: var(--color-dark-blue);
    padding: 8px 0;
}

label {
    font-weight: 500;
}

.no-selection {
    user-select: none;
}

/* Inputs */

select.form-control {
    border-radius: 3px;
}

/*
    Style input placeholder to match mockups
    vendor-directives are required for these selectors
    to function properly
*/
::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--color-grey-450);
    opacity: 1; /* Firefox */
    font-weight: 400;
}

::-ms-input-placeholder {
    /* Internet Explorer 10-11, Microsoft Edge */
    color: var(--color-grey-450);
    font-weight: 400;
}

input[type='password']::-ms-reveal {
    /* Hide native Edge password reveal */
    display: none;
}

/*
    colorbox colors must match match abr-chart-pie colors.
*/
.colorbox.color-1 {
    background-color: var(--color-dark-blue);
}

.colorbox.color-2 {
    background-color: var(--color-grey-400);
}

.colorbox.color-3 {
    background-color: var(--color-grey-200);
    border: 1px solid var(--color-mix-white-dark-blue-72p);
}

.colorbox.color-4 {
    background-color: var(--color-gold);
}

.light-theme {
    .dark-theme-only {
        display: none;
    }
}

/* Everything in this file needs to be nested in this selector */
.dark-theme {
    background-color: var(--dark-theme-dark);

    .abr-loader-container {
        background-color: var(--dark-theme-dark);
    }

    .light-theme-only {
        display: none;
    }
}

.dark-theme > :not(abr-nav-bar):not(ux-dialog-container) {
    color: var(--dark-theme-secondary);

    .theme-color-set {
        background-color: var(--dark-theme-dark);
        color: var(--color-gold);
    }

    a {
        color: var(--dark-theme-secondary) !important;
        text-decoration: none;
    }

    #abr-profile-menu a {
        color: inherit !important;
    }

    textarea {
        color: var(--dark-theme-secondary);
    }

    .form-control {
        background-color: var(--dark-theme-dark);
        color: var(--dark-theme-secondary);
    }

    .abr-primary-btn {
        background-color: var(--dark-theme-primary);
        color: var(--color-black);
    }

    .abr-secondary-btn {
        background-color: var(--dark-theme-dark);
        color: var(--dark-theme-secondary);
        border-color: var(--dark-theme-secondary);
    }

    .abr-primary-btn.disabled,
    .abr-primary-btn:disabled,
    .abr-secondary-btn.disabled,
    .abr-secondary-btn:disabled {
        opacity: 0.5;
    }

    .abr-primary-btn:hover:not(:disabled),
    .abr-primary-btn:active:not(:disabled),
    .abr-primary-btn:focus:not(:disabled) {
        background-color: var(--color-light-gold);
        color: var(--dark-theme-dark);
        border-color: transparent;
    }

    .abr-secondary-btn:hover:not(:disabled),
    .abr-secondary-btn:active:not(:disabled),
    .abr-secondary-btn:focus:not(:disabled) {
        background-color: var(--color-white);
        color: var(--dark-theme-dark);
        border-color: transparent;
    }

    li {
        color: var(--dark-theme-secondary);
    }

    .abr-search-box-dropdown {
        background-color: var(--color-grey-600);
    }
}

.help-link {
    color: var(--color-light-blue);
    cursor: pointer;
    font-size: 18px;
    line-height: 0;
    margin-left: 10px;
    text-decoration: none;
    background-color: transparent;
    font-family: Merriweather, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.help-link:hover {
    color: var(--color-dark-blue);
}

/* Tippy customizations */

.tippy-content {
    font-weight: normal;
}

.tippy-content .link {
    white-space: nowrap;
    color: var(--color-orange);
}

.tippy-content .link:hover {
    color: var(--color-yellow);
}

.tippy-box {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
}

.tippy-box[data-animatefill] {
    background-color: transparent;
}

.tippy-box .tippy-backdrop {
    background-color: var(--color-dark-blue);
}

.tippy-box[data-placement^='top'] > .tippy-arrow {
    border-top-color: var(--color-dark-blue);
}

.tippy-box[data-placement^='bottom'] > .tippy-arrow {
    border-bottom-color: var(--color-dark-blue);
}

.tippy-box[data-placement^='left'] > .tippy-arrow {
    border-left-color: var(--color-dark-blue);
}

.tippy-box[data-placement^='right'] > .tippy-arrow {
    border-right-color: var(--color-dark-blue);
}

/* End Tippy Customizations */

.float-right {
    float: right;
}

.simple-wrap-row {
    padding-left: 15px;
    padding-right: 15px;
}

.simple-wrap-col {
    padding-bottom: 15px;
    padding-top: 15px;
}

.position-top-below-nav {
    flex: 1 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.position-top-no-nav {
    top: 0;
}

.abr-loader-container {
    background-color: var(--theme-light);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 50;
}

.abr-clear-inline-spaces {
    font-size: 0;
}

.abr-link-color {
    color: var(--theme-primary);
}

.sub-header-label {
    font-size: 20px;
    line-height: 1.2;
    vertical-align: middle;
}

.sub-header-label-large {
    font-family: Merriweather, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 30px;
    line-height: 1.2;
    vertical-align: middle;
}

.close-inline-gaps {
    line-height: 0;
}

.material-icons.normalize {
    font-size: 100%; /* normalize material icons with text */
    line-height: 0;
    position: relative;
    top: 2px;
    vertical-align: baseline;
}

/* this class is for the image loader container, and needs to be off screen so the user cant see them */
.image-loader-container {
    position: fixed;
    left: -5000px;
    visibility: hidden;
    pointer-events: none;
    height: 1px;
}

.no-pointer-events {
    pointer-events: none;
}

.abr-form-group-suppress-validation-message div.messages {
    display: none;
}

.abr-form-group-suppress-validation-message.has-error input,
.abr-form-group-suppress-validation-message.has-error select,
.abr-form-group-suppress-validation-message.has-error textarea {
    outline: 1px solid var(--color-pure-red);
}

.abr-custom-element {
    display: block;
}

.abr-vertical-align-helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.abr-clickable {
    cursor: pointer !important;
}

.abr-unclickable {
    cursor: not-allowed !important;
}

/* Animations */

.blink-twice {
    animation: blinker 0.8s linear;
    animation-iteration-count: 2;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* tablet and higher styling */

@media (min-width: 768px) {
    body {
        margin: 0;
    }

    .simple-wrap-row {
        padding-left: 9.5%;
        padding-right: 9.5%;
    }
}

/* Icon relevant classes */

.icon-spin {
    animation: icon-spin 2s infinite linear;
}

@keyframes icon-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}

/* Formula font size */

.ola-formula {
    font-size: 1.6em;
}

/* Responsive font sizes */

.font-2x {
    font-size: 2em;
}

/* Spacing Utility Classes */
.bottom-0 {
    bottom: 0;
}

.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 0.156rem !important;
}

.m-2 {
    margin: 0.313rem !important;
}

.m-3 {
    margin: 0.625rem !important;
}

.m-4 {
    margin: 0.938rem !important;
}

.m-denorm-2-0 {
    margin: 1.25rem !important;
}

.m-denorm-2-5 {
    margin: 1.563rem !important;
}

.m-5 {
    margin: 1.875rem !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.156rem !important;
}

.mt-2 {
    margin-top: 0.313rem !important;
}

.mt-3 {
    margin-top: 0.625rem !important;
}

.mt-4 {
    margin-top: 0.938rem !important;
}

.mt-denorm-2-0 {
    margin-top: 1.25rem !important;
}

.mt-denorm-2-5 {
    margin-top: 1.563rem !important;
}

.mt-5 {
    margin-top: 1.875rem !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.mr-1 {
    margin-right: 0.156rem !important;
}

.mr-2 {
    margin-right: 0.313rem !important;
}

.mr-3 {
    margin-right: 0.625rem !important;
}

.mr-4 {
    margin-right: 0.938rem !important;
}

.mr-denorm-2-0 {
    margin-right: 1.25rem !important;
}

.mr-denorm-2-5 {
    margin-right: 1.563rem !important;
}

.mr-5 {
    margin-right: 1.875rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.156rem !important;
}

.mb-2 {
    margin-bottom: 0.313rem !important;
}

.mb-3 {
    margin-bottom: 0.625rem !important;
}

.mb-4 {
    margin-bottom: 0.938rem !important;
}

.mb-denorm-2-0 {
    margin-bottom: 1.25rem !important;
}

.mb-denorm-2-5 {
    margin-bottom: 1.563rem !important;
}

.mb-5 {
    margin-bottom: 1.875rem !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.ml-1 {
    margin-left: 0.156rem !important;
}

.ml-2 {
    margin-left: 0.313rem !important;
}

.ml-3 {
    margin-left: 0.625rem !important;
}

.ml-4 {
    margin-left: 0.938rem !important;
}

.ml-denorm-2-0 {
    margin-left: 1.25rem !important;
}

.ml-denorm-2-5 {
    margin-left: 1.563rem !important;
}

.ml-5 {
    margin-left: 1.875rem !important;
}

.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mx-1 {
    margin-left: 0.156rem !important;
    margin-right: 0.156rem !important;
}

.mx-2 {
    margin-left: 0.313rem !important;
    margin-right: 0.313rem !important;
}

.mx-3 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
}

.mx-4 {
    margin-left: 0.938rem !important;
    margin-right: 0.938rem !important;
}

.mx-denorm-2-0 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
}

.mx-denorm-2-5 {
    margin-left: 1.563rem !important;
    margin-right: 1.563rem !important;
}

.mx-5 {
    margin-left: 1.875rem !important;
    margin-right: 1.875rem !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.my-1 {
    margin-top: 0.156rem !important;
    margin-bottom: 0.156rem !important;
}

.my-2 {
    margin-top: 0.313rem !important;
    margin-bottom: 0.313rem !important;
}

.my-3 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
}

.my-4 {
    margin-top: 0.938rem !important;
    margin-bottom: 0.938rem !important;
}

.my-denorm-2-0 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
}

.my-denorm-2-5 {
    margin-top: 1.563rem !important;
    margin-bottom: 1.563rem !important;
}

.my-5 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
}

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.156rem !important;
}

.p-2 {
    padding: 0.313rem !important;
}

.p-3 {
    padding: 0.625rem !important;
}

.p-4 {
    padding: 0.938rem !important;
}

.p-denorm-2-0 {
    padding: 1.25rem !important;
}

.p-denorm-2-5 {
    padding: 1.563rem !important;
}

.p-5 {
    padding: 1.875rem !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 0.156rem !important;
}

.pt-2 {
    padding-top: 0.313rem !important;
}

.pt-3 {
    padding-top: 0.625rem !important;
}

.pt-4 {
    padding-top: 0.938rem !important;
}

.pt-denorm-2-0 {
    padding-top: 1.25rem !important;
}

.pt-denorm-2-5 {
    padding-top: 1.563rem !important;
}

.pt-5 {
    padding-top: 1.875rem !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pr-1 {
    padding-right: 0.156rem !important;
}

.pr-2 {
    padding-right: 0.313rem !important;
}

.pr-3 {
    padding-right: 0.625rem !important;
}

.pr-4 {
    padding-right: 0.938rem !important;
}

.pr-denorm-2-0 {
    padding-right: 1.25rem !important;
}

.pr-denorm-2-5 {
    padding-right: 1.563rem !important;
}

.pr-5 {
    padding-right: 1.875rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 0.156rem !important;
}

.pb-2 {
    padding-bottom: 0.313rem !important;
}

.pb-3 {
    padding-bottom: 0.625rem !important;
}

.pb-4 {
    padding-bottom: 0.938rem !important;
}

.pb-denorm-2-0 {
    padding-bottom: 1.25rem !important;
}

.pb-denorm-2-5 {
    padding-bottom: 1.563rem !important;
}

.pb-5 {
    padding-bottom: 1.875rem !important;
}

.pb-10 {
    padding-bottom: 3.75rem !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.pl-1 {
    padding-left: 0.156rem !important;
}

.pl-2 {
    padding-left: 0.313rem !important;
}

.pl-3 {
    padding-left: 0.625rem !important;
}

.pl-4 {
    padding-left: 0.938rem !important;
}

.pl-denorm-2-0 {
    padding-left: 1.25rem !important;
}

.pl-denorm-2-5 {
    padding-left: 1.563rem !important;
}

.pl-5 {
    padding-left: 1.875rem !important;
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.px-1 {
    padding-left: 0.156rem !important;
    padding-right: 0.156rem !important;
}

.px-2 {
    padding-left: 0.313rem !important;
    padding-right: 0.313rem !important;
}

.px-3 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
}

.px-4 {
    padding-left: 0.938rem !important;
    padding-right: 0.938rem !important;
}

.px-denorm-2-0 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
}

.px-denorm-2-5 {
    padding-left: 1.563rem !important;
    padding-right: 1.563rem !important;
}

.px-5 {
    padding-left: 1.875rem !important;
    padding-right: 1.875rem !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-1 {
    padding-top: 0.156rem !important;
    padding-bottom: 0.156rem !important;
}

.py-2 {
    padding-top: 0.313rem !important;
    padding-bottom: 0.313rem !important;
}

.py-3 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
}

.py-4 {
    padding-top: 0.938rem !important;
    padding-bottom: 0.938rem !important;
}

.py-denorm-2-0 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
}

.py-denorm-2-5 {
    padding-top: 1.563rem !important;
    padding-bottom: 1.563rem !important;
}

.py-5 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
}

.pos-relative {
    position: relative;
}

.pos-absolute {
    position: absolute;
}

.mp-0,
.mp-0_0 {
    margin: 0 !important;
    padding: 0 !important;
}

.font-italic {
    font-style: italic;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-bold {
    font-weight: bold;
}

.font-weight-normal {
    font-weight: normal;
}

.font-size-12 {
    font-size: 12px;
}

.font-size-14 {
    font-size: 14px;
}

.font-size-16 {
    font-size: 16px;
}

.font-size-18 {
    font-size: 18px;
}

.font-size-20 {
    font-size: 20px;
}

.font-size-24 {
    font-size: 24px;
}

.font-size-50 {
    font-size: 50px;
}

.line-height-0 {
    line-height: 0 !important;
}

.line-height-sm {
    line-height: 1.22;
}

.line-height-md {
    line-height: 1.33;
}

.line-height-lg {
    line-height: 1.5;
}

.text-nowrap {
    white-space: nowrap !important;
}

/* Spacing Utility Classes */

/* Flex Utility Classes */
.d-flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-auto {
    flex: 1 1 auto;
}

.flex-col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.flex-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.flex-col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-column {
    flex-direction: column;
}

.flex-column-reverse {
    flex-direction: column-reverse;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-space-between {
    justify-content: space-between;
}

.justify-content-space-around {
    justify-content: space-around;
}

.justify-content-space-evenly {
    justify-content: space-evenly;
}

.justify-content-end {
    justify-content: flex-end;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-center {
    align-items: center;
}

.align-items-baseline {
    align-items: baseline;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-stretch {
    align-items: stretch;
}

.align-self-start {
    align-self: flex-start;
}

.align-self-center {
    align-self: center;
}

.align-self-baseline {
    align-self: baseline;
}

.align-self-end {
    align-self: flex-end;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-grow {
    flex-grow: 1;
}

.flex-grow-slow-1 {
    width: 80% !important;
}

.flex-grow-slow-2 {
    width: 60% !important;
}

.flex-grow-slow-3 {
    width: 40% !important;
}

.flex-grow-slow-4 {
    width: 20% !important;
}

.flex-grow-fast-1 {
    width: 125% !important;
}

.flex-grow-fast-2 {
    width: 167% !important;
}

.flex-grow-fast-3 {
    width: 250% !important;
}

.flex-grow-fast-4 {
    width: 500% !important;
}

.flex-shrink {
    flex-shrink: 1;
}

/* Flex Utility Classes End */

/* Display */

.d-grid {
    display: grid !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-inline {
    display: inline !important;
}

.d-block {
    display: block !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.w-full {
    width: 100%;
}

/* Center Div
    Use to center content horizontally and vertically within a div, both can have dynamic dimensions
    <div class="parent">
        <div class="center-div-container-1">
            <div class="center-div-container-2">
                <div class="child">
                </div>
            </div>
        </div>
    </div>
*/
.center-div-container-1 {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
}

.center-div-container-2 {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    text-align: center;
}

.absolute-fill {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

@media (max-width: 500px) {
    /* small Mobile */
    .hide-small-mobile {
        display: none !important;
    }

    .invisible-small-mobile {
        visibility: hidden;
    }
}

@media (max-width: 767px) {
    /* Mobile */

    /* Override aurelia ux-dialog padding so that it works in mobile */
    body[aurelia-app='main'] ux-dialog-container > div {
        padding: 0;
    }

    .hide-mobile {
        display: none !important;
    }

    .invisible-mobile {
        visibility: hidden;
    }
}

@media (min-width: 768px) {
    .flex-col-3-md {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .flex-col-9-md {
        flex: 0 0 75%;
        max-width: 75%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    /* Tablet */
    .hide-tablet {
        display: none !important;
    }

    .invisible-tablet {
        visibility: hidden;
    }
}

@media (min-width: 992px) {
    /* Desktop */
    .hide-desktop {
        display: none !important;
    }

    .invisible-desktop {
        visibility: hidden;
    }
}

/* Nav */

.nav-tabs .nav-item {
    margin-bottom: -1px;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
}

.navbar-dark .navbar-toggler {
    color: var(--color-white-a50p);
    border-color: var(--color-white-a10p);
}

/* QVC overrides */
.qvc-question-content-text,
.qvc-option {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

/* QVC-Intro.js customizations */

qvc-question {
    @media (min-width: 992px) {
        .qvc-media-fixed-container.introjs-fixParent {
            z-index: 9999999 !important;
        }

        .introjs-showElement > .introjs-fix-overlay {
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background-color: var(--color-grey-500-a70p);
            z-index: -1;
        }

        /* prettier-ignore */
        .qvc-media-fixed-container.introjs-fixParent qvc-image-viewport .introjs-fix-overlay,
        .qvc-media-fixed-container.introjs-fixParent .qvc-tab-well:not(.introjs-showElement) .introjs-fix-overlay,
        .qvc-media-fixed-container.introjs-fixParent
        .qvc-image-control-container:not(.introjs-showElement)
        .introjs-fix-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--color-grey-735-a90p);
            z-index: 1;
        }

        .qvc-media-fixed-container.introjs-fixParent .qvc-tab-well:not(.introjs-showElement).introjs-fix-overlay,
        .qvc-media-fixed-container.introjs-fixParent .qvc-tab-well.introjs-showElement .introjs-fix-overlay {
            bottom: -3px;
        }

        .qvc-media-fixed-container.introjs-fixParent .qvc-tab-well:not(.introjs-showElement),
        .qvc-media-fixed-container.introjs-fixParent .qvc-image-control-container:not(.introjs-showElement),
        .qvc-media-fixed-container.introjs-fixParent qvc-image-viewport {
            pointer-events: none;
        }
    }
}

.dark-theme {
    qvc-question {
        .introjs-showElement > .introjs-fix-overlay {
            background-color: var(--color-blackish-a90p);
        }
    }
}

qvc-image-control {
    .qvc-image-control-container.introjs-showElement {
        position: relative;
    }
}

/* End QVC-Intro.js customizations */

.material-icons {
    transform: rotate(0.03deg); /* This improves rendering of circular icons */
    font-size: 20px;
    vertical-align: middle;
}

.mi-arrow-downward::before {
    content: 'arrow_downward';
}

.mi-arrow-upward::before {
    content: 'arrow_upward';
}

.mi-cancel::before {
    content: 'cancel';
}

.mi-check::before {
    content: 'check';
}

.mi-check-box::before {
    content: 'check_box';
}

.mi-check-box-outline-blank::before {
    content: 'check_box_outline_blank';
}

.mi-check-circle::before {
    content: 'check_circle';
}

.mi-chevron-left::before {
    content: 'chevron_left';
}

.mi-chevron-right::before {
    content: 'chevron_right';
}

.mi-clear::before {
    content: 'clear';
}

.mi-delete::before {
    content: 'delete';
}

.mi-error::before {
    content: 'error';
}

.mi-error-outline::before {
    content: 'error_outline';
}

.mi-expand-less::before {
    content: 'expand_less';
}

.mi-expand-more::before {
    content: 'expand_more';
}

.mi-help::before {
    content: 'help';
}

.mi-highlight-off::before {
    content: 'highlight_off';
}

.mi-keyboard-arrow-down::before {
    content: 'keyboard_arrow_down';
}

.mi-keyboard-arrow-up::before {
    content: 'keyboard_arrow_up';
}

.mi-lock::before {
    content: 'lock';
}

.mi-menu::before {
    content: 'menu';
}

.mi-new-releases::before {
    content: 'new_releases';
}

.mi-panorama-fish-eye::before {
    content: 'panorama_fish_eye';
}

.mi-radio-button-unchecked::before {
    content: 'radio_button_unchecked';
}

.mi-radio-button-checked::before {
    content: 'radio_button_checked';
}

.mi-remove::before {
    content: 'remove';
}

.mi-remove-circle::before {
    content: 'remove_circle';
}

.mi-report::before {
    content: 'report';
}

.mi-search::before {
    content: 'search';
}

ux-dialog-overlay.active {
    background-color: black;
    opacity: 0.75 !important;
}

ux-dialog-container {
    align-items: center;
    display: flex !important;
    justify-content: center;

    > div {
        margin: auto !important;
    }

    ux-dialog {
        display: flex !important;
        flex-direction: column;
        max-width: 80vw;
        padding: 20px;
        position: relative;

        div.ux-dialog-header {
            flex-grow: 0;
            flex-shrink: 0;
            text-align: center;

            .material-icons {
                font-size: 88px;
            }

            .ux-dialog-cancel {
                color: var(--color-bluish-grey);
                cursor: pointer;
                font-size: 24px !important;
                position: absolute;
                right: 10px;
                top: 10px;
            }

            hr {
                margin-block-end: 1em;
                margin-block-start: 1em;
                margin-bottom: 0;
            }
        }

        div.ux-dialog-body {
            flex-grow: 1;
            flex-shrink: 1;
            overflow-x: hidden;
            overflow-y: auto;
            margin: 10px 0;
        }

        div.ux-dialog-footer {
            flex-grow: 0;
            flex-shrink: 0;
            text-align: center;

            hr {
                margin-block-end: 1em;
                margin-block-start: 1em;
                margin-top: 0;
            }
        }

        &.small-dialog {
            max-width: 300px;
        }

        &.medium-dialog {
            max-width: 600px;
        }

        &.large-dialog {
            max-width: 900px;
        }

        .dialog-button {
            min-width: 180px;
            margin: 5px 0;
        }
    }

    @media (max-width: 767px) {
        ux-dialog {
            max-width: 100vw;
            min-height: 90vh;
            min-width: 80vw;

            &.small-dialog {
                max-width: 80vw;
                min-height: 25vh;
            }

            &.medium-dialog {
                max-width: 80vw;
                min-height: 50vh;
            }

            &.large-dialog {
                min-height: 100vh;
                min-width: 100vw;
            }
        }
    }
}

/* used by the intro-js-service */
.abr-guide-tooltip {
    &.introjs-tooltip {
        padding: 10px 15px;
        min-width: 300px;
    }

    .introjs-tooltiptext {
        color: var(--color-dark-blue);
    }

    .introjs-button,
    .introjs-button:focus,
    .introjs-button:active {
        background-color: var(--color-dark-blue);
        background-image: none;
        color: var(--color-white);
        text-shadow: none;
        width: 100px;
        font-size: 16px;
        text-align: center;
        padding: 10px 15px;
        margin-left: 10px;
        text-decoration: none;

        &.introjs-skipbutton:not(.introjs-donebutton) {
            position: absolute;
            color: var(--color-grey-600) !important;
            top: 2px;
            right: 2px;
            padding: 0;
            background-color: transparent;
            border: none;
            width: auto;
            margin: 0;
        }

        &.introjs-skipbutton.introjs-donebutton {
            float: right;
            display: block;
        }

        &.introjs-prevbutton {
            border-right: 1px solid;
        }

        &.introjs-disabled {
            display: none !important;
        }
    }

    a:focus {
        outline: none;
    }

    .dismiss-link {
        cursor: pointer;
        color: var(--color-grey-100);
        position: absolute;
        top: 2px;
        right: 2px;
        font-size: 16px;
    }
}

.introjs-overlay {
    z-index: 999997;
}

.dark-theme {
    .introjs-helperLayer {
        background-color: var(--color-black-a90p);
    }

    .introjs-overlay {
        background-color: var(--color-grey-750);
    }
}



/*# sourceMappingURL=app-6b882012.0da066cfb2b37456f0c2.chunk.css.map*/