@charset "UTF-8";

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
}

@-ms-viewport {
    width: device-width;
}

footer,
header,
main,
nav,
section {
    display: block;
}

body {
    margin: 0;
    font-family: "Roboto Condensed", Roboto, "San Francisco", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    text-align: left;
    letter-spacing: .15px;
    background-color: #f2f2f9;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the body takes at least the full viewport height */
    margin: 0; /* Remove default body margin */
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

    ol ol,
    ul ul,
    ol ul,
    ul ol {
        margin-bottom: 0;
    }

a {
    color: #155fbb;
    text-decoration: none;
    background-color: transparent;
    transition: color .25s;
}

    a:hover,
    a:focus {
        color: #002760;
        text-decoration: underline;
        outline: none;
    }

    a:not([href]):not([tabindex]) {
        color: inherit;
        text-decoration: none;
    }

        a:not([href]):not([tabindex]):hover,
        a:not([href]):not([tabindex]):focus {
            color: inherit;
            text-decoration: none;
        }

        a:not([href]):not([tabindex]):focus {
            outline: 0;
        }

ul a,
ol a,
p a {
    text-decoration: underline;
}

img {
    vertical-align: middle;
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

button {
    border-radius: 0;
}

    button:focus {
        outline: thin dotted #333;
        outline-offset: 1px;
    }

input,
button {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button {
    text-transform: none;
}

button,
html [type="button"],
[type="submit"] {
    -webkit-appearance: button;
}

    button::-moz-focus-inner,
    [type="button"]::-moz-focus-inner,
    [type="submit"]::-moz-focus-inner {
        padding: 0;
        border-style: none;
    }

input[type="time"] {
    -webkit-appearance: listbox;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

[hidden] {
    display: none !important;
}

h5,
h6,
.h5,
.h6 {
    margin-bottom: 1.0625rem;
    font-family: inherit;
    line-height: 1.1;
    color: #000000;
}

h5,
.h5,
h6,
.h6 {
    margin-top: 1.0625rem;
}

h5,
.h5 {
    font-size: 1.5rem;
    letter-spacing: 0px;
}

h6,
.h6 {
    font-size: 1.5rem;
    letter-spacing: 0px;
}

h6,
.h6 {
    font-weight: 400;
}

h5,
.h5 {
    font-weight: 700;
}

.container {
    width: 100%;
    /*  display: flex;*/
    flex: 1;
    /*  align-items: center;*/
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-right: -15px;
    margin-left: -15px;
}


.col-12,
.col,
.col-md-2,
.col-md-6,
.col-md-7,
.col-md-12,
.col-lg-3,
.col-lg-4 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {

    .col-md-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 992px) {

    /*    body {
        overflow-y: hidden;
    }*/

    .col-lg-4 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-3 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}



.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.d-none {
    display: none !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.pr-4 {
    padding-right: 1.5rem !important;
}

@media print {

    *,
    *::before,
    *::after {
        text-shadow: none !important;
        box-shadow: none !important;
    }

    a:not(.btn) {
        text-decoration: underline;
    }


    img {
        page-break-inside: avoid;
    }

    p {
        orphans: 3;
        widows: 3;
    }

    @page {
        size: a3;
    }

    body {
        min-width: 992px !important;
    }

    .container {
        min-width: 992px !important;
    }

    .navbar {
        display: none;
    }
}

@font-face {
    font-family: xglyphregular;
    font-style: normal;
    font-weight: 400;
    src: url('../images/xglyph-regular.woff2') format('woff2');
}

[class*="xgl-"] {
    position: relative;
    top: 0.0625rem;
    display: table-cell;
    padding: 0;
    margin: 0;
    font-family: xglyphregular;
    font-size: 0;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    line-height: 0;
    speak: none;
    text-transform: none;
    background: none;
    border: none;
    outline: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.xglsize-24 {
    top: 0rem;
}

    .xglsize-24::before {
        font-size: 1.5rem;
        line-height: 1.5rem;
    }

[class*="_two_tone"]::before,
[class*="_two_tone"]::after {
    position: absolute;
    left: 0;
}

[class*="_two_tone"].xglsize-24 {
    top: 0rem;
    width: 1.5rem;
    height: 1.5rem;
}

    [class*="_two_tone"].xglsize-24::before,
    [class*="_two_tone"].xglsize-24::after {
        font-size: 1.5rem;
        line-height: 1.5rem;
    }

.xgl-announcement_two_tone::before {
    content: '\E025';
}

.xgl-announcement_two_tone::after {
    content: '\E026';
    opacity: .2;
}

.xgl-check_background::before {
    content: '\E0D3';
}

.xgl-exit::before {
    content: '\E1AE';
}

.xgl-menu::before {
    content: '\E2EA';
}

.xgl-profile::before {
    content: '\E390';
}

.xgl-redirect_all_two_tone::before {
    content: '\EAC2';
}

.xgl-redirect_all_two_tone::after {
    content: '\EAC3';
    opacity: .2;
}

.xgl-sort_down::before {
    content: '\E446';
}

.stacked-icon-size-32 {
    width: 32px;
    height: 32px;
}

.xrx-stacked-icon {
    position: relative;
}

.icon-href {
    margin-right: 20px;
}

.xrx-stacked-icon [class*="xgl-"] {
    position: absolute;
}

#all-service-drop-down {
    left: 0;
}

label {
    margin-bottom: 0.1875rem;
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: .25px;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 11px 0.375rem 11px;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: .15px;
    line-height: 1.2;
    color: #000000;
    background-color: transparent !important;
    background-clip: padding-box;
    border-radius: 0.25rem;
    border: 1px solid #ced4da;
}

    .form-control::-ms-expand {
        background-color: transparent;
        border: 0;
    }

    .form-control:focus {
        color: #000000;
        background-color: #fafaff;
        border-color: #155fbb;
        outline: 0;
        box-shadow: inset 0 0 0 1px #155fbb;
    }

    .form-control::placeholder {
        color: #9e9fa4;
        opacity: 1;
    }

    .form-control:disabled {
        background-color: transparent;
        opacity: 1;
    }

.col-form-label {
    padding-top: calc(0.375rem + 1px);
    padding-bottom: calc(0.375rem + 4px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1rem;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

    .input-group > .form-control {
        position: relative;
        flex: 1 1 auto;
        width: 1%;
        margin-bottom: 0;
    }

        .input-group > .form-control:focus {
            z-index: 3;
        }

        .input-group > .form-control + .form-control {
            margin-left: -1px;
        }

        .input-group > .form-control:not(:last-child) {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
        }

        .input-group > .form-control:not(:first-child) {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }

.xrx-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: none;
    color: #000000;
    background-color: #fafaff;
    box-shadow: inset 0 1px 0 0 #ffffff, 0 1px 2px 1px rgba(0, 0, 0, 0.16);
    transition: color .165s, background-color .165s, box-shadow .165s, transform .165s;
    height: 3rem;
    padding: 0 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.375rem;
}

@media (hover) {
    .xrx-btn:hover:not(:focus) {
        color: #000000;
        background-color: #fafaff;
        box-shadow: inset 0 1px 0 0 #ffffff, 0 4px 8px 3px rgba(0, 0, 0, 0.16), 0 0 4px 0 rgba(0, 0, 0, 0.08);
    }
}

.xrx-btn:focus {
    outline: none;
    /*    box-shadow: inset 0 1px 0 0 #ffffff, 0 0 0 3px #3a3c40, 0 0 0 6px rgba(58, 144, 209, 0.2);*/
}

.xrx-btn:not(:disabled):not(.disabled):active,
.xrx-btn:not(:disabled):not(.disabled).active {
    color: #000000;
    background-color: #bbbcc3;
/*    box-shadow: inset 0px 1px 2px 0 rgba(0, 0, 0, 0.5), inset 0 1px 0 0 #ffffff, 0 0 0 3px , 0 0 0 6px rgba(58, 144, 209, 0.2);*/
    transition-duration: .067s;
    transform: scale(0.978);
}


.xrx-btn:disabled {
    color: rgba(0, 0, 0, 0.3) !important;
    background-color: rgba(187, 188, 195, 0.3) !important;
    box-shadow: none !important;
}

.xrx-btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.xrx-btn:disabled {
    cursor: not-allowed;
}

a.xrx-btn {
    line-height: 3rem;
}

.xrx-btn.btn-secondary {
    color: #ffffff;
    background-color: #3a3c40;
/*    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.16);*/
    transition: color .165s, background-color .165s, box-shadow .165s, transform .165s;
}

@media (hover) {
    .xrx-btn.btn-secondary:hover:not(:focus) {
        color: #ffffff;
        background-color: #3a3c40;
        box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.16), 0 0 4px 0 rgba(0, 0, 0, 0.08);
        transition: color .165s, background-color .165s, box-shadow .165s, transform .165s;
    }
}

.xrx-btn.btn-secondary:focus {
    color: #ffffff;
    background-color: #3a3c40;
/*    box-shadow: 0 0 0 3px #3a3c40, 0 0 0 6px rgba(53, 82, 204, 0.2);*/
    transition: color .165s, background-color .165s, box-shadow .165s, transform .165s;
}

.xrx-btn.btn-secondary:not(:disabled):not(.disabled):active,
.xrx-btn.btn-secondary:not(:disabled):not(.disabled).active {
    color: #ffffff;
    background-color: #1d1e21;
    box-shadow: inset 0 1px 2px 0 black;
    transition: color .165s, background-color .165s, box-shadow .165s, transform .165s;
}


.xrx-btn.btn-secondary:disabled {
    color: rgba(0, 0, 0, 0.3) !important;
    background-color: rgba(187, 188, 195, 0.3) !important;
    box-shadow: none !important;
}

.btn-block {
    width: 100%;
}

input[type="submit"].btn-block,
input[type="button"].btn-block {
    width: 100%;
}

.xrx-btn [class*="xgl-"] {
    position: relative;
}

.xrx-list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    background-color: #fafaff;
    border: 1px solid #dbdbe3;
    border-radius: 6px;
}

.list-group-item {
    display: flex;
    align-items: center;
    min-height: 56px;
    background-color: transparent;
    color: #000000;
    outline: none;
}

    .list-group-item:first-child {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .list-group-item:last-child {
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
    }

@media (hover) {
    .list-group-item:hover {
        color: #000000;
    }
}

a.list-group-item {
    color: #000000;
    text-decoration: none !important;
}

.list-group-item-action {
    transition: background-color .5s;
}

@media (hover) {
    .list-group-item-action:hover:not(.disabled) {
        background-color: #f2f2f9;
        transition: background-color 0s;
    }
}

.list-group-item-action:active:not(.disabled) {
    background-color: #dbdbe3;
}

.list-group-item-action.active:not(.disabled) {
    background-color: #155fbb;
    color: #ffffff;
}

body:not(.using-mouse) .list-group-item:focus {
    box-shadow: inset 0 0 0 3px #3a90d1, inset 0 0 0 6px rgba(58, 144, 209, 0.2);
}

.dropdown-menu {
  position: absolute;
  left: -97px;
  z-index: 1070;
  display: block;
  float: left;
  min-width: 10rem;
  padding: 0;
  margin: 0;
  margin-top: 0.5rem;
  overflow: hidden;
  font-size: 1.125rem;
  color: #000000;
  text-align: left;
  list-style: none;
  visibility: hidden;
  background-color: #ffffff;
  background-clip: padding-box;
  opacity: 0;
  border-radius: 0.25rem;
  box-shadow: 0 0.125rem 0.625rem 0 rgba(0, 0, 0, 0.2);
  transition: visibility .25s, opacity .25s, margin-top .25s, margin-bottom .25s;
}

    .dropdown-menu a.list-group-item {
        text-decoration: none !important;
    }

.dropdown-toggle::after {
    border-right: 0;
    border-left: 0;
}

.select-btn-right-object {
    position: relative;
    top: 4px;
}

.xrx-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    word-wrap: break-word;
    color: #000000;
    background-color: #fafaff;
    background-clip: border-box;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.16);
    transition: box-shadow .165s;
}


    .xrx-card h5,
    .xrx-card h6 {
        margin-top: 0.625rem;
    }

.card-1line-title {
    display: flex;
    align-items: center;
    min-height: 60px;
    padding: 16px;
    color: #000000;
}

    .card-1line-title h5 {
        margin: 0;
    }

.card-img {
    width: 100%;
}

#content {
    padding-top: 4rem;
}

.xrx-navbar {
    box-shadow: 0 5px 12px 2px #c1c1c1;
    -webkit-box-shadow: 0 5px 12px 2px #c1c1c1;
    -moz-box-shadow: 0 5px 12px 2px #c1c1c1;
    border-bottom: 1px solid rgba(183, 183, 183, 0.81);
    background-color: #ffffff;
}

    .xrx-navbar a {
        text-decoration: none;
    }

    .xrx-navbar .dn-level1,
    .xrx-navbar .dn-level2 {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .xrx-navbar .dn-level1 a,
        .xrx-navbar .dn-level2 a {
            outline: none;
        }

.dn-menu-item-label {
  position: relative;
  font-size: 1.25rem;
  letter-spacing: .15px;
  color: #000000;
}

.dn-level1-item-glyph,
.dn-level2-item-glyph {
    display: none;
}

.dn-inner {
    margin: 0 auto;
}


.brand-img,
.app-brand-label {
    margin: 10px;
    font-weight: bold;
}

.dn-brand-img {
    position: relative;
    top: 1.3125rem;
    box-sizing: content-box;
    float: left;
    width: 6.25rem;
    padding: 0 1.25rem;
    font-size: 0;
}

.nav-opt-brand-header .dn-brand-img {
    display: none;
}

.dn-navbar-nav {
    width: 100%;
}

.dn-dropdown-menu {
    padding: 0;
    margin-top: 0 !important;
    overflow: hidden;
    border-radius: 0;
    border-bottom-right-radius: 0.4375rem;
    border-bottom-left-radius: 0.4375rem;
    opacity: 1 !important;
    transition: none;
}

.dn-menu-item a {
    display: flex;
    align-items: center;
    height: 3rem;
    padding: 0.0625rem 1rem 0 1rem;
    color: #000000;
    transition: background-color .5s;
}

    .dn-menu-item a:focus {
/*        box-shadow: inset 0 0 0 3px #3552cc, inset 0 0 0 6px rgba(53, 82, 204, 0.2);*/
    }

.dn-level1-item a:focus,
a:active,
a:hover {
    color: #000000;
}

.dn-level1-item a:hover {
    color: #000000;
}

.item-card {
    margin-bottom: 30px;
}

.dn-level1-item {
    float: left;
}

    .dn-level1-item a:hover {
        background-color: #cacbcd;
        transition: none;
        border-color: #3a3c40;
    }

    .dn-level1-item a:active {
/*        background-color: #ababae;*/
        transition: none;
        border-color: #3a3c40;
    }

    .dn-level1-item a.active {
        background-color: #ebebec;
        transition: none;
        border-bottom: 4px solid;
        border-color: #3a3c40;
    }


.dn-level2 {
    background-color: transparent;
}

.dn-level2-width {
    min-width: max-content;
}

.dn-level2-item2 {
    box-shadow: 17px -1px 0px 0px #bbbcc3;
    background-color: #ffffff;
}

.nul-secondary-utility {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nul-utility-item > a {
    display: flex;
    align-items: center;
    height: 3rem;
}

.nul-utility-item .nul-button-label {
    position: relative;
    top: 0.0625rem;
    padding-right: 0.625rem;
    font-size: 1.25rem;
    color: #000000;
    transition: color .25s;
}

.nul-utility-item .nul-button-glyph::before {
    top: 0.125rem;
    margin-right: -0.125rem;
    margin-left: -0.125rem;
    font-size: 1.5rem;
    line-height: 1.5rem;
    color: #ffffff;
    transition: color .25s;
}

.nul-utility-item:hover .nul-button-label,
.nul-utility-item:hover .nul-button-glyph::before {
    color: #000000;
}


.nul-utility-item:active .nul-button-label,
.nul-utility-item:active .nul-button-glyph::before {
    color: #000000;
}

.nul-utility-item .dropdown-item [class*="xgl-"]::before {
    margin-right: -0.25rem;
    margin-left: -0.25rem;
}

.nul-utility-item-user img {
    display: none;
}

.nav-opt-avatar .nul-utility-item-user .nul-button-glyph,
.nav-opt-avatar .nul-utility-item-user .nul-user-glyph {
    display: none;
}

.nav-opt-avatar .nul-utility-item-user .nul-user-image,
.nav-opt-avatar .nul-utility-item-user .nul-button-image {
    position: relative;
    box-sizing: content-box;
    display: inline;
    width: 2rem;
    height: 2rem;
    border-radius: 2.25rem;
}

.nav-opt-avatar .nul-utility-item-user .nul-user-image,
.nav-opt-avatar .nul-utility-item-user .nul-button-image-preferences {
    position: relative;
    box-sizing: content-box;
    display: inline;
}

.nav-opt-avatar .nul-utility-item-user .nul-button-image-preferences {
    top: 0.0625rem;
}

.nav-opt-avatar .nul-utility-item-user .nul-user-image {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 0.625rem;
}

.nav-opt-avatar .nul-utility-item-user .nul-button-image {
    top: 0.0625rem;
    margin-right: 10px;
}

.nul-utility-item-user li {
    padding-bottom: 0.4rem;
    padding-top: 0.4rem;
}



.mn-header {
    position: relative;
    height: 4rem;
    text-align: center;
    background-color: #fbfbff;
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.16), 0 0 4px 0 rgba(0, 0, 0, 0.08);
}

.mn-open-btn {
    position: absolute;
    top: 0;
    left: 0;
}


.mn-open-btn,
.nul-utility-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    padding: 0 1.0625rem;
    margin: 0;
    cursor: pointer;
    background-color: transparent;
    border: none;
}


    .mn-open-btn [class*="xgl-"]::before,
    .nul-utility-btn [class*="xgl-"]::before {
        font-size: 1.5rem;
        line-height: 1.5rem;
        color: #000000;
        transition: color .25s;
    }


    .mn-open-btn:hover [class*="xgl-"]::before,
    .nul-utility-btn:hover [class*="xgl-"]::before {
        color: rgba(0, 0, 0, 0.9);
    }


    .mn-open-btn:active [class*="xgl-"]::before,
    .nul-utility-btn:active [class*="xgl-"]::before {
        color: rgba(0, 0, 0, 0.6);
    }

.mn-backdrop {
    position: fixed;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    z-index: 980;
    background-color: #000000;
    opacity: 0;
    transition: opacity .25s;
}

.mn-app-brand {
    display: inline-flex;
    align-items: center;
    height: 4rem;
}

    .mn-app-brand .mn-app-brand-label {
        font-size: 1.25rem;
        font-weight: 700;
        letter-spacing: .25px;
        color: #000000;
    }

@media (min-width: 992px) {

    .xrx-brand-header .content,
    .dn-navbar-nav .dn-inner {
        max-width: 970px;
    }
}

@media (max-width: 991px) {
    nav.dn-navbar-nav {
        display: none;
    }
}

@media (min-width: 992px) {

    .dn-navbar-container {
        display: block;
    }

    .mn-header,
    .mn-backdrop {
        display: none;
    }

    .nul-utility-item {
        float: left;
        margin-right: 10px;
    }

    .nul-secondary-utility {
        position: static;
        float: right;
    }
}

.dropdown-item:hover {
    background-color: #cacbcd;
}

.dropdown-item {
    text-decoration: unset;
    margin-left: 0;
    height: 48px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    padding: 0 12px 0 16px;
}

.header-spec {
    font-weight: bold;
    letter-spacing: 0.15px;
    line-height: 20px;
}

.dropdown-menu {
    position: absolute;
    z-index: 1070;
    visibility: hidden;
    opacity: 0;
    margin-top: -8px !important;
    transition: visibility .165s linear, opacity .165s linear, margin-top .165s linear, margin-bottom .165s linear, margin-left .165s linear, margin-right .165s linear;
    min-width: 6rem;
    color: #000000;
    list-style: none;
    background-color: rgba(250, 250, 255, 0.95);
    background-clip: padding-box;
    border-radius: 0px 0px 6px 6px;
    box-shadow: 0 5px 8px 4px rgba(0, 0, 0, 0.16), 0 0 8px 0 rgba(0, 0, 0, 0.08);
}

    .dropdown-menu li a span {
        color: #000000;
    }

.mn-nul-utility-item-user:hover {
    background-color: #cacbcd;
}

.nul-utility-item-log {
    background-color: #ffffff;
}

.nul-utility-item-pref {
    background-color: #ffffff;
}

    .nul-utility-item-pref:hover,
    .nul-utility-item-log:hover {
        background-color: #cacbcd;
        width: -webkit-fill-available;
        display: inline-grid;
    }

    .nul-utility-item-pref:active,
    .nul-utility-item-log:active {
        background-color: #ababae;
        width: -webkit-fill-available;
    }

.language-preferences {
    border-radius: 6px !important;
    background-color: #fafaff !important;
}

    .language-preferences:hover {
        border-radius: 1px;
    }

    .language-preferences:active {
        border-radius: 1px;
    }

@media (max-width: 768px) {
    body {
        margin-left: 0 !important;
    }

    #content {
        padding-top: 4rem !important;
    }

    .mn-backdrop {
        display: block !important;
    }

    .xrx-footer {
        margin-left: 0 !important;
    }
}

@media (min-width: 1200px) {

    .xrx-brand-header .content,
    .dn-navbar-nav .dn-inner {
        max-width: 1082px;
    }
}


html {
    position: relative;
}

.xrx-footer {
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    position: fixed;
    align-items: center;
    min-height: 4.5rem;
    background-color: #dbdbe3;
    justify-content: center;
    margin-top: 0px;
}

    .xrx-footer ul {
        padding: 0;
        margin-bottom: 8px;
        list-style: none;
    }

        .xrx-footer ul:last-of-type li:last-child::after {
            display: none;
        }

    .xrx-footer li {
        display: inline-block;
        font-size: 1rem;
    }

        .xrx-footer li::after {
            display: inline-block;
            padding: 0 0.5rem;
            content: "|";
            color: #525256;
        }

    .xrx-footer a {
        color: #2b2c2f;
        text-decoration: none;
    }

        .xrx-footer a:hover {
            color: #2b2c2f;
            text-decoration: underline;
        }

    .xrx-footer .content {
        max-width: 1082px;
        width: 100%;
        padding: 16px;
        font-size: 1rem;
        letter-spacing: .25px;
        line-height: 1.2;
        color: #2b2c2f;
    }

        .xrx-footer .content .xerox-copyright {
            font-size: 0.85rem;
            letter-spacing: .35px;
            color: #2b2c2f;
        }


html {
    font-size: 1rem;
}

body {
    font-family: "Roboto Condensed", sans-serif;
    padding: 0;
}

.row:before {
    display: inline-block !important;
}

a,
a:active,
a:focus {
    color: #1d1e21;
}

    a:hover {
        color: #141417;
    }

.items_body {
    text-align: center;
}

.container {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .container {
        padding-top: 90px;
    }
}

@media (max-width: 992px) {
    .container {
        padding-bottom: 60px;
    }
}

.footer {
    padding-left: 0;
    padding-right: 30px;
}

.nul-utility-item-user {
    float: right;
}

    .nul-utility-item-user li {
        padding-bottom: 0.4rem;
    }

.list-group-header-other {
    display: flex;
    align-items: center;
    padding: 0 16px;
    height: 32px;
    font-size: 16px;
    letter-spacing: 0.25px;
    background-color: #dbdbe3;
    margin-right: 60px;
}

.xrx-footer {
    background-color: #e2e2ea;
}

    .xrx-footer ul {
        width: 100%;
    }

@media (min-width: 992px) {
    .xrx-card {
        text-decoration: none !important;
    }

        .xrx-card .card-1line-title {
            max-height: 60px;
        }

            .xrx-card .card-1line-title h5 {
                margin-top: 20px;
            }

        .xrx-card .card-img-top img {
            width: 350px;
            height: 200px;
            object-fit: cover;
            object-position: 20% 0%;
        }

        .xrx-card .card-body .service-txt {
            font-size: 18px;
            min-height: 100px;
            font-weight: 400;
            letter-spacing: 0.15px;
            line-height: 24px;
            padding: 16px;
            margin: 0;
        }
}

@media (max-width: 992px) {
    .xrx-card {
        text-decoration: none !important;
    }

        .xrx-card .card-1line-title {
            max-height: 60px;
        }

            .xrx-card .card-1line-title h5 {
                margin-top: 20px;
            }

        .xrx-card .card-img-top img {
            width: 350px;
            height: 200px;
            object-fit: cover;
            object-position: 20% 0%;
        }

        .xrx-card .card-body .service-txt {
            font-size: 16px;
            min-height: 100px;
            font-weight: 400;
            letter-spacing: 0.15px;
            line-height: 24px;
            padding: 16px;
        }
}

.card-body {
    flex: 1 1 auto;
    padding: 0px;
    color: #000000;
}

.xrx-list-group {
    border: none;
}

    .xrx-list-group .list-user-preferences {
        min-height: auto;
        padding-left: 10px;
        padding-top: 0px;
        padding-bottom: 0px;
        padding-right: 0px;
        border: none;
    }

        .xrx-list-group .list-user-preferences a.enclosing {
            text-decoration: none;
            display: block;
            width: 100%;
            height: 100%;
        }

        .xrx-list-group .list-user-preferences .item-image {
            width: 160px;
            height: 55px;
            margin-right: 20px;
            object-fit: cover;
            object-position: 20% 0%;
        }

        .xrx-list-group .list-user-preferences .content-list {
            width: 100%;
            padding: 0;
            margin: 0;
            max-height: 55px;
            min-height: 55px;
            display: flex;
            align-items: center;
        }

.items-help {
    border-bottom: 1px solid #dbdbe3 !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.form-group-list-preferences {
    padding-bottom: 10px;
}

@font-face {
    font-family: "Glyphicons Halflings";
    src: url("../fonts/glyphicons-halflings-regular.eot");
    src: url("../fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");
}

.nul-utility-item-pref {
    padding: 0 !important;
}

.nul-utility-item-log {
    padding: 0 !important;
}

.nul-utility-item-user li {
    width: max-content;
}

.nul-utility-item-pref:hover {
    width: max-content;
}

.nul-button-image-preferences {
    padding-right: 16px !important;
    top: 0 !important;
}

.dropdown-menu-user-full {
    border: 1px solid rgba(0, 0, 0, 0.15);
    text-align: left;
    overflow: hidden;
    font-size: 1.125rem;
    padding: 0;
    float: left;
    margin: -9px 0 0 0 !important;
    transition: visibility 0.165s linear, opacity 0.165s linear, margin-top 0.165s linear, margin-bottom 0.165s linear, margin-left 0.165s linear, margin-right 0.165s linear;
    width: min-content;
    color: #000000;
    list-style: none;
    background-color: white;
    background-clip: padding-box;
    border-radius: 6px;
    box-shadow: 0 8px 12px 4px rgba(0, 0, 0, 0.16), 0 0 8px 0 rgba(0, 0, 0, 0.08);
    z-index: 1070;
    position: absolute;
    height: auto;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: center;
}

    .dropdown-menu-user-full li a span {
        color: #000000;
    }

.btn-support {
    min-width: 150px;
    color: #000000 !important;
    background-color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 1px 1px 1px 1px rgba(99, 99, 99, 0.54);
}

    .btn-support:hover {
        background-color: #f2f2f9 !important;
        transition: background-color 0s !important;
    }

    .btn-support a:hover {
        background-color: transparent !important;
        transition: background-color 0s !important;
    }

    .btn-support:active {
        background-color: #dbdbe3 !important;
        transition: background-color 0s !important;
    }

    .btn-support::before {
        top: 6px;
        position: relative;
        content: url("./envelope.png");
        display: inline-block;
        width: 24px;
        height: 24px;
    }

    .btn-support a {
        min-width: 150px;
        color: #000000;
        background-color: transparent;
        border-color: transparent;
        text-decoration: auto;
        font-size: larger;
    }

#all-service-drop-down::-webkit-scrollbar {
    display: none;
}

#all-service-drop-down {
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll;
    max-height: 80vh;
}

.mn-header {
    position: relative;
    height: 4rem;
    text-align: left;
    padding-left: 60px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.16), 0 0 4px 0 rgba(0, 0, 0, 0.08);
}

.footer-row {
    margin-left: 0;
}

.mn-dropdown-divider {
    height: 0;
    margin: 0 0;
    overflow: hidden;
    padding-bottom: 8px;
}

.mn-dropdown-menu {
    border-radius: 6px !important;
    display: inline-grid !important;
}

.pref-row {
    justify-content: initial;
    margin-left: 16px;
    margin-top: 12px;
    margin-right: 20px;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
}

.logout-row {
    justify-content: initial;
    margin-left: 16px;
    margin-top: 12px;
    margin-right: 20px;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
}

.xsw-icon {
    width: 24px;
    height: 24px;
}

nav a:focus,
button[class*="xgl-"]:focus {
    outline: blue;
/*    box-shadow: 0 0 0 3px #3552cc, 0 0 0 6px rgba(53, 82, 204, 0.2);*/
    transition: color .165s, background-color .165s, box-shadow .165s, transform .165s;
}

.form-group .input-group {
    width: 100%;
}

@media (min-width: 768px) {
    .form-group.padded {
        margin-right: 60px;
    }

    .row.padded {
        margin-right: 45px;
    }

    label.padded {
        padding-right: 10px;
    }
}

@media (min-width: 992px) {
    .form-group.padded {
        margin-right: 60px;
    }

    .row.padded {
        margin-right: 45px;
    }

    label.padded {
        padding-right: 10px;
    }
}

@media (min-width: 1200px) {
    .form-group.padded {
        margin-right: 60px;
    }

    .row.padded {
        margin-right: 45px;
    }

    label.padded {
        padding-right: 10px;
    }
}

@media (min-width: 1400px) {
    .form-group.padded {
        margin-right: 60px;
    }

    .row.padded {
        margin-right: 45px;
    }

    label.padded {
        padding-right: 10px;
    }
}

.form-control {
    border-radius: 0;
    padding: 0 0 0 5px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.col-form-label {
    padding-top: 0px;
}

.btn,
.btn:active {
    min-width: 150px;
    color: #ffffff;
    background-color: #1a6fc5;
    border-color: #1a6fc5;
}

.btn:hover{
    cursor: pointer;
    background-color: #155fbb;
}

label {
    font-weight: normal;
}


::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    -webkit-appearance: none;
}


@media (max-width: 767px) {

    #print-releaf-image img,
    #digital-asset-image img,
    #high-quality-image img,
    #workflow-automation-image img,
    #digital-mail-image img,
    #digitization-scanning-image img,
    #commercial-print-image img {
        width: 100%;
        height: 100%;
    }
}

#user-profile-drop-down.dropdown-menu {
    top: 10px !important;
}

#user-profile-drop-down li {
    width: 100%;
}


.user-profile li.active a {
    border: 1px solid #dbdbdb;
    border-bottom-color: transparent;
}

.user-profile label {
    color: #737373;
}

:root {
    --swiper-theme-color: #434448;
}

@media (min-width: 768px) and (max-width: 991px) {
    .home-container .service-panels {
        margin-left: -7px;
        margin-right: -7px;
    }
}

@media (max-width: 767px) {
    .home-container .service-panels {
        margin-left: auto;
        margin-right: auto;
    }
}

.home-container .service-panels > .row {
    margin-left: 0px;
    margin-right: 0px;
}

.home-container .service-panels .item-card {
    min-width: 350px;
    padding-left: 10px;
    padding-right: 10px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home-container .service-panels .item-card {
        min-width: 384px !important;
    }
}

.home-container .service-panels .add-banner-message-text {
    margin-left: 10px;
    margin-right: 10px;
}

.home-container .service-panels .add-banner-message {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 25px;
}

.home-container .service-panels .row {
    position: relative;
}

.container {
  padding-right: 0px;
  padding-left: 0px;
  flex-grow :1;
}

@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 712px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 773px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1160px;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 536px;
    }
}

.container .home-top-container {
    background-color: #f2f2f9;
    padding: 5px 0px 5px 0px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .container .home-top-container {
        padding: 0px 0px 0px 0px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .container .home-top-container {
        padding: 0px 0px 0px 0px;
    }
}

.xrx-card .card-img-top .card-img {
    width: 100%;
}

button:focus {
    outline: none;
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.xerox-Signature {
    width: 100px;
    height: 20.34px;
    margin-top: 0px;
    margin-left: 20px;
}

.company-logo {
    height: 3rem;
}

.custom-form-control {
    display: block;
    width: 30rem;
    padding: 0.375rem 11px 0.375rem 11px;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: .15px;
    line-height: 1.2;
    color: #000000;
    background-color: transparent !important;
    background-clip: padding-box;
    border-radius: 0.25rem;
    border: 1px solid #ced4da;
    margin-bottom: 3px;
}

.custom-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: 10px;
}

.custom-form-control-large {
    display: block;
    width: 150%;
    padding: 0.375rem 11px 0.375rem 11px;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: .15px;
    line-height: 1.2;
    color: #000000;
    background-color: transparent !important;
    background-clip: padding-box;
    border-radius: 0.25rem;
    border: 1px solid #ced4da;
    margin-bottom: 3px;
}

    .custom-form-control-large:disabled {
        background-color: grey !important;
        color: white;
        opacity: 1;
    }

.loader {
    width: 100px;
    height: 100px;
    border: 10px solid #fa0;
    border-top: 10px solid tomato;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.exact-center {
    top: 50%;
    left: 40%;
    position: relative;
}

.support-head {
    line-height: 1.5;
}

.exact-center
{
    top:50%;
    left:40%;
    position:relative;
}


.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

#meter {
    height: 10px;
    background: #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 5px;
}

#strength-bar {
    height: 100%;
    width: 0%;
    background: red;
    transition: width 0.3s ease-in-out;
}

#strength-text {
    margin-top: 5px;
    font-weight: bold;
}