@charset "UTF-8";
/*############# PH&N IS 1.0 Styles - High contrast #############*/
/*#### by Tiffany Choong, Philippe Gommes & Benjamin Michoux ####*/
/*#### Using Bootstrap 3.0 & Scss ####*/
.xs-size::after {
    content: "480px";
}

.sm-size::after {
    content: "768px";
}

.md-size::after {
    content: "992px";
}

.lg-size::after {
    content: "1200px";
}

/*## FONTS ## */
/*## FONTS ## */
@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Light.woff");
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Regular.woff");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Italic.woff");
    font-style: italic;
    font-weight: 400;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Bold.woff");
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "Roboto Condensed";
    src: url("../fonts/RobotoCondensed-Light.woff");
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: "Roboto Condensed";
    src: url("../fonts/RobotoCondensed-Regular.woff");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Roboto Condensed";
    src: url("../fonts/RobotoCondensed-Bold.woff");
    font-style: normal;
    font-weight: 700;
}

body {
    background-color: #E2F6F7;
    background-image: linear-gradient(to bottom left, #E4F3FE 0%, #E2F6F7 100%);
    background-attachment: fixed;
}

body::before {
    content: '';
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url("../../_phnassets/images/temp/bg-zigzag-pattern.png");
    background-repeat: repeat;
}

.bubble {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.graphic-breakdown .text-group::after, .tiles .tile-left::after, .tiles .tile-right::after, .tiles .tile-right .tile-title::after, .graphic-breakdown .text-group::before, .tiles .tile-left::before, .tiles .tile-right::before, .tiles .tile-right .tile-title::before {
    content: "";
    display: table;
    clear: both;
}

ul.list-select li::before, ul.list-check li::before, .bubble-selection-multi input[type=checkbox] + label::before,
.bubble-selection-multi input[type=radio] + label::before, .bubble-selection-multi-small input[type=checkbox] + label::before,
.bubble-selection-multi-small input[type=radio] + label::before, ul.list-select li::after, ul.list-check li::after, .bubble-selection-multi input[type=checkbox] + label::after,
.bubble-selection-multi input[type=radio] + label::after, .bubble-selection-multi-small input[type=checkbox] + label::after,
.bubble-selection-multi-small input[type=radio] + label::after {
    position: absolute;
    transition: 0.4s;
}

ul.list-select li::before, ul.list-check li::before, .bubble-selection-multi input[type=checkbox] + label::before,
.bubble-selection-multi input[type=radio] + label::before, .bubble-selection-multi-small input[type=checkbox] + label::before,
.bubble-selection-multi-small input[type=radio] + label::before {
    content: "";
    top: 10px;
    right: 10px;
    height: 15px;
    width: 15px;
    border: solid 1px #0051a5;
    border-radius: 50%;
    background-color: #eaf6fe;
}

ul.list-select li::after, ul.list-check li::after, .bubble-selection-multi input[type=checkbox] + label::after,
.bubble-selection-multi input[type=radio] + label::after, .bubble-selection-multi-small input[type=checkbox] + label::after,
.bubble-selection-multi-small input[type=radio] + label::after {
    content: "\F012";
    top: 14px;
    right: 13px;
    width: auto;
    height: auto;
    font-family: "Black Tie";
    font-weight: 900;
    font-size: 8px;
    line-height: 1em;
    color: #ffffff;
    opacity: 0;
}

ul.list-select li.active::before, ul.list-check li.active::before, .bubble-selection-multi input[type=checkbox] + label.active::before,
.bubble-selection-multi input[type=radio] + label.active::before, .bubble-selection-multi-small input[type=checkbox] + label.active::before,
.bubble-selection-multi-small input[type=radio] + label.active::before {
    border-color: #eaf6fe;
    background-color: transparent;
}

ul.list-select li.active::after, ul.list-check li.active::after, .bubble-selection-multi input[type=checkbox] + label.active::after,
.bubble-selection-multi input[type=radio] + label.active::after, .bubble-selection-multi-small input[type=checkbox] + label.active::after,
.bubble-selection-multi-small input[type=radio] + label.active::after {
    opacity: 1;
}

@media (max-width: 480px) {
    .pull-left-xxs {
        float: left;
    }

    .pull-right-xxs {
        float: right;
    }

    .pull-right-xxs:after {
        clear: both;
    }

    .pull-left-xxs:after {
        clear: both;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .pull-left-xs {
        float: left;
    }

    .pull-right-xs {
        float: right;
    }

    .pull-right-xs:after {
        clear: both;
    }

    .pull-left-xs:after {
        clear: both;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .pull-left-sm {
        float: left;
    }

    .pull-right-sm {
        float: right;
    }

    .pull-right-sm:after {
        clear: both;
    }

    .pull-left-sm:after {
        clear: both;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pull-left-md {
        float: left;
    }

    .pull-right-md {
        float: right;
    }

    .pull-right-md:after {
        clear: both;
    }

    .pull-left-md:after {
        clear: both;
    }
}

@media (min-width: 1200px) {
    .pull-left-lg {
        float: left;
    }

    .pull-right-lg {
        float: right;
    }

    .pull-left-lg:after {
        clear: both;
    }

    .pull-right-lg:after {
        clear: both;
    }
}

/*## BOOTSTRAP COMPONENTS ##*/
/*# BOOTSTRAP COMPONENTS--THEME / MAIN EVENT COLOURS #*/
.has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline, .text-warning {
    color: #7f4907;
}

.has-warning.form-control, .has-warning .form-control {
    background-color: #fff6e7;
}

.panel-warning > .panel-heading {
    background-color: #7f4907;
    color: #ffffff;
}

.panel-warning > .panel-body {
    background-color: #fff6e7;
}

.btn.btn-warning {
    background-color: #7f4907;
    color: #ffffff;
    border-color: #7f4907;
}

.btn.btn-warning:hover {
    background-color: #603705;
    color: #ffffff;
}

.bg-warning {
    background-color: #fff6e7;
}

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .text-danger {
    color: #9c1f01;
}

.has-error.form-control, .has-error .form-control {
    background-color: #feebe9 !important;
}

.panel-danger > .panel-heading {
    background-color: #9c1f01;
    color: #ffffff;
}

.panel-danger > .panel-body {
    background-color: #feebe9;
}

.btn.btn-danger {
    color: #ffffff;
    border-color: #9c1f01;
    background-color: #9c1f01;
}

.btn.btn-danger:hover {
    background-color: #7e1a01;
    color: #ffffff;
}

.bg-danger {
    background-color: #feebe9;
}

.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .text-success {
    color: #355d14;
}

.has-success .form-control, .panel-success, .panel-success > .panel-heading {
    border-color: #f6f8e6;
}

.has-success.form-control, .has-success .form-control {
    background-color: #f6f8e6;
}

.panel-success > .panel-heading {
    background-color: #355d14;
    color: #ffffff;
}

.panel-success > .panel-body {
    background-color: #f6f8e6;
}

.bg-success {
    background-color: #f6f8e6;
}

.btn.btn-success {
    background-color: #355d14;
    color: #ffffff;
    border-color: #355d14;
}

.btn.btn-success:hover {
    background-color: #26420e;
    color: #ffffff;
}

.text-info {
    color: #0051a5;
}

.panel-info > .panel-heading {
    background-color: #0051a5;
    color: #ffffff;
}

.panel-info > .panel-body {
    background-color: #eaf6fe;
}

.btn.btn-info {
    background-color: #0051a5;
    color: #ffffff;
    border-color: #0051a5;
}

.btn.btn-info:hover {
    background-color: #003168;
    color: #ffffff;
}

.bg-info {
    background-color: #eaf6fe;
}

.text-primary {
    color: #005c63;
}

.label-primary {
    background-color: #e5f7f7;
    color: #005c63;
}

.panel-primary > .panel-heading {
    background-color: #005c63;
    color: #ffffff;
}

.panel-primary > .panel-body {
    background-color: #e5f7f7;
}

.btn.btn-primary {
    border-color: #005c63;
    background-color: #005c63;
    color: #ffffff;
}

.btn.btn-primary:hover, .btn.btn-default:hover {
    background-color: #003d41;
    border-color: #003d41;
    color: #ffffff;
}

.bg-primary {
    background-color: #e5f7f7;
    color: inherit;
}

.btn.btn-default {
    border-color: #005c63;
    color: #005c63;
}

.label-default, .badge {
    background-color: #eaeaea;
    color: #585858;
}

.label, .badge {
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 700;
    border-radius: 3px;
}

/*# BOOTSTRAP COMPONENTS--PANELS #*/
.panel {
    border-radius: 3px;
    border: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    font-family: "Roboto Condensed", Arial, sans-serif;
}

.panel-default {
    border-color: #f6f6f7;
}

.panel-default > .panel-heading {
    background-color: #585858;
    color: #ffffff;
}

.panel-heading {
    padding: 10px 20px;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    border-bottom: none;
    font-weight: 400;
}

.panel-body {
    padding: 20px;
    background-color: #f6f6f7;
}

.panel-footer {
    padding: 10px 20px;
    background-color: #e9eaec;
    border-top: none;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.panel-primary .panel-footer {
    background-color: #bfebec;
    border-top: none;
}

.panel-success .panel-footer {
    background-color: #eaeec2;
    border-top: none;
}

.panel-info .panel-footer {
    background-color: #bfe2fc;
    border-top: none;
}

.panel-warning .panel-footer {
    background-color: #fee8c3;
    border-top: none;
}

.panel-danger .panel-footer {
    background-color: #fdcfc9;
    border-top: none;
}

.panel-heading a:focus, .panel-heading a:hover {
    color: #ffffff;
}

.panel-title {
    font-family: "Roboto Condensed", Arial, sans-serif;
}

.text-muted {
    color: #6f6f6f;
}

/*# BOOTSTRAP COMPONENTS--BUTTONS #*/
.btn {
    font-weight: 300;
}

.btn-link, .btn-link:hover, .btn-link:focus {
    border: none !important;
    color: #0051a5;
}

.btn:active, .btn.active {
    box-shadow: none;
}

.btn.btn-primary.active, .btn.btn-default.active {
    background-color: #003d41;
    border-color: #003d41;
    color: #ffffff;
}

.btn-group .btn.btn-primary, .btn.btn-primary.active {
    border-right-color: #ffffff;
    border-left-color: #ffffff;
}

.btn.btn-primary {
    color: #ffffff;
}

.btn-lg, .btn-group-lg > .btn {
    height: auto !important;
    font-size: 1.4em !important;
    font-weight: 300;
}

.btn-sm, .btn-group-sm > .btn {
    height: auto !important;
    font-size: 0.875em !important;
}

.btn-xxs, .btn-group-xxs > .btn, .btn-xs, .btn-group-xs > .btn {
    height: auto !important;
    font-size: 0.75em !important;
}

/*# BOOTSTRAP COMPONENTS--FORMS #*/
.form-control {
    font-family: "Roboto", Arial, sans-serif;
    border: 1px solid #b3b3b3;
    border-radius: 3px;
    outline: none;
    font-size: 1em;
    color: #252525;
}

.form-group label > span, .ind-requiwarm-red {
    color: #9c1f01;
}

.form-control-inline {
    display: inline-block;
    width: auto;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    color: #ffffff;
    background-color: #005c63;
}

.nav-pills > li > a {
    height: 50px;
    font-family: "Roboto", Arial, sans-serif;
}

.tab-content {
    margin-bottom: 20px;
}

.form-group.has-success input:focus {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d4dc84;
    border-color: #355d14;
}

.form-group.has-warning input:focus {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #fdd188;
    border-color: #7f4907;
}

.form-group.has-error input:focus {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #fc9f92;
    border-color: #9c1f01;
}

.input-group-addon {
    border: #c4c8cc;
    background-color: #c4c8cc;
    color: #444444;
}

.radio input[type=radio] {
    left: 0;
    height: auto;
    padding: 0;
    margin: 0;
    margin-top: 0.35em;
    -webkit-appearance: radio;
}

.checkbox input[type=checkbox] {
    left: 0;
    height: auto;
    padding: 0;
    margin: 0;
    margin-top: 0.35em;
    -webkit-appearance: checkbox;
}

/*# BOOTSTRAP COMPONENTS--INPUT GROUP #*/
.input-group-btn {
    font-size: inherit !important;
}

.btn-group {
    width: 100%;
}

.input-group {
    font-family: "Roboto", Arial, sans-serif;
}

/*# BOOTSTRAP COMPONENTS--MODALS #*/
.modal-content {
    border-radius: 0;
}

.modal-backdrop {
    background: #ffffff;
}

.modal-region a i {
    font-size: 0.833em;
}

.modal-footer {
    padding-top: 5px;
}

/*# BOOTSTRAP FIXES #*/
.caret {
    width: auto;
    height: auto;
    border: none;
    font-family: "Black Tie";
    font-weight: 400;
    font-size: 0.6em;
}

.caret:after {
    content: "\F091";
}

.navbar {
    border: 0px solid transparent;
}

.navbar-nav {
    float: right !important;
}

.breadcrumb {
    background-color: #f6f6f7;
    border-radius: 3px;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 300;
}

.breadcrumb > .active {
    color: #585858;
}

.breadcrumb > li + li:before {
    content: "|\00a0";
    color: #b3b3b3;
}

.pagination > li > a {
    border: 1px solid #585858;
    color: #0051a5;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 300;
}

.pagination > li > a:hover {
    color: #0051a5;
    border-color: #585858;
    background-color: #585858;
}

.jumbotron {
    background-color: #f6f6f7;
    border-radius: 0 !important;
    font-family: "Roboto", Arial, sans-serif;
}

.jumbotron .btn, .jumbotron .btn-lg {
    font-size: 1em !important;
    font-family: "Roboto", Arial, sans-serif;
}

.alert-dismissible .close {
    right: -5px;
    text-shadow: none;
    font-weight: 300;
}

.list-group-item {
    border: 1px solid #585858;
}

.list-group {
    font-family: "Roboto Condensed", Arial, sans-serif;
    border-color: #585858;
}

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
    background-color: #0051a5;
    border-color: #0051a5;
}

a.list-group-item {
    color: #444444;
}

a.list-group-item:hover, a.list-group-item:focus {
    color: #444444;
    background-color: #f6f6f7;
}

.list-group-item:first-child {
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.list-group-item:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.list-group-item-success {
    background-color: #f6f8e6;
    color: #355d14;
}

a.list-group-item-success {
    background-color: #f6f8e6;
    color: #355d14;
}

a.list-group-item-success:hover, a.list-group-item-success:focus {
    color: #355d14;
    background-color: #eaeec2;
}

.list-group-item-info {
    background-color: #eaf6fe;
    color: #0051a5;
}

a.list-group-item-info {
    background-color: #eaf6fe;
    color: #0051a5;
}

a.list-group-item-info:hover, a.list-group-item-info:focus {
    color: #0051a5;
    background-color: #bfe2fc;
}

.list-group-item-warning {
    background-color: #fff6e7;
    color: #7f4907;
}

a.list-group-item-warning {
    background-color: #fff6e7;
    color: #7f4907;
}

a.list-group-item-warning:hover, a.list-group-item-warning:focus {
    color: #7f4907;
    background-color: #fee8c3;
}

.list-group-item-danger {
    background-color: #feebe9;
    color: #9c1f01;
}

a.list-group-item-danger {
    background-color: #feebe9;
    color: #9c1f01;
}

a.list-group-item-danger:hover, a.list-group-item-danger:focus {
    color: #9c1f01;
    background-color: #fdcfc9;
}

.dropdown button.dropdown-toggle {
    position: relative;
    padding: 10px 19px;
}

.dropdown button.dropdown-toggle:hover, .dropdown button.dropdown-toggle:focus, .dropdown button.dropdown-toggle.btn-default:focus, .dropdown button.dropdown-toggle.btn-default.active {
    background-color: inherit;
    color: inherit;
}

.dropdown.open > .dropdown-toggle.btn-default {
    background-color: inherit;
    color: inherit;
}

.dropdown .dropdown-menu .divider {
    background-color: #e9eaec;
}

/*## End of BOOTSTRAP COMPONENTS ## */
/*## COLOUR CLASSES ##*/
.c-transparent {
    color: transparent !important;
}

.c-dark-blue {
    color: #002750 !important;
}

.c-dark-blue-tint-1 {
    color: #003168 !important;
}

.c-rbc-blue {
    color: #0051a5 !important;
}

.c-blue-tint-1 {
    color: #006ac3 !important;
}

.c-blue-tint-2 {
    color: #73b0e3 !important;
}

.c-blue-tint-3 {
    color: #c3e2fa !important;
}

.c-blue-tint-4 {
    color: #e3f4ff !important;
}

.c-blue-tint-5 {
    color: #f5fcff !important;
}

.c-black {
    color: #000000 !important;
}

.c-black-tint-1 {
    color: #252525 !important;
}

.c-dark-gray, .c-dark-grey {
    color: #444444 !important;
}

.c-gray, .c-grey {
    color: #585858 !important;
}

.c-gray-tint-1, .c-grey-tint-1 {
    color: #6f6f6f !important;
}

.c-gray-tint-2, .c-grey-tint-2 {
    color: #b3b3b3 !important;
}

.c-gray-light-tint-3, .c-grey-light-tint-3 {
    color: #eaeaea !important;
}

.c-gray-light-tint-2, .c-grey-light-tint-2 {
    color: #f3f4f5 !important;
}

.c-gray-light-tint-1, .c-grey-light-tint-1 {
    color: #fafafa !important;
}

.c-white {
    color: #ffffff !important;
}

.c-carbon-dark {
    color: #50585f !important;
}

.c-carbon-dark-tint-1 {
    color: #6b7782 !important;
}

.c-carbon {
    color: #899299 !important;
}

.c-carbon-tint-1 {
    color: #c4c8cc !important;
}

.c-carbon-tint-2 {
    color: #e9eaec !important;
}

.c-carbon-tint-3 {
    color: #f6f6f7 !important;
}

.c-blue-grey-dark, .c-blue-gray-dark {
    color: #3f5763 !important;
}

.c-blue-grey, .c-blue-gray {
    color: #8499a6 !important;
}

.c-seaweed-dark {
    color: #416866 !important;
}

.c-seaweed {
    color: #588886 !important;
}

.c-seaweed-tint-1 {
    color: #abc3c2 !important;
}

.c-seaweed-tint-2 {
    color: #e3ebeb !important;
}

.c-seaweed-tint-3 {
    color: #f2f6f6 !important;
}

.c-teal-dark {
    color: #007077 !important;
}

.c-teal-dark-tint-1 {
    color: #00A5AE !important;
}

.c-teal {
    color: #00aeb5 !important;
}

.c-teal-tint-1 {
    color: #7fd6da !important;
}

.c-teal-tint-2 {
    color: #bfebec !important;
}

.c-teal-tint-3 {
    color: #e5f7f7 !important;
}

.c-moss-dark {
    color: #756803 !important;
}

.c-moss {
    color: #b5a80c !important;
}

.c-moss-tint-1 {
    color: #dad385 !important;
}

.c-moss-tint-2 {
    color: #ece9c2 !important;
}

.c-moss-tint-3 {
    color: #f7f6e6 !important;
}

.c-gold {
    color: #6e560e !important;
}

.c-gold-tint-1 {
    color: #8a732c !important;
}

.c-gold-tint-2 {
    color: #b8a970 !important;
}

.c-gold-tint-3 {
    color: #ece6ce !important;
}

.c-beige-dark {
    color: #756738 !important;
}

.c-beige-dark-tint-1 {
    color: #9d8e54 !important;
}

.c-beige {
    color: #b8a970 !important;
}

.c-beige-tint-1 {
    color: #dbd4b7 !important;
}

.c-beige-tint-2 {
    color: #eeeadd !important;
}

.c-beige-tint-3 {
    color: #f8f6f0 !important;
}

.c-sun-dark {
    color: #9e5406 !important;
}

.c-sun {
    color: #fca311 !important;
}

.c-sun-tint-1 {
    color: #fdd188 !important;
}

.c-sun-tint-2 {
    color: #fee8c3 !important;
}

.c-sun-tint-3 {
    color: #fff6e7 !important;
}

.c-yellow-dark {
    color: #836500 !important;
}

.c-yellow {
    color: #fedf01 !important;
}

.c-yellow-tint-1 {
    color: #feef80 !important;
}

.c-yellow-tint-2 {
    color: #fff7bf !important;
}

.c-yellow-tint-3 {
    color: #fffce5 !important;
}

.c-green-dark {
    color: #5f6324 !important;
}

.c-green {
    color: #6b702b !important;
}

.c-green-tint-1 {
    color: #b5b795 !important;
}

.c-green-tint-2 {
    color: #dadbca !important;
}

.c-green-tint-3 {
    color: #f0f0e9 !important;
}

.c-red {
    color: #9b301b !important;
}

.c-red-tint-1 {
    color: #cd978d !important;
}

.c-red-tint-2 {
    color: #e6cbc6 !important;
}

.c-red-tint-3 {
    color: #f5eae8 !important;
}

.c-tundra-dark {
    color: #466c86 !important;
}

.c-tundra-dark-tint-1 {
    color: #6595a9 !important;
}

.c-tundra {
    color: #87afbf !important;
}

.c-tundra-tint-1 {
    color: #c3d7df !important;
}

.c-tundra-tint-2 {
    color: #e1ebef !important;
}

.c-tundra-tint-3 {
    color: #f3f7f8 !important;
}

.c-apple-dark {
    color: #616f03 !important;
}

.c-apple {
    color: #aaba0a !important;
}

.c-apple-tint-1 {
    color: #d4dc84 !important;
}

.c-apple-tint-2 {
    color: #eaeec2 !important;
}

.c-apple-tint-3 {
    color: #f6f8e6 !important;
}

.c-sky-dark {
    color: #236e9a !important;
}

.c-sky {
    color: #51b5e0 !important;
}

.c-sky-tint-1 {
    color: #a8daef !important;
}

.c-sky-tint-2 {
    color: #d3ecf7 !important;
}

.c-sky-tint-3 {
    color: #edf7fc !important;
}

.c-warm-grey-dark {
    color: #70665b !important;
}

.c-warm-grey-dark-tint-1 {
    color: #998e7d !important;
}

.c-warm-grey {
    color: #c1b5a5 !important;
}

.c-warm-grey-tint-1 {
    color: #e0dad2 !important;
}

.c-warm-grey-tint-2 {
    color: #efece8 !important;
}

.c-warm-grey-tint-3 {
    color: #f9f7f6 !important;
}

.c-warm-red-dark {
    color: #b91a0e !important;
}

.c-warm-red {
    color: #f93f26 !important;
}

.c-warm-red-tint-1 {
    color: #fc9f92 !important;
}

.c-warm-red-tint-2 {
    color: #fdcfc9 !important;
}

.c-warm-red-tint-3 {
    color: #feebe9 !important;
}

.c-wine {
    color: #8b214b !important;
}

.c-violet {
    color: #493d63 !important;
}

.c-violet-tint-1 {
    color: #a49ab1 !important;
}

.c-violet-tint-2 {
    color: #d1cdd8 !important;
}

.c-violet-tint-3 {
    color: #ecebef !important;
}

.c-pear-dark {
    color: #726c1a !important;
}

.c-pear {
    color: #d6ce49 !important;
}

.c-pear-tint-1 {
    color: #eae6a4 !important;
}

.c-pear-tint-2 {
    color: #f5f3d1 !important;
}

.c-pear-tint-3 {
    color: #fbfaec !important;
}

.c-deep-gold {
    color: #e8cf00 !important;
}

.c-brown-dark {
    color: #7d5437 !important;
}

.c-brown {
    color: #906646 !important;
}

.c-brown-tint-1 {
    color: #c7b2a2 !important;
}

.c-brown-tint-2 {
    color: #e3d9d1 !important;
}

.c-brown-tint-3 {
    color: #f4efec !important;
}

.c-slate {
    color: #6f6e6f !important;
}

.c-bright-blue-dark {
    color: #003168 !important;
}

.c-bright-blue-dark-tint-1 {
    color: #0051a5 !important;
}

.c-bright-blue {
    color: #1596F3 !important;
}

.c-bright-blue-tint-1 {
    color: #46acf5 !important;
}

.c-bright-blue-tint-2 {
    color: #bfe2fc !important;
}

.c-bright-blue-tint-3 {
    color: #e1f1fd !important;
}

.b-transparent {
    background-color: transparent !important;
}

.b-dark-blue {
    background-color: #002750 !important;
}

.b-dark-blue-tint-1 {
    background-color: #003168 !important;
}

.b-rbc-blue {
    background-color: #0051a5 !important;
}

.b-blue-tint-1 {
    background-color: #006ac3 !important;
}

.b-blue-tint-2 {
    background-color: #73b0e3 !important;
}

.b-blue-tint-3 {
    background-color: #c3e2fa !important;
}

.b-blue-tint-4 {
    background-color: #e3f4ff !important;
}

.b-blue-tint-5 {
    background-color: #f5fcff !important;
}

.b-black {
    background-color: #000000 !important;
}

.b-black-tint-1 {
    background-color: #252525 !important;
}

.b-dark-gray, .b-dark-grey {
    background-color: #444444 !important;
}

.b-gray, .b-grey {
    background-color: #585858 !important;
}

.b-gray-tint-1, .b-grey-tint-1 {
    background-color: #6f6f6f !important;
}

.b-gray-tint-2, .b-grey-tint-2 {
    background-color: #b3b3b3 !important;
}

.b-gray-light-tint-3, .b-grey-light-tint-3 {
    background-color: #eaeaea !important;
}

.b-gray-light-tint-2, .b-grey-light-tint-2 {
    background-color: #f3f4f5 !important;
}

.b-gray-light-tint-1, .b-grey-light-tint-1 {
    background-color: #fafafa !important;
}

.b-white {
    background-color: #ffffff !important;
}

.b-carbon-dark {
    background-color: #50585f !important;
}

.b-carbon-dark-tint-1 {
    background-color: #6b7782 !important;
}

.b-carbon {
    background-color: #899299 !important;
}

.b-carbon-tint-1 {
    background-color: #c4c8cc !important;
}

.b-carbon-tint-2 {
    background-color: #e9eaec !important;
}

.b-carbon-tint-3 {
    background-color: #f6f6f7 !important;
}

.b-blue-grey-dark, .b-blue-gray-dark {
    background-color: #3f5763 !important;
}

.b-blue-grey, .b-blue-gray {
    background-color: #8499a6 !important;
}

.b-seaweed-dark {
    background-color: #416866 !important;
}

.b-seaweed {
    background-color: #588886 !important;
}

.b-seaweed-tint-1 {
    background-color: #abc3c2 !important;
}

.b-seaweed-tint-2 {
    background-color: #e3ebeb !important;
}

.b-seaweed-tint-3 {
    background-color: #f2f6f6 !important;
}

.b-teal-dark {
    background-color: #007077 !important;
}

.b-teal-dark-tint-1 {
    background-color: #00A5AE !important;
}

.b-teal {
    background-color: #00aeb5 !important;
}

.b-teal-tint-1 {
    background-color: #7fd6da !important;
}

.b-teal-tint-2 {
    background-color: #bfebec !important;
}

.b-teal-tint-3 {
    background-color: #e5f7f7 !important;
}

.b-moss-dark {
    background-color: #756803 !important;
}

.b-moss {
    background-color: #b5a80c !important;
}

.b-moss-tint-1 {
    background-color: #dad385 !important;
}

.b-moss-tint-2 {
    background-color: #ece9c2 !important;
}

.b-moss-tint-3 {
    background-color: #f7f6e6 !important;
}

.b-gold {
    background-color: #6e560e !important;
}

.b-gold-tint-1 {
    background-color: #8a732c !important;
}

.b-gold-tint-2 {
    background-color: #b8a970 !important;
}

.b-gold-tint-3 {
    background-color: #ece6ce !important;
}

.b-beige-dark {
    background-color: #756738 !important;
}

.b-beige-dark-tint-1 {
    background-color: #9d8e54 !important;
}

.b-beige {
    background-color: #b8a970 !important;
}

.b-beige-tint-1 {
    background-color: #dbd4b7 !important;
}

.b-beige-tint-2 {
    background-color: #eeeadd !important;
}

.b-beige-tint-3 {
    background-color: #f8f6f0 !important;
}

.b-sun-dark {
    background-color: #9e5406 !important;
}

.b-sun {
    background-color: #fca311 !important;
}

.b-sun-tint-1 {
    background-color: #fdd188 !important;
}

.b-sun-tint-2 {
    background-color: #fee8c3 !important;
}

.b-sun-tint-3 {
    background-color: #fff6e7 !important;
}

.b-yellow-dark {
    background-color: #836500 !important;
}

.b-yellow {
    background-color: #fedf01 !important;
}

.b-yellow-tint-1 {
    background-color: #feef80 !important;
}

.b-yellow-tint-2 {
    background-color: #fff7bf !important;
}

.b-yellow-tint-3 {
    background-color: #fffce5 !important;
}

.b-green-dark {
    background-color: #5f6324 !important;
}

.b-green {
    background-color: #6b702b !important;
}

.b-green-tint-1 {
    background-color: #b5b795 !important;
}

.b-green-tint-2 {
    background-color: #dadbca !important;
}

.b-green-tint-3 {
    background-color: #f0f0e9 !important;
}

.b-red {
    background-color: #9b301b !important;
}

.b-red-tint-1 {
    background-color: #cd978d !important;
}

.b-red-tint-2 {
    background-color: #e6cbc6 !important;
}

.b-red-tint-3 {
    background-color: #f5eae8 !important;
}

.b-tundra-dark {
    background-color: #466c86 !important;
}

.b-tundra-dark-tint-1 {
    background-color: #6595a9 !important;
}

.b-tundra {
    background-color: #87afbf !important;
}

.b-tundra-tint-1 {
    background-color: #c3d7df !important;
}

.b-tundra-tint-2 {
    background-color: #e1ebef !important;
}

.b-tundra-tint-3 {
    background-color: #f3f7f8 !important;
}

.b-apple-dark {
    background-color: #616f03 !important;
}

.b-apple {
    background-color: #aaba0a !important;
}

.b-apple-tint-1 {
    background-color: #d4dc84 !important;
}

.b-apple-tint-2 {
    background-color: #eaeec2 !important;
}

.b-apple-tint-3 {
    background-color: #f6f8e6 !important;
}

.b-sky-dark {
    background-color: #236e9a !important;
}

.b-sky {
    background-color: #51b5e0 !important;
}

.b-sky-tint-1 {
    background-color: #a8daef !important;
}

.b-sky-tint-2 {
    background-color: #d3ecf7 !important;
}

.b-sky-tint-3 {
    background-color: #edf7fc !important;
}

.b-warm-grey-dark {
    background-color: #70665b !important;
}

.b-warm-grey-dark-tint-1 {
    background-color: #998e7d !important;
}

.b-warm-grey {
    background-color: #c1b5a5 !important;
}

.b-warm-grey-tint-1 {
    background-color: #e0dad2 !important;
}

.b-warm-grey-tint-2 {
    background-color: #efece8 !important;
}

.b-warm-grey-tint-3 {
    background-color: #f9f7f6 !important;
}

.b-warm-red-dark {
    background-color: #b91a0e !important;
}

.b-warm-red {
    background-color: #f93f26 !important;
}

.b-warm-red-tint-1 {
    background-color: #fc9f92 !important;
}

.b-warm-red-tint-2 {
    background-color: #fdcfc9 !important;
}

.b-warm-red-tint-3 {
    background-color: #feebe9 !important;
}

.b-wine {
    background-color: #8b214b !important;
}

.b-violet {
    background-color: #493d63 !important;
}

.b-violet-tint-1 {
    background-color: #a49ab1 !important;
}

.b-violet-tint-2 {
    background-color: #d1cdd8 !important;
}

.b-violet-tint-3 {
    background-color: #ecebef !important;
}

.b-pear-dark {
    background-color: #726c1a !important;
}

.b-pear {
    background-color: #d6ce49 !important;
}

.b-pear-tint-1 {
    background-color: #eae6a4 !important;
}

.b-pear-tint-2 {
    background-color: #f5f3d1 !important;
}

.b-pear-tint-3 {
    background-color: #fbfaec !important;
}

.b-deep-gold {
    background-color: #e8cf00 !important;
}

.b-brown-dark {
    background-color: #7d5437 !important;
}

.b-brown {
    background-color: #906646 !important;
}

.b-brown-tint-1 {
    background-color: #c7b2a2 !important;
}

.b-brown-tint-2 {
    background-color: #e3d9d1 !important;
}

.b-brown-tint-3 {
    background-color: #f4efec !important;
}

.b-slate {
    background-color: #6f6e6f !important;
}

.b-bright-blue-dark {
    background-color: #003168 !important;
}

.b-bright-blue-dark-tint-1 {
    background-color: #0051a5 !important;
}

.b-bright-blue {
    background-color: #1596F3 !important;
}

.b-bright-blue-tint-1 {
    background-color: #46acf5 !important;
}

.b-bright-blue-tint-2 {
    background-color: #bfe2fc !important;
}

.b-bright-blue-tint-3 {
    background-color: #e1f1fd !important;
}

.c-primary-color-dark {
    color: #003d41 !important;
}

.c-primary-color-dark-tint-1 {
    color: #003d41 !important;
}

.c-primary-color {
    color: #005c63 !important;
}

.c-primary-color-tint-1 {
    color: #7fd6da !important;
}

.c-primary-color-tint-2 {
    color: #bfebec !important;
}

.c-primary-color-tint-3 {
    color: #e5f7f7 !important;
}

.c-secondary-color-dark {
    color: #002750 !important;
}

.c-secondary-color-dark-tint-1 {
    color: #003168 !important;
}

.c-secondary-color {
    color: #0051a5 !important;
}

.c-secondary-color-tint-1 {
    color: #46acf5 !important;
}

.c-secondary-color-tint-2 {
    color: #bfe2fc !important;
}

.c-secondary-color-tint-3 {
    color: #eaf6fe !important;
}

.c-primary-grey-dark {
    color: #444444 !important;
}

.c-primary-grey-dark-tint-1 {
    color: #444444 !important;
}

.c-primary-grey {
    color: #585858 !important;
}

.c-primary-grey-tint-1 {
    color: #c4c8cc !important;
}

.c-primary-grey-tint-2 {
    color: #e9eaec !important;
}

.c-primary-grey-tint-3 {
    color: #f6f6f7 !important;
}

.b-primary-color-dark {
    background-color: #003d41 !important;
}

.b-primary-color-dark-tint-1 {
    background-color: #003d41 !important;
}

.b-primary-color {
    background-color: #005c63 !important;
}

.b-primary-color-tint-1 {
    background-color: #7fd6da !important;
}

.b-primary-color-tint-2 {
    background-color: #bfebec !important;
}

.b-primary-color-tint-3 {
    background-color: #e5f7f7 !important;
}

.b-secondary-color-dark {
    background-color: #002750 !important;
}

.b-secondary-color-dark-tint-1 {
    background-color: #003168 !important;
}

.b-secondary-color {
    background-color: #0051a5 !important;
}

.b-secondary-color-tint-1 {
    background-color: #46acf5 !important;
}

.b-secondary-color-tint-2 {
    background-color: #bfe2fc !important;
}

.b-secondary-color-tint-3 {
    background-color: #eaf6fe !important;
}

.b-primary-grey-dark {
    background-color: #444444 !important;
}

.b-primary-grey-dark-tint-1 {
    background-color: #444444 !important;
}

.b-primary-grey {
    background-color: #585858 !important;
}

.b-primary-grey-tint-1 {
    background-color: #c4c8cc !important;
}

.b-primary-grey-tint-2 {
    background-color: #e9eaec !important;
}

.b-primary-grey-tint-3 {
    background-color: #f6f6f7 !important;
}

.f-white {
    fill: #ffffff !important;
}

.f-dark-grey {
    fill: #444444 !important;
}

.f-teal-dark {
    fill: #007077 !important;
}

.f-teal-dark-tint-1 {
    fill: #00A5AE !important;
}

.f-teal {
    fill: #00aeb5 !important;
}

.f-teal-tint-1 {
    fill: #7fd6da !important;
}

.f-teal-tint-2 {
    fill: #bfebec !important;
}

.f-teal-tint-3 {
    fill: #e5f7f7 !important;
}

.f-bright-blue-dark {
    fill: #003168 !important;
}

.f-bright-blue-dark-tint-1 {
    fill: #0051a5 !important;
}

.f-bright-blue {
    fill: #1596F3 !important;
}

.f-bright-blue-tint-1 {
    fill: #46acf5 !important;
}

.f-bright-blue-tint-2 {
    fill: #bfe2fc !important;
}

.f-bright-blue-tint-3 {
    fill: #e1f1fd !important;
}

.f-carbon-dark {
    fill: #50585f !important;
}

.f-carbon-dark-tint-1 {
    fill: #6b7782 !important;
}

.f-carbon {
    fill: #899299 !important;
}

.f-carbon-tint-1 {
    fill: #c4c8cc !important;
}

.f-carbon-tint-2 {
    fill: #e9eaec !important;
}

.f-carbon-tint-3 {
    fill: #f6f6f7 !important;
}

.f-sun-dark {
    fill: #9e5406 !important;
}

.f-sun {
    fill: #fca311 !important;
}

.f-sun-tint-1 {
    fill: #fdd188 !important;
}

.f-sun-tint-2 {
    fill: #fee8c3 !important;
}

.f-sun-tint-3 {
    fill: #fff6e7 !important;
}

.f-pear-dark {
    fill: #726c1a !important;
}

.f-pear {
    fill: #d6ce49 !important;
}

.f-pear-tint-1 {
    fill: #eae6a4 !important;
}

.f-pear-tint-2 {
    fill: #f5f3d1 !important;
}

.f-pear-tint-3 {
    fill: #fbfaec !important;
}

.f-apple-dark {
    fill: #616f03 !important;
}

.f-apple {
    fill: #aaba0a !important;
}

.f-apple-tint-1 {
    fill: #d4dc84 !important;
}

.f-apple-tint-2 {
    fill: #eaeec2 !important;
}

.f-apple-tint-3 {
    fill: #f6f8e6 !important;
}

.f-sky-dark {
    fill: #236e9a !important;
}

.f-sky {
    fill: #51b5e0 !important;
}

.f-sky-tint-1 {
    fill: #a8daef !important;
}

.f-sky-tint-2 {
    fill: #d3ecf7 !important;
}

.f-sky-tint-3 {
    fill: #edf7fc !important;
}

.f-warm-red-dark {
    fill: #b91a0e !important;
}

.f-warm-red {
    fill: #f93f26 !important;
}

.f-warm-red-tint-1 {
    fill: #fc9f92 !important;
}

.f-warm-red-tint-2 {
    fill: #fdcfc9 !important;
}

.f-warm-red-tint-3 {
    fill: #feebe9 !important;
}

.f-primary-color-dark {
    fill: #003d41 !important;
}

.f-primary-color-dark-tint-1 {
    fill: #003d41 !important;
}

.f-primary-color {
    fill: #005c63 !important;
}

.f-primary-color-tint-1 {
    fill: #7fd6da !important;
}

.f-primary-color-tint-2 {
    fill: #bfebec !important;
}

.f-primary-color-tint-3 {
    fill: #e5f7f7 !important;
}

.f-secondary-color-dark {
    fill: #002750 !important;
}

.f-secondary-color-dark-tint-1 {
    fill: #003168 !important;
}

.f-secondary-color {
    fill: #0051a5 !important;
}

.f-secondary-color-tint-1 {
    fill: #46acf5 !important;
}

.f-secondary-color-tint-2 {
    fill: #bfe2fc !important;
}

.f-secondary-color-tint-3 {
    fill: #eaf6fe !important;
}

.f-current-color {
    fill: currentColor !important;
}

.s-white {
    stroke: #ffffff !important;
}

.s-dark-grey {
    stroke: #444444 !important;
}

.s-teal-dark {
    stroke: #007077 !important;
}

.s-teal-dark-tint-1 {
    stroke: #00A5AE !important;
}

.s-teal {
    stroke: #00aeb5 !important;
}

.s-teal-tint-1 {
    stroke: #7fd6da !important;
}

.s-teal-tint-2 {
    stroke: #bfebec !important;
}

.s-teal-tint-3 {
    stroke: #e5f7f7 !important;
}

.s-bright-blue-dark {
    stroke: #003168 !important;
}

.s-bright-blue-dark-tint-1 {
    stroke: #0051a5 !important;
}

.s-bright-blue {
    stroke: #1596F3 !important;
}

.s-bright-blue-tint-1 {
    stroke: #46acf5 !important;
}

.s-bright-blue-tint-2 {
    stroke: #bfe2fc !important;
}

.s-bright-blue-tint-3 {
    stroke: #e1f1fd !important;
}

.s-carbon-dark {
    stroke: #50585f !important;
}

.s-carbon-dark-tint-1 {
    stroke: #6b7782 !important;
}

.s-carbon {
    stroke: #899299 !important;
}

.s-carbon-tint-1 {
    stroke: #c4c8cc !important;
}

.s-carbon-tint-2 {
    stroke: #e9eaec !important;
}

.s-carbon-tint-3 {
    stroke: #f6f6f7 !important;
}

.s-sun-dark {
    stroke: #9e5406 !important;
}

.s-sun {
    stroke: #fca311 !important;
}

.s-sun-tint-1 {
    stroke: #fdd188 !important;
}

.s-sun-tint-2 {
    stroke: #fee8c3 !important;
}

.s-sun-tint-3 {
    stroke: #fff6e7 !important;
}

.s-pear-dark {
    stroke: #726c1a !important;
}

.s-pear {
    stroke: #d6ce49 !important;
}

.s-pear-tint-1 {
    stroke: #eae6a4 !important;
}

.s-pear-tint-2 {
    stroke: #f5f3d1 !important;
}

.s-pear-tint-3 {
    stroke: #fbfaec !important;
}

.s-apple-dark {
    stroke: #616f03 !important;
}

.s-apple {
    stroke: #aaba0a !important;
}

.s-apple-tint-1 {
    stroke: #d4dc84 !important;
}

.s-apple-tint-2 {
    stroke: #eaeec2 !important;
}

.s-apple-tint-3 {
    stroke: #f6f8e6 !important;
}

.s-sky-dark {
    stroke: #236e9a !important;
}

.s-sky {
    stroke: #51b5e0 !important;
}

.s-sky-tint-1 {
    stroke: #a8daef !important;
}

.s-sky-tint-2 {
    stroke: #d3ecf7 !important;
}

.s-sky-tint-3 {
    stroke: #edf7fc !important;
}

.s-warm-red-dark {
    stroke: #b91a0e !important;
}

.s-warm-red {
    stroke: #f93f26 !important;
}

.s-warm-red-tint-1 {
    stroke: #fc9f92 !important;
}

.s-warm-red-tint-2 {
    stroke: #fdcfc9 !important;
}

.s-warm-red-tint-3 {
    stroke: #feebe9 !important;
}

.s-primary-color-dark {
    stroke: #003d41 !important;
}

.s-primary-color-dark-tint-1 {
    stroke: #003d41 !important;
}

.s-primary-color {
    stroke: #005c63 !important;
}

.s-primary-color-tint-1 {
    stroke: #7fd6da !important;
}

.s-primary-color-tint-2 {
    stroke: #bfebec !important;
}

.s-primary-color-tint-3 {
    stroke: #e5f7f7 !important;
}

.s-secondary-color-dark {
    stroke: #002750 !important;
}

.s-secondary-color-dark-tint-1 {
    stroke: #003168 !important;
}

.s-secondary-color {
    stroke: #0051a5 !important;
}

.s-secondary-color-tint-1 {
    stroke: #46acf5 !important;
}

.s-secondary-color-tint-2 {
    stroke: #bfe2fc !important;
}

.s-secondary-color-tint-3 {
    stroke: #eaf6fe !important;
}

.s-current-color {
    stroke: currentColor !important;
}

.b-white-1 {
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.b-white-2 {
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
}

.b-white-3 {
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.3);
}

.b-white-4 {
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.4);
}

.b-white-5 {
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.5);
}

.b-white-6 {
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.6);
}

.b-white-7 {
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.7);
}

.b-white-8 {
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.8);
}

.b-white-9 {
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.9);
}

.b-primary-gradient {
    background-color: #005c63;
    background-image: linear-gradient(to bottom left, #1596F3 0%, #00aeb5 100%);
}

/*## TYPOGRAPHY ##*/
html {
    font-size: 16px;
}

body {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8125;
    color: #444444;
}

h1,
.header-1 {
    color: #005c63;
    font-size: 3em;
    font-family: "Roboto", Arial, sans-serif;
    line-height: 1.25em;
    font-weight: 300;
    font-style: normal;
    letter-spacing: normal;
    margin-bottom: 0.175em;
    margin-top: 0;
}

h2,
.header-2 {
    color: #005c63;
    font-size: 2.25em;
    font-family: "Roboto", Arial, sans-serif;
    line-height: 1.278em;
    font-weight: 300;
    font-style: normal;
    letter-spacing: normal;
    margin-bottom: 12px;
    margin-top: 0;
}

h3,
.header-3 {
    color: #005c63;
    font-size: 1.875em;
    font-family: "Roboto", Arial, sans-serif;
    line-height: 1.333em;
    font-weight: 300;
    font-style: normal;
    letter-spacing: normal;
    margin-bottom: 12px;
    margin-top: 0;
}

h4,
.header-4 {
    color: #444444;
    font-size: 1.375em;
    font-family: "Roboto", Arial, sans-serif;
    line-height: 1.455em;
    font-weight: 300;
    font-style: normal;
    letter-spacing: normal;
    margin-bottom: 6px;
    margin-top: 0;
}

h5,
.header-5 {
    color: #444444;
    font-size: 1.25em;
    font-family: "Roboto Condensed", Arial, sans-serif;
    line-height: 1.5em;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    margin-bottom: 6px;
    margin-top: 0;
}

h6,
.header-6 {
    color: #444444;
    font-size: 1em;
    font-family: "Roboto Condensed", Arial, sans-serif;
    line-height: 1.5em;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    margin-bottom: 6px;
    margin-top: 0;
}

@media (max-width: 991px) {
    h1,
    .header-1 {
        font-size: 2.875em;
    }

    h2,
    .header-2 {
        font-size: 2.2em;
    }
}

@media (max-width: 767px) {
    h1,
    .header-1 {
        font-size: 2.8em;
        line-height: 1.1em;
    }

    h2,
    .header-2 {
        font-size: 2.2em;
        line-height: 1.15em;
    }
}

@media (max-width: 479px) {
    html, body {
        font-size: 14px;
    }

    h1,
    .header-1 {
        font-size: 2.7em;
    }
}

a {
    color: #0051a5;
    text-decoration: none;
}

a:focus, a:hover {
    text-decoration: none;
    cursor: pointer;
    color: #002750;
}

a h1:hover,
a h2:hover,
a h3:hover,
a h4:hover,
a h5:hover {
    color: #0051a5;
}

a.no-link-style, a.no-link-style:hover {
    border-bottom: none;
}

ul, ol {
    padding-left: 25px;
}

blockquote {
    padding: 0 20px;
    border-left: solid #585858 4px;
    color: #005c63;
    font-size: 1.2em;
    line-height: 1.8em;
    font-weight: 300;
}

blockquote > p {
    margin-bottom: 0.5625em !important;
}

blockquote > cite {
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-size: 0.75em;
    font-style: normal;
    color: #444444;
}

label {
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 400;
    color: #444444;
}

label .small-subtext {
    margin-left: 10px;
    color: #585858;
    font-size: 0.875em;
    font-weight: 300;
}

pre {
    margin-bottom: 20px;
    -moz-tab-size: 2;
    -o-tab-size: 2;
    -webkit-tab-size: 2;
    -ms-tab-size: 2;
    tab-size: 2;
}

legend {
    font-family: "Roboto", Arial, sans-serif;
    color: #444444;
    border-bottom: 1px solid #585858;
}

output {
    font-size: 1em;
    color: #444444;
}

abbr, abbr[title],
abbr[data-original-title] {
    border-bottom: dotted 1px #585858;
}

mark,
.mark {
    background-color: #fff7bf;
    color: #444444;
}

h1 small, h1 .small, h2 small, h2 .small, h3 small, h3 .small, h4 small, h4 .small, h5 small, h5 .small, h6 small, h6 .small,
.header-1 small,
.header-1 .small, .header-2 small, .header-2 .small, .header-3 small, .header-3 .small, .header-4 small, .header-4 .small, .header-5 small, .header-5 .small, .header-6 small, .header-6 .small {
    color: inherit;
    font-weight: inherit;
}

h1 .large, h2 .large, h3 .large, h4 .large, h5 .large, h6 .large,
.header-1 .large, .header-2 .large, .header-3 .large, .header-4 .large, .header-5 .large, .header-6 .large {
    font-size: 1.3em;
    line-height: 1.3em;
}

h1 .small-subtext, h2 .small-subtext, h3 .small-subtext, h4 .small-subtext, h5 .small-subtext, h6 .small-subtext,
.header-1 .small-subtext, .header-2 .small-subtext, .header-3 .small-subtext, .header-4 .small-subtext, .header-5 .small-subtext, .header-6 .small-subtext {
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 300;
    color: #444444;
}

@media (min-width: 480px) {
    h1 .small-subtext, h2 .small-subtext, h3 .small-subtext, h4 .small-subtext, h5 .small-subtext, h6 .small-subtext,
    .header-1 .small-subtext, .header-2 .small-subtext, .header-3 .small-subtext, .header-4 .small-subtext, .header-5 .small-subtext, .header-6 .small-subtext {
        margin-left: 10px;
    }
}

@media (max-width: 479px) {
    h1 .small-subtext, h2 .small-subtext, h3 .small-subtext, h4 .small-subtext, h5 .small-subtext, h6 .small-subtext,
    .header-1 .small-subtext, .header-2 .small-subtext, .header-3 .small-subtext, .header-4 .small-subtext, .header-5 .small-subtext, .header-6 .small-subtext {
        display: block;
    }
}

h1 .category, h2 .category, h3 .category, h4 .category, h5 .category, h6 .category,
.header-1 .category, .header-2 .category, .header-3 .category, .header-4 .category, .header-5 .category, .header-6 .category {
    position: relative;
    top: -0.625em;
}

@media (min-width: 480px) {
    h1 .category, h2 .category, h3 .category, h4 .category, h5 .category, h6 .category,
    .header-1 .category, .header-2 .category, .header-3 .category, .header-4 .category, .header-5 .category, .header-6 .category {
        margin-left: 15px;
    }
}

h4 .category, .header-4 .category {
    top: -0.5em;
    padding: 0.875em 1em;
}

h5 .category, .header-5 .category,
h6 .category, .header-6 .category {
    top: -0.25em;
    padding: 0.75em 0.875em;
    font-size: 0.75rem;
}

h6 .small-subtext, .header-6 .small-subtext {
    font-size: 0.875em;
}

.header-inline {
    margin-right: 10px;
    display: inline;
}

.header-inline + .button {
    vertical-align: middle;
}

/* SUBHEADERS
********************************/
.subheader {
    margin-bottom: 20px;
    color: #585858;
    font-size: 1.6em;
    line-height: 1.667;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
}

@media (max-width: 991px) {
    .subheader {
        font-size: 1.1em;
    }
}

.disclaimer {
    color: #444444;
    font-size: 0.75em;
    font-family: "Roboto", Arial, sans-serif;
    line-height: 1.5em;
    font-weight: 400;
}

.footnote,
.caption {
    font-size: 0.875em;
    line-height: 1.5em;
}

.xsmall {
    font-size: 0.75em;
}

.roboto, .roboto-light, .roboto-regular, .roboto-bold {
    font-family: "Roboto", Arial, sans-serif;
}

.roboto-light {
    font-weight: 300;
}

.roboto-regular {
    font-weight: 400;
}

.roboto-bold {
    font-weight: 700;
}

.roboto-condensed, .roboto-condensed-light, .roboto-condensed-regular, .roboto-condensed-bold {
    font-family: "Roboto Condensed", Arial, sans-serif;
}

.roboto-condensed-light {
    font-weight: 300;
}

.roboto-condensed-regular {
    font-weight: 400;
}

.roboto-condensed-bold {
    font-weight: 700;
}

.georgia {
    font-family: Georgia, serif;
}

.arial {
    font-family: Arial, sans-serif;
}

.text-caps {
    text-transform: uppercase;
}

.italic {
    font-style: italic;
}

.separator-pike {
    color: inherit;
    padding: 0.75em;
    font-style: normal;
}

.intro {
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 300;
    font-size: 1em;
}

.person-title {
    font-family: "Roboto Condensed", Arial, sans-serif;
    color: #585858;
}

.number-lg {
    color: #0051a5;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 3em;
}

.number-lg .percent,
.number-lg .dollar {
    font-size: 0.75em;
}

.text-success,
.text-danger,
.text-warning {
    font-family: "Roboto Condensed", Arial, sans-serif;
    display: inline-block;
}

.text-success .icon,
.text-danger .icon,
.text-warning .icon {
    margin-right: 10px;
    font-size: 0.5em;
    line-height: 0;
}

.text-success.inactive,
.text-danger.inactive,
.text-warning.inactive {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
}

.text-success.active,
.text-danger.active,
.text-warning.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transition: 0.4s;
}

.text-success .icon {
    color: #355d14;
}

.text-danger .icon {
    color: #9c1f01;
}

.text-warning .icon {
    color: #7f4907;
}

.disabled {
    color: #585858 !important;
    pointer-events: none;
    cursor: default;
}

.category {
    padding: 1em 1.25em;
    border-radius: 3px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1rem;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    display: inline-block;
}

.category-status-primary {
    box-shadow: none;
    background-color: #e5f7f7;
    color: #005c63;
}

.category-status-secondary, .category-status-info {
    box-shadow: none;
    background-color: #eaf6fe;
    color: #0051a5;
}

.category-status-success {
    box-shadow: none;
    background-color: #f6f8e6;
    color: #355d14;
}

.category-status-danger {
    box-shadow: none;
    background-color: #feebe9;
    color: #9c1f01;
}

.category-status-warning {
    box-shadow: none;
    background-color: #fff6e7;
    color: #7f4907;
}

.label {
    margin-bottom: 5px;
    margin-right: 5px;
    padding: 0.5em 0.875em 0.5625em;
    border-radius: 0;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: 0.2s;
    display: inline-block;
}

.label:last-of-type {
    margin-right: 0;
}

.label.b-primary-grey {
    background-color: #e9eaec !important;
    color: #0051a5;
}

.label.active::after {
    content: '\F00C';
    font-family: "Black Tie";
    font-weight: 300;
    font-size: 0.625em;
    margin-left: 5px;
}

.label.active.b-primary-color {
    background-color: #003d41 !important;
}

.label.active.b-secondary-color {
    background-color: #005c63 !important;
}

.label.active.b-primary-grey {
    background-color: #0051a5 !important;
    color: #ffffff;
}

.label [class*="bt-"] {
    font-size: 0.75em;
    vertical-align: baseline;
    margin-left: 5px;
}

.label-danger {
    background-color: #feebe9;
    color: #9c1f01;
}

.label-danger.label-icon::before {
    content: "";
    font-family: "Black Tie";
    position: relative;
    top: 2px;
    margin-right: 5px;
}

.label-success {
    background-color: #f6f8e6;
    color: #355d14;
}

.label-success.label-icon::before {
    content: "";
    font-family: "Black Tie";
    position: relative;
    top: 2px;
    margin-right: 5px;
}

.label-warning {
    background-color: #fff6e7;
    color: #7f4907;
}

.label-warning.label-icon::before {
    content: "";
    font-family: "Black Tie";
    position: relative;
    top: 2px;
    margin-right: 5px;
}

.label-info {
    background-color: #eaf6fe;
    color: #0051a5;
}

.label-info.label-icon::before {
    content: "";
    font-family: "Black Tie";
    position: relative;
    top: 2px;
    margin-right: 5px;
}

a.label.b-primary-color:focus, a.label.b-primary-color:hover {
    background-color: #003d41 !important;
}

a.label.b-secondary-color:focus, a.label.b-secondary-color:hover {
    background-color: #003168 !important;
}

a.label.b-primary-grey:focus, a.label.b-primary-grey:hover {
    background-color: #0051a5 !important;
}

a.label.b-primary-grey.active:focus {
    background-color: #003168 !important;
}

a.label.active:hover {
    background-color: #0051a5 !important;
}

.list-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.list-links li {
    list-style-type: none;
    padding: 3px 0;
}

ol.numbers-fancy {
    padding-left: 3rem;
    counter-reset: olCounter;
    list-style: none;
}

ol.numbers-fancy li {
    position: relative;
    margin: 0.75em 0;
}

ol.numbers-fancy li::before {
    counter-increment: olCounter;
    content: counter(olCounter);
    position: absolute;
    left: -3rem;
    height: 1.875em;
    width: 1.875em;
    border-radius: 50%;
    background-color: #0051a5;
    color: #ffffff;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 300;
    font-size: 1.25em;
    line-height: 1.875em;
    text-align: center;
}

ul.list-select {
    max-height: 300px;
    overflow: auto;
}

ul.list-select li {
    position: relative;
    padding: 7.5px 15px;
    font-family: "Roboto Condensed", Arial, sans-serif;
    cursor: pointer;
    transition: 0.2s;
}

ul.list-select li:hover {
    background-color: #ffffff;
}

ul.list-select li a {
    color: #444444;
}

ul.list-select li::after, ul.list-select li::before {
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

ul.list-select li::after {
    top: calc(50% + 1px);
    right: 18px;
}

ul.list-select li.active {
    background-color: #0051a5;
    color: #ffffff;
}

ul.list-select li.active a {
    color: #ffffff;
}

ul.list-check {
    padding-left: 25px;
}

ul.list-check li {
    position: relative;
    list-style: none;
}

ul.list-check li::before {
    top: 8px;
    left: -23px;
    right: auto;
}

ul.list-check li::after {
    top: 12px;
    left: -20px;
    right: auto;
    color: #0051a5;
}

ul.list-check li.checked::before {
    background-color: #ffffff;
}

ul.list-check li.checked::after {
    opacity: 1;
}

ul.list-chev {
    padding-left: 15px;
}

ul.list-chev li {
    position: relative;
    list-style: none;
}

ul.list-chev li::before {
    content: '\F093';
    position: absolute;
    left: -15px;
    top: 0.875em;
    font-family: 'Black Tie';
    font-size: 0.5em;
    font-weight: 600;
    color: #0051a5;
}

.link-underline,
p a {
    font-size: 1em;
    color: #0051a5;
    border-bottom: 1px dotted #0051a5;
}

.link-underline:hover,
p a:hover {
    border-bottom: 1px solid #002750;
    color: #002750;
}

a:not(.button).file-pdf:after, a:not(.button).file-doc:after, a:not(.button).file-xls:after, a:not(.button).file-ppt:after, a:not(.button).file-zip:after, a:not(.button).file-video:after, a:not(.button).file-image:after, a:not(.button).link-ext:after, a:not(.button).link-email:after, a:not(.button).link-chev:after {
    font-size: 0.85em;
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    position: relative;
    display: inline-block;
    margin-left: 6px;
    top: -1px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a:not(.button).file-pdf:after {
    content: "\f1c1";
}

a:not(.button).file-doc:after {
    content: "\f1c2";
}

a:not(.button).file-xls:after {
    content: "\f1c3";
}

a:not(.button).file-ppt:after {
    content: "\f1c4";
}

a:not(.button).file-zip:after {
    content: "\f1c6";
}

a:not(.button).file-video:after {
    content: "\f1c8";
}

a:not(.button).file-image:after {
    content: "\f1c5";
}

a:not(.button).link-ext:after {
    content: "\F05B";
    font-family: 'Black Tie';
    font-size: 0.7em;
    font-weight: normal;
    top: 0;
}

a:not(.button).link-email:after {
    content: "\F001";
    font-family: 'Black Tie';
    font-size: 0.75em;
    font-weight: normal;
    top: 1px;
}

a:not(.button).link-chev:after {
    content: "\F093";
    font-family: "Black Tie";
    font-size: 0.5em;
    padding-left: 2px;
    top: -1px;
}

address,
.address {
    line-height: inherit;
}

address h4,
.address h4 {
    margin-bottom: 0;
}

address .location,
address .phone,
address .email,
address .fax,
.address .location,
.address .phone,
.address .email,
.address .fax {
    position: relative;
    padding-left: 1.875em;
    display: inline-block;
}

address .location::before,
address .phone::before,
address .email::before,
address .fax::before,
.address .location::before,
.address .phone::before,
.address .email::before,
.address .fax::before {
    position: absolute;
    left: 0.3125em;
    top: 1px;
    font-family: "Black Tie";
    font-weight: 900;
    font-style: normal;
}

address .location::before,
.address .location::before {
    content: '\F0CA';
    left: 0.4375em;
}

address .phone::before,
.address .phone::before {
    content: '\F005';
}

address .email::before,
.address .email::before {
    content: '\F001';
    font-size: 0.875em;
}

address .fax::before,
.address .fax::before {
    content: '\F051';
}

.bt-envelope {
    font-size: 0.875em;
}

.tooltip {
    font-family: "Roboto", Arial, sans-serif;
    filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.1));
    -webkit-filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.1));
}

.tooltip.in {
    opacity: 1;
}

.tooltip.top .tooltip-arrow {
    border-top-color: #ffffff;
}

.tooltip.bottom .tooltip-arrow {
    border-bottom-color: #ffffff;
}

.tooltip.left .tooltip-arrow {
    border-left-color: #ffffff;
}

.tooltip.right .tooltip-arrow {
    border-right-color: #ffffff;
}

.tooltip-inner {
    padding: 10px;
    border-radius: 3px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 2px 1px -1px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    color: #585858;
}

.tooltip-inner a {
    padding: 0px;
}

.tooltip-inner a > i:before {
    padding: 0px 0.75em;
}

.tooltip-inner a:hover {
    border-bottom: none;
}

.tooltip-inner ul {
    margin-bottom: 0px;
}

/*## LAYOUT CLASSES ##*/
hr {
    border-top: 1px solid #585858;
}

hr.separator, hr.seperator {
    margin-top: 70px;
    margin-bottom: 70px;
    border-color: #585858;
}

@media (max-width: 991px) {
    hr.separator, hr.seperator {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

hr.bdr-gradient {
    height: 4px;
    border: none;
    background-image: linear-gradient(to left, #1596F3 0%, #00aeb5 100%);
    background-size: 100%;
    opacity: 0.2;
}

hr.bdr-large {
    border-top-width: 2px;
}

hr.bdr-xlarge {
    border-top-width: 4px;
}

img.img-center {
    margin: auto;
}

.box-shadow {
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
}

.box-shadow-lg {
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.1), 0 6px 10px 0 rgba(0, 0, 0, 0.12), 0 1px 18px 0 rgba(0, 0, 0, 0.1);
}

.box-shadow-sm {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 2px 1px -1px rgba(0, 0, 0, 0.08);
}

/*## BUTTONS ##*/
.button,
.btn {
    height: 50px;
    padding: 9px 40px;
    border: solid 1px;
    border-radius: 30px;
    background-color: transparent;
    font-size: 1rem;
    line-height: 30px;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    text-transform: none;
    text-align: center;
    white-space: nowrap;
    display: inline-block;
    transition: 0.15s;
    border-color: #0051a5;
    color: #0051a5;
}

.button:focus,
.btn:focus {
    outline: #51b5e0 auto 5px;
}

.button:hover,
.btn:hover {
    color: #ffffff;
    background-color: #0051a5;
}

.button {
    will-change: background-position;
}

.button.button-bradius-sm {
    padding: 9px 25px;
    border-radius: 3px;
}

.button.button-small, .button.button-options, .button.button-arrow {
    height: 40px;
    padding: 7px 30px;
    font-size: 0.875rem;
    line-height: 24px;
}

.button.button-small.button-bradius-sm, .button.button-bradius-sm.button-options, .button.button-bradius-sm.button-arrow {
    padding: 7px 15px;
}

.button.button-xsmall {
    height: 35px;
    padding: 6px 20px;
    font-size: 0.75rem;
    line-height: 20px;
}

.button.button-xsmall.button-bradius-sm {
    padding: 6px 10px;
}

.button.button-xlarge {
    height: 100px;
    padding: 35px;
    font-size: 1.375em;
}

.button.button-primary {
    border-color: #005c63;
    background-color: #005c63;
    background-image: linear-gradient(to right, #003d41 50%, #005c63 50%);
    background-size: 202%;
    background-position: 100% 0;
    background-repeat: no-repeat;
    color: #ffffff;
}

.button.button-primary:hover {
    border-color: #003d41;
    background-color: #003d41 !important;
    background-position: 0 0;
    color: #ffffff !important;
}

.button.button-primary-outline {
    border-color: #005c63;
    background-color: transparent;
    background-image: linear-gradient(to right, #005c63 50%, transparent 50%);
    background-size: 202%;
    background-position: 100% 0;
    background-repeat: no-repeat;
    color: #005c63;
}

.button.button-primary-outline:hover {
    border-color: #005c63;
    background-color: #005c63 !important;
    background-position: 0 0;
    color: #ffffff !important;
}

.button.button-secondary, .modal-info .button {
    border-color: #0051a5;
    background-color: #0051a5;
    background-image: linear-gradient(to right, #003168 50%, #0051a5 50%);
    background-size: 202%;
    background-position: 100% 0;
    background-repeat: no-repeat;
    color: #ffffff;
}

.button.button-secondary:hover, .modal-info .button:hover {
    border-color: #003168;
    background-color: #003168 !important;
    background-position: 0 0;
    color: #ffffff !important;
}

.button.button-secondary-outline, .modal-info .button-outline {
    border-color: #0051a5;
    background-color: transparent;
    background-image: linear-gradient(to right, #0051a5 50%, transparent 50%);
    background-size: 202%;
    background-position: 100% 0;
    background-repeat: no-repeat;
    color: #0051a5;
}

.button.button-secondary-outline:hover, .modal-info .button-outline:hover {
    border-color: #0051a5;
    background-color: #0051a5 !important;
    background-position: 0 0;
    color: #ffffff !important;
}

.button.b-dark-blue {
    border-color: #002750;
    background-color: #002750;
    background-image: linear-gradient(to right, #006ac3 50%, #002750 50%);
    background-size: 202%;
    background-position: 100% 0;
    background-repeat: no-repeat;
    color: #ffffff;
}

.button.b-dark-blue:hover {
    border-color: #006ac3;
    background-color: #006ac3 !important;
    background-position: 0 0;
    color: #ffffff !important;
}

.button.b-blue-tint-1 {
    border-color: #006ac3;
    background-color: #006ac3;
    background-image: linear-gradient(to right, #002750 50%, #006ac3 50%);
    background-size: 202%;
    background-position: 100% 0;
    background-repeat: no-repeat;
    color: #ffffff;
}

.button.b-blue-tint-1:hover {
    border-color: #002750;
    background-color: #002750 !important;
    background-position: 0 0;
    color: #ffffff !important;
}

.button.c-dark-blue {
    border-color: #002750;
    background-color: transparent;
    background-image: linear-gradient(to right, #002750 50%, transparent 50%);
    background-size: 202%;
    background-position: 100% 0;
    background-repeat: no-repeat;
    color: #002750;
}

.button.c-dark-blue:hover {
    border-color: #002750;
    background-color: #002750 !important;
    background-position: 0 0;
    color: #ffffff !important;
}

.button.c-white {
    border-color: #ffffff;
    background-color: transparent;
    background-image: linear-gradient(to right, #ffffff 50%, transparent 50%);
    background-size: 202%;
    background-position: 100% 0;
    background-repeat: no-repeat;
    color: #ffffff;
}

.button.c-white:hover {
    border-color: #ffffff;
    background-color: #ffffff !important;
    background-position: 0 0;
    color: #0051a5 !important;
}

.button.c-teal {
    border-color: #00aeb5;
    background-color: transparent;
    background-image: linear-gradient(to right, #00aeb5 50%, transparent 50%);
    background-size: 202%;
    background-position: 100% 0;
    background-repeat: no-repeat;
    color: #00aeb5;
}

.button.c-teal:hover {
    border-color: #00aeb5;
    background-color: #00aeb5 !important;
    background-position: 0 0;
    color: #ffffff !important;
}

.button.b-teal {
    border-color: #00aeb5;
    background-color: #00aeb5;
    background-image: linear-gradient(to right, #007077 50%, #00aeb5 50%);
    background-size: 202%;
    background-position: 100% 0;
    background-repeat: no-repeat;
    color: #ffffff;
}

.button.b-teal:hover {
    border-color: #007077;
    background-color: #007077 !important;
    background-position: 0 0;
    color: #ffffff !important;
}

.button.b-sun, .modal-warning .button {
    border-color: #fca311;
    background-color: #fca311;
    background-image: linear-gradient(to right, #e8cf00 50%, #fca311 50%);
    background-size: 202%;
    background-position: 100% 0;
    background-repeat: no-repeat;
    color: #ffffff;
    background-image: linear-gradient(to left, #fca311 0%, #fca311 50%, #e8cf00 100%);
}

.button.b-sun:hover, .modal-warning .button:hover {
    border-color: #e8cf00;
    background-color: #e8cf00 !important;
    background-position: 0 0;
    color: #ffffff !important;
}

.button.b-sun:hover, .modal-warning .button:hover {
    border-color: transparent;
}

.button.c-sun, .modal-warning .button-outline {
    border-color: #fca311;
    background-color: transparent;
    background-image: linear-gradient(to right, #fca311 50%, transparent 50%);
    background-size: 202%;
    background-position: 100% 0;
    background-repeat: no-repeat;
    color: #fca311;
}

.button.c-sun:hover, .modal-warning .button-outline:hover {
    border-color: #fca311;
    background-color: #fca311 !important;
    background-position: 0 0;
    color: #ffffff !important;
}

.button.b-warm-red, .modal-danger .button {
    border-color: #f93f26;
    background-color: #f93f26;
    background-image: linear-gradient(to right, #b91a0e 50%, #f93f26 50%);
    background-size: 202%;
    background-position: 100% 0;
    background-repeat: no-repeat;
    color: #ffffff;
}

.button.b-warm-red:hover, .modal-danger .button:hover {
    border-color: #b91a0e;
    background-color: #b91a0e !important;
    background-position: 0 0;
    color: #ffffff !important;
}

.button.c-warm-red, .modal-danger .button-outline {
    border-color: #f93f26;
    background-color: transparent;
    background-image: linear-gradient(to right, #f93f26 50%, transparent 50%);
    background-size: 202%;
    background-position: 100% 0;
    background-repeat: no-repeat;
    color: #f93f26;
}

.button.c-warm-red:hover, .modal-danger .button-outline:hover {
    border-color: #f93f26;
    background-color: #f93f26 !important;
    background-position: 0 0;
    color: #ffffff !important;
}

.button.b-apple, .modal-success .button {
    border-color: #aaba0a;
    background-color: #aaba0a;
    background-image: linear-gradient(to right, #616f03 50%, #aaba0a 50%);
    background-size: 202%;
    background-position: 100% 0;
    background-repeat: no-repeat;
    color: #ffffff;
}

.button.b-apple:hover, .modal-success .button:hover {
    border-color: #616f03;
    background-color: #616f03 !important;
    background-position: 0 0;
    color: #ffffff !important;
}

.button.c-apple, .modal-success .button-outline {
    border-color: #aaba0a;
    background-color: transparent;
    background-image: linear-gradient(to right, #aaba0a 50%, transparent 50%);
    background-size: 202%;
    background-position: 100% 0;
    background-repeat: no-repeat;
    color: #aaba0a;
}

.button.c-apple:hover, .modal-success .button-outline:hover {
    border-color: #aaba0a;
    background-color: #aaba0a !important;
    background-position: 0 0;
    color: #ffffff !important;
}

.button.link-chev:after, .button.link-chev-down:after, .button.link-chev-up:after {
    font-family: "Black Tie";
    font-size: 0.5em;
    font-weight: 700;
    margin-left: 7px;
}

.button.link-chev:after {
    content: "\f093";
}

.button.link-chev-down:after {
    content: "\f091";
}

.button.link-chev-up:after {
    content: "\f090";
}

.button.button-options, .button.button-arrow {
    position: relative;
    width: 40px;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
}

.button.button-arrow-less, .button.button-arrow-more {
    max-width: 40px;
    width: auto;
}

.button.button-arrow-less::after, .button.button-arrow-more::after {
    position: absolute;
    font-family: "Black Tie";
    color: #ffffff;
}

.button.button-arrow-less:hover, .button.button-arrow-more:hover {
    max-width: 500px;
    transition: 0.5s;
}

.button.button-arrow-less:hover .hidden-text, .button.button-arrow-more:hover .hidden-text {
    visibility: visible;
    opacity: 1;
}

.button.button-arrow-less .hidden-text, .button.button-arrow-more .hidden-text {
    visibility: hidden;
    opacity: 0;
    position: relative;
    transition: 0.2s;
}

.button.button-arrow-more::after {
    content: "\F09B";
    right: 12px;
}

.button.button-arrow-more:hover .hidden-text {
    left: 0;
}

.button.button-arrow-more .hidden-text {
    left: -100px;
    padding: 0 40px 0 20px;
}

.button.button-arrow-less::after {
    content: "\F09A";
    left: 12px;
}

.button.button-arrow-less:hover .hidden-text {
    right: 0;
}

.button.button-arrow-less .hidden-text {
    right: -100px;
    padding: 0 20px 0 40px;
}

.button.dropdown-toggle {
    border: 1px solid #e9eaec;
    padding-left: 25px;
    width: 100%;
    border-radius: 3px;
    border: none;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 1rem;
    text-align: left;
    color: inherit;
}

.button.dropdown-toggle:hover, .button.dropdown-toggle:focus {
    color: #0051a5;
}

.button.dropdown-toggle:after {
    content: "\f091";
    position: absolute;
    right: 25px;
    top: 50%;
    color: #0051a5;
    font-family: 'Black Tie';
    font-weight: 400;
    font-size: 0.75em;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.button.dropdown-toggle.b-primary-grey {
    background-color: #e9eaec !important;
}

.button.btn-block {
    width: 100% !important;
    text-align: center;
}

.button[disabled], .button[disabled]:focus, .button[disabled]:hover {
    border-color: #c4c8cc !important;
    background-color: #c4c8cc !important;
    background-image: none !important;
    color: #ffffff !important;
}

.input-group-btn .button {
    padding: 9px 25px;
    border-radius: 0;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.input-group-btn .button-xlarge {
    padding: 35px;
}

input + .input-group-btn .button {
    border-radius: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.btn-group .button:not(.dropdown-toggle) {
    width: auto !important;
    border-radius: 0px;
}

.btn-group .button:not(.dropdown-toggle):first-child {
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
    border-right: none;
}

.btn-group .button:not(.dropdown-toggle):last-child {
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
    border-left: none;
}

.open:not(.yamm-fw) > .dropdown-toggle {
    box-shadow: none !important;
    border: none;
    min-width: 100%;
}

.open:not(.yamm-fw) > .dropdown-menu {
    min-width: 100%;
    padding: 0px;
    border-radius: 3px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
    border: none;
}

.open:not(.yamm-fw) > .dropdown-menu li a {
    font-size: 16px;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 300;
    padding: 10px 25px;
    color: #252525;
}

.open:not(.yamm-fw) > .dropdown-menu li a:hover {
    background-color: #eaf6fe;
    color: #0051a5;
    border-bottom: transparent;
}

.category-dropdown {
    width: auto;
}

.category-dropdown .category {
    border: none;
}

.category-dropdown .category::after {
    content: "\F091";
    position: relative;
    margin-left: 5px;
    font-family: "Black Tie";
    font-weight: 400;
    font-size: 0.5em;
    line-height: 1;
}

.category-dropdown.open .category.dropdown-toggle {
    min-width: auto;
    border: none !important;
}

.category-dropdown.open .category.dropdown-toggle::after {
    content: "\F090";
}

.category-dropdown.open .dropdown-menu {
    margin: 0;
    padding: 0;
    border: none;
}

.category-dropdown.open .dropdown-menu li a {
    padding: 0.625em 1em;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 1rem;
    color: #444444;
}

.category-dropdown.open .dropdown-menu li a:hover {
    color: #444444;
}

.category-dropdown.open .c-primary-color + .dropdown-menu {
    background-color: #e5f7f7;
}

.category-dropdown.open .c-primary-color + .dropdown-menu a:hover {
    background-color: #bfebec;
}

.category-dropdown.open .c-secondary-color + .dropdown-menu {
    background-color: #eaf6fe;
}

.category-dropdown.open .c-secondary-color + .dropdown-menu a:hover {
    background-color: #bfe2fc;
}

.overlap-button-container {
    position: relative;
    margin-bottom: 50px;
    padding-bottom: 50px !important;
}

.overlap-button-container .button-overlap {
    position: absolute;
    bottom: 0;
    left: 50%;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 2px 1px -1px rgba(0, 0, 0, 0.08);
    transform: translate(-50%, 50%);
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
}

/*## INPUTS / FORM CONTROLS ##*/
.form-control,
.form-small,
.form-xlarge, input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=search],
input[type=url],
input[type=number], textarea {
    width: 100%;
    padding: 9px 25px;
    border: none;
    border-radius: 3px;
    box-shadow: none;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 1em;
    font-weight: 300;
    color: #444444;
    outline: none;
}

.form-control:focus,
.form-small:focus,
.form-xlarge:focus, input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=search]:focus,
input[type=url]:focus,
input[type=number]:focus, textarea:focus {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 81, 165, 0.7);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 81, 165, 0.7);
}

.b-primary-grey.form-control,
.b-primary-grey.form-small,
.b-primary-grey.form-xlarge, input.b-primary-grey[type=text],
input.b-primary-grey[type=password],
input.b-primary-grey[type=email],
input.b-primary-grey[type=tel],
input.b-primary-grey[type=search],
input.b-primary-grey[type=url],
input.b-primary-grey[type=number], textarea.b-primary-grey {
    background-color: #e9eaec !important;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .form-control,
    .form-small,
    .form-xlarge, input[type=text],
    input[type=password],
    input[type=email],
    input[type=tel],
    input[type=search],
    input[type=url],
    input[type=number], textarea {
        font-size: 16px;
    }
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=search],
input[type=url],
input[type=number] {
    height: 50px;
    -webkit-appearance: none;
}

input[type=text].form-small,
input[type=password].form-small,
input[type=email].form-small,
input[type=tel].form-small,
input[type=search].form-small,
input[type=url].form-small,
input[type=number].form-small {
    height: 40px;
    padding: 7px 15px;
    font-size: 0.875em;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type=text].form-small,
    input[type=password].form-small,
    input[type=email].form-small,
    input[type=tel].form-small,
    input[type=search].form-small,
    input[type=url].form-small,
    input[type=number].form-small {
        font-size: 14px;
    }
}

input[type=text].form-xlarge,
input[type=password].form-xlarge,
input[type=email].form-xlarge,
input[type=tel].form-xlarge,
input[type=search].form-xlarge,
input[type=url].form-xlarge,
input[type=number].form-xlarge {
    height: 100px;
    padding: 35px;
    font-size: 1.375em;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 300;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type=text].form-xlarge,
    input[type=password].form-xlarge,
    input[type=email].form-xlarge,
    input[type=tel].form-xlarge,
    input[type=search].form-xlarge,
    input[type=url].form-xlarge,
    input[type=number].form-xlarge {
        font-size: 22px;
    }
}

.form-small-number {
    max-width: 120px;
}

.form-search {
    position: relative;
}

.form-search::after {
    content: '\F002';
    position: absolute;
    top: 9px;
    right: 25px;
    font-family: "Black Tie";
    color: #0051a5;
}

.form-search input {
    padding-right: 50px;
}

.form-container {
    position: relative;
    margin-bottom: 25px;
}

.form-container .form-info-float {
    position: absolute;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.form-container .form-info-float::before {
    content: '';
    position: absolute;
    border-style: solid;
}

@media (min-width: 992px) {
    .form-container .form-info-float {
        left: calc(100% + 15px);
        min-width: 225px;
        transform-origin: top left;
    }

    .form-container .form-info-float::before {
        top: 15px;
        left: -7px;
        border-width: 7px 7px 7px 0;
        border-color: transparent #ffffff transparent transparent;
    }
}

@media (max-width: 991px) {
    .form-container .form-info-float {
        bottom: calc(100% + 15px);
        width: 100%;
        max-width: 300px;
        transform-origin: bottom left;
    }

    .form-container .form-info-float::before {
        bottom: -7px;
        left: 15px;
        border-width: 7px 7px 0 7px;
        border-color: #ffffff transparent transparent transparent;
    }
}

.form-container .form-range {
    margin-top: 10px;
}

.form-icon {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    border-radius: 3px 0 0 3px;
    cursor: pointer;
}

.form-icon::before {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    font-family: "Black Tie";
    font-size: 0.875em;
    color: #ffffff;
    text-align: center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.form-validation-text {
    position: absolute;
    top: calc(100% + 2px);
    font-size: 0.75em;
    font-family: "Roboto", Arial, sans-serif;
    line-height: 1.5em;
    font-weight: 400;
}

.form-danger .form-control {
    padding-left: 65px;
    color: #7e1a01;
}

.form-danger .form-control:focus {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(156, 31, 1, 0.7);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(156, 31, 1, 0.7);
}

.form-danger .form-icon {
    display: block;
    background-color: #9c1f01;
}

.form-danger .form-icon::before {
    content: "";
}

.form-danger::before, .form-danger::after {
    position: absolute;
    width: 50px;
    pointer-events: none;
}

.form-danger::before {
    content: "";
    z-index: 2;
    bottom: 0;
    line-height: 50px;
    font-family: "Black Tie";
    font-size: 0.875em;
    color: #ffffff;
    text-align: center;
}

.form-danger::after {
    content: '';
    bottom: 0;
    height: 50px;
    border-radius: 3px 0 0 3px;
    background-color: #9c1f01;
}

.form-danger .tooltip-inner {
    color: #9c1f01;
}

.form-danger .form-validation-text {
    color: #9c1f01;
}

textarea {
    height: 130px;
    resize: none;
    -webkit-appearance: none;
}

textarea.form-small {
    height: 100px;
    padding: 7px 15px;
}

input[type=checkbox],
input[type=radio] {
    position: absolute;
    visibility: hidden;
}

input[type=checkbox] + label,
input[type=radio] + label {
    position: relative;
    margin-left: 25px;
    font-weight: 300;
    cursor: pointer;
}

input[type=checkbox] + label:before, input[type=checkbox] + label:after,
input[type=radio] + label:before,
input[type=radio] + label:after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 15px;
    height: 15px;
    text-align: left;
    transition: 0.4s;
}

input[type=checkbox] + label:before,
input[type=radio] + label:before {
    z-index: 1;
    left: -25px;
    top: 5px;
    border: solid 1px #0051a5;
    background-color: #eaf6fe;
    color: #0051a5;
}

input[type=checkbox] + label:after,
input[type=radio] + label:after {
    z-index: 2;
    font-family: "Black Tie";
    font-weight: 900;
    color: #0051a5;
    opacity: 0;
}

input[type=checkbox]:checked + label:before,
input[type=radio]:checked + label:before {
    background-color: #ffffff;
}

input[type=checkbox]:checked + label:after,
input[type=radio]:checked + label:after {
    opacity: 1;
}

input[type=checkbox][disabled] + label:before,
input[type=radio][disabled] + label:before {
    border: solid 1px #c4c8cc;
    background-color: #f6f6f7;
}

input[type=radio] + label:before {
    border-radius: 50%;
}

input[type=radio] + label:after {
    content: "\F08C";
    top: 9px;
    left: -21.5px;
    font-size: 8.5px;
    line-height: 1em;
}

input[type=checkbox] + label:after {
    content: "\F012";
    top: 9px;
    left: -22px;
    font-size: 8px;
    line-height: 1em;
}

input[type=radio].radio-check + label {
    line-height: 1.8125;
}

input[type=radio].radio-check + label::after {
    content: "\F012";
    top: 9px;
    font-family: "Black Tie";
    color: #ffffff;
    font-size: 8px;
    line-height: 1em;
}

input[type=radio].radio-check:checked + label::after {
    color: #0051a5;
}

.radio-group label {
    margin-right: 20px;
}

.input-switch input[type=checkbox] + label {
    height: 10px;
    width: 50px;
    margin-right: 25px;
    border-radius: 10px;
    background-color: #c4c8cc;
    vertical-align: middle;
}

.input-switch input[type=checkbox] + label:before, .input-switch input[type=checkbox] + label:after {
    content: "";
}

.input-switch input[type=checkbox] + label:before {
    top: 0;
    left: 0;
    height: 100%;
    width: 20%;
    border-radius: 10px;
    background-color: #0051a5;
}

.input-switch input[type=checkbox] + label:after {
    left: 5px;
    top: 50%;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: none;
    background-color: #ffffff;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    opacity: 1;
}

.input-switch input[type=checkbox]:checked + label:before {
    width: calc(100% - 5px);
}

.input-switch input[type=checkbox]:checked + label:after {
    left: calc(100% - (20px + 5px));
}

.input-switch label {
    font-weight: 300;
}

.select-styled {
    position: relative;
    display: block;
    margin-bottom: 0;
}

.select-styled::after {
    content: '\F091';
    position: absolute;
    z-index: 2;
    right: 25px;
    top: 50%;
    color: #0051a5;
    font-family: 'Black Tie';
    font-weight: 400;
    font-size: 0.75em;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    pointer-events: none;
}

.select-styled:hover {
    color: #002750;
}

.select-styled select {
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 50px;
}

.select-styled .form-small {
    height: 40px;
    padding: 7px 15px;
}

.select-styled::before {
    content: '';
    position: absolute;
    z-index: 1;
    right: 20px;
    bottom: 2px;
    width: 30px;
    height: 90%;
    background-color: #e9eaec;
    pointer-events: none;
}

.select-styled select::-ms-expand {
    display: none;
}

.select-styled.b-white select {
    background-color: #ffffff;
}

.select-styled.b-white::before {
    background-color: #ffffff;
}

input[type=range].form-range {
    -webkit-appearance: none !important;
    width: 100%;
    height: 10px;
    padding: 0;
    border-radius: 8px;
    background: -webkit-gradient(linear, center top, center bottom, from(#e9eaec), to(#e9eaec));
    background: -moz-linear-gradient(left, #e9eaec 0%, #e9eaec 100%);
    transition: background 450ms;
    -webkit-transition: background 450ms;
}

input[type=range].form-range::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    background: #ffffff;
    height: 20px;
    width: 20px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
    cursor: pointer;
}

input[type=range].form-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
}

input[type=range].form-range::-ms-thumb {
    background: #ffffff;
    height: 20px;
    width: 20px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
    cursor: pointer;
}

input[type=range].form-range::-ms-thumb:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
}

input[type=range].form-range::-moz-range-thumb {
    background: #ffffff;
    height: 20px;
    width: 20px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
    cursor: pointer;
}

input[type=range].form-range::-moz-range-thumb:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
}

input[type=range].form-range::-moz-range-track {
    height: 0px;
}

input[type=range].form-range::-ms-track {
    height: 10px;
    cursor: pointer;
    background: transparent;
    color: transparent;
    border-color: transparent;
}

input[type=range].form-range::-ms-fill-lower {
    background: #0051a5;
    border-radius: 8px;
}

input[type=range].form-range::-ms-fill-upper {
    background: #e9eaec;
    border-radius: 8px;
}

input[type=range].form-range::-ms-tootip {
    display: none;
}

input[type=range].form-range:focus {
    outline: none;
}

input[type=range].form-range:focus::-ms-thumb {
    background-color: #eaf6fe;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.1), 0 6px 10px 0 rgba(0, 0, 0, 0.12), 0 1px 18px 0 rgba(0, 0, 0, 0.1);
}

input[type=range].form-range:focus::-webkit-slider-thumb {
    background-color: #eaf6fe;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.1), 0 6px 10px 0 rgba(0, 0, 0, 0.12), 0 1px 18px 0 rgba(0, 0, 0, 0.1);
}

input[type=range].form-range:focus::-moz-range-thumb {
    background-color: #eaf6fe;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.1), 0 6px 10px 0 rgba(0, 0, 0, 0.12), 0 1px 18px 0 rgba(0, 0, 0, 0.1);
}

input[type=range].form-range + output {
    margin-top: 5px;
    font-size: 0.75em;
}

.form-container-range {
    position: relative;
    margin-bottom: 30px;
}

.form-range-markers {
    position: relative;
    z-index: 3;
}

.form-range-markers + output {
    position: absolute;
    bottom: -30px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.range-markers {
    position: absolute;
    bottom: -5px;
    width: 100%;
    display: -moz-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.range-markers .marker {
    background: #e9eaec;
    height: 20px;
    width: 20px;
    border-radius: 50%;
}

.range-markers .marker.active {
    background: #0051a5;
}

.output-text-equal {
    display: -moz-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.output-text-equal .output-text {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    flex-basis: 0;
}

.output-text-equal .output-text:first-child {
    text-align: left;
}

.output-text-equal .output-text:last-child {
    text-align: right;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-box-shadow: 0 0 0px 1000px #bfebec inset;
}

/*## TABLES ##*/
table.table {
    width: 100%;
}

table.table .table {
    background-color: transparent;
}

table.table .table thead {
    background-color: transparent;
}

table.table .well {
    margin-bottom: 0 !important;
}

table.table > thead > tr > th,
table.table > tfoot > tr > td,
table.table > tbody > tr > td {
    padding: 15px;
    border: none;
    font-family: "Roboto", Arial, sans-serif;
}

table.table > thead {
    background-color: transparent;
    border-bottom: solid 2px #585858;
}

table.table > thead > tr > th {
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 400;
    color: #444444;
}

table.table > thead > tr > th h4, table.table > thead > tr > th h5 {
    margin-bottom: 0px;
}

table.table > tfoot {
    border-top: solid #585858 2px;
}

table.table > tfoot > tr > td {
    font-weight: 400;
}

table.table tr.total {
    font-weight: 400;
}

table.table tr.total.divider {
    border-top: solid #585858 2px;
}

table.table tr.divider {
    border-top: solid #585858 1px;
}

table.table tr.highlight {
    background-color: #f6f6f7;
}

table.table tr.table-row-collapse > td {
    padding: 0;
}

table.table .icon {
    font-size: 0.875em;
}

table.table .label {
    margin-bottom: 0;
}

table.table-stripes > thead {
    border-bottom: solid 2px #585858;
}

table.table-stripes > tbody > tr:nth-of-type(odd) {
    background-color: #f6f6f7;
}

table.table-stripes > tbody > tr:nth-of-type(even) {
    background-color: #ffffff;
}

table.table-condensed > thead > tr > th, .fund-page table.table > thead > tr > th,
table.table-condensed > tfoot > tr > td,
.fund-page table.table > tfoot > tr > td,
table.table-condensed > tbody > tr > td,
.fund-page table.table > tbody > tr > td {
    padding: 10px 12px;
    font-family: "Roboto Condensed", Arial, sans-serif;
}

table.table-small > thead > tr > th,
table.table-small > tfoot > tr > td,
table.table-small > tbody > tr > td {
    padding: 10px 12px;
    font-size: 0.875em;
}

table.table-hover > tbody > tr {
    transition: 0.1s;
}

table.table-hover > tbody > tr:hover {
    background-color: #eaf6fe;
}

table.table-left-right td, table.table-left-right th {
    text-align: right;
}

table.table-left-right td:first-child, table.table-left-right th:first-child {
    text-align: left;
}

table.table-bold-first td:first-child {
    font-weight: 400;
}

table.table-horiz-divider > tbody > tr {
    border-bottom: solid #585858 1px;
}

table.table-horiz-divider > tbody > tr:last-child {
    border-bottom-color: transparent;
}

table.table-vert-divider > thead > tr > th,
table.table-vert-divider > tfoot > tr > td,
table.table-vert-divider > tbody > tr > td {
    border-right: solid #585858 1px;
}

table.table-vert-divider > thead > tr > th:last-child,
table.table-vert-divider > tfoot > tr > td:last-child,
table.table-vert-divider > tbody > tr > td:last-child {
    border-right: none;
}

table.table-col-2 > tbody > tr > td {
    width: 50%;
}

table.table-col-3 > tbody > tr > td {
    width: 33.33%;
}

@media (max-width: 479px) {
    table.table-responsive {
        min-width: 500px;
    }
}

table.table.border-teal > thead {
    border-bottom: solid 2px #005c63;
}

.table-responsive {
    border-color: #585858;
}

.table-responsive-superlong {
    width: 100%;
    border: solid 1px #585858;
    overflow-y: hidden;
}

@media (max-width: 767px) {
    .table-responsive-superlong .table {
        min-width: 1500px;
    }
}

@media (min-width: 768px) {
    .table-responsive-superlong .table {
        min-width: 2000px;
    }
}

.table.b-primary-color > thead {
    border-bottom: none;
}

.table.b-primary-color > thead > tr {
    background: #005c63;
}

.table.b-primary-color > thead > tr > th {
    border-bottom: none;
    color: #ffffff;
}

.table.b-primary-color > thead > tr > th h4, .table.b-primary-color > thead > tr > th h5 {
    color: #ffffff;
}

.table.b-primary-color > tbody > tr:nth-of-type(odd) {
    background-color: #bfebec;
}

.table.b-primary-color > tbody > tr:nth-of-type(even) {
    background-color: #e5f7f7;
}

.table.b-secondary-color > thead {
    border-bottom: none;
}

.table.b-secondary-color > thead > tr {
    background: #0051a5;
}

.table.b-secondary-color > thead > tr > th {
    border-bottom: none;
    color: #ffffff;
}

.table.b-secondary-color > thead > tr > th h4, .table.b-secondary-color > thead > tr > th h5 {
    color: #ffffff;
}

.table.b-secondary-color > tbody > tr:nth-of-type(odd) {
    background-color: #bfe2fc;
}

.table.b-secondary-color > tbody > tr:nth-of-type(even) {
    background-color: #eaf6fe;
}

.table.b-carbon > thead {
    border-bottom: none;
}

.table.b-carbon > thead > tr {
    background: #899299;
}

.table.b-carbon > thead > tr > th {
    border-bottom: none;
    color: #ffffff;
}

.table.b-carbon > thead > tr > th h4, .table.b-carbon > thead > tr > th h5 {
    color: #ffffff;
}

.table.b-carbon > tbody > tr:nth-of-type(odd) {
    background-color: #e9eaec;
}

.table.b-carbon > tbody > tr:nth-of-type(even) {
    background-color: #f6f6f7;
}

@media (max-width: 767px) {
    table.table-xs-stack tbody td,
    table#submitAppTable tbody td {
        width: 100%;
        float: left;
    }

    table.table-xs-stack-50 tr td {
        width: 50%;
        display: inline-block;
    }

    table#submitAppTable thead,
    table.table-xs-stack thead,
    table.table-xs-stack-50 thead {
        display: none;
    }

    table#submitAppTable tr td,
    table.table-xs-stack tr td,
    table.table-xs-stack-50 tr td {
        text-align: left;
        white-space: normal !important;
    }

    table#submitAppTable tr td:first-child,
    table.table-xs-stack tr td:first-child,
    table.table-xs-stack-50 tr td:first-child {
        padding-top: 20px;
    }

    table#submitAppTable tr td .form-small-number,
    table.table-xs-stack tr td .form-small-number,
    table.table-xs-stack-50 tr td .form-small-number {
        max-width: none;
    }

    table#submitAppTable tr td span.label,
    table.table-xs-stack tr td span.label,
    table.table-xs-stack-50 tr td span.label {
        width: 100%;
    }

    td[data-header]:before {
        content: attr(data-header) " ";
        margin-right: 5px;
        font-weight: 400;
    }

    table.table tr td.xs-100 {
        width: 100%;
        display: block;
    }

    table.table tr td.xs-50 {
        width: 50%;
        display: inline-block;
    }

    table.table tr td.right-xs {
        text-align: right;
    }

    table.table tr td .button-xs {
        padding: 6px 0;
        width: 100%;
        border-radius: 3px;
        border: solid 1px #0051a5;
        display: block;
    }

    table.table tr td .button-xs .icon {
        font-size: 0.75em;
    }
}

/*## SINGLE ICONS ##*/
.icon-float {
    position: absolute;
    top: 15px;
    right: 15px;
}

.icon-float .icon {
    color: #0051a5;
}

button.icon-float {
    border: none;
    background: transparent;
}

.icon-arrows {
    display: block;
}

.icon-arrows .icon {
    color: #0051a5;
    font-size: 1em;
    line-height: 1.5em;
    transition: 0.2s;
}

.icon-arrows.arrow-down:not(.inactive):hover .icon {
    transform: translateY(5px);
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
}

.icon-arrows.arrow-up:not(.inactive):hover .icon {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
}

.icon-arrows.inactive {
    cursor: default;
}

.icon-arrows.inactive .icon {
    color: #c4c8cc;
}

.icon-status {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border-width: 4px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    display: inline-block;
    cursor: pointer;
    transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transition: 0.35s cubic-bezier(0, 0.51, 0.31, 1.51);
}

.icon-status:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.icon-status::before {
    font-family: "Black Tie";
    font-size: 35px;
    line-height: 1em;
}

.icon-status-danger {
    border-color: #9c1f01;
}

.icon-status-danger::before {
    content: "";
    color: #9c1f01;
}

.icon-status-danger + .tooltip .tooltip-inner {
    color: #9c1f01;
}

.icon-status-success {
    border-color: #355d14;
}

.icon-status-success::before {
    content: "";
    color: #355d14;
}

.icon-status-success + .tooltip .tooltip-inner {
    color: #355d14;
}

.icon-status-warning {
    border-color: #7f4907;
}

.icon-status-warning::before {
    content: "";
    color: #7f4907;
}

.icon-status-warning + .tooltip .tooltip-inner {
    color: #7f4907;
}

.icon-status-info {
    border-color: #0051a5;
}

.icon-status-info::before {
    content: "";
    color: #0051a5;
}

.icon-status-info + .tooltip .tooltip-inner {
    color: #0051a5;
}

label .icon {
    margin-left: 0.3125em;
}

.icon-description {
    margin-left: 0.3125em;
}

.icon-circle {
    position: relative;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    border: solid 2px #005c63;
    background-color: #ffffff;
    color: #005c63;
    font-size: 2.5em;
    display: inline-block;
}

@media (max-width: 767px) {
    .icon-circle {
        height: 80px;
        width: 80px;
        font-size: 2em;
    }
}

.icon-circle::before,
.icon-circle .icon-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: #005c63;
}

.icon-circle .icon-img {
    width: 60%;
}

.icon-circle-small {
    height: 80px;
    width: 80px;
    font-size: 2em;
}

.icon-circle-large {
    height: 200px;
    width: 200px;
    font-size: 3.25em;
}

@media (max-width: 767px) {
    .icon-circle-large {
        height: 150px;
        width: 150px;
        font-size: 3em;
    }
}

.icons-share li {
    padding-left: 8px;
    padding-right: 8px;
}

.icon-mailbox .stroke {
    stroke-width: 3;
    stroke-linecap: round;
}

.icon-mailbox .envelope,
.icon-mailbox .mailbox-flag,
.icon-mailbox .mailbox-outer {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.icon-mailbox .envelope {
    transform-origin: 58px 100%;
    -webkit-animation-name: moveX;
    animation-name: moveX;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.icon-mailbox .ani-container {
    transform: translate(0, 0);
}

.icon-mailbox .mailbox-flag {
    transform: rotate(-270deg);
    transform-origin: 96px 58px;
    -webkit-animation-name: rotate270;
    animation-name: rotate270;
    -webkit-animation-duration: 0.65s;
    animation-duration: 0.65s;
    -webkit-animation-timing-function: cubic-bezier(0, 0.65, 0.55, 1);
    animation-timing-function: cubic-bezier(0, 0.65, 0.55, 1.3);
}

.icon-mailbox .mailbox-outer {
    transform-origin: 90px 100%;
    -webkit-animation-name: scaleXBounce;
    animation-name: scaleXBounce;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
    -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 1);
    animation-timing-function: cubic-bezier(0, 1, 1, 2);
}

@keyframes rotate270 {
    from {
        transform: rotate(-270deg);
    }
    to {
        transform: rotate(0deg);
    }
}

@keyframes moveX {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(45px) scaleX(0);
    }
    60% {
        transform: translateX(45px) scaleX(1);
    }
}

@keyframes scaleXBounce {
    from, to {
        transform: scaleX(1);
    }
    80% {
        transform: scaleX(1.1);
    }
}

/*## LOGO STYLES ##*/
.arc-logo .logo {
    margin-right: 5px;
    max-height: 40px;
}

.arc-logo .logo-text {
    font-size: 13px;
    line-height: 1em;
    vertical-align: top;
    white-space: nowrap;
    color: #0051a5;
}

.arc-logo-rev .logo {
    max-height: 50px;
}

.arc-logo-rev .logo-text {
    font-size: 14px;
    color: #ffffff;
}

/*## NAVIGATION ##*/
#mobile-menu-right {
    display: none;
}

/*## NAVIGATION general bootstrap overrides##*/
.navbar-default {
    margin-top: 0 !important;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
}

.navbar {
    border-radius: 0;
}

.navbar-brand {
    padding: 10px 0;
    height: auto;
}

.navbar-brand .logo {
    margin-top: 5px;
    height: 25px;
    width: auto;
}

/*## NAVIGATION icons and buttons ##*/
.navbar-default .navbar-nav > li > a > i {
    font-size: .6em;
    color: inherit;
    padding-left: .5em;
}

.navbar-default .navbar-nav > li > .button {
    text-transform: none;
    margin-left: 15px;
    color: #ffffff !important;
}

.navbar-default .navbar-nav > li > .button:hover {
    color: #ffffff !important;
}

/*## PRIMARY NAVIGATION link styles ##*/
#primary-navigation {
    position: relative;
    z-index: 100;
}

#primary-navigation .navbar-collapse {
    border-bottom: solid 1px transparent;
    transition: 0.5s;
}

#primary-navigation .navbar-nav {
    padding: 10px 0;
    transition: 0.5s;
}

#primary-navigation .navbar-nav > li.active > a {
    background-color: transparent;
    color: #003168;
}

#primary-navigation .navbar-nav > li > a {
    padding: 7px 15px;
    letter-spacing: 0;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.43;
    font-weight: 400;
    color: #0051a5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#primary-navigation .navbar-nav > li > a:focus, #primary-navigation .navbar-nav > li > a:hover {
    color: #003168;
    background-color: transparent;
}

#primary-navigation .navbar-nav > li > a.dropdown-toggle {
    padding-right: 10px !important;
}

#primary-navigation .navbar-nav > li > a.dropdown-toggle.button {
    padding-left: 19px !important;
    padding-right: 13px !important;
}

#primary-navigation .navbar-nav > li > a.button-xsmall {
    margin-top: 0;
    padding: 7px 15px;
    line-height: 20px;
    color: #0051a5 !important;
}

#primary-navigation .navbar-nav > li > a.button-xsmall:hover {
    color: #ffffff !important;
}

#primary-navigation .navbar-nav > li > a.link-user {
    padding-left: 40px;
    font-size: 0.75em;
    line-height: 1.667em;
    color: #585858;
}

#primary-navigation .navbar-nav > li > a.link-user:hover {
    color: #0051a5;
}

#primary-navigation .navbar-nav > li > a.link-user .icon {
    position: absolute;
    left: 15px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #eaf6fe;
    color: #0051a5;
    font-size: 0.875em;
    line-height: 20px;
    text-align: center;
}

/*## NAVIGATION animations and position ##*/
#global-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

#global-navigation .navbar-collapse {
    padding-right: 0px;
    padding-left: 0px;
}

#global-navigation.headeractive {
    background-color: white;
    -webkit-transform: translate(0, -36px);
    -ms-transform: translate(0, -36px);
    transform: translate(0, -36px);
}

#global-navigation.headerattop {
    background-color: white;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 2px 1px -1px rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 2px 1px -1px rgba(0, 0, 0, 0.08);
}

#global-navigation .external-container {
    position: relative;
    z-index: 10000;
}

/*## SECONDARY NAVIGATION styles ##*/
#secondary-navigation .active {
    color: #003168 !important;
}

#secondary-navigation .navbar-nav {
    position: relative;
    z-index: 10;
}

#secondary-navigation .navbar-nav > li > a {
    padding: 8px 14px;
    letter-spacing: normal;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 36px !important;
}

#secondary-navigation .navbar-nav > li > a:focus, #secondary-navigation .navbar-nav > li > a:hover {
    color: #003168;
    background-color: transparent;
}

#secondary-navigation .navbar-nav .dropdown-menu li > a {
    font-family: "Roboto Condensed", Arial, sans-serif;
}

#secondary-navigation .navbar-nav #search-link i {
    font-size: .9em;
}

.search-group {
    position: absolute;
    z-index: -1;
    top: 100%;
    width: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.15s, width 0s 0.35s;
}

.search-group .input-group {
    width: 70%;
    float: right;
}

.search-group input {
    height: 56px;
    width: 0;
    float: right;
    transition: width 0.3s 0.35s;
}

.search-group .input-group-btn .button {
    height: 56px;
    border-radius: 0;
}

.search-open .search-group {
    z-index: 1;
    width: 100%;
    overflow: visible;
    opacity: 1;
    transition: opacity 0.35s, width 0s;
}

.search-open .search-group input {
    width: 300px;
}

.search-open #main-site-links {
    opacity: 0;
}

#main-site-links {
    opacity: 1;
    transition: 0.3s;
}

/* NAVIGATION -- DROPDOWNS */
.navbar-default .navbar-nav .open > a,
.navbar-default .navbar-nav .open > a:hover,
.navbar-default .navbar-nav .open > a:focus {
    background-color: transparent;
    color: #003168;
}

.nav.navbar-nav .dropdown-toggle:hover {
    color: #003168 !important;
}

.nav.navbar-nav .dropdown-menu {
    font-size: inherit;
    border: none !important;
    border-top: solid 4px #0051a5 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    min-width: 100% !important;
    top: 120%;
    left: 50%;
    background-color: white;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

.nav.navbar-nav .dropdown-menu:not(.cols-in) li:first-child:before {
    position: absolute;
    bottom: 100%;
    left: 50%;
    z-index: -1;
    margin-left: -6px;
    content: " ";
    display: inline-block;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    box-shadow: 10px -10px 20px -9px #000000;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #0051a5 transparent;
}

.nav.navbar-nav .dropdown-menu:not(.cols-in) li:first-child:hover:before {
    color: transparent;
}

.nav.navbar-nav .dropdown-menu ul {
    list-style: none;
    padding-left: 0px !important;
    padding-right: 0px !important;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

.nav.navbar-nav .dropdown-menu.cols-in.two-cols {
    width: 410px !important;
}

.nav.navbar-nav .dropdown-menu.cols-in.three-cols {
    width: 550px !important;
}

.nav.navbar-nav .dropdown-menu.cols-in.four-cols {
    width: 750px !important;
}

.nav.navbar-nav .dropdown-menu.cols-in.short-space {
    -webkit-transform: translate(-90%, 0);
    -ms-transform: translate(-90%, 0);
    transform: translate(-90%, 0);
}

.nav.navbar-nav .dropdown-menu.cols-in.short-space:before {
    position: absolute;
    bottom: 100%;
    left: 50%;
    z-index: -1;
    margin-left: 39%;
    content: " ";
    display: inline-block;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    box-shadow: 10px -10px 20px -9px #000000;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #0051a5 transparent;
}

.nav.navbar-nav .dropdown-menu.cols-in .overflow.active {
    height: 250px;
    overflow-y: auto;
}

.nav.navbar-nav .dropdown-menu.cols-in ul a {
    display: inline-block;
    width: 100%;
}

.nav.navbar-nav .dropdown-menu.cols-in:before {
    position: absolute;
    bottom: 100%;
    left: 50%;
    z-index: -1;
    margin-left: -8px;
    content: " ";
    display: inline-block;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    box-shadow: 10px -10px 20px -9px #000000;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #0051a5 transparent;
}

.nav.navbar-nav .dropdown-menu.cols-in:hover:before {
    border-color: transparent transparent transparent transparent !important;
    color: transparent;
}

.nav.navbar-nav .dropdown-menu .divider {
    margin: 0 20px;
    background-color: #585858;
}

.nav.navbar-nav .dropdown-menu li > a {
    padding: 10px 20px;
    letter-spacing: normal;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 14px;
    line-height: inherit;
    font-weight: 400;
    color: #444444;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nav.navbar-nav .dropdown-menu li > a:focus, .nav.navbar-nav .dropdown-menu li > a:hover {
    color: #0051a5;
    background-color: transparent;
}

.nav.navbar-nav .dropdown-menu li.heading > a {
    padding: 10px 10px;
    text-transform: uppercase;
    min-height: 50px;
    color: #002750;
    text-decoration: underline !important;
}

.nav.navbar-nav .dropdown-menu li.heading > a:hover {
    color: #ffffff;
    background-color: #002750;
}

.nav.navbar-nav .dropdown-menu li.heading > a[href="#"] {
    text-decoration: none !important;
    cursor: default !important;
}

.nav.navbar-nav .dropdown-menu li.heading > a[href="#"]:hover {
    color: #002750;
    background-color: transparent;
}

.nav.navbar-nav .dropdown-menu li:first-child a {
    padding-top: 20px;
}

.nav.navbar-nav .dropdown-menu li:last-child a {
    padding-bottom: 20px;
}

.nav.navbar-nav .dropdown-menu > .active > a,
.nav.navbar-nav .dropdown-menu > .active > a:hover,
.nav.navbar-nav .dropdown-menu > .active > a:focus {
    color: #003168;
}

.nav.navbar-nav #login-dropdown {
    left: auto;
    transform: translate(0);
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
}

.nav.navbar-nav #login-dropdown li:first-child:before {
    left: 100%;
    margin-left: -41px;
}

.nav.navbar-nav .sign-in {
    width: auto !important;
    height: 36px;
    padding-top: 6px !important;
    border-radius: 0 !important;
    padding-right: 10px !important;
    padding-left: 14px !important;
}

.nav.navbar-nav .sign-in > i {
    padding-left: .2em;
}

.nav.navbar-nav .sign-in:after {
    content: '' !important;
}

.nav .search-mobile {
    display: none;
}

.nav .contact-mobile {
    display: none;
}

@media only screen and (max-width: 1199px) {
    #primary-navigation .navbar-nav > li > a {
        font-size: 14px;
    }

    #primary-navigation .navbar-nav #login {
        margin-left: -10px;
    }
}

@media only screen and (max-width: 991px) {
    body.sidr-open {
        overflow: hidden;
        position: fixed;
        height: 100%;
    }

    #search-etc-links,
    .search-container {
        display: none;
    }

    #global-navigation {
        min-height: 50px;
    }

    #global-navigation.sidr-open {
        left: -263px;
        -webkit-transition: all 0.2s;
        -ms-transition: all 0.2s;
        transition: all 0.2s;
    }

    #global-navigation.headeractive {
        -webkit-transform: translate(0, 0px);
        -ms-transform: translate(0, 0px);
        transform: translate(0, 0px);
    }

    /*## NAVIGATION general bootstrap overrides##*/
    .navbar-brand {
        padding-right: 15px;
        padding-left: 15px;
    }

    .navbar-brand .logo {
        height: 22px;
    }

    /*## NAVIGATION HAM ##*/
    .ham-bars, .ham-bars::before, .ham-bars::after {
        position: absolute;
        top: 50%;
        left: 0;
        height: 2px;
        width: 17px;
        border-radius: 2px;
        background-color: #0051a5;
    }

    .ham-bars {
        transition: 0.4s;
    }

    .ham-bars::before, .ham-bars::after {
        content: '';
        transition: 0.4s;
    }

    .ham-bars::before {
        top: -6px;
    }

    .ham-bars::after {
        top: 6px;
    }

    .mobile-menu-right-open .ham-bars {
        background-color: transparent;
    }

    .mobile-menu-right-open .ham-bars::before, .mobile-menu-right-open .ham-bars::after {
        top: 0;
        transition: top 0.2s, transform 0.4s 0.35s cubic-bezier(0, 0.51, 0.31, 1.51);
    }

    .mobile-menu-right-open .ham-bars::before {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
    }

    .mobile-menu-right-open .ham-bars::after {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
    }

    .navbar-toggle {
        position: relative;
        top: 50%;
        font-family: "Roboto", Arial, sans-serif;
        font-size: 14px;
        font-weight: 400;
        border-bottom: none !important;
        color: #0051a5;
        margin-top: 15px !important;
        margin-bottom: 0;
        border: none;
    }

    .navbar-toggle:focus, .navbar-toggle:hover {
        background-color: transparent !important;
    }
}

.nav-chat-avatar {
    position: fixed;
    z-index: 10;
    bottom: 20px;
    left: 20px;
    pointer-events: none;
}

.nav-chat-avatar:hover .bubble {
    transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transition: transform 0.35s cubic-bezier(0, 0.51, 0.31, 1.51);
}

.nav-chat-avatar .robo-avatar {
    position: relative;
    z-index: 11;
    margin-right: 10px;
    pointer-events: auto;
    cursor: pointer;
}

.nav-chat-avatar .icon-float {
    transform: scale(0);
    animation: scale 0.2s 0.5s forwards;
    -webkit-animation: scale 0.2s 0.5s forwards;
}

.nav-chat-avatar .bubble {
    position: absolute;
    bottom: 0;
    left: 70px;
    min-width: 350px;
    margin-bottom: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transition: transform 0.15s;
    pointer-events: auto;
}

.nav-chat-avatar .bubble:hover {
    background-color: #003d41;
}

.nav-chat-avatar .bubble-links {
    margin-top: 10px;
}

.nav-chat-avatar .bubble-links a {
    color: #005c63;
    transition: 0.35s;
}

.nav-chat-avatar .bubble-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
    .nav-chat-avatar {
        bottom: 10px;
        left: 10px;
    }

    .nav-chat-avatar .bubble {
        left: 40px;
        max-width: calc(70% - 55px);
    }
}

@media (max-width: 479px) {
    .nav-chat-avatar {
        width: 100%;
    }

    .nav-chat-avatar .bubble {
        left: 20px;
        min-width: calc(100% - 55px);
    }

    .nav-chat-avatar .robo-avatar + .icon-float {
        left: 30px !important;
        right: auto !important;
    }
}

.sidr {
    display: none;
    position: fixed;
    top: 0;
    height: 100%;
    z-index: 999999;
    width: 263px;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 14px;
    background: #ffffff;
    color: #0051a5;
    -webkit-box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
}

.sidr .sidr-inner {
    padding: 0 0 15px;
}

.sidr .sidr-inner > p {
    margin-left: 15px;
    margin-right: 15px;
}

.sidr.right {
    left: auto;
    right: -260px;
}

.sidr ul:first-child {
    height: 532px;
}

.sidr ul {
    display: block;
    padding: 0;
}

.sidr ul.collapse:not(.in) {
    display: none;
}

.sidr ul li {
    display: block;
    margin: 0;
}

.sidr ul li a {
    padding: 12px 15px;
    display: block;
    text-decoration: none;
    color: #0051a5;
}

.sidr ul li a > i {
    font-size: 9px;
    padding-left: 0.5em;
}

.sidr ul li a > i:before {
    content: '\f090';
}

.sidr ul li a.collapsed > i:before {
    content: '\f091';
}

.sidr ul li ul:not(#divisions) li {
    font-size: 13px;
}

.sidr ul li ul:not(#divisions) li a,
.sidr ul li ul:not(#divisions) li span {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
}

.sidr ul li ul {
    margin: 0;
}

.sidr ul li ul li a,
.sidr ul li ul li span {
    color: #0051a5;
}

.sidr ul li .icon {
    margin-right: 5px;
}

.sidr ul li ul#divisions {
    background: #f6f6f7;
}

.sidr ul li .search-input-group .button,
.sidr ul li .search-input-group .form-control {
    border-radius: 0;
}

.sidr ul li .search-input-group .button {
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 1em;
}

.sidr ul li .search-input-group .form-control {
    padding-left: 15px;
    padding-right: 15px;
}

.sidr ul li.item-head {
    min-height: 66px;
    padding-top: 4px;
}

.sidr ul li.item-head .branch-toggle {
    position: absolute;
    right: 10px;
    top: 5px;
    color: #444444;
}

.sidr ul li.item-head .branch-toggle i {
    font-size: 15px !important;
}

.sidr ul li .logo {
    margin-bottom: 5px;
    height: 22px;
}

.sidr ul li.item-content ul {
    background-color: #eaf6fe;
}

.sidr ul li.item-user {
    background-color: #eaf6fe;
}

.sidr ul li.item-user ul {
    background-color: #bfe2fc;
}

.sidr ul li.item-user ul li a {
    color: #003168;
}

.sidr ul li.item-signin {
    background-color: #f6f6f7;
}

.sidr ul li.item-options {
    background-color: #ffffff;
    font-size: 13px;
}

.sidr ul li.item-brand a, .sidr ul li.item-options a, .sidr ul li.item-signin a {
    color: #444444;
}

.sidr ul li.item-brand ul, .sidr ul li.item-options ul, .sidr ul li.item-signin ul {
    background-color: #e9eaec;
}

.sidr ul li.item-brand ul li a, .sidr ul li.item-options ul li a, .sidr ul li.item-signin ul li a {
    color: #444444;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s;
}

@media (max-width: 991px) {
    body.mobile-menu-right-open::after {
        z-index: 102;
        opacity: 1;
        visibility: visible;
    }
}

/*## FOOTER ##*/
footer {
    padding: 80px 0;
    background-color: #005c63;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 767px) {
    footer {
        padding: 40px 0;
    }
}

footer a {
    color: #ffffff;
}

footer a:focus, footer a:hover {
    color: #bfebec;
    border-bottom: solid 1px #bfebec;
}

footer hr {
    border-color: #7fd6da;
    margin-top: 40px;
    margin-bottom: 40px;
}

footer .bubble {
    padding: 10px 30px;
    color: #005c63;
}

@media (max-width: 991px) {
    footer .bubble {
        padding: 10px 30px;
    }
}

@media (max-width: 767px) {
    footer .bubble {
        padding: 10px;
    }
}

footer .bubble p {
    font-size: 0.875em;
}

footer .bubble-left {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

footer .bubble-right {
    background-color: #ffffff;
    font-size: 0.875em;
    transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transition: transform 0.35s cubic-bezier(0, 0.51, 0.31, 1.51), background-color 0.3s;
}

footer .bubble-right.active {
    transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
}

footer .bubble-right:focus, footer .bubble-right:hover {
    border-bottom: none;
    background-color: #005c63;
}

footer .footer-content p a {
    border-bottom: dotted 1px #bfebec;
}

footer .footer-copyright .arc-logo-rev {
    margin-bottom: 20px;
}

footer .footer-copyright-text {
    font-size: 0.875em;
}

footer .backtoptop {
    margin-top: 70px;
    display: inline-block;
    border-color: #005c63;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 2px 1px -1px rgba(0, 0, 0, 0.08);
    background: #005c63;
    color: #ffffff;
}

@media (max-width: 767px) {
    footer .backtoptop {
        margin-top: 20px;
    }
}

footer .backtoptop.button-arrow::after {
    content: "\F098";
    font-weight: 400;
}

footer .backtoptop:focus, footer .backtoptop:hover {
    border-bottom-color: transparent;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
    background: #005c63;
}

/*## HERO ##*/
.hero {
    position: relative;
    padding-top: 200px;
    padding-bottom: 70px;
}

@media (max-width: 991px) and (min-width: 480px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 40px;
    }
}

@media (max-width: 479px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 30px;
    }
}

.hero-small {
    padding-bottom: 30px;
}

@media (max-width: 991px) and (min-width: 480px) {
    .hero-small {
        padding-bottom: 30px;
    }
}

@media (max-width: 479px) {
    .hero-small {
        padding-bottom: 30px;
    }
}

.hero-gradient {
    background-color: transparent;
}

.hero-overlap {
    padding-bottom: 140px;
}

@media (max-width: 991px) and (min-width: 480px) {
    .hero-overlap {
        padding-bottom: 120px;
    }
}

@media (max-width: 479px) {
    .hero-overlap {
        padding-bottom: 100px;
    }
}

.hero .category:not(.dropdown-toggle),
.hero .category-dropdown {
    margin-bottom: 20px;
}

.hero hr {
    margin-top: 70px;
    margin-bottom: 0;
}

/*## CONTENT SECTION ##*/
section.content {
    padding: 80px 0;
    background-color: #ffffff;
}

@media (max-width: 767px) {
    section.content {
        padding: 40px 0;
    }
}

section.content article {
    margin-bottom: 40px;
}

section.content p,
section.content ul,
section.content ol {
    margin-bottom: 1.125em;
}

section.content p + h2,
section.content p + h3,
section.content ul + h2,
section.content ul + h3,
section.content ol + h2,
section.content ol + h3 {
    margin-top: 40px;
}

section.content p + h4,
section.content p + h5,
section.content ul + h4,
section.content ul + h5,
section.content ol + h4,
section.content ol + h5 {
    margin-top: 20px;
}

section.content img,
section.content blockquote,
section.content .table,
section.content .table-responsive,
section.content .well,
section.content .infographic,
section.content .chart,
section.content .chart-vert {
    margin-bottom: 1.6875em;
}

section.content p + img,
section.content p + blockquote,
section.content p + .table,
section.content p + .table-responsive,
section.content p + .well,
section.content p + .infographic
+ .chart,
section.content p + .chart-vert {
    margin-top: 0.75em;
}

section.content .table-responsive-superlong .table,
section.content .table-responsive .table {
    margin-bottom: 10px;
}

section.content p a {
    border-bottom: dotted 1px #0051a5;
}

section.content p a:hover {
    border-bottom: solid 1px #002750;
    color: #002750;
}

section.content .tiles .block {
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
}

.intro-box + .content {
    padding-top: 0;
}

/*## REUSABLE LAYOUT ELEMENTS ##*/
.highlight-box, .intro-box .intro-block {
    position: relative;
    padding: 40px;
    border-radius: 3px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

@media (max-width: 991px) {
    .highlight-box, .intro-box .intro-block {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .highlight-box, .intro-box .intro-block {
        padding: 15px;
    }
}

.highlight-box .well:last-child, .intro-box .intro-block .well:last-child {
    margin-bottom: 0;
}

.highlight-box-full {
    position: relative;
    border-radius: 3px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 40px 0;
}

@media (max-width: 991px) {
    .highlight-box-full {
        padding: 30px 0;
    }
}

@media (max-width: 767px) {
    .highlight-box-full {
        padding: 15px 0;
    }
}

.intro-box {
    background-color: #ffffff;
}

.intro-box .intro-block {
    top: -70px;
}

@media (max-width: 991px) {
    .intro-box .intro-block {
        margin-bottom: -30px;
    }
}

@media (max-width: 767px) {
    .intro-box .intro-block {
        margin-bottom: -50px;
    }
}

.well {
    padding: 20px;
    border-radius: 3px;
    border: 1px solid #e9eaec;
    background-color: #f6f6f7;
    box-shadow: none;
    -webkit-box-shadow: none;
    font-family: "Roboto Condensed", Arial, sans-serif;
}

.well.b-primary-color-tint-3 {
    border-color: #d3f1f2;
}

.well.b-secondary-color-tint-3 {
    border-color: #bfe2fc;
}

.well.b-primary-color, .well.b-secondary-color {
    border: none;
    color: #ffffff;
}

.well p:last-of-type,
.well ul:last-of-type,
.well ol:last-of-type {
    margin-bottom: 0;
}

.infographic-box {
    margin: 1.75em 0;
    padding: 20px;
    border-radius: 3px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
}

.infographic-box.b-secondary-color-tint-2 {
    color: #003168;
}

.infographic-box p:last-of-type {
    margin-bottom: 0;
}

.icon-box {
    position: relative;
}

@media (min-width: 480px) {
    .icon-box {
        padding-left: 110px;
    }

    .icon-box .icon-circle {
        top: 20px;
        left: 15px;
    }

    .icon-box .icon-small {
        height: 80px;
        width: 80px;
        font-size: 2em;
    }

    .icon-box-left, .icon-box-top {
        margin-left: 70px;
        padding-left: 55px;
    }

    .icon-box-left .icon-circle, .icon-box-top .icon-circle {
        left: -70px;
    }
}

@media (min-width: 768px) {
    .icon-box-small.icon-box-left {
        margin-left: 55px;
        padding-left: 40px;
    }

    .icon-box-small .icon-circle {
        left: -55px;
        height: 80px;
        width: 80px;
        font-size: 2em;
    }
}

@media (min-width: 992px) {
    .icon-box-top-equalize {
        margin-top: 60px;
    }

    .icon-box-top {
        margin-left: 0;
        padding-top: 60px;
        padding-left: 40px;
    }

    .icon-box-top .icon-circle {
        top: -60px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }
}

@media (max-width: 991px) {
    .icon-box-top {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) and (min-width: 480px) {
    .icon-box-left, .icon-box-top {
        margin-left: 50px;
    }
}

@media (max-width: 767px) {
    .icon-box .icon-circle {
        top: 15px;
    }

    .icon-box-left, .icon-box-top {
        padding-left: 40px;
    }

    .icon-box-left .icon-circle, .icon-box-top .icon-circle {
        left: -50px;
    }
}

@media (max-width: 479px) {
    .icon-box {
        margin-top: 60px !important;
        padding-top: 60px;
        padding-left: inherit;
    }

    .icon-box .icon-circle {
        top: -40px;
        left: calc(50% - 40px);
    }
}

.icon-box .icon-circle {
    position: absolute;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
}

.icon-box .icon-circle .icon-img {
    color: #ffffff;
    transition: 0.3s;
}

.icon-box:hover .icon-img {
    color: #e5f7f7;
}

.icon-box-small .icon-circle {
    border: solid 2px #0051a5;
}

.icon-box-small .icon-circle .icon-img {
    width: 40%;
}

.icon-box-small .icon-circle,
.icon-box-small .icon-circle .icon-img, .icon-box-small:hover .icon-img {
    color: #0051a5;
}

.summary-block .button {
    margin-bottom: 15px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
}

.icon-block {
    position: relative;
    padding-top: 50px;
    text-align: center;
}

.icon-block .icon {
    display: block;
    margin-bottom: 20px;
    font-size: 3em;
}

.icon-block .icon-status {
    position: absolute;
    top: 15px;
    right: 15px;
}

.icon-block .block-text {
    display: block;
    margin-bottom: 20px;
}

.icon-block .button {
    margin-bottom: 15px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
}

/*# GRAPHICAL ELEMENTS #*/
.bar-container {
    position: relative;
    background-color: #c4c8cc;
    overflow: hidden;
}

.bar-container .bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    background-color: #0051a5;
    transition: 0.55s cubic-bezier(0, 0.51, 0.31, 1.51);
}

.bar-container.bar-small, .graphic-breakdown .bar-container {
    height: 5px;
    width: 100%;
}

.bar-container.bar-small .bar-fill, .graphic-breakdown .bar-container .bar-fill {
    height: 100%;
}

.bar-container.bar-large {
    height: 10px;
    width: 100%;
}

.bar-container.bar-large .bar-fill {
    height: 100%;
}

.bar-container.bar-xlarge {
    height: 10px;
    width: 100%;
}

.bar-container.bar-xlarge .bar-fill {
    height: 100%;
}

@media (max-width: 991px) {
    .bar-container.bar-xlarge {
        height: 30px;
    }
}

.bar-container.bar-round {
    border-radius: 10px;
}

.bar-container.bar-round .bar-fill {
    border-radius: 0 10px 10px 0;
}

.progress-container-horiz {
    position: relative;
    padding-top: 20px;
}

.progress-container-horiz .bar-container {
    height: 10px;
}

.progress-container-horiz .bar-container .bar-fill {
    height: 100%;
}

.progress-container-horiz .step {
    position: relative;
    bottom: 10px;
    max-width: 200px;
    font-size: 0.75em;
    padding-right: 30px;
    padding-left: 25px;
}

.progress-container-horiz .step::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    border-style: solid;
    border-width: 7px 7px 0 7px;
    border-color: #ffffff transparent transparent transparent;
    opacity: 0;
    transform: translate(-50%, -20px);
    -webkit-transform: translate(-50%, -20px);
    -ms-transform: translate(-50%, -20px);
}

.progress-container-horiz .step.active {
    filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.1));
    -webkit-filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.1));
}

.progress-container-horiz .step.active::after {
    opacity: 1;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
}

.progress-container-horiz .step.inactive {
    box-shadow: none;
    background-color: #e9eaec;
    color: #444444;
}

.progress-container-horiz .step.checked {
    padding-left: 15px;
}

.progress-container-horiz .step.checked::before {
    font-family: 'Black Tie';
    content: "\F013";
    position: absolute;
    left: 100%;
    margin-left: -25px;
    font-size: 14px;
}

.progress-container-horiz .step.checked:hover {
    cursor: pointer;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    color: #0051a5;
}

.progress-container-horiz .progress-steps-simple {
    padding-top: 35px;
}

.progress-container-horiz .progress-steps-simple .step {
    position: absolute;
    left: 0;
    bottom: 25px;
    transition: 0.5s;
}

@media (max-width: 767px) {
    .progress-container-horiz .step.inactive {
        display: none;
    }
}

.progress-container-large {
    position: relative;
}

.progress-container-large .bar-container {
    position: absolute;
    top: 50%;
    left: 2px;
    width: calc(100% - 4px);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.progress-container-large .progress-steps {
    position: relative;
    z-index: 1;
    padding-left: 0;
}

@media (max-width: 767px) {
    .progress-container-large .bar-container {
        display: none;
    }

    .progress-container-large .icon-button {
        position: relative;
        width: 100%;
        height: auto;
        margin-bottom: 10px;
        text-align: left;
    }

    .progress-container-large .icon-button .icon {
        margin: 0 10px;
        display: inline-block;
    }

    .progress-container-large .icon-button p {
        margin-bottom: 0;
        display: inline-block;
    }
}

.graphic-breakdown .item-group {
    position: relative;
    padding-left: 2.5em;
    margin-bottom: 20px;
}

.graphic-breakdown .item-group:hover .icon {
    transform: scale(1.25);
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
}

.graphic-breakdown .icon {
    position: absolute;
    top: 0.25em;
    left: 0.25em;
    color: #0051a5;
    font-size: 1.25em;
    transition: 0.2s;
}

.graphic-breakdown .text-group {
    font-family: "Roboto Condensed", Arial, sans-serif;
    margin-bottom: 5px;
}

.graphic-breakdown .text-group .item {
    max-width: calc(100% - 50px);
    float: left;
}

.graphic-breakdown .text-group .percent {
    float: right;
    text-align: right;
}

.graphic-equity {
    position: relative;
}

.graphic-equity .square-group {
    font-size: 0;
    line-height: 0;
}

.graphic-equity .square {
    width: 30%;
    height: 100%;
    border: solid 2px #ffffff;
    background-color: #c4c8cc;
    display: inline-block;
}

.graphic-equity .square::after {
    content: '';
    padding-bottom: 100%;
    display: block;
}

.graphic-equity .square.highlight {
    background-color: #005c63;
}

.graphic-equity .text-label {
    width: 33.3333%;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 0.875rem;
    text-align: center;
    display: inline-block;
}

.graphic-equity .text-y,
.graphic-equity .text-x {
    width: 90%;
    height: auto;
    font-size: 0;
}

.graphic-equity .text-y {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: top right;
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform: rotate(90deg) translate(100%, -1.8125rem);
    -webkit-transform: rotate(90deg) translate(100%, -1.8125rem);
    -ms-transform: rotate(90deg) translate(100%, -1.8125rem);
}

.graph-pie-img {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #0051a5;
    overflow: hidden;
}

.graph-pie-img::before, .graph-pie-img::after {
    content: '';
    position: absolute;
    z-index: 1;
}

.graph-pie-img::after {
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.graph-pie {
    position: relative;
}

.graph-pie-25::before {
    right: 0;
    top: 0;
    height: 50%;
    width: 50%;
    background-color: #003168;
}

.graph-pie-50::before {
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background-color: #003168;
}

.graph-pie-75 {
    background-color: #003168;
}

.graph-pie-75::before {
    left: 0;
    top: 0;
    height: 50%;
    width: 50%;
    background-color: #0051a5;
}

.graph-pie-text-bottom-left {
    bottom: -10px;
    right: calc(100% - 15px);
    border-top-right-radius: 3px !important;
}

.graph-pie-text-top-right {
    top: -10px;
    left: calc(100% - 15px);
    border-bottom-left-radius: 3px !important;
}

.graph-pie-text-bottom-right {
    bottom: -10px;
    left: calc(100% - 15px);
    border-top-left-radius: 3px !important;
}

.graph-pie-text-top-left {
    top: -10px;
    right: calc(100% - 15px);
    border-bottom-right-radius: 3px !important;
}

.graph-pie-text-center-left {
    top: -10px;
    right: calc(100% - 15px);
    border-bottom-right-radius: 3px !important;
}

.graph-pie-text-center-right {
    top: -10px;
    left: calc(100% - 15px);
    border-bottom-left-radius: 3px !important;
}

.icon-button, .bubble-selection-multi .bubble:not(.bubble-button) {
    width: 120px;
    height: 110px;
    padding: 20px 10px;
    font-family: "Roboto Condensed", Arial, sans-serif;
    line-height: 1.25em;
    text-align: center;
    vertical-align: top;
}

.icon-button .icon, .bubble-selection-multi .bubble:not(.bubble-button) .icon {
    display: block;
    margin-bottom: 10px;
    font-size: 1.5em;
    color: #0051a5;
}

.icon-button {
    display: inline-block;
    border-radius: 25px;
    background-color: #ffffff;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
}

.icon-button.active {
    background-color: #0051a5;
    color: #ffffff;
}

.icon-button.active .icon {
    color: #ffffff;
}

.range-icons {
    text-align: center;
}

@media (min-width: 480px) {
    .range-icons {
        display: -moz-box;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        margin-bottom: 15px;
    }
}

.range-icons .icon {
    transform-origin: bottom center;
    padding: 10px;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background-color: transparent;
    color: #0051a5;
    text-align: center;
    display: inline-block;
    transition: background-color 0.3s, transform 0.35s cubic-bezier(0, 0.51, 0.31, 1.51);
    transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
}

@media (min-width: 480px) {
    .range-icons .icon.active {
        background-color: #bfe2fc;
        transform: scale(1.15);
        -webkit-transform: scale(1.15);
        -ms-transform: scale(1.15);
    }
}

@media (max-width: 479px) {
    .range-icons .icon {
        display: none;
    }

    .range-icons .icon.active {
        display: inline-block;
    }
}

.range-icons .icon-text {
    display: block;
    font-size: 0.75em;
}

@media (max-width: 479px) {
    .range-icons .icon-text {
        display: none;
    }
}

@media (min-width: 480px) {
    input[type=range].form-range-icons,
    .range-markers-icons {
        margin-left: 23px;
        width: calc(100% - 45px);
    }
}

/*## TILES ##*/
.tiles .tile-group {
    position: relative;
    margin-bottom: 40px;
}

.tiles .tile-group:hover .tile-text .block {
    background-color: rgba(255, 255, 255, 0.9);
}

.tiles .tile-group:hover .tile-img .img-block {
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.1), 0 6px 10px 0 rgba(0, 0, 0, 0.12), 0 1px 18px 0 rgba(0, 0, 0, 0.1);
}

.tiles .tile-text .block {
    position: relative;
    padding: 40px;
    background-color: #ffffff;
    transition: 0.2s;
}

@media (max-width: 991px) {
    .tiles .tile-text .block {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .tiles .tile-text .block {
        padding: 15px;
    }
}

@media (min-width: 992px) {
    .tiles .tile-text .block {
        min-height: 450px;
    }
}

@media (max-width: 479px) {
    .tiles .tile-text .block {
        padding-top: 40px;
    }
}

.tiles .tile-text .category {
    position: relative;
    margin-bottom: 20px;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .tiles .tile-text .category {
        position: absolute;
        z-index: 3;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }

    .tiles .tile-text .category + .tile-title {
        margin-top: 60px;
    }
}

@media (max-width: 479px) {
    .tiles .tile-text .category + .tile-title {
        margin-top: 30px;
    }
}

.tiles .tile-text .tile-title {
    color: #005c63;
    font-size: 1.875em;
}

.tiles .tile-text .tile-title a {
    color: #005c63;
}

.tiles .tile-text .tile-title a:hover {
    color: #003d41;
}

.tiles .tile-text .date {
    margin-bottom: 20px;
    font-size: 0.875em;
    color: #444444;
    display: inline-block;
}

.tiles .tile-text .person-title {
    margin-bottom: 20px;
    display: block;
}

.tiles .tile-text p {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .tiles .tile-text p:first-of-type {
        margin-top: 10px;
    }
}

.tiles .tile-text .read-more {
    text-align: right;
    display: block;
}

.tiles .tile-img {
    position: absolute;
    z-index: 1;
}

@media (min-width: 992px) {
    .tiles .tile-img {
        top: 40px;
        right: 0;
    }
}

@media (max-width: 991px) {
    .tiles .tile-img {
        left: 30px;
        width: calc(100% - 60px);
    }
}

@media (max-width: 767px) {
    .tiles .tile-img {
        left: 15px;
        width: calc(100% - (15px * 2));
    }
}

.tiles .tile-img .img-block {
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-position: center;
    background-color: #eaf6fe;
    transition: 0.2s;
}

@media (min-width: 992px) {
    .tiles .tile-img .img-block {
        height: 370px;
    }
}

@media (max-width: 991px) {
    .tiles .tile-img .img-block {
        height: 300px;
    }
}

@media (min-width: 992px) {
    .tiles .tile-left .block {
        padding-right: 90px;
    }
}

@media (max-width: 991px) {
    .tiles .tile-left .tile-text {
        padding-top: 280px;
    }
}

@media (min-width: 992px) {
    .tiles .tile-right .block {
        padding-left: 90px;
        padding-right: 40px;
    }
}

@media (max-width: 991px) {
    .tiles .tile-right .tile-text {
        padding-top: 280px;
    }
}

@media (min-width: 992px) {
    .tiles .tile-right .category {
        float: right;
    }
}

@media (min-width: 992px) {
    .tiles .tile-right .tile-img {
        left: 0;
    }
}

@media (min-width: 768px) {
    .tiles-sm-img .tile-img {
        height: 200px;
        width: 200px;
    }
}

@media (max-width: 767px) {
    .tiles-sm-img .tile-img {
        height: 150px;
        width: 150px;
    }
}

@media (min-width: 480px) {
    .tiles-sm-img .tile-img {
        left: 15px;
    }
}

@media (max-width: 991px) {
    .tiles-sm-img .tile-img {
        top: 30px;
    }
}

@media (max-width: 767px) and (min-width: 480px) {
    .tiles-sm-img .tile-img {
        top: 15px;
    }
}

@media (max-width: 479px) {
    .tiles-sm-img .tile-img {
        top: 0;
        left: calc(50% - 75px);
    }
}

.tiles-sm-img .tile-img .img-block {
    height: 100%;
    width: 100%;
}

@media (min-width: 480px) {
    .tiles-sm-img .tile-text {
        margin-left: 135px;
    }

    .tiles-sm-img .tile-text .block {
        padding-left: 100px;
    }
}

@media (max-width: 479px) {
    .tiles-sm-img .tile-text {
        padding-top: 130px;
    }
}

.tiles-sm-img .tile-text .block {
    min-height: auto;
}

@media (min-width: 480px) and (max-width: 767px) {
    .tiles-sm-img .tile-text .block {
        padding-left: 35px;
    }
}

.tiles-sm .tile-text .block {
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
    .tiles-sm .tile-text .block {
        height: 320px;
        margin-bottom: 40px;
    }
}

@media (max-width: 991px) {
    .tiles-stacked .tile-text {
        padding-top: 280px;
    }
}

@media (min-width: 992px) {
    .tiles-stacked .tile-text {
        padding-top: 240px;
    }
}

.tiles-stacked .tile-text .block {
    min-height: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .tiles-stacked .tile-text .block {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 992px) {
    .tiles-stacked .tile-text .block {
        padding-bottom: 70px;
    }

    .tiles-stacked .tile-text .read-more {
        position: absolute;
        bottom: 20px;
        right: 20px;
    }

    .tiles-stacked .tile-text p:first-of-type {
        margin-top: 10px;
    }
}

@media (min-width: 1200px) {
    .tiles-stacked .tile-text .block {
        padding-bottom: 80px;
    }

    .tiles-stacked .tile-text .read-more {
        bottom: 30px;
        right: 40px;
    }
}

.tiles-stacked .tile-text .category {
    position: absolute;
    z-index: 3;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

@media (min-width: 992px) {
    .tiles-stacked .tile-text .category + .tile-title {
        margin-top: 30px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .tiles-stacked .tile-text .tile-title {
        font-size: 1.5em;
    }
}

@media (min-width: 1200px) {
    .tiles-stacked .tile-text .tile-title {
        font-size: 1.625em;
    }
}

.tiles-stacked .tile-img {
    top: 0;
}

@media (max-width: 991px) {
    .tiles-stacked .tile-img {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (min-width: 992px) {
    .tiles-stacked .tile-img {
        left: 30px;
        width: calc(100% - 60px);
    }

    .tiles-stacked .tile-img .img-block {
        height: 260px;
    }
}

@media (min-width: 1200px) {
    .tiles-stacked .tile-img {
        left: 45px;
        width: calc(100% - 90px);
    }
}

@media (min-width: 768px) {
    .tiles-stacked .tile-row, .tiles-stacked-2col .tile-row {
        align-items: stretch;
        -webkit-align-items: stretch;
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
    }

    .tiles-stacked .tile-row::before, .tiles-stacked .tile-row::after, .tiles-stacked-2col .tile-row::before, .tiles-stacked-2col .tile-row::after {
        content: normal;
    }

    .tiles-stacked .tile-row,
    .tiles-stacked .tile-group,
    .tiles-stacked .tile-text, .tiles-stacked-2col .tile-row,
    .tiles-stacked-2col .tile-group,
    .tiles-stacked-2col .tile-text {
        display: -moz-box;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .tiles-stacked-2col .tile-text .block {
        padding-bottom: 70px;
    }

    .tiles-stacked-2col .tile-text .tile-title {
        font-size: 1.5em;
    }

    .tiles-stacked-2col .read-more {
        position: absolute;
        bottom: 20px;
        right: 30px;
    }
}

.tiles-featured {
    position: relative;
    padding: 80px 0;
}

@media (min-width: 992px) {
    .tiles-featured:first-of-type {
        padding-top: 180px;
    }
}

@media (max-width: 991px) {
    .tiles-featured {
        padding-top: 330px;
        padding-bottom: 0;
    }
}

@media (max-width: 479px) {
    .tiles-featured {
        padding-top: 250px;
    }
}

.tiles-featured .tile-img {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.75;
}

@media (max-width: 991px) {
    .tiles-featured .tile-img {
        height: 350px;
    }
}

@media (max-width: 479px) {
    .tiles-featured .tile-img {
        height: 270px;
    }
}

.tiles-featured .tile-text .block {
    height: auto;
    min-height: auto;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .tiles-featured .tile-text .category {
        top: -20px;
    }

    .tiles-featured .tile-text .category + .tile-title {
        margin-top: 30px;
    }
}

@media (max-width: 479px) {
    .tiles-featured .tile-text .category + .tile-title {
        margin-top: 0;
    }
}

.tiles-featured .tile-group {
    z-index: 2;
}

/*## TABS ##*/
.tab-box {
    padding: 20px 40px 40px;
    border-radius: 3px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .tab-box {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .tab-box {
        padding: 15px;
    }
}

.tab-controls {
    border-bottom: solid 2px #0051a5;
    overflow-x: auto;
    margin-bottom: 40px;
}

.tab-controls .nav-tabs {
    white-space: nowrap;
}

.nav-tabs {
    margin-bottom: 0 !important;
    border-bottom: 0;
    font-family: "Roboto Condensed", Arial, sans-serif;
}

.nav-tabs > li {
    margin-bottom: 0;
    float: none;
    display: inline-block;
}

.nav-tabs > li > a {
    margin-right: 0;
    padding: 15px;
    border-radius: 0;
    border: 0;
    background: transparent;
    color: #585858;
}

.nav-tabs > li > a:hover {
    background-color: #eaf6fe;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
    border: 0;
    background-color: #eaf6fe;
    color: #0051a5;
}

.nav-tabs.tabs-secondary {
    position: relative;
    top: -40px;
    background-color: #eaf6fe;
}

.nav-tabs.tabs-secondary > li > a {
    padding: 10px 15px;
    font-size: 0.875em;
}

.nav-tabs.tabs-secondary > li > a:hover {
    background-color: #bfe2fc;
}

.nav-tabs.tabs-secondary > li.active > a, .nav-tabs.tabs-secondary > li.active > a:focus, .nav-tabs.tabs-secondary > li.active > a:hover {
    background-color: #bfe2fc;
}

/*## FILTERS ##*/
.filter .intro-block {
    padding-bottom: 20px;
}

@media (max-width: 991px) {
    .filter .intro-block {
        padding-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .filter .intro-block {
        padding-bottom: 0;
    }
}

.filter .filter-col {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .filter .filter-col {
        margin-bottom: 15px;
    }
}

.filter .tab-controls {
    margin-bottom: 20px;
}

.filter .nav-tabs {
    font-family: "Roboto", Arial, sans-serif;
}

.filter .nav-tabs > li > a {
    padding: 10px 15px;
    color: #444444;
}

.filter .nav-tabs > li.active > a {
    color: #005c63;
}

/*## ACCORDIONS / COLLAPSE ##*/
.collapse-group .collapse-header {
    position: relative;
    padding-right: 20px;
    display: block;
}

.collapse-group .collapse-header::after, .collapse-group .collapse-header::before {
    content: '';
    position: absolute;
    top: 15px;
    width: 10px;
    height: 2px;
    background-color: #0051a5;
}

.collapse-group .collapse-header::after {
    right: 0;
}

.collapse-group .collapse-header::before {
    right: 0;
    transition: opacity 0.4s 0.1s;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
}

.collapse-group .collapse-header:not(.collapsed)::before {
    opacity: 0;
}

/*## MODALS ##*/
.modal-icon {
    text-align: center;
    display: block;
}

.modal-icon::before {
    font-size: 2em;
    font-family: "Black Tie";
}

.modal-content {
    padding: 50px 40px 40px;
    border: none;
    border-radius: 3px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 2px 1px -1px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
    .modal-content {
        padding: 50px 30px 30px;
    }
}

@media (max-width: 767px) {
    .modal-content {
        padding: 50px 15px 20px;
    }
}

@media (min-width: 768px) {
    .modal-content {
        box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
    }
}

.modal-text {
    padding-left: 50px;
    position: relative;
}

.modal-text::before {
    position: absolute;
    top: -5px;
    left: 0;
    font-size: 1.5em;
    font-family: "Black Tie";
}

.modal-text p {
    font-family: "Roboto Condensed", Arial, sans-serif;
}

.modal-danger h2, .modal-danger h3, .modal-danger h4, .modal-danger h5, .modal-danger h6,
.modal-danger .header-2, .modal-danger .header-3, .modal-danger .header-4, .modal-danger .header-5, .modal-danger .header-6,
.modal-danger .icon {
    color: #9c1f01;
}

.modal-danger .modal-text::before {
    content: "";
    color: #9c1f01;
}

.modal-success h2, .modal-success h3, .modal-success h4, .modal-success h5, .modal-success h6,
.modal-success .header-2, .modal-success .header-3, .modal-success .header-4, .modal-success .header-5, .modal-success .header-6,
.modal-success .icon {
    color: #355d14;
}

.modal-success .modal-text::before {
    content: "";
    color: #355d14;
}

.modal-warning h2, .modal-warning h3, .modal-warning h4, .modal-warning h5, .modal-warning h6,
.modal-warning .header-2, .modal-warning .header-3, .modal-warning .header-4, .modal-warning .header-5, .modal-warning .header-6,
.modal-warning .icon {
    color: #7f4907;
}

.modal-warning .modal-text::before {
    content: "";
    color: #7f4907;
}

.modal-info h2, .modal-info h3, .modal-info h4, .modal-info h5, .modal-info h6,
.modal-info .header-2, .modal-info .header-3, .modal-info .header-4, .modal-info .header-5, .modal-info .header-6,
.modal-info .icon {
    color: #0051a5;
}

.modal-info .modal-text::before {
    content: "";
    color: #0051a5;
}

.modal-backdrop.in {
    opacity: 0.8;
}

.alert {
    position: relative;
    padding: 20px;
    padding-left: 70px;
    border-radius: 3px;
    border: none;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    font-family: "Roboto Condensed", Arial, sans-serif;
    color: #444444;
    overflow: hidden;
    transition-orgin: top left;
    transition: transform 0.35s cubic-bezier(0, 0.51, 0.31, 1.51);
}

.alert::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50px;
    padding: 20px 0;
    color: #ffffff;
    font-family: "Black Tie";
    font-size: 1em;
    text-align: center;
}

.alert .alert-header {
    margin-bottom: 0;
    font-family: "Roboto Condensed", Arial, sans-serif;
}

.alert p:last-of-type {
    margin-bottom: 0;
}

.alert-danger::before {
    content: "";
    background-color: #9c1f01;
}

.alert-danger .alert-header,
.alert-danger .alert-link {
    color: #9c1f01;
}

.alert-success::before {
    content: "";
    background-color: #355d14;
}

.alert-success .alert-header,
.alert-success .alert-link {
    color: #355d14;
}

.alert-warning::before {
    content: "";
    background-color: #7f4907;
}

.alert-warning .alert-header,
.alert-warning .alert-link {
    color: #7f4907;
}

.alert-info::before {
    content: "";
    background-color: #0051a5;
}

.alert-info .alert-header,
.alert-info .alert-link {
    color: #0051a5;
}

.alert-primary::before {
    content: "";
    background-color: #005c63;
}

.alert-primary .alert-header,
.alert-primary .alert-link {
    color: #005c63;
}

.alert-toast {
    opacity: 0;
    -webkit-animation: opacityDown 0.4s ease-in-out 1s forwards;
    animation: opacityDown 0.4s ease-in-out 1s forwards;
}

.chart {
    min-height: 300px;
}

@media (max-width: 991px) {
    .chart {
        min-height: 250px;
    }
}

@media (max-width: 479px) {
    .chart {
        min-height: 350px;
    }
}

.chart-vert {
    min-height: 500px;
}

@media (max-width: 479px) {
    .chart-vert {
        min-height: 350px;
    }
}

.chart-small {
    min-height: 250px;
}

@media (max-width: 479px) {
    .chart-small {
        min-height: 350px;
    }
}

@media (min-width: 768px) {
    .chart-stack-sm {
        min-height: 350px;
    }
}

.chart-legend-nodot .highcharts-legend-item .highcharts-point {
    display: none;
}

.chart-legend {
    font-family: "Roboto Condensed", Arial, sans-serif;
}

.chart-legend > li {
    position: relative;
    padding: 2px 0;
    padding-left: 20px;
}

.chart-legend > li .circle {
    position: absolute;
    left: 0;
    top: 10px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
}

.chart-legend > li .item {
    max-width: calc(100% - 50px);
    display: inline-block;
}

.chart-legend > li .percent {
    float: right;
    text-align: right;
}

.legend-circle {
    margin-right: 10px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: inline-block;
}

#map {
    width: 100%;
}

@media (min-width: 992px) {
    #map {
        height: 360px;
    }
}

@media (min-width: 1200px) {
    #map {
        height: 380px;
    }
}

#map .country {
    stroke: #ffffff;
    stroke-width: 0.5px;
    fill: #c4c8cc;
    transition: 0.2s;
}

@media (min-width: 768px) {
    #map .region.showing.f-sun .country {
        fill: #fca311;
        opacity: 0.5;
    }

    #map .region.showing.f-sun:hover .country {
        opacity: 1;
    }

    #map .region.showing.f-teal .country {
        fill: #00aeb5;
        opacity: 0.5;
    }

    #map .region.showing.f-teal:hover .country {
        opacity: 1;
    }

    #map .region.showing.f-carbon .country {
        fill: #899299;
        opacity: 0.5;
    }

    #map .region.showing.f-carbon:hover .country {
        opacity: 1;
    }

    #map .region.showing.f-warm-red .country {
        fill: #f93f26;
        opacity: 0.5;
    }

    #map .region.showing.f-warm-red:hover .country {
        opacity: 1;
    }

    #map .region.showing.f-pear .country {
        fill: #d6ce49;
        opacity: 0.5;
    }

    #map .region.showing.f-pear:hover .country {
        opacity: 1;
    }

    #map .region.showing.f-sky .country {
        fill: #51b5e0;
        opacity: 0.5;
    }

    #map .region.showing.f-sky:hover .country {
        opacity: 1;
    }

    #map .region.showing.f-teal-dark .country {
        fill: #007077;
        opacity: 0.5;
    }

    #map .region.showing.f-teal-dark:hover .country {
        opacity: 1;
    }
}

@media (max-width: 767px) {
    #map .showing.f-sun .country {
        fill: #fca311;
    }

    #map .showing.f-teal .country {
        fill: #00aeb5;
    }

    #map .showing.f-carbon .country {
        fill: #899299;
    }

    #map .showing.f-warm-red .country {
        fill: #f93f26;
    }

    #map .showing.f-pear .country {
        fill: #d6ce49;
    }

    #map .showing.f-sky .country {
        fill: #51b5e0;
    }

    #map .showing.f-teal-dark .country {
        fill: #007077;
    }
}

/*## HOME PAGE ##*/
.home-page .sticky-wrapper {
    height: 200vh;
    min-height: 1500px;
}

.home-page .sticky-wrapper .sticky-container {
    height: 100vh;
}

@media (max-width: 479px) {
    .home-page .tiles-featured .tile-text .block {
        padding-top: 15px;
    }
}

.flipper-group {
    position: absolute;
    text-align: center;
    visibility: hidden;
}

.flipper-group.active {
    position: relative;
    visibility: visible;
}

.flipper-group.active .flipper-img {
    -webkit-animation-name: flipper;
    animation-name: flipper;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    transform: rotateY(-90deg);
    -webkit-transform: rotateY(-90deg);
    -ms-transform: rotateY(-90deg);
}

.flipper-group.active .flipper-text {
    -webkit-animation-name: fader;
    animation-name: fader;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
}

.flipper-group .icon-circle-large {
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.flipper-group .icon-circle-large .flipper-img {
    left: calc(50% - 60px);
    top: calc(50% - 60px);
}

@media (max-width: 767px) {
    .flipper-group .icon-circle-large .flipper-img {
        left: calc(50% - 42px);
        top: calc(50% - 42px);
    }
}

.flipper-img {
    transform: rotateY(-90deg);
    -webkit-transform: rotateY(-90deg);
    -ms-transform: rotateY(-90deg);
}

.flipper-text {
    display: block;
    margin-bottom: 40px;
    color: #005c63;
    opacity: 0;
}

@-webkit-keyframes flipper {
    0% {
        transform: rotateY(-90deg);
        -webkit-transform: rotateY(-90deg);
        -ms-transform: rotateY(-90deg);
    }
    10%, 90% {
        transform: rotateY(0deg);
        -webkit-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(90deg);
        -webkit-transform: rotateY(90deg);
        -ms-transform: rotateY(90deg);
    }
}

@keyframes flipper {
    0% {
        transform: rotateY(-90deg);
        -webkit-transform: rotateY(-90deg);
        -ms-transform: rotateY(-90deg);
    }
    10%, 90% {
        transform: rotateY(0deg);
        -webkit-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(90deg);
        -webkit-transform: rotateY(90deg);
        -ms-transform: rotateY(90deg);
    }
}

@-webkit-keyframes fader {
    0%, 100% {
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
}

@keyframes fader {
    0%, 100% {
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
}

/*## CHAT BUBBLE COMPONENTS ##*/
@media (max-width: 479px) {
    section.chat {
        font-size: 13px;
    }
}

section.chat .container {
    position: relative;
    margin-top: 200px;
}

@media (max-width: 991px) {
    section.chat .container {
        margin-top: 120px;
    }
}

@media (max-width: 479px) {
    section.chat .container {
        margin-top: 70px;
    }
}

section.chat .inactive-scale {
    position: absolute;
    transition: 0s;
}

section.chat .inactive-scale.active {
    position: relative;
    transition: transform 0.35s cubic-bezier(0, 0.51, 0.31, 1.51);
}

section.chat .footnote {
    margin-bottom: 20px;
    font-size: 0.875em;
}

section.chat .footnote:last-child {
    margin-bottom: 0;
}

section.chat .form-container-range-left-icon {
    margin-left: 40px;
}

section.chat .form-container-range-left-icon .icon {
    position: absolute;
    left: -40px;
    font-size: 1.5em;
    color: #0051a5;
}

section.chat .highlight-box, section.chat .intro-box .intro-block, .intro-box section.chat .intro-block {
    margin-bottom: 20px;
}

section.chat .highlight-box > .row, section.chat .intro-box .intro-block > .row, .intro-box section.chat .intro-block > .row {
    margin-bottom: 40px;
}

section.chat .highlight-box > .row:last-child, section.chat .intro-box .intro-block > .row:last-child, .intro-box section.chat .intro-block > .row:last-child {
    margin-bottom: 0;
}

section.chat .chat-group {
    transition: opacity 0.4s;
}

section.chat .inactive {
    opacity: 0.2;
}

section.chat .inactive:hover {
    opacity: 1;
}

section.chat .bubble-left {
    position: absolute;
    transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    height: 0;
}

section.chat .bubble-left.active {
    position: relative;
    height: auto;
    transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
}

section.chat .bubble-group {
    position: relative;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.4s;
}

section.chat .bubble-group.active {
    height: auto;
    opacity: 1;
    overflow: visible;
}

@media (min-width: 992px) {
    section.chat .bubble-group label.bubble-right,
    section.chat .bubble-group a .bubble-right {
        max-width: 245px;
        text-align: center;
    }
}

section.chat .bubble-selection, section.chat .bubble-selection-multi, section.chat .bubble-selection-multi-small, section.chat .bubble-selection-input {
    position: relative;
    text-align: right;
}

@media (min-width: 480px) {
    section.chat .bubble-selection, section.chat .bubble-selection-multi, section.chat .bubble-selection-multi-small, section.chat .bubble-selection-input {
        float: right;
    }
}

section.chat .bubble-selection .bubble, section.chat .bubble-selection-multi .bubble, section.chat .bubble-selection-multi-small .bubble, section.chat .bubble-selection-input .bubble {
    margin-left: 20px;
}

@media (max-width: 479px) {
    section.chat .bubble-selection .bubble, section.chat .bubble-selection-multi .bubble, section.chat .bubble-selection-multi-small .bubble, section.chat .bubble-selection-input .bubble {
        margin-left: 15px;
    }
}

section.chat .bubble-selection .bubble-right:first-of-type, section.chat .bubble-selection-multi .bubble-right:first-of-type, section.chat .bubble-selection-multi-small .bubble-right:first-of-type, section.chat .bubble-selection-input .bubble-right:first-of-type {
    margin-left: 0;
}

@media (min-width: 992px) {
    section.chat .bubble-selection .bubble-button, section.chat .bubble-selection-multi .bubble-button, section.chat .bubble-selection-multi-small .bubble-button, section.chat .bubble-selection-input .bubble-button {
        bottom: 20px;
    }
}

@media (max-width: 479px) {
    section.chat .bubble-selection-input .bubble-right {
        margin-left: 0;
    }
}

@media (min-width: 992px) {
    section.chat .bubble-selection-lg label.bubble-right {
        max-width: 300px;
    }

    section.chat .bubble-selection-lg label.bubble-right:first-of-type {
        margin-left: 0;
    }
}

section.chat .bubble-group-footnote .footnote {
    font-weight: 400;
}

@media (min-width: 992px) {
    section.chat .bubble-group-footnote {
        margin-bottom: 40px;
    }

    section.chat .bubble-group-footnote .footnote {
        position: absolute;
        bottom: -40px;
        right: 0;
    }
}

section.chat .bubble-selection input[type=radio] + label {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 1.125em;
}

@media (max-width: 991px) {
    section.chat .bubble-description-container {
        position: fixed;
        z-index: 200;
        width: 100%;
        top: 0;
        left: 0;
        height: 0;
        background-color: rgba(255, 255, 255, 0.8);
        overflow: hidden;
        opacity: 0;
        transition: opacity 0.2s, transform 0s 0.2s, visibility 0s 0.2s, max-height 0s 0.2s, height 0s 0.2s;
    }

    section.chat .bubble-description-container.active {
        position: fixed;
        height: 100%;
        opacity: 1;
        transition: opacity 0.4s;
    }

    section.chat .bubble-description-container .bubble {
        position: absolute;
        top: 50%;
        left: 50%;
        width: calc(100% - 30px);
        max-width: 500px;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }

    section.chat .bubble-description-container .bubble::after {
        content: '\F00C';
        position: absolute;
        top: -10px;
        right: -10px;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
        background-color: #0051a5;
        font-size: 0.75em;
        line-height: 25px;
        text-align: center;
        font-family: "Black Tie";
        color: #ffffff;
        pointer-events: none;
    }
}

@media (max-width: 991px) {
    section.chat .bubble-lg {
        margin-bottom: 110px;
    }

    section.chat .bubble-lg .bubble-button {
        position: absolute;
        bottom: -110px;
        right: 0;
    }
}

@media (max-width: 767px) {
    section.chat .bubble-lg {
        margin-bottom: 95px;
    }

    section.chat .bubble-lg .bubble-button {
        bottom: -95px;
    }
}

@media (max-width: 479px) {
    section.chat .bubble-lg {
        margin-bottom: 80px;
    }

    section.chat .bubble-lg .bubble-button {
        bottom: -80px;
    }
}

@media (min-width: 992px) {
    section.chat .bubble-button {
        position: absolute;
        bottom: 0;
        left: 100%;
        margin-bottom: 0;
        border-bottom-left-radius: 3px;
    }
}

section.chat .bubble-button[disabled]:hover {
    background-color: #c4c8cc;
}

section.chat .bubble-button:hover {
    background-color: #003168;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    section.chat textarea,
    section.chat input {
        font-size: 16px;
    }
}

section.chat .robo-avatar {
    position: absolute;
    z-index: 3;
    left: -60px;
    top: 50px;
}

@media (max-width: 991px) {
    section.chat .robo-avatar {
        left: -20px;
    }
}

@media (max-width: 479px) {
    section.chat .robo-avatar {
        left: -10px;
    }
}

section.chat .ani-bloop,
section.chat .ani-fade {
    position: relative;
    height: auto;
}

.chat-closed .chat-wrapper {
    -webkit-overflow-scrolling: auto;
}

.chat-wrapper {
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 992px) {
    .chat-wrapper .container {
        padding-right: 50px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .chat-wrapper .container {
        padding-left: 70px;
    }
}

@media (max-width: 991px) {
    .chat-wrapper .container {
        padding-left: 50px;
    }
}

@media (max-width: 479px) {
    .chat-wrapper .container {
        padding-left: 30px;
    }
}

.bubble .icon-float, .robo-avatar + .icon-float {
    top: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
    font-size: 0.75em;
    line-height: 25px;
    text-align: center;
}

@media (max-width: 479px) {
    .bubble .icon-float, .robo-avatar + .icon-float {
        width: 20px;
        height: 20px;
        line-height: 20px;
    }
}

#chat .chat-wrapper {
    min-height: 100vh;
}

#chat .container {
    padding-bottom: 60vh;
}

@media (max-width: 991px) {
    #chat .container {
        padding-bottom: 70vh;
    }
}

@media (max-width: 479px) {
    #chat .container {
        padding-bottom: 60vh;
    }
}

.bubble {
    width: auto;
    max-width: 670px;
    margin-bottom: 20px;
    padding: 20px 40px;
    border-radius: 25px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
    font-weight: 400;
    line-height: 1.556em;
    position: relative;
    clear: both;
}

@media (max-width: 991px) {
    .bubble {
        padding: 20px 40px;
    }
}

@media (max-width: 767px) {
    .bubble {
        padding: 15px 30px;
    }
}

@media (max-width: 479px) {
    .bubble {
        border-radius: 15px;
        margin-bottom: 15px;
    }
}

.bubble:hover .icon-float {
    transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
}

.bubble p {
    margin-bottom: 0;
    font-size: 1.125em;
    line-height: 1.556em;
}

.bubble p a {
    border-bottom: none;
}

.bubble .footnote {
    font-weight: 400;
}

.bubble label {
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 400;
}

.bubble label small {
    margin-left: 1em;
    color: #c4c8cc;
}

.bubble .icon-float {
    background-color: #ffffff;
    color: #0051a5;
    transition: 0.2s;
}

@media (min-width: 992px) {
    .bubble .icon-float {
        transform: scale(0);
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
    }
}

.bubble .bubble-input {
    height: auto;
    border: none;
    padding: 0;
}

.bubble .bubble-input:focus {
    box-shadow: none;
}

.bubble ::-webkit-input-placeholder {
    color: #585858;
}

.bubble ::-ms-input-placeholder {
    color: #585858;
}

.bubble ::-moz-input-placeholder {
    color: #585858;
}

.bubble-main {
    background-color: #005c63;
    font-weight: 300;
    clear: both;
}

.bubble-main h1, .bubble-main p {
    font-size: 1.375em;
    line-height: 1.5em;
    color: #ffffff;
}

.bubble-main .list-inline {
    margin-top: 40px;
}

.bubble-left {
    border-bottom-left-radius: 3px;
    background-color: #005c63;
    color: #ffffff;
    float: left;
    transform-origin: bottom left;
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transition: transform 0.35s cubic-bezier(0, 0.51, 0.31, 1.51);
}

.bubble-left p {
    line-height: 1.556em;
}

.bubble-left a {
    color: #bfebec;
}

.bubble-left a:hover {
    color: #e5f7f7;
}

.bubble-right {
    border-bottom-right-radius: 3px;
    background-color: #ffffff;
    color: #444444;
    float: right;
    transform-origin: bottom right;
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    display: inline-block;
}

.bubble-lg {
    max-width: none;
    width: 100%;
}

.bubble-sm, .bubble-sm-right, .progress-container .step, .bubble-sm-left, .bubble-selection-lg .graph-text {
    max-width: 175px;
    width: auto;
    padding: 7px 15px;
    border-radius: 15px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    color: #0051a5;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 0.875em;
    line-height: 1.25em;
    letter-spacing: 0.03em;
    display: inline-block;
    transition: 0.4s cubic-bezier(0, 0.51, 0.31, 1.51);
}

.bubble-sm-right, .progress-container .step {
    border-bottom-right-radius: 3px;
}

.bubble-sm-left {
    border-bottom-left-radius: 3px;
}

.bubble-sm p, .bubble-sm-right p, .progress-container .step p, .bubble-sm-left p, .bubble-selection-lg .graph-text p {
    font-size: 1em;
}

@media (min-width: 992px) {
    .bubble-selection .bubble, .bubble-selection-multi .bubble, .bubble-selection-multi-small .bubble {
        cursor: pointer;
        transition: 0.3s;
    }

    .bubble-selection .bubble:hover, .bubble-selection-multi .bubble:hover, .bubble-selection-multi-small .bubble:hover {
        background-color: #bfe2fc;
    }
}

.bubble-selection input[type=radio],
.bubble-selection input[type=checkbox], .bubble-selection-multi input[type=radio],
.bubble-selection-multi input[type=checkbox], .bubble-selection-multi-small input[type=radio],
.bubble-selection-multi-small input[type=checkbox] {
    position: absolute;
    left: -5000px;
}

.bubble-selection input[type=radio] + label::before,
.bubble-selection input[type=checkbox] + label::before, .bubble-selection-multi input[type=radio] + label::before,
.bubble-selection-multi input[type=checkbox] + label::before, .bubble-selection-multi-small input[type=radio] + label::before,
.bubble-selection-multi-small input[type=checkbox] + label::before {
    left: 10px;
}

.bubble-selection input[type=radio] + label::after,
.bubble-selection input[type=checkbox] + label::after, .bubble-selection-multi input[type=radio] + label::after,
.bubble-selection-multi input[type=checkbox] + label::after, .bubble-selection-multi-small input[type=radio] + label::after,
.bubble-selection-multi-small input[type=checkbox] + label::after {
    left: 13px;
}

.bubble-selection input[type=radio]:checked + label,
.bubble-selection input[type=checkbox]:checked + label, .bubble-selection-multi input[type=radio]:checked + label,
.bubble-selection-multi input[type=checkbox]:checked + label, .bubble-selection-multi-small input[type=radio]:checked + label,
.bubble-selection-multi-small input[type=checkbox]:checked + label {
    background-color: #0051a5;
    color: #ffffff;
}

.bubble-selection input[type=radio]:checked + label a,
.bubble-selection input[type=checkbox]:checked + label a, .bubble-selection-multi input[type=radio]:checked + label a,
.bubble-selection-multi input[type=checkbox]:checked + label a, .bubble-selection-multi-small input[type=radio]:checked + label a,
.bubble-selection-multi-small input[type=checkbox]:checked + label a {
    color: rgba(255, 255, 255, 0.8);
}

.bubble-selection input[type=radio] + label, .bubble-selection-multi input[type=radio] + label, .bubble-selection-multi-small input[type=radio] + label {
    font-weight: 400;
}

.bubble-selection input[type=radio] + label::before, .bubble-selection input[type=radio] + label::after {
    display: none;
}

.bubble-selection-multi .bubble.bubble-carbon .icon {
    color: #899299;
}

.bubble-selection-multi .bubble.bubble-sun .icon {
    color: #fca311;
}

.bubble-selection-multi .bubble.bubble-apple .icon {
    color: #aaba0a;
}

@media (min-width: 992px) {
    .bubble-selection-multi .bubble.bubble-carbon:hover {
        background-color: #e9eaec;
    }

    .bubble-selection-multi .bubble.bubble-sun:hover {
        background-color: #fee8c3;
    }

    .bubble-selection-multi .bubble.bubble-apple:hover {
        background-color: #eaeec2;
    }
}

.bubble-selection-multi .bubble p {
    font-size: 1em;
    line-height: 1.25em;
}

.bubble-selection-multi input[type=radio]:checked + label .icon,
.bubble-selection-multi input[type=checkbox]:checked + label .icon {
    color: #ffffff;
}

.bubble-selection-multi input[type=radio]:checked + label.bubble-carbon,
.bubble-selection-multi input[type=checkbox]:checked + label.bubble-carbon {
    background-color: #899299;
}

.bubble-selection-multi input[type=radio]:checked + label.bubble-sun,
.bubble-selection-multi input[type=checkbox]:checked + label.bubble-sun {
    background-color: #fca311;
}

.bubble-selection-multi input[type=radio]:checked + label.bubble-apple,
.bubble-selection-multi input[type=checkbox]:checked + label.bubble-apple {
    background-color: #aaba0a;
}

.bubble-selection-lg .bubble:not(.bubble-button) {
    flex-grow: 1;
    -webkit-flex-grow: 1;
    padding: 20px 40px;
    width: 33%;
    height: auto;
}

@media (max-width: 991px) {
    .bubble-selection-lg .bubble:not(.bubble-button) {
        padding: 20px 40px;
    }
}

@media (max-width: 767px) {
    .bubble-selection-lg .bubble:not(.bubble-button) {
        padding: 20px;
    }
}

.bubble-selection-lg .bubble:not(.bubble-button) p {
    font-weight: 300;
    line-height: 1.556em;
}

.bubble-selection-lg .bubble:not(.bubble-button) .header {
    margin-bottom: 10px;
    font-weight: 400;
}

@media (max-width: 991px) {
    .bubble-selection-lg .bubble:not(.bubble-button) {
        margin-left: 0 !important;
        width: 100%;
    }
}

@media (max-width: 991px) and (min-width: 480px) {
    .bubble-selection-lg .bubble:not(.bubble-button) {
        padding-left: 50%;
        text-align: left;
    }
}

@media (min-width: 992px) {
    .bubble-selection-lg .bubble:hover .graph-pie-img::after {
        background-color: #bfe2fc;
    }
}

.bubble-selection-lg .graph {
    position: relative;
    margin: 20px 0;
    display: inline-block;
}

@media (max-width: 991px) and (min-width: 480px) {
    .bubble-selection-lg .graph {
        position: absolute;
        left: 40px;
        top: 50%;
        margin: 0;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
    }
}

.bubble-selection-lg .graph-line {
    text-align: center;
    width: 100%;
}

.bubble-selection-lg .graph-line .graph-text {
    right: 10px;
    top: -25px;
    border-bottom-right-radius: 3px;
}

@media (min-width: 992px) {
    .bubble-selection-lg .graph-line {
        min-height: 80px;
        margin-top: 40px;
    }

    .bubble-selection-lg .graph-line .graph-text {
        right: 10px;
        top: 0px;
    }

    .bubble-selection-lg .graph-line .graph-text-high {
        top: -10px;
    }
}

@media (min-width: 1200px) {
    .bubble-selection-lg .graph-line .graph-text {
        right: 20px;
        top: -12px;
    }

    .bubble-selection-lg .graph-line .graph-text-high {
        top: -32px;
    }
}

@media (max-width: 991px) and (min-width: 480px) {
    .bubble-selection-lg .graph-line {
        width: calc(50% - 80px);
        text-align: right;
    }
}

@media (max-width: 479px) {
    .bubble-selection-lg .graph-line {
        min-height: 75px;
    }

    .bubble-selection-lg .graph-line .graph-text {
        right: 45px;
        top: -15px;
    }

    .bubble-selection-lg .graph-line .graph-text-high {
        top: -35px;
    }
}

.bubble-selection-lg .graph-text {
    position: absolute;
    z-index: 2;
}

.bubble-selection-lg .graph-line-img {
    width: 100%;
    max-width: 200px;
    color: #003168;
}

@media (min-width: 992px), (max-width: 479px) {
    .bubble-selection-lg .graph-line-img {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }
}

.bubble-selection-lg .graph-svg-text {
    fill: #444444;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 300;
    font-size: 11px;
}

.bubble-selection-lg .graph-pie-img::after {
    transition: 0.3s;
}

@media (max-width: 991px) and (min-width: 480px) {
    .bubble-selection-lg .graph-pie {
        left: 25%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }
}

.bubble-selection-lg input[type=checkbox]:checked + label .graph-pie-img,
.bubble-selection-lg input[type=radio]:checked + label .graph-pie-img {
    background-color: #ffffff;
}

.bubble-selection-lg input[type=checkbox]:checked + label .graph-pie-img::before,
.bubble-selection-lg input[type=radio]:checked + label .graph-pie-img::before {
    background-color: #bfe2fc;
}

.bubble-selection-lg input[type=checkbox]:checked + label .graph-pie-img::after,
.bubble-selection-lg input[type=radio]:checked + label .graph-pie-img::after {
    background-color: #0051a5;
}

.bubble-selection-lg input[type=checkbox]:checked + label .graph-pie-img.graph-pie-75,
.bubble-selection-lg input[type=radio]:checked + label .graph-pie-img.graph-pie-75 {
    background-color: #bfe2fc;
}

.bubble-selection-lg input[type=checkbox]:checked + label .graph-pie-img.graph-pie-75::before,
.bubble-selection-lg input[type=radio]:checked + label .graph-pie-img.graph-pie-75::before {
    background-color: #ffffff;
}

.bubble-selection-lg input[type=checkbox]:checked + label .graph-line-img,
.bubble-selection-lg input[type=radio]:checked + label .graph-line-img {
    color: #bfe2fc;
}

.bubble-selection-lg input[type=checkbox]:checked + label .graph-svg-text,
.bubble-selection-lg input[type=radio]:checked + label .graph-svg-text {
    fill: #ffffff;
}

@media (min-width: 992px) {
    .bubble-selection-lg .selection-scroll-container {
        display: -moz-box;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        align-items: stretch;
        -webkit-align-items: stretch;
    }
}

@media (max-width: 479px) {
    .bubble-selection-lg .selection-scroll-container {
        position: relative;
        left: -30px;
        width: calc(100% + 45px);
        overflow-x: auto;
        display: -moz-box;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: nowrap;
        -webkit-flex-wrap: nowrap;
        align-items: stretch;
        -webkit-align-items: stretch;
        -webkit-overflow-scrolling: touch;
    }

    .bubble-selection-lg .selection-scroll-container .bubble:first-of-type {
        margin-left: 30px !important;
    }

    .bubble-selection-lg .selection-scroll-container .bubble:last-of-type {
        margin-right: 20px;
    }

    .bubble-selection-lg .selection-scroll-indicators {
        position: absolute;
        left: calc(50% - 20px);
    }

    .bubble-selection-lg .selection-scroll-indicators .indicator {
        position: absolute;
        height: 2px;
        width: 15px;
        background-color: #46acf5;
    }

    .bubble-selection-lg .selection-scroll-indicators .indicator:nth-child(2) {
        left: 20px;
    }

    .bubble-selection-lg .selection-scroll-indicators .indicator:nth-child(3) {
        left: 40px;
    }

    .bubble-selection-lg .bubble {
        flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        max-width: 70%;
        margin-right: 10px;
    }
}

.bubble-selection-multi input[type=checkbox] + label,
.bubble-selection-multi input[type=radio] + label, .bubble-selection-multi-small input[type=checkbox] + label,
.bubble-selection-multi-small input[type=radio] + label {
    font-weight: 400;
}

.bubble-selection-multi input[type=checkbox]:checked + label::before,
.bubble-selection-multi input[type=radio]:checked + label::before, .bubble-selection-multi-small input[type=checkbox]:checked + label::before,
.bubble-selection-multi-small input[type=radio]:checked + label::before {
    border-color: #eaf6fe;
    background-color: transparent;
}

.bubble-selection-multi input[type=checkbox]:checked + label::after,
.bubble-selection-multi input[type=radio]:checked + label::after, .bubble-selection-multi-small input[type=checkbox]:checked + label::after,
.bubble-selection-multi-small input[type=radio]:checked + label::after {
    opacity: 1;
}

.bubble-selection-multi .bubble-sm, .bubble-selection-multi .bubble-sm-right, .bubble-selection-multi .progress-container .step, .progress-container .bubble-selection-multi .step, .bubble-selection-multi .bubble-sm-left, .bubble-selection-multi .bubble-selection-lg .graph-text, .bubble-selection-lg .bubble-selection-multi .graph-text, .bubble-selection-multi-small .bubble-sm, .bubble-selection-multi-small .bubble-sm-right, .bubble-selection-multi-small .progress-container .step, .progress-container .bubble-selection-multi-small .step, .bubble-selection-multi-small .bubble-sm-left, .bubble-selection-multi-small .bubble-selection-lg .graph-text, .bubble-selection-lg .bubble-selection-multi-small .graph-text {
    max-width: none;
    padding-right: 30px;
}

.bubble-selection-multi .bubble-sm::before, .bubble-selection-multi .bubble-sm-right::before, .bubble-selection-multi .progress-container .step::before, .progress-container .bubble-selection-multi .step::before, .bubble-selection-multi .bubble-sm-left::before, .bubble-selection-multi .bubble-selection-lg .graph-text::before, .bubble-selection-lg .bubble-selection-multi .graph-text::before, .bubble-selection-multi .bubble-sm::after, .bubble-selection-multi .bubble-sm-right::after, .bubble-selection-multi .progress-container .step::after, .progress-container .bubble-selection-multi .step::after, .bubble-selection-multi .bubble-sm-left::after, .bubble-selection-multi .bubble-selection-lg .graph-text::after, .bubble-selection-lg .bubble-selection-multi .graph-text::after, .bubble-selection-multi-small .bubble-sm::before, .bubble-selection-multi-small .bubble-sm-right::before, .bubble-selection-multi-small .progress-container .step::before, .progress-container .bubble-selection-multi-small .step::before, .bubble-selection-multi-small .bubble-sm-left::before, .bubble-selection-multi-small .bubble-selection-lg .graph-text::before, .bubble-selection-lg .bubble-selection-multi-small .graph-text::before, .bubble-selection-multi-small .bubble-sm::after, .bubble-selection-multi-small .bubble-sm-right::after, .bubble-selection-multi-small .progress-container .step::after, .progress-container .bubble-selection-multi-small .step::after, .bubble-selection-multi-small .bubble-sm-left::after, .bubble-selection-multi-small .bubble-selection-lg .graph-text::after, .bubble-selection-lg .bubble-selection-multi-small .graph-text::after {
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
}

.bubble-selection .bubble, .bubble-selection-multi .bubble, .bubble-selection-multi-small .bubble, .bubble-selection-input .bubble {
    float: none;
    margin-left: 0;
}

.bubble-selection-input .bubble-right {
    font-size: 1.125em;
}

@media (max-width: 479px) {
    .bubble-selection-input .bubble-right {
        width: 100%;
    }
}

.bubble-description {
    max-width: none;
    background-color: #ffffff;
}

.bubble-description p {
    font-size: 1em;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 300;
}

@media (max-width: 479px) {
    .bubble-description p {
        font-size: 1.125em;
    }
}

.bubble-button {
    margin-left: 20px;
    border: none;
    background-color: #0051a5;
    color: #ffffff;
    font-size: 1.125em;
    transition: 0.3s;
}

.bubble-button:hover, .bubble-button:focus {
    background-color: #003168;
    color: #ffffff;
}

.bubble-button:focus {
    outline: none;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.1), 0 6px 10px 0 rgba(0, 0, 0, 0.12), 0 1px 18px 0 rgba(0, 0, 0, 0.1);
}

.bubble-button[disabled], .bubble-button[disabled]:hover {
    box-shadow: none;
    background-color: #c4c8cc;
    opacity: 0.5;
    cursor: default;
}

.bubble-dot {
    margin: 0 2px;
    height: 13px;
    width: 13px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    line-height: 1.556em;
    display: inline-block;
    animation-name: bouncyBlink;
    -webkit-animation-name: bouncyBlink;
    animation-duration: 0.9s;
    -webkit-animation-duration: 0.9s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
}

.bubble-dot:nth-child(2) {
    animation-delay: 0.1s;
    -webkit-animation-delay: 0.1s;
}

.bubble-dot:nth-child(3) {
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
}

.bubble-dot-small {
    height: 8px;
    width: 8px;
}

@-webkit-keyframes bouncyBlink {
    0%, 45%, 100% {
        background-color: rgba(255, 255, 255, 0.7);
        transform: translateY(0);
    }
    25% {
        background-color: white;
        transform: translateY(-10px);
    }
    35% {
        background-color: rgba(255, 255, 255, 0.85);
        transform: translateY(5px);
    }
}

@keyframes bouncyBlink {
    0%, 45%, 100% {
        background-color: rgba(255, 255, 255, 0.7);
        transform: translateY(0);
    }
    25% {
        background-color: white;
        transform: translateY(-10px);
    }
    35% {
        background-color: rgba(255, 255, 255, 0.85);
        transform: translateY(5px);
    }
}

.progress-container {
    position: fixed;
    z-index: 109;
}

.progress-container .bar-container {
    height: calc(100vh - 220px);
    width: 5px;
    background-color: #ffffff;
}

.progress-container .bar-container .bar-fill {
    height: 0px;
    width: 100%;
    transition: height 0.55s cubic-bezier(0, 0.51, 0.31, 1.51);
}

@media (min-width: 992px) {
    .progress-container .bar-container {
        border-radius: 10px;
    }

    .progress-container .bar-container .bar-fill {
        border-radius: 0 0 10px 10px;
    }
}

.progress-container .step {
    position: absolute;
    min-width: 70px;
    right: 0;
    box-shadow: none;
    background: transparent;
    color: #003168;
    text-align: right;
}

.progress-container .step:nth-child(1) {
    top: 0%;
}

.progress-container .step:nth-child(2) {
    top: 19%;
}

.progress-container .step:nth-child(3) {
    top: 38%;
}

.progress-container .step:nth-child(4) {
    top: 57%;
}

.progress-container .step:nth-child(5) {
    top: 76%;
}

.progress-container .step:nth-child(6) {
    top: 95%;
}

.progress-container .step.active {
    right: 15px;
    width: auto;
    min-width: inherit;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .progress-container {
        top: 120px;
        right: 40px;
    }
}

@media (max-width: 991px) {
    .progress-container {
        top: 50px;
        left: 0;
    }

    .progress-container .bar-container {
        height: calc(100vh - 50px);
        width: 3px;
    }
}

.robo-avatar {
    height: 60px;
    width: 60px;
    border: solid 2px #005c63;
    border-radius: 100px 100px 3px 100px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #ffffff;
    overflow: hidden;
    color: #0051a5;
    transition: 1s;
}

.robo-avatar .avatar-img {
    width: 100%;
    max-width: 60px;
}

@media (max-width: 479px) {
    .robo-avatar {
        height: 45px;
        width: 45px;
        border-radius: 100px;
    }

    .robo-avatar .avatar-img {
        width: 100%;
        max-width: 42px;
    }
}

.robo-avatar + .icon-float {
    z-index: 12;
    top: 2px !important;
    right: 2px !important;
    background-color: #0051a5;
    color: #ffffff;
}

.chat-options {
    position: fixed;
    z-index: 109;
}

@media (min-width: 992px) {
    .chat-options {
        bottom: 30px;
        right: 25px;
    }

    .chat-options .bubble {
        border-bottom-right-radius: 3px;
        transform-origin: bottom right;
        -webkit-transform-origin: bottom right;
        -ms-transform-origin: bottom right;
        right: calc(100% + 10px);
    }
}

@media (max-width: 991px) {
    .chat-options {
        bottom: 15px;
        left: 15px;
    }

    .chat-options .bubble {
        border-bottom-left-radius: 3px;
        transform-origin: bottom left;
        -webkit-transform-origin: bottom left;
        -ms-transform-origin: bottom left;
        left: calc(100% + 10px);
    }
}

@media (max-width: 479px) {
    .chat-options {
        bottom: 7px;
        left: 10px;
    }
}

.chat-options .button-options::after {
    content: '?';
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 400;
    color: #ffffff;
}

.chat-options .bubble {
    position: absolute;
    top: -20px;
    margin-bottom: 0;
    max-width: none;
    white-space: nowrap;
    transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transition: transform 0.15s;
}

.chat-options .bubble:nth-child(2) {
    top: -70px;
}

.options-menu-open::after {
    z-index: 102;
    position: fixed;
    opacity: 1;
    visibility: visible;
}

.options-menu-open .chat-options .button-options::after {
    content: '\F00C';
    font-family: "Black Tie";
    font-size: 0.875em;
}

.options-menu-open .chat-options .bubble {
    transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transition: transform 0.4s cubic-bezier(0, 0.51, 0.31, 1.51);
}

.options-menu-open .chat-options .bubble:nth-child(2) {
    transition-delay: 0.3s;
}

.chat-edit-text {
    position: fixed;
    z-index: 30;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.chat-edit-text .icon {
    margin-left: 5px;
    font-size: 0.875em;
}

.chat-avatar-container {
    position: relative;
}

@media (min-width: 992px) {
    .chat-avatar-container {
        padding-left: 70px;
    }
}

@media (max-width: 991px) {
    .chat-avatar-container {
        padding-left: 50px;
    }
}

@media (max-width: 479px) {
    .chat-avatar-container {
        padding-left: 30px;
    }
}

.chat-avatar-container .robo-avatar {
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 20px;
}

/*## INSIGHTS / ARTICLE PAGE ##*/
.insights-page .tiles-featured {
    margin-bottom: 40px;
}

.insights-page .bt-stack .bt-table {
    top: 0.275em;
    font-size: 0.45em;
}

/*## FUND PAGES ##*/
.fund-page h2 {
    margin-bottom: 30px;
}

.fund-page h2 .category, .fund-page h3 .category, .fund-page h4 .category {
    box-shadow: none;
    background-color: #e5f7f7;
    color: #005c63;
}

.fund-page table.table > thead.no-border {
    border-bottom: none;
}

.fund-page table.table-holdings > tbody > tr:last-child {
    border-top: solid #585858 1px;
}

.fund-page .intro-box h4 {
    color: #005c63;
}

.personal-dashboard .steps-wrap {
    width: 100%;
    display: block;
    overflow: hidden;
}

.personal-dashboard .steps-wrap .steps {
    height: 0px;
    padding-bottom: 10px;
    position: absolute;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    visibility: hidden;
    opacity: 0;
    transition: opacity 2s;
    border-bottom: solid 2px #e9eaec;
}

.personal-dashboard .steps-wrap .steps.active {
    height: 100%;
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
}

.personal-dashboard .steps-wrap .goto-previous[data-gotostep="0"] {
    display: none;
}

@media (max-width: 479px) {
    .personal-dashboard .header-inline {
        display: block;
    }

    .personal-dashboard .icon-box .icon-circle {
        left: 5px;
    }

    .personal-dashboard .icon-box .category {
        position: absolute;
        top: -45px;
        right: 15px;
    }
}

.account-divider {
    display: block;
    margin: 20px 0;
    color: #005c63;
}

@media (max-width: 479px) {
    .search-page input[type=search].form-xlarge,
    .search-page .button-xlarge {
        padding: 20px 25px;
        height: 70px;
    }
}

.search-result-header {
    margin-bottom: 0;
    color: #0051a5;
}

.search-result-text {
    font-weight: 400;
}

.search-link {
    margin-bottom: 0;
    border-bottom: none;
    font-family: "Roboto Condensed", Arial, sans-serif;
    color: #005c63;
}

.search-link:hover {
    color: #003d41;
}

/*## UTILITY CLASSES ##*/
.anchor {
    position: absolute;
    margin-top: -100px;
}

.spacer-5 {
    margin-bottom: 5px !important;
}

.spacer-10 {
    margin-bottom: 10px !important;
}

.spacer-15 {
    margin-bottom: 15px !important;
}

.spacer-20 {
    margin-bottom: 20px !important;
}

.spacer-25 {
    margin-bottom: 25px !important;
}

.spacer-30 {
    margin-bottom: 30px !important;
}

.spacer-40 {
    margin-bottom: 40px !important;
}

.spacer-50 {
    margin-bottom: 50px !important;
}

.spacer-60 {
    margin-bottom: 60px !important;
}

.spacer-70 {
    margin-bottom: 70px !important;
}

.spacer-75 {
    margin-bottom: 75px !important;
}

.spacer-80 {
    margin-bottom: 80px !important;
}

.spacer-90 {
    margin-bottom: 90px !important;
}

.spacer-100 {
    margin-bottom: 100px !important;
}

.spacer-120 {
    margin-bottom: 120px !important;
}

.spacer-150 {
    margin-bottom: 150px !important;
}

.spacer-170 {
    margin-bottom: 170px !important;
}

.spacer-500 {
    margin-bottom: 500px !important;
}

.marg-x-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
}

.marg-x-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
}

.marg-x-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
}

.marg-x-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
}

.marg-x-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
}

.marg-x-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
}

.marg-x-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
}

.marg-x-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
}

.marg-x-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
}

.marg-x-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
}

.marg-x-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
}

.marg-x-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
}

.marg-x-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
}

.marg-x-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
}

.marg-y-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.marg-y-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.marg-y-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.marg-y-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.marg-y-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}

.marg-y-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.marg-y-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.marg-y-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

.marg-y-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
}

.marg-y-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
}

.marg-y-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
}

.marg-y-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
}

.marg-y-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
}

.marg-y-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
}

.margin-right-5 {
    margin-right: 5px !important;
}

.margin-right-10 {
    margin-right: 10px !important;
}

.margin-right-15 {
    margin-right: 15px !important;
}

.margin-right-20 {
    margin-right: 20px !important;
}

.margin-right-25 {
    margin-right: 25px !important;
}

.margin-right-30 {
    margin-right: 30px !important;
}

.margin-right-50 {
    margin-right: 50px !important;
}

.box-pad-5 {
    padding: 5px !important;
}

.box-pad-10 {
    padding: 10px !important;
}

.box-pad-15 {
    padding: 15px !important;
}

.box-pad-20 {
    padding: 20px !important;
}

.box-pad-25 {
    padding: 25px !important;
}

.box-pad-30 {
    padding: 30px !important;
}

.box-pad-40 {
    padding: 40px !important;
}

.box-pad-50 {
    padding: 50px !important;
}

.pad-x-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

.pad-x-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.pad-x-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.pad-x-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.pad-x-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
}

.pad-x-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.pad-x-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.pad-x-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

.pad-y-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.pad-y-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.pad-y-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.pad-y-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.pad-y-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.pad-y-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.pad-y-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.pad-y-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.pad-bottom-5 {
    padding-bottom: 5px !important;
}

.pad-bottom-10 {
    padding-bottom: 10px !important;
}

.pad-bottom-15 {
    padding-bottom: 15px !important;
}

.pad-bottom-20 {
    padding-bottom: 20px !important;
}

.pad-bottom-25 {
    padding-bottom: 25px !important;
}

.pad-bottom-30 {
    padding-bottom: 30px !important;
}

.pad-bottom-40 {
    padding-bottom: 40px !important;
}

.pad-bottom-50 {
    padding-bottom: 50px !important;
}

.pad-bottom-100 {
    padding-bottom: 100px !important;
}

.pad-bottom-130 {
    padding-bottom: 130px !important;
}

.pad-top-5 {
    padding-top: 5px !important;
}

.pad-top-10 {
    padding-top: 10px !important;
}

.pad-top-15 {
    padding-top: 15px !important;
}

.pad-top-20 {
    padding-top: 20px !important;
}

.pad-top-25 {
    padding-top: 25px !important;
}

.pad-top-30 {
    padding-top: 30px !important;
}

.pad-top-40 {
    padding-top: 40px !important;
}

.pad-top-50 {
    padding-top: 50px !important;
}

.pad-top-100 {
    padding-top: 100px !important;
}

.pad-top-130 {
    padding-top: 130px !important;
}

.pad-large {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

@media (max-width: 991px) {
    .pad-large {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}

@media (max-width: 767px) {
    .pad-large {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
}

.pad-med {
    padding-top: 50px;
    padding-bottom: 50px;
}

.pad-small {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (max-width: 767px) {
    .pad-small {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
}

.pad-xsmall {
    padding-top: 15px;
    padding-bottom: 15px;
}

.no-pad-bottom {
    padding-bottom: 0px !important;
}

.no-pad-top {
    padding-top: 0px !important;
}

.no-pad {
    padding: 0px !important;
}

.no-marg-top {
    margin-top: 0px !important;
}

.no-marg-bottom {
    margin-bottom: 0px !important;
}

.no-marg {
    margin: 0px !important;
}

.display-block {
    display: block !important;
}

.display-iblock {
    display: inline-block !important;
}

.inactive-height,
.inactiveHeight {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 1s cubic-bezier(0.9, 0.2, 0.26, 0.99);
}

.inactive-height.active,
.inactiveHeight.active {
    max-height: 2000px;
}

.inactive-opacity {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0s 0.5s, max-height 0s 0.5s;
}

.inactive-opacity.active {
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s, visibility 0s, max-height 0s;
}

.inactive-opacity-up, #contentWrapper {
    transform: translateY(400px);
    -webkit-transform: translateY(400px);
    -ms-transform: translateY(400px);
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.6s ease-in-out, opacity 0.4s, visibility 0s 0.5s;
}

.inactive-opacity-up.active, .active#contentWrapper {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
    transition: transform 0.4s ease-in-out, opacity 0.4s 0.2s;
}

.inactive-scale {
    transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    max-height: 0;
    visibility: hidden;
    transition: transform 0.2s, visibility 0s 0.5s;
}

.inactive-scale.active {
    transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    max-height: 1000px;
    visibility: visible;
    transition: transform 0.35s cubic-bezier(0, 0.51, 0.31, 1.51);
}

@media (max-width: 991px) and (min-width: 768px) {
    .center-sm {
        text-align: center !important;
    }

    .left-sm {
        text-align: left !important;
    }
}

@media (max-width: 767px) and (min-width: 480px) {
    .center-xs {
        text-align: center !important;
    }

    .left-xs {
        text-align: left !important;
    }
}

@media (max-width: 479px) {
    .center-xxs {
        text-align: center !important;
    }

    .left-xxs {
        text-align: left !important;
    }
}

.equalize-horiz {
    text-align: justify;
    line-height: 0;
}

.equalize-horiz::after {
    content: '';
    width: 100%;
    height: 0;
    display: inline-block;
}

.equalize-horiz .equalize-block {
    display: inline-block;
}

@media (min-width: 768px) {
    .equalize-height {
        display: -moz-box;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: stretch;
        align-items: stretch;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .equalize-height::before, .equalize-height::after {
        content: normal;
    }

    .equalize-height .equalize-col {
        display: -moz-box;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex: 1 1 auto;
        flex: 1 1 auto;
        margin-bottom: 30px;
    }

    .equalize-height .equalize-block {
        width: 100%;
        margin-bottom: 0 !important;
    }
}

@-webkit-keyframes pulsingScale {
    0%, 100% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1);
    }
}

@keyframes pulsingScale {
    0%, 100% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1);
    }
}

.ani-pulse {
    animation-name: pulsingScale;
    -webkit-animation-name: pulsingScale;
    animation-duration: 1.4s;
    -webkit-animation-duration: 1.4s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
}

@-webkit-keyframes scale {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes scale {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.ani-bloop {
    -webkit-animation-name: scale;
    animation-name: scale;
    -webkit-animation-duration: 0.35s;
    animation-duration: 0.35s;
    -webkit-animation-timing-function: cubic-bezier(0, 0.51, 0.31, 1.51);
    animation-timing-function: cubic-bezier(0, 0.51, 0.31, 1.51);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    transform: scale(0);
}

@keyframes opacityDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes opacityDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ani-fade-down {
    -webkit-animation-name: opacityDown;
    animation-name: opacityDown;
    -webkit-animation-duration: 0.35s;
    animation-duration: 0.35s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes opacity {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes opacity {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.ani-fade {
    -webkit-animation-name: opacity;
    animation-name: opacity;
    -webkit-animation-duration: 0.35s;
    animation-duration: 0.35s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
}

.ani-delay-1 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.ani-delay-2 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.ani-delay-3 {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.ani-delay-4 {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}

.sticky-wrapper {
    position: relative;
}

.fixed-wrapper,
.sticky-on {
    position: fixed;
    top: 0;
    width: 100%;
    overflow: auto;
}

.fixed-wrapper.sticky-off,
.sticky-on.sticky-off {
    position: absolute;
    top: auto;
    bottom: 0;
}

h4, .header-4,
h5, .header-5,
h6, .header-6 {
    color: #444444;
}

.category {
    border: 1px solid #444444;
}

.category-status-primary {
    border-color: #005c63;
}

.category-status-secondary {
    border-color: #0051a5;
}

.category-status-success {
    border-color: #355d14;
}

.category-status-danger {
    border-color: #9c1f01;
}

.category-status-warning {
    border-color: #7f4907;
}

.category-dropdown .category {
    border: 1px solid #444444;
}

.category-dropdown.open .category.dropdown-toggle {
    border: 1px solid #444444 !important;
}

.label {
    border: 1px solid #444444;
}

.label-primary {
    border-color: #005c63;
}

.label-secondary, .label-info {
    border-color: #0051a5;
}

.label-success {
    border-color: #355d14;
}

.label-danger {
    border-color: #9c1f01;
}

.label-warning {
    border-color: #7f4907;
}

.label.b-primary-color {
    border-color: #005c63;
}

.label.b-secondary-color {
    border-color: #0051a5;
}

.alert {
    border: 1px solid #444444;
}

.button.b-blue-tint-1 {
    background-image: linear-gradient(to right, #003168 50%, #0051a5 50%);
    border-color: #003168;
}

.button.b-apple, .modal-success .button {
    background-image: linear-gradient(to right, #26420e 50%, #355d14 50%);
    border-color: #355d14;
}

.button.b-warm-red, .modal-danger .button {
    background-image: linear-gradient(to right, #7e1a01 50%, #9c1f01 50%);
    border-color: #9c1f01;
}

.button.b-sun, .modal-warning .button {
    background-image: linear-gradient(to right, #603705 50%, #7f4907 50%);
    border-color: #7f4907;
}

.button.c-apple, .modal-success .button-outline {
    background-image: linear-gradient(to right, #355d14 50%, transparent 50%);
    border-color: #355d14 !important;
    color: #355d14 !important;
}

.button.c-warm-red, .modal-danger .button-outline {
    background-image: linear-gradient(to right, #9c1f01 50%, transparent 50%);
    border-color: #9c1f01 !important;
    color: #9c1f01 !important;
}

.button.c-sun, .modal-warning .button-outline {
    background-image: linear-gradient(to right, #7f4907 50%, transparent 50%);
    border-color: #7f4907 !important;
    color: #7f4907 !important;
}

.button.dropdown-toggle {
    border: 1px solid #444444 !important;
}

.dropdown-menu {
    border: 1px solid #444444 !important;
}

.open:not(.yamm-fw) > .dropdown-menu li a {
    border-top: 1px solid transparent !important;
    border-bottom: 1px solid transparent !important;
}

.open:not(.yamm-fw) > .dropdown-menu li a:hover {
    border-top: 1px solid #0051a5 !important;
    border-bottom: 1px solid #0051a5 !important;
    color: #002750;
}

.form-control {
    border: 1px solid #444444 !important;
}

.table.table-hover > tbody > tr {
    border-bottom: 1px solid transparent;
}

.table.table-hover > tbody > tr:hover {
    border-bottom: 1px solid #0051a5;
}

.table.b-carbon > thead > tr {
    background-color: #585858;
}

.table.b-carbon > tbody > tr {
    border-bottom: 1px solid #585858;
}

.table.b-carbon > tbody > tr:last-child {
    border-bottom-color: transparent;
}

.table.b-primary-color > tbody > tr {
    border-bottom: 1px solid #005c63;
}

.table.b-primary-color > tbody > tr:last-child {
    border-bottom-color: transparent;
}

.table.b-secondary-color > tbody > tr {
    border-bottom: 1px solid #0051a5;
}

.table.b-secondary-color > tbody > tr:last-child {
    border-bottom-color: transparent;
}

input[type=range].form-range {
    border: 1px solid #444444;
}

input[type=range].form-range::-webkit-slider-thumb {
    border: 1px solid #444444;
}

input[type=range].form-range::-ms-thumb {
    border: 1px solid #444444;
}

input[type=range].form-range::-moz-range-thumb {
    border: 1px solid #444444;
}

.range-markers .marker {
    background-color: #444444;
}

.tooltip-inner {
    border: 1px solid #444444;
}

.tooltip.top .tooltip-arrow {
    border-top-color: #444444;
}

.input-switch input[type=checkbox] + label {
    border: 1px solid #444444;
}

.input-switch input[type=checkbox] + label::after {
    border: 1px solid #444444;
}

::-webkit-input-placeholder {
    color: #585858 !important;
}

::-ms-input-placeholder {
    color: #585858 !important;
}

::-moz-input-placeholder {
    color: #585858 !important;
}

.highlight-box, .intro-box .intro-block {
    border: 1px solid #444444;
}

.well {
    border-color: #444444;
}

.well.b-primary-color-tint-3 {
    border-color: #005c63;
}

.well.b-secondary-color-tint-3 {
    border-color: #0051a5;
}

.modal-content {
    border: 1px solid #444444 !important;
}

.nav-tabs > li > a {
    color: #444444;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    background-color: #0051a5;
    color: #ffffff;
}

.nav-tabs.tabs-secondary > li > a {
    color: #444444;
}

.nav-tabs.tabs-secondary > li.active > a,
.nav-tabs.tabs-secondary > li.active > a:hover,
.nav-tabs.tabs-secondary > li.active > a:focus {
    background-color: #003168;
    color: #ffffff;
}

footer a:focus,
footer a:hover {
    color: #e5f7f7;
}

footer .bubble-left {
    border: 1px solid #ffffff;
    background-color: #006369;
}

footer .bubble-right {
    border: 1px solid #ffffff !important;
}

footer .bubble-right:hover {
    background-color: #006369;
}

footer .backtoptop {
    border: 1px solid #ffffff !important;
}

@media (min-width: 480px) {
    .range-icons .icon.active {
        border: 1px solid #0051a5;
    }
}

.bar-container {
    border: 1px solid #444444;
    background-color: #e9eaec;
}

.progress-container-horiz .step:not(.checked)::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: #444444 transparent transparent transparent;
    opacity: 0;
    transform: translate(-50%, -20px);
    -webkit-transform: translate(-50%, -20px);
    -ms-transform: translate(-50%, -20px);
}

.progress-container-horiz .step:not(.checked).active::before {
    opacity: 1;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
}

.graph-pie-img {
    border: 1px solid #0051a5;
}

.graph-pie-img::after, .graph-pie-img::before {
    border: 1px solid #0051a5;
}

.graph-pie-75 {
    background-color: #eaf6fe;
}

.graph-pie-25::before,
.graph-pie-50::before {
    background-color: #eaf6fe;
}

.tiles .tile-text .block {
    border: 1px solid #444444;
}

.bubble-right, .bubble-sm, .bubble-sm-right, .progress-container .step, .bubble-sm-left, .bubble-selection-lg .graph-text, .bubble-description {
    border: 1px solid #444444;
}

.bubble-carbon .icon {
    color: #444444 !important;
}

.bubble-sun .icon {
    color: #7f4907 !important;
}

.bubble-apple .icon {
    color: #355d14 !important;
}

@media (min-width: 992px) {
    .bubble-selection .bubble:hover, .bubble-selection-multi .bubble:hover, .bubble-selection-multi-small .bubble:hover {
        background-color: #eaf6fe;
    }
}

.bubble-selection-multi input[type=radio]:checked + label .icon {
    color: #ffffff !important;
}

.bubble-selection-multi input[type=radio]:checked + label.bubble-carbon {
    background-color: #444444 !important;
}

.bubble-selection-multi input[type=radio]:checked + label.bubble-sun {
    background-color: #7f4907 !important;
}

.bubble-selection-multi input[type=radio]:checked + label.bubble-apple {
    background-color: #355d14 !important;
}

#map .country {
    fill: #b3b3b3;
}

@media (min-width: 768px) {
    #map .region.showing.f-sun .country {
        fill: #7f4907;
        opacity: 0.5;
    }

    #map .region.showing.f-sun:hover .country {
        opacity: 1;
    }

    #map .region.showing.f-teal .country {
        fill: #005c63;
        opacity: 0.5;
    }

    #map .region.showing.f-teal:hover .country {
        opacity: 1;
    }

    #map .region.showing.f-carbon .country {
        fill: #444444;
        opacity: 0.5;
    }

    #map .region.showing.f-carbon:hover .country {
        opacity: 1;
    }

    #map .region.showing.f-warm-red .country {
        fill: #9c1f01;
        opacity: 0.5;
    }

    #map .region.showing.f-warm-red:hover .country {
        opacity: 1;
    }

    #map .region.showing.f-pear .country {
        fill: #726c1a;
        opacity: 0.5;
    }

    #map .region.showing.f-pear:hover .country {
        opacity: 1;
    }

    #map .region.showing.f-sky .country {
        fill: #0051a5;
        opacity: 0.5;
    }

    #map .region.showing.f-sky:hover .country {
        opacity: 1;
    }

    #map .region.showing.f-teal-dark .country {
        fill: #003d41;
        opacity: 0.5;
    }

    #map .region.showing.f-teal-dark:hover .country {
        opacity: 1;
    }
}

@media (max-width: 767px) {
    #map .showing.f-sun .country {
        fill: #7f4907;
    }

    #map .showing.f-teal .country {
        fill: #005c63;
    }

    #map .showing.f-carbon .country {
        fill: #444444;
    }

    #map .showing.f-warm-red .country {
        fill: #9c1f01;
    }

    #map .showing.f-pear .country {
        fill: #726c1a;
    }

    #map .showing.f-sky .country {
        fill: #0051a5;
    }

    #map .showing.f-teal-dark .country {
        fill: #003d41;
    }
}

.chart-legend .b-sun {
    background-color: #7f4907 !important;
}

.chart-legend .b-teal {
    background-color: #005c63 !important;
}

.chart-legend .b-carbon {
    background-color: #444444 !important;
}

.chart-legend .b-warm-red {
    background-color: #9c1f01 !important;
}

.chart-legend .b-pear {
    background-color: #726c1a !important;
}

.chart-legend .b-teal-dark {
    background-color: #003d41 !important;
}

.chart-legend .b-sky {
    background-color: #0051a5 !important;
}

.b-teal {
    background-color: #005c63 !important;
}

.b-bright-blue {
    background-color: #0051a5 !important;
}

.b-carbon {
    background-color: #444444 !important;
}

.b-sun {
    background-color: #7f4907 !important;
}

.b-apple {
    background-color: #355d14 !important;
}

.b-warm-red {
    background-color: #9c1f01 !important;
}

.b-pear {
    background-color: #726c1a !important;
}

.b-sky {
    background-color: #236e9a !important;
}

.c-teal {
    color: #005c63 !important;
}

.c-bright-blue {
    color: #0051a5 !important;
}

.c-carbon {
    color: #444444 !important;
}

.c-sun {
    color: #7f4907 !important;
}

.c-apple {
    color: #355d14 !important;
}

.c-warm-red {
    color: #9c1f01 !important;
}

.c-pear {
    color: #726c1a !important;
}

.c-sky {
    color: #236e9a !important;
}

.f-teal {
    fill: #005c63 !important;
}

.f-bright-blue {
    fill: #0051a5 !important;
}

.f-carbon {
    fill: #444444 !important;
}

.f-sun {
    fill: #7f4907 !important;
}

.f-apple {
    fill: #355d14 !important;
}

.f-warm-red {
    fill: #9c1f01 !important;
}

.f-pear {
    fill: #726c1a !important;
}

.f-sky {
    fill: #236e9a !important;
}

.s-teal {
    stroke: #005c63 !important;
}

.s-bright-blue {
    stroke: #0051a5 !important;
}

.s-carbon {
    stroke: #444444 !important;
}

.s-sun {
    stroke: #7f4907 !important;
}

.s-apple {
    stroke: #355d14 !important;
}

.s-warm-red {
    stroke: #9c1f01 !important;
}

.s-pear {
    stroke: #726c1a !important;
}

.s-sky {
    stroke: #236e9a !important;
}

.highlight-box.top-box-bc, .intro-box .top-box-bc.intro-block {
    margin-top: 90px;
}

.account-statistics-portal {
    border-top: 1px solid #38a2f5;
    padding-top: 30px;
    position: relative;
}

.account-statistics-portal .export-to-excel {
    position: absolute;
    right: 0;
    top: 30px;
}

@media screen and (max-width: 450px) {
    .account-statistics-portal .export-to-excel {
        position: static;
        margin-bottom: 10px;
    }
}

.map-future-goals .graph-legend {
    font-family: "Roboto Condensed", Arial, sans-serif;
}

.map-future-goals .graph-legend .display-block {
    position: relative;
    padding-left: 21px;
}

.map-future-goals .graph-legend .fa {
    color: #0051a3;
    display: inline-block;
    margin-right: 5px;
    position: absolute;
    top: 6px;
    left: 0;
}

@media screen and (max-width: 479px) {
    .map-future-goals .graph-legend .fa {
        top: 5px;
    }
}

.map-future-goals .graph-legend.phn-legend .fa {
    color: #04acb3;
}

.map-future-goals .graph-years, .map-future-goals .graph-disclosure {
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 400;
}

.map-future-goals .graph-years {
    font-size: 90%;
}

.map-future-goals .graph-disclosure {
    font-size: 85%;
}

.accounts-detail-table-portal {
    margin-left: -12px;
}

.accounts-detail-table-portal tr:not(.account-portal-buttons) td:first-child {
    min-width: 170px;
    width: auto !important;
}

.accounts-detail-table-portal tr:not(.account-portal-buttons) td:nth-child(2) {
    min-width: 200px;
    width: auto !important;
}

tr.account-portal-buttons {
    display: block;
}

tr.account-portal-buttons td {
    display: inline-block;
    float: left;
    padding: 5px !important;
    padding-left: 10px !important;
}

tr.account-portal-buttons form[action*="CANCEL"] button {
    border-color: #fca311;
    background-image: linear-gradient(to left, #fca311 0%, #fca311 50%, #e8cf00 100%) !important;
}

tr.account-portal-buttons form[action*="CANCEL"] button:hover {
    border-color: transparent !important;
    background-color: #e8cf00 !important;
}

tr.account-portal-buttons form[action*="REVIEW"] button {
    border-color: #aaba0a !important;
    background-image: linear-gradient(to right, #616f03 50%, #aaba0a 50%) !important;
}

tr.account-portal-buttons form[action*="REVIEW"] button:hover {
    border-color: #616f03 !important;
    background-color: #616f03 !important;
}

tr.account-portal-buttons form[action*="SAVE"] button {
    border-color: #00aeb5 !important;
    background-image: linear-gradient(to right, #007077 50%, #00aeb5 50%) !important;
}

tr.account-portal-buttons form[action*="SAVE"] button:hover {
    border-color: #007077 !important;
    background-color: #007077 !important;
}

tr.account-portal-notes td:first-child {
    padding-left: 10px;
    width: 50px;
    vertical-align: top;
}

tr.account-portal-notes textarea {
    margin-bottom: 8px;
    max-width: 400px;
}

tr.account-portal-notes button {
    display: block;
}

#tabAccountOpening .documents-table thead {
    border-bottom: none;
    background: #363636;
}

#tabAccountOpening .documents-table thead th {
    color: #fff;
}

#tabAccountOpening .documents-table tr {
    border-bottom: 1px solid #383838;
}

#tabAccountOpening .documents-table tr td:first-child, #tabAccountOpening .documents-table tr th:first-child {
    width: 40%;
    text-align: left;
}

#tabAccountOpening .documents-table tr td:last-child, #tabAccountOpening .documents-table tr th:last-child {
    width: 10%;
    text-align: center;
    padding-right: 15px;
}

#tabAccountOpening .documents-table tr td:nth-child(2), #tabAccountOpening .documents-table tr th:nth-child(2) {
    width: 10%;
    text-align: center;
}

#tabAccountOpening .documents-table tr td:nth-child(3), #tabAccountOpening .documents-table tr th:nth-child(3) {
    width: 40%;
    text-align: left;
}

#tabAccountOpening .documents-table td {
    line-height: 50px;
    padding-top: 0;
    padding-bottom: 0;
}

#tabAccountOpening .primary-account-table tr.border-bottom {
    border-bottom: solid 2px #e9eaec;
}

@media screen and (max-width: 767px) {
    #tabAccountOpening .max-width-500 {
        max-width: 500px !important;
    }
}

#tabAccountOpening textarea.note-textarea {
    height: 265px;
}

#tabAccountOpening .activity-log-container {
    overflow-y: auto;
    height: 320px;
    padding-left: 10px;
    padding-right: 10px;
}

#tabAccountOpening .activity-log-table thead {
    border-color: #383838;
    border-width: 1px;
}

#tabAccountOpening .activity-log-table tr td:first-child, #tabAccountOpening .activity-log-table tr th:first-child {
    width: 35%;
    text-align: left;
    padding-left: 0;
}

#tabAccountOpening .activity-log-table tr td:last-child, #tabAccountOpening .activity-log-table tr th:last-child {
    width: 35%;
    text-align: center;
    padding-right: 0;
}

#tabAccountOpening .activity-log-table tr td:nth-child(2), #tabAccountOpening .activity-log-table tr th:nth-child(2) {
    width: 30%;
    text-align: center;
}

#tabAccountOpening .activity-log-header {
    margin: 0;
}

#tabAccountOpening a.enable-editing {
    position: absolute;
    right: 10px;
    top: 15px;
}

#tabAccountOpening h4 {
    margin-left: -12px;
}

#tabAccountOpening select.account-states {
    background-color: #1596F3 !important;
}

#tabAccountOpening .document-actions > select {
    background-color: #6babde !important;
    padding: 0;
    height: auto;
    padding: 3px;
    padding-right: 15px;
    padding-left: 5px;
    border-radius: 0 !important;
    margin: 0 !important;
}

#tabAccountOpening label.popovers::before {
    background-color: #1596F3 !important;
}

#tabAccountOpening label.popovers::after {
    color: #fff !important;
}

#tabAccountOpening label.document-actions {
    display: inline-block;
    padding: 0;
    height: auto;
    border-radius: 0 !important;
}

#tabAccountOpening label.document-actions::before {
    background-color: #6babde !important;
    width: 0;
}

#tabAccountOpening label.document-actions::after {
    color: #fff !important;
    right: 7px;
    top: 14px;
    font-size: 0.4em;
}

#tabAccountOpening .popover.bottom {
    box-shadow: none;
    margin-top: 0;
    border: none;
    border-radius: 0;
    width: auto;
    max-width: 100%;
    left: 14px !important;
    right: 14px !important;
}

#tabAccountOpening .popover.bottom textarea {
    padding-left: 0;
    padding-right: 0;
    height: 95px;
}

#tabAccountOpening .popover.bottom textarea:focus {
    outline: 0;
    box-shadow: none;
}

#tabAccountOpening .popover.bottom .arrow {
    display: none;
}

#tabAccountOpening .popover.bottom button {
    margin-right: 10px;
}

#tabAccountOpening h4, #tabReports h4 {
    color: #00aeb5;
    font-weight: 500;
    padding-left: 12px;
    padding-right: 12px;
}

#tabAccountOpening table tbody tr td a[data-toggle="collapse"], #tabReports table tbody tr td a[data-toggle="collapse"] {
    position: relative;
    display: table;
    width: 40px;
    height: 23px;
    text-align: center;
}

#tabAccountOpening table tbody tr td a[data-toggle="collapse"] .bt-eye, #tabReports table tbody tr td a[data-toggle="collapse"] .bt-eye {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    width: 40px;
    height: 23px;
}

#tabAccountOpening table tbody tr td a[data-toggle="collapse"] .bt-eye:before, #tabReports table tbody tr td a[data-toggle="collapse"] .bt-eye:before {
    content: "";
    position: absolute;
    top: 10px;
    width: 10px;
    height: 2px;
    background-color: #1596f3;
    right: 20px;
    transition: opacity 0.4s 0.1s;
}

#tabAccountOpening table tbody tr td a[data-toggle="collapse"] .bt-eye:after, #tabReports table tbody tr td a[data-toggle="collapse"] .bt-eye:after {
    content: '';
    position: absolute;
    top: 10px;
    width: 10px;
    height: 2px;
    right: 20px;
    background-color: #1596f3;
}

#tabAccountOpening table tbody tr td a.collapsed .bt-eye, #tabReports table tbody tr td a.collapsed .bt-eye {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    width: 40px;
    height: 23px;
}

#tabAccountOpening table tbody tr td a.collapsed .bt-eye:before, #tabReports table tbody tr td a.collapsed .bt-eye:before {
    content: "";
    position: absolute;
    top: 10px;
    width: 10px;
    height: 2px;
    background-color: #1596f3;
    right: 20px;
    transition: opacity 0.4s 0.1s;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
}

#tabAccountOpening table tbody tr td a.collapsed .bt-eye:after, #tabReports table tbody tr td a.collapsed .bt-eye:after {
    content: '';
    position: absolute;
    top: 10px;
    width: 10px;
    height: 2px;
    right: 20px;
    background-color: #1596f3;
}

#tabReports table a[data-target*="document"] {
    position: relative;
    display: table;
    width: 40px;
    height: 23px;
    text-align: center;
}

#tabReports table a[data-target*="document"] .bt-eye {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    width: 40px;
    height: 23px;
    opacity: .6;
}

#tabReports table a[data-target*="document"] .bt-eye:before {
    content: "";
    position: absolute;
    top: 10px;
    width: 10px;
    height: 2px;
    background-color: #50585f;
    right: 20px;
    transition: opacity 0.4s 0.1s;
}

#tabReports table a[data-target*="document"] .bt-eye:after {
    content: '';
    position: absolute;
    top: 10px;
    width: 10px;
    height: 2px;
    right: 20px;
    background-color: #50585f;
}

#tabReports table a.collapsed .bt-eye {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    width: 40px;
    height: 23px;
    opacity: .6;
}

#tabReports table a.collapsed .bt-eye:before {
    content: "";
    position: absolute;
    top: 10px;
    width: 10px;
    height: 2px;
    background-color: #50585f;
    right: 20px;
    transition: opacity 0.4s 0.1s;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
}

#tabReports table a.collapsed .bt-eye:after {
    content: '';
    position: absolute;
    top: 10px;
    width: 10px;
    height: 2px;
    right: 20px;
    background-color: #50585f;
}

#tabReports .table-row-collapse {
    background: #f6f6f7;
}

#tabReports .table-row-collapse div[id*="document"] table {
    margin-bottom: 25px;
}

#tabReports .table-row-collapse div[id*="document"] table td:first-child {
    max-width: 220px;
    width: 20%;
}

#tabReports .table-row-collapse div[id*="note"] table tr td, #tabReports .table-row-collapse div[id*="note"] table tr th {
    padding: 10px 12px;
}

#tabReports .table-row-collapse div[id*="note"] table tr td:first-child {
    max-width: 200px;
    width: 20%;
}

#tabReports .table-row-collapse div[id*="note"] table tr td:last-child {
    max-width: 150px;
    width: 10%;
}

#tabReports .table-row-collapse div[id*="note"] table thead td {
    font-weight: 400;
}

.available-actions-buttons button {
    margin-bottom: 10px;
}

.available-actions-buttons[action*="CANCEL"] button {
    border-color: #fca311;
    background-image: linear-gradient(to left, #fca311 0%, #fca311 50%, #e8cf00 100%) !important;
}

.available-actions-buttons[action*="CANCEL"] button:hover {
    border-color: transparent !important;
    background-color: #e8cf00 !important;
}

.available-actions-buttons[action*="REVIEW"] button {
    border-color: #aaba0a !important;
    background-image: linear-gradient(to right, #616f03 50%, #aaba0a 50%) !important;
}

.available-actions-buttons[action*="REVIEW"] button:hover {
    border-color: #616f03 !important;
    background-color: #616f03 !important;
}

.available-actions-buttons[action*="SIGN"] button {
    border-color: #00aeb5 !important;
    background-image: linear-gradient(to right, #007077 50%, #00aeb5 50%) !important;
}

.available-actions-buttons[action*="SIGN"] button:hover {
    border-color: #007077 !important;
    background-color: #007077 !important;
}

.available-actions-buttons:last-child button {
    margin-bottom: 0;
}

.steps-wrap .hidden-msg, .contact-us-form .hidden-msg, .portal-errors .hidden-msg, #tabReferral .hidden-msg {
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.4s;
    transform-origin: top left;
    -webkit-transition: transform 0.35s cubic-bezier(0, 0.51, 0.31, 1.51);
    -moz-transition: transform 0.35s cubic-bezier(0, 0.51, 0.31, 1.51);
    -ms-transition: transform 0.35s cubic-bezier(0, 0.51, 0.31, 1.51);
    transition: transform 0.35s cubic-bezier(0, 0.51, 0.31, 1.51);
}

.steps-wrap .hidden-msg.show-error-msg, .contact-us-form .hidden-msg.show-error-msg, .portal-errors .hidden-msg.show-error-msg, #tabReferral .hidden-msg.show-error-msg {
    opacity: 1;
    height: auto;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.steps-wrap .hidden-msg, .portal-errors .hidden-msg, #tabReferral .hidden-msg {
    margin: 0;
    padding: 0;
}

.steps-wrap .hidden-msg.show-error-msg, .portal-errors .hidden-msg.show-error-msg, #tabReferral .hidden-msg.show-error-msg {
    padding: 20px;
    padding-left: 70px;
    margin-bottom: 20px;
}

.contact-us-form .hidden-msg {
    margin: 0;
    padding: 0;
}

.contact-us-form .hidden-msg.show-error-msg {
    margin-bottom: 20px;
    padding: 20px 20px 20px 70px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    input[type=range].form-range {
        padding: 0;
        height: 26px;
        background: transparent;
    }
}

@supports (-ms-ime-align: auto) {
    input[type=range].form-range {
        padding: 0;
        height: 26px;
        background: transparent;
        background-image: none !important;
    }
}

input[type=range].form-range::-ms-track {
    height: 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    background: transparent;
    color: transparent;
    border-color: transparent;
}

input[type=range].form-range::-ms-fill-lower {
    background: #2398F0 !important;
    border-radius: 8px;
}

input[type=range].form-range::-ms-fill-upper {
    background: #e9eaec !important;
    border-radius: 8px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .range-markers {
        bottom: 3px;
    }
}

@supports (-ms-ime-align: auto) {
    .range-markers {
        bottom: 3px;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .bubble-selection-lg .graph-line-img {
        max-height: 120px;
    }
}

#avatar, #avatar-process {
    top: -200px;
}

.relative {
    position: relative;
}

.relative span.currency {
    position: absolute;
    top: -1px;
    left: 0px;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 1em;
    font-weight: 300;
    color: #444444;
    outline: none;
    display: inline-block;
    opacity: 0;
}

@-moz-document url-prefix() {
    .relative span.currency {
        top: 0;
    }
}

.relative input[name="initialInvestment"] {
    padding-left: 10px;
}

.relative input[name="initialInvestmentMer"] {
    padding-left: 10px;
}

.relative.contact-us-relative div.button {
    position: absolute;
    left: 0;
    top: 0;
}

.relative .processing-dots {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
}

.relative .ie-hack {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 10;
    background: transparent;
}

@media screen and (max-width: 991px) {
    #aggregateAssetMix0, #aggregateAssetMix1 {
        margin-bottom: 15px !important;
    }
}

#chatRisk .footnote-mer, .chat-group-11 .footnote-mer {
    font-size: 0.875em;
    margin-bottom: 20px;
    position: absolute;
    bottom: -50px;
    left: 0;
    line-height: 1.5em;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 300;
    color: #444444;
    padding-left: 40px;
}

@media screen and (max-width: 767px) {
    #chatRisk .footnote-mer, .chat-group-11 .footnote-mer {
        padding-left: 30px;
    }
}

.selection-scroll-indicators .indicator.active {
    background: #6f6f6f;
}

.sidr ul li.item-user {
    padding-left: 30px;
    color: #585858;
    position: relative;
}

.sidr ul li.item-user a {
    color: #585858;
}

.sidr ul li.item-user a:hover {
    color: #0051a5;
}

.sidr ul li.item-user .icon {
    position: absolute;
    left: 15px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #eaf6fe;
    color: #0051a5;
    font-size: 0.875em;
    line-height: 18px;
    text-align: center;
    top: 13px;
}

#avatar-process.robo-avatar {
    background: #fff;
    padding: 8px;
    z-index: 5;
}

#avatar-process.robo-avatar .bubble-dot {
    margin: 15px 2px;
    background-color: #00aeb5;
    animation-name: bouncyBlinkAvatarProcess;
    -webkit-animation-name: bouncyBlinkAvatarProcess;
}

@-webkit-keyframes bouncyBlinkAvatarProcess {
    0%, 45%, 100% {
        background-color: rgba(0, 174, 181, 0.7);
        transform: translateY(0);
    }
    25% {
        background-color: #00aeb5;
        transform: translateY(-10px);
    }
    35% {
        background-color: rgba(0, 174, 181, 0.85);
        transform: translateY(5px);
    }
}

@keyframes bouncyBlinkAvatarProcess {
    0%, 45%, 100% {
        background-color: rgba(0, 174, 181, 0.7);
        transform: translateY(0);
    }
    25% {
        background-color: #00aeb5;
        transform: translateY(-10px);
    }
    35% {
        background-color: rgba(0, 174, 181, 0.85);
        transform: translateY(5px);
    }
}

.editable-fields .prevent-editing {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.editable-fields label {
    opacity: 1;
}

.chat-group-5 .form-container-range {
    margin-bottom: 0;
}

.chat-group-5 .editable-fields {
    padding-bottom: 30px;
}

.inactive .editable-fields .prevent-editing {
    z-index: 30;
}

.inactive .editable-fields label, .inactive .editable-fields .rangeAgeIcons, .inactive .editable-fields input {
    opacity: .5;
}

.inactive .editable-fields.editable .prevent-editing {
    z-index: -1;
}

.inactive .editable-fields.editable label, .inactive .editable-fields.editable .rangeAgeIcons, .inactive .editable-fields.editable input {
    opacity: 1;
}

section.chat .robo-avatar {
    top: -200px;
}

.tab-content select[multiple="multiple"] {
    height: 150px;
}

.tab-content .multiple-select-styled:focus::after, .tab-content .multiple-select-styled:hover::after {
    color: #fff;
}

.tab-content .multiple-select-styled:before {
    height: 95%;
    bottom: 0;
    top: 0;
}

.tab-content .multiple-select-styled .dropdown-menu li.selected {
    background-color: #e1f1fd !important;
    color: #1596F3 !important;
}

.tab-content .multiple-select-styled .dropdown-toggle {
    border-radius: 3px !important;
    color: #00aeb5 !important;
}

.tab-content .multiple-select-styled .dropdown-toggle:hover, .tab-content .multiple-select-styled .dropdown-toggle:focus {
    background-color: #007077 !important;
    color: #fffff !important;
}

.tab-content .multiple-select-styled .dropdown-toggle .bs-caret {
    display: none !important;
}

.bubble.no-description {
    max-height: 0 !important;
    opacity: 0 !important;
    padding: 0 !important;
}

.bubble .timeframe {
    position: absolute;
    bottom: 0;
    font-size: 0.75em;
}

.bubble .timeframe.timeframe-label-left {
    left: 35px;
}

.bubble .timeframe.timeframe-label-right {
    right: -15px;
}

#passChange #validPassBox {
    padding: 0;
    margin: 0;
}

#passChange #validPassBox.active {
    padding: 20px;
    margin-bottom: 10px;
}

body::before {
    background-image: url("../../images/temp/bg-zigzag-pattern.png");
}

.th-labels, .th-tooltip {
    background: #fff;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    border-bottom-right-radius: 3px;
    padding: 7px 12px;
    font-size: 12px;
    z-index: 10;
}

.th-labels p, .th-tooltip p {
    margin-bottom: 0;
    color: #1596F3;
}

.th-labels .header-5, .th-tooltip .header-5 {
    margin-bottom: 0;
}

.th-labels.th-labels-first, .th-tooltip.th-labels-first {
    border-radius: 15px;
    border-bottom-left-radius: 3px;
}

.th-tooltip {
    background: #fff;
    z-index: 14;
}

@media screen and (max-width: 767px) {
    #chatComfortRisk label {
        max-height: 239px;
    }
}

.highlight-box .steps-wrap .processing-dots, .intro-box .intro-block .steps-wrap .processing-dots {
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    max-width: 175px;
}

.highlight-box .steps-wrap .inactive-opacity-height.inactive-opacity, .intro-box .intro-block .steps-wrap .inactive-opacity-height.inactive-opacity {
    max-height: 100%;
}

.alert span.password-info-alert {
    font-size: 16px;
    font-weight: 300;
}

.chat-group-15 .form-container-range output, .chat-group-4 .form-container-range output {
    display: inline;
    color: #50585f;
    font-size: 16px;
    font-weight: 400;
}

.chat-group-15 .output-container, .chat-group-4 .output-container {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
}

@media screen and (max-width: 730px) {
    .chat-group-15 .output-container, .chat-group-4 .output-container {
        position: static;
        margin-left: 40px;
    }
}

.chat-group-15 .output-container span, .chat-group-4 .output-container span {
    display: inline-block;
    color: #444444;
    font-size: 85%;
    font-weight: 400;
}

.chat-group-15 .output-container output, .chat-group-4 .output-container output {
    display: inline;
    color: #444444;
    font-size: 85%;
    font-weight: 400;
}

.well.padd-marg-0 {
    padding: 0;
    margin: 0;
}

section.chat .footnote:last-child {
    margin-bottom: 20px;
}

#chatMain .no-margin {
    margin: 0 !important;
}

#submitIP.btn {
    margin-top: 10px;
}

@media screen and (max-width: 767px) {
    .button.button-arrow-more {
        max-width: 500px;
    }

    .button.button-arrow-more .hidden-text {
        visibility: visible;
        opacity: 1;
        left: 0;
    }

    .flipper-group .icon-circle-large .flipper-img {
        left: calc(50% - 44px);
        top: calc(50% - 44px);
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .flipper-group .icon-circle-large .flipper-img {
        left: 20%;
        top: 0;
    }
}

.range-markers-icons .marker.active {
    position: relative;
    z-index: 0;
}

.range-markers-icons .marker.selectable {
    position: relative;
    z-index: 10;
}

input[type=range].form-range-icons::-webkit-slider-thumb {
    position: relative;
    z-index: 12;
}

input[type=range].form-range-icons::-ms-thumb {
    position: relative;
    z-index: 12;
}

input[type=range].form-range-icons::-moz-range-thumb {
    position: relative;
    z-index: 12;
}

.highlight-box.contact-us-form .form-container, .intro-box .contact-us-form.intro-block .form-container {
    margin-bottom: 0;
}

@media only screen and (device-width: 768px) {
    .bubble-selection-multi .icon.display-iblock {
        display: block !important;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        left: 0.3125em;
    }

    .bubble-selection-lg .graph {
        position: absolute;
        left: 40px;
        top: 50%;
        margin: 0;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
    }
}

.fund-page table.table-holdings > tbody > tr:nth-child(5n+6) {
    border-top: none;
}

.fund-page table.table-holdings > tbody > tr:last-child {
    border-top: solid #e9eaec 1px;
}

#primary-navigation .navbar-nav {
    padding: 10px 0 9px 0;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    #primary-navigation .navbar-nav {
        padding-bottom: 7px;
    }
}

#primary-navigation .navbar-nav > li > a.button-xsmall {
    padding: 0 15px 0 15px;
    line-height: 32px;
    height: 34px;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    #primary-navigation .navbar-nav > li > a.button-xsmall {
        height: 32px;
    }
}

#primary-navigation .btb {
    vertical-align: middle;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    #primary-navigation .navbar-nav .dropdown-menu {
        top: 115%;
    }
}

#riskDescDisclaimer-mobile, #riskDescDisclaimer2-mobile {
    overflow: visible;
}

#riskDescDisclaimer-mobile .bubble-description, #riskDescDisclaimer2-mobile .bubble-description {
    padding: 20px;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100%;
    margin-top: 10px;
    overflow: visible;
}

@media screen and (min-width: 992px) {
    #riskDescDisclaimer-mobile.inactive-opacity.active, #riskDescDisclaimer2-mobile.inactive-opacity.active {
        max-height: 0 !important;
        opacity: 0;
        margin: 0;
        padding: 0;
    }

    #riskDescDisclaimer-mobile.inactive-opacity.active .bubble-description, #riskDescDisclaimer2-mobile.inactive-opacity.active .bubble-description {
        margin: 0;
    }
}

#riskDescDisclaimer-mobile p.footnote, #riskDescDisclaimer2-mobile p.footnote {
    font-weight: 400;
    font-size: 0.875em;
}

@media screen and (max-width: 991px) {
    #riskDescDisclaimer.inactive-opacity.active, #riskDescDisclaimer2.inactive-opacity.active {
        max-height: 0 !important;
        opacity: 0;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .chat-group-17 .graph-pie-container, .chat-group-9 .graph-pie-container {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 141px;
        height: 110px;
        position: absolute;
        left: 20%;
        top: 0;
    }

    .chat-group-17 .graph-pie-container .graph, .chat-group-9 .graph-pie-container .graph {
        position: relative;
        left: initial;
    }

    .chat-group-6 .graph-pie-container, .chat-group-16 .graph-pie-container {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 600px;
        height: 110px;
        position: absolute;
        left: 10%;
        top: 10%;
    }

    .chat-group-6 .graph-pie-container .graph, .chat-group-16 .graph-pie-container .graph {
        position: relative;
        left: initial;
    }

    .chat-group-6 .bubble-selection-lg .graph-line .graph-text, .chat-group-16 .bubble-selection-lg .graph-line .graph-text {
        top: 0;
    }

    #chat .chat-wrapper .container {
        padding-bottom: 40vh;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .chat-group-17 .graph-pie-container, .chat-group-9 .graph-pie-container {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 141px;
        height: 110px;
    }

    .chat-group-17 .graph-pie-container .graph, .chat-group-9 .graph-pie-container .graph {
        position: relative;
        left: initial;
    }

    .chat-group-6 .graph-pie-container, .chat-group-16 .graph-pie-container {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 141px;
        height: 110px;
    }

    .chat-group-6 .graph-pie-container .graph, .chat-group-16 .graph-pie-container .graph {
        position: relative;
        left: initial;
    }

    .chat-group-6 .bubble-selection-lg .graph-line .graph-text, .chat-group-16 .bubble-selection-lg .graph-line .graph-text {
        top: -30px;
    }

    #chat .chat-wrapper .container {
        padding-bottom: 40vh;
    }
}

#dropDownFundSeries:disabled::after {
    content: "";
    margin: 0;
}

@media (min-width: 480px) {
    .chat-group-15 input[type=range].form-range-icons, .chat-group-15 .range-markers-icons, .chat-group-4 input[type=range].form-range-icons, .chat-group-4 .range-markers-icons {
        margin-left: 0;
        width: 100%;
    }
}

.chat-group-15 .range-markers-icons .marker.active, .chat-group-4 .range-markers-icons .marker.active {
    background: transparent;
}

.chat-group-15 .range-markers-icons .marker.selectable, .chat-group-4 .range-markers-icons .marker.selectable {
    background: transparent;
}

.chat-group-15 .range-markers-icons .marker, .chat-group-4 .range-markers-icons .marker {
    background: transparent;
}

.become-client-accounts .highlight-box, .become-client-accounts .intro-box .intro-block, .intro-box .become-client-accounts .intro-block {
    padding-top: 48px;
    padding-bottom: 4px;
}

.button.button-primary-outline {
    background-position: 100%;
}

#tabReferral .fa-star {
    color: #dc492f;
    font-size: 14px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .chat-group-6 .selection-scroll-container label .graph-text, .chat-group-16 .selection-scroll-container label .graph-text {
        top: -18px;
    }

    .chat-group-6 .selection-scroll-container label:last-child .graph-text, .chat-group-16 .selection-scroll-container label:last-child .graph-text {
        top: -25px;
        right: 28px;
    }
}

@media screen and (min-width: 768px) {
    #riskRatingModal .modal-dialog {
        width: 700px;
    }
}

@media screen and (min-width: 992px) {
    #riskRatingModal .modal-dialog {
        width: 900px;
    }
}

#filters.forms-filter .label {
    margin-bottom: 0;
}

#forms tbody tr.document td.last-child {
    width: 60px;
}

#old-articles tbody tr td.last-child {
    width: 52px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    input[type=range].form-range {
        border: none;
    }
}

input[type=range].form-range::-ms-track {
    border: 1px solid #444444;
    border-radius: 8px;
}

input[type=range].form-range::-ms-fill-lower {
    background: #0051a5 !important;
    border-radius: 8px;
}

@supports (-ms-ime-align: auto) {
    input[type=range].form-range {
        border: none;
    }
}

.ie9 .ie9-alert {
    display: block !important;
}

/*# sourceMappingURL=phn-contrast.css.map */
