
.mm-menu_theme-white {
    --mm-color-border: rgba(0,0,0,0.1);
    --mm-color-button: rgba(0,0,0,0.3);
    --mm-color-text: rgba(0,0,0,0.7);
    --mm-color-text-dimmed: rgba(0,0,0,0.3);
    --mm-color-background: #fff;
    --mm-color-background-highlight: rgba(0,0,0,0.06);
    --mm-color-background-emphasis: rgba(0,0,0,0.03);
    --mm-shadow: 0 0 10px rgba(0,0,0,0.2)
}

.mm-menu_theme-dark {
    --mm-color-border: rgba(0,0,0,0.3);
    --mm-color-button: rgba(255,255,255,0.4);
    --mm-color-text: rgba(255,255,255,0.85);
    --mm-color-text-dimmed: rgba(255,255,255,0.4);
    --mm-color-background: #333;
    --mm-color-background-highlight: rgba(255,255,255,0.08);
    --mm-color-background-emphasis: rgba(0,0,0,0.1);
    --mm-shadow: 0 0 20px rgba(0,0,0,0.5)
}

.mm-menu_theme-black {
    --mm-color-border: rgba(255,255,255,0.25);
    --mm-color-button: rgba(255,255,255,0.4);
    --mm-color-text: rgba(255,255,255,0.75);
    --mm-color-text-dimmed: rgba(255,255,255,0.4);
    --mm-color-background: #000;
    --mm-color-background-highlight: rgba(255,255,255,0.2);
    --mm-color-background-emphasis: rgba(255,255,255,0.15);
    --mm-shadow: none
}

:root {
    --mm-line-height: 20px;
    --mm-listitem-size: 44px;
    --mm-navbar-size: 44px;
    --mm-offset-top: 0;
    --mm-offset-right: 0;
    --mm-offset-bottom: 0;
    --mm-offset-left: 0;
    --mm-color-border: rgba(0,0,0,0.1);
    --mm-color-button: rgba(0,0,0,0.3);
    --mm-color-text: rgba(0,0,0,0.75);
    --mm-color-text-dimmed: rgba(0,0,0,0.3);
    --mm-color-background: #f3f3f3;
    --mm-color-background-highlight: rgba(0,0,0,0.05);
    --mm-color-background-emphasis: rgba(255,255,255,0.4);
    --mm-shadow: 0 0 10px rgba(0,0,0,0.3)
}

.mm-hidden {
    display: none!important
}

.mm-wrapper {
    overflow-x: hidden;
    position: relative
}

.mm-menu {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #f3f3f3;
    border-color: rgba(0,0,0,.1);
    color: rgba(0,0,0,.75);
    line-height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: var(--mm-offset-top);
    right: var(--mm-offset-right);
    bottom: var(--mm-offset-bottom);
    left: var(--mm-offset-left);
    z-index: 0;
    background: var(--mm-color-background);
    border-color: var(--mm-color-border);
    color: var(--mm-color-text);
    line-height: var(--mm-line-height);
    -webkit-tap-highlight-color: var(--mm-color-background-emphasis);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.mm-menu a,.mm-menu a:active,.mm-menu a:hover,.mm-menu a:link,.mm-menu a:visited {
    text-decoration: none;
    color: inherit
}

[dir=rtl] .mm-menu {
    direction: rtl
}

.mm-panel {
    background: #f3f3f3;
    border-color: rgba(0,0,0,.1);
    color: rgba(0,0,0,.75);
    z-index: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    overflow: scroll;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--mm-color-background);
    border-color: var(--mm-color-border);
    color: var(--mm-color-text);
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0);
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease,-webkit-transform .4s ease
}

.mm-panel:after {
    height: 44px
}

.mm-panel:not(.mm-hidden) {
    display: block
}

.mm-panel:after {
    content: '';
    display: block;
    height: var(--mm-listitem-size)
}

.mm-panel_opened {
    z-index: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.mm-panel_opened-parent {
    -webkit-transform: translate3d(-30%,0,0);
    transform: translate3d(-30%,0,0)
}

.mm-panel_highest {
    z-index: 2
}

.mm-panel_noanimation {
    -webkit-transition: none!important;
    -o-transition: none!important;
    transition: none!important
}

.mm-panel_noanimation.mm-panel_opened-parent {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.mm-panels>.mm-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0
}

.mm-panel__content {
    padding: 20px 20px 0
}

.mm-panels {
    background: #f3f3f3;
    border-color: rgba(0,0,0,.1);
    color: rgba(0,0,0,.75);
    position: relative;
    height: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    overflow: hidden;
    background: var(--mm-color-background);
    border-color: var(--mm-color-border);
    color: var(--mm-color-text)
}

[dir=rtl] .mm-panel:not(.mm-panel_opened) {
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0)
}

[dir=rtl] .mm-panel.mm-panel_opened-parent {
    -webkit-transform: translate3d(30%,0,0);
    transform: translate3d(30%,0,0)
}

.mm-listitem_vertical>.mm-panel {
    display: none;
    width: 100%;
    padding: 10px 0 10px 10px;
    -webkit-transform: none!important;
    -ms-transform: none!important;
    transform: none!important
}

.mm-listitem_vertical>.mm-panel:after,.mm-listitem_vertical>.mm-panel:before {
    content: none;
    display: none
}

.mm-listitem_opened>.mm-panel {
    display: block
}

.mm-listitem_vertical>.mm-listitem__btn {
    height: 44px;
    height: var(--mm-listitem-size);
    bottom: auto
}

.mm-listitem_vertical .mm-listitem:last-child:after {
    border-color: transparent
}

.mm-listitem_opened>.mm-listitem__btn:after {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    right: 19px
}

.mm-btn {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50px;
    padding: 0
}

.mm-btn:after,.mm-btn:before {
    border: 2px solid rgba(0,0,0,.3);
    border: 2px solid var(--mm-color-button)
}

.mm-btn_next:after,.mm-btn_prev:before {
    content: '';
    border-bottom: none;
    border-right: none;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: block;
    width: 8px;
    height: 8px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0
}

.mm-btn_prev:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 23px;
    right: auto
}

.mm-btn_next:after {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    right: 23px;
    left: auto
}

.mm-btn_close:after,.mm-btn_close:before {
    content: '';
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: block;
    width: 5px;
    height: 5px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.mm-btn_close:before {
    border-right: none;
    border-bottom: none;
    right: 18px
}

.mm-btn_close:after {
    border-left: none;
    border-top: none;
    right: 25px
}

[dir=rtl] .mm-btn_next:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 23px;
    right: auto
}

[dir=rtl] .mm-btn_prev:before {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    right: 23px;
    left: auto
}

[dir=rtl] .mm-btn_close:after,[dir=rtl] .mm-btn_close:before {
    right: auto
}

[dir=rtl] .mm-btn_close:before {
    left: 25px
}

[dir=rtl] .mm-btn_close:after {
    left: 18px
}

.mm-navbar {
    min-height: 44px;
    border-bottom: 1px solid rgba(0,0,0,.1);
    background: #f3f3f3;
    color: rgba(0,0,0,.3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: var(--mm-navbar-size);
    border-bottom: 1px solid var(--mm-color-border);
    background: var(--mm-color-background);
    color: var(--mm-color-text-dimmed);
    text-align: center;
    opacity: 1;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease
}

.mm-navbar>* {
    min-height: 44px
}

@supports ((position: -webkit-sticky) or (position:sticky)) {
    .mm-navbar_sticky {
        position:-webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1
    }
}

.mm-navbar>* {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.mm-navbar__btn {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0
}

.mm-navbar__title {
    line-height: 44px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    line-height: var(--mm-navbar-size)
}

.mm-navbar__title:not(:last-child) {
    padding-right: 0
}

.mm-navbar__btn:not(.mm-hidden)+.mm-navbar__title {
    padding-left: 0
}

.mm-navbar__btn:not(.mm-hidden)+.mm-navbar__title:last-child {
    padding-right: 50px
}

[dir=rtl] .mm-navbar {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.mm-listview {
    list-style: none;
    display: block;
    padding: 0;
    margin: 0
}

.mm-listitem {
    color: rgba(0,0,0,.75);
    border-color: rgba(0,0,0,.1);
    color: var(--mm-color-text);
    border-color: var(--mm-color-border);
    list-style: none;
    display: block;
    padding: 0;
    margin: 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.mm-listitem:after {
    content: '';
    border-color: inherit;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    display: block;
    position: absolute;
    left: 20px;
    right: 0;
    bottom: 0
}

.mm-listitem a,.mm-listitem a:hover {
    text-decoration: none
}

.mm-listitem__btn,.mm-listitem__text {
    padding: 12px;
    display: block;
    padding: calc((var(--mm-listitem-size) - var(--mm-line-height))/ 2);
    padding-left: 0;
    padding-right: 0;
    color: inherit
}

.mm-listitem__text {
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding-left: 20px;
    padding-right: 10px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%
}

.mm-listitem__btn {
    background: rgba(3,2,1,0);
    border-color: inherit;
    width: auto;
    padding-right: 50px;
    position: relative
}

.mm-listitem__btn:not(.mm-listitem__text) {
    border-left-width: 1px;
    border-left-style: solid
}

.mm-listitem_selected>.mm-listitem__text {
    background: rgba(255,255,255,.4);
    background: var(--mm-color-background-emphasis)
}

.mm-listitem_opened>.mm-listitem__btn,.mm-listitem_opened>.mm-panel {
    background: rgba(0,0,0,.05);
    background: var(--mm-color-background-highlight)
}

[dir=rtl] .mm-listitem:after {
    left: 0;
    right: 20px
}

[dir=rtl] .mm-listitem__text {
    padding-left: 10px;
    padding-right: 20px
}

[dir=rtl] .mm-listitem__btn {
    padding-left: 50px;
    border-left-width: 0;
    border-left-style: none
}

[dir=rtl] .mm-listitem__btn:not(.mm-listitem__text) {
    padding-right: 0;
    border-right-width: 1px;
    border-right-style: solid
}

.mm-page {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative
}

.mm-slideout {
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease,-webkit-transform .4s ease;
    z-index: 1
}

.mm-wrapper_opened {
    overflow-x: hidden;
    position: relative
}

.mm-wrapper_opened .mm-page {
    min-height: 100vh
}

.mm-wrapper_background .mm-page {
    background: inherit
}

.mm-menu_offcanvas {
    position: fixed;
    right: auto;
    z-index: 0
}

.mm-menu_offcanvas:not(.mm-menu_opened) {
    display: none
}

.mm-menu_offcanvas {
    width: 80%;
    min-width: 240px;
    max-width: 440px
}

.mm-wrapper_opening .mm-menu_offcanvas~.mm-slideout {
    -webkit-transform: translate3d(80vw,0,0);
    transform: translate3d(80vw,0,0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_offcanvas~.mm-slideout {
        -webkit-transform:translate3d(240px,0,0);
        transform: translate3d(240px,0,0)
    }
}

@media all and (min-width: 550px) {
    .mm-wrapper_opening .mm-menu_offcanvas~.mm-slideout {
        -webkit-transform:translate3d(440px,0,0);
        transform: translate3d(440px,0,0)
    }
}

.mm-wrapper__blocker {
    background: rgba(3,2,1,0);
    overflow: hidden;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2
}

.mm-wrapper_blocking {
    overflow: hidden
}

.mm-wrapper_blocking body {
    overflow: hidden
}

.mm-wrapper_blocking .mm-wrapper__blocker {
    display: block
}

.mm-sronly {
    border: 0!important;
    clip: rect(1px,1px,1px,1px)!important;
    -webkit-clip-path: inset(50%)!important;
    clip-path: inset(50%)!important;
    white-space: nowrap!important;
    width: 1px!important;
    min-width: 1px!important;
    height: 1px!important;
    min-height: 1px!important;
    padding: 0!important;
    overflow: hidden!important;
    position: absolute!important
}

.mm-menu_autoheight:not(.mm-menu_offcanvas) {
    position: relative
}

.mm-menu_autoheight.mm-menu_position-bottom,.mm-menu_autoheight.mm-menu_position-top {
    max-height: 80%
}

.mm-menu_autoheight-measuring .mm-panel {
    display: block!important
}

.mm-menu_autoheight-measuring .mm-panels>.mm-panel {
    bottom: auto!important;
    height: auto!important
}

.mm-menu_autoheight-measuring .mm-listitem_vertical:not(.mm-listitem_opened) .mm-panel {
    display: none!important
}

[class*=mm-menu_columns-] {
    -webkit-transition-property: width;
    -o-transition-property: width;
    transition-property: width
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel {
    right: auto;
    -webkit-transition-property: width,-webkit-transform;
    transition-property: width,-webkit-transform;
    -o-transition-property: width,transform;
    transition-property: width,transform;
    transition-property: width,transform,-webkit-transform
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_opened,[class*=mm-menu_columns-] .mm-panels>.mm-panel_opened-parent {
    display: block!important
}

[class*=mm-panel_columns-] {
    border-right: 1px solid;
    border-color: inherit
}

.mm-menu_columns-1 .mm-panel_columns-0,.mm-menu_columns-2 .mm-panel_columns-1,.mm-menu_columns-3 .mm-panel_columns-2,.mm-menu_columns-4 .mm-panel_columns-3 {
    border-right: none
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-0 {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.mm-menu_columns-0 .mm-panels>.mm-panel {
    z-index: 0
}

.mm-menu_columns-0 .mm-panels>.mm-panel else {
    width: 100%
}

.mm-menu_columns-0 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0)
}

.mm-menu_columns-0 {
    width: 80%;
    min-width: 240px;
    max-width: 0
}

.mm-wrapper_opening .mm-menu_columns-0~.mm-slideout {
    -webkit-transform: translate3d(80vw,0,0);
    transform: translate3d(80vw,0,0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-0~.mm-slideout {
        -webkit-transform:translate3d(240px,0,0);
        transform: translate3d(240px,0,0)
    }
}

@media all and (min-width: 0px) {
    .mm-wrapper_opening .mm-menu_columns-0~.mm-slideout {
        -webkit-transform:translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }
}

.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    -webkit-transform: translate3d(-80vw,0,0);
    transform: translate3d(-80vw,0,0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout {
        -webkit-transform:translate3d(-240px,0,0);
        transform: translate3d(-240px,0,0)
    }
}

@media all and (min-width: 0px) {
    .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout {
        -webkit-transform:translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-1 {
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0)
}

.mm-menu_columns-1 .mm-panels>.mm-panel {
    z-index: 1;
    width: 100%
}

.mm-menu_columns-1 .mm-panels>.mm-panel else {
    width: 100%
}

.mm-menu_columns-1 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
    -webkit-transform: translate3d(200%,0,0);
    transform: translate3d(200%,0,0)
}

.mm-menu_columns-1 {
    width: 80%;
    min-width: 240px;
    max-width: 440px
}

.mm-wrapper_opening .mm-menu_columns-1~.mm-slideout {
    -webkit-transform: translate3d(80vw,0,0);
    transform: translate3d(80vw,0,0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-1~.mm-slideout {
        -webkit-transform:translate3d(240px,0,0);
        transform: translate3d(240px,0,0)
    }
}

@media all and (min-width: 550px) {
    .mm-wrapper_opening .mm-menu_columns-1~.mm-slideout {
        -webkit-transform:translate3d(440px,0,0);
        transform: translate3d(440px,0,0)
    }
}

.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    -webkit-transform: translate3d(-80vw,0,0);
    transform: translate3d(-80vw,0,0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout {
        -webkit-transform:translate3d(-240px,0,0);
        transform: translate3d(-240px,0,0)
    }
}

@media all and (min-width: 550px) {
    .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout {
        -webkit-transform:translate3d(-440px,0,0);
        transform: translate3d(-440px,0,0)
    }
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-2 {
    -webkit-transform: translate3d(200%,0,0);
    transform: translate3d(200%,0,0)
}

.mm-menu_columns-2 .mm-panels>.mm-panel {
    z-index: 2;
    width: 50%
}

.mm-menu_columns-2 .mm-panels>.mm-panel else {
    width: 100%
}

.mm-menu_columns-2 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
    -webkit-transform: translate3d(300%,0,0);
    transform: translate3d(300%,0,0)
}

.mm-menu_columns-2 {
    width: 80%;
    min-width: 240px;
    max-width: 880px
}

.mm-wrapper_opening .mm-menu_columns-2~.mm-slideout {
    -webkit-transform: translate3d(80vw,0,0);
    transform: translate3d(80vw,0,0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-2~.mm-slideout {
        -webkit-transform:translate3d(240px,0,0);
        transform: translate3d(240px,0,0)
    }
}

@media all and (min-width: 1100px) {
    .mm-wrapper_opening .mm-menu_columns-2~.mm-slideout {
        -webkit-transform:translate3d(880px,0,0);
        transform: translate3d(880px,0,0)
    }
}

.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    -webkit-transform: translate3d(-80vw,0,0);
    transform: translate3d(-80vw,0,0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout {
        -webkit-transform:translate3d(-240px,0,0);
        transform: translate3d(-240px,0,0)
    }
}

@media all and (min-width: 1100px) {
    .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout {
        -webkit-transform:translate3d(-880px,0,0);
        transform: translate3d(-880px,0,0)
    }
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-3 {
    -webkit-transform: translate3d(300%,0,0);
    transform: translate3d(300%,0,0)
}

.mm-menu_columns-3 .mm-panels>.mm-panel {
    z-index: 3;
    width: 33.34%
}

.mm-menu_columns-3 .mm-panels>.mm-panel else {
    width: 100%
}

.mm-menu_columns-3 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
    -webkit-transform: translate3d(400%,0,0);
    transform: translate3d(400%,0,0)
}

.mm-menu_columns-3 {
    width: 80%;
    min-width: 240px;
    max-width: 1320px
}

.mm-wrapper_opening .mm-menu_columns-3~.mm-slideout {
    -webkit-transform: translate3d(80vw,0,0);
    transform: translate3d(80vw,0,0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-3~.mm-slideout {
        -webkit-transform:translate3d(240px,0,0);
        transform: translate3d(240px,0,0)
    }
}

@media all and (min-width: 1650px) {
    .mm-wrapper_opening .mm-menu_columns-3~.mm-slideout {
        -webkit-transform:translate3d(1320px,0,0);
        transform: translate3d(1320px,0,0)
    }
}

.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    -webkit-transform: translate3d(-80vw,0,0);
    transform: translate3d(-80vw,0,0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout {
        -webkit-transform:translate3d(-240px,0,0);
        transform: translate3d(-240px,0,0)
    }
}

@media all and (min-width: 1650px) {
    .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout {
        -webkit-transform:translate3d(-1320px,0,0);
        transform: translate3d(-1320px,0,0)
    }
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-4 {
    -webkit-transform: translate3d(400%,0,0);
    transform: translate3d(400%,0,0)
}

.mm-menu_columns-4 .mm-panels>.mm-panel {
    z-index: 4;
    width: 25%
}

.mm-menu_columns-4 .mm-panels>.mm-panel else {
    width: 100%
}

.mm-menu_columns-4 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
    -webkit-transform: translate3d(500%,0,0);
    transform: translate3d(500%,0,0)
}

.mm-menu_columns-4 {
    width: 80%;
    min-width: 240px;
    max-width: 1760px
}

.mm-wrapper_opening .mm-menu_columns-4~.mm-slideout {
    -webkit-transform: translate3d(80vw,0,0);
    transform: translate3d(80vw,0,0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-4~.mm-slideout {
        -webkit-transform:translate3d(240px,0,0);
        transform: translate3d(240px,0,0)
    }
}

@media all and (min-width: 2200px) {
    .mm-wrapper_opening .mm-menu_columns-4~.mm-slideout {
        -webkit-transform:translate3d(1760px,0,0);
        transform: translate3d(1760px,0,0)
    }
}

.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    -webkit-transform: translate3d(-80vw,0,0);
    transform: translate3d(-80vw,0,0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout {
        -webkit-transform:translate3d(-240px,0,0);
        transform: translate3d(-240px,0,0)
    }
}

@media all and (min-width: 2200px) {
    .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout {
        -webkit-transform:translate3d(-1760px,0,0);
        transform: translate3d(-1760px,0,0)
    }
}

[class*=mm-menu_columns-].mm-menu_position-bottom,[class*=mm-menu_columns-].mm-menu_position-top {
    width: 100%;
    max-width: 100%;
    min-width: 100%
}

.mm-wrapper_opening [class*=mm-menu_columns-].mm-menu_position-front {
    -webkit-transition-property: width,min-width,max-width,-webkit-transform;
    transition-property: width,min-width,max-width,-webkit-transform;
    -o-transition-property: width,min-width,max-width,transform;
    transition-property: width,min-width,max-width,transform;
    transition-property: width,min-width,max-width,transform,-webkit-transform
}

.mm-counter {
    color: rgba(0,0,0,.3);
    display: block;
    padding-left: 20px;
    float: right;
    text-align: right;
    color: var(--mm-color-text-dimmed)
}

.mm-listitem_nosubitems>.mm-counter {
    display: none
}

[dir=rtl] .mm-counter {
    text-align: left;
    float: left;
    padding-left: 0;
    padding-right: 20px
}

.mm-divider {
    position: relative;
    min-height: 20px;
    padding: 4.3px;
    background: #f3f3f3;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    min-height: var(--mm-line-height);
    padding: calc(((var(--mm-listitem-size) * .65) - var(--mm-line-height)) * .5);
    padding-right: 10px;
    padding-left: 20px;
    font-size: 75%;
    text-transform: uppercase;
    background: var(--mm-color-background);
    opacity: 1;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease
}

.mm-divider:before {
    background: rgba(0,0,0,.05)
}

@supports ((position: -webkit-sticky) or (position:sticky)) {
    .mm-divider {
        position:-webkit-sticky;
        position: sticky;
        z-index: 2;
        top: 0
    }

    .mm-navbar_sticky:not(.mm-hidden)~.mm-listview .mm-divider {
        top: var(--mm-navbar-size)
    }
}

.mm-divider:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: var(--mm-color-background-highlight)
}

.mm-wrapper_dragging .mm-menu,.mm-wrapper_dragging .mm-slideout {
    -webkit-transition-duration: 0s!important;
    -o-transition-duration: 0s!important;
    transition-duration: 0s!important;
    -webkit-user-select: none!important;
    -moz-user-select: none!important;
    -ms-user-select: none!important;
    user-select: none!important
}

.mm-wrapper_dragging .mm-menu {
    pointer-events: none!important
}

.mm-wrapper_dragging .mm-wrapper__blocker {
    display: none!important
}

.mm-menu_dropdown {
    -webkit-box-shadow: 0 2px 10px rgba(0,0,0,.3);
    box-shadow: 0 2px 10px rgba(0,0,0,.3);
    height: 80%
}

.mm-wrapper_dropdown .mm-slideout {
    -webkit-transform: none!important;
    -ms-transform: none!important;
    transform: none!important;
    z-index: 0
}

.mm-wrapper_dropdown .mm-wrapper__blocker {
    -webkit-transition-delay: 0s!important;
    -o-transition-delay: 0s!important;
    transition-delay: 0s!important;
    z-index: 1
}

.mm-wrapper_dropdown .mm-menu_dropdown {
    z-index: 2
}

.mm-wrapper_dropdown.mm-wrapper_opened:not(.mm-wrapper_opening) .mm-menu_dropdown {
    display: none
}

.mm-menu_tip-bottom:before,.mm-menu_tip-left:before,.mm-menu_tip-right:before,.mm-menu_tip-top:before {
    content: '';
    background: inherit;
    -webkit-box-shadow: 0 2px 10px rgba(0,0,0,.3);
    box-shadow: 0 2px 10px rgba(0,0,0,.3);
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    z-index: -1;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.mm-menu_tip-left:before {
    left: 22px
}

.mm-menu_tip-right:before {
    right: 22px
}

.mm-menu_tip-top:before {
    top: -8px
}

.mm-menu_tip-bottom:before {
    bottom: -8px
}

:root {
    --mm-iconbar-size: 50px
}

.mm-menu_iconbar-left .mm-navbars_bottom,.mm-menu_iconbar-left .mm-navbars_top,.mm-menu_iconbar-left .mm-panels {
    margin-left: 50px;
    margin-left: var(--mm-iconbar-size)
}

.mm-menu_iconbar-left .mm-iconbar {
    border-right-width: 1px;
    display: block;
    left: 0
}

.mm-menu_iconbar-right .mm-navbars_bottom,.mm-menu_iconbar-right .mm-navbars_top,.mm-menu_iconbar-right .mm-panels {
    margin-right: 50px;
    margin-right: var(--mm-iconbar-size)
}

.mm-menu_iconbar-right .mm-iconbar {
    border-left-width: 1px;
    display: block;
    right: 0
}

.mm-iconbar {
    width: 50px;
    border-color: rgba(0,0,0,.1);
    background: #f3f3f3;
    color: rgba(0,0,0,.3);
    display: none;
    width: var(--mm-iconbar-size);
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    border: 0 solid;
    border-color: var(--mm-color-border);
    background: var(--mm-color-background);
    color: var(--mm-color-text-dimmed);
    text-align: center
}

.mm-iconbar__bottom,.mm-iconbar__top {
    width: inherit;
    position: absolute
}

.mm-iconbar__bottom>*,.mm-iconbar__top>* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    padding: 12.5px 0
}

.mm-iconbar__bottom a,.mm-iconbar__bottom a:hover,.mm-iconbar__top a,.mm-iconbar__top a:hover {
    text-decoration: none
}

.mm-iconbar__top {
    top: 0
}

.mm-iconbar__bottom {
    bottom: 0
}

.mm-iconbar__tab_selected {
    background: rgba(255,255,255,.4);
    background: var(--mm-color-background-emphasis)
}

:root {
    --mm-iconpanel-size: 50px
}

.mm-panel_iconpanel-1 {
    width: calc(100% - 50px);
    width: calc(100% - (var(--mm-iconpanel-size) * 1))
}

.mm-panel_iconpanel-2 {
    width: calc(100% - 100px);
    width: calc(100% - (var(--mm-iconpanel-size) * 2))
}

.mm-panel_iconpanel-3 {
    width: calc(100% - 150px);
    width: calc(100% - (var(--mm-iconpanel-size) * 3))
}

.mm-panel_iconpanel-first~.mm-panel {
    width: calc(100% - 50px);
    width: calc(100% - var(--mm-iconpanel-size))
}

.mm-menu_iconpanel .mm-panels>.mm-panel {
    left: auto;
    -webkit-transition-property: width,-webkit-transform;
    transition-property: width,-webkit-transform;
    -o-transition-property: transform,width;
    transition-property: transform,width;
    transition-property: transform,width,-webkit-transform
}

.mm-menu_iconpanel .mm-panels>.mm-panel_opened,.mm-menu_iconpanel .mm-panels>.mm-panel_opened-parent {
    display: block!important
}

.mm-menu_iconpanel .mm-panels>.mm-panel_opened-parent {
    overflow-y: hidden;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset
}

.mm-menu_iconpanel .mm-panels>.mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
    border-left-width: 1px;
    border-left-style: solid
}

.mm-menu_hidedivider .mm-panel_opened-parent .mm-divider,.mm-menu_hidenavbar .mm-panel_opened-parent .mm-navbar {
    opacity: 0
}

.mm-panel__blocker {
    background: inherit;
    opacity: 0;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 3;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease
}

.mm-panel_opened-parent .mm-panel__blocker {
    opacity: .6;
    bottom: -100000px
}

[dir=rtl] .mm-menu_iconpanel .mm-panels>.mm-panel {
    left: 0;
    right: auto;
    -webkit-transition-property: width,-webkit-transform;
    transition-property: width,-webkit-transform;
    -o-transition-property: transform,width;
    transition-property: transform,width;
    transition-property: transform,width,-webkit-transform
}

[dir=rtl] .mm-menu_iconpanel .mm-panels>.mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
    border-left: none;
    border-right: 1px solid;
    border-color: inherit
}

.mm-menu_keyboardfocus a:focus,.mm-menu_keyboardfocus.mm-menu_opened~.mm-wrapper__blocker a:focus {
    background: rgba(255,255,255,.4);
    background: var(--mm-color-background-emphasis);
    outline: 0
}

.mm-wrapper__blocker .mm-tabstart {
    cursor: default;
    display: block;
    width: 100%;
    height: 100%
}

.mm-wrapper__blocker .mm-tabend {
    opacity: 0;
    position: absolute;
    bottom: 0
}

.mm-navbars_top {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.mm-navbars_top .mm-navbar:not(:last-child) {
    border-bottom: none
}

.mm-navbars_bottom {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.mm-navbars_bottom .mm-navbar {
    border-bottom: none
}

.mm-navbars_bottom .mm-navbar:first-child {
    border-top: 1px solid rgba(0,0,0,.1);
    border-top: 1px solid var(--mm-color-border)
}

.mm-btn:not(.mm-hidden)+.mm-navbar__searchfield .mm-searchfield__input {
    padding-left: 0
}

.mm-navbar__searchfield:not(:last-child) .mm-searchfield__input {
    padding-right: 0
}

.mm-navbar__breadcrumbs {
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.mm-navbar__breadcrumbs>* {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-right: 6px
}

.mm-navbar__breadcrumbs>a {
    text-decoration: underline
}

.mm-navbar__breadcrumbs:not(:last-child) {
    padding-right: 0
}

.mm-btn:not(.mm-hidden)+.mm-navbar__breadcrumbs {
    padding-left: 0
}

.mm-navbar_tabs>* {
    padding: 0 10px;
    border: 1px solid transparent
}

.mm-navbar__tab_selected {
    background: #f3f3f3;
    color: rgba(0,0,0,.75);
    background: var(--mm-color-background);
    color: var(--mm-color-text)
}

.mm-navbar__tab_selected:not(:first-child) {
    border-left-color: rgba(0,0,0,.1)
}

.mm-navbar__tab_selected:not(:last-child) {
    border-right-color: rgba(0,0,0,.1)
}

.mm-navbar__tab_selected:not(:first-child) {
    border-left-color: var(--mm-color-border)
}

.mm-navbar__tab_selected:not(:last-child) {
    border-right-color: var(--mm-color-border)
}

.mm-navbars_top .mm-navbar_tabs {
    border-bottom: none
}

.mm-navbars_top .mm-navbar_tabs>* {
    border-bottom-color: rgba(0,0,0,.1);
    border-bottom-color: var(--mm-color-border)
}

.mm-navbars_top .mm-navbar__tab_selected {
    border-top-color: rgba(0,0,0,.1);
    border-top-color: var(--mm-color-border);
    border-bottom-color: transparent
}

.mm-navbars_top.mm-navbars_has-tabs .mm-navbar {
    background: rgba(255,255,255,.4);
    background: var(--mm-color-background-emphasis)
}

.mm-navbars_top.mm-navbars_has-tabs .mm-navbar_tabs~.mm-navbar {
    background: #f3f3f3;
    background: var(--mm-color-background)
}

.mm-navbars_bottom .mm-navbar_tabs:first-child {
    border-top: none
}

.mm-navbars_bottom .mm-navbar_tabs>* {
    border-top-color: rgba(0,0,0,.1);
    border-top-color: var(--mm-color-border)
}

.mm-navbars_bottom .mm-navbar__tab_selected {
    border-bottom-color: rgba(0,0,0,.1);
    border-bottom-color: var(--mm-color-border);
    border-top-color: transparent
}

.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar {
    background: #f3f3f3;
    background: var(--mm-color-background)
}

.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs,.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs~.mm-navbar {
    background: rgba(255,255,255,.4);
    background: var(--mm-color-background-emphasis)
}

.mm-searchfield {
    height: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: var(--mm-navbar-size);
    padding: 0;
    overflow: hidden
}

.mm-searchfield input {
    height: 30.8px;
    line-height: 30.8px
}

.mm-searchfield input,.mm-searchfield input:focus,.mm-searchfield input:hover {
    background: rgba(0,0,0,.05);
    color: rgba(0,0,0,.75)
}

.mm-searchfield input {
    display: block;
    width: 100%;
    max-width: 100%;
    height: calc(var(--mm-navbar-size) * .7);
    min-height: unset;
    max-height: unset;
    margin: 0;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: none!important;
    border-radius: 4px;
    line-height: calc(var(--mm-navbar-size) * .7);
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
    outline: 0!important;
    font: inherit;
    font-size: inherit
}

.mm-searchfield input,.mm-searchfield input:focus,.mm-searchfield input:hover {
    background: var(--mm-color-background-highlight);
    color: var(--mm-color-text)
}

.mm-searchfield input::-ms-clear {
    display: none
}

.mm-searchfield__input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.mm-panel__noresultsmsg {
    color: rgba(0,0,0,.3);
    padding: 50px 0;
    color: var(--mm-color-text-dimmed);
    text-align: center;
    font-size: 150%
}

.mm-searchfield__btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0
}

.mm-panel_search {
    left: 0!important;
    right: 0!important;
    width: 100%!important;
    border-left: none!important
}

.mm-searchfield__cancel {
    line-height: 44px;
    display: block;
    padding-right: 10px;
    margin-right: -100px;
    line-height: var(--mm-navbar-size);
    text-decoration: none;
    -webkit-transition: margin .4s ease;
    -o-transition: margin .4s ease;
    transition: margin .4s ease
}

.mm-searchfield__cancel-active {
    margin-right: 0
}

.mm-listitem_nosubitems>.mm-listitem__btn {
    display: none
}

.mm-listitem_nosubitems>.mm-listitem__text {
    padding-right: 10px
}

.mm-listitem_onlysubitems>.mm-listitem__text:not(.mm-listitem__btn) {
    z-index: -1;
    pointer-events: none
}

.mm-sectionindexer {
    background: inherit;
    text-align: center;
    font-size: 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -20px;
    z-index: 5;
    -webkit-transition: right .4s ease;
    -o-transition: right .4s ease;
    transition: right .4s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly
}

.mm-sectionindexer a {
    color: rgba(0,0,0,.3);
    color: var(--mm-color-text-dimmed);
    line-height: 1;
    text-decoration: none;
    display: block
}

.mm-sectionindexer~.mm-panel {
    padding-right: 0
}

.mm-sectionindexer_active {
    right: 0
}

.mm-sectionindexer_active~.mm-panel {
    padding-right: 20px
}

.mm-menu_selected-hover .mm-listitem__btn,.mm-menu_selected-hover .mm-listitem__text,.mm-menu_selected-parent .mm-listitem__btn,.mm-menu_selected-parent .mm-listitem__text {
    -webkit-transition: background-color .4s ease;
    -o-transition: background-color .4s ease;
    transition: background-color .4s ease
}

.mm-menu_selected-hover .mm-listview:hover>.mm-listitem_selected>.mm-listitem__text {
    background: 0 0
}

.mm-menu_selected-hover .mm-listitem__btn:hover,.mm-menu_selected-hover .mm-listitem__text:hover {
    background: rgba(255,255,255,.4);
    background: var(--mm-color-background-emphasis)
}

.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent)>.mm-listitem__text {
    background: 0 0
}

.mm-menu_selected-parent .mm-listitem_selected-parent>.mm-listitem__btn,.mm-menu_selected-parent .mm-listitem_selected-parent>.mm-listitem__text {
    background: rgba(255,255,255,.4);
    background: var(--mm-color-background-emphasis)
}

:root {
    --mm-sidebar-collapsed-size: 50px;
    --mm-sidebar-expanded-size: 440px
}

.mm-wrapper_sidebar-collapsed body,.mm-wrapper_sidebar-expanded body {
    position: relative
}

.mm-wrapper_sidebar-collapsed .mm-slideout,.mm-wrapper_sidebar-expanded .mm-slideout {
    -webkit-transition-property: width,-webkit-transform;
    transition-property: width,-webkit-transform;
    -o-transition-property: width,transform;
    transition-property: width,transform;
    transition-property: width,transform,-webkit-transform
}

.mm-wrapper_sidebar-collapsed .mm-page,.mm-wrapper_sidebar-expanded .mm-page {
    background: inherit;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 100vh
}

.mm-wrapper_sidebar-collapsed .mm-menu_sidebar-collapsed,.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    top: 0!important;
    right: auto!important;
    bottom: 0!important;
    left: 0!important
}

.mm-wrapper_sidebar-collapsed .mm-slideout {
    width: calc(100% - 50px);
    -webkit-transform: translate3d(50px,0,0);
    transform: translate3d(50px,0,0);
    width: calc(100% - var(--mm-sidebar-collapsed-size));
    -webkit-transform: translate3d(var(--mm-sidebar-collapsed-size),0,0);
    transform: translate3d(var(--mm-sidebar-collapsed-size),0,0)
}

.mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidedivider .mm-divider,.mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidenavbar .mm-navbar {
    opacity: 0
}

.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
    width: 440px;
    width: var(--mm-sidebar-expanded-size);
    min-width: 0!important;
    max-width: 100000px!important;
    border-right-width: 1px;
    border-right-style: solid
}

.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded.mm-menu_pageshadow:after {
    content: none;
    display: none
}

.mm-wrapper_sidebar-expanded.mm-wrapper_blocking,.mm-wrapper_sidebar-expanded.mm-wrapper_blocking body {
    overflow: visible
}

.mm-wrapper_sidebar-expanded .mm-wrapper__blocker {
    display: none!important
}

.mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened~.mm-slideout {
    width: calc(100% - 440px);
    -webkit-transform: translate3d(440px,0,0);
    transform: translate3d(440px,0,0);
    width: calc(100% - var(--mm-sidebar-expanded-size));
    -webkit-transform: translate3d(var(--mm-sidebar-expanded-size),0,0);
    transform: translate3d(var(--mm-sidebar-expanded-size),0,0)
}

.mm-menu__blocker {
    background: rgba(3,2,1,0);
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3
}

.mm-menu_opened .mm-menu__blocker {
    display: none
}

[dir=rtl].mm-wrapper_sidebar-collapsed .mm-slideout {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

[dir=rtl].mm-wrapper_sidebar-expanded .mm-slideout {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

[dir=rtl].mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened~.mm-slideout {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

input.mm-toggle {
    margin-top: 5px;
    background: rgba(0,0,0,.1);
    display: inline-block;
    min-width: 58px;
    width: 58px;
    height: 34px;
    margin: 0 10px;
    margin-top: calc((var(--mm-listitem-size) - 34px)/ 2);
    border: none!important;
    background: var(--mm-color-border);
    border-radius: 34px;
    -webkit-appearance: none!important;
    -moz-appearance: none!important;
    appearance: none!important;
    cursor: pointer;
    -webkit-transition: background-color .2s ease;
    -o-transition: background-color .2s ease;
    transition: background-color .2s ease
}

input.mm-toggle:before {
    background: #f3f3f3
}

input.mm-toggle:before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    margin: 1px;
    border-radius: 34px;
    background: var(--mm-color-background);
    -webkit-transition: -webkit-transform .2s ease;
    transition: -webkit-transform .2s ease;
    -o-transition: transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease,-webkit-transform .2s ease
}

input.mm-toggle:checked {
    background: #4bd963
}

input.mm-toggle:checked:before {
    -webkit-transform: translateX(24px);
    -ms-transform: translateX(24px);
    transform: translateX(24px)
}

input.mm-check {
    margin-top: 2px;
    -webkit-appearance: none!important;
    -moz-appearance: none!important;
    appearance: none!important;
    border: none!important;
    background: 0 0!important;
    cursor: pointer;
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 10px;
    margin-top: calc((var(--mm-listitem-size) - 40px)/ 2)
}

input.mm-check:before {
    content: '';
    display: block;
    width: 40%;
    height: 20%;
    margin: 25% 0 0 20%;
    border-left: 3px solid;
    border-bottom: 3px solid;
    border-color: var(--mm-color-text);
    opacity: .3;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease
}

input.mm-check:checked:before {
    opacity: 1
}

[dir=rtl] input.mm-toggle:checked~label.mm-toggle:before {
    float: left
}

.mm-menu_border-none .mm-listitem:after {
    content: none
}

.mm-menu_border-full .mm-listitem:after {
    left: 0!important
}

.mm-menu_fx-menu-slide {
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease,-webkit-transform .4s ease
}

.mm-wrapper_opened .mm-menu_fx-menu-slide {
    -webkit-transform: translate3d(-30%,0,0);
    transform: translate3d(-30%,0,0)
}

.mm-wrapper_opening .mm-menu_fx-menu-slide {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.mm-wrapper_opened .mm-menu_fx-menu-slide.mm-menu_position-right {
    -webkit-transform: translate3d(30%,0,0);
    transform: translate3d(30%,0,0)
}

.mm-wrapper_opening .mm-menu_fx-menu-slide.mm-menu_position-right {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.mm-menu_fx-panels-none .mm-panel,.mm-panel_fx-none {
    -webkit-transition-property: none;
    -o-transition-property: none;
    transition-property: none
}

.mm-menu_fx-panels-none .mm-panel.mm-panel_opened-parent,.mm-panel_fx-none.mm-panel_opened-parent {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.mm-menu_fx-panels-slide-0 .mm-panel_opened-parent {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.mm-menu_fx-panels-slide-100 .mm-panel_opened-parent {
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0)
}

.mm-menu_fullscreen {
    width: 100%;
    min-width: 140px;
    max-width: 10000px
}

.mm-wrapper_opening .mm-menu_fullscreen~.mm-slideout {
    -webkit-transform: translate3d(100vw,0,0);
    transform: translate3d(100vw,0,0)
}

@media all and (max-width: 140px) {
    .mm-wrapper_opening .mm-menu_fullscreen~.mm-slideout {
        -webkit-transform:translate3d(140px,0,0);
        transform: translate3d(140px,0,0)
    }
}

@media all and (min-width: 10000px) {
    .mm-wrapper_opening .mm-menu_fullscreen~.mm-slideout {
        -webkit-transform:translate3d(10000px,0,0);
        transform: translate3d(10000px,0,0)
    }
}

.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    -webkit-transform: translate3d(-100vw,0,0);
    transform: translate3d(-100vw,0,0)
}

@media all and (max-width: 140px) {
    .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout {
        -webkit-transform:translate3d(-140px,0,0);
        transform: translate3d(-140px,0,0)
    }
}

@media all and (min-width: 10000px) {
    .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout {
        -webkit-transform:translate3d(-10000px,0,0);
        transform: translate3d(-10000px,0,0)
    }
}

.mm-menu_fullscreen.mm-menu_position-top {
    height: 100vh;
    min-height: 140px;
    max-height: 10000px
}

.mm-menu_fullscreen.mm-menu_position-bottom {
    height: 100vh;
    min-height: 140px;
    max-height: 10000px
}

.mm-menu_listview-justify .mm-panels>.mm-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.mm-menu_listview-justify .mm-panels>.mm-panel:after {
    content: none;
    display: none
}

.mm-menu_listview-justify .mm-panels>.mm-panel .mm-listview {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    margin-top: 0;
    margin-bottom: 0
}

.mm-menu_listview-justify .mm-panels>.mm-panel .mm-listitem {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    min-height: 50px
}

.mm-menu_listview-justify .mm-panels>.mm-panel .mm-listitem__text {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.mm-listview_inset {
    list-style: inside disc;
    width: 100%;
    padding: 0 30px 15px 30px;
    margin: 0
}

.mm-listview_inset .mm-listitem {
    padding: 5px 0
}

.mm-menu_multiline .mm-listitem__text {
    -o-text-overflow: clip;
    text-overflow: clip;
    white-space: normal
}

[class*=mm-menu_pagedim].mm-menu_opened~.mm-wrapper__blocker {
    opacity: 0
}

.mm-wrapper_opening [class*=mm-menu_pagedim].mm-menu_opened~.mm-wrapper__blocker {
    opacity: .3;
    -webkit-transition: opacity .4s ease .4s;
    -o-transition: opacity .4s ease .4s;
    transition: opacity .4s ease .4s
}

.mm-menu_opened.mm-menu_pagedim~.mm-wrapper__blocker {
    background: inherit
}

.mm-menu_opened.mm-menu_pagedim-black~.mm-wrapper__blocker {
    background: #000
}

.mm-menu_opened.mm-menu_pagedim-white~.mm-wrapper__blocker {
    background: #fff
}

.mm-menu_popup {
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
    opacity: 0;
    -webkit-box-shadow: 0 2px 10px rgba(0,0,0,.3);
    box-shadow: 0 2px 10px rgba(0,0,0,.3);
    height: 80%;
    min-height: 140px;
    max-height: 880px;
    top: 50%;
    left: 50%;
    bottom: auto;
    right: auto;
    z-index: 2;
    -webkit-transform: translate3d(-50%,-50%,0);
    transform: translate3d(-50%,-50%,0)
}

.mm-menu_popup.mm-menu_opened~.mm-slideout {
    -webkit-transform: none!important;
    -ms-transform: none!important;
    transform: none!important;
    z-index: 0
}

.mm-menu_popup.mm-menu_opened~.mm-wrapper__blocker {
    -webkit-transition-delay: 0s!important;
    -o-transition-delay: 0s!important;
    transition-delay: 0s!important;
    z-index: 1
}

.mm-wrapper_opening .mm-menu_popup {
    opacity: 1
}

.mm-menu_position-right {
    left: auto;
    right: 0
}

.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout {
    -webkit-transform: translate3d(-80vw,0,0);
    transform: translate3d(-80vw,0,0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout {
        -webkit-transform:translate3d(-240px,0,0);
        transform: translate3d(-240px,0,0)
    }
}

@media all and (min-width: 550px) {
    .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout {
        -webkit-transform:translate3d(-440px,0,0);
        transform: translate3d(-440px,0,0)
    }
}

.mm-menu_position-bottom,.mm-menu_position-front,.mm-menu_position-top {
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease,-webkit-transform .4s ease
}

.mm-menu_position-bottom.mm-menu_opened,.mm-menu_position-front.mm-menu_opened,.mm-menu_position-top.mm-menu_opened {
    z-index: 2
}

.mm-menu_position-bottom.mm-menu_opened~.mm-slideout,.mm-menu_position-front.mm-menu_opened~.mm-slideout,.mm-menu_position-top.mm-menu_opened~.mm-slideout {
    -webkit-transform: none!important;
    -ms-transform: none!important;
    transform: none!important;
    z-index: 0
}

.mm-menu_position-bottom.mm-menu_opened~.mm-wrapper__blocker,.mm-menu_position-front.mm-menu_opened~.mm-wrapper__blocker,.mm-menu_position-top.mm-menu_opened~.mm-wrapper__blocker {
    z-index: 1
}

.mm-menu_position-front {
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0)
}

.mm-menu_position-front.mm-menu_position-right {
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0)
}

.mm-menu_position-bottom,.mm-menu_position-top {
    width: 100%;
    min-width: 100%;
    max-width: 100%
}

.mm-menu_position-top {
    -webkit-transform: translate3d(0,-100%,0);
    transform: translate3d(0,-100%,0)
}

.mm-menu_position-top {
    height: 80vh;
    min-height: 140px;
    max-height: 880px
}

.mm-menu_position-bottom {
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
    top: auto
}

.mm-menu_position-bottom {
    height: 80vh;
    min-height: 140px;
    max-height: 880px
}

.mm-wrapper_opening .mm-menu_position-bottom,.mm-wrapper_opening .mm-menu_position-front,.mm-wrapper_opening .mm-menu_position-top {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.mm-menu_shadow-page:after {
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.3);
    box-shadow: 0 0 10px rgba(0,0,0,.3);
    content: '';
    display: block;
    width: 20px;
    height: 120%;
    position: absolute;
    left: 100%;
    top: -10%;
    z-index: 100;
    -webkit-clip-path: polygon(-20px 0,0 0,0 100%,-20px 100%);
    clip-path: polygon(-20px 0,0 0,0 100%,-20px 100%);
    -webkit-box-shadow: var(--mm-shadow);
    box-shadow: var(--mm-shadow)
}

.mm-menu_shadow-page.mm-menu_position-right:after {
    left: auto;
    right: 100%;
    -webkit-clip-path: polygon(20px 0,40px 0,40px 100%,20px 100%);
    clip-path: polygon(20px 0,40px 0,40px 100%,20px 100%)
}

.mm-menu_shadow-page.mm-menu_position-front:after {
    content: none;
    display: none
}

.mm-menu_shadow-menu {
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.3);
    box-shadow: 0 0 10px rgba(0,0,0,.3);
    -webkit-box-shadow: var(--mm-shadow);
    box-shadow: var(--mm-shadow)
}

.mm-menu_shadow-panels .mm-panels>.mm-panel {
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.3);
    box-shadow: 0 0 10px rgba(0,0,0,.3);
    -webkit-box-shadow: var(--mm-shadow);
    box-shadow: var(--mm-shadow)
}

.mm-menu_tileview .mm-listview,.mm-panel_tileview .mm-listview {
    margin: 0!important
}

.mm-menu_tileview .mm-listview:after,.mm-panel_tileview .mm-listview:after {
    content: '';
    display: block;
    clear: both
}

.mm-menu_tileview .mm-listitem,.mm-panel_tileview .mm-listitem {
    padding: 0;
    float: left;
    position: relative;
    width: 50%;
    height: 0;
    padding-top: 50%
}

.mm-menu_tileview .mm-listitem:after,.mm-panel_tileview .mm-listitem:after {
    left: 0;
    top: 0;
    border-right-width: 1px;
    border-right-style: solid;
    z-index: -1
}

.mm-menu_tileview .mm-listitem.mm-tile-xs,.mm-panel_tileview .mm-listitem.mm-tile-xs {
    width: 12.5%;
    padding-top: 12.5%
}

.mm-menu_tileview .mm-listitem.mm-tile-s,.mm-panel_tileview .mm-listitem.mm-tile-s {
    width: 25%;
    padding-top: 25%
}

.mm-menu_tileview .mm-listitem.mm-tile-l,.mm-panel_tileview .mm-listitem.mm-tile-l {
    width: 75%;
    padding-top: 75%
}

.mm-menu_tileview .mm-listitem.mm-tile-xl,.mm-panel_tileview .mm-listitem.mm-tile-xl {
    width: 100%;
    padding-top: 100%
}

.mm-menu_tileview .mm-listitem__text,.mm-panel_tileview .mm-listitem__text {
    line-height: 1px;
    text-align: center;
    padding: 50% 10px 0 10px;
    margin: 0;
    position: absolute;
    top: 0;
    right: 1px;
    bottom: 1px;
    left: 0
}

.mm-menu_tileview .mm-listitem__btn,.mm-panel_tileview .mm-listitem__btn {
    width: auto
}

.mm-menu_tileview .mm-listitem__btn:after,.mm-menu_tileview .mm-listitem__btn:before,.mm-panel_tileview .mm-listitem__btn:after,.mm-panel_tileview .mm-listitem__btn:before {
    content: none;
    display: none
}

.mm-menu_tileview .mm-divider,.mm-panel_tileview .mm-divider {
    display: none
}

.mm-menu_tileview .mm-panel,.mm-panel_tileview {
    padding-left: 0;
    padding-right: 0
}

.mm-menu_tileview .mm-panel:after,.mm-menu_tileview .mm-panel:before,.mm-panel_tileview:after,.mm-panel_tileview:before {
    content: none;
    display: none
}

body.modal-open .mm-slideout {
    z-index: unset
}

@media print {
    *,:after,:before {
        box-shadow: none!important;
        text-shadow: none!important
    }

    a:not(.btn) {
        text-decoration: underline
    }

    abbr[title]:after {
        content: " (" attr(title) ")"
    }

    pre {
        white-space: pre-wrap!important
    }

    blockquote,pre {
        border: 1px solid #adb5bd;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    img,tr {
        page-break-inside: avoid
    }

    h2,h3,p {
        orphans: 3;
        widows: 3
    }

    h2,h3 {
        page-break-after: avoid
    }

    @page {
        size: a3
    }

    .container,body {
        min-width: 992px!important
    }

    .navbar {
        display: none
    }

    .badge {
        border: 1px solid #000
    }

    .table {
        border-collapse: collapse!important
    }

    .table td,.table th {
        background-color: #fff!important
    }

    .table-bordered td,.table-bordered th {
        border: 1px solid #dee2e6!important
    }

    .table-dark {
        color: inherit
    }

    .table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th {
        border-color: #dee2e6
    }

    .table .thead-dark th {
        border-color: #dee2e6;
        color: inherit
    }
}

*,:after,:before {
    box-sizing: border-box
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    font-family: sans-serif;
    line-height: 1.15
}

article,aside,figcaption,figure,footer,header,hgroup,main,nav,section {
    display: block
}

body {
    background-color: #fff;
    color: #414141;
    font-family: Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    text-align: left
}

[tabindex="-1"]:focus {
    outline: 0!important
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

h1,h2,h3,h4,h5,h6 {
    margin-bottom: 1.667rem;
    margin-top: 0
}

p {
    margin-bottom: 1rem;
    margin-top: 0
}

abbr[data-original-title],abbr[title] {
    border-bottom: 0;
    cursor: help;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none
}

address {
    font-style: normal;
    line-height: inherit
}

address,dl,ol,ul {
    margin-bottom: 1rem
}

dl,ol,ul {
    margin-top: 0
}

ol ol,ol ul,ul ol,ul ul {
    margin-bottom: 0
}

dt {
    font-weight: 700
}

dd {
    margin-bottom: .5rem;
    margin-left: 0
}

blockquote {
    margin: 0 0 1rem
}

b,strong {
    font-weight: bolder
}

small {
    font-size: 80%
}

sub,sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

a {
    background-color: transparent;
    color: #21578a;
    text-decoration: none
}

a:hover {
    color: #12304c;
    text-decoration: underline
}

a:not([href]):not([tabindex]),a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover {
    color: inherit;
    text-decoration: none
}

a:not([href]):not([tabindex]):focus {
    outline: 0
}

code,kbd,pre,samp {
    font-family: SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;
    font-size: 1em
}

pre {
    margin-bottom: 1rem;
    margin-top: 0;
    overflow: auto
}

figure {
    margin: 0 0 1rem
}

img {
    border-style: none
}

img,svg {
    vertical-align: middle
}

svg {
    overflow: hidden
}

table {
    border-collapse: collapse
}

caption {
    caption-side: bottom;
    color: #6c757d;
    padding-bottom: .75rem;
    padding-top: .75rem;
    text-align: left
}

th {
    text-align: inherit
}

label {
    display: inline-block;
    margin-bottom: .5rem
}

button {
    border-radius: 0
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color
}

button,input,optgroup,select,textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0
}

button,input {
    overflow: visible
}

button,select {
    text-transform: none
}

select {
    word-wrap: normal
}

[type=button],[type=reset],[type=submit],button {
    -webkit-appearance: button
}

[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled) {
    cursor: pointer
}

[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

input[type=checkbox],input[type=radio] {
    box-sizing: border-box;
    padding: 0
}

input[type=date],input[type=datetime-local],input[type=month],input[type=time] {
    -webkit-appearance: listbox
}

textarea {
    overflow: auto;
    resize: vertical
}

fieldset {
    border: 0;
    margin: 0;
    min-width: 0;
    padding: 0
}

legend {
    color: inherit;
    display: block;
    font-size: 1.5rem;
    line-height: inherit;
    margin-bottom: .5rem;
    max-width: 100%;
    padding: 0;
    white-space: normal;
    width: 100%
}

@media (max-width: 1200px) {
    legend {
        font-size:calc(1.275rem + .3vw)
    }
}

progress {
    vertical-align: baseline
}

[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: none;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

output {
    display: inline-block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none!important
}

.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.667rem
}

.h1,h1 {
    font-size: 3.333333333rem
}

@media (max-width: 1200px) {
    .h1,h1 {
        font-size:calc(1.45833rem + 2.5vw)
    }
}

.h2,h2 {
    font-size: 2.111111111rem
}

@media (max-width: 1200px) {
    .h2,h2 {
        font-size:calc(1.33611rem + 1.03333vw)
    }
}

.h3,h3 {
    font-size: 1.555555556rem
}

@media (max-width: 1200px) {
    .h3,h3 {
        font-size:calc(1.28056rem + .36667vw)
    }
}

.h4,h4 {
    font-size: 1.333333333rem
}

@media (max-width: 1200px) {
    .h4,h4 {
        font-size:calc(1.25833rem + .1vw)
    }
}

.h5,h5 {
    font-size: 1.111111111rem
}

.h6,h6 {
    font-size: 1rem
}

.lead {
    font-size: 1.25rem;
    font-weight: 300
}

.display-1 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2
}

@media (max-width: 1200px) {
    .display-1 {
        font-size:calc(1.725rem + 5.7vw)
    }
}

.display-2 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2
}

@media (max-width: 1200px) {
    .display-2 {
        font-size:calc(1.675rem + 5.1vw)
    }
}

.display-3 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2
}

@media (max-width: 1200px) {
    .display-3 {
        font-size:calc(1.575rem + 3.9vw)
    }
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2
}

@media (max-width: 1200px) {
    .display-4 {
        font-size:calc(1.475rem + 2.7vw)
    }
}

hr {
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
    margin-bottom: 1rem;
    margin-top: 1rem
}

.small,small {
    font-size: .778rem;
    font-weight: 400
}

.mark,mark {
    background-color: #fcf8e3;
    padding: .2em
}

.list-inline,.list-unstyled {
    list-style: none;
    padding-left: 0
}

.list-inline-item {
    display: inline-block;
    margin-right: 10px;
    font-size: 16px;
}

.list-inline-item:not(:last-child) {
    margin-right: 20px !important;
    margin-top: 5px !important;
}

.initialism {
    font-size: 90%;
    text-transform: uppercase
}

.blockquote {
    font-size: 1.25rem;
    margin-bottom: 1rem
}

.blockquote-footer {
    color: #6c757d;
    display: block;
    font-size: .778rem
}

.blockquote-footer:before {
    content: "â€”Â "
}

.img-fluid,.img-thumbnail {
    height: auto;
    max-width: 100%
}

.img-thumbnail {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    padding: .25rem
}

.figure {
    display: inline-block
}

.figure-img {
    line-height: 1;
    margin-bottom: .5rem
}

.figure-caption {
    color: #6c757d;
    font-size: 90%
}

code {
    color: #e83e8c;
    font-size: 87.5%;
    word-break: break-word
}

a>code {
    color: inherit
}

kbd {
    background-color: #212529;
    border-radius: .2rem;
    color: #fff;
    font-size: 87.5%;
    padding: .2rem .4rem
}

kbd kbd {
    font-size: 100%;
    font-weight: 700;
    padding: 0
}

pre {
    color: #212529;
    display: block;
    font-size: 87.5%
}

pre code {
    color: inherit;
    font-size: inherit;
    word-break: normal
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%
}

@media (min-width: 576px) {
    .container {
        max-width:100%
    }
}

@media (min-width: 768px) {
    .container {
        max-width:100%
    }
}

@media (min-width: 992px) {
    .container {
        max-width:100%
    }
}

@media (min-width: 1200px) {
    .container {
        max-width:1140px
    }
}

.container-fluid {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px
}

.no-gutters {
    margin-left: 0;
    margin-right: 0
}

.no-gutters>.col,.no-gutters>[class*=col-] {
    padding-left: 0;
    padding-right: 0
}

.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto {
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    width: 100%
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%
}

.col-auto {
    flex: 0 0 auto;
    max-width: 100%;
    width: auto
}

.col-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%
}

.col-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%
}

.col-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%
}

.col-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%
}

.col-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%
}

.col-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%
}

.col-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%
}

.col-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%
}

.order-first {
    order: -1
}

.order-last {
    order: 13
}

.order-0 {
    order: 0
}

.order-1 {
    order: 1
}

.order-2 {
    order: 2
}

.order-3 {
    order: 3
}

.order-4 {
    order: 4
}

.order-5 {
    order: 5
}

.order-6 {
    order: 6
}

.order-7 {
    order: 7
}

.order-8 {
    order: 8
}

.order-9 {
    order: 9
}

.order-10 {
    order: 10
}

.order-11 {
    order: 11
}

.order-12 {
    order: 12
}

.offset-1 {
    margin-left: 8.3333333333%
}

.offset-2 {
    margin-left: 16.6666666667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.3333333333%
}

.offset-5 {
    margin-left: 41.6666666667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.3333333333%
}

.offset-8 {
    margin-left: 66.6666666667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.3333333333%
}

.offset-11 {
    margin-left: 91.6666666667%
}

@media (min-width: 576px) {
    .col-sm {
        flex-basis:0;
        flex-grow: 1;
        max-width: 100%
    }

    .col-sm-auto {
        flex: 0 0 auto;
        max-width: 100%;
        width: auto
    }

    .col-sm-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .col-sm-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-sm-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .col-sm-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-sm-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .col-sm-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-sm-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .col-sm-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-sm-first {
        order: -1
    }

    .order-sm-last {
        order: 13
    }

    .order-sm-0 {
        order: 0
    }

    .order-sm-1 {
        order: 1
    }

    .order-sm-2 {
        order: 2
    }

    .order-sm-3 {
        order: 3
    }

    .order-sm-4 {
        order: 4
    }

    .order-sm-5 {
        order: 5
    }

    .order-sm-6 {
        order: 6
    }

    .order-sm-7 {
        order: 7
    }

    .order-sm-8 {
        order: 8
    }

    .order-sm-9 {
        order: 9
    }

    .order-sm-10 {
        order: 10
    }

    .order-sm-11 {
        order: 11
    }

    .order-sm-12 {
        order: 12
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.3333333333%
    }

    .offset-sm-2 {
        margin-left: 16.6666666667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.3333333333%
    }

    .offset-sm-5 {
        margin-left: 41.6666666667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.3333333333%
    }

    .offset-sm-8 {
        margin-left: 66.6666666667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.3333333333%
    }

    .offset-sm-11 {
        margin-left: 91.6666666667%
    }
}

@media (min-width: 768px) {
    .col-md {
        flex-basis:0;
        flex-grow: 1;
        max-width: 100%
    }

    .col-md-auto {
        flex: 0 0 auto;
        max-width: 100%;
        width: auto
    }

    .col-md-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .col-md-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-md-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .col-md-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-md-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .col-md-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-md-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .col-md-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-md-first {
        order: -1
    }

    .order-md-last {
        order: 13
    }

    .order-md-0 {
        order: 0
    }

    .order-md-1 {
        order: 1
    }

    .order-md-2 {
        order: 2
    }

    .order-md-3 {
        order: 3
    }

    .order-md-4 {
        order: 4
    }

    .order-md-5 {
        order: 5
    }

    .order-md-6 {
        order: 6
    }

    .order-md-7 {
        order: 7
    }

    .order-md-8 {
        order: 8
    }

    .order-md-9 {
        order: 9
    }

    .order-md-10 {
        order: 10
    }

    .order-md-11 {
        order: 11
    }

    .order-md-12 {
        order: 12
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.3333333333%
    }

    .offset-md-2 {
        margin-left: 16.6666666667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.3333333333%
    }

    .offset-md-5 {
        margin-left: 41.6666666667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.3333333333%
    }

    .offset-md-8 {
        margin-left: 66.6666666667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.3333333333%
    }

    .offset-md-11 {
        margin-left: 91.6666666667%
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex-basis:0;
        flex-grow: 1;
        max-width: 100%
    }

    .col-lg-auto {
        flex: 0 0 auto;
        max-width: 100%;
        width: auto
    }

    .col-lg-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .col-lg-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-lg-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .col-lg-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-lg-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .col-lg-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-lg-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .col-lg-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-lg-first {
        order: -1
    }

    .order-lg-last {
        order: 13
    }

    .order-lg-0 {
        order: 0
    }

    .order-lg-1 {
        order: 1
    }

    .order-lg-2 {
        order: 2
    }

    .order-lg-3 {
        order: 3
    }

    .order-lg-4 {
        order: 4
    }

    .order-lg-5 {
        order: 5
    }

    .order-lg-6 {
        order: 6
    }

    .order-lg-7 {
        order: 7
    }

    .order-lg-8 {
        order: 8
    }

    .order-lg-9 {
        order: 9
    }

    .order-lg-10 {
        order: 10
    }

    .order-lg-11 {
        order: 11
    }

    .order-lg-12 {
        order: 12
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.3333333333%
    }

    .offset-lg-2 {
        margin-left: 16.6666666667%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.3333333333%
    }

    .offset-lg-5 {
        margin-left: 41.6666666667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.3333333333%
    }

    .offset-lg-8 {
        margin-left: 66.6666666667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.3333333333%
    }

    .offset-lg-11 {
        margin-left: 91.6666666667%
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex-basis:0;
        flex-grow: 1;
        max-width: 100%
    }

    .col-xl-auto {
        flex: 0 0 auto;
        max-width: 100%;
        width: auto
    }

    .col-xl-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .col-xl-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-xl-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .col-xl-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-xl-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .col-xl-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-xl-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .col-xl-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-xl-first {
        order: -1
    }

    .order-xl-last {
        order: 13
    }

    .order-xl-0 {
        order: 0
    }

    .order-xl-1 {
        order: 1
    }

    .order-xl-2 {
        order: 2
    }

    .order-xl-3 {
        order: 3
    }

    .order-xl-4 {
        order: 4
    }

    .order-xl-5 {
        order: 5
    }

    .order-xl-6 {
        order: 6
    }

    .order-xl-7 {
        order: 7
    }

    .order-xl-8 {
        order: 8
    }

    .order-xl-9 {
        order: 9
    }

    .order-xl-10 {
        order: 10
    }

    .order-xl-11 {
        order: 11
    }

    .order-xl-12 {
        order: 12
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.3333333333%
    }

    .offset-xl-2 {
        margin-left: 16.6666666667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.3333333333%
    }

    .offset-xl-5 {
        margin-left: 41.6666666667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.3333333333%
    }

    .offset-xl-8 {
        margin-left: 66.6666666667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.3333333333%
    }

    .offset-xl-11 {
        margin-left: 91.6666666667%
    }
}

.table {
    color: #414141;
    margin-bottom: 1rem;
    width: 100%
}

.table td,.table th {
    border-top: 1px solid #dee2e6;
    padding: .75rem;
    vertical-align: top
}

.table thead th {
    border-bottom: 2px solid #dee2e6;
    vertical-align: bottom
}

.table tbody+tbody {
    border-top: 2px solid #dee2e6
}

.table-sm td,.table-sm th {
    padding: .3rem
}

.table-bordered,.table-bordered td,.table-bordered th {
    border: 1px solid #dee2e6
}

.table-bordered thead td,.table-bordered thead th {
    border-bottom-width: 2px
}

.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th {
    border: 0
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,.05)
}

.table-hover tbody tr:hover {
    background-color: rgba(0,0,0,.075);
    color: #414141
}

.table-primary,.table-primary>td,.table-primary>th {
    background-color: #c1d0de
}

.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th {
    border-color: #8ca8c2
}

.table-hover .table-primary:hover,.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th {
    background-color: #b0c3d5
}

.table-secondary,.table-secondary>td,.table-secondary>th {
    background-color: #d7dac4
}

.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th {
    border-color: #b5ba92
}

.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th {
    background-color: #cdd0b5
}

.table-success,.table-success>td,.table-success>th {
    background-color: #c3e6cb
}

.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th {
    border-color: #8fd19e
}

.table-hover .table-success:hover,.table-hover .table-success:hover>td,.table-hover .table-success:hover>th {
    background-color: #b1dfbb
}

.table-info,.table-info>td,.table-info>th {
    background-color: #bee5eb
}

.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th {
    border-color: #86cfda
}

.table-hover .table-info:hover,.table-hover .table-info:hover>td,.table-hover .table-info:hover>th {
    background-color: #abdde5
}

.table-warning,.table-warning>td,.table-warning>th {
    background-color: #ffeeba
}

.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th {
    border-color: #ffdf7e
}

.table-hover .table-warning:hover,.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th {
    background-color: #ffe7a0
}

.table-danger,.table-danger>td,.table-danger>th {
    background-color: #f5c6cb
}

.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th {
    border-color: #ed969e
}

.table-hover .table-danger:hover,.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th {
    background-color: #f1b1b7
}

.table-light,.table-light>td,.table-light>th {
    background-color: #fcfcfb
}

.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th {
    border-color: #f9f9f8
}

.table-hover .table-light:hover,.table-hover .table-light:hover>td,.table-hover .table-light:hover>th {
    background-color: #f1efed
}

.table-medium-light,.table-medium-light>td,.table-medium-light>th {
    background-color: #f6f7f8
}

.table-medium-light tbody+tbody,.table-medium-light td,.table-medium-light th,.table-medium-light thead th {
    border-color: #eef0f2
}

.table-hover .table-medium-light:hover,.table-hover .table-medium-light:hover>td,.table-hover .table-medium-light:hover>th {
    background-color: #e7eaed
}

.table-dark,.table-dark>td,.table-dark>th {
    background-color: #c6c8ca
}

.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th {
    border-color: #95999c
}

.table-hover .table-dark:hover,.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th {
    background-color: #b9bbbd
}

.table-active,.table-active>td,.table-active>th,.table-hover .table-active:hover,.table-hover .table-active:hover>td,.table-hover .table-active:hover>th {
    background-color: rgba(0,0,0,.075)
}

.table .thead-dark th {
    background-color: #343a40;
    border-color: #454d55;
    color: #fff
}

.table .thead-light th {
    background-color: #e9ecef;
    border-color: #dee2e6;
    color: #495057
}

.table-dark {
    background-color: #343a40;
    color: #fff
}

.table-dark td,.table-dark th,.table-dark thead th {
    border-color: #454d55
}

.table-dark.table-bordered {
    border: 0
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: hsla(0,0%,100%,.05)
}

.table-dark.table-hover tbody tr:hover {
    background-color: hsla(0,0%,100%,.075);
    color: #fff
}

@media (max-width: 575.98px) {
    .table-responsive-sm {
        -webkit-overflow-scrolling:touch;
        display: block;
        overflow-x: auto;
        width: 100%
    }

    .table-responsive-sm>.table-bordered {
        border: 0
    }
}

@media (max-width: 767.98px) {
    .table-responsive-md {
        -webkit-overflow-scrolling:touch;
        display: block;
        overflow-x: auto;
        width: 100%
    }

    .table-responsive-md>.table-bordered {
        border: 0
    }
}

@media (max-width: 991.98px) {
    .table-responsive-lg {
        -webkit-overflow-scrolling:touch;
        display: block;
        overflow-x: auto;
        width: 100%
    }

    .table-responsive-lg>.table-bordered {
        border: 0
    }
}

@media (max-width: 1199.98px) {
    .table-responsive-xl {
        -webkit-overflow-scrolling:touch;
        display: block;
        overflow-x: auto;
        width: 100%
    }

    .table-responsive-xl>.table-bordered {
        border: 0
    }
}

.table-responsive {
    -webkit-overflow-scrolling: touch;
    display: block;
    overflow-x: auto;
    width: 100%
}

.table-responsive>.table-bordered {
    border: 0
}

.form-control {
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    color: #495057;
    display: block;
    font-size: 1rem;
    font-weight: 400;
    height: calc(1.5em + .75rem + 2px);
    line-height: 1.5;
    padding: .375rem .75rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    width: 100%
}

@media (prefers-reduced-motion:reduce) {
    .form-control {
        transition: none
    }
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0
}

.form-control:focus {
    background-color: #fff;
    border-color: #5497d6;
    box-shadow: 0 0 0 .2rem rgba(33,87,138,.25);
    color: #495057;
    outline: 0
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:disabled,.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1
}

select.form-control:focus::-ms-value {
    background-color: #fff;
    color: #495057
}

.form-control-file,.form-control-range {
    display: block;
    width: 100%
}

.col-form-label {
    font-size: inherit;
    line-height: 1.5;
    margin-bottom: 0;
    padding-bottom: calc(.375rem + 1px);
    padding-top: calc(.375rem + 1px)
}

.col-form-label-lg {
    font-size: 1.25rem;
    line-height: 1.5;
    padding-bottom: calc(.5rem + 1px);
    padding-top: calc(.5rem + 1px)
}

.col-form-label-sm {
    font-size: .875rem;
    line-height: 1.5;
    padding-bottom: calc(.25rem + 1px);
    padding-top: calc(.25rem + 1px)
}

.form-control-plaintext {
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0;
    color: #414141;
    display: block;
    line-height: 1.5;
    margin-bottom: 0;
    padding-bottom: .375rem;
    padding-top: .375rem;
    width: 100%
}

.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm {
    padding-left: 0;
    padding-right: 0
}

.form-control-sm {
    border-radius: .2rem;
    font-size: .875rem;
    height: calc(1.5em + .5rem + 2px);
    line-height: 1.5;
    padding: .25rem .5rem
}

.form-control-lg {
    border-radius: .3rem;
    font-size: 1.25rem;
    height: calc(1.5em + 1rem + 2px);
    line-height: 1.5;
    padding: .5rem 1rem
}

select.form-control[multiple],select.form-control[size],textarea.form-control {
    height: auto
}

.form-group {
    margin-bottom: 1rem
}

.form-text {
    display: block;
    margin-top: .25rem
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px
}

.form-row>.col,.form-row>[class*=col-] {
    padding-left: 5px;
    padding-right: 5px
}

.form-check {
    display: block;
    padding-left: 1.25rem;
    position: relative
}

.form-check-input {
    margin-left: -1.25rem;
    margin-top: .3rem;
    position: absolute
}

.form-check-input:disabled~.form-check-label {
    color: #6c757d
}

.form-check-label {
    margin-bottom: 0
}

.form-check-inline {
    align-items: center;
    display: inline-flex;
    margin-right: .75rem;
    padding-left: 0
}

.form-check-inline .form-check-input {
    margin-left: 0;
    margin-right: .3125rem;
    margin-top: 0;
    position: static
}

.valid-feedback {
    color: #28a745;
    display: none;
    font-size: .778rem;
    margin-top: .25rem;
    width: 100%
}

.valid-tooltip {
    background-color: #28a745;
    border-radius: 20px;
    color: #fff;
    display: none;
    font-size: .778rem;
    line-height: 1.5;
    margin-top: .1rem;
    max-width: 100%;
    padding: 15px 20px;
    position: absolute;
    top: 100%;
    z-index: 5
}

.form-control.is-valid,.was-validated .form-control:valid {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2328a745' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
    background-position: center right calc(.375em + .1875rem);
    background-repeat: no-repeat;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
    border-color: #28a745;
    padding-right: calc(1.5em + .75rem)
}

.form-control.is-valid:focus,.was-validated .form-control:valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 .2rem rgba(40,167,69,.25)
}

.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip {
    display: block
}

.was-validated textarea.form-control:valid,textarea.form-control.is-valid {
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem);
    padding-right: calc(1.5em + .75rem)
}

.custom-select.is-valid,.was-validated .custom-select:valid {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2328a745' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem);
    border-color: #28a745;
    padding-right: calc(.75em + 2.3125rem)
}

.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 .2rem rgba(40,167,69,.25)
}

.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip {
    display: block
}

.form-control-file.is-valid~.valid-feedback,.form-control-file.is-valid~.valid-tooltip,.was-validated .form-control-file:valid~.valid-feedback,.was-validated .form-control-file:valid~.valid-tooltip {
    display: block
}

.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label {
    color: #28a745
}

.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip {
    display: block
}

.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label {
    color: #28a745
}

.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before {
    border-color: #28a745
}

.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip {
    display: block
}

.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before {
    background-color: #34ce57;
    border-color: #34ce57
}

.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before {
    box-shadow: 0 0 0 .2rem rgba(40,167,69,.25)
}

.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before {
    border-color: #28a745
}

.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label {
    border-color: #28a745
}

.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip {
    display: block
}

.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label {
    border-color: #28a745;
    box-shadow: 0 0 0 .2rem rgba(40,167,69,.25)
}

.invalid-feedback {
    color: #dc3545;
    display: none;
    font-size: .778rem;
    margin-top: .25rem;
    width: 100%
}

.invalid-tooltip {
    background-color: #dc3545;
    border-radius: 20px;
    color: #fff;
    display: none;
    font-size: .778rem;
    line-height: 1.5;
    margin-top: .1rem;
    max-width: 100%;
    padding: 15px 20px;
    position: absolute;
    top: 100%;
    z-index: 5
}

.form-control.is-invalid,.was-validated .form-control:invalid {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23dc3545' d='m0 0 3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E");
    background-position: center right calc(.375em + .1875rem);
    background-repeat: no-repeat;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
    border-color: #dc3545;
    padding-right: calc(1.5em + .75rem)
}

.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.25)
}

.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip {
    display: block
}

.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid {
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem);
    padding-right: calc(1.5em + .75rem)
}

.custom-select.is-invalid,.was-validated .custom-select:invalid {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23dc3545' d='m0 0 3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem);
    border-color: #dc3545;
    padding-right: calc(.75em + 2.3125rem)
}

.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.25)
}

.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip {
    display: block
}

.form-control-file.is-invalid~.invalid-feedback,.form-control-file.is-invalid~.invalid-tooltip,.was-validated .form-control-file:invalid~.invalid-feedback,.was-validated .form-control-file:invalid~.invalid-tooltip {
    display: block
}

.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label {
    color: #dc3545
}

.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip {
    display: block
}

.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label {
    color: #dc3545
}

.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before {
    border-color: #dc3545
}

.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip {
    display: block
}

.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before {
    background-color: #e4606d;
    border-color: #e4606d
}

.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before {
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.25)
}

.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before {
    border-color: #dc3545
}

.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label {
    border-color: #dc3545
}

.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip {
    display: block
}

.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label {
    border-color: #dc3545;
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.25)
}

.form-inline {
    align-items: center;
    display: flex;
    flex-flow: row wrap
}

.form-inline .form-check {
    width: 100%
}

@media (min-width: 576px) {
    .form-inline label {
        justify-content:center
    }

    .form-inline .form-group,.form-inline label {
        align-items: center;
        display: flex;
        margin-bottom: 0
    }

    .form-inline .form-group {
        flex: 0 0 auto;
        flex-flow: row wrap
    }

    .form-inline .form-control {
        display: inline-block;
        vertical-align: middle;
        width: auto
    }

    .form-inline .form-control-plaintext {
        display: inline-block
    }

    .form-inline .custom-select,.form-inline .input-group {
        width: auto
    }

    .form-inline .form-check {
        align-items: center;
        display: flex;
        justify-content: center;
        padding-left: 0;
        width: auto
    }

    .form-inline .form-check-input {
        flex-shrink: 0;
        margin-left: 0;
        margin-right: .25rem;
        margin-top: 0;
        position: relative
    }

    .form-inline .custom-control {
        align-items: center;
        justify-content: center
    }

    .form-inline .custom-control-label {
        margin-bottom: 0
    }
}

.btn {
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 2rem !important;
    color: #414141;
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    padding: .778rem 1.576rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    vertical-align: middle
}

@media (prefers-reduced-motion:reduce) {
    .btn {
        transition: none
    }
}

.btn:hover {
    color: #414141;
    text-decoration: none
}

.btn.focus,.btn:focus {
    box-shadow: 0 0 0 .2rem rgba(33,87,138,.25);
    outline: 0
}

.btn.disabled,.btn:disabled {
    opacity: .65
}

a.btn.disabled,fieldset:disabled a.btn {
    pointer-events: none
}

.btn-primary {
    background-color: #21578a;
    border-color: #21578a;
    color: #fff
}

.btn-primary:hover {
    background-color: #1a446b;
    border-color: #173d61;
    color: #fff
}

.btn-primary.focus,.btn-primary:focus {
    box-shadow: 0 0 0 .2rem rgba(66,112,156,.5)
}

.btn-primary.disabled,.btn-primary:disabled {
    background-color: #21578a;
    border-color: #21578a;
    color: #fff
}

.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle {
    background-color: #173d61;
    border-color: #153757;
    color: #fff
}

.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(66,112,156,.5)
}

.btn-secondary {
    background-color: #717b2d;
    border-color: #717b2d;
    color: #fff
}

.btn-secondary:hover {
    background-color: #575f23;
    border-color: #4f561f;
    color: #fff
}

.btn-secondary.focus,.btn-secondary:focus {
    box-shadow: 0 0 0 .2rem rgba(134,143,77,.5)
}

.btn-secondary.disabled,.btn-secondary:disabled {
    background-color: #717b2d;
    border-color: #717b2d;
    color: #fff
}

.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle {
    background-color: #4f561f;
    border-color: #464c1c;
    color: #fff
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(134,143,77,.5)
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
    color: #fff
}

.btn-success.focus,.btn-success:focus {
    box-shadow: 0 0 0 .2rem rgba(72,180,97,.5)
}

.btn-success.disabled,.btn-success:disabled {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff
}

.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle {
    background-color: #1e7e34;
    border-color: #1c7430;
    color: #fff
}

.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(72,180,97,.5)
}

.btn-info {
    background-color: #17a2b8;
    border-color: #17a2b8;
    color: #fff
}

.btn-info:hover {
    background-color: #138496;
    border-color: #117a8b;
    color: #fff
}

.btn-info.focus,.btn-info:focus {
    box-shadow: 0 0 0 .2rem rgba(58,176,195,.5)
}

.btn-info.disabled,.btn-info:disabled {
    background-color: #17a2b8;
    border-color: #17a2b8;
    color: #fff
}

.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle {
    background-color: #117a8b;
    border-color: #10707f;
    color: #fff
}

.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(58,176,195,.5)
}

.btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #212529
}

.btn-warning:hover {
    background-color: #e0a800;
    border-color: #d39e00;
    color: #212529
}

.btn-warning.focus,.btn-warning:focus {
    box-shadow: 0 0 0 .2rem rgba(222,170,12,.5)
}

.btn-warning.disabled,.btn-warning:disabled {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #212529
}

.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle {
    background-color: #d39e00;
    border-color: #c69500;
    color: #212529
}

.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(222,170,12,.5)
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
    color: #fff
}

.btn-danger.focus,.btn-danger:focus {
    box-shadow: 0 0 0 .2rem rgba(225,83,97,.5)
}

.btn-danger.disabled,.btn-danger:disabled {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff
}

.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle {
    background-color: #bd2130;
    border-color: #b21f2d;
    color: #fff
}

.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(225,83,97,.5)
}

.btn-light {
    background-color: #f4f3f1;
    border-color: #f4f3f1;
    color: #212529
}

.btn-light:hover {
    background-color: #e3e1dc;
    border-color: #dedbd4;
    color: #212529
}

.btn-light.focus,.btn-light:focus {
    box-shadow: 0 0 0 .2rem hsla(49,2%,83%,.5)
}

.btn-light.disabled,.btn-light:disabled {
    background-color: #f4f3f1;
    border-color: #f4f3f1;
    color: #212529
}

.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle {
    background-color: #dedbd4;
    border-color: #d8d4cd;
    color: #212529
}

.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem hsla(49,2%,83%,.5)
}

.btn-medium-light {
    background-color: #dee2e6;
    border-color: #dee2e6;
    color: #212529
}

.btn-medium-light:hover {
    background-color: #c8cfd6;
    border-color: #c1c9d0;
    color: #212529
}

.btn-medium-light.focus,.btn-medium-light:focus {
    box-shadow: 0 0 0 .2rem hsla(210,7%,78%,.5)
}

.btn-medium-light.disabled,.btn-medium-light:disabled {
    background-color: #dee2e6;
    border-color: #dee2e6;
    color: #212529
}

.btn-medium-light:not(:disabled):not(.disabled).active,.btn-medium-light:not(:disabled):not(.disabled):active,.show>.btn-medium-light.dropdown-toggle {
    background-color: #c1c9d0;
    border-color: #bac2cb;
    color: #212529
}

.btn-medium-light:not(:disabled):not(.disabled).active:focus,.btn-medium-light:not(:disabled):not(.disabled):active:focus,.show>.btn-medium-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem hsla(210,7%,78%,.5)
}

.btn-dark {
    background-color: #343a40;
    border-color: #343a40;
    color: #fff
}

.btn-dark:hover {
    background-color: #23272b;
    border-color: #1d2124;
    color: #fff
}

.btn-dark.focus,.btn-dark:focus {
    box-shadow: 0 0 0 .2rem rgba(82,88,93,.5)
}

.btn-dark.disabled,.btn-dark:disabled {
    background-color: #343a40;
    border-color: #343a40;
    color: #fff
}

.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle {
    background-color: #1d2124;
    border-color: #171a1d;
    color: #fff
}

.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(82,88,93,.5)
}

.btn-outline-primary {
    border-color: #21578a;
    color: #21578a
}

.btn-outline-primary:hover {
    background-color: #21578a;
    border-color: #21578a;
    color: #fff
}

.btn-outline-primary.focus,.btn-outline-primary:focus {
    box-shadow: 0 0 0 .2rem rgba(33,87,138,.5)
}

.btn-outline-primary.disabled,.btn-outline-primary:disabled {
    background-color: transparent;
    color: #21578a
}

.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle {
    background-color: #21578a;
    border-color: #21578a;
    color: #fff
}

.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(33,87,138,.5)
}

.btn-outline-secondary {
    border-color: #717b2d;
    color: #717b2d
}

.btn-outline-secondary:hover {
    background-color: #717b2d;
    border-color: #717b2d;
    color: #fff
}

.btn-outline-secondary.focus,.btn-outline-secondary:focus {
    box-shadow: 0 0 0 .2rem rgba(113,123,45,.5)
}

.btn-outline-secondary.disabled,.btn-outline-secondary:disabled {
    background-color: transparent;
    color: #717b2d
}

.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle {
    background-color: #717b2d;
    border-color: #717b2d;
    color: #fff
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(113,123,45,.5)
}

.btn-outline-success {
    border-color: #28a745;
    color: #28a745
}

.btn-outline-success:hover {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff
}

.btn-outline-success.focus,.btn-outline-success:focus {
    box-shadow: 0 0 0 .2rem rgba(40,167,69,.5)
}

.btn-outline-success.disabled,.btn-outline-success:disabled {
    background-color: transparent;
    color: #28a745
}

.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff
}

.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(40,167,69,.5)
}

.btn-outline-info {
    border-color: #17a2b8;
    color: #17a2b8
}

.btn-outline-info:hover {
    background-color: #17a2b8;
    border-color: #17a2b8;
    color: #fff
}

.btn-outline-info.focus,.btn-outline-info:focus {
    box-shadow: 0 0 0 .2rem rgba(23,162,184,.5)
}

.btn-outline-info.disabled,.btn-outline-info:disabled {
    background-color: transparent;
    color: #17a2b8
}

.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle {
    background-color: #17a2b8;
    border-color: #17a2b8;
    color: #fff
}

.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(23,162,184,.5)
}

.btn-outline-warning {
    border-color: #ffc107;
    color: #ffc107
}

.btn-outline-warning:hover {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #212529
}

.btn-outline-warning.focus,.btn-outline-warning:focus {
    box-shadow: 0 0 0 .2rem rgba(255,193,7,.5)
}

.btn-outline-warning.disabled,.btn-outline-warning:disabled {
    background-color: transparent;
    color: #ffc107
}

.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #212529
}

.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(255,193,7,.5)
}

.btn-outline-danger {
    border-color: #dc3545;
    color: #dc3545
}

.btn-outline-danger:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff
}

.btn-outline-danger.focus,.btn-outline-danger:focus {
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.5)
}

.btn-outline-danger.disabled,.btn-outline-danger:disabled {
    background-color: transparent;
    color: #dc3545
}

.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff
}

.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.5)
}

.btn-outline-light {
    border-color: #f4f3f1;
    color: #f4f3f1
}

.btn-outline-light:hover {
    background-color: #f4f3f1;
    border-color: #f4f3f1;
    color: #212529
}

.btn-outline-light.focus,.btn-outline-light:focus {
    box-shadow: 0 0 0 .2rem hsla(40,12%,95%,.5)
}

.btn-outline-light.disabled,.btn-outline-light:disabled {
    background-color: transparent;
    color: #f4f3f1
}

.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle {
    background-color: #f4f3f1;
    border-color: #f4f3f1;
    color: #212529
}

.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem hsla(40,12%,95%,.5)
}

.btn-outline-medium-light {
    border-color: #dee2e6;
    color: #dee2e6
}

.btn-outline-medium-light:hover {
    background-color: #dee2e6;
    border-color: #dee2e6;
    color: #212529
}

.btn-outline-medium-light.focus,.btn-outline-medium-light:focus {
    box-shadow: 0 0 0 .2rem rgba(222,226,230,.5)
}

.btn-outline-medium-light.disabled,.btn-outline-medium-light:disabled {
    background-color: transparent;
    color: #dee2e6
}

.btn-outline-medium-light:not(:disabled):not(.disabled).active,.btn-outline-medium-light:not(:disabled):not(.disabled):active,.show>.btn-outline-medium-light.dropdown-toggle {
    background-color: #dee2e6;
    border-color: #dee2e6;
    color: #212529
}

.btn-outline-medium-light:not(:disabled):not(.disabled).active:focus,.btn-outline-medium-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-medium-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(222,226,230,.5)
}

.btn-outline-dark {
    border-color: #343a40;
    color: #343a40
}

.btn-outline-dark:hover {
    background-color: #343a40;
    border-color: #343a40;
    color: #fff
}

.btn-outline-dark.focus,.btn-outline-dark:focus {
    box-shadow: 0 0 0 .2rem rgba(52,58,64,.5)
}

.btn-outline-dark.disabled,.btn-outline-dark:disabled {
    background-color: transparent;
    color: #343a40
}

.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle {
    background-color: #343a40;
    border-color: #343a40;
    color: #fff
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(52,58,64,.5)
}

.btn-link {
    color: #21578a;
    font-weight: 400;
    text-decoration: none !important;
}

.btn-link:hover {
    color: #12304c;
    text-decoration: underline !important;
    text-underline-offset: 8px !important;
}

.btn-link.focus{
    box-shadow: none;
    text-decoration: underline !important;
    text-underline-offset: 8px !important;
}

.btn-link.disabled,.btn-link:disabled {
    color: #6c757d;
    pointer-events: none
}

.btn-group-lg>.btn,.btn-lg {
    border-radius: .3rem;
    font-size: 1.25rem;
    line-height: 1.5;
    padding: .5rem 1rem
}

.btn-group-sm>.btn,.btn-sm {
    border-radius: .2rem;
    font-size: .875rem;
    line-height: 1;
    padding: .778rem 1.576rem
}

.btn-block {
    display: block;
    width: 100%
}

.btn-block+.btn-block {
    margin-top: .5rem
}

input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block {
    width: 100%
}

.fade {
    transition: opacity .15s linear
}

@media (prefers-reduced-motion:reduce) {
    .fade {
        transition: none
    }
}

.fade:not(.show) {
    opacity: 0
}

.collapse:not(.show) {
    display: none
}

.collapsing {
    height: 0;
    overflow: hidden;
    position: relative;
    transition: height .35s ease
}

@media (prefers-reduced-motion:reduce) {
    .collapsing {
        transition: none
    }
}

.dropdown,.dropleft,.dropright,.dropup {
    position: relative
}

.dropdown-toggle {
    white-space: nowrap
}

.dropdown-toggle:after {
    border-bottom: 0;
    border-left: .3em solid transparent;
    border-right: .3em solid transparent;
    border-top: .3em solid;
    content: "";
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em
}

.dropdown-toggle:empty:after {
    margin-left: 0
}

.dropdown-menu {
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
    color: #414141;
    display: none;
    float: left;
    font-size: 1rem;
    left: 0;
    list-style: none;
    margin: .125rem 0 0;
    min-width: 10rem;
    padding: .5rem 0;
    position: absolute;
    text-align: left;
    top: 100%;
    z-index: 1000
}

.dropdown-menu-left {
    left: 0;
    right: auto
}

.dropdown-menu-right {
    left: auto;
    right: 0
}

@media (min-width: 576px) {
    .dropdown-menu-sm-left {
        left:0;
        right: auto
    }

    .dropdown-menu-sm-right {
        left: auto;
        right: 0
    }
}

@media (min-width: 768px) {
    .dropdown-menu-md-left {
        left:0;
        right: auto
    }

    .dropdown-menu-md-right {
        left: auto;
        right: 0
    }
}

@media (min-width: 992px) {
    .dropdown-menu-lg-left {
        left:0;
        right: auto
    }

    .dropdown-menu-lg-right {
        left: auto;
        right: 0
    }
}

@media (min-width: 1200px) {
    .dropdown-menu-xl-left {
        left:0;
        right: auto
    }

    .dropdown-menu-xl-right {
        left: auto;
        right: 0
    }
}

.dropup .dropdown-menu {
    bottom: 100%;
    margin-bottom: .125rem;
    margin-top: 0;
    top: auto
}

.dropup .dropdown-toggle:after {
    border-bottom: .3em solid;
    border-left: .3em solid transparent;
    border-right: .3em solid transparent;
    border-top: 0;
    content: "";
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em
}

.dropup .dropdown-toggle:empty:after {
    margin-left: 0
}

.dropright .dropdown-menu {
    left: 100%;
    margin-left: .125rem;
    margin-top: 0;
    right: auto;
    top: 0
}

.dropright .dropdown-toggle:after {
    border-bottom: .3em solid transparent;
    border-left: .3em solid;
    border-right: 0;
    border-top: .3em solid transparent;
    content: "";
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em
}

.dropright .dropdown-toggle:empty:after {
    margin-left: 0
}

.dropright .dropdown-toggle:after {
    vertical-align: 0
}

.dropleft .dropdown-menu {
    left: auto;
    margin-right: .125rem;
    margin-top: 0;
    right: 100%;
    top: 0
}

.dropleft .dropdown-toggle:after {
    content: "";
    display: inline-block;
    display: none;
    margin-left: .255em;
    vertical-align: .255em
}

.dropleft .dropdown-toggle:before {
    border-bottom: .3em solid transparent;
    border-right: .3em solid;
    border-top: .3em solid transparent;
    content: "";
    display: inline-block;
    margin-right: .255em;
    vertical-align: .255em
}

.dropleft .dropdown-toggle:empty:after {
    margin-left: 0
}

.dropleft .dropdown-toggle:before {
    vertical-align: 0
}

.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top] {
    bottom: auto;
    right: auto
}

.dropdown-divider {
    border-top: 1px solid #e9ecef;
    height: 0;
    margin: .5rem 0;
    overflow: hidden
}

.dropdown-item {
    background-color: transparent;
    border: 0;
    clear: both;
    color: #212529;
    display: block;
    font-weight: 400;
    padding: .25rem 1.5rem;
    text-align: inherit;
    white-space: nowrap;
    width: 100%
}

.dropdown-item:focus,.dropdown-item:hover {
    background-color: #f4f3f1;
    color: #16181b;
    text-decoration: none
}

.dropdown-item.active,.dropdown-item:active {
    background-color: #21578a;
    color: #fff;
    text-decoration: none
}

.dropdown-item.disabled,.dropdown-item:disabled {
    background-color: transparent;
    color: #6c757d;
    pointer-events: none
}

.dropdown-menu.show {
    display: block
}

.dropdown-header {
    color: #6c757d;
    display: block;
    font-size: .875rem;
    margin-bottom: 0;
    padding: .5rem 1.5rem;
    white-space: nowrap
}

.dropdown-item-text {
    color: #212529;
    display: block;
    padding: .25rem 1.5rem
}

.btn-group,.btn-group-vertical {
    display: inline-flex;
    position: relative;
    vertical-align: middle
}

.btn-group-vertical>.btn,.btn-group>.btn {
    flex: 1 1 auto;
    position: relative
}

.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover {
    z-index: 1
}

.btn-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

.btn-toolbar .input-group {
    width: auto
}

.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child) {
    margin-left: -1px
}

.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.dropdown-toggle-split {
    padding-left: 1.182rem;
    padding-right: 1.182rem
}

.dropdown-toggle-split:after,.dropright .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after {
    margin-left: 0
}

.dropleft .dropdown-toggle-split:before {
    margin-right: 0
}

.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split {
    padding-left: 1.182rem;
    padding-right: 1.182rem
}

.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split {
    padding-left: .75rem;
    padding-right: .75rem
}

.btn-group-vertical {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center
}

.btn-group-vertical>.btn,.btn-group-vertical>.btn-group {
    width: 100%
}

.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child) {
    margin-top: -1px
}

.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle) {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child) {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn {
    margin-bottom: 0
}

.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio] {
    clip: rect(0,0,0,0);
    pointer-events: none;
    position: absolute
}

.input-group {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%
}

.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext {
    flex: 1 1 auto;
    margin-bottom: 0;
    position: relative;
    width: 1%
}

.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control {
    margin-left: -1px
}

.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus {
    z-index: 3
}

.input-group>.custom-file .custom-file-input:focus {
    z-index: 4
}

.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.input-group>.custom-file {
    align-items: center;
    display: flex
}

.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label:after {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.input-group>.custom-file:not(:first-child) .custom-file-label {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.input-group-append,.input-group-prepend {
    display: flex
}

.input-group-append .btn,.input-group-prepend .btn {
    position: relative;
    z-index: 2
}

.input-group-append .btn:focus,.input-group-prepend .btn:focus {
    z-index: 3
}

.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text {
    margin-left: -1px
}

.input-group-prepend {
    margin-right: -1px
}

.input-group-append {
    margin-left: -1px
}

.input-group-text {
    align-items: center;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    color: #495057;
    display: flex;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
    padding: .375rem .75rem;
    text-align: center;
    white-space: nowrap
}

.input-group-text input[type=checkbox],.input-group-text input[type=radio] {
    margin-top: 0
}

.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea) {
    height: calc(1.5em + 1rem + 2px)
}

.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text {
    border-radius: .3rem;
    font-size: 1.25rem;
    line-height: 1.5;
    padding: .5rem 1rem
}

.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea) {
    height: calc(1.5em + .5rem + 2px)
}

.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text {
    border-radius: .2rem;
    font-size: .875rem;
    line-height: 1.5;
    padding: .25rem .5rem
}

.input-group-lg>.custom-select,.input-group-sm>.custom-select {
    padding-right: 1.75rem
}

.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.custom-control {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    position: relative
}

.custom-control-inline {
    display: inline-flex;
    margin-right: 1rem
}

.custom-control-input {
    opacity: 0;
    position: absolute;
    z-index: -1
}

.custom-control-input:checked~.custom-control-label:before {
    background-color: #21578a;
    border-color: #21578a;
    color: #fff
}

.custom-control-input:focus~.custom-control-label:before {
    box-shadow: 0 0 0 .2rem rgba(33,87,138,.25)
}

.custom-control-input:focus:not(:checked)~.custom-control-label:before {
    border-color: #5497d6
}

.custom-control-input:not(:disabled):active~.custom-control-label:before {
    background-color: #7db0e0;
    border-color: #7db0e0;
    color: #fff
}

.custom-control-input:disabled~.custom-control-label {
    color: #6c757d
}

.custom-control-input:disabled~.custom-control-label:before {
    background-color: #e9ecef
}

.custom-control-label {
    margin-bottom: 0;
    position: relative;
    vertical-align: top
}

.custom-control-label:before {
    background-color: #fff;
    border: 1px solid #adb5bd;
    pointer-events: none
}

.custom-control-label:after,.custom-control-label:before {
    content: "";
    display: block;
    height: 1rem;
    left: -1.5rem;
    position: absolute;
    top: .25rem;
    width: 1rem
}

.custom-control-label:after {
    background: no-repeat 50%/50% 50%
}

.custom-checkbox .custom-control-label:before {
    border-radius: .25rem
}

.custom-checkbox .custom-control-input:checked~.custom-control-label:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='m6.564.75-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E")
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:before {
    background-color: #21578a;
    border-color: #21578a
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")
}

.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before {
    background-color: rgba(33,87,138,.5)
}

.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before {
    background-color: rgba(33,87,138,.5)
}

.custom-radio .custom-control-label:before {
    border-radius: 50%
}

.custom-radio .custom-control-input:checked~.custom-control-label:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")
}

.custom-radio .custom-control-input:disabled:checked~.custom-control-label:before {
    background-color: rgba(33,87,138,.5)
}

.custom-switch {
    padding-left: 2.25rem
}

.custom-switch .custom-control-label:before {
    border-radius: .5rem;
    left: -2.25rem;
    pointer-events: all;
    width: 1.75rem
}

.custom-switch .custom-control-label:after {
    background-color: #adb5bd;
    border-radius: .5rem;
    height: calc(1rem - 4px);
    left: calc(-2.25rem + 2px);
    top: calc(.25rem + 2px);
    transition: transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    width: calc(1rem - 4px)
}

@media (prefers-reduced-motion:reduce) {
    .custom-switch .custom-control-label:after {
        transition: none
    }
}

.custom-switch .custom-control-input:checked~.custom-control-label:after {
    background-color: #fff;
    transform: translateX(.75rem)
}

.custom-switch .custom-control-input:disabled:checked~.custom-control-label:before {
    background-color: rgba(33,87,138,.5)
}

.custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    color: #495057;
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    height: calc(1.5em + .75rem + 2px);
    line-height: 1.5;
    padding: .375rem 1.75rem .375rem .75rem;
    vertical-align: middle;
    width: 100%
}

.custom-select:focus {
    border-color: #5497d6;
    box-shadow: 0 0 0 .2rem rgba(33,87,138,.25);
    outline: 0
}

.custom-select:focus::-ms-value {
    background-color: #fff;
    color: #495057
}

.custom-select[multiple],.custom-select[size]:not([size="1"]) {
    background-image: none;
    height: auto;
    padding-right: .75rem
}

.custom-select:disabled {
    background-color: #e9ecef;
    color: #6c757d
}

.custom-select::-ms-expand {
    display: none
}

.custom-select-sm {
    font-size: .875rem;
    height: calc(1.5em + .5rem + 2px);
    padding-bottom: .25rem;
    padding-left: .5rem;
    padding-top: .25rem
}

.custom-select-lg {
    font-size: 1.25rem;
    height: calc(1.5em + 1rem + 2px);
    padding-bottom: .5rem;
    padding-left: 1rem;
    padding-top: .5rem
}

.custom-file {
    display: inline-block;
    margin-bottom: 0
}

.custom-file,.custom-file-input {
    height: calc(1.5em + .75rem + 2px);
    position: relative;
    width: 100%
}

.custom-file-input {
    margin: 0;
    opacity: 0;
    z-index: 2
}

.custom-file-input:focus~.custom-file-label {
    border-color: #5497d6;
    box-shadow: 0 0 0 .2rem rgba(33,87,138,.25)
}

.custom-file-input:disabled~.custom-file-label {
    background-color: #e9ecef
}

.custom-file-input:lang(en)~.custom-file-label:after {
    content: "Browse"
}

.custom-file-input~.custom-file-label[data-browse]:after {
    content: attr(data-browse)
}

.custom-file-label {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    font-weight: 400;
    height: calc(1.5em + .75rem + 2px);
    left: 0;
    z-index: 1
}

.custom-file-label,.custom-file-label:after {
    color: #495057;
    line-height: 1.5;
    padding: .375rem .75rem;
    position: absolute;
    right: 0;
    top: 0
}

.custom-file-label:after {
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 .25rem .25rem 0;
    bottom: 0;
    content: "Browse";
    display: block;
    height: calc(1.5em + .75rem);
    z-index: 3
}

.custom-range {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    height: 1.4rem;
    padding: 0;
    width: 100%
}

.custom-range:focus {
    outline: none
}

.custom-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(33,87,138,.25)
}

.custom-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(33,87,138,.25)
}

.custom-range:focus::-ms-thumb {
    box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(33,87,138,.25)
}

.custom-range::-moz-focus-outer {
    border: 0
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background-color: #21578a;
    border: 0;
    border-radius: 1rem;
    height: 1rem;
    margin-top: -.25rem;
    -webkit-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    width: 1rem
}

@media (prefers-reduced-motion:reduce) {
    .custom-range::-webkit-slider-thumb {
        -webkit-transition: none;
        transition: none
    }
}

.custom-range::-webkit-slider-thumb:active {
    background-color: #7db0e0
}

.custom-range::-webkit-slider-runnable-track {
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
    color: transparent;
    cursor: pointer;
    height: .5rem;
    width: 100%
}

.custom-range::-moz-range-thumb {
    -moz-appearance: none;
    appearance: none;
    background-color: #21578a;
    border: 0;
    border-radius: 1rem;
    height: 1rem;
    -moz-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    width: 1rem
}

@media (prefers-reduced-motion:reduce) {
    .custom-range::-moz-range-thumb {
        -moz-transition: none;
        transition: none
    }
}

.custom-range::-moz-range-thumb:active {
    background-color: #7db0e0
}

.custom-range::-moz-range-track {
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
    color: transparent;
    cursor: pointer;
    height: .5rem;
    width: 100%
}

.custom-range::-ms-thumb {
    appearance: none;
    background-color: #21578a;
    border: 0;
    border-radius: 1rem;
    height: 1rem;
    margin-left: .2rem;
    margin-right: .2rem;
    margin-top: 0;
    -ms-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    width: 1rem
}

@media (prefers-reduced-motion:reduce) {
    .custom-range::-ms-thumb {
        -ms-transition: none;
        transition: none
    }
}

.custom-range::-ms-thumb:active {
    background-color: #7db0e0
}

.custom-range::-ms-track {
    background-color: transparent;
    border-color: transparent;
    border-width: .5rem;
    color: transparent;
    cursor: pointer;
    height: .5rem;
    width: 100%
}

.custom-range::-ms-fill-lower,.custom-range::-ms-fill-upper {
    background-color: #dee2e6;
    border-radius: 1rem
}

.custom-range::-ms-fill-upper {
    margin-right: 15px
}

.custom-range:disabled::-webkit-slider-thumb {
    background-color: #adb5bd
}

.custom-range:disabled::-webkit-slider-runnable-track {
    cursor: default
}

.custom-range:disabled::-moz-range-thumb {
    background-color: #adb5bd
}

.custom-range:disabled::-moz-range-track {
    cursor: default
}

.custom-range:disabled::-ms-thumb {
    background-color: #adb5bd
}

.custom-control-label:before,.custom-file-label,.custom-select {
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .custom-control-label:before,.custom-file-label,.custom-select {
        transition: none
    }
}

.nav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0
}

.nav-link {
    display: block;
    padding: .5rem 1rem
}

.nav-link:focus,.nav-link:hover {
    text-decoration: none
}

.nav-link.disabled {
    color: #6c757d;
    cursor: default;
    pointer-events: none
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6
}

.nav-tabs .nav-item {
    margin-bottom: -1px
}

.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #dee2e6
}

.nav-tabs .nav-link.disabled {
    background-color: transparent;
    border-color: transparent;
    color: #6c757d
}

.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active {
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
    color: #495057
}

.nav-tabs .dropdown-menu {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: -1px
}

.nav-pills .nav-link {
    border-radius: .25rem
}

.nav-pills .nav-link.active,.nav-pills .show>.nav-link {
    background-color: #21578a;
    color: #fff
}

.nav-fill .nav-item {
    flex: 1 1 auto;
    text-align: center
}

.nav-justified .nav-item {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center
}

.tab-content>.tab-pane {
    display: none
}

.tab-content>.active {
    display: block
}

.navbar {
    padding: .5rem 1rem;
    position: relative
}

.navbar,.navbar>.container,.navbar>.container-fluid {
    align-items: center;
    display: block !important;
    flex-wrap: wrap;
    justify-content: space-between
}

.navbar-brand {
    display: inline-block;
    font-size: 1.25rem;
    line-height: inherit;
    margin-right: 1rem;
    padding-bottom: .3125rem;
    padding-top: .3125rem;
    white-space: nowrap
}

.navbar-brand:focus,.navbar-brand:hover {
    text-decoration: none
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0
}

.navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0
}

.navbar-nav .dropdown-menu {
    float: none;
    position: static
}

.navbar-text {
    display: inline-block;
    padding-bottom: .5rem;
    padding-top: .5rem
}

.navbar-collapse {
    align-items: center;
    flex-basis: 100%;
    flex-grow: 1
}

.navbar-toggler {
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
    font-size: 1.25rem;
    line-height: 1;
    padding: .25rem .75rem
}

.navbar-toggler:focus,.navbar-toggler:hover {
    text-decoration: none
}

.navbar-toggler-icon {
    background: no-repeat 50%;
    background-size: 100% 100%;
    content: "";
    display: inline-block;
    height: 1.5em;
    vertical-align: middle;
    width: 1.5em
}

@media (max-width: 575.98px) {
    .navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid {
        padding-left:0;
        padding-right: 0
    }
}

@media (min-width: 576px) {
    .navbar-expand-sm {
        flex-flow:row nowrap;
        justify-content: flex-start
    }

    .navbar-expand-sm .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-sm .navbar-nav .nav-link {
        padding-left: .5rem;
        padding-right: .5rem
    }

    .navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid {
        flex-wrap: nowrap
    }

    .navbar-expand-sm .navbar-collapse {
        display: flex!important;
        flex-basis: auto
    }

    .navbar-expand-sm .navbar-toggler {
        display: none
    }
}

@media (max-width: 767.98px) {
    .navbar-expand-md>.container,.navbar-expand-md>.container-fluid {
        padding-left:0;
        padding-right: 0
    }
}

@media (min-width: 768px) {
    .navbar-expand-md {
        flex-flow:row nowrap;
        justify-content: flex-start
    }

    .navbar-expand-md .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-md .navbar-nav .nav-link {
        padding-left: .5rem;
        padding-right: .5rem
    }

    .navbar-expand-md>.container,.navbar-expand-md>.container-fluid {
        flex-wrap: nowrap
    }

    .navbar-expand-md .navbar-collapse {
        display: flex!important;
        flex-basis: auto
    }

    .navbar-expand-md .navbar-toggler {
        display: none
    }
}

@media (max-width: 991.98px) {
    .navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid {
        padding-left:0;
        padding-right: 0
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-flow:row nowrap;
        justify-content: flex-start
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: .5rem;
        padding-right: .5rem
    }

    .navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid {
        flex-wrap: nowrap
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex!important;
        flex-basis: auto
    }

    .navbar-expand-lg .navbar-toggler {
        display: none
    }
}

@media (max-width: 1199.98px) {
    .navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid {
        padding-left:0;
        padding-right: 0
    }
}

@media (min-width: 1200px) {
    .navbar-expand-xl {
        flex-flow:row nowrap;
        justify-content: flex-start
    }

    .navbar-expand-xl .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-xl .navbar-nav .nav-link {
        padding-left: .5rem;
        padding-right: .5rem
    }

    .navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid {
        flex-wrap: nowrap
    }

    .navbar-expand-xl .navbar-collapse {
        display: flex!important;
        flex-basis: auto
    }

    .navbar-expand-xl .navbar-toggler {
        display: none
    }
}

.navbar-expand {
    flex-flow: row nowrap;
    justify-content: flex-start
}

.navbar-expand>.container,.navbar-expand>.container-fluid {
    padding-left: 0;
    padding-right: 0
}

.navbar-expand .navbar-nav {
    flex-direction: row
}

.navbar-expand .navbar-nav .dropdown-menu {
    position: absolute
}

.navbar-expand .navbar-nav .nav-link {
    padding-left: .5rem;
    padding-right: .5rem
}

.navbar-expand>.container,.navbar-expand>.container-fluid {
    flex-wrap: nowrap
}

.navbar-expand .navbar-collapse {
    display: flex!important;
    flex-basis: auto
}

.navbar-expand .navbar-toggler {
    display: none
}

.navbar-light .navbar-brand,.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover {
    color: rgba(0,0,0,.9)
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0,0,0,.5)
}

.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover {
    color: rgba(0,0,0,.7)
}

.navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0,0,0,.3)
}

.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link {
    color: rgba(0,0,0,.9)
}

.navbar-light .navbar-toggler {
    border-color: rgba(0,0,0,.1);
    color: rgba(0,0,0,.5)
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
}

.navbar-light .navbar-text {
    color: rgba(0,0,0,.5)
}

.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover {
    color: rgba(0,0,0,.9)
}

.navbar-dark .navbar-brand,.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover {
    color: #fff
}

.navbar-dark .navbar-nav .nav-link {
    color: hsla(0,0%,100%,.5)
}

.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover {
    color: hsla(0,0%,100%,.75)
}

.navbar-dark .navbar-nav .nav-link.disabled {
    color: hsla(0,0%,100%,.25)
}

.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link {
    color: #fff
}

.navbar-dark .navbar-toggler {
    border-color: hsla(0,0%,100%,.1);
    color: hsla(0,0%,100%,.5)
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
}

.navbar-dark .navbar-text {
    color: hsla(0,0%,100%,.5)
}

.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover {
    color: #fff
}

.card {
    word-wrap: break-word;
    background-clip: border-box;
    background-color: none;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
    display: flex;
    flex-direction: column;
    min-width: 0;
    position: relative
}

.card>hr {
    margin-left: 0;
    margin-right: 0
}

.card>.list-group:first-child .list-group-item:first-child {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.card>.list-group:last-child .list-group-item:last-child {
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.card-body {
    flex: 1 1 auto;
    padding: 1.25rem
}

.card-title {
    margin-bottom: .75rem
}

.card-subtitle {
    margin-top: -.375rem
}

.card-subtitle,.card-text:last-child {
    margin-bottom: 0
}

.card-link:hover {
    text-decoration: none
}

.card-link+.card-link {
    margin-left: 1.25rem
}

.card-header {
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
    margin-bottom: 0;
    padding: .75rem 1.25rem
}

.card-header:first-child {
    border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0
}

.card-header+.list-group .list-group-item:first-child {
    border-top: 0
}

.card-footer {
    background-color: rgba(0,0,0,.03);
    border-top: 1px solid rgba(0,0,0,.125);
    padding: .75rem 1.25rem
}

.card-footer:last-child {
    border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px)
}

.card-header-tabs {
    border-bottom: 0;
    margin-bottom: -.75rem
}

.card-header-pills,.card-header-tabs {
    margin-left: -.625rem;
    margin-right: -.625rem
}

.card-img-overlay {
    bottom: 0;
    left: 0;
    padding: 1.25rem;
    position: absolute;
    right: 0;
    top: 0
}

.card-img {
    border-radius: calc(.25rem - 1px);
    width: 100%
}

.card-img-top {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
    width: 100%
}

.card-img-bottom {
    border-bottom-left-radius: calc(.25rem - 1px);
    border-bottom-right-radius: calc(.25rem - 1px);
    width: 100%
}

.card-deck {
    display: flex;
    flex-direction: column
}

.card-deck .card {
    margin-bottom: 20px
}

@media (min-width: 576px) {
    .card-deck {
        flex-flow:row wrap;
        margin-left: -20px;
        margin-right: -20px
    }

    .card-deck .card {
        display: flex;
        flex: 1 0 0%;
        flex-direction: column;
        margin-bottom: 0;
        margin-left: 20px;
        margin-right: 20px
    }
}

.card-group {
    display: flex;
    flex-direction: column
}

.card-group>.card {
    margin-bottom: 20px
}

@media (min-width: 576px) {
    .card-group {
        flex-flow:row wrap
    }

    .card-group>.card {
        flex: 1 0 0%;
        margin-bottom: 0
    }

    .card-group>.card+.card {
        border-left: 0;
        margin-left: 0
    }

    .card-group>.card:not(:last-child) {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0
    }

    .card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top {
        border-top-right-radius: 0
    }

    .card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom {
        border-bottom-right-radius: 0
    }

    .card-group>.card:not(:first-child) {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0
    }

    .card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top {
        border-top-left-radius: 0
    }

    .card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom {
        border-bottom-left-radius: 0
    }
}

.card-columns .card {
    margin-bottom: .75rem
}

@media (min-width: 576px) {
    .card-columns {
        -moz-column-count:3;
        column-count: 3;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1
    }

    .card-columns .card {
        display: inline-block;
        width: 100%
    }
}

.accordion>.card {
    overflow: hidden
}

.accordion>.card:not(:first-of-type) .card-header:first-child {
    border-radius: 0
}

.accordion>.card:not(:first-of-type):not(:last-of-type) {
    border-bottom: 0;
    border-radius: 0
}

.accordion>.card:first-of-type {
    border-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.accordion>.card:last-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.accordion>.card .card-header {
    margin-bottom: -1px
}

.breadcrumb {
    background-color: none;
    border-radius: .25rem;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 1rem;
    padding: .75rem 1rem
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: .5rem
}

.breadcrumb-item+.breadcrumb-item:before {
    color: #717b2d;
    content: ">";
    display: inline-block;
    padding-right: .5rem
}

.breadcrumb-item+.breadcrumb-item:hover:before {
    text-decoration: underline;
    text-decoration: none
}

.breadcrumb-item.active {
    color: #6c757d
}

.pagination {
    border-radius: .25rem;
    display: flex;
    list-style: none;
    padding-left: 0
}

.page-link {
    background-color: #fff;
    border: 1px solid #dee2e6;
    color: #21578a;
    display: block;
    line-height: 1.25;
    margin-left: -1px;
    padding: .5rem .75rem;
    position: relative
}

.page-link:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
    color: #12304c;
    text-decoration: none;
    z-index: 2
}

.page-link:focus {
    box-shadow: 0 0 0 .2rem rgba(33,87,138,.25);
    outline: 0;
    z-index: 2
}

.page-item:first-child .page-link {
    border-bottom-left-radius: .25rem;
    border-top-left-radius: .25rem;
    margin-left: 0
}

.page-item:last-child .page-link {
    border-bottom-right-radius: .25rem;
    border-top-right-radius: .25rem
}

.page-item.active .page-link {
    background-color: #21578a;
    border-color: #21578a;
    color: #fff;
    z-index: 1
}

.page-item.disabled .page-link {
    background-color: #fff;
    border-color: #dee2e6;
    color: #6c757d;
    cursor: auto;
    pointer-events: none
}

.pagination-lg .page-link {
    font-size: 1.25rem;
    line-height: 1.5;
    padding: .75rem 1.5rem
}

.pagination-lg .page-item:first-child .page-link {
    border-bottom-left-radius: .3rem;
    border-top-left-radius: .3rem
}

.pagination-lg .page-item:last-child .page-link {
    border-bottom-right-radius: .3rem;
    border-top-right-radius: .3rem
}

.pagination-sm .page-link {
    font-size: .875rem;
    line-height: 1.5;
    padding: .25rem .5rem
}

.pagination-sm .page-item:first-child .page-link {
    border-bottom-left-radius: .2rem;
    border-top-left-radius: .2rem
}

.pagination-sm .page-item:last-child .page-link {
    border-bottom-right-radius: .2rem;
    border-top-right-radius: .2rem
}

.badge {
    border-radius: .25rem;
    display: inline-block;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    padding: .25em .4em;
    text-align: center;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    vertical-align: baseline;
    white-space: nowrap
}

@media (prefers-reduced-motion:reduce) {
    .badge {
        transition: none
    }
}

a.badge:focus,a.badge:hover {
    text-decoration: none
}

.badge:empty {
    display: none
}

.btn .badge {
    position: relative;
    top: -1px
}

.badge-pill {
    border-radius: 10rem;
    padding-left: .6em;
    padding-right: .6em
}

.badge-primary {
    background-color: #21578a;
    color: #fff
}

a.badge-primary:focus,a.badge-primary:hover {
    background-color: #173d61;
    color: #fff
}

a.badge-primary.focus,a.badge-primary:focus {
    box-shadow: 0 0 0 .2rem rgba(33,87,138,.5);
    outline: 0
}

.badge-secondary {
    background-color: #717b2d;
    color: #fff
}

a.badge-secondary:focus,a.badge-secondary:hover {
    background-color: #4f561f;
    color: #fff
}

a.badge-secondary.focus,a.badge-secondary:focus {
    box-shadow: 0 0 0 .2rem rgba(113,123,45,.5);
    outline: 0
}

.badge-success {
    background-color: #28a745;
    color: #fff
}

a.badge-success:focus,a.badge-success:hover {
    background-color: #1e7e34;
    color: #fff
}

a.badge-success.focus,a.badge-success:focus {
    box-shadow: 0 0 0 .2rem rgba(40,167,69,.5);
    outline: 0
}

.badge-info {
    background-color: #17a2b8;
    color: #fff
}

a.badge-info:focus,a.badge-info:hover {
    background-color: #117a8b;
    color: #fff
}

a.badge-info.focus,a.badge-info:focus {
    box-shadow: 0 0 0 .2rem rgba(23,162,184,.5);
    outline: 0
}

.badge-warning {
    background-color: #ffc107;
    color: #212529
}

a.badge-warning:focus,a.badge-warning:hover {
    background-color: #d39e00;
    color: #212529
}

a.badge-warning.focus,a.badge-warning:focus {
    box-shadow: 0 0 0 .2rem rgba(255,193,7,.5);
    outline: 0
}

.badge-danger {
    background-color: #dc3545;
    color: #fff
}

a.badge-danger:focus,a.badge-danger:hover {
    background-color: #bd2130;
    color: #fff
}

a.badge-danger.focus,a.badge-danger:focus {
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.5);
    outline: 0
}

.badge-light {
    background-color: #f4f3f1;
    color: #212529
}

a.badge-light:focus,a.badge-light:hover {
    background-color: #dedbd4;
    color: #212529
}

a.badge-light.focus,a.badge-light:focus {
    box-shadow: 0 0 0 .2rem hsla(40,12%,95%,.5);
    outline: 0
}

.badge-medium-light {
    background-color: #dee2e6;
    color: #212529
}

a.badge-medium-light:focus,a.badge-medium-light:hover {
    background-color: #c1c9d0;
    color: #212529
}

a.badge-medium-light.focus,a.badge-medium-light:focus {
    box-shadow: 0 0 0 .2rem rgba(222,226,230,.5);
    outline: 0
}

.badge-dark {
    background-color: #343a40;
    color: #fff
}

a.badge-dark:focus,a.badge-dark:hover {
    background-color: #1d2124;
    color: #fff
}

a.badge-dark.focus,a.badge-dark:focus {
    box-shadow: 0 0 0 .2rem rgba(52,58,64,.5);
    outline: 0
}

.jumbotron {
    background-color: #e9ecef;
    border-radius: .3rem;
    margin-bottom: 2rem;
    padding: 2rem 1rem
}

@media (min-width: 576px) {
    .jumbotron {
        padding:4rem 2rem
    }
}

.jumbotron-fluid {
    border-radius: 0;
    padding-left: 0;
    padding-right: 0
}

.alert {
    border: 1px solid transparent;
    border-radius: .25rem;
    margin-bottom: 1rem;
    padding: .75rem 1.25rem;
    position: relative
}

.alert-heading {
    color: inherit
}

.alert-link {
    font-weight: 700
}

.alert-dismissible {
    padding-right: 4rem
}

.alert-dismissible .close {
    color: inherit;
    padding: .75rem 1.25rem;
    position: absolute;
    right: 0;
    top: 0
}

.alert-primary {
    background-color: #d3dde8;
    border-color: #c1d0de;
    color: #112d48
}

.alert-primary hr {
    border-top-color: #b0c3d5
}

.alert-primary .alert-link {
    color: #07131f
}

.alert-secondary {
    background-color: #e3e5d5;
    border-color: #d7dac4;
    color: #3b4017
}

.alert-secondary hr {
    border-top-color: #cdd0b5
}

.alert-secondary .alert-link {
    color: #181b0a
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724
}

.alert-success hr {
    border-top-color: #b1dfbb
}

.alert-success .alert-link {
    color: #0b2e13
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460
}

.alert-info hr {
    border-top-color: #abdde5
}

.alert-info .alert-link {
    color: #062c32
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeeba;
    color: #856404
}

.alert-warning hr {
    border-top-color: #ffe7a0
}

.alert-warning .alert-link {
    color: #533f02
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24
}

.alert-danger hr {
    border-top-color: #f1b1b7
}

.alert-danger .alert-link {
    color: #491217
}

.alert-light {
    background-color: #fdfdfc;
    border-color: #fcfcfb;
    color: #7f7e7d
}

.alert-light hr {
    border-top-color: #f1efed
}

.alert-light .alert-link {
    color: #656564
}

.alert-medium-light {
    background-color: #f8f9fa;
    border-color: #f6f7f8;
    color: #737678
}

.alert-medium-light hr {
    border-top-color: #e7eaed
}

.alert-medium-light .alert-link {
    color: #5a5c5e
}

.alert-dark {
    background-color: #d6d8d9;
    border-color: #c6c8ca;
    color: #1b1e21
}

.alert-dark hr {
    border-top-color: #b9bbbd
}

.alert-dark .alert-link {
    color: #040505
}

@keyframes progress-bar-stripes {
    0% {
        background-position: 1rem 0
    }

    to {
        background-position: 0 0
    }
}

.progress {
    background-color: #e9ecef;
    border-radius: .25rem;
    display: flex;
    font-size: .75rem;
    height: 1rem;
    overflow: hidden
}

.progress-bar {
    background-color: #21578a;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transition: width .6s ease;
    white-space: nowrap
}

@media (prefers-reduced-motion:reduce) {
    .progress-bar {
        transition: none
    }
}

.progress-bar-striped {
    background-image: linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);
    background-size: 1rem 1rem
}

.progress-bar-animated {
    animation: progress-bar-stripes 1s linear infinite
}

@media (prefers-reduced-motion:reduce) {
    .progress-bar-animated {
        animation: none
    }
}

.media {
    align-items: flex-start;
    display: flex
}

.media-body {
    flex: 1
}

.list-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    padding-left: 0
}

.list-group-item-action {
    color: #495057;
    text-align: inherit;
    width: 100%
}

.list-group-item-action:focus,.list-group-item-action:hover {
    background-color: #f4f3f1;
    color: #495057;
    text-decoration: none;
    z-index: 1
}

.list-group-item-action:active {
    background-color: #e9ecef;
    color: #414141
}

.list-group-item {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125);
    display: block;
    margin-bottom: -1px;
    padding: .75rem 1.25rem;
    position: relative
}

.list-group-item:first-child {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.list-group-item:last-child {
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
    margin-bottom: 0
}

.list-group-item.disabled,.list-group-item:disabled {
    background-color: #fff;
    color: #6c757d;
    pointer-events: none
}

.list-group-item.active {
    background-color: #21578a;
    border-color: #21578a;
    color: #fff;
    z-index: 2
}

.list-group-horizontal {
    flex-direction: row
}

.list-group-horizontal .list-group-item {
    margin-bottom: 0;
    margin-right: -1px
}

.list-group-horizontal .list-group-item:first-child {
    border-bottom-left-radius: .25rem;
    border-top-left-radius: .25rem;
    border-top-right-radius: 0
}

.list-group-horizontal .list-group-item:last-child {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: .25rem;
    border-top-right-radius: .25rem;
    margin-right: 0
}

@media (min-width: 576px) {
    .list-group-horizontal-sm {
        flex-direction:row
    }

    .list-group-horizontal-sm .list-group-item {
        margin-bottom: 0;
        margin-right: -1px
    }

    .list-group-horizontal-sm .list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-sm .list-group-item:last-child {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: .25rem;
        border-top-right-radius: .25rem;
        margin-right: 0
    }
}

@media (min-width: 768px) {
    .list-group-horizontal-md {
        flex-direction:row
    }

    .list-group-horizontal-md .list-group-item {
        margin-bottom: 0;
        margin-right: -1px
    }

    .list-group-horizontal-md .list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-md .list-group-item:last-child {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: .25rem;
        border-top-right-radius: .25rem;
        margin-right: 0
    }
}

@media (min-width: 992px) {
    .list-group-horizontal-lg {
        flex-direction:row
    }

    .list-group-horizontal-lg .list-group-item {
        margin-bottom: 0;
        margin-right: -1px
    }

    .list-group-horizontal-lg .list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-lg .list-group-item:last-child {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: .25rem;
        border-top-right-radius: .25rem;
        margin-right: 0
    }
}

@media (min-width: 1200px) {
    .list-group-horizontal-xl {
        flex-direction:row
    }

    .list-group-horizontal-xl .list-group-item {
        margin-bottom: 0;
        margin-right: -1px
    }

    .list-group-horizontal-xl .list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-xl .list-group-item:last-child {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: .25rem;
        border-top-right-radius: .25rem;
        margin-right: 0
    }
}

.list-group-flush .list-group-item {
    border-left: 0;
    border-radius: 0;
    border-right: 0
}

.list-group-flush .list-group-item:last-child {
    margin-bottom: -1px
}

.list-group-flush:first-child .list-group-item:first-child {
    border-top: 0
}

.list-group-flush:last-child .list-group-item:last-child {
    border-bottom: 0;
    margin-bottom: 0
}

.list-group-item-primary {
    background-color: #c1d0de;
    color: #112d48
}

.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover {
    background-color: #b0c3d5;
    color: #112d48
}

.list-group-item-primary.list-group-item-action.active {
    background-color: #112d48;
    border-color: #112d48;
    color: #fff
}

.list-group-item-secondary {
    background-color: #d7dac4;
    color: #3b4017
}

.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover {
    background-color: #cdd0b5;
    color: #3b4017
}

.list-group-item-secondary.list-group-item-action.active {
    background-color: #3b4017;
    border-color: #3b4017;
    color: #fff
}

.list-group-item-success {
    background-color: #c3e6cb;
    color: #155724
}

.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover {
    background-color: #b1dfbb;
    color: #155724
}

.list-group-item-success.list-group-item-action.active {
    background-color: #155724;
    border-color: #155724;
    color: #fff
}

.list-group-item-info {
    background-color: #bee5eb;
    color: #0c5460
}

.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover {
    background-color: #abdde5;
    color: #0c5460
}

.list-group-item-info.list-group-item-action.active {
    background-color: #0c5460;
    border-color: #0c5460;
    color: #fff
}

.list-group-item-warning {
    background-color: #ffeeba;
    color: #856404
}

.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover {
    background-color: #ffe7a0;
    color: #856404
}

.list-group-item-warning.list-group-item-action.active {
    background-color: #856404;
    border-color: #856404;
    color: #fff
}

.list-group-item-danger {
    background-color: #f5c6cb;
    color: #721c24
}

.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover {
    background-color: #f1b1b7;
    color: #721c24
}

.list-group-item-danger.list-group-item-action.active {
    background-color: #721c24;
    border-color: #721c24;
    color: #fff
}

.list-group-item-light {
    background-color: #fcfcfb;
    color: #7f7e7d
}

.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover {
    background-color: #f1efed;
    color: #7f7e7d
}

.list-group-item-light.list-group-item-action.active {
    background-color: #7f7e7d;
    border-color: #7f7e7d;
    color: #fff
}

.list-group-item-medium-light {
    background-color: #f6f7f8;
    color: #737678
}

.list-group-item-medium-light.list-group-item-action:focus,.list-group-item-medium-light.list-group-item-action:hover {
    background-color: #e7eaed;
    color: #737678
}

.list-group-item-medium-light.list-group-item-action.active {
    background-color: #737678;
    border-color: #737678;
    color: #fff
}

.list-group-item-dark {
    background-color: #c6c8ca;
    color: #1b1e21
}

.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover {
    background-color: #b9bbbd;
    color: #1b1e21
}

.list-group-item-dark.list-group-item-action.active {
    background-color: #1b1e21;
    border-color: #1b1e21;
    color: #fff
}

.close {
    color: #000;
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    opacity: .5;
    text-shadow: 0 1px 0 #fff
}

@media (max-width: 1200px) {
    .close {
        font-size:calc(1.275rem + .3vw)
    }
}

.close:hover {
    color: #000;
    text-decoration: none
}

.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover {
    opacity: .75
}

button.close {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 0;
    padding: 0
}

a.close.disabled {
    pointer-events: none
}

.modal-open {
    overflow: hidden
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal {
    display: none;
    height: 100%;
    left: 0;
    outline: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050
}

.modal-dialog {
    margin: .5rem;
    pointer-events: none;
    position: relative;
    width: auto
}

.modal.fade .modal-dialog {
    transform: translateY(-50px);
    transition: transform .3s ease-out
}

@media (prefers-reduced-motion:reduce) {
    .modal.fade .modal-dialog {
        transition: none
    }
}

.modal.show .modal-dialog {
    transform: none
}

.modal-dialog-scrollable {
    display: flex;
    max-height: calc(100% - 1rem)
}

.modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden
}

.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header {
    flex-shrink: 0
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto
}

.modal-dialog-centered {
    align-items: center;
    display: flex;
    min-height: calc(100% - 1rem)
}

.modal-dialog-centered:before {
    content: "";
    display: block;
    height: calc(100vh - 1rem)
}

.modal-dialog-centered.modal-dialog-scrollable {
    flex-direction: column;
    height: 100%;
    justify-content: center
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
    max-height: none
}

.modal-dialog-centered.modal-dialog-scrollable:before {
    content: none
}

.modal-content {
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    display: flex;
    flex-direction: column;
    outline: 0;
    pointer-events: auto;
    position: relative;
    width: 100%
}

.modal-backdrop {
    background-color: #000;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1040
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop.show {
    opacity: .5
}

.modal-header {
    align-items: flex-start;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
    display: flex;
    justify-content: space-between;
    padding: 1rem
}

.modal-header .close {
    margin: -1rem -1rem -1rem auto;
    padding: 1rem
}

.modal-title {
    line-height: 1.5;
    margin-bottom: 0
}

.modal-body {
    flex: 1 1 auto;
    padding: 1rem;
    position: relative
}

.modal-footer {
    align-items: center;
    border-bottom-left-radius: .3rem;
    border-bottom-right-radius: .3rem;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: flex-end;
    padding: 1rem
}

.modal-footer>:not(:first-child) {
    margin-left: .25rem
}

.modal-footer>:not(:last-child) {
    margin-right: .25rem
}

.modal-scrollbar-measure {
    height: 50px;
    overflow: scroll;
    position: absolute;
    top: -9999px;
    width: 50px
}

@media (min-width: 576px) {
    .modal-dialog {
        margin:1.75rem auto;
        max-width: 500px
    }

    .modal-dialog-scrollable {
        max-height: calc(100% - 3.5rem)
    }

    .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 3.5rem)
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }

    .modal-dialog-centered:before {
        height: calc(100vh - 3.5rem)
    }

    .modal-sm {
        max-width: 300px
    }
}

@media (min-width: 992px) {
    .modal-lg,.modal-xl {
        max-width:800px
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        max-width:1140px
    }
}

.tooltip {
    word-wrap: break-word;
    display: block;
    font-family: Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    font-size: .778rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.5;
    margin: 0;
    opacity: 0;
    position: absolute;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    z-index: 1070
}

.tooltip.show {
    opacity: 1
}

.tooltip .arrow {
    display: block;
    height: .4rem;
    position: absolute;
    width: .8rem
}

.tooltip .arrow:before {
    border-color: transparent;
    border-style: solid;
    content: "";
    position: absolute
}

.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top {
    padding: .4rem 0
}

.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow {
    bottom: 0
}

.bs-tooltip-auto[x-placement^=top] .arrow:before,.bs-tooltip-top .arrow:before {
    border-top-color: #21578a;
    border-width: .4rem .4rem 0;
    top: 0
}

.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right {
    padding: 0 .4rem
}

.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow {
    height: .8rem;
    left: 0;
    width: .4rem
}

.bs-tooltip-auto[x-placement^=right] .arrow:before,.bs-tooltip-right .arrow:before {
    border-right-color: #21578a;
    border-width: .4rem .4rem .4rem 0;
    right: 0
}

.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom {
    padding: .4rem 0
}

.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow {
    top: 0
}

.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.bs-tooltip-bottom .arrow:before {
    border-bottom-color: #21578a;
    border-width: 0 .4rem .4rem;
    bottom: 0
}

.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left {
    padding: 0 .4rem
}

.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow {
    height: .8rem;
    right: 0;
    width: .4rem
}

.bs-tooltip-auto[x-placement^=left] .arrow:before,.bs-tooltip-left .arrow:before {
    border-left-color: #21578a;
    border-width: .4rem 0 .4rem .4rem;
    left: 0
}

.tooltip-inner {
    background-color: #21578a;
    border-radius: 20px;
    max-width: 200px;
    padding: 15px 20px;
    text-align: center
}

.popover {
    word-wrap: break-word;
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    font-family: Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    left: 0;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.5;
    max-width: 276px;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    top: 0;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    z-index: 1060
}

.popover,.popover .arrow {
    display: block;
    position: absolute
}

.popover .arrow {
    height: .5rem;
    margin: 0 .3rem;
    width: 1rem
}

.popover .arrow:after,.popover .arrow:before {
    border-color: transparent;
    border-style: solid;
    content: "";
    display: block;
    position: absolute
}

.bs-popover-auto[x-placement^=top],.bs-popover-top {
    margin-bottom: .5rem
}

.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow {
    bottom: calc(-.5rem + -1px)
}

.bs-popover-auto[x-placement^=top]>.arrow:before,.bs-popover-top>.arrow:before {
    border-top-color: rgba(0,0,0,.25);
    border-width: .5rem .5rem 0;
    bottom: 0
}

.bs-popover-auto[x-placement^=top]>.arrow:after,.bs-popover-top>.arrow:after {
    border-top-color: #fff;
    border-width: .5rem .5rem 0;
    bottom: 1px
}

.bs-popover-auto[x-placement^=right],.bs-popover-right {
    margin-left: .5rem
}

.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow {
    height: 1rem;
    left: calc(-.5rem + -1px);
    margin: .3rem 0;
    width: .5rem
}

.bs-popover-auto[x-placement^=right]>.arrow:before,.bs-popover-right>.arrow:before {
    border-right-color: rgba(0,0,0,.25);
    border-width: .5rem .5rem .5rem 0;
    left: 0
}

.bs-popover-auto[x-placement^=right]>.arrow:after,.bs-popover-right>.arrow:after {
    border-right-color: #fff;
    border-width: .5rem .5rem .5rem 0;
    left: 1px
}

.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom {
    margin-top: .5rem
}

.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow {
    top: calc(-.5rem + -1px)
}

.bs-popover-auto[x-placement^=bottom]>.arrow:before,.bs-popover-bottom>.arrow:before {
    border-bottom-color: rgba(0,0,0,.25);
    border-width: 0 .5rem .5rem;
    top: 0
}

.bs-popover-auto[x-placement^=bottom]>.arrow:after,.bs-popover-bottom>.arrow:after {
    border-bottom-color: #fff;
    border-width: 0 .5rem .5rem;
    top: 1px
}

.bs-popover-auto[x-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before {
    border-bottom: 1px solid #f7f7f7;
    content: "";
    display: block;
    left: 50%;
    margin-left: -.5rem;
    position: absolute;
    top: 0;
    width: 1rem
}

.bs-popover-auto[x-placement^=left],.bs-popover-left {
    margin-right: .5rem
}

.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow {
    height: 1rem;
    margin: .3rem 0;
    right: calc(-.5rem + -1px);
    width: .5rem
}

.bs-popover-auto[x-placement^=left]>.arrow:before,.bs-popover-left>.arrow:before {
    border-left-color: rgba(0,0,0,.25);
    border-width: .5rem 0 .5rem .5rem;
    right: 0
}

.bs-popover-auto[x-placement^=left]>.arrow:after,.bs-popover-left>.arrow:after {
    border-left-color: #fff;
    border-width: .5rem 0 .5rem .5rem;
    right: 1px
}

.popover-header {
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
    font-size: 1rem;
    margin-bottom: 0;
    padding: .5rem .75rem
}

.popover-header:empty {
    display: none
}

.popover-body {
    color: #414141;
    padding: .5rem .75rem
}

.carousel {
    position: relative
}

.carousel.pointer-event {
    touch-action: pan-y
}

.carousel-inner {
    overflow: hidden;
    position: relative;
    width: 100%
}

.carousel-inner:after {
    clear: both;
    content: "";
    display: block
}

.carousel-item {
    backface-visibility: hidden;
    display: none;
    float: left;
    margin-right: -100%;
    position: relative;
    transition: transform .6s ease-in-out;
    width: 100%
}

@media (prefers-reduced-motion:reduce) {
    .carousel-item {
        transition: none
    }
}

.carousel-item-next,.carousel-item-prev,.carousel-item.active {
    display: block
}

.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left) {
    transform: translateX(100%)
}

.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right) {
    transform: translateX(-100%)
}

.carousel-fade .carousel-item {
    opacity: 0;
    transform: none;
    transition-property: opacity
}

.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active {
    opacity: 1;
    z-index: 1
}

.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right {
    opacity: 0;
    transition: opacity 0s .6s;
    z-index: 0
}

@media (prefers-reduced-motion:reduce) {
    .carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right {
        transition: none
    }
}

.carousel-control-next,.carousel-control-prev {
    align-items: center;
    bottom: 0;
    color: #fff;
    display: flex;
    justify-content: center;
    opacity: .5;
    position: absolute;
    text-align: center;
    top: 0;
    transition: opacity .15s ease;
    width: 15%;
    z-index: 1
}

@media (prefers-reduced-motion:reduce) {
    .carousel-control-next,.carousel-control-prev {
        transition: none
    }
}

.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover {
    color: #fff;
    opacity: .9;
    outline: 0;
    text-decoration: none
}

.carousel-control-prev {
    left: 0
}

.carousel-control-next {
    right: 0
}

.carousel-control-next-icon,.carousel-control-prev-icon {
    background: no-repeat 50%/100% 100%;
    display: inline-block;
    height: 20px;
    width: 20px
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='m5.25 0-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3E%3C/svg%3E")
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='m2.75 0-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3E%3C/svg%3E")
}

.carousel-indicators {
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    list-style: none;
    margin-left: 15%;
    margin-right: 15%;
    padding-left: 0;
    position: absolute;
    right: 0;
    z-index: 15
}

.carousel-indicators li {
    background-clip: padding-box;
    background-color: #fff;
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
    box-sizing: content-box;
    cursor: pointer;
    flex: 0 1 auto;
    height: 3px;
    margin-left: 3px;
    margin-right: 3px;
    opacity: .5;
    text-indent: -999px;
    transition: opacity .6s ease;
    width: 30px
}

@media (prefers-reduced-motion:reduce) {
    .carousel-indicators li {
        transition: none
    }
}

.carousel-indicators .active {
    opacity: 1
}

.carousel-caption {
    bottom: 20px;
    color: #fff;
    left: 15%;
    padding-bottom: 20px;
    padding-top: 20px;
    position: absolute;
    right: 15%;
    text-align: center;
    z-index: 10
}

.align-baseline {
    vertical-align: baseline!important
}

.align-top {
    vertical-align: top!important
}

.align-middle {
    vertical-align: middle!important
}

.align-bottom {
    vertical-align: bottom!important
}

.align-text-bottom {
    vertical-align: text-bottom!important
}

.align-text-top {
    vertical-align: text-top!important
}

.bg-primary {
    background-color: #21578a!important
}

a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover {
    background-color: #173d61!important
}

.bg-secondary {
    background-color: #717b2d!important
}

a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover {
    background-color: #4f561f!important
}

.bg-success {
    background-color: #28a745!important
}

a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover {
    background-color: #1e7e34!important
}

.bg-info {
    background-color: #17a2b8!important
}

a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover {
    background-color: #117a8b!important
}

.bg-warning {
    background-color: #ffc107!important
}

a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover {
    background-color: #d39e00!important
}

.bg-danger {
    background-color: #dc3545!important
}

a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover {
    background-color: #bd2130!important
}

.bg-light {
    background-color: #f4f3f1!important
}

a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover {
    background-color: #dedbd4!important
}

.bg-medium-light {
    background-color: #dee2e6!important
}

a.bg-medium-light:focus,a.bg-medium-light:hover,button.bg-medium-light:focus,button.bg-medium-light:hover {
    background-color: #c1c9d0!important
}

.bg-dark {
    background-color: #343a40!important
}

a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover {
    background-color: #1d2124!important
}

.bg-white {
    background-color: #fff!important
}

.bg-transparent {
    background-color: transparent!important
}

.border {
    border: 1px solid #dee2e6!important
}

.border-top {
    border-top: 1px solid #dee2e6!important
}

.border-right {
    border-right: 1px solid #dee2e6!important
}

.border-bottom {
    border-bottom: 1px solid #dee2e6!important
}

.border-left {
    border-left: 1px solid #dee2e6!important
}

.border-0 {
    border: 0!important
}

.border-top-0 {
    border-top: 0!important
}

.border-right-0 {
    border-right: 0!important
}

.border-bottom-0 {
    border-bottom: 0!important
}

.border-left-0 {
    border-left: 0!important
}

.border-primary {
    border-color: #21578a!important
}

.border-secondary {
    border-color: #717b2d!important
}

.border-success {
    border-color: #28a745!important
}

.border-info {
    border-color: #17a2b8!important
}

.border-warning {
    border-color: #ffc107!important
}

.border-danger {
    border-color: #dc3545!important
}

.border-light {
    border-color: #f4f3f1!important
}

.border-medium-light {
    border-color: #dee2e6!important
}

.border-dark {
    border-color: #343a40!important
}

.border-white {
    border-color: #fff!important
}

.rounded-sm {
    border-radius: .2rem!important
}

.rounded {
    border-radius: .25rem!important
}

.rounded-top {
    border-top-left-radius: .25rem!important
}

.rounded-right,.rounded-top {
    border-top-right-radius: .25rem!important
}

.rounded-bottom,.rounded-right {
    border-bottom-right-radius: .25rem!important
}

.rounded-bottom,.rounded-left {
    border-bottom-left-radius: .25rem!important
}

.rounded-left {
    border-top-left-radius: .25rem!important
}

.rounded-lg {
    border-radius: .3rem!important
}

.rounded-circle {
    border-radius: 50%!important
}

.rounded-pill {
    border-radius: 50rem!important
}

.rounded-0 {
    border-radius: 0!important
}

.clearfix:after {
    clear: both;
    content: "";
    display: block
}

.d-none {
    display: none!important
}

.d-inline {
    display: inline!important
}

.d-inline-block {
    display: inline-block!important
}

.d-block {
    display: block!important
}

.d-table {
    display: table!important
}

.d-table-row {
    display: table-row!important
}

.d-table-cell {
    display: table-cell!important
}

.d-flex {
    display: flex!important
}

.d-inline-flex {
    display: inline-flex!important
}

@media (min-width: 576px) {
    .d-sm-none {
        display:none!important
    }

    .d-sm-inline {
        display: inline!important
    }

    .d-sm-inline-block {
        display: inline-block!important
    }

    .d-sm-block {
        display: block!important
    }

    .d-sm-table {
        display: table!important
    }

    .d-sm-table-row {
        display: table-row!important
    }

    .d-sm-table-cell {
        display: table-cell!important
    }

    .d-sm-flex {
        display: flex!important
    }

    .d-sm-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display:none!important
    }

    .d-md-inline {
        display: inline!important
    }

    .d-md-inline-block {
        display: inline-block!important
    }

    .d-md-block {
        display: block!important
    }

    .d-md-table {
        display: table!important
    }

    .d-md-table-row {
        display: table-row!important
    }

    .d-md-table-cell {
        display: table-cell!important
    }

    .d-md-flex {
        display: flex!important
    }

    .d-md-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display:none!important
    }

    .d-lg-inline {
        display: inline!important
    }

    .d-lg-inline-block {
        display: inline-block!important
    }

    .d-lg-block {
        display: block!important
    }

    .d-lg-table {
        display: table!important
    }

    .d-lg-table-row {
        display: table-row!important
    }

    .d-lg-table-cell {
        display: table-cell!important
    }

    .d-lg-flex {
        display: flex!important
    }

    .d-lg-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display:none!important
    }

    .d-xl-inline {
        display: inline!important
    }

    .d-xl-inline-block {
        display: inline-block!important
    }

    .d-xl-block {
        display: block!important
    }

    .d-xl-table {
        display: table!important
    }

    .d-xl-table-row {
        display: table-row!important
    }

    .d-xl-table-cell {
        display: table-cell!important
    }

    .d-xl-flex {
        display: flex!important
    }

    .d-xl-inline-flex {
        display: inline-flex!important
    }
}

@media print {
    .d-print-none {
        display: none!important
    }

    .d-print-inline {
        display: inline!important
    }

    .d-print-inline-block {
        display: inline-block!important
    }

    .d-print-block {
        display: block!important
    }

    .d-print-table {
        display: table!important
    }

    .d-print-table-row {
        display: table-row!important
    }

    .d-print-table-cell {
        display: table-cell!important
    }

    .d-print-flex {
        display: flex!important
    }

    .d-print-inline-flex {
        display: inline-flex!important
    }
}

.embed-responsive {
    display: block;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 100%
}

.embed-responsive:before {
    content: "";
    display: block
}

.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video {
    border: 0;
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.embed-responsive-21by9:before {
    padding-top: 42.8571428571%
}

.embed-responsive-16by9:before {
    padding-top: 56.25%
}

.embed-responsive-4by3:before {
    padding-top: 75%
}

.embed-responsive-1by1:before {
    padding-top: 100%
}

.flex-row {
    flex-direction: row!important
}

.flex-column {
    flex-direction: column!important
}

.flex-row-reverse {
    flex-direction: row-reverse!important
}

.flex-column-reverse {
    flex-direction: column-reverse!important
}

.flex-wrap {
    flex-wrap: wrap!important
}

.flex-nowrap {
    flex-wrap: nowrap!important
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse!important
}

.flex-fill {
    flex: 1 1 auto!important
}

.flex-grow-0 {
    flex-grow: 0!important
}

.flex-grow-1 {
    flex-grow: 1!important
}

.flex-shrink-0 {
    flex-shrink: 0!important
}

.flex-shrink-1 {
    flex-shrink: 1!important
}

.justify-content-start {
    justify-content: flex-start!important
}

.justify-content-end {
    justify-content: flex-end!important
}

.justify-content-center {
    justify-content: center!important
}

.justify-content-between {
    justify-content: space-between!important
}

.justify-content-around {
    justify-content: space-around!important
}

.align-items-start {
    align-items: flex-start!important
}

.align-items-end {
    align-items: flex-end!important
}

.align-items-center {
    align-items: center!important
}

.align-items-baseline {
    align-items: baseline!important
}

.align-items-stretch {
    align-items: stretch!important
}

.align-content-start {
    align-content: flex-start!important
}

.align-content-end {
    align-content: flex-end!important
}

.align-content-center {
    align-content: center!important
}

.align-content-between {
    align-content: space-between!important
}

.align-content-around {
    align-content: space-around!important
}

.align-content-stretch {
    align-content: stretch!important
}

.align-self-auto {
    align-self: auto!important
}

.align-self-start {
    align-self: flex-start!important
}

.align-self-end {
    align-self: flex-end!important
}

.align-self-center {
    align-self: center!important
}

.align-self-baseline {
    align-self: baseline!important
}

.align-self-stretch {
    align-self: stretch!important
}

@media (min-width: 576px) {
    .flex-sm-row {
        flex-direction:row!important
    }

    .flex-sm-column {
        flex-direction: column!important
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse!important
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse!important
    }

    .flex-sm-wrap {
        flex-wrap: wrap!important
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .flex-sm-fill {
        flex: 1 1 auto!important
    }

    .flex-sm-grow-0 {
        flex-grow: 0!important
    }

    .flex-sm-grow-1 {
        flex-grow: 1!important
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0!important
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1!important
    }

    .justify-content-sm-start {
        justify-content: flex-start!important
    }

    .justify-content-sm-end {
        justify-content: flex-end!important
    }

    .justify-content-sm-center {
        justify-content: center!important
    }

    .justify-content-sm-between {
        justify-content: space-between!important
    }

    .justify-content-sm-around {
        justify-content: space-around!important
    }

    .align-items-sm-start {
        align-items: flex-start!important
    }

    .align-items-sm-end {
        align-items: flex-end!important
    }

    .align-items-sm-center {
        align-items: center!important
    }

    .align-items-sm-baseline {
        align-items: baseline!important
    }

    .align-items-sm-stretch {
        align-items: stretch!important
    }

    .align-content-sm-start {
        align-content: flex-start!important
    }

    .align-content-sm-end {
        align-content: flex-end!important
    }

    .align-content-sm-center {
        align-content: center!important
    }

    .align-content-sm-between {
        align-content: space-between!important
    }

    .align-content-sm-around {
        align-content: space-around!important
    }

    .align-content-sm-stretch {
        align-content: stretch!important
    }

    .align-self-sm-auto {
        align-self: auto!important
    }

    .align-self-sm-start {
        align-self: flex-start!important
    }

    .align-self-sm-end {
        align-self: flex-end!important
    }

    .align-self-sm-center {
        align-self: center!important
    }

    .align-self-sm-baseline {
        align-self: baseline!important
    }

    .align-self-sm-stretch {
        align-self: stretch!important
    }
}

@media (min-width: 768px) {
    .flex-md-row {
        flex-direction:row!important
    }

    .flex-md-column {
        flex-direction: column!important
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse!important
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse!important
    }

    .flex-md-wrap {
        flex-wrap: wrap!important
    }

    .flex-md-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .flex-md-fill {
        flex: 1 1 auto!important
    }

    .flex-md-grow-0 {
        flex-grow: 0!important
    }

    .flex-md-grow-1 {
        flex-grow: 1!important
    }

    .flex-md-shrink-0 {
        flex-shrink: 0!important
    }

    .flex-md-shrink-1 {
        flex-shrink: 1!important
    }

    .justify-content-md-start {
        justify-content: flex-start!important
    }

    .justify-content-md-end {
        justify-content: flex-end!important
    }

    .justify-content-md-center {
        justify-content: center!important
    }

    .justify-content-md-between {
        justify-content: space-between!important
    }

    .justify-content-md-around {
        justify-content: space-around!important
    }

    .align-items-md-start {
        align-items: flex-start!important
    }

    .align-items-md-end {
        align-items: flex-end!important
    }

    .align-items-md-center {
        align-items: center!important
    }

    .align-items-md-baseline {
        align-items: baseline!important
    }

    .align-items-md-stretch {
        align-items: stretch!important
    }

    .align-content-md-start {
        align-content: flex-start!important
    }

    .align-content-md-end {
        align-content: flex-end!important
    }

    .align-content-md-center {
        align-content: center!important
    }

    .align-content-md-between {
        align-content: space-between!important
    }

    .align-content-md-around {
        align-content: space-around!important
    }

    .align-content-md-stretch {
        align-content: stretch!important
    }

    .align-self-md-auto {
        align-self: auto!important
    }

    .align-self-md-start {
        align-self: flex-start!important
    }

    .align-self-md-end {
        align-self: flex-end!important
    }

    .align-self-md-center {
        align-self: center!important
    }

    .align-self-md-baseline {
        align-self: baseline!important
    }

    .align-self-md-stretch {
        align-self: stretch!important
    }
}

@media (min-width: 992px) {
    .flex-lg-row {
        flex-direction:row!important
    }

    .flex-lg-column {
        flex-direction: column!important
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse!important
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse!important
    }

    .flex-lg-wrap {
        flex-wrap: wrap!important
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .flex-lg-fill {
        flex: 1 1 auto!important
    }

    .flex-lg-grow-0 {
        flex-grow: 0!important
    }

    .flex-lg-grow-1 {
        flex-grow: 1!important
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0!important
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1!important
    }

    .justify-content-lg-start {
        justify-content: flex-start!important
    }

    .justify-content-lg-end {
        justify-content: flex-end!important
    }

    .justify-content-lg-center {
        justify-content: center!important
    }

    .justify-content-lg-between {
        justify-content: space-between!important
    }

    .justify-content-lg-around {
        justify-content: space-around!important
    }

    .align-items-lg-start {
        align-items: flex-start!important
    }

    .align-items-lg-end {
        align-items: flex-end!important
    }

    .align-items-lg-center {
        align-items: center!important
    }

    .align-items-lg-baseline {
        align-items: baseline!important
    }

    .align-items-lg-stretch {
        align-items: stretch!important
    }

    .align-content-lg-start {
        align-content: flex-start!important
    }

    .align-content-lg-end {
        align-content: flex-end!important
    }

    .align-content-lg-center {
        align-content: center!important
    }

    .align-content-lg-between {
        align-content: space-between!important
    }

    .align-content-lg-around {
        align-content: space-around!important
    }

    .align-content-lg-stretch {
        align-content: stretch!important
    }

    .align-self-lg-auto {
        align-self: auto!important
    }

    .align-self-lg-start {
        align-self: flex-start!important
    }

    .align-self-lg-end {
        align-self: flex-end!important
    }

    .align-self-lg-center {
        align-self: center!important
    }

    .align-self-lg-baseline {
        align-self: baseline!important
    }

    .align-self-lg-stretch {
        align-self: stretch!important
    }
}

@media (min-width: 1200px) {
    .flex-xl-row {
        flex-direction:row!important
    }

    .flex-xl-column {
        flex-direction: column!important
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse!important
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse!important
    }

    .flex-xl-wrap {
        flex-wrap: wrap!important
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .flex-xl-fill {
        flex: 1 1 auto!important
    }

    .flex-xl-grow-0 {
        flex-grow: 0!important
    }

    .flex-xl-grow-1 {
        flex-grow: 1!important
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0!important
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1!important
    }

    .justify-content-xl-start {
        justify-content: flex-start!important
    }

    .justify-content-xl-end {
        justify-content: flex-end!important
    }

    .justify-content-xl-center {
        justify-content: center!important
    }

    .justify-content-xl-between {
        justify-content: space-between!important
    }

    .justify-content-xl-around {
        justify-content: space-around!important
    }

    .align-items-xl-start {
        align-items: flex-start!important
    }

    .align-items-xl-end {
        align-items: flex-end!important
    }

    .align-items-xl-center {
        align-items: center!important
    }

    .align-items-xl-baseline {
        align-items: baseline!important
    }

    .align-items-xl-stretch {
        align-items: stretch!important
    }

    .align-content-xl-start {
        align-content: flex-start!important
    }

    .align-content-xl-end {
        align-content: flex-end!important
    }

    .align-content-xl-center {
        align-content: center!important
    }

    .align-content-xl-between {
        align-content: space-between!important
    }

    .align-content-xl-around {
        align-content: space-around!important
    }

    .align-content-xl-stretch {
        align-content: stretch!important
    }

    .align-self-xl-auto {
        align-self: auto!important
    }

    .align-self-xl-start {
        align-self: flex-start!important
    }

    .align-self-xl-end {
        align-self: flex-end!important
    }

    .align-self-xl-center {
        align-self: center!important
    }

    .align-self-xl-baseline {
        align-self: baseline!important
    }

    .align-self-xl-stretch {
        align-self: stretch!important
    }
}

.float-left {
    float: left!important
}

.float-right {
    float: right!important
}

.float-none {
    float: none!important
}

@media (min-width: 576px) {
    .float-sm-left {
        float:left!important
    }

    .float-sm-right {
        float: right!important
    }

    .float-sm-none {
        float: none!important
    }
}

@media (min-width: 768px) {
    .float-md-left {
        float:left!important
    }

    .float-md-right {
        float: right!important
    }

    .float-md-none {
        float: none!important
    }
}

@media (min-width: 992px) {
    .float-lg-left {
        float:left!important
    }

    .float-lg-right {
        float: right!important
    }

    .float-lg-none {
        float: none!important
    }
}

@media (min-width: 1200px) {
    .float-xl-left {
        float:left!important
    }

    .float-xl-right {
        float: right!important
    }

    .float-xl-none {
        float: none!important
    }
}

.overflow-auto {
    overflow: auto!important
}

.overflow-hidden {
    overflow: hidden!important
}

.position-static {
    position: static!important
}

.position-relative {
    position: relative!important
}

.position-absolute {
    position: absolute!important
}

.position-fixed {
    position: fixed!important
}

.position-sticky {
    position: sticky!important
}

.fixed-top {
    top: 0
}

.fixed-bottom,.fixed-top {
    left: 0;
    position: fixed;
    right: 0;
    z-index: 1030
}

.fixed-bottom {
    bottom: 0
}

@supports (position: sticky) {
    .sticky-top {
        position:sticky;
        top: 0;
        z-index: 1020
    }
}

.sr-only {
    clip: rect(0,0,0,0);
    border: 0;
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px
}

.sr-only-focusable:active,.sr-only-focusable:focus {
    clip: auto;
    height: auto;
    overflow: visible;
    position: static;
    white-space: normal;
    width: auto
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important
}

.shadow-none {
    box-shadow: none!important
}

.w-25 {
    width: 25%!important
}

.w-50 {
    width: 50%!important
}

.w-75 {
    width: 75%!important
}

.w-100 {
    width: 100%!important
}

.w-auto {
    width: auto!important
}

.h-25 {
    height: 25%!important
}

.h-50 {
    height: 50%!important
}

.h-75 {
    height: 75%!important
}

.h-100 {
    height: 100%!important
}

.h-auto {
    height: auto!important
}

.mw-100 {
    max-width: 100%!important
}

.mh-100 {
    max-height: 100%!important
}

.min-vw-100 {
    min-width: 100vw!important
}

.min-vh-100 {
    min-height: 100vh!important
}

.vw-100 {
    width: 100vw!important
}

.vh-100 {
    height: 100vh!important
}

.stretched-link:after {
    background-color: transparent;
    bottom: 0;
    content: "";
    left: 0;
    pointer-events: auto;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.m-0 {
    margin: 0!important
}

.mt-0,.my-0 {
    margin-top: 0!important
}

.mr-0,.mx-0 {
    margin-right: 0!important
}

.mb-0,.my-0 {
    margin-bottom: 0!important
}

.ml-0,.mx-0 {
    margin-left: 0!important
}

.m-1 {
    margin: .25rem!important
}

.mt-1,.my-1 {
    margin-top: .25rem!important
}

.mr-1,.mx-1 {
    margin-right: .25rem!important
}

.mb-1,.my-1 {
    margin-bottom: .25rem!important
}

.ml-1,.mx-1 {
    margin-left: .25rem!important
}

.m-2 {
    margin: .5rem!important
}

.mt-2,.my-2 {
    margin-top: .5rem!important
}

.mr-2,.mx-2 {
    margin-right: .5rem!important
}

.mb-2,.my-2 {
    margin-bottom: .5rem!important
}

.ml-2,.mx-2 {
    margin-left: .5rem!important
}

.m-3 {
    margin: 1rem!important
}

.mt-3,.my-3 {
    margin-top: 1rem!important
}

.mr-3,.mx-3 {
    margin-right: 1rem!important
}

.mb-3,.my-3 {
    margin-bottom: 1rem!important
}

.ml-3,.mx-3 {
    margin-left: 1rem!important
}

.m-4 {
    margin: 1.5rem!important
}

.mt-4,.my-4 {
    margin-top: 1.5rem!important
}

.mr-4,.mx-4 {
    margin-right: 1.5rem!important
}

.mb-4,.my-4 {
    margin-bottom: 1.5rem!important
}

.ml-4,.mx-4 {
    margin-left: 1.5rem!important
}

.m-45 {
    margin: 2rem!important
}

.mt-45,.my-45 {
    margin-top: 2rem!important
}

.mr-45,.mx-45 {
    margin-right: 2rem!important
}

.mb-45,.my-45 {
    margin-bottom: 2rem!important
}

.ml-45,.mx-45 {
    margin-left: 2rem!important
}

.m-5 {
    margin: 3rem!important
}

.mt-5,.my-5 {
    margin-top: 3rem!important
}

.mr-5,.mx-5 {
    margin-right: 3rem!important
}

.mb-5,.my-5 {
    margin-bottom: 3rem!important
}

.ml-5,.mx-5 {
    margin-left: 3rem!important
}

.m-6 {
    margin: 4rem!important
}

.mt-6,.my-6 {
    margin-top: 4rem!important
}

.mr-6,.mx-6 {
    margin-right: 4rem!important
}

.mb-6,.my-6 {
    margin-bottom: 4rem!important
}

.ml-6,.mx-6 {
    margin-left: 4rem!important
}

.m-7 {
    margin: 5rem!important
}

.mt-7,.my-7 {
    margin-top: 5rem!important
}

.mr-7,.mx-7 {
    margin-right: 5rem!important
}

.mb-7,.my-7 {
    margin-bottom: 5rem!important
}

.ml-7,.mx-7 {
    margin-left: 5rem!important
}

.m-8 {
    margin: 6rem!important
}

.mt-8,.my-8 {
    margin-top: 6rem!important
}

.mr-8,.mx-8 {
    margin-right: 6rem!important
}

.mb-8,.my-8 {
    margin-bottom: 6rem!important
}

.ml-8,.mx-8 {
    margin-left: 6rem!important
}

.p-0 {
    padding: 0!important
}

.pt-0,.py-0 {
    padding-top: 0!important
}

.pr-0,.px-0 {
    padding-right: 0!important
}

.pb-0,.py-0 {
    padding-bottom: 0!important
}

.pl-0,.px-0 {
    padding-left: 0!important
}

.p-1 {
    padding: .25rem!important
}

.pt-1,.py-1 {
    padding-top: .25rem!important
}

.pr-1,.px-1 {
    padding-right: .25rem!important
}

.pb-1,.py-1 {
    padding-bottom: .25rem!important
}

.pl-1,.px-1 {
    padding-left: .25rem!important
}

.p-2 {
    padding: .5rem!important
}

.pt-2,.py-2 {
    padding-top: .5rem!important
}

.pr-2,.px-2 {
    padding-right: .5rem!important
}

.pb-2,.py-2 {
    padding-bottom: .5rem!important
}

.pl-2,.px-2 {
    padding-left: .5rem!important
}

.p-3 {
    padding: 1rem!important
}

.pt-3,.py-3 {
    padding-top: 1rem!important
}

.pr-3,.px-3 {
    padding-right: 1rem!important
}

.pb-3,.py-3 {
    padding-bottom: 1rem!important
}

.pl-3,.px-3 {
    padding-left: 1rem!important
}

.p-4 {
    padding: 1.5rem!important
}

.pt-4,.py-4 {
    padding-top: 1.5rem!important
}

.pr-4,.px-4 {
    padding-right: 1.5rem!important
}

.pb-4,.py-4 {
    padding-bottom: 1.5rem!important
}

.pl-4,.px-4 {
    padding-left: 1.5rem!important
}

.p-45 {
    padding: 2rem!important
}

.pt-45,.py-45 {
    padding-top: 2rem!important
}

.pr-45,.px-45 {
    padding-right: 2rem!important
}

.pb-45,.py-45 {
    padding-bottom: 2rem!important
}

.pl-45,.px-45 {
    padding-left: 2rem!important
}

.p-5 {
    padding: 3rem!important
}

.pt-5,.py-5 {
    padding-top: 3rem!important
}

.pr-5,.px-5 {
    padding-right: 3rem!important
}

.pb-5,.py-5 {
    padding-bottom: 3rem!important
}

.pl-5,.px-5 {
    padding-left: 3rem!important
}

.p-6 {
    padding: 4rem!important
}

.pt-6,.py-6 {
    padding-top: 4rem!important
}

.pr-6,.px-6 {
    padding-right: 4rem!important
}

.pb-6,.py-6 {
    padding-bottom: 4rem!important
}

.pl-6,.px-6 {
    padding-left: 4rem!important
}

.p-7 {
    padding: 5rem!important
}

.pt-7,.py-7 {
    padding-top: 5rem!important
}

.pr-7,.px-7 {
    padding-right: 5rem!important
}

.pb-7,.py-7 {
    padding-bottom: 5rem!important
}

.pl-7,.px-7 {
    padding-left: 5rem!important
}

.p-8 {
    padding: 6rem!important
}

.pt-8,.py-8 {
    padding-top: 6rem!important
}

.pr-8,.px-8 {
    padding-right: 6rem!important
}

.pb-8,.py-8 {
    padding-bottom: 6rem!important
}

.pl-8,.px-8 {
    padding-left: 6rem!important
}

.m-n1 {
    margin: -.25rem!important
}

.mt-n1,.my-n1 {
    margin-top: -.25rem!important
}

.mr-n1,.mx-n1 {
    margin-right: -.25rem!important
}

.mb-n1,.my-n1 {
    margin-bottom: -.25rem!important
}

.ml-n1,.mx-n1 {
    margin-left: -.25rem!important
}

.m-n2 {
    margin: -.5rem!important
}

.mt-n2,.my-n2 {
    margin-top: -.5rem!important
}

.mr-n2,.mx-n2 {
    margin-right: -.5rem!important
}

.mb-n2,.my-n2 {
    margin-bottom: -.5rem!important
}

.ml-n2,.mx-n2 {
    margin-left: -.5rem!important
}

.m-n3 {
    margin: -1rem!important
}

.mt-n3,.my-n3 {
    margin-top: -1rem!important
}

.mr-n3,.mx-n3 {
    margin-right: -1rem!important
}

.mb-n3,.my-n3 {
    margin-bottom: -1rem!important
}

.ml-n3,.mx-n3 {
    margin-left: -1rem!important
}

.m-n4 {
    margin: -1.5rem!important
}

.mt-n4,.my-n4 {
    margin-top: -1.5rem!important
}

.mr-n4,.mx-n4 {
    margin-right: -1.5rem!important
}

.mb-n4,.my-n4 {
    margin-bottom: -1.5rem!important
}

.ml-n4,.mx-n4 {
    margin-left: -1.5rem!important
}

.m-n45 {
    margin: -2rem!important
}

.mt-n45,.my-n45 {
    margin-top: -2rem!important
}

.mr-n45,.mx-n45 {
    margin-right: -2rem!important
}

.mb-n45,.my-n45 {
    margin-bottom: -2rem!important
}

.ml-n45,.mx-n45 {
    margin-left: -2rem!important
}

.m-n5 {
    margin: -3rem!important
}

.mt-n5,.my-n5 {
    margin-top: -3rem!important
}

.mr-n5,.mx-n5 {
    margin-right: -3rem!important
}

.mb-n5,.my-n5 {
    margin-bottom: -3rem!important
}

.ml-n5,.mx-n5 {
    margin-left: -3rem!important
}

.m-n6 {
    margin: -4rem!important
}

.mt-n6,.my-n6 {
    margin-top: -4rem!important
}

.mr-n6,.mx-n6 {
    margin-right: -4rem!important
}

.mb-n6,.my-n6 {
    margin-bottom: -4rem!important
}

.ml-n6,.mx-n6 {
    margin-left: -4rem!important
}

.m-n7 {
    margin: -5rem!important
}

.mt-n7,.my-n7 {
    margin-top: -5rem!important
}

.mr-n7,.mx-n7 {
    margin-right: -5rem!important
}

.mb-n7,.my-n7 {
    margin-bottom: -5rem!important
}

.ml-n7,.mx-n7 {
    margin-left: -5rem!important
}

.m-n8 {
    margin: -6rem!important
}

.mt-n8,.my-n8 {
    margin-top: -6rem!important
}

.mr-n8,.mx-n8 {
    margin-right: -6rem!important
}

.mb-n8,.my-n8 {
    margin-bottom: -6rem!important
}

.ml-n8,.mx-n8 {
    margin-left: -6rem!important
}

.m-auto {
    margin: auto!important
}

.mt-auto,.my-auto {
    margin-top: auto!important
}

.mr-auto,.mx-auto {
    margin-right: auto!important
}

.mb-auto,.my-auto {
    margin-bottom: auto!important
}

.ml-auto,.mx-auto {
    margin-left: auto!important
}

@media (min-width: 576px) {
    .m-sm-0 {
        margin:0!important
    }

    .mt-sm-0,.my-sm-0 {
        margin-top: 0!important
    }

    .mr-sm-0,.mx-sm-0 {
        margin-right: 0!important
    }

    .mb-sm-0,.my-sm-0 {
        margin-bottom: 0!important
    }

    .ml-sm-0,.mx-sm-0 {
        margin-left: 0!important
    }

    .m-sm-1 {
        margin: .25rem!important
    }

    .mt-sm-1,.my-sm-1 {
        margin-top: .25rem!important
    }

    .mr-sm-1,.mx-sm-1 {
        margin-right: .25rem!important
    }

    .mb-sm-1,.my-sm-1 {
        margin-bottom: .25rem!important
    }

    .ml-sm-1,.mx-sm-1 {
        margin-left: .25rem!important
    }

    .m-sm-2 {
        margin: .5rem!important
    }

    .mt-sm-2,.my-sm-2 {
        margin-top: .5rem!important
    }

    .mr-sm-2,.mx-sm-2 {
        margin-right: .5rem!important
    }

    .mb-sm-2,.my-sm-2 {
        margin-bottom: .5rem!important
    }

    .ml-sm-2,.mx-sm-2 {
        margin-left: .5rem!important
    }

    .m-sm-3 {
        margin: 1rem!important
    }

    .mt-sm-3,.my-sm-3 {
        margin-top: 1rem!important
    }

    .mr-sm-3,.mx-sm-3 {
        margin-right: 1rem!important
    }

    .mb-sm-3,.my-sm-3 {
        margin-bottom: 1rem!important
    }

    .ml-sm-3,.mx-sm-3 {
        margin-left: 1rem!important
    }

    .m-sm-4 {
        margin: 1.5rem!important
    }

    .mt-sm-4,.my-sm-4 {
        margin-top: 1.5rem!important
    }

    .mr-sm-4,.mx-sm-4 {
        margin-right: 1.5rem!important
    }

    .mb-sm-4,.my-sm-4 {
        margin-bottom: 1.5rem!important
    }

    .ml-sm-4,.mx-sm-4 {
        margin-left: 1.5rem!important
    }

    .m-sm-45 {
        margin: 2rem!important
    }

    .mt-sm-45,.my-sm-45 {
        margin-top: 2rem!important
    }

    .mr-sm-45,.mx-sm-45 {
        margin-right: 2rem!important
    }

    .mb-sm-45,.my-sm-45 {
        margin-bottom: 2rem!important
    }

    .ml-sm-45,.mx-sm-45 {
        margin-left: 2rem!important
    }

    .m-sm-5 {
        margin: 3rem!important
    }

    .mt-sm-5,.my-sm-5 {
        margin-top: 3rem!important
    }

    .mr-sm-5,.mx-sm-5 {
        margin-right: 3rem!important
    }

    .mb-sm-5,.my-sm-5 {
        margin-bottom: 3rem!important
    }

    .ml-sm-5,.mx-sm-5 {
        margin-left: 3rem!important
    }

    .m-sm-6 {
        margin: 4rem!important
    }

    .mt-sm-6,.my-sm-6 {
        margin-top: 4rem!important
    }

    .mr-sm-6,.mx-sm-6 {
        margin-right: 4rem!important
    }

    .mb-sm-6,.my-sm-6 {
        margin-bottom: 4rem!important
    }

    .ml-sm-6,.mx-sm-6 {
        margin-left: 4rem!important
    }

    .m-sm-7 {
        margin: 5rem!important
    }

    .mt-sm-7,.my-sm-7 {
        margin-top: 5rem!important
    }

    .mr-sm-7,.mx-sm-7 {
        margin-right: 5rem!important
    }

    .mb-sm-7,.my-sm-7 {
        margin-bottom: 5rem!important
    }

    .ml-sm-7,.mx-sm-7 {
        margin-left: 5rem!important
    }

    .m-sm-8 {
        margin: 6rem!important
    }

    .mt-sm-8,.my-sm-8 {
        margin-top: 6rem!important
    }

    .mr-sm-8,.mx-sm-8 {
        margin-right: 6rem!important
    }

    .mb-sm-8,.my-sm-8 {
        margin-bottom: 6rem!important
    }

    .ml-sm-8,.mx-sm-8 {
        margin-left: 6rem!important
    }

    .p-sm-0 {
        padding: 0!important
    }

    .pt-sm-0,.py-sm-0 {
        padding-top: 0!important
    }

    .pr-sm-0,.px-sm-0 {
        padding-right: 0!important
    }

    .pb-sm-0,.py-sm-0 {
        padding-bottom: 0!important
    }

    .pl-sm-0,.px-sm-0 {
        padding-left: 0!important
    }

    .p-sm-1 {
        padding: .25rem!important
    }

    .pt-sm-1,.py-sm-1 {
        padding-top: .25rem!important
    }

    .pr-sm-1,.px-sm-1 {
        padding-right: .25rem!important
    }

    .pb-sm-1,.py-sm-1 {
        padding-bottom: .25rem!important
    }

    .pl-sm-1,.px-sm-1 {
        padding-left: .25rem!important
    }

    .p-sm-2 {
        padding: .5rem!important
    }

    .pt-sm-2,.py-sm-2 {
        padding-top: .5rem!important
    }

    .pr-sm-2,.px-sm-2 {
        padding-right: .5rem!important
    }

    .pb-sm-2,.py-sm-2 {
        padding-bottom: .5rem!important
    }

    .pl-sm-2,.px-sm-2 {
        padding-left: .5rem!important
    }

    .p-sm-3 {
        padding: 1rem!important
    }

    .pt-sm-3,.py-sm-3 {
        padding-top: 1rem!important
    }

    .pr-sm-3,.px-sm-3 {
        padding-right: 1rem!important
    }

    .pb-sm-3,.py-sm-3 {
        padding-bottom: 1rem!important
    }

    .pl-sm-3,.px-sm-3 {
        padding-left: 1rem!important
    }

    .p-sm-4 {
        padding: 1.5rem!important
    }

    .pt-sm-4,.py-sm-4 {
        padding-top: 1.5rem!important
    }

    .pr-sm-4,.px-sm-4 {
        padding-right: 1.5rem!important
    }

    .pb-sm-4,.py-sm-4 {
        padding-bottom: 1.5rem!important
    }

    .pl-sm-4,.px-sm-4 {
        padding-left: 1.5rem!important
    }

    .p-sm-45 {
        padding: 2rem!important
    }

    .pt-sm-45,.py-sm-45 {
        padding-top: 2rem!important
    }

    .pr-sm-45,.px-sm-45 {
        padding-right: 2rem!important
    }

    .pb-sm-45,.py-sm-45 {
        padding-bottom: 2rem!important
    }

    .pl-sm-45,.px-sm-45 {
        padding-left: 2rem!important
    }

    .p-sm-5 {
        padding: 3rem!important
    }

    .pt-sm-5,.py-sm-5 {
        padding-top: 3rem!important
    }

    .pr-sm-5,.px-sm-5 {
        padding-right: 3rem!important
    }

    .pb-sm-5,.py-sm-5 {
        padding-bottom: 3rem!important
    }

    .pl-sm-5,.px-sm-5 {
        padding-left: 3rem!important
    }

    .p-sm-6 {
        padding: 4rem!important
    }

    .pt-sm-6,.py-sm-6 {
        padding-top: 4rem!important
    }

    .pr-sm-6,.px-sm-6 {
        padding-right: 4rem!important
    }

    .pb-sm-6,.py-sm-6 {
        padding-bottom: 4rem!important
    }

    .pl-sm-6,.px-sm-6 {
        padding-left: 4rem!important
    }

    .p-sm-7 {
        padding: 5rem!important
    }

    .pt-sm-7,.py-sm-7 {
        padding-top: 5rem!important
    }

    .pr-sm-7,.px-sm-7 {
        padding-right: 5rem!important
    }

    .pb-sm-7,.py-sm-7 {
        padding-bottom: 5rem!important
    }

    .pl-sm-7,.px-sm-7 {
        padding-left: 5rem!important
    }

    .p-sm-8 {
        padding: 6rem!important
    }

    .pt-sm-8,.py-sm-8 {
        padding-top: 6rem!important
    }

    .pr-sm-8,.px-sm-8 {
        padding-right: 6rem!important
    }

    .pb-sm-8,.py-sm-8 {
        padding-bottom: 6rem!important
    }

    .pl-sm-8,.px-sm-8 {
        padding-left: 6rem!important
    }

    .m-sm-n1 {
        margin: -.25rem!important
    }

    .mt-sm-n1,.my-sm-n1 {
        margin-top: -.25rem!important
    }

    .mr-sm-n1,.mx-sm-n1 {
        margin-right: -.25rem!important
    }

    .mb-sm-n1,.my-sm-n1 {
        margin-bottom: -.25rem!important
    }

    .ml-sm-n1,.mx-sm-n1 {
        margin-left: -.25rem!important
    }

    .m-sm-n2 {
        margin: -.5rem!important
    }

    .mt-sm-n2,.my-sm-n2 {
        margin-top: -.5rem!important
    }

    .mr-sm-n2,.mx-sm-n2 {
        margin-right: -.5rem!important
    }

    .mb-sm-n2,.my-sm-n2 {
        margin-bottom: -.5rem!important
    }

    .ml-sm-n2,.mx-sm-n2 {
        margin-left: -.5rem!important
    }

    .m-sm-n3 {
        margin: -1rem!important
    }

    .mt-sm-n3,.my-sm-n3 {
        margin-top: -1rem!important
    }

    .mr-sm-n3,.mx-sm-n3 {
        margin-right: -1rem!important
    }

    .mb-sm-n3,.my-sm-n3 {
        margin-bottom: -1rem!important
    }

    .ml-sm-n3,.mx-sm-n3 {
        margin-left: -1rem!important
    }

    .m-sm-n4 {
        margin: -1.5rem!important
    }

    .mt-sm-n4,.my-sm-n4 {
        margin-top: -1.5rem!important
    }

    .mr-sm-n4,.mx-sm-n4 {
        margin-right: -1.5rem!important
    }

    .mb-sm-n4,.my-sm-n4 {
        margin-bottom: -1.5rem!important
    }

    .ml-sm-n4,.mx-sm-n4 {
        margin-left: -1.5rem!important
    }

    .m-sm-n45 {
        margin: -2rem!important
    }

    .mt-sm-n45,.my-sm-n45 {
        margin-top: -2rem!important
    }

    .mr-sm-n45,.mx-sm-n45 {
        margin-right: -2rem!important
    }

    .mb-sm-n45,.my-sm-n45 {
        margin-bottom: -2rem!important
    }

    .ml-sm-n45,.mx-sm-n45 {
        margin-left: -2rem!important
    }

    .m-sm-n5 {
        margin: -3rem!important
    }

    .mt-sm-n5,.my-sm-n5 {
        margin-top: -3rem!important
    }

    .mr-sm-n5,.mx-sm-n5 {
        margin-right: -3rem!important
    }

    .mb-sm-n5,.my-sm-n5 {
        margin-bottom: -3rem!important
    }

    .ml-sm-n5,.mx-sm-n5 {
        margin-left: -3rem!important
    }

    .m-sm-n6 {
        margin: -4rem!important
    }

    .mt-sm-n6,.my-sm-n6 {
        margin-top: -4rem!important
    }

    .mr-sm-n6,.mx-sm-n6 {
        margin-right: -4rem!important
    }

    .mb-sm-n6,.my-sm-n6 {
        margin-bottom: -4rem!important
    }

    .ml-sm-n6,.mx-sm-n6 {
        margin-left: -4rem!important
    }

    .m-sm-n7 {
        margin: -5rem!important
    }

    .mt-sm-n7,.my-sm-n7 {
        margin-top: -5rem!important
    }

    .mr-sm-n7,.mx-sm-n7 {
        margin-right: -5rem!important
    }

    .mb-sm-n7,.my-sm-n7 {
        margin-bottom: -5rem!important
    }

    .ml-sm-n7,.mx-sm-n7 {
        margin-left: -5rem!important
    }

    .m-sm-n8 {
        margin: -6rem!important
    }

    .mt-sm-n8,.my-sm-n8 {
        margin-top: -6rem!important
    }

    .mr-sm-n8,.mx-sm-n8 {
        margin-right: -6rem!important
    }

    .mb-sm-n8,.my-sm-n8 {
        margin-bottom: -6rem!important
    }

    .ml-sm-n8,.mx-sm-n8 {
        margin-left: -6rem!important
    }

    .m-sm-auto {
        margin: auto!important
    }

    .mt-sm-auto,.my-sm-auto {
        margin-top: auto!important
    }

    .mr-sm-auto,.mx-sm-auto {
        margin-right: auto!important
    }

    .mb-sm-auto,.my-sm-auto {
        margin-bottom: auto!important
    }

    .ml-sm-auto,.mx-sm-auto {
        margin-left: auto!important
    }
}

@media (min-width: 768px) {
    .m-md-0 {
        margin:0!important
    }

    .mt-md-0,.my-md-0 {
        margin-top: 0!important
    }

    .mr-md-0,.mx-md-0 {
        margin-right: 0!important
    }

    .mb-md-0,.my-md-0 {
        margin-bottom: 0!important
    }

    .ml-md-0,.mx-md-0 {
        margin-left: 0!important
    }

    .m-md-1 {
        margin: .25rem!important
    }

    .mt-md-1,.my-md-1 {
        margin-top: .25rem!important
    }

    .mr-md-1,.mx-md-1 {
        margin-right: .25rem!important
    }

    .mb-md-1,.my-md-1 {
        margin-bottom: .25rem!important
    }

    .ml-md-1,.mx-md-1 {
        margin-left: .25rem!important
    }

    .m-md-2 {
        margin: .5rem!important
    }

    .mt-md-2,.my-md-2 {
        margin-top: .5rem!important
    }

    .mr-md-2,.mx-md-2 {
        margin-right: .5rem!important
    }

    .mb-md-2,.my-md-2 {
        margin-bottom: .5rem!important
    }

    .ml-md-2,.mx-md-2 {
        margin-left: .5rem!important
    }

    .m-md-3 {
        margin: 1rem!important
    }

    .mt-md-3,.my-md-3 {
        margin-top: 1rem!important
    }

    .mr-md-3,.mx-md-3 {
        margin-right: 1rem!important
    }

    .mb-md-3,.my-md-3 {
        margin-bottom: 1rem!important
    }

    .ml-md-3,.mx-md-3 {
        margin-left: 1rem!important
    }

    .m-md-4 {
        margin: 1.5rem!important
    }

    .mt-md-4,.my-md-4 {
        margin-top: 1.5rem!important
    }

    .mr-md-4,.mx-md-4 {
        margin-right: 1.5rem!important
    }

    .mb-md-4,.my-md-4 {
        margin-bottom: 1.5rem!important
    }

    .ml-md-4,.mx-md-4 {
        margin-left: 1.5rem!important
    }

    .m-md-45 {
        margin: 2rem!important
    }

    .mt-md-45,.my-md-45 {
        margin-top: 2rem!important
    }

    .mr-md-45,.mx-md-45 {
        margin-right: 2rem!important
    }

    .mb-md-45,.my-md-45 {
        margin-bottom: 2rem!important
    }

    .ml-md-45,.mx-md-45 {
        margin-left: 2rem!important
    }

    .m-md-5 {
        margin: 3rem!important
    }

    .mt-md-5,.my-md-5 {
        margin-top: 3rem!important
    }

    .mr-md-5,.mx-md-5 {
        margin-right: 3rem!important
    }

    .mb-md-5,.my-md-5 {
        margin-bottom: 3rem!important
    }

    .ml-md-5,.mx-md-5 {
        margin-left: 3rem!important
    }

    .m-md-6 {
        margin: 4rem!important
    }

    .mt-md-6,.my-md-6 {
        margin-top: 4rem!important
    }

    .mr-md-6,.mx-md-6 {
        margin-right: 4rem!important
    }

    .mb-md-6,.my-md-6 {
        margin-bottom: 4rem!important
    }

    .ml-md-6,.mx-md-6 {
        margin-left: 4rem!important
    }

    .m-md-7 {
        margin: 5rem!important
    }

    .mt-md-7,.my-md-7 {
        margin-top: 5rem!important
    }

    .mr-md-7,.mx-md-7 {
        margin-right: 5rem!important
    }

    .mb-md-7,.my-md-7 {
        margin-bottom: 5rem!important
    }

    .ml-md-7,.mx-md-7 {
        margin-left: 5rem!important
    }

    .m-md-8 {
        margin: 6rem!important
    }

    .mt-md-8,.my-md-8 {
        margin-top: 6rem!important
    }

    .mr-md-8,.mx-md-8 {
        margin-right: 6rem!important
    }

    .mb-md-8,.my-md-8 {
        margin-bottom: 6rem!important
    }

    .ml-md-8,.mx-md-8 {
        margin-left: 6rem!important
    }

    .p-md-0 {
        padding: 0!important
    }

    .pt-md-0,.py-md-0 {
        padding-top: 0!important
    }

    .pr-md-0,.px-md-0 {
        padding-right: 0!important
    }

    .pb-md-0,.py-md-0 {
        padding-bottom: 0!important
    }

    .pl-md-0,.px-md-0 {
        padding-left: 0!important
    }

    .p-md-1 {
        padding: .25rem!important
    }

    .pt-md-1,.py-md-1 {
        padding-top: .25rem!important
    }

    .pr-md-1,.px-md-1 {
        padding-right: .25rem!important
    }

    .pb-md-1,.py-md-1 {
        padding-bottom: .25rem!important
    }

    .pl-md-1,.px-md-1 {
        padding-left: .25rem!important
    }

    .p-md-2 {
        padding: .5rem!important
    }

    .pt-md-2,.py-md-2 {
        padding-top: .5rem!important
    }

    .pr-md-2,.px-md-2 {
        padding-right: .5rem!important
    }

    .pb-md-2,.py-md-2 {
        padding-bottom: .5rem!important
    }

    .pl-md-2,.px-md-2 {
        padding-left: .5rem!important
    }

    .p-md-3 {
        padding: 1rem!important
    }

    .pt-md-3,.py-md-3 {
        padding-top: 1rem!important
    }

    .pr-md-3,.px-md-3 {
        padding-right: 1rem!important
    }

    .pb-md-3,.py-md-3 {
        padding-bottom: 1rem!important
    }

    .pl-md-3,.px-md-3 {
        padding-left: 1rem!important
    }

    .p-md-4 {
        padding: 1.5rem!important
    }

    .pt-md-4,.py-md-4 {
        padding-top: 1.5rem!important
    }

    .pr-md-4,.px-md-4 {
        padding-right: 1.5rem!important
    }

    .pb-md-4,.py-md-4 {
        padding-bottom: 1.5rem!important
    }

    .pl-md-4,.px-md-4 {
        padding-left: 1.5rem!important
    }

    .p-md-45 {
        padding: 2rem!important
    }

    .pt-md-45,.py-md-45 {
        padding-top: 2rem!important
    }

    .pr-md-45,.px-md-45 {
        padding-right: 2rem!important
    }

    .pb-md-45,.py-md-45 {
        padding-bottom: 2rem!important
    }

    .pl-md-45,.px-md-45 {
        padding-left: 2rem!important
    }

    .p-md-5 {
        padding: 3rem!important
    }

    .pt-md-5,.py-md-5 {
        padding-top: 3rem!important
    }

    .pr-md-5,.px-md-5 {
        padding-right: 3rem!important
    }

    .pb-md-5,.py-md-5 {
        padding-bottom: 3rem!important
    }

    .pl-md-5,.px-md-5 {
        padding-left: 3rem!important
    }

    .p-md-6 {
        padding: 4rem!important
    }

    .pt-md-6,.py-md-6 {
        padding-top: 4rem!important
    }

    .pr-md-6,.px-md-6 {
        padding-right: 4rem!important
    }

    .pb-md-6,.py-md-6 {
        padding-bottom: 4rem!important
    }

    .pl-md-6,.px-md-6 {
        padding-left: 4rem!important
    }

    .p-md-7 {
        padding: 5rem!important
    }

    .pt-md-7,.py-md-7 {
        padding-top: 5rem!important
    }

    .pr-md-7,.px-md-7 {
        padding-right: 5rem!important
    }

    .pb-md-7,.py-md-7 {
        padding-bottom: 5rem!important
    }

    .pl-md-7,.px-md-7 {
        padding-left: 5rem!important
    }

    .p-md-8 {
        padding: 6rem!important
    }

    .pt-md-8,.py-md-8 {
        padding-top: 6rem!important
    }

    .pr-md-8,.px-md-8 {
        padding-right: 6rem!important
    }

    .pb-md-8,.py-md-8 {
        padding-bottom: 6rem!important
    }

    .pl-md-8,.px-md-8 {
        padding-left: 6rem!important
    }

    .m-md-n1 {
        margin: -.25rem!important
    }

    .mt-md-n1,.my-md-n1 {
        margin-top: -.25rem!important
    }

    .mr-md-n1,.mx-md-n1 {
        margin-right: -.25rem!important
    }

    .mb-md-n1,.my-md-n1 {
        margin-bottom: -.25rem!important
    }

    .ml-md-n1,.mx-md-n1 {
        margin-left: -.25rem!important
    }

    .m-md-n2 {
        margin: -.5rem!important
    }

    .mt-md-n2,.my-md-n2 {
        margin-top: -.5rem!important
    }

    .mr-md-n2,.mx-md-n2 {
        margin-right: -.5rem!important
    }

    .mb-md-n2,.my-md-n2 {
        margin-bottom: -.5rem!important
    }

    .ml-md-n2,.mx-md-n2 {
        margin-left: -.5rem!important
    }

    .m-md-n3 {
        margin: -1rem!important
    }

    .mt-md-n3,.my-md-n3 {
        margin-top: -1rem!important
    }

    .mr-md-n3,.mx-md-n3 {
        margin-right: -1rem!important
    }

    .mb-md-n3,.my-md-n3 {
        margin-bottom: -1rem!important
    }

    .ml-md-n3,.mx-md-n3 {
        margin-left: -1rem!important
    }

    .m-md-n4 {
        margin: -1.5rem!important
    }

    .mt-md-n4,.my-md-n4 {
        margin-top: -1.5rem!important
    }

    .mr-md-n4,.mx-md-n4 {
        margin-right: -1.5rem!important
    }

    .mb-md-n4,.my-md-n4 {
        margin-bottom: -1.5rem!important
    }

    .ml-md-n4,.mx-md-n4 {
        margin-left: -1.5rem!important
    }

    .m-md-n45 {
        margin: -2rem!important
    }

    .mt-md-n45,.my-md-n45 {
        margin-top: -2rem!important
    }

    .mr-md-n45,.mx-md-n45 {
        margin-right: -2rem!important
    }

    .mb-md-n45,.my-md-n45 {
        margin-bottom: -2rem!important
    }

    .ml-md-n45,.mx-md-n45 {
        margin-left: -2rem!important
    }

    .m-md-n5 {
        margin: -3rem!important
    }

    .mt-md-n5,.my-md-n5 {
        margin-top: -3rem!important
    }

    .mr-md-n5,.mx-md-n5 {
        margin-right: -3rem!important
    }

    .mb-md-n5,.my-md-n5 {
        margin-bottom: -3rem!important
    }

    .ml-md-n5,.mx-md-n5 {
        margin-left: -3rem!important
    }

    .m-md-n6 {
        margin: -4rem!important
    }

    .mt-md-n6,.my-md-n6 {
        margin-top: -4rem!important
    }

    .mr-md-n6,.mx-md-n6 {
        margin-right: -4rem!important
    }

    .mb-md-n6,.my-md-n6 {
        margin-bottom: -4rem!important
    }

    .ml-md-n6,.mx-md-n6 {
        margin-left: -4rem!important
    }

    .m-md-n7 {
        margin: -5rem!important
    }

    .mt-md-n7,.my-md-n7 {
        margin-top: -5rem!important
    }

    .mr-md-n7,.mx-md-n7 {
        margin-right: -5rem!important
    }

    .mb-md-n7,.my-md-n7 {
        margin-bottom: -5rem!important
    }

    .ml-md-n7,.mx-md-n7 {
        margin-left: -5rem!important
    }

    .m-md-n8 {
        margin: -6rem!important
    }

    .mt-md-n8,.my-md-n8 {
        margin-top: -6rem!important
    }

    .mr-md-n8,.mx-md-n8 {
        margin-right: -6rem!important
    }

    .mb-md-n8,.my-md-n8 {
        margin-bottom: -6rem!important
    }

    .ml-md-n8,.mx-md-n8 {
        margin-left: -6rem!important
    }

    .m-md-auto {
        margin: auto!important
    }

    .mt-md-auto,.my-md-auto {
        margin-top: auto!important
    }

    .mr-md-auto,.mx-md-auto {
        margin-right: auto!important
    }

    .mb-md-auto,.my-md-auto {
        margin-bottom: auto!important
    }

    .ml-md-auto,.mx-md-auto {
        margin-left: auto!important
    }
}

@media (min-width: 992px) {
    .m-lg-0 {
        margin:0!important
    }

    .mt-lg-0,.my-lg-0 {
        margin-top: 0!important
    }

    .mr-lg-0,.mx-lg-0 {
        margin-right: 0!important
    }

    .mb-lg-0,.my-lg-0 {
        margin-bottom: 0!important
    }

    .ml-lg-0,.mx-lg-0 {
        margin-left: 0!important
    }

    .m-lg-1 {
        margin: .25rem!important
    }

    .mt-lg-1,.my-lg-1 {
        margin-top: .25rem!important
    }

    .mr-lg-1,.mx-lg-1 {
        margin-right: .25rem!important
    }

    .mb-lg-1,.my-lg-1 {
        margin-bottom: .25rem!important
    }

    .ml-lg-1,.mx-lg-1 {
        margin-left: .25rem!important
    }

    .m-lg-2 {
        margin: .5rem!important
    }

    .mt-lg-2,.my-lg-2 {
        margin-top: .5rem!important
    }

    .mr-lg-2,.mx-lg-2 {
        margin-right: .5rem!important
    }

    .mb-lg-2,.my-lg-2 {
        margin-bottom: .5rem!important
    }

    .ml-lg-2,.mx-lg-2 {
        margin-left: .5rem!important
    }

    .m-lg-3 {
        margin: 1rem!important
    }

    .mt-lg-3,.my-lg-3 {
        margin-top: 1rem!important
    }

    .mr-lg-3,.mx-lg-3 {
        margin-right: 1rem!important
    }

    .mb-lg-3,.my-lg-3 {
        margin-bottom: 1rem!important
    }

    .ml-lg-3,.mx-lg-3 {
        margin-left: 1rem!important
    }

    .m-lg-4 {
        margin: 1.5rem!important
    }

    .mt-lg-4,.my-lg-4 {
        margin-top: 1.5rem!important
    }

    .mr-lg-4,.mx-lg-4 {
        margin-right: 1.5rem!important
    }

    .mb-lg-4,.my-lg-4 {
        margin-bottom: 1.5rem!important
    }

    .ml-lg-4,.mx-lg-4 {
        margin-left: 1.5rem!important
    }

    .m-lg-45 {
        margin: 2rem!important
    }

    .mt-lg-45,.my-lg-45 {
        margin-top: 2rem!important
    }

    .mr-lg-45,.mx-lg-45 {
        margin-right: 2rem!important
    }

    .mb-lg-45,.my-lg-45 {
        margin-bottom: 2rem!important
    }

    .ml-lg-45,.mx-lg-45 {
        margin-left: 2rem!important
    }

    .m-lg-5 {
        margin: 3rem!important
    }

    .mt-lg-5,.my-lg-5 {
        margin-top: 3rem!important
    }

    .mr-lg-5,.mx-lg-5 {
        margin-right: 3rem!important
    }

    .mb-lg-5,.my-lg-5 {
        margin-bottom: 3rem!important
    }

    .ml-lg-5,.mx-lg-5 {
        margin-left: 3rem!important
    }

    .m-lg-6 {
        margin: 4rem!important
    }

    .mt-lg-6,.my-lg-6 {
        margin-top: 4rem!important
    }

    .mr-lg-6,.mx-lg-6 {
        margin-right: 4rem!important
    }

    .mb-lg-6,.my-lg-6 {
        margin-bottom: 4rem!important
    }

    .ml-lg-6,.mx-lg-6 {
        margin-left: 4rem!important
    }

    .m-lg-7 {
        margin: 5rem!important
    }

    .mt-lg-7,.my-lg-7 {
        margin-top: 5rem!important
    }

    .mr-lg-7,.mx-lg-7 {
        margin-right: 5rem!important
    }

    .mb-lg-7,.my-lg-7 {
        margin-bottom: 5rem!important
    }

    .ml-lg-7,.mx-lg-7 {
        margin-left: 5rem!important
    }

    .m-lg-8 {
        margin: 6rem!important
    }

    .mt-lg-8,.my-lg-8 {
        margin-top: 6rem!important
    }

    .mr-lg-8,.mx-lg-8 {
        margin-right: 6rem!important
    }

    .mb-lg-8,.my-lg-8 {
        margin-bottom: 6rem!important
    }

    .ml-lg-8,.mx-lg-8 {
        margin-left: 6rem!important
    }

    .p-lg-0 {
        padding: 0!important
    }

    .pt-lg-0,.py-lg-0 {
        padding-top: 0!important
    }

    .pr-lg-0,.px-lg-0 {
        padding-right: 0!important
    }

    .pb-lg-0,.py-lg-0 {
        padding-bottom: 0!important
    }

    .pl-lg-0,.px-lg-0 {
        padding-left: 0!important
    }

    .p-lg-1 {
        padding: .25rem!important
    }

    .pt-lg-1,.py-lg-1 {
        padding-top: .25rem!important
    }

    .pr-lg-1,.px-lg-1 {
        padding-right: .25rem!important
    }

    .pb-lg-1,.py-lg-1 {
        padding-bottom: .25rem!important
    }

    .pl-lg-1,.px-lg-1 {
        padding-left: .25rem!important
    }

    .p-lg-2 {
        padding: .5rem!important
    }

    .pt-lg-2,.py-lg-2 {
        padding-top: .5rem!important
    }

    .pr-lg-2,.px-lg-2 {
        padding-right: .5rem!important
    }

    .pb-lg-2,.py-lg-2 {
        padding-bottom: .5rem!important
    }

    .pl-lg-2,.px-lg-2 {
        padding-left: .5rem!important
    }

    .p-lg-3 {
        padding: 1rem!important
    }

    .pt-lg-3,.py-lg-3 {
        padding-top: 1rem!important
    }

    .pr-lg-3,.px-lg-3 {
        padding-right: 1rem!important
    }

    .pb-lg-3,.py-lg-3 {
        padding-bottom: 1rem!important
    }

    .pl-lg-3,.px-lg-3 {
        padding-left: 1rem!important
    }

    .p-lg-4 {
        padding: 1.5rem!important
    }

    .pt-lg-4,.py-lg-4 {
        padding-top: 1.5rem!important
    }

    .pr-lg-4,.px-lg-4 {
        padding-right: 1.5rem!important
    }

    .pb-lg-4,.py-lg-4 {
        padding-bottom: 1.5rem!important
    }

    .pl-lg-4,.px-lg-4 {
        padding-left: 1.5rem!important
    }

    .p-lg-45 {
        padding: 2rem!important
    }

    .pt-lg-45,.py-lg-45 {
        padding-top: 2rem!important
    }

    .pr-lg-45,.px-lg-45 {
        padding-right: 2rem!important
    }

    .pb-lg-45,.py-lg-45 {
        padding-bottom: 2rem!important
    }

    .pl-lg-45,.px-lg-45 {
        padding-left: 2rem!important
    }

    .p-lg-5 {
        padding: 3rem!important
    }

    .pt-lg-5,.py-lg-5 {
        padding-top: 3rem!important
    }

    .pr-lg-5,.px-lg-5 {
        padding-right: 3rem!important
    }

    .pb-lg-5,.py-lg-5 {
        padding-bottom: 3rem!important
    }

    .pl-lg-5,.px-lg-5 {
        padding-left: 3rem!important
    }

    .p-lg-6 {
        padding: 4rem!important
    }

    .pt-lg-6,.py-lg-6 {
        padding-top: 4rem!important
    }

    .pr-lg-6,.px-lg-6 {
        padding-right: 4rem!important
    }

    .pb-lg-6,.py-lg-6 {
        padding-bottom: 4rem!important
    }

    .pl-lg-6,.px-lg-6 {
        padding-left: 4rem!important
    }

    .p-lg-7 {
        padding: 5rem!important
    }

    .pt-lg-7,.py-lg-7 {
        padding-top: 5rem!important
    }

    .pr-lg-7,.px-lg-7 {
        padding-right: 5rem!important
    }

    .pb-lg-7,.py-lg-7 {
        padding-bottom: 5rem!important
    }

    .pl-lg-7,.px-lg-7 {
        padding-left: 5rem!important
    }

    .p-lg-8 {
        padding: 6rem!important
    }

    .pt-lg-8,.py-lg-8 {
        padding-top: 6rem!important
    }

    .pr-lg-8,.px-lg-8 {
        padding-right: 6rem!important
    }

    .pb-lg-8,.py-lg-8 {
        padding-bottom: 6rem!important
    }

    .pl-lg-8,.px-lg-8 {
        padding-left: 6rem!important
    }

    .m-lg-n1 {
        margin: -.25rem!important
    }

    .mt-lg-n1,.my-lg-n1 {
        margin-top: -.25rem!important
    }

    .mr-lg-n1,.mx-lg-n1 {
        margin-right: -.25rem!important
    }

    .mb-lg-n1,.my-lg-n1 {
        margin-bottom: -.25rem!important
    }

    .ml-lg-n1,.mx-lg-n1 {
        margin-left: -.25rem!important
    }

    .m-lg-n2 {
        margin: -.5rem!important
    }

    .mt-lg-n2,.my-lg-n2 {
        margin-top: -.5rem!important
    }

    .mr-lg-n2,.mx-lg-n2 {
        margin-right: -.5rem!important
    }

    .mb-lg-n2,.my-lg-n2 {
        margin-bottom: -.5rem!important
    }

    .ml-lg-n2,.mx-lg-n2 {
        margin-left: -.5rem!important
    }

    .m-lg-n3 {
        margin: -1rem!important
    }

    .mt-lg-n3,.my-lg-n3 {
        margin-top: -1rem!important
    }

    .mr-lg-n3,.mx-lg-n3 {
        margin-right: -1rem!important
    }

    .mb-lg-n3,.my-lg-n3 {
        margin-bottom: -1rem!important
    }

    .ml-lg-n3,.mx-lg-n3 {
        margin-left: -1rem!important
    }

    .m-lg-n4 {
        margin: -1.5rem!important
    }

    .mt-lg-n4,.my-lg-n4 {
        margin-top: -1.5rem!important
    }

    .mr-lg-n4,.mx-lg-n4 {
        margin-right: -1.5rem!important
    }

    .mb-lg-n4,.my-lg-n4 {
        margin-bottom: -1.5rem!important
    }

    .ml-lg-n4,.mx-lg-n4 {
        margin-left: -1.5rem!important
    }

    .m-lg-n45 {
        margin: -2rem!important
    }

    .mt-lg-n45,.my-lg-n45 {
        margin-top: -2rem!important
    }

    .mr-lg-n45,.mx-lg-n45 {
        margin-right: -2rem!important
    }

    .mb-lg-n45,.my-lg-n45 {
        margin-bottom: -2rem!important
    }

    .ml-lg-n45,.mx-lg-n45 {
        margin-left: -2rem!important
    }

    .m-lg-n5 {
        margin: -3rem!important
    }

    .mt-lg-n5,.my-lg-n5 {
        margin-top: -3rem!important
    }

    .mr-lg-n5,.mx-lg-n5 {
        margin-right: -3rem!important
    }

    .mb-lg-n5,.my-lg-n5 {
        margin-bottom: -3rem!important
    }

    .ml-lg-n5,.mx-lg-n5 {
        margin-left: -3rem!important
    }

    .m-lg-n6 {
        margin: -4rem!important
    }

    .mt-lg-n6,.my-lg-n6 {
        margin-top: -4rem!important
    }

    .mr-lg-n6,.mx-lg-n6 {
        margin-right: -4rem!important
    }

    .mb-lg-n6,.my-lg-n6 {
        margin-bottom: -4rem!important
    }

    .ml-lg-n6,.mx-lg-n6 {
        margin-left: -4rem!important
    }

    .m-lg-n7 {
        margin: -5rem!important
    }

    .mt-lg-n7,.my-lg-n7 {
        margin-top: -5rem!important
    }

    .mr-lg-n7,.mx-lg-n7 {
        margin-right: -5rem!important
    }

    .mb-lg-n7,.my-lg-n7 {
        margin-bottom: -5rem!important
    }

    .ml-lg-n7,.mx-lg-n7 {
        margin-left: -5rem!important
    }

    .m-lg-n8 {
        margin: -6rem!important
    }

    .mt-lg-n8,.my-lg-n8 {
        margin-top: -6rem!important
    }

    .mr-lg-n8,.mx-lg-n8 {
        margin-right: -6rem!important
    }

    .mb-lg-n8,.my-lg-n8 {
        margin-bottom: -6rem!important
    }

    .ml-lg-n8,.mx-lg-n8 {
        margin-left: -6rem!important
    }

    .m-lg-auto {
        margin: auto!important
    }

    .mt-lg-auto,.my-lg-auto {
        margin-top: auto!important
    }

    .mr-lg-auto,.mx-lg-auto {
        margin-right: auto!important
    }

    .mb-lg-auto,.my-lg-auto {
        margin-bottom: auto!important
    }

    .ml-lg-auto,.mx-lg-auto {
        margin-left: auto!important
    }
}

@media (min-width: 1200px) {
    .m-xl-0 {
        margin:0!important
    }

    .mt-xl-0,.my-xl-0 {
        margin-top: 0!important
    }

    .mr-xl-0,.mx-xl-0 {
        margin-right: 0!important
    }

    .mb-xl-0,.my-xl-0 {
        margin-bottom: 0!important
    }

    .ml-xl-0,.mx-xl-0 {
        margin-left: 0!important
    }

    .m-xl-1 {
        margin: .25rem!important
    }

    .mt-xl-1,.my-xl-1 {
        margin-top: .25rem!important
    }

    .mr-xl-1,.mx-xl-1 {
        margin-right: .25rem!important
    }

    .mb-xl-1,.my-xl-1 {
        margin-bottom: .25rem!important
    }

    .ml-xl-1,.mx-xl-1 {
        margin-left: .25rem!important
    }

    .m-xl-2 {
        margin: .5rem!important
    }

    .mt-xl-2,.my-xl-2 {
        margin-top: .5rem!important
    }

    .mr-xl-2,.mx-xl-2 {
        margin-right: .5rem!important
    }

    .mb-xl-2,.my-xl-2 {
        margin-bottom: .5rem!important
    }

    .ml-xl-2,.mx-xl-2 {
        margin-left: .5rem!important
    }

    .m-xl-3 {
        margin: 1rem!important
    }

    .mt-xl-3,.my-xl-3 {
        margin-top: 1rem!important
    }

    .mr-xl-3,.mx-xl-3 {
        margin-right: 1rem!important
    }

    .mb-xl-3,.my-xl-3 {
        margin-bottom: 1rem!important
    }

    .ml-xl-3,.mx-xl-3 {
        margin-left: 1rem!important
    }

    .m-xl-4 {
        margin: 1.5rem!important
    }

    .mt-xl-4,.my-xl-4 {
        margin-top: 1.5rem!important
    }

    .mr-xl-4,.mx-xl-4 {
        margin-right: 1.5rem!important
    }

    .mb-xl-4,.my-xl-4 {
        margin-bottom: 1.5rem!important
    }

    .ml-xl-4,.mx-xl-4 {
        margin-left: 1.5rem!important
    }

    .m-xl-45 {
        margin: 2rem!important
    }

    .mt-xl-45,.my-xl-45 {
        margin-top: 2rem!important
    }

    .mr-xl-45,.mx-xl-45 {
        margin-right: 2rem!important
    }

    .mb-xl-45,.my-xl-45 {
        margin-bottom: 2rem!important
    }

    .ml-xl-45,.mx-xl-45 {
        margin-left: 2rem!important
    }

    .m-xl-5 {
        margin: 3rem!important
    }

    .mt-xl-5,.my-xl-5 {
        margin-top: 3rem!important
    }

    .mr-xl-5,.mx-xl-5 {
        margin-right: 3rem!important
    }

    .mb-xl-5,.my-xl-5 {
        margin-bottom: 3rem!important
    }

    .ml-xl-5,.mx-xl-5 {
        margin-left: 3rem!important
    }

    .m-xl-6 {
        margin: 4rem!important
    }

    .mt-xl-6,.my-xl-6 {
        margin-top: 4rem!important
    }

    .mr-xl-6,.mx-xl-6 {
        margin-right: 4rem!important
    }

    .mb-xl-6,.my-xl-6 {
        margin-bottom: 4rem!important
    }

    .ml-xl-6,.mx-xl-6 {
        margin-left: 4rem!important
    }

    .m-xl-7 {
        margin: 5rem!important
    }

    .mt-xl-7,.my-xl-7 {
        margin-top: 5rem!important
    }

    .mr-xl-7,.mx-xl-7 {
        margin-right: 5rem!important
    }

    .mb-xl-7,.my-xl-7 {
        margin-bottom: 5rem!important
    }

    .ml-xl-7,.mx-xl-7 {
        margin-left: 5rem!important
    }

    .m-xl-8 {
        margin: 6rem!important
    }

    .mt-xl-8,.my-xl-8 {
        margin-top: 6rem!important
    }

    .mr-xl-8,.mx-xl-8 {
        margin-right: 6rem!important
    }

    .mb-xl-8,.my-xl-8 {
        margin-bottom: 6rem!important
    }

    .ml-xl-8,.mx-xl-8 {
        margin-left: 6rem!important
    }

    .p-xl-0 {
        padding: 0!important
    }

    .pt-xl-0,.py-xl-0 {
        padding-top: 0!important
    }

    .pr-xl-0,.px-xl-0 {
        padding-right: 0!important
    }

    .pb-xl-0,.py-xl-0 {
        padding-bottom: 0!important
    }

    .pl-xl-0,.px-xl-0 {
        padding-left: 0!important
    }

    .p-xl-1 {
        padding: .25rem!important
    }

    .pt-xl-1,.py-xl-1 {
        padding-top: .25rem!important
    }

    .pr-xl-1,.px-xl-1 {
        padding-right: .25rem!important
    }

    .pb-xl-1,.py-xl-1 {
        padding-bottom: .25rem!important
    }

    .pl-xl-1,.px-xl-1 {
        padding-left: .25rem!important
    }

    .p-xl-2 {
        padding: .5rem!important
    }

    .pt-xl-2,.py-xl-2 {
        padding-top: .5rem!important
    }

    .pr-xl-2,.px-xl-2 {
        padding-right: .5rem!important
    }

    .pb-xl-2,.py-xl-2 {
        padding-bottom: .5rem!important
    }

    .pl-xl-2,.px-xl-2 {
        padding-left: .5rem!important
    }

    .p-xl-3 {
        padding: 1rem!important
    }

    .pt-xl-3,.py-xl-3 {
        padding-top: 1rem!important
    }

    .pr-xl-3,.px-xl-3 {
        padding-right: 1rem!important
    }

    .pb-xl-3,.py-xl-3 {
        padding-bottom: 1rem!important
    }

    .pl-xl-3,.px-xl-3 {
        padding-left: 1rem!important
    }

    .p-xl-4 {
        padding: 1.5rem!important
    }

    .pt-xl-4,.py-xl-4 {
        padding-top: 1.5rem!important
    }

    .pr-xl-4,.px-xl-4 {
        padding-right: 1.5rem!important
    }

    .pb-xl-4,.py-xl-4 {
        padding-bottom: 1.5rem!important
    }

    .pl-xl-4,.px-xl-4 {
        padding-left: 1.5rem!important
    }

    .p-xl-45 {
        padding: 2rem!important
    }

    .pt-xl-45,.py-xl-45 {
        padding-top: 2rem!important
    }

    .pr-xl-45,.px-xl-45 {
        padding-right: 2rem!important
    }

    .pb-xl-45,.py-xl-45 {
        padding-bottom: 2rem!important
    }

    .pl-xl-45,.px-xl-45 {
        padding-left: 2rem!important
    }

    .p-xl-5 {
        padding: 3rem!important
    }

    .pt-xl-5,.py-xl-5 {
        padding-top: 3rem!important
    }

    .pr-xl-5,.px-xl-5 {
        padding-right: 3rem!important
    }

    .pb-xl-5,.py-xl-5 {
        padding-bottom: 3rem!important
    }

    .pl-xl-5,.px-xl-5 {
        padding-left: 3rem!important
    }

    .p-xl-6 {
        padding: 4rem!important
    }

    .pt-xl-6,.py-xl-6 {
        padding-top: 4rem!important
    }

    .pr-xl-6,.px-xl-6 {
        padding-right: 4rem!important
    }

    .pb-xl-6,.py-xl-6 {
        padding-bottom: 4rem!important
    }

    .pl-xl-6,.px-xl-6 {
        padding-left: 4rem!important
    }

    .p-xl-7 {
        padding: 5rem!important
    }

    .pt-xl-7,.py-xl-7 {
        padding-top: 5rem!important
    }

    .pr-xl-7,.px-xl-7 {
        padding-right: 5rem!important
    }

    .pb-xl-7,.py-xl-7 {
        padding-bottom: 5rem!important
    }

    .pl-xl-7,.px-xl-7 {
        padding-left: 5rem!important
    }

    .p-xl-8 {
        padding: 6rem!important
    }

    .pt-xl-8,.py-xl-8 {
        padding-top: 6rem!important
    }

    .pr-xl-8,.px-xl-8 {
        padding-right: 6rem!important
    }

    .pb-xl-8,.py-xl-8 {
        padding-bottom: 6rem!important
    }

    .pl-xl-8,.px-xl-8 {
        padding-left: 6rem!important
    }

    .m-xl-n1 {
        margin: -.25rem!important
    }

    .mt-xl-n1,.my-xl-n1 {
        margin-top: -.25rem!important
    }

    .mr-xl-n1,.mx-xl-n1 {
        margin-right: -.25rem!important
    }

    .mb-xl-n1,.my-xl-n1 {
        margin-bottom: -.25rem!important
    }

    .ml-xl-n1,.mx-xl-n1 {
        margin-left: -.25rem!important
    }

    .m-xl-n2 {
        margin: -.5rem!important
    }

    .mt-xl-n2,.my-xl-n2 {
        margin-top: -.5rem!important
    }

    .mr-xl-n2,.mx-xl-n2 {
        margin-right: -.5rem!important
    }

    .mb-xl-n2,.my-xl-n2 {
        margin-bottom: -.5rem!important
    }

    .ml-xl-n2,.mx-xl-n2 {
        margin-left: -.5rem!important
    }

    .m-xl-n3 {
        margin: -1rem!important
    }

    .mt-xl-n3,.my-xl-n3 {
        margin-top: -1rem!important
    }

    .mr-xl-n3,.mx-xl-n3 {
        margin-right: -1rem!important
    }

    .mb-xl-n3,.my-xl-n3 {
        margin-bottom: -1rem!important
    }

    .ml-xl-n3,.mx-xl-n3 {
        margin-left: -1rem!important
    }

    .m-xl-n4 {
        margin: -1.5rem!important
    }

    .mt-xl-n4,.my-xl-n4 {
        margin-top: -1.5rem!important
    }

    .mr-xl-n4,.mx-xl-n4 {
        margin-right: -1.5rem!important
    }

    .mb-xl-n4,.my-xl-n4 {
        margin-bottom: -1.5rem!important
    }

    .ml-xl-n4,.mx-xl-n4 {
        margin-left: -1.5rem!important
    }

    .m-xl-n45 {
        margin: -2rem!important
    }

    .mt-xl-n45,.my-xl-n45 {
        margin-top: -2rem!important
    }

    .mr-xl-n45,.mx-xl-n45 {
        margin-right: -2rem!important
    }

    .mb-xl-n45,.my-xl-n45 {
        margin-bottom: -2rem!important
    }

    .ml-xl-n45,.mx-xl-n45 {
        margin-left: -2rem!important
    }

    .m-xl-n5 {
        margin: -3rem!important
    }

    .mt-xl-n5,.my-xl-n5 {
        margin-top: -3rem!important
    }

    .mr-xl-n5,.mx-xl-n5 {
        margin-right: -3rem!important
    }

    .mb-xl-n5,.my-xl-n5 {
        margin-bottom: -3rem!important
    }

    .ml-xl-n5,.mx-xl-n5 {
        margin-left: -3rem!important
    }

    .m-xl-n6 {
        margin: -4rem!important
    }

    .mt-xl-n6,.my-xl-n6 {
        margin-top: -4rem!important
    }

    .mr-xl-n6,.mx-xl-n6 {
        margin-right: -4rem!important
    }

    .mb-xl-n6,.my-xl-n6 {
        margin-bottom: -4rem!important
    }

    .ml-xl-n6,.mx-xl-n6 {
        margin-left: -4rem!important
    }

    .m-xl-n7 {
        margin: -5rem!important
    }

    .mt-xl-n7,.my-xl-n7 {
        margin-top: -5rem!important
    }

    .mr-xl-n7,.mx-xl-n7 {
        margin-right: -5rem!important
    }

    .mb-xl-n7,.my-xl-n7 {
        margin-bottom: -5rem!important
    }

    .ml-xl-n7,.mx-xl-n7 {
        margin-left: -5rem!important
    }

    .m-xl-n8 {
        margin: -6rem!important
    }

    .mt-xl-n8,.my-xl-n8 {
        margin-top: -6rem!important
    }

    .mr-xl-n8,.mx-xl-n8 {
        margin-right: -6rem!important
    }

    .mb-xl-n8,.my-xl-n8 {
        margin-bottom: -6rem!important
    }

    .ml-xl-n8,.mx-xl-n8 {
        margin-left: -6rem!important
    }

    .m-xl-auto {
        margin: auto!important
    }

    .mt-xl-auto,.my-xl-auto {
        margin-top: auto!important
    }

    .mr-xl-auto,.mx-xl-auto {
        margin-right: auto!important
    }

    .mb-xl-auto,.my-xl-auto {
        margin-bottom: auto!important
    }

    .ml-xl-auto,.mx-xl-auto {
        margin-left: auto!important
    }
}

.text-monospace {
    font-family: SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important
}

.text-justify {
    text-align: justify!important
}

.text-wrap {
    white-space: normal!important
}

.text-nowrap {
    white-space: nowrap!important
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.text-left {
    text-align: left!important
}

.text-right {
    text-align: right!important
}

.text-center {
    text-align: center!important
}

@media (min-width: 576px) {
    .text-sm-left {
        text-align:left!important
    }

    .text-sm-right {
        text-align: right!important
    }

    .text-sm-center {
        text-align: center!important
    }
}

@media (min-width: 768px) {
    .text-md-left {
        text-align:left!important
    }

    .text-md-right {
        text-align: right!important
    }

    .text-md-center {
        text-align: center!important
    }
}

@media (min-width: 992px) {
    .text-lg-left {
        text-align:left!important
    }

    .text-lg-right {
        text-align: right!important
    }

    .text-lg-center {
        text-align: center!important
    }
}

@media (min-width: 1200px) {
    .text-xl-left {
        text-align:left!important
    }

    .text-xl-right {
        text-align: right!important
    }

    .text-xl-center {
        text-align: center!important
    }
}

.text-lowercase {
    text-transform: lowercase!important
}

.text-uppercase {
    text-transform: uppercase!important
}

.text-capitalize {
    text-transform: capitalize!important
}

.font-weight-light {
    font-weight: 300!important
}

.font-weight-lighter {
    font-weight: lighter!important
}

.font-weight-normal {
    font-weight: 400!important
}

.font-weight-bold {
    font-weight: 700!important
}

.font-weight-bolder {
    font-weight: bolder!important
}

.font-italic {
    font-style: italic!important
}

.text-white {
    color: #fff!important
}

.text-primary {
    color: #21578a!important
}

a.text-primary:focus,a.text-primary:hover {
    color: #12304c!important
}

.text-secondary {
    color: #717b2d!important
}

a.text-secondary:focus,a.text-secondary:hover {
    color: #3e4319!important
}

.text-success {
    color: #28a745!important
}

a.text-success:focus,a.text-success:hover {
    color: #19692c!important
}

.text-info {
    color: #17a2b8!important
}

a.text-info:focus,a.text-info:hover {
    color: #0f6674!important
}

.text-warning {
    color: #ffc107!important
}

a.text-warning:focus,a.text-warning:hover {
    color: #ba8b00!important
}

.text-danger {
    color: #dc3545!important
}

a.text-danger:focus,a.text-danger:hover {
    color: #a71d2a!important
}

.text-light {
    color: #f4f3f1!important
}

a.text-light:focus,a.text-light:hover {
    color: #d2cec6!important
}

.text-medium-light {
    color: #dee2e6!important
}

a.text-medium-light:focus,a.text-medium-light:hover {
    color: #b2bcc5!important
}

.text-dark {
    color: #343a40!important
}

a.text-dark:focus,a.text-dark:hover {
    color: #121416!important
}

.text-body {
    color: #414141!important
}

.text-muted {
    color: #6c757d!important
}

.text-black-50 {
    color: rgba(0,0,0,.5)!important
}

.text-white-50 {
    color: hsla(0,0%,100%,.5)!important
}

.text-hide {
    background-color: transparent;
    border: 0;
    color: transparent;
    font: 0/0 a;
    text-shadow: none
}

.text-decoration-none {
    text-decoration: none!important
}

.text-break {
    overflow-wrap: break-word!important;
    word-break: break-word!important
}

.text-reset {
    color: inherit!important
}

.visible {
    visibility: visible!important
}

.invisible {
    visibility: hidden!important
}

.font-thin {
    font-weight: 200!important
}

.font-light {
    font-weight: 300!important
}

.font-normal {
    font-weight: 400!important
}

.font-medium {
    font-weight: 500!important
}

.font-semi-bold {
    font-weight: 600!important
}

.font-bold {
    font-weight: 700!important
}

.fixed-position {
    position: fixed
}

.image-auto {
    max-width: 100%;
    width: auto
}

.image-full {
    max-width: 100%;
    width: 100%
}

.has-dark-overlay {
    background-blend-mode: overlay;
    background-color: rgba(51,51,51,.05);
    transition: background-color .6s ease-in-out
}

.has-dark-overlay:hover {
    background-color: rgba(51,51,51,.4)
}

.bg-primary,.bg-primary h1,.bg-primary h2,.bg-primary h3,.bg-primary h4,.bg-primary h5,.bg-primary h6,.row-style--background-blue,.row-style--background-blue h1,.row-style--background-blue h2,.row-style--background-blue h3,.row-style--background-blue h4,.row-style--background-blue h5,.row-style--background-blue h6 {
    color: #fff!important
}

.bg-primary .media--file svg,.row-style--background-blue .media--file svg {
    fill: #fff
}

.bg-light,.bg-white {
    color: #414141
}

.row-style--background-blue {
    background: linear-gradient(90deg,#1879b1 0,#21578a);
    padding: 3rem 4rem
}

.row-style--background-light-grey {
    background-color: #f4f3f1;
    padding: 3rem 4rem
}

.row-style--border-full {
    border: 3px solid #dee2e6;
    padding: 2rem
}

.col-style--spacing-medium {
    margin-left: -2rem;
    margin-right: -2rem
}

.col-style--spacing-medium .col {
    padding-left: 2rem;
    padding-right: 2rem
}

.col-style--border-full .col>div {
    border: 1px solid #dcdcdc;
    padding: 2rem 3rem
}

.col-style--line .col {
    border-right: 2px solid #dee2e6;
    padding-left: 3rem;
    padding-right: 3rem
}

.col-style--line .col:last-child {
    border-right-width: 0
}

@media (max-width: 1199.98px) {
    .col-style--line .col {
        border-bottom:1px solid #dee2e6;
        border-right: 0 solid #dee2e6
    }
}

.col-style--line .small,.col-style--line small {
    display: inline-block;
    font-size: 16px;
    line-height: 17px
}

.bg-primary {
    background: linear-gradient(90deg,#1879b1 0,#21578a)
}

.no-border {
    border: none!important
}

.small {
    font-size: .778rem
}

.smaller {
    font-size: .889em
}

.bigger {
    font-size: 1.111em
}

.big {
    font-size: 1.222em
}

.big-title,.oversized-callout {
    color: #21578a;
    font-size: 5.556rem;
    font-weight: 300;
    letter-spacing: -.25rem;
    line-height: 93%;
    margin-bottom: 1.389rem
}

.bg-dark .big-title,.bg-dark .oversized-callout,.bg-primary .big-title,.bg-primary .oversized-callout {
    color: currentColor
}

.oversized-text-with-line-above {
    color: #21578a;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 135%;
    padding-top: 2rem;
    position: relative;
    text-align: center
}

.oversized-text-with-line-above:before {
    background-color: currentColor;
    content: "";
    display: block;
    height: .188rem;
    left: 50%;
    margin-left: -4rem;
    position: absolute;
    top: 0;
    width: 8rem
}

@media (min-width: 768px) {
    .oversized-text-with-line-above:before {
        height:.288rem;
        margin-left: -5.5555rem;
        width: 11.111rem
    }
}

.bg-dark .oversized-text-with-line-above,.bg-primary .oversized-text-with-line-above {
    color: currentColor
}

@media (min-width: 576px) {
    .oversized-text-with-line-above {
        font-size:1.983334rem
    }
}

@media (min-width: 768px) {
    .oversized-text-with-line-above {
        font-size:2.3rem
    }
}

@media (min-width: 992px) {
    .oversized-text-with-line-above {
        font-size:2.5rem
    }
}

.video-embed-field-responsive-video:after {
    padding-bottom: 0
}

.table {
    font-size: .889rem
}

.text-formatted .table:last-child {
    margin-bottom: 0
}

.text-formatted .table:only-child {
    margin-bottom: 0;
    margin-top: 0
}

.table-sm {
    font-size: .833rem
}

.text-formatted ul li,.text-formatted ul li span {
    font-size: 18px
}

.text-formatted ul.inline-list-with-borders,ul.inline-list-with-borders {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0
}

@media (min-width: 768px) {
    .text-formatted ul.inline-list-with-borders,ul.inline-list-with-borders {
        flex-wrap:nowrap;
        justify-content: flex-start
    }
}

.text-formatted ul.inline-list-with-borders:last-child,ul.inline-list-with-borders:last-child {
    margin-bottom: 0
}

.text-formatted ul.inline-list-with-borders:only-child,ul.inline-list-with-borders:only-child {
    margin-bottom: 0;
    margin-top: 0
}

.text-formatted ul.inline-list-with-borders li,ul.inline-list-with-borders li {
    line-height: 1;
    margin-bottom: 0;
    margin-top: 30px
}

@media (min-width: 768px) {
    .text-formatted ul.inline-list-with-borders li,ul.inline-list-with-borders li {
        margin-top:0
    }

    .text-formatted ul.inline-list-with-borders li:not(:first-child),ul.inline-list-with-borders li:not(:first-child) {
        border-left: 1px solid;
        margin: 0 0 0 1.389em;
        padding: 0 0 0 1.389em
    }
}

.text-blue {
    color: #21578a
}

.form-required:after {
    color: #fff;
    content: "*";
    padding-left: 1px
}

@media (max-width: 767.98px) {
    .table-responsive tbody {
        white-space:nowrap
    }
}

@media (max-width: 1199.98px) {
    .col-style--line .col {
        border-bottom:1px solid #dee2e6;
        border-right: 0 solid #dee2e6;
        padding: 30px 20px 40px
    }
}

html {
    font-size: 18px;
    overflow-x: hidden;
    scroll-behavior: smooth
}

@media (min-width: 768px) {
    html {
        overflow-x:auto
    }
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: env(safe-area-inset-bottom)
}

.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
    margin-bottom: .667rem
}

.bg-dark .h1,.bg-dark .h2,.bg-dark .h3,.bg-dark .h4,.bg-dark .h5,.bg-dark .h6,.bg-dark h1,.bg-dark h2,.bg-dark h3,.bg-dark h4,.bg-dark h5,.bg-dark h6,.bg-primary .h1,.bg-primary .h2,.bg-primary .h3,.bg-primary .h4,.bg-primary .h5,.bg-primary .h6,.bg-primary h1,.bg-primary h2,.bg-primary h3,.bg-primary h4,.bg-primary h5,.bg-primary h6 {
    color: #fff
}

.h1,.h2,.h3,h1,h2,h3 {
    color: #21578a
}

.h1,.h2,h1,h2 {
    letter-spacing: -.0278rem
}

p:last-child {
    margin-bottom: 0
}

a {
    font-weight: 700
}

.bg-dark a,.bg-primary a {
    color: #fff
}

.article__content a:not(.btn),.callout-text__callout a:not(.btn),.text-body a:not(.btn),.text-formatted a:not(.btn) {
    word-wrap: break-word;
    text-decoration: underline
}

b,strong {
    font-weight: 700
}

.article ul {
    margin: 0;
    padding-bottom: 20px;
    padding-left: 20px
}

.text-formatted ol,.text-formatted ul {
    font-size: .888888rem;
    font-weight: 400;
    margin-left: 0
}

.bg-dark .text-formatted ol,.bg-dark .text-formatted ul,.bg-primary .text-formatted ol,.bg-primary .text-formatted ul {
    color: #fff
}

.text-formatted ol li,.text-formatted ul li {
    line-height: 23px;
    margin-bottom: 8px
}

.text-formatted .ext {
    fill: #21578a
}

.text-formatted .h5,.text-formatted h5 {
    margin-bottom: .367rem
}

sub,sup {
    font-size: 60%
}

.bg-dark .table,.bg-primary .table {
    color: #fff
}

.bg-dark hr,.bg-primary hr {
    border-color: #cfcfcf
}

.one-column {
    width: 100%;
    word-break: break-word
}

.text-center ul {
    display: table;
    margin: 0 auto
}

.text-center ul li {
    text-align: left
}

.article--full .style-as-tag a {
    background: #f4f3f1;
    border-radius: 8px;
    color: #414141;
    font-size: 12px;
    line-height: 40px;
    margin-right: 10px;
    padding: 8px;
    text-decoration: none;
    white-space: nowrap;
    width: -moz-fit-content;
    width: fit-content
}

.article--full .style-as-tag a:active,.article--full .style-as-tag a:hover {
    text-decoration: underline
}

.article--full .article__header {
    background-color: #f4f3f1
}

.glossary--full .article--full .article__header {
    padding: 1rem 0
}

@media (min-width: 768px) {
    .glossary--full .article--full .article__header {
        padding:2rem 0
    }
}

.article--full .article__header>.container {
    display: flex;
    flex-direction: column-reverse
}

@media (min-width: 768px) {
    .article--full .article__header>.container {
        flex-direction:row;
        justify-content: space-between
    }
}

.article--full .article__header .breadcrumb {
    padding-left: 0
}

@media (min-width: 992px) {
    .article--full .article__header .breadcrumb {
        margin-bottom:2rem!important
    }
}

.article--full .article__image {
    display: block;
    margin-left: -1rem;
    margin-right: -1rem
}

@media (min-width: 768px) {
    .article--full .article__image {
        margin-left:2rem;
        margin-right: 0;
        width: 380px
    }
}

@media (min-width: 992px) {
    .article--full .article__image {
        width:450px
    }
}

.article--full .article__image picture {
    display: block;
    width: 100%
}

.article--full .article__image picture img {
    height: auto;
    width: 100%
}

.article--full .article__title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -.05rem;
    line-height: 109%;
    margin-bottom: 2rem;
    max-width: 600px
}

@media (min-width: 768px) {
    .article--full .article__title {
        font-size:2.35rem;
        margin-bottom: 0
    }
}

@media (min-width: 992px) {
    .article--full .article__title {
        font-size:2.5rem;
        margin-bottom: 3rem!important
    }

    .wellness--full .article--full .article__title {
        font-size: 3.333333333rem
    }
}

.article--full .no-image {
    width: 100%
}

.article--full .no-image .article__title {
    max-width: 100%;
    text-align: left
}

.article--full .article__content {
    padding: 30px 0
}

.article--full .article__date,.article--full p {
    font-size: .833rem
}

@media (min-width: 768px) {
    .article--full .article__date,.article--full p {
        font-size:1rem;
        line-height: 135%
    }
}

.article--full .article__date {
    display: block;
    font-weight: 600;
    margin-bottom: 1rem
}

.article--sticky {
    background-color: #f4f3f1;
    position: relative
}

@media (min-width: 576px) {
    .article--sticky {
        align-items:stretch;
        display: flex;
        flex-direction: row
    }
}

.article--sticky .article__image {
    display: flex;
    overflow: hidden;
    position: relative
}

@media (min-width: 576px) {
    .article--sticky .article__image {
        width:250px
    }
}

@media (min-width: 768px) {
    .article--sticky .article__image {
        width:220px
    }
}

@media (min-width: 992px) {
    .article--sticky .article__image {
        width:auto
    }
}

.article--sticky .article__image picture {
    display: block;
    height: 100%
}

@media (min-width: 768px) {
    .article--sticky .article__image picture {
        transform:scale(1.4)
    }
}

@media (min-width: 992px) {
    .article--sticky .article__image picture {
        transform:scale(1.2)
    }
}

.article--sticky .article__content {
    flex: 1;
    padding: 15px
}

@media (min-width: 992px) {
    .article--sticky .article__content {
        padding:45px 30px
    }
}

@media (min-width: 1200px) {
    .article--sticky .article__content {
        padding:60px 40px
    }
}

.article--sticky .article__category {
    font-size: 1rem;
    font-weight: 500
}

@media (min-width: 992px) {
    .article--sticky .article__category {
        font-size:1.11rem;
        line-height: 135%
    }
}

.article--sticky .article__title {
    color: #21578a;
    font-size: 1.333rem;
    font-weight: 500;
    line-height: 125%
}

@media (min-width: 992px) {
    .article--sticky .article__title {
        font-size:1.9rem;
        line-height: 115%
    }
}

.article--sticky p {
    font-size: .833rem
}

@media (min-width: 992px) {
    .article--sticky p {
        font-size:1rem;
        line-height: 135%
    }
}

.hub-article {
    background-color: #f4f3f1;
    position: relative;
    width: 100%
}

.hub-article .featured-top {
    padding-left: 33.3333%
}

.hub-article .image {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 33.33333%
}

.hub-article .image .preview {
    background-color: #ccc;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

.hub-article.featured-top .details {
    padding: 3.333rem 2.222rem 3.333rem calc(33.3333% + 2.222rem)
}
.hub-article.featured-top a {
    text-decoration: underline
}

.hub-article.boxed {
    font-size: .778rem;
    height: 100%;
    line-height: .889rem;
    padding-bottom: 2.222rem
}

.hub-article.boxed .info {
    padding: .833rem
}

.hub-article.boxed .date {
    color: #000;
    font-weight: 400;
    margin-bottom: .278rem;
    text-transform: uppercase
}

.hub-article.boxed .open-link {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 10
}

.hub-article.boxed .title {
    color: #414141;
    font-size: 1.111rem;
    font-weight: 700;
    letter-spacing: -.025rem;
    line-height: 1.444rem;
    text-decoration: underline
}

.hub-article.boxed .image {
    display: block;
    height: auto;
    left: auto;
    margin-bottom: .556rem;
    padding-top: 100%;
    position: relative;
    top: auto;
    width: 100%
}

.hub-article.boxed .image img {
    display: none
}

.hub-article.boxed .bottom {
    bottom: 0;
    left: 0;
    padding: .833rem;
    position: absolute;
    width: 100%
}

.hub-article.boxed .bottom span {
    border-top: 1px solid #ccc;
    display: block;
    padding-top: .556rem;
    width: 100%
}

.article--teaser {
    background-color: #f4f3f1;
    position: relative
}

.article--teaser>a {
    display: flex;
    flex-direction: column;
    height: 100%
}

@media (min-width: 576px) {
    .article--teaser .article__image {
        overflow:hidden;
        padding-top: 100%;
        position: relative;
        width: 100%
    }

    .article--teaser .article__image picture {
        left: 0;
        position: absolute;
        right: 0;
        top: 0
    }

    .article--teaser .article__image img {
        height: auto;
        width: 100%
    }
}

.article--teaser .article__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px
}

.article--teaser .article__date {
    color: #20598d;
    font-size: .777rem;
    font-weight: 400;
    margin-bottom: .25rem;
    text-transform: uppercase
}

.article--teaser .article__title {
    color: #414141;
    font-size: 1.111rem;
    font-weight: 700;
    letter-spacing: -.025rem;
    line-height: 1.444rem;
    margin-bottom: 10px
}

.article--teaser .article__category {
    border-top: 1px solid #ccc;
    color: #414141;
    font-size: .667rem;
    font-weight: 400;
    margin: auto 0 0;
    padding-top: 5px
}

@media (min-width: 768px) {
    .article--teaser .article__category {
        font-size:.722rem
    }
}

.banner {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2rem 0;
    position: relative;
    width: 100%
}

@media (max-width: 991.98px) {
    .banner {
        padding:1rem 0
    }
}

@media (max-width: 575.98px) {
    .banner {
        background-image:none!important;
        border-bottom: 1px solid #ccc;
        padding-top: 0!important
    }
}

@media (min-width: 576px) {
    .banner.bottom-spacing {
        padding-bottom:5rem
    }
}

@media (min-width: 768px) {
    .banner.bottom-spacing {
        padding-bottom:7rem
    }
}

@media (min-width: 992px) {
    .banner.bottom-spacing {
        padding-bottom:10rem
    }
}

.banner .mobile-image {
    margin-bottom: 1rem;
    margin-left: -20px;
    margin-right: -20px
}

.banner h1 {
    line-height: 1.1
}

.banner p {
    font-size: 1.11111rem;
    font-weight: 700;
    line-height: 1.3
}

.banner .box {
    background-color: hsla(0,0%,100%,.88);
    border-radius: 1.667rem;
    display: block;
    padding: 4rem 3.056rem;
    position: relative;
    width: 100%
}

@media (max-width: 991.98px) {
    .banner .box {
        padding:2.222rem 3.056rem
    }
}

@media (max-width: 767.98px) {
    .banner .box {
        padding:1.2rem
    }
}

@media (max-width: 575.98px) {
    .banner .box {
        max-width:100%;
        padding: 1.2rem 0
    }
}

.title-bio {
    margin-top: 3rem
}

.title-bio h2 {
    margin-bottom: 0
}

div.bio {
    overflow: hidden;
    position: relative
}

div.bio:after {
    content: "";
    display: block
}

div.bio__details {
    display: flex;
    flex-direction: column;
    min-height: 112px;
    opacity: 1;
    padding: 15px;
    transition: all .3s ease-out
}

div.bio__details:hover {
    opacity: 1
}

div.bio__details p {
    font-size: 1rem
}

div.bio__details button {
    background: none;
    border: 0;
    font-size: 1.111rem;
    font-weight: 700;
    outline: none
}

div.bio__details button:hover {
    text-decoration: underline
}

div.bio__name {
    border-bottom: 2px solid #d5d6d7;
    display: inline-block;
    margin-bottom: 1.667rem;
    margin-top: 2.778rem;
    padding-bottom: 1.667rem
}

div.bio__name h2,div.bio__name h4 {
    font-weight: 500;
    margin-bottom: 0
}

div.bio__body h4 {
    font-weight: 400
}

div.bio .modal .close {
    color: #d1d1d2;
    font-size: 2.222rem;
    line-height: 2.222rem;
    opacity: 1;
    position: absolute;
    right: 1.111rem;
    text-shadow: none;
    top: .556rem;
    z-index: 100
}

div.bio .modal .modal-content {
    border-radius: 1.667rem 1.667rem 0 0
}

div.bio .modal .modal-content img {
    position: static
}

div.bio .modal .modal-body {
    padding: 2.778rem 1.944rem
}

.bio .modal-content img {
    padding-top: .778rem
}

.view-board h3 {
    clear: both;
    padding-left: 1.1111rem;
    padding-right: 1.1111rem;
    width: 100%
}

.view-board .bio__details span {
    color: #21578a;
    font-weight: 700
}

@media (max-width: 991.98px) {
    .modal-body .bio-name h3 {
        font-size:calc(1.05833rem + .1vw)
    }
}

.breadcrumb {
    font-size: .722rem;
    letter-spacing: .02rem;
    line-height: .889rem;
    padding: .833rem 20px 0
}

.header-type--header .breadcrumb {
    position: absolute;
    z-index: 1
}

.header-type--blue-header .breadcrumb {
    color: #fff;
    position: absolute;
    z-index: 1
}

.header-type--blue-header .breadcrumb .breadcrumb-item,.header-type--blue-header .breadcrumb .breadcrumb-item:before,.header-type--blue-header .breadcrumb a {
    color: #fff
}

.blue-header .breadcrumb {
    color: #fff;
    z-index: 1
}

.blue-header .breadcrumb .breadcrumb-item,.blue-header .breadcrumb .breadcrumb-item:before,.blue-header .breadcrumb a {
    color: #fff
}

@media (min-width: 768px) {
    .short-breadcrumb .breadcrumb {
        max-width:60%
    }
}

.short-breadcrumb .breadcrumb .breadcrumb-item {
    margin-bottom: .35rem
}

.breadcrumb-item+.breadcrumb-item:before {
    padding-right: .2rem
}

.breadcrumb-item+.breadcrumb-item.sep-pipe:before {
    content: "|"
}

.btn {
    background-color: #717b2d;
    border: 2px solid #717b2d;
    border-radius: 3rem;
    box-shadow: none;
    color: #fff;
    font-weight: 700;
    letter-spacing: -.01rem;
    margin-bottom: 1rem;
    margin-right: 1rem;
    position: relative;
    text-align: center;
    text-shadow: none;
    text-transform: none
}

.bg-dark .btn,.bg-primary .btn {
    background-color: #fff;
    border-color: #fff;
    color: #21578a
}

.bg-light .btn,.bg-white .btn {
    background-color: #717b2d;
    border: 2px solid #717b2d;
    color: #fff
}

.btn.focus,.btn:focus,.btn:hover {
    background-color: #414141;
    border-color: #414141;
    box-shadow: none;
    color: #fff
}

.btn.auto {
    max-width: 100%;
    width: auto
}

.btn.medium {
    max-width: 100%;
    width: 12.222rem
}

.btn.link {
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: #21578a;
    font-weight: 700;
    letter-spacing: -.01rem;
    padding: 0;
    position: relative;
    text-align: inherit;
    text-shadow: none;
    text-transform: none
}

.bg-dark .btn.link,.bg-primary .btn.link {
    color: #a4d4f6
}

.bg-light .btn.link,.bg-white .btn.link {
    color: #21578a
}

.btn.link.active,.btn.link.active:hover,.btn.link:hover {
    background-color: none;
    border-color: none;
    box-shadow: none;
    color: #21578a
}

.btn.white-green {
    background-color: transparent;
    border-color: #6b732b;
    color: #6b732b
}

.bg-dark .btn.white-green,.bg-primary .btn.white-green {
    border-color: #fff;
    color: #fff
}

.bg-light .btn.white-green,.bg-white .btn.white-green {
    background-color: transparent;
    border-color: #6b732b;
    color: #6b732b
}

.btn.green.active,.btn.green.active:hover,.btn.green:hover,.btn.white-green.active,.btn.white-green.active:hover,.btn.white-green:hover {
    background-color: #414141;
    border-color: #414141;
    box-shadow: none;
    color: #fff
}

.btn[data-extlink]:after {
    display: none
}

.buttons {
    margin-left: -7px;
    margin-right: -7px
}

.buttons .btn {
    margin: 0 7px 10px
}

.dropdown .dropdown-toggle.btn {
    background-color: #717b2d!important;
    border-color: #717b2d!important;
    color: #fff!important;
    position: relative;
    z-index: 10
}

.dropdown .dropdown-toggle:after {
    vertical-align: .15em
}

.dropdown .dropdown-menu {
    background-color: #f4f3f1;
    border: none;
    border-radius: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-top: -1.667rem;
    padding: 2.778rem 0 1.111rem;
    width: 100%;
    z-index: 9
}

.dropdown .dropdown-item {
    color: #414141;
    font-weight: 500;
    letter-spacing: .025rem;
    line-height: 110%;
    margin: 0;
    padding: .6rem 2.5rem
}

.dropdown .dropdown-item.active,.dropdown .dropdown-item:active,.dropdown .dropdown-item:focus,.dropdown .dropdown-item:hover {
    background: #fff;
    color: #21578a
}

.dropdown .dropdown-item.active .ext,.dropdown .dropdown-item:active .ext,.dropdown .dropdown-item:focus .ext,.dropdown .dropdown-item:hover .ext {
    fill: #21578a
}

.buttons--dropdown {
    display: inline-block;
    max-width: 12.778rem;
    width: 100%
}

.callout-text {
    font-size: .833rem;
    line-height: 1.611rem;
    position: relative
}

@media (min-width: 768px) {
    .callout-text {
        font-size:1rem
    }
}

.callout-text:before {
    background-color: #fff;
    content: "";
    height: 125px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.callout-text__callout {
    background-color: #fff!important;
    border-radius: 25px 25px 0 0;
    box-shadow: 0 10px 19px 10px rgba(0,0,0,.05);
    padding: 40px 25px
}

@media (min-width: 768px) {
    .callout-text__callout {
        padding:50px
    }
}

@media (min-width: 1200px) {
    .callout-text__callout {
        padding:50px 100px
    }
}

.callout-text__callout h2 {
    color: #414141!important;
    font-size: 1.11rem;
    margin-bottom: 1rem
}

@media (min-width: 992px) {
    .callout-text__callout h2 {
        font-size:1.4rem
    }
}

.callout-text__callout img {
    margin-bottom: 1rem
}

.callout-text__callout .btn:hover {
    color: #fff
}

@media (min-width: 992px) {
    .callout-text__text {
        padding-top:100px
    }
}

section.contact {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: -.015rem;
    line-height: 1.667rem;
    overflow: hidden;
    padding: 30px 0 0
}

section.contact h1 {
    margin-bottom: .5rem
}

section.contact p {
    font-size: .888rem;
    font-weight: 300;
    line-height: 25px
}

@media (min-width: 768px) {
    section.contact p {
        font-size:1rem;
        line-height: 28px
    }
}

@media (min-width: 992px) {
    section.contact p {
        font-size:1.2rem;
        line-height: 30px
    }
}

section.contact .contact__state form {
    display: flex
}

@media (min-width: 768px) {
    section.contact .contact__state form {
        justify-content:flex-end
    }
}

section.contact .contact__state .form-item {
    margin: 0;
    position: relative;
    width: 100px
}

section.contact .contact__state .form-item label {
    color: #fff;
    font-size: .833rem;
    font-weight: 300;
    margin-bottom: 0;
    text-decoration: underline
}

@media (min-width: 768px) {
    section.contact .contact__state .form-item label {
        font-size:.778rem
    }
}

section.contact .contact__state .form-item select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0
}

section.contact .contact__tabs {
    border-bottom: 1px solid hsla(0,0%,100%,.33);
    border-top: 1px solid hsla(0,0%,100%,.33);
    margin-bottom: 1rem;
    padding: 20px 0
}

@media (min-width: 992px) {
    section.contact .contact__tabs {
        height:105px;
        margin-bottom: 3rem;
        padding: 0
    }
}

section.contact .contact__tabs .tabs {
    max-width: 300px;
    width: 100%
}

@media (min-width: 768px) {
    section.contact .contact__tabs .tabs {
        max-width:none;
        width: auto
    }
}

section.contact .contact__tabs .nav-tabs {
    border: none;
    display: flex;
    justify-content: space-between;
    margin-left: 0;
    margin-right: 0
}

@media (min-width: 992px) {
    section.contact .contact__tabs .nav-tabs {
        justify-content:flex-start
    }
}

section.contact .contact__tabs .nav-tabs .nav-item {
    width: 48%
}

@media (min-width: 768px) {
    section.contact .contact__tabs .nav-tabs .nav-item {
        width:auto
    }
}

section.contact .contact__tabs .nav-tabs .nav-item+.nav-item {
    margin-left: 10px
}

@media (min-width: 768px) {
    section.contact .contact__tabs .nav-tabs .nav-item+.nav-item {
        margin-left:20px
    }
}

@media (min-width: 992px) {
    section.contact .contact__tabs .nav-tabs .nav-item+.nav-item {
        margin-left:40px
    }
}

section.contact .contact__tabs .nav-tabs .nav-item:last-child .nav-link:before {
    border-top-color: #1b6ba1
}

section.contact .contact__tabs .nav-tabs .nav-link {
    background-color: #717b2d;
    border-color: #717b2d;
    border-radius: 45px;
    color: #fff;
    font-size: .778rem;
    font-weight: 300;
    height: 40px;
    letter-spacing: -.01rem;
    line-height: 1rem;
    padding: 10px;
    position: relative;
    text-align: center;
    width: 100%
}

@media (min-width: 768px) {
    section.contact .contact__tabs .nav-tabs .nav-link {
        font-size:1rem;
        font-weight: 400;
        height: 45px;
        padding: 12px 28px;
        width: 260px
    }
}

section.contact .contact__tabs .nav-tabs .nav-link:after,section.contact .contact__tabs .nav-tabs .nav-link:before {
    border-color: transparent;
    border-style: solid;
    border-width: 13px 31.5px 0;
    bottom: 0;
    content: "";
    display: none;
    height: 0;
    left: 50%;
    margin-left: -31px;
    opacity: 0;
    position: absolute;
    width: 0
}

@media (min-width: 992px) {
    section.contact .contact__tabs .nav-tabs .nav-link:after,section.contact .contact__tabs .nav-tabs .nav-link:before {
        display:block
    }
}

section.contact .contact__tabs .nav-tabs .nav-link:before {
    border-top-color: #1e71a9;
    margin-bottom: -42px;
    z-index: 9
}

section.contact .contact__tabs .nav-tabs .nav-link:after {
    border-top-color: hsla(0,0%,100%,.33);
    margin-bottom: -43px;
    z-index: 1
}

section.contact .contact__tabs .nav-tabs .nav-link.active,section.contact .contact__tabs .nav-tabs .nav-link:hover {
    background-color: #fff;
    border-color: #fff;
    color: #717b2d
}

section.contact .contact__tabs .nav-tabs .nav-link.active:after,section.contact .contact__tabs .nav-tabs .nav-link.active:before {
    opacity: 1
}

section.contact .contact__tabs .nav-tabs .nav-link .ext {
    display: none
}

section.contact .contact__links li+li {
    margin-top: .5rem
}

section.contact .contact__links .link {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: .833rem;
    line-height: 120%;
    position: relative
}

@media (min-width: 768px) {
    section.contact .contact__links .link {
        font-size:18px
    }
}

@media (min-width: 992px) {
    section.contact .contact__links .link {
        justify-content:flex-end
    }
}


section.contact .contact__content h4 {
    font-size: 1rem;
    line-height: 30px;
    margin: 0
}

@media (min-width: 768px) {
    section.contact .contact__content h4 {
        font-size:1.2rem
    }
}

section.contact .contact__content form {
    align-items: flex-start;
    flex-direction: column
}

section.contact .contact__content form .form-item,section.contact .contact__content form .group__container {
    width: 100%
}

section.contact .contact__content form .form-item {
    margin-bottom: 1rem;
    margin-right: 0
}

@media (min-width: 768px) {
    section.contact .contact__content form .group__container {
        display:flex;
        justify-content: space-between
    }

    section.contact .contact__content form .group__container .form-item {
        width: 48%
    }
}

section.contact .contact__content form .form-actions {
    display: flex;
    margin-top: 0;
    width: 100%
}

@media (min-width: 992px) {
    section.contact .contact__content form .form-actions {
        justify-content:flex-end
    }
}

section.contact .contact__view form {
    max-width: 470px
}

section.contact .contact__view .view__content {
    background-color: #fff;
    color: #414141;
    font-size: .75rem;
    line-height: 24px;
    padding: 30px 0
}

@media (min-width: 768px) {
    section.contact .contact__view .view__content {
        font-size:.888rem;
        padding: 75px 0
    }
}

section.contact .contact__view .view__content p {
    font-size: .75rem;
    line-height: 18px
}

@media (min-width: 768px) {
    section.contact .contact__view .view__content p {
        font-size:.888rem
    }
}

section.contact .contact__view .view__content h4 {
    border-bottom: 1px solid silver;
    display: block;
    margin-bottom: 1rem;
    padding-bottom: .833rem
}

@media (min-width: 768px) {
    section.contact .contact__view .view__content h4 {
        margin-bottom:3rem
    }
}

section.contact .contact__view .field--label-inline>div:last-child {
    font-weight: 700
}

.cta-box {
    box-shadow: 0 10px 19px 10px rgba(0,0,0,.1);
    overflow: hidden;
    overflow-wrap: break-word;
    padding: 22px
}

.cta-box h4 {
    color: #21578a;
    font-size: 1rem;
    letter-spacing: -.025rem;
    margin-bottom: .5rem
}

@media (min-width: 992px) {
    .cta-box h4 {
        font-size:1.2rem;
        line-height: 113%
    }
}

.cta-box p {
    font-size: .833rem
}

@media (min-width: 768px) {
    .cta-box p {
        font-size:1rem;
        line-height: 135%
    }
}

.cta-box ul {
    font-size: .833rem;
    font-weight: 600;
    list-style: none outside none;
    padding: 0
}

details {
    border-bottom: 1px solid #d9d9d9;
    margin-top: 1.667rem
}

details[open]>summary:before {
    content: "-"
}

summary {
    background: none;
    border: 0;
    color: #000;
    cursor: pointer;
    font-size: 1.166666667rem;
    font-weight: 700;
    line-height: 24px;
    outline: none;
    padding: 0;
    position: relative;
    text-align: left;
    transition: all .2s ease-in;
    width: 100%
}

.bg-dark summary,.bg-primary summary {
    color: currentColor
}

summary:focus {
    outline: none
}

summary:hover {
    color: #21578a
}

summary:before {
    background-color: #215781;
    border-radius: 50%;
    color: #fff;
    content: "+";
    display: block;
    font-size: 26px;
    font-weight: 300;
    height: 30px;
    line-height: 30px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 30px
}

.open summary:before,summary[aria-expanded=true]:before {
    content: "-"
}

summary::-webkit-details-marker {
    display: none
}

.details-wrapper {
    font-size: .889rem;
    margin-top: 1.333rem;
    overflow: hidden
}

.divider-narrow {
    max-width: 65%
}

.document-view-item {
    display: flex;
    flex-direction: column
}

@media (min-width: 768px) {
    .document-view-item {
        align-items:center;
        flex-direction: row
    }
}

.document-view-item+.document-view-item {
    margin-top: 1rem
}

@media (min-width: 768px) {
    .document-view-item+.document-view-item {
        margin-top:.5rem
    }
}

.document-view-item .file-languages-wrapper {
    align-items: center;
    display: flex;
    margin-top: .5rem
}

@media (min-width: 768px) {
    .document-view-item .file-languages-wrapper {
        margin-left:1rem;
        margin-top: 0
    }
}

.document-view-item .file-languages-wrapper .file-link {
    margin-right: .5rem
}

.dynamic-tile {
    display: flex;
    flex-direction: flex-start;
    height: 100%;
    justify-content: center;
    opacity: 1;
    padding: 42px 20px 20px;
    position: relative;
    text-align: center;
    width: 100%
}

.dynamic-tile:hover {
    text-decoration: none
}

.dynamic-tile:hover .dynamic-tile__links {
    text-decoration: underline
}

.dynamic-tile .dynamic-tile__container {
    width: 100%
}

.dynamic-tile .dynamic-tile__image {
    margin-bottom: 14px
}

.dynamic-tile .dynamic-tile__title {
    color: #444;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 14px
}

.dynamic-tile .dynamic-tile__text {
    color: #414141;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 18px
}

.dynamic-tile .dynamic-tile__links {
    color: #21578a;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 30px
}

.dynamic-tile .dynamic-tile__mobile-link,.dynamic-tile[data-extlink]:after {
    display: none
}

.dynamic-tile.ext .dynamic-tile__links:after {
    color: #21578a;
    content: "\f08e";
    font-family: FontAwesome;
    font-size: 80%;
    line-height: 1;
    margin-left: .5ch;
    position: relative;
    text-decoration: none
}

@media (max-width: 767.98px) {
    .dynamic-tile .dynamic-tile__image {
        width:20%
    }

    .dynamic-tile .dynamic-tile__links {
        padding-left: 20px;
        text-align: left;
        width: 80%
    }

    .dynamic-tile .dynamic-tile__mobile-link {
        display: initial
    }

    .dynamic-tile .dynamic-tile__desktop-link,.dynamic-tile .dynamic-tile__text,.dynamic-tile .dynamic-tile__title {
        display: none
    }

    .dynamic-tile .dynamic-tile__image,.dynamic-tile .dynamic-tile__links,.dynamic-tile .dynamic-tile__text,.dynamic-tile .dynamic-tile__title {
        margin-bottom: 0
    }
}

body .container .tiles .tile.dynamic {
    border-left: 1px solid transparent;
    border-top: solid transparent;
    border-width: 1px
}

body .container .tiles .tile.dynamic:hover {
    border: 1px solid #717b2d
}

.tiles[data-layout="2"] .tile:last-child,.tiles[data-layout="2"] .tile:nth-child(2n),.tiles[data-layout="3"] .tile:last-child,.tiles[data-layout="3"] .tile:nth-child(3n),.tiles[data-layout="4"] .tile:last-child,.tiles[data-layout="4"] .tile:nth-child(4n) {
    border-right: 1px solid transparent
}

.dynamic-tile__desktop-link {
    display: inline
}

@media (max-width: 767.98px) {
    .dynamic-tile {
        padding-top:20px
    }

    .dynamic-tile[data-extlink]:after {
        display: none
    }

    .dynamic-tile.ext .dynamic-tile__links:after {
        color: #21578a;
        content: "\f08e";
        font-family: FontAwesome;
        font-size: 80%;
        line-height: 1;
        margin-left: .5ch;
        position: relative;
        text-decoration: none
    }

    .dynamic-tile .dynamic-tile__container {
        align-content: center;
        align-items: center;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        width: 100%
    }

    .container .tiles .tile {
        min-height: unset
    }

    body .page .container .tiles .tile.dynamic:last-child:not(:hover) {
        border-bottom-width: 0
    }
}

@media (max-width: 991.98px) {
    body .page .container .tiles .tile.dynamic {
        border-left:1px solid transparent;
        border-right: 1px solid transparent;
        border-top: 1px solid transparent;
        margin-bottom: 0;
        margin-left: 0;
        padding-bottom: 0
    }

    body .page .container .tiles .tile.dynamic:hover {
        border: 1px solid #717b2d
    }

    body .page .container .tiles .tile.dynamic:not(:hover):not(:last-child) {
        border-bottom: solid #d1cdcb;
        border-width: 1px
    }
}

html body .centered-webform h4 {
    margin-top: 40px
}

html body .centered-webform .text-form__title {
    font-weight: 700;
    text-align: center
}

html body .centered-webform .webform-ajax-form-wrapper form {
    align-items: flex-start;
    display: flex;
    flex-direction: column
}

html body .centered-webform .webform-ajax-form-wrapper form [data-drupal-selector=edit-show-form] {
    border: none;
    margin: 0 auto;
    order: 1;
    width: 100%
}

html body .centered-webform .webform-ajax-form-wrapper form [data-drupal-selector=edit-show-form] .card-header {
    display: none
}

html body .centered-webform .webform-ajax-form-wrapper form [data-drupal-selector=edit-show-form] .form-item-show-form-1 {
    padding: 0;
    text-align: center
}

html body .centered-webform .webform-ajax-form-wrapper form [data-drupal-selector=edit-show-form] .form-item-show-form-1 label:after,html body .centered-webform .webform-ajax-form-wrapper form [data-drupal-selector=edit-show-form] .form-item-show-form-1 label:before {
    content: none
}

html body .centered-webform .webform-ajax-form-wrapper form [data-drupal-selector=edit-show-form] .form-item-show-form-1 label {
    background-color: #717b2d;
    border: 2px solid #717b2d;
    border-radius: 3rem;
    color: #fff;
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -.01rem;
    line-height: 1;
    padding: .778rem 1.576rem;
    position: relative;
    text-align: center;
    text-shadow: none;
    text-transform: none;
    transition: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    vertical-align: middle
}

html body .centered-webform .webform-ajax-form-wrapper form [data-drupal-selector=edit-show-form] .form-item-show-form-1 label .active,html body .centered-webform .webform-ajax-form-wrapper form [data-drupal-selector=edit-show-form] .form-item-show-form-1 label:hover {
    background-color: #414141;
    border-color: #414141;
    box-shadow: none;
    color: #fff;
    text-decoration: none
}

html body .centered-webform .webform-ajax-form-wrapper form .webform-progress {
    margin: 0 auto;
    order: 2;
    width: 100%
}

html body .centered-webform .webform-ajax-form-wrapper form .webform-progress .progress-tracker {
    margin: 30px auto
}

html body .centered-webform .webform-ajax-form-wrapper form [data-drupal-selector=edit-page-2],html body .centered-webform .webform-ajax-form-wrapper form [data-drupal-selector=edit-services] {
    order: 3
}

html body .centered-webform .webform-ajax-form-wrapper form [data-drupal-selector=edit-actions] {
    order: 4
}

html body .centered-webform .webform-ajax-form-wrapper form .webform-confirmation {
    order: 5
}

html body .centered-webform .webform-submission-form .js-form-type-radio input+label:before {
    top: 3px
}

html body .centered-webform .js-form-type-checkbox input+label {
    margin-left: 5px
}

html body .centered-webform .js-form-type-checkbox input+label:before {
    border: 1px solid #716f6f;
    border-radius: 3px;
    box-shadow: inset 1em 1em var(--form-control-color);
    content: "";
    height: 22px;
    top: 1px;
    transition: transform .12s ease-in-out;
    width: 22px
}

html body .centered-webform .js-form-type-checkbox input:checked+label:before {
    background-clip: content-box;
    background-color: transparent;
    border: 1px solid #716f6f;
    content: "";
    display: inline-block;
    height: 22px;
    padding: 3px;
    transition-duration: .3s;
    width: 22px
}

html body .centered-webform .js-form-type-checkbox input:checked+label:after {
    background-color: #717b2d;
    border-radius: 3px;
    content: "";
    left: 3px;
    padding: 8px;
    position: absolute;
    top: 4px
}

@media (min-width: 992px) {
    html body .centered-webform .card .card-body .js-webform-radios .js-form-type-radio {
        margin-left:0
    }
}

html body .centered-webform .webform-submission-form .webform-actions .form-submit {
    border: solid;
    display: inline-block;
    min-width: 100px
}

html body .centered-webform .progress-step.is-active .progress-marker:before,html body .centered-webform .webform-progress-tracker .progress-step .is-active:hover .progress-marker:before,html body .centered-webform .webform-progress-tracker .progress-step .progress-marker:after,html body .centered-webform .webform-progress-tracker .progress-step:hover .progress-marker:before,html body .centered-webform .webform-progress-tracker .progress-step:not(.is-active) .progress-marker:before {
    background-color: #21578a;
    padding-top: 3px
}

html body .centered-webform .webform-flex--container>.form-item.webform-element--title-inline>input:not([type=checkbox]) {
    width: 100%
}

.view-events {
    background-color: #f4f3f1
}

.event--full .event__header {
    background-color: #f4f3f1;
    margin-bottom: 40px;
    padding: 40px
}

.event--full .hub-article {
    background: transparent
}

.event--full .event--full_dateinfo {
    border-left: 3px solid #eee;
    font-weight: 700;
    padding-left: 20px
}

.event--full .event--full_dateinfo event-date {
    font-size: 22px
}

.event--full .event--full_address {
    text-decoration: underline
}

.event--full .event--full_address br {
    content: ""
}

.event--full .event--full__back-button {
    margin-top: 50px
}

.event--list {
    margin-bottom: 40px
}

.event--list .event--list__date_wrapper {
    background-color: #21578a;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 20px
}

.event--list .event--list__date {
    color: #fff;
    font-size: 24px;
    font-weight: 700
}

.event--list .event--list__content_wrapper {
    background-color: #fff;
    padding: 20px
}

.box-image-text {
    overflow-x: hidden;
    position: relative;
    width: 100%
}

.box-image-text.background-light-grey {
    background: #f4f3f1
}

.image__form {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap
}

@media (max-width: 767.98px) {
    .image__form {
        display:block
    }
}

@media (min-width: 992px) {
    .image__form {
        align-items:center
    }
}

.image__form .half {
    flex: 0 0 50%;
    max-width: 50%
}

@media (max-width: 767.98px) {
    .image__form .half {
        max-width:100%
    }

    .image__form .half .media--image svg {
        height: auto;
        width: 100%
    }
}

.image__form.image-left {
    margin-left: -20px;
    margin-right: -20px
}

@media (min-width: 768px) {
    .image__form.image-left {
        margin-right:0
    }
}

@media (min-width: 992px) {
    .image__form.image-left {
        margin-left:0
    }
}

.image__form.image-left .image {
    background: 50%;
    background-size: cover;
    float: right
}

@media (min-width: 768px) {
    .image__form.image-left .image {
        width:100%
    }
}

@media (min-width: 992px) {
    .image__form.image-left .image {
        width:auto
    }
}

.image__form.image-left .text {
    padding: 2rem;
    text-align: center;
    width: 100%;
    word-break: break-word
}

@media (min-width: 768px) {
    .image__form.image-left .text {
        padding:2.8rem 0 2.8rem 2.8rem;
        text-align: left
    }
}

@media (min-width: 992px) {
    .image__form.image-left .text {
        padding:2rem 0 2rem 4rem
    }
}

.image__form.form-left {
    flex-direction: row-reverse;
    margin-left: -20px;
    margin-right: -20px
}

.image__form.form-left .image {
    float: left
}

@media (max-width: 1199.98px) {
    .image__form.form-left .text {
        padding-left:2rem
    }
}

@media (max-width: 991.98px) {
    .image__form.form-left .text {
        padding-right:2rem
    }
}

.image__form .image {
    background-repeat: no-repeat;
    background-size: cover
}

@media (max-width: 991.98px) {
    .image__form .image {
        height:100%;
        width: 100%
    }
}

.image__form .text {
    padding-top: 60px
}

@media (max-width: 1199.98px) {
    .image__form .text {
        padding-bottom:2em;
        padding-left: 0;
        padding-right: 0
    }
}

.image__form .text h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 60px
}

@media (max-width: 991.98px) {
    .image__form .text h2 {
        font-size:43px
    }
}

@media (max-width: 767.98px) {
    .image__form .text {
        float:left;
        padding-top: 20px
    }
}

.image__form img {
    max-height: 950px
}

@media (max-width: 991.98px) {
    .image__form img {
        height:100%;
        width: auto
    }
}

@media (max-width: 767.98px) {
    .image__form img {
        height:100%;
        width: 100%
    }
}

.image__form .webform-submission-form .form-group {
    margin-bottom: 1.1rem
}

.image__form .webform-submission-form .custom-select,.image__form .webform-submission-form .form-control,.image__form .webform-submission-form .form-select {
    border-radius: 0;
    height: 40px;
    padding-left: 0;
    padding-right: 0
}

.image__form .webform-submission-form .form-select {
    background: inherit;
    border: none;
    border-bottom: 1px solid #9f9f9e;
    color: #495057;
    text-align: left;
    width: 100%!important
}

.image__form .webform-submission-form .form-control {
    background: inherit;
    border: none;
    border-bottom: 1px solid #9f9f9e;
    border-radius: 0;
    box-shadow: none;
    color: #414141
}

.image__form .webform-submission-form .js-form-type-select {
    position: relative
}

.image__form .webform-submission-form .js-form-type-select:after {
    border-color: #414141 transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0;
    content: "";
    position: absolute;
    right: 5px;
    top: 40%
}

.image__form .webform-submission-form .js-form-type-radio {
    margin: 0;
    padding-left: 1.8rem;
    position: relative
}

.image__form .webform-submission-form .js-form-type-radio+.js-form-type-radio {
    margin-left: 1rem
}

@media (min-width: 992px) {
    .image__form .webform-submission-form .js-form-type-radio+.js-form-type-radio {
        margin-left:.5rem
    }
}

.image__form .webform-submission-form .js-form-type-radio input {
    display: none
}

.image__form .webform-submission-form .js-form-type-radio input+label {
    align-items: center;
    display: flex
}

.image__form .webform-submission-form .js-form-type-radio input+label:before {
    background: #fff;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #969696;
    content: "";
    height: 20px;
    left: 0;
    position: absolute;
    width: 20px
}

.image__form .webform-submission-form .js-form-type-radio input:checked+label:before {
    background: #717b2d
}

.image__form .webform-submission-form .form-actions {
    margin-top: 30px
}

.image__form .webform-submission-form .form-submit {
    border: none;
    border-radius: 25px;
    box-shadow: none;
    min-width: 180px
}

@media (min-width: 768px) {
    .image__form .webform-submission-form .form-submit {
        min-width:220px
    }
}

.image__form .webform-submission-form .select2 .select2-selection--single {
    background: inherit;
    border: none;
    border-bottom: 1px solid #9f9f9e;
    border-radius: 0;
    height: 32px;
    text-align: left
}

@media (min-width: 768px) {
    .image__form .webform-submission-form .select2 .select2-selection--single {
        margin-top:10px
    }
}

.image__form .webform-submission-form .select2 .select2-selection__arrow {
    display: none
}

.image__form .webform-submission-form .group__container {
    display: block;
    flex-wrap: wrap;
    justify-content: space-between
}

@media (min-width: 768px) {
    .image__form .webform-submission-form .group__container {
        display:flex
    }
}

.image__form .webform-submission-form .group__container>div {
    width: 100%
}

@media (min-width: 992px) {
    .image__form .webform-submission-form .group__container>div {
        display:inline-flex;
        width: 47%
    }
}

.image__form .webform-submission-form .webform-has-field-prefix {
    display: flex;
    flex-direction: column;
    justify-content: center
}

@media (min-width: 1200px) {
    .image__form .webform-submission-form .webform-has-field-prefix {
        align-items:flex-start;
        flex-direction: column;
        justify-content: space-between
    }
}

.image__form .webform-submission-form .webform-has-field-prefix .field-prefix {
    margin-bottom: .875rem
}

@media (min-width: 1200px) {
    .image__form .webform-submission-form .webform-has-field-prefix .field-prefix {
        line-height:1;
        margin-right: 1rem
    }
}

.search-form {
    display: flex
}

.search-form>.form-item {
    flex: 1;
    margin-bottom: 0
}

.search-form>.form-item>label {
    display: none
}

.search-form .form-control,.search-form .form-submit {
    font-size: .833rem;
    height: 40px;
    line-height: 1.178rem
}

@media (min-width: 768px) {
    .search-form .form-control,.search-form .form-submit {
        height:50px
    }
}

.search-form .form-control {
    border: 1px solid #ced4da;
    border-radius: 3rem 0 0 3rem;
    font-weight: 400;
    padding: .5rem 1.5rem
}

.search-form .form-control:focus {
    box-shadow: none;
    outline: none
}

@media (min-width: 768px) {
    .search-form .form-control {
        font-size:1.15rem;
        padding: .85rem 1.5rem
    }
}

.search-form .form-submit {
    border: 0;
    border-radius: 0 3rem 3rem 0;
    letter-spacing: .05rem;
    padding: .5rem 1.3rem
}

@media (min-width: 768px) {
    .search-form .form-submit {
        padding:.85rem 1.5rem
    }
}

.search-form .form-submit:focus,.search-form .form-submit:hover {
    background-color: #21578a;
    color: #fff
}

.text__form h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 60px
}

@media (max-width: 991.98px) {
    .text__form h2 {
        font-size:43px
    }
}

.text__form .webform-submission-form .form-group {
    margin-bottom: 1.1rem
}

.text__form .webform-submission-form .custom-select,.text__form .webform-submission-form .form-control,.text__form .webform-submission-form .form-select {
    border-radius: 0;
    height: 40px;
    padding-left: 0;
    padding-right: 0
}

.text__form .webform-submission-form .form-select {
    background: inherit;
    border: none;
    border-bottom: 1px solid #9f9f9e;
    color: #495057
}

.text__form .webform-submission-form .form-control {
    background: inherit;
    border: none;
    border-bottom: 1px solid #9f9f9e;
    border-radius: 0;
    box-shadow: none;
    color: #414141;
    height: auto
}

.text__form .webform-submission-form .js-form-type-select {
    position: relative
}

.text__form .webform-submission-form .js-form-type-select:after {
    border-color: #414141 transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0;
    content: "";
    position: absolute;
    right: 5px;
    top: 40%
}

.text__form .webform-submission-form .js-form-type-radio {
    margin: 0;
    padding-left: 1.8rem;
    position: relative
}

.text__form .webform-submission-form .js-form-type-radio+.js-form-type-radio {
    margin-left: 1rem
}

@media (min-width: 992px) {
    .text__form .webform-submission-form .js-form-type-radio+.js-form-type-radio {
        margin-left:.5rem
    }
}

.text__form .webform-submission-form .js-form-type-radio input {
    display: none
}

.text__form .webform-submission-form .js-form-type-radio input+label {
    align-items: center;
    display: flex
}

.text__form .webform-submission-form .js-form-type-radio input+label:before {
    background: #fff;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #969696;
    content: "";
    height: 20px;
    left: 0;
    position: absolute;
    width: 20px
}

.text__form .webform-submission-form .js-form-type-radio input:checked+label:before {
    background: #717b2d
}

.text__form .webform-submission-form .form-actions {
    margin-top: 30px
}

.text__form .webform-submission-form .form-submit {
    border: none;
    border-radius: 25px;
    box-shadow: none;
    min-width: 180px
}

@media (min-width: 768px) {
    .text__form .webform-submission-form .form-submit {
        min-width:220px
    }
}

.text__form .webform-submission-form .select2 .select2-selection--single {
    background: inherit;
    border: none;
    border-bottom: 1px solid #9f9f9e;
    border-radius: 0;
    height: 32px;
    text-align: left
}

@media (min-width: 768px) {
    .text__form .webform-submission-form .select2 .select2-selection--single {
        margin-top:10px
    }
}

.text__form .webform-submission-form .select2 .select2-selection__arrow {
    display: none
}

.text__form .webform-submission-form .group__container {
    display: block;
    flex-wrap: wrap;
    justify-content: space-between
}

@media (min-width: 768px) {
    .text__form .webform-submission-form .group__container {
        display:flex
    }
}

.text__form .webform-submission-form .group__container>div {
    width: 100%
}

@media (min-width: 992px) {
    .text__form .webform-submission-form .group__container>div {
        display:inline-flex;
        width: 47%
    }
}

.text__form .webform-submission-form .webform-has-field-prefix {
    display: flex;
    flex-direction: column;
    justify-content: center
}

@media (min-width: 1200px) {
    .text__form .webform-submission-form .webform-has-field-prefix {
        align-items:center;
        flex-direction: row;
        justify-content: space-between
    }
}

.text__form .webform-submission-form .webform-has-field-prefix .field-prefix {
    margin-bottom: .875rem
}

@media (min-width: 1200px) {
    .text__form .webform-submission-form .webform-has-field-prefix .field-prefix {
        line-height:1;
        margin-bottom: 0;
        margin-right: 1rem
    }
}

.view-glossary #edit-submit-glossary {
    margin-bottom: 0
}

.view-glossary .header .container {
    padding-bottom: .833rem
}

.view-glossary .header .container .text-formatted {
    color: #000
}

.view-glossary .glossary-content h3 {
    display: none;
    flex: 0 0 100%;
    font-size: 2.1rem;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
    max-width: 100%;
    text-align: center
}

.view-glossary .glossary-content .views-row .glossary-title {
    display: block;
    float: left;
    margin-right: 5px
}

.view-glossary .glossary-content .views-row p a+a {
    display: none
}

.view-glossary .views-element-container {
    text-align: center
}

.view-glossary .views-element-container .glossary-attachment {
    border-color: #717b2d;
    border-style: solid;
    border-width: 1px 0;
    display: inline-block
}

.view-glossary .views-element-container .glossary-attachment span {
    font-size: 20px;
    padding-left: 10px;
    padding-right: 10px
}

.view-glossary .views-element-container .glossary-attachment span a.is-active {
    color: #12304c;
    text-decoration: underline
}

.view-glossary .views-element-container .glossary-attachment .more-link {
    background-color: #717b2d;
    border: 2px solid #717b2d;
    border-radius: 20px;
    display: inline-block;
    padding: 2px 15px;
    text-decoration: none
}

.view-glossary .views-element-container .glossary-attachment .more-link:hover {
    background: #000;
    border: 2px solid #000
}

.view-glossary .views-element-container .glossary-attachment .more-link a {
    color: #fff
}

.view-glossary .views-element-container .glossary-attachment .more-link a:hover {
    text-decoration: none
}

.view-glossary .views-exposed-form {
    align-items: flex-end;
    display: flex
}

.view-glossary .views-exposed-form .form-group {
    flex-grow: 1;
    margin-bottom: 0
}

.view-glossary .views-exposed-form .form-group .form-control {
    border: 1px solid #000;
    border-radius: 30px 0 0 30px;
    border-right-width: 0;
    height: calc(2em + .75rem + 2px);
    padding: .375rem .75rem .375rem 1.5rem
}

.view-glossary .views-exposed-form .form-actions input {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    height: 52px
}

.header {
    background-color: #fff
}

.header .container {
    padding-bottom: 2.444rem;
    padding-top: .833rem;
    position: relative
}

.header__image--large {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    height: 100%;
    position: absolute;
    right: 15px;
    top: 0;
    width: 23.333rem
}

.blue-header {
    background: linear-gradient(90deg,#1879b1 0,#21578a)
}

.blue-header a,.blue-header h1 {
    color: #fff
}

.blue-header .white-white {
    background-color: transparent;
    border-color: #fff;
    color: #fff
}

.blue-header .white-white:hover {
    background-color: #fff;
    border-color: #fff;
    color: #717b2d
}

.bg-light .header__form-wrapper form {
    display: block
}

.bg-light .header__form-wrapper form .form-item {
    max-width: 100%;
    width: 100%
}

.bg-light .header__form-wrapper form .form-submit {
    border: 0 #fff;
    border-radius: 0 54px 54px 0;
    cursor: pointer;
    display: block;
    font-size: 16.002px;
    font-weight: 700;
    height: 53.9688px;
    letter-spacing: .05rem;
    line-height: 23.004px;
    margin: 0;
    padding: 14.994px 30.006px;
    position: absolute;
    right: 1px;
    text-align: center;
    top: 1px;
    width: 115.453px;
    z-index: 50
}

.bg-light .header__form-wrapper form.views-exposed-form .form-control[type=text] {
    background-color: #fff;
    border: 1px solid #cdcdcd;
    border-radius: 56px;
    color: #414141;
    cursor: text;
    display: block;
    font-size: 19.998px;
    font-weight: 400;
    height: 56px;
    letter-spacing: normal;
    line-height: 23.004px;
    margin: 0;
    max-width: none;
    padding-bottom: 14.994px;
    padding-left: 30.006px;
    padding-right: 8.556rem!important;
    padding-top: 14.994px;
    width: 100%
}

.bg-light .header__form-wrapper form.views-exposed-form .form-control[type=text]::-moz-placeholder {
    color: #6c757d
}

.bg-light .header__form-wrapper form.views-exposed-form .form-control[type=text]::placeholder {
    color: #6c757d
}

.header__form-wrapper form {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    z-index: 1
}

@media (min-width: 576px) {
    .header__form-wrapper form {
        justify-content:flex-start
    }
}

@media (min-width: 768px) {
    .header__form-wrapper form .group__container {
        display:flex;
        flex-wrap: wrap;
        justify-content: space-between
    }

    .header__form-wrapper form .group__container>.form-item {
        width: 48%
    }
}

.header__form-wrapper form .form-item {
    width: 48%
}

@media (min-width: 576px) {
    .header__form-wrapper form .form-item {
        margin-right:1.5rem;
        width: 150px
    }
}

@media (min-width: 992px) {
    .header__form-wrapper form .form-item {
        margin-bottom:0;
        width: 140px
    }
}

@media (min-width: 1200px) {
    .header__form-wrapper form .form-item {
        width:160px
    }
}

.header__form-wrapper form label {
    color: #fff;
    font-size: .833rem;
    margin-bottom: 0
}

@media (min-width: 768px) {
    .header__form-wrapper form label {
        font-size:1rem
    }
}

.header__form-wrapper form .custom-select,.header__form-wrapper form .form-control {
    background: none;
    border-color: hsla(0,0%,100%,.33);
    border-radius: 0;
    border-width: 0 0 1px;
    color: #fff;
    font-size: .833rem;
    font-weight: 300;
    padding-left: 0;
    padding-right: 0
}

@media (min-width: 768px) {
    .header__form-wrapper form .custom-select,.header__form-wrapper form .form-control {
        font-size:1rem
    }
}

.header__form-wrapper form .custom-select::-moz-placeholder,.header__form-wrapper form .form-control::-moz-placeholder {
    color: #fff
}

.header__form-wrapper form .custom-select::placeholder,.header__form-wrapper form .form-control::placeholder {
    color: #fff
}

.header__form-wrapper form .custom-select:focus,.header__form-wrapper form .form-control:focus {
    box-shadow: none;
    outline: none
}

.header__form-wrapper form .custom-select.form-textarea,.header__form-wrapper form .form-control.form-textarea {
    border-width: 1px;
    padding: .5rem
}

.header__form-wrapper form .custom-select.chosen-container .chosen-single,.header__form-wrapper form .form-control.chosen-container .chosen-single {
    color: #fff
}

.header__form-wrapper form .custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.header__form-wrapper form .js-form-type-select {
    position: relative;
    z-index: 0
}

.header__form-wrapper form .js-form-type-select select {
    cursor: pointer
}

.header__form-wrapper form .js-form-type-select:after {
    border-color: hsla(0,0%,100%,.7) transparent transparent;
    border-style: solid;
    border-width: 4px 3px 0;
    bottom: 18px;
    content: "";
    position: absolute;
    right: 5px;
    z-index: -1
}

@media (min-width: 768px) {
    .header__form-wrapper form .js-form-type-select:after {
        border-width:5px 4px 0
    }
}

.header__form-wrapper form .form-actions {
    margin-top: 1rem;
    width: 100%;
    z-index: -1
}

@media (min-width: 992px) {
    .header__form-wrapper form .form-actions {
        margin-top:0;
        width: auto
    }
}

.header__form-wrapper form .form-submit {
    font-size: .833rem;
    min-width: 160px
}

@media (min-width: 992px) {
    .header__form-wrapper form .form-submit {
        font-size:1rem
    }
}

.header__form-wrapper form.views-exposed-form .custom-select,.header__form-wrapper form.views-exposed-form .form-control {
    color: hsla(0,0%,100%,.7);
    font-size: .833rem
}

@media (min-width: 768px) {
    .header__form-wrapper form.views-exposed-form .custom-select,.header__form-wrapper form.views-exposed-form .form-control {
        font-size:.875rem
    }
}

.header__form-wrapper form.views-exposed-form .custom-select option,.header__form-wrapper form.views-exposed-form .form-control option {
    color: #212529
}

.header__form-wrapper--inline form .form-item {
    align-items: center;
    display: flex;
    justify-content: space-between;
    max-width: 270px;
    width: 100%
}

@media (min-width: 768px) {
    .header__form-wrapper--inline form .form-item {
        width:30%
    }
}

@media (min-width: 992px) {
    .header__form-wrapper--inline form .form-item {
        width:25%
    }
}

.header__form-wrapper--inline form .form-item label {
    margin-right: 1rem
}

.header__form-wrapper--inline form .form-item .form-control,.header__form-wrapper--inline form .form-item .form-select {
    flex: 1;
    max-width: 200px
}

.header__form-wrapper--inline form .form-actions {
    width: 100%
}

@media (min-width: 992px) {
    .header__form-wrapper--inline form .form-actions {
        margin-top:1rem
    }
}

@media (min-width: 1200px) {
    .header__form-wrapper--inline form .form-actions {
        margin-left:1.5rem;
        margin-top: 0;
        width: auto
    }
}

.superheader {
    background-color: #f4f3f1;
    font-size: 16px
}

.superheader .block--superheaderspanishlink {
    margin-right: 20px
}

.superheader .superheader__phone {
    font-weight: 400;
    margin-left: 0;
    margin-right: 0
}

.superheader .superheader__translate {
    margin: 0
}

.superheader .superheader__translate-globe {
    fill: #444;
    margin: 0 5px 2px 0;
    text-decoration: none;
    width: 16px
}

.superheader a,.superheader a * {
    color: #414141
}

.superheader a:hover {
    color: #21578a
}

.superheader p {
    margin: 0
}

.superheader .superheader__translate:hover .superheader__translate-globe {
    fill: #21578a
}

.superheader .superheader__home-link :first-child a {
    background-color: #e9e8e6;
    display: inline-block;
    line-height: 20px;
    margin-left: 0;
    max-width: 205px;
    padding: 20px 30px
}

.superheader .superheader__utility a {
    font-weight: 400
}

.superheader .superheader__utility a.ext:after {
    display: none
}

.superheader .superheader__utility>div {
    display: inline-block;
    margin: 0
}

.superheader .superheader__utility>div:first-child p a[href]:not([href^="tel:"]) {
    font-weight: 700;
    margin-right: 40px
}

.superheader .superheader__utility>div:nth-child(2) {
    display: contents
}

.superheader .superheader__utility>div:nth-child(3) div {
    display: inline-block
}

.superheader .superheader__utility>div:nth-child(3) a {
    font-weight: 700
}

@media (max-width: 991.98px) {
    .superheader {
        display:none
    }
}

.superheader__languages ul li a {
    padding-left: 28px;
    position: relative
}


.superheader__languages ul li a:hover:before {
    filter: brightness(0) saturate(100%) invert(29%) sepia(18%) saturate(2103%) hue-rotate(168deg) brightness(97%) contrast(91%)
}

.superheader__languages ul li.is-active {
    display: none
}

.image-text {
    overflow-x: clip;
    position: relative;
    width: 100%
}

.image-text .text-white h2 {
    color: #fff
}

.image-text .image-text__wrapper {
    min-height: 477px
}

@media (max-width: 767.98px) {
    .image-text .half {
        flex:0 0 100%;
        margin-left: 0;
        max-width: 100%
    }

    .image-text .half .media--image svg {
        height: auto;
        width: 100%
    }
}

@media (min-width: 768px) {
    .image-text .half {
        flex:0 0 50%;
        max-width: 50%
    }
}

@media (max-width: 767.98px) {
    .image-text .half .text {
        padding-left:0;
        padding-right: 0
    }
}

@media (max-width: 991.98px) {
    .image-text .half:first-child {
        flex:0 0 calc(50% + 20px);
        margin-left: -20px;
        max-width: calc(50% + 20px)
    }
}

@media (max-width: 767.98px) {
    .image-text .half:first-child {
        flex:0 0 100%;
        margin-left: 0;
        max-width: 100%
    }
}

.image-text .image {
    float: right
}

@media (max-width: 991.98px) {
    .image-text .image {
        background-position:50%;
        background-repeat: no-repeat;
        background-size: cover;
        display: block;
        height: 100%;
        width: 100%
    }
}

@media (max-width: 767.98px) {
    .image-text .image {
        display:block;
        height: auto;
        margin-left: -20px;
        margin-right: -20px;
        width: auto
    }

    .image-text .image img {
        width: 100%
    }
}

.image-text .text {
    padding-left: 3.889rem
}

@media (max-width: 1199.98px) {
    .image-text .text {
        padding:2rem 0 2rem 2rem
    }
}

@media (max-width: 991.98px) {
    .image-text .text {
        padding:3rem 0 3rem 3rem
    }
}

@media (max-width: 767.98px) {
    .image-text .text {
        padding:2rem 3rem
    }
}

@media (max-width: 575.98px) {
    .image-text .text {
        padding:2rem 1.5rem
    }
}

@media (min-width: 768px) {
    .image-text.text-left .half:first-child {
        margin-left:0;
        margin-right: -20px
    }
}

.image-text.text-left .image {
    float: left
}

@media (max-width: 767.98px) {
    .image-text.text-left .image {
        margin-left:-20px
    }
}

.image-text.text-left .text {
    padding-left: 0;
    padding-right: 3.889rem
}

@media (max-width: 1199.98px) {
    .image-text.text-left .text {
        padding-left:0;
        padding-right: 2rem
    }
}

@media (max-width: 991.98px) {
    .image-text.text-left .text {
        padding-left:0;
        padding-right: 15%
    }
}

@media (max-width: 767.98px) {
    .image-text.text-left .text {
        padding:2rem 0
    }
}

@media (max-width: 575.98px) {
    .image-text.text-left .text {
        padding:2rem 0
    }
}

a.linked-tile {
    text-decoration: underline
}

.linked-tile {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-weight: 400;
    justify-content: center;
    line-height: 1.333rem;
    padding: 4rem;
    text-align: center;
    width: 100%
}

.linked-tile,.linked-tile svg {
    transition: all .3s ease-out
}

.linked-tile a {
    text-decoration: underline
}

.linked-tile__title {
    margin-top: 1.4rem;
    width: 100%
}

html {
    scroll-padding-top: 70px
}

@media (min-width: 576px) {
    html {
        scroll-padding-top:110px
    }
}

@media (min-width: 768px) {
    html {
        scroll-padding-top:155px
    }
}

.link-download,[data-entity-type=file],[href="https://intouch.pacificsource.com/common/"] {
    position: relative
}

.link-download:after,[data-entity-type=file]:after,[href="https://intouch.pacificsource.com/common/"]:after {
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 85% 85%;
    bottom: -1px;
    color: #21578a;
    content: "";
    display: inline-block;
    height: 1em;
    margin-left: 2px;
    position: relative;
    vertical-align: top;
    width: 1em
}

.bg-dark .link-download:after,.bg-dark [data-entity-type=file]:after,.bg-dark [href="https://intouch.pacificsource.com/common/"]:after,.bg-primary .link-download:after,.bg-primary [data-entity-type=file]:after,.bg-primary [href="https://intouch.pacificsource.com/common/"]:after {
    color: #fff
}

.link-more,[data-extlink] {
    position: relative
}

.link-more:after,[data-extlink]:after {
    color: #21578a;
    content: "\f08e";
    font-family: FontAwesome;
    font-size: 80%;
    line-height: 1;
    margin-left: .5ch;
    position: relative;
    text-decoration: none
}

.bg-dark .link-more:after,.bg-dark [data-extlink]:after,.bg-primary .link-more:after,.bg-primary [data-extlink]:after {
    color: #fff
}

[data-extlink] svg.ext {
    display: none
}

.btn.green[data-entity-type=file]:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 330 275' fill='%23fff' stroke='%23fff'%3E%3Cpath d='M154.4 204.6c.4.4.7.7 1.1 1 .2.1.3.3.5.4.2.2.4.3.7.5.2.1.4.3.6.4.2.1.4.3.6.4.2.1.4.2.7.3.2.1.4.2.7.3.2.1.4.2.7.2.2.1.5.2.7.3.2.1.4.1.7.2.2.1.5.1.7.2.3.1.5.1.8.1.2 0 .4.1.7.1.5 0 1 .1 1.5.1s1 0 1.5-.1c.2 0 .4-.1.7-.1.3 0 .5-.1.8-.1.3-.1.5-.1.7-.2.2-.1.5-.1.7-.2.2-.1.5-.2.7-.3.2-.1.4-.2.7-.2.2-.1.4-.2.7-.3.2-.1.5-.2.7-.3.2-.1.4-.2.6-.4.2-.1.4-.2.6-.4.2-.2.4-.3.7-.5.2-.1.3-.2.5-.4.4-.3.8-.6 1.1-1l48-48c5.9-5.9 5.9-15.4 0-21.2-5.9-5.9-15.4-5.9-21.2 0L180 157.8V23c0-8.3-6.7-15-15-15s-15 6.7-15 15v134.8l-22.4-22.4c-5.9-5.9-15.4-5.9-21.2 0-5.9 5.9-5.9 15.4 0 21.2l48 48z'/%3E%3Cpath d='M311 144.5c-8.3 0-15 6.7-15 15v60.8c0 11.2-9.1 20.2-20.2 20.2H54.2c-11.2 0-20.2-9.1-20.2-20.2v-60.8c0-8.3-6.7-15-15-15s-15 6.7-15 15v60.8c0 27.7 22.5 50.2 50.2 50.2h221.5c27.7 0 50.2-22.5 50.2-50.2v-60.8c.1-8.3-6.6-15-14.9-15z'/%3E%3C/svg%3E")
}

.link-download:after,[data-entity-type=file]:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 330 275' fill='%2321578a' stroke='%2321578a'%3E%3Cpath d='M154.4 204.6c.4.4.7.7 1.1 1 .2.1.3.3.5.4.2.2.4.3.7.5.2.1.4.3.6.4.2.1.4.3.6.4.2.1.4.2.7.3.2.1.4.2.7.3.2.1.4.2.7.2.2.1.5.2.7.3.2.1.4.1.7.2.2.1.5.1.7.2.3.1.5.1.8.1.2 0 .4.1.7.1.5 0 1 .1 1.5.1s1 0 1.5-.1c.2 0 .4-.1.7-.1.3 0 .5-.1.8-.1.3-.1.5-.1.7-.2.2-.1.5-.1.7-.2.2-.1.5-.2.7-.3.2-.1.4-.2.7-.2.2-.1.4-.2.7-.3.2-.1.5-.2.7-.3.2-.1.4-.2.6-.4.2-.1.4-.2.6-.4.2-.2.4-.3.7-.5.2-.1.3-.2.5-.4.4-.3.8-.6 1.1-1l48-48c5.9-5.9 5.9-15.4 0-21.2-5.9-5.9-15.4-5.9-21.2 0L180 157.8V23c0-8.3-6.7-15-15-15s-15 6.7-15 15v134.8l-22.4-22.4c-5.9-5.9-15.4-5.9-21.2 0-5.9 5.9-5.9 15.4 0 21.2l48 48z'/%3E%3Cpath d='M311 144.5c-8.3 0-15 6.7-15 15v60.8c0 11.2-9.1 20.2-20.2 20.2H54.2c-11.2 0-20.2-9.1-20.2-20.2v-60.8c0-8.3-6.7-15-15-15s-15 6.7-15 15v60.8c0 27.7 22.5 50.2 50.2 50.2h221.5c27.7 0 50.2-22.5 50.2-50.2v-60.8c.1-8.3-6.6-15-14.9-15z'/%3E%3C/svg%3E")
}

.bg-dark .link-download:after,.bg-dark [data-entity-type=file]:after,.bg-primary .link-download:after,.bg-primary [data-entity-type=file]:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 330 275' fill='%23fff' stroke='%23fff'%3E%3Cpath d='M154.4 204.6c.4.4.7.7 1.1 1 .2.1.3.3.5.4.2.2.4.3.7.5.2.1.4.3.6.4.2.1.4.3.6.4.2.1.4.2.7.3.2.1.4.2.7.3.2.1.4.2.7.2.2.1.5.2.7.3.2.1.4.1.7.2.2.1.5.1.7.2.3.1.5.1.8.1.2 0 .4.1.7.1.5 0 1 .1 1.5.1s1 0 1.5-.1c.2 0 .4-.1.7-.1.3 0 .5-.1.8-.1.3-.1.5-.1.7-.2.2-.1.5-.1.7-.2.2-.1.5-.2.7-.3.2-.1.4-.2.7-.2.2-.1.4-.2.7-.3.2-.1.5-.2.7-.3.2-.1.4-.2.6-.4.2-.1.4-.2.6-.4.2-.2.4-.3.7-.5.2-.1.3-.2.5-.4.4-.3.8-.6 1.1-1l48-48c5.9-5.9 5.9-15.4 0-21.2-5.9-5.9-15.4-5.9-21.2 0L180 157.8V23c0-8.3-6.7-15-15-15s-15 6.7-15 15v134.8l-22.4-22.4c-5.9-5.9-15.4-5.9-21.2 0-5.9 5.9-5.9 15.4 0 21.2l48 48z'/%3E%3Cpath d='M311 144.5c-8.3 0-15 6.7-15 15v60.8c0 11.2-9.1 20.2-20.2 20.2H54.2c-11.2 0-20.2-9.1-20.2-20.2v-60.8c0-8.3-6.7-15-15-15s-15 6.7-15 15v60.8c0 27.7 22.5 50.2 50.2 50.2h221.5c27.7 0 50.2-22.5 50.2-50.2v-60.8c.1-8.3-6.6-15-14.9-15z'/%3E%3C/svg%3E")
}

.footer__menu .link-download:after,.footer__menu [data-entity-type=file]:after,.link-download.mm-listitem__text:after,.nav .link-download:after,.nav [data-entity-type=file]:after,[data-entity-type=file].mm-listitem__text:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 330 275' fill='%23414141' stroke='%23414141'%3E%3Cpath d='M154.4 204.6c.4.4.7.7 1.1 1 .2.1.3.3.5.4.2.2.4.3.7.5.2.1.4.3.6.4.2.1.4.3.6.4.2.1.4.2.7.3.2.1.4.2.7.3.2.1.4.2.7.2.2.1.5.2.7.3.2.1.4.1.7.2.2.1.5.1.7.2.3.1.5.1.8.1.2 0 .4.1.7.1.5 0 1 .1 1.5.1s1 0 1.5-.1c.2 0 .4-.1.7-.1.3 0 .5-.1.8-.1.3-.1.5-.1.7-.2.2-.1.5-.1.7-.2.2-.1.5-.2.7-.3.2-.1.4-.2.7-.2.2-.1.4-.2.7-.3.2-.1.5-.2.7-.3.2-.1.4-.2.6-.4.2-.1.4-.2.6-.4.2-.2.4-.3.7-.5.2-.1.3-.2.5-.4.4-.3.8-.6 1.1-1l48-48c5.9-5.9 5.9-15.4 0-21.2-5.9-5.9-15.4-5.9-21.2 0L180 157.8V23c0-8.3-6.7-15-15-15s-15 6.7-15 15v134.8l-22.4-22.4c-5.9-5.9-15.4-5.9-21.2 0-5.9 5.9-5.9 15.4 0 21.2l48 48z'/%3E%3Cpath d='M311 144.5c-8.3 0-15 6.7-15 15v60.8c0 11.2-9.1 20.2-20.2 20.2H54.2c-11.2 0-20.2-9.1-20.2-20.2v-60.8c0-8.3-6.7-15-15-15s-15 6.7-15 15v60.8c0 27.7 22.5 50.2 50.2 50.2h221.5c27.7 0 50.2-22.5 50.2-50.2v-60.8c.1-8.3-6.6-15-14.9-15z'/%3E%3C/svg%3E")
}

.nav .link-download:hover:after,.nav [data-entity-type=file]:hover:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 330 275' fill='%2321578a' stroke='%2321578a'%3E%3Cpath d='M154.4 204.6c.4.4.7.7 1.1 1 .2.1.3.3.5.4.2.2.4.3.7.5.2.1.4.3.6.4.2.1.4.3.6.4.2.1.4.2.7.3.2.1.4.2.7.3.2.1.4.2.7.2.2.1.5.2.7.3.2.1.4.1.7.2.2.1.5.1.7.2.3.1.5.1.8.1.2 0 .4.1.7.1.5 0 1 .1 1.5.1s1 0 1.5-.1c.2 0 .4-.1.7-.1.3 0 .5-.1.8-.1.3-.1.5-.1.7-.2.2-.1.5-.1.7-.2.2-.1.5-.2.7-.3.2-.1.4-.2.7-.2.2-.1.4-.2.7-.3.2-.1.5-.2.7-.3.2-.1.4-.2.6-.4.2-.1.4-.2.6-.4.2-.2.4-.3.7-.5.2-.1.3-.2.5-.4.4-.3.8-.6 1.1-1l48-48c5.9-5.9 5.9-15.4 0-21.2-5.9-5.9-15.4-5.9-21.2 0L180 157.8V23c0-8.3-6.7-15-15-15s-15 6.7-15 15v134.8l-22.4-22.4c-5.9-5.9-15.4-5.9-21.2 0-5.9 5.9-5.9 15.4 0 21.2l48 48z'/%3E%3Cpath d='M311 144.5c-8.3 0-15 6.7-15 15v60.8c0 11.2-9.1 20.2-20.2 20.2H54.2c-11.2 0-20.2-9.1-20.2-20.2v-60.8c0-8.3-6.7-15-15-15s-15 6.7-15 15v60.8c0 27.7 22.5 50.2 50.2 50.2h221.5c27.7 0 50.2-22.5 50.2-50.2v-60.8c.1-8.3-6.6-15-14.9-15z'/%3E%3C/svg%3E")
}

.link-more:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2321578a' stroke='%2321578a'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 100% 80%;
    bottom: -.278em;
    margin-left: .25ch
}

.bg-dark .link-more:after,.bg-primary .link-more:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff' stroke='%23fff'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z' clip-rule='evenodd'/%3E%3C/svg%3E")
}

.footer__menu .link-more:after,.link-more.mm-listitem__text:after,.nav .link-more:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23414141' stroke='%23414141'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z' clip-rule='evenodd'/%3E%3C/svg%3E")
}

.nav .link-more:hover:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2321578a' stroke='%2321578a'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z' clip-rule='evenodd'/%3E%3C/svg%3E")
}

[href="https://intouch.pacificsource.com/common/"]:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16.5 15'%3E%3Cpath fill='%2321578a' d='M14.8 0H4c-.9 0-1.7.7-1.7 1.7V5H4V1.7h10.8v11.7H4V10H2.3v3.3c0 1 .8 1.7 1.7 1.7h13.4-.7 1.7-1.7V1.7c-.2-1-.9-1.7-1.9-1.7z'/%3E%3Cpath fill='%2321578a' d='M8.2 10.8V4.2l3.3 3.3z'/%3E%3Cpath fill='%2321578a' d='M-.2 6.7h10.3v1.7H-.2z'/%3E%3C/svg%3E");
    bottom: -.17em;
    content: "";
    font-family: unset;
    font-size: 100%
}

.bg-dark [href="https://intouch.pacificsource.com/common/"]:after,.bg-primary [href="https://intouch.pacificsource.com/common/"]:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16.5 15'%3E%3Cpath fill='%23fff' d='M14.8 0H4c-.9 0-1.7.7-1.7 1.7V5H4V1.7h10.8v11.7H4V10H2.3v3.3c0 1 .8 1.7 1.7 1.7h13.4-.7 1.7-1.7V1.7c-.2-1-.9-1.7-1.9-1.7z'/%3E%3Cpath fill='%23fff' d='M8.2 10.8V4.2l3.3 3.3z'/%3E%3Cpath fill='%23fff' d='M-.2 6.7h10.3v1.7H-.2z'/%3E%3C/svg%3E")
}

.dropdown [href="https://intouch.pacificsource.com/common/"]:after,.footer__menu [href="https://intouch.pacificsource.com/common/"]:after,.mm-listitem__text[href="https://intouch.pacificsource.com/common/"]:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16.5 15'%3E%3Cpath fill='%23414141' d='M14.8 0H4c-.9 0-1.7.7-1.7 1.7V5H4V1.7h10.8v11.7H4V10H2.3v3.3c0 1 .8 1.7 1.7 1.7h13.4-.7 1.7-1.7V1.7c-.2-1-.9-1.7-1.9-1.7z'/%3E%3Cpath fill='%23414141' d='M8.2 10.8V4.2l3.3 3.3z'/%3E%3Cpath fill='%23414141' d='M-.2 6.7h10.3v1.7H-.2z'/%3E%3C/svg%3E")
}

.dropdown [href="https://intouch.pacificsource.com/common/"]:hover:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16.5 15'%3E%3Cpath fill='%2321578a' d='M14.8 0H4c-.9 0-1.7.7-1.7 1.7V5H4V1.7h10.8v11.7H4V10H2.3v3.3c0 1 .8 1.7 1.7 1.7h13.4-.7 1.7-1.7V1.7c-.2-1-.9-1.7-1.9-1.7z'/%3E%3Cpath fill='%2321578a' d='M8.2 10.8V4.2l3.3 3.3z'/%3E%3Cpath fill='%2321578a' d='M-.2 6.7h10.3v1.7H-.2z'/%3E%3C/svg%3E")
}

.location--teaser {
    color: #414141;
    display: block;
    font-size: .889rem;
    height: 100%;
    letter-spacing: -.025rem;
    line-height: 1.444rem
}

.location--teaser .location__details {
    display: block;
    padding: 1.389rem 1.111rem;
    position: relative
}

.location--teaser .location__name {
    font-size: 1rem;
    line-height: 1.25
}

.block--lineofbusinessutility .btn,.block--pacificsource-lineofbusinessutility .btn {
    margin-bottom: -2px;
    margin-right: 0;
    padding-left: 28px;
    padding-right: 28px;
    white-space: nowrap
}

@media (max-width: 991.98px) {
    .block--lineofbusinessutility .btn,.block--pacificsource-lineofbusinessutility .btn {
        background:none;
        border: none;
        color: #414141;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.5;
        padding: 39px .5rem 0
    }

    .block--lineofbusinessutility .btn:hover,.block--pacificsource-lineofbusinessutility .btn:hover {
        color: #21578a
    }

    .block--lineofbusinessutility .btn:hover:before,.block--pacificsource-lineofbusinessutility .btn:hover:before {
        filter: brightness(0) saturate(100%) invert(29%) sepia(18%) saturate(2103%) hue-rotate(168deg) brightness(97%) contrast(91%)
    }


    .block--lineofbusinessutility .btn:before svg,.block--pacificsource-lineofbusinessutility .btn:before svg {
        color: #414141
    }

    .block--lineofbusinessutility .btn :hover,.block--pacificsource-lineofbusinessutility .btn :hover {
        background: none
    }

    .block--lineofbusinessutility,.block--pacificsource-lineofbusinessutility {
        bottom: 0;
        position: absolute;
        right: 80px
    }
}

@media (max-width: 991.98px) and (max-width:767.98px) {
    .block--lineofbusinessutility,.block--pacificsource-lineofbusinessutility {
        right:95px
    }
}

@media (max-width: 991.98px) {
    .block--lineofbusinessutility .superheader__languages,.block--pacificsource-lineofbusinessutility .superheader__languages {
        padding:35px .5rem 0;
        text-align: center
    }

    .block--lineofbusinessutility .superheader__languages a,.block--pacificsource-lineofbusinessutility .superheader__languages a {
        color: #414141;
        font-size: 14px;
        font-weight: 500;
        padding-left: 0;
        padding-top: 30px
    }

    .block--lineofbusinessutility .superheader__languages a:hover,.block--pacificsource-lineofbusinessutility .superheader__languages a:hover {
        color: #21578a;
        text-decoration: none
    }

    .block--lineofbusinessutility .superheader__languages a:before,.block--pacificsource-lineofbusinessutility .superheader__languages a:before {
        left: 50%;
        top: 5px;
        transform: translate(-50%)
    }
}

@media (min-width: 992px) {
    .block--lineofbusinessutility .nav-item,.block--pacificsource-lineofbusinessutility .nav-item {
        margin-bottom:2px
    }
}

.main-menu .nav-item {
    padding-right: 1.667rem
}

.main-menu .nav-item.active-trail>a {
    color: #21578a;
    font-weight: 700
}

.main-menu .nav-item:last-child {
    padding-right: 0
}

.main-menu .nav-item:last-child ul .list-inline-item:not(:last-child) {
    margin-right: 10px
}

.main-menu .nav-item:last-child ul li:last-child {
    padding-right: 0
}

.main-menu .nav-item.show .dropdown-toggle,.main-menu .nav-item.show .dropdown-toggle:hover {
    color: #21578a;
    font-weight: 700
}

.main-menu .nav-item.dropdown {
    position: unset
}

.main-menu .nav-item .dropdown-toggle {
    color: #414141;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none!important
}

.main-menu .nav-item .dropdown-toggle.active,.main-menu .nav-item .dropdown-toggle.active:hover,.main-menu .nav-item .dropdown-toggle:hover {
    color: #21578a;
    font-weight: 700
}

.main-menu .nav-item .dropdown-toggle:after {
    border-bottom: 0;
    border-left: .2em solid transparent;
    border-right: .2em solid transparent;
    border-top: .2em solid #58585a;
    content: "";
    display: inline-block;
    margin-left: .255em;
    vertical-align: .155em
}

.main-menu .nav-item .links {
    color: #21578a;
    text-decoration: none!important
}

.main-menu .nav-item .links:hover {
    color: #21578a;
    text-decoration: underline!important
}

.main-menu .nav-item .links:hover svg path {
    fill: #21578a
}

.main-menu .mega {
    background-color: #fff;
    border-radius: 0;
    border-top: 1px solid #717b2d!important;
    border: none;
    box-shadow: 0 5px 21px 0 rgba(0,0,0,.15);
    margin: 0 -20px;
    padding: 0;
    width: calc(100% + 40px)
}

.main-menu .mega:before {
    background-color: #f4f3f1;
    bottom: 0;
    content: "";
    display: block;
    height: 100%!important;
    left: 0;
    position: absolute;
    top: 0;
    width: 25%;
    z-index: -1
}

.main-menu .mega.empty:before {
    display: none
}

.main-menu .mega .first {
    background-color: #f4f3f1;
    display: block;
    padding-bottom: 30px;
    padding-top: 30px
}

.main-menu .mega .second {
    left: 25%;
    top: 0;
    width: 25%
}

.main-menu .mega .tab-content,.main-menu .mega .tab-pane {
    height: 100%
}

.main-menu .mega .nav.nav-tabs {
    border: none;
    border-right: 1px solid rgba(0,0,0,.2);
    display: block;
    height: 100%;
    padding-bottom: 30px;
    padding-top: 30px
}

.main-menu .mega .nav.nav-tabs.no-border {
    border-right: 0
}

.main-menu .mega .nav.nav-tabs.first {
    background-color: #f4f3f1;
    border-right: none!important
}

.main-menu .mega .nav.nav-tabs.first a {
    font-size: 1rem
}

.main-menu .mega .nav.nav-tabs li:first-child a {
    font-weight: 700
}

.main-menu .mega .nav.nav-tabs li a {
    color: #414141;
    display: block;
    font-size: .944rem;
    font-weight: 400;
    line-height: 120%;
    padding: .556rem 1.389rem;
    width: 100%
}

.main-menu .mega .nav.nav-tabs li a.active,.main-menu .mega .nav.nav-tabs li a.active:hover,.main-menu .mega .nav.nav-tabs li a:hover {
    background-color: #fff;
    color: #21578a;
    font-weight: 700;
    text-decoration: none!important
}

.main-menu .mega .nav.nav-tabs li a.with-icon:hover svg path {
    fill: #21578a
}

.main-menu .mega .nav.nav-tabs li a.with-icon svg {
    display: inline-block;
    height: .578rem;
    margin-left: .278rem;
    margin-top: -.122rem;
    vertical-align: middle;
    width: .689rem
}

.main-menu .mega .nav.nav-tabs li a.more {
    padding-right: 30px;
    position: relative
}

.main-menu .mega .nav.nav-tabs li a.more:after {
    border-bottom: .2em solid transparent;
    border-left: .2em solid #58585a;
    border-top: .2em solid transparent;
    content: "";
    display: inline-block;
    height: 0;
    margin-bottom: .1rem;
    margin-left: .6rem;
    position: relative;
    width: 0
}

.main-menu .mega .row {
    height: 100%;
    margin-left: 0;
    margin-right: 0
}

.main-menu .mega .dropdown-submenu.first li a {
    color: #414141;
    display: block;
    line-height: 120%;
    padding: 8px 20px;
    width: 100%
}

.main-menu .mega .dropdown-submenu.first li a.active,.main-menu .mega .dropdown-submenu.first li a.active:hover,.main-menu .mega .dropdown-submenu.first li a:hover {
    background-color: #fff;
    color: #717b2d;
    text-decoration: none!important
}

.main-menu .mega .dropdown-submenu .dropdown-toggle {
    font-weight: 400;
    position: relative
}

.main-menu .mega .dropdown-submenu .dropdown-toggle:after {
    border-bottom: .2em solid transparent;
    border-left: .2em solid #000;
    border-right: 0;
    border-top: .2em solid transparent;
    margin-top: -5px;
    position: absolute;
    right: 10px;
    top: 50%
}

.main-menu .mega [class*=col-] {
    padding-left: 0;
    padding-right: 0
}

.main-menu .mega .description-hover-div {
    border-left: 1px solid transparent;
    display: none;
    font-size: 17px;
    height: 100%;
    line-height: 22px;
    padding: 50px 40px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 22%
}

.main-menu .mega .description-hover-div h5 {
    font-size: .944rem;
    padding: .556rem 0
}

.main-menu .mega .description-hover-div .fade {
    left: 0;
    padding: 30px 20px 20px;
    position: absolute;
    text-align: left;
    top: 0;
    width: 100%
}

.mm-menu a {
    font-weight: 400
}

@media (-ms-high-contrast:none) {
    .main-menu .mega {
        width: 60vw
    }
}

@media (max-width: 767.98px) {
    .mm-menu {
        top:60px!important
    }
}

.mm-wrapper {
    overflow-x: initial
}

.mm-wrapper_opened .site-alerts-block {
    display: none
}

.mm-menu_opened {
    z-index: 2020
}

#mobile-menu-offcanvas {
    display: none
}

.mm-navbar,.mm-navbar_sticky,.mm-panel,.mm-panels {
    background-color: #fff
}

.mm-btn,.mm-listitem__btn,.mm-listitem__text {
    border-bottom: 1px solid rgba(0,0,0,.1);
    font-size: 1.1rem
}

.network-content--card {
    border: 1px solid #d1cdcb;
    border-left: 8px solid #21578a;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 15px 28px 1px rgba(0,0,0,.15);
    display: flex;
    flex-direction: column;
    min-height: 250px;
    padding: 38px;
    position: relative
}

@media (min-width: 768px) {
    .network-content--card {
        padding:45px
    }
}

.network-content--card h2 {
    font-weight: 500
}

.network-content--card h3 {
    margin: 0 0 5px
}

.network-content--full hr {
    background-color: #cfcfcf;
    margin: 2rem 0
}

.network-content--full .network-content__body,.network-content--full .network-content__map-logos-text {
    margin: 2rem 0;
    text-align: center
}

@media (min-width: 768px) {
    .network-content--full .network-content__body,.network-content--full .network-content__map-logos-text {
        margin-bottom:4rem
    }
}

.network-content--full .network-content__body h2,.network-content--full .network-content__map-logos-text h2 {
    margin-bottom: .25rem
}

.network-content--full .network-content__body p,.network-content--full .network-content__map-logos-text p {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px
}

.network-content--full .network-content__body ul,.network-content--full .network-content__map-logos-text ul {
    justify-content: center
}

.network-content--full .network-content__body p+.inline-list-with-borders,.network-content--full .network-content__map-logos-text p+.inline-list-with-borders {
    margin-top: 0
}

.network-content--full .network-content__body .inline-list-with-borders,.network-content--full .network-content__map-logos-text .inline-list-with-borders {
    flex-direction: column
}

@media (min-width: 768px) {
    .network-content--full .network-content__body .inline-list-with-borders,.network-content--full .network-content__map-logos-text .inline-list-with-borders {
        flex-direction:row
    }
}

.network-content--full .network-content__body .inline-list-with-borders li,.network-content--full .network-content__map-logos-text .inline-list-with-borders li {
    border: 0;
    margin: 0 0 1rem;
    padding: 0
}

@media (min-width: 768px) {
    .network-content--full .network-content__body .inline-list-with-borders li,.network-content--full .network-content__map-logos-text .inline-list-with-borders li {
        margin-bottom:0
    }

    .network-content--full .network-content__body .inline-list-with-borders li:not(:first-child),.network-content--full .network-content__map-logos-text .inline-list-with-borders li:not(:first-child) {
        border-left: 1px solid;
        margin: 0 0 0 1.389em;
        padding: 0 0 0 1.389em
    }

    .network-content--full .network-content__body__body,.network-content--full .network-content__map-logos-text__body {
        margin-bottom: 2rem
    }
}

.network-content--full .network-content__paragraphs section {
    padding: 0!important
}

.network-content--full .network-content__paragraphs section header {
    display: none
}

.network-content--full .network-content__map-logos {
    margin-bottom: 1rem
}

.network-content--full .network-content__map-logos>.network-content__logos,.network-content--full .network-content__map-logos>.network-content__map {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0 auto 3rem
}

.network-content--full .network-content__map-logos>.network-content__logos {
    display: grid;
    grid-template-columns: 1fr 1fr
}

@media (min-width: 768px) {
    .network-content--full .network-content__map-logos>.network-content__logos {
        grid-template-columns:1fr 1fr 1fr 1fr;
        max-width: 750px
    }
}

.network-content--full .network-content__map-logos>.network-content__logos img {
    margin: 0 1rem 2rem;
    max-height: 60px;
    max-width: 80%;
    width: auto
}

@media (min-width: 768px) {
    .network-content--full .network-content__map-logos>.network-content__logos img {
        margin-bottom:0
    }
}

.network-content--full .network-content__map-logos .row .network-content__logos img {
    margin: 0 1rem 1rem;
    max-height: 60px;
    width: auto
}

@media (min-width: 768px) {
    .network-content--full .network-content__map-logos .row .network-content__logos img {
        max-height:40px
    }
}

@media (min-width: 992px) {
    .network-content--full .network-content__map-logos .row .network-content__logos img {
        max-height:60px
    }
}

.network-content--full .network-content__links a {
    padding-left: .667rem;
    padding-right: .667rem
}

@media (min-width: 576px) {
    .network-content--full .network-content__links a {
        padding-left:1.667rem;
        padding-right: 1.667rem
    }
}

.network-content--full .network-content__links a:not(:first-child) {
    position: relative
}

.network-content--full .network-content__links a:not(:first-child):before {
    background-color: #5a5a5a;
    content: "";
    height: 15px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px
}

.network-content--full .network-content__footer {
    margin: 0 auto 2rem;
    max-width: 700px;
    text-align: center
}

.network-content--full .network-content__footer h3 {
    margin: 0 0 .25rem
}

.network-content--full .btn:hover {
    color: #fff
}

.swap-sibling-img img:first-of-type,.swap-sibling-img:hover img:last-of-type {
    display: none
}

.swap-sibling-img:hover img:first-of-type {
    display: block
}

.footer__first {
    border-top: 3px solid #717b2d;
    color: #414141;
    font-size: .778rem;
    line-height: 1rem;
    padding-top: 2.5rem
}

@media (min-width: 768px) {
    .footer__first {
        padding-top:3.333rem
    }
}

.footer__first a {
    color: #414141;
    font-weight: 400
}

@media (max-width: 767.98px) {
    .footer__first .footer__menu.row>.footer__menu-item {
        flex:0 0 50%;
        max-width: 50%
    }
}

.footer__first .footer__menu.row>.col-custom-5 {
    border-right: 1px solid #ccc;
    width: 20%
}

@media (max-width: 767.98px) {
    .footer__first .footer__menu.row>.col-custom-5 {
        margin-bottom:20px
    }

    .footer__first .footer__menu.row>.col-custom-5:first-child {
        display: none;
        flex: 0 0 100%;
        margin-bottom: 50px;
        max-width: 100%
    }

    .footer__first .footer__menu.row>.col-custom-5:first-child,.footer__first .footer__menu.row>.col-custom-5:nth-child(3),.footer__first .footer__menu.row>.col-custom-5:nth-child(5) {
        border-right: 0
    }
}

.footer__first .footer__menu.row>.col-custom-5 img,.footer__first .footer__menu.row>.col-custom-5 svg {
    width: 100%
}

.footer__first .footer__menu.row>.col-custom-5:last-child {
    border-right: 0
}

.footer__second .footer__bottom {
    border-top: 1px solid #d1cdcb;
    font-size: .722rem;
    letter-spacing: -.015rem;
    line-height: 1rem;
    margin-top: .611rem;
    padding-bottom: 20px;
    padding-top: 20px
}

.footer__second .footer__bottom .col-12 {
    display: flex;
    justify-content: space-between
}

@media (max-width: 767.98px) {
    .footer__second .footer__bottom .col-12 {
        flex-flow:column
    }

    .footer__second .footer__bottom .col-12 ul {
        text-align: center
    }
}

.footer__second .block--footerlogo {
    margin-bottom: 1rem;
    text-align: center
}

@media (min-width: 768px) {
    .footer__second .block--footerlogo {
        display:none
    }
}

.footer__second .social {
    margin: 5px
}

.footer__second .social img[src$=".svg"]:hover {
    filter: invert(28%) sepia(65%) saturate(627%) hue-rotate(168deg) brightness(70%) contrast(100%)
}

.footer__second .social a {
    display: inline-block;
    text-align: center;
    vertical-align: middle
}

.footer__second a {
    color: #414141;
    font-weight: 400
}

.footer__third {
    font-size: 14px;
    letter-spacing: -.1px;
    line-height: 1rem;
    margin: 1.667rem -100vm 0;
    padding: 22px;
    position: relative;
    z-index: 0
}

.footer__third p:last-child {
    padding-bottom: 1rem
}

.footer__menu-item-name {
    font-size: .941rem;
    font-weight: 500;
    line-height: 1.118rem
}

.footer-copyright {
    text-align: center
}

.sticky-up {
    bottom: 10px;
    display: none;
    font-size: 0;
    position: fixed;
    right: 10px;
    z-index: 999
}

.sticky-up.showup {
    display: block
}

.sticky-up svg:hover circle {
    fill: #717b2d
}

.sticky-up svg circle {
    fill: rgba(141,152,56,.769);
    transition: all .5s
}

.hamburger {
    background-color: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: inline-block;
    font: inherit;
    margin: 0;
    overflow: visible;
    padding: 15px;
    text-transform: none;
    transition-duration: .15s;
    transition-property: opacity,filter;
    transition-timing-function: linear
}

.hamburger:hover {
    opacity: .95
}

.hamburger.is-active:hover {
    opacity: 1
}

.hamburger.is-active .hamburger-inner,.hamburger.is-active .hamburger-inner:after,.hamburger.is-active .hamburger-inner:before {
    background-color: #21578a
}

.hamburger-box {
    display: inline-block;
    height: 25px;
    position: relative;
    width: 35px
}

.hamburger-inner {
    display: block;
    margin-top: -2px;
    top: 50%
}

.hamburger-inner,.hamburger-inner:after,.hamburger-inner:before {
    background-color: #21578a;
    border-radius: 4px;
    height: 4px;
    position: absolute;
    transition-duration: .15s;
    transition-property: transform;
    transition-timing-function: ease;
    width: 35px
}

.hamburger-inner:after,.hamburger-inner:before {
    content: "";
    display: block
}

.hamburger-inner:before {
    top: -10px
}

.hamburger-inner:after {
    bottom: -10px
}

.hamburger--3dy .hamburger-box {
    perspective: 80px
}

.hamburger--3dy .hamburger-inner {
    transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s cubic-bezier(.645,.045,.355,1) .1s
}

.hamburger--3dy .hamburger-inner:after,.hamburger--3dy .hamburger-inner:before {
    transition: transform 0s cubic-bezier(.645,.045,.355,1) .1s
}

.hamburger--3dy.is-active .hamburger-inner {
    background-color: transparent!important;
    transform: rotateX(-180deg)
}

.hamburger--3dy.is-active .hamburger-inner:before {
    transform: translate3d(0,10px,0) rotate(45deg)
}

.hamburger--3dy.is-active .hamburger-inner:after {
    transform: translate3d(0,-10px,0) rotate(-45deg)
}

.site-header {
    padding-top: .876rem
}

@media (max-width: 991.98px) {
    .site-header {
        padding:0
    }
}

@media (max-width: 767.98px) {
    .site-header {
        height:60px
    }
}

.site-header.sticky-top {
    background-color: #fff;
    transition: all .3s ease-out
}

.site-header.sticky-top.shadow {
    box-shadow: 0 5px 11px 0 rgba(0,0,0,.15);
    padding-top: .667rem
}

@media (max-width: 767.98px) {
    .site-header.sticky-top.shadow {
        padding:0
    }
}

.site-header.sticky-top.shadow .branding img {
    height: 45px
}

.site-header.sticky-top.shadow .mega-menu {
    padding-top: 11px
}

@media (min-width: 992px) {
    .site-header.sticky-top.shadow .mega-menu {
        padding-bottom:0
    }
}

@media (max-width: 991.98px) {
    .site-header.sticky-top.shadow .mega-menu {
        padding-top:0
    }
}

.site-header.sticky-top.shadow .navbar {
    padding: .633rem 0
}

@media (max-width: 767.98px) {
    .site-header .branding {
        padding-left:20px
    }
}

.site-header .branding img {
    height: 53px;
    transition: height .3s ease-out
}

@media (max-width: 991.98px) {
    .site-header .branding img {
        width:190px
    }
}

@media (max-width: 767.98px) {
    .site-header .branding img {
        width:150px
    }
}

.site-header .mega-menu {
    padding-top: 1rem
}

@media (max-width: 767.98px) {
    .site-header .mega-menu {
        padding-top:0
    }

    .site-header .container {
        padding-left: 0;
        padding-right: 0
    }
}

.site-header .navbar {
    padding: .833rem 0
}

.site-header .navbar a {
    font-weight: 500
}

@media (max-width: 767.98px) {
    .site-header .navbar {
        padding:0
    }

    .site-header .utility {
        padding-right: 80px
    }
}

@media (max-width: 575.98px) {
    .site-header .utility {
        padding-right:70px
    }
}

.site-header .utility .list-inline-item:not(:last-child) {
    margin-right: 10px;
}

.site-header .utility .search-box {
    height: 0
}

.site-header .utility .search-box.is-active {
    height: 40px
}

.site-header .utility .block--pacificsource-utility-menu ul li {
    white-space: nowrap
}

@media (max-width: 767.98px) {
    .site-header .navbar-toggler {
        padding:0;
        position: absolute;
        right: 20px;
        top: -42px
    }
}

.site-header .find-search {
    border: 1px solid #d4d5d5;
    border-radius: 2.222rem;
    color: #414141;
    display: inline-block;
    font-size: .833rem;
    font-weight: 500;
    line-height: 110%;
    padding: .556rem 1.389rem
}

.site-header .find-search a {
    font-size: 1rem;
    font-weight: 500
}

.site-header .find-search .list-inline-item {
    position: relative
}

.site-header .find-search .list-inline-item:not(:last-child) {
    margin-right: 10px
}

.site-header .find-search .list-inline-item:not(:last-child):before {
    background-color: #94a7be;
    content: "";
    display: inline-block;
    height: 13px;
    position: absolute;
    right: -8px;
    top: 2px;
    width: 1px
}

.global-alerts #ps-alerts {
    display: none;
    width: 100%;
    z-index: 999
}

.global-alerts #ps-alerts .alert-wrapper {
    background: linear-gradient(180deg,#156ca0,#156ca0 23.52%,#156ca0 48.11%,#21578a);
    box-shadow: 0 .667rem 1.5rem rgba(0,0,0,.25)
}

.global-alerts #ps-alerts .alert-wrapper .alert {
    border: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    padding: 1.389rem 1.111rem;
    position: relative
}

.global-alerts #ps-alerts .alert-wrapper .alert-icon {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    margin-right: 1.222rem
}

.global-alerts #ps-alerts .alert-wrapper .alert-icon img {
    height: 1.556rem;
    width: auto
}

.global-alerts #ps-alerts .alert-wrapper .alert-body {
    padding-right: 22px
}

.global-alerts #ps-alerts .alert-wrapper .alert-body p {
    color: #fff;
    font-size: 1.111rem;
    font-weight: 500;
    line-height: 1.556rem
}

.global-alerts #ps-alerts .alert-wrapper .alert-body a {
    color: #fff;
    text-decoration: underline
}

.global-alerts #ps-alerts .alert-wrapper .alert-close {
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    opacity: .7
}

.global-alerts #ps-alerts .alert-wrapper .alert-close:hover {
    opacity: 1
}

.plan--teaser {
    border: 1px solid #d1cdcb;
    border-left: 8px solid #21578a;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 15px 28px 1px rgba(0,0,0,.15);
    display: flex;
    flex-direction: column;
    min-height: 250px;
    position: relative
}

@media (min-width: 768px) {
    .plan--teaser {
        flex-direction:row
    }
}

.plan--teaser.gold {
    border-color: #d6b82f
}

.plan--teaser.silver {
    border-color: #cdd2d6
}

.plan--teaser.bronze {
    border-color: #e8d1b2
}

.plan--teaser .plan__title {
    padding: 15px
}

@media (min-width: 768px) {
    .plan--teaser .plan__title {
        border-bottom:0;
        border-right: 1px solid #d1cdcb;
        padding: 20px 15px;
        width: 200px
    }
}

.plan--teaser .plan__details {
    display: flex;
    flex: 1;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 0 0 30px
}

@media (min-width: 576px) {
    .plan--teaser .plan__details {
        flex-direction:row
    }
}

@media (min-width: 768px) {
    .plan--teaser .plan__details {
        padding:20px 0 30px
    }
}

@media (min-width: 576px) {
    .plan--teaser .plan__column {
        width:33%
    }
}

@media (min-width: 768px) {
    .plan--teaser .plan__column {
        width:32%
    }
}

@media (min-width: 576px) {
    .plan--teaser .plan__column:first-child {
        width:34%
    }
}

@media (min-width: 768px) {
    .plan--teaser .plan__column:first-child {
        width:36%
    }
}

@media (min-width: 992px) {
    .plan--teaser .plan__column:first-child {
        width:34%
    }
}

.plan--teaser .plan__column h5 {
    align-items: flex-end;
    border-bottom: 1px solid #d1cdcb;
    border-top: 1px solid #d1cdcb;
    display: flex;
    height: 60px;
    line-height: 1;
    margin-bottom: 0;
    padding: 10px 15px
}

@media (min-width: 768px) {
    .plan--teaser .plan__column h5 {
        border-top:0;
        padding: 0 20px 20px
    }
}

.plan--teaser .plan__link,.plan--teaser .plan__link-detail {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    padding: 0 20px;
    width: 100%
}

.plan--teaser .plan__link-detail {
    font-size: .889rem;
    letter-spacing: -.025rem;
    text-align: right
}

.plan--teaser .plan__link-detail span {
    display: block;
    text-align: center
}

.plan--teaser .plan__fields {
    font-size: .888rem;
    line-height: 21px;
    padding: 10px 20px
}

.plan--teaser .plan__fields+.plan__fields {
    border-top: 1px solid #d1cdcb
}

.plan--teaser .plan__fields span {
    display: inline-block;
    min-width: 110px
}

.plan--teaser .plan__fields p {
    max-width: 255px
}

.plan--teaser .plan__fields .file-link {
    align-items: flex-start;
    display: flex;
    flex-direction: column
}

@media (max-width: 767.98px) {
    #section-8811 .three-column__column,#section-8811 .three-column__column ul {
        margin-bottom:0!important
    }
}

.paragraph--type--promo {
    background-color: #f4f3f1;
    padding: 5.556rem 0;
    position: relative
}

@media (max-width: 1199.98px) {
    .paragraph--type--promo {
        padding:4rem 0
    }
}

@media (max-width: 991.98px) {
    .paragraph--type--promo {
        padding:3rem 0
    }
}

@media (max-width: 767.98px) {
    .paragraph--type--promo {
        padding:2rem 0
    }
}

.paragraph--type--promo:before {
    background-color: #fff;
    bottom: auto;
    content: "";
    height: 8.333rem;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1
}

.paragraph--type--promo a {
    text-decoration: underline
}

.paragraph--type--promo .video {
    display: block;
    margin-bottom: 4.167rem;
    margin-left: 2.5rem;
    margin-right: -2.5rem;
    position: relative;
    z-index: 10
}

.paragraph--type--promo .callout-wht-box {
    background-color: #fff;
    box-shadow: 0 10px 19px 10px rgba(0,0,0,.05);
    font-size: 1rem;
    line-height: 1.611rem;
    margin-left: -2rem;
    padding: 3.056rem 0 3.056rem 5.556rem;
    position: relative;
    width: 38rem;
    z-index: 10
}

@media (max-width: 1199.98px) {
    .paragraph--type--promo .callout-wht-box {
        margin-left:0;
        padding: 4rem 2.5rem;
        width: 100%
    }
}

@media (max-width: 767.98px) {
    .paragraph--type--promo .callout-wht-box {
        font-size:15px;
        padding: 2.5rem 1.5rem!important
    }
}

.paragraph--type--promo .callout-wht-box h4 {
    max-width: 20rem
}

@media (max-width: 767.98px) {
    .paragraph--type--promo .callout-wht-box h4 {
        font-size:18px
    }
}

.paragraph--type--promo .callout-wht-box .image {
    display: block;
    margin-left: -5.556rem
}

@media (max-width: 1199.98px) {
    .paragraph--type--promo .callout-wht-box .image {
        margin-left:-2.5rem
    }
}

@media (max-width: 767.98px) {
    .paragraph--type--promo .callout-wht-box .image {
        margin-left:0
    }
}

.paragraph--type--promo .text-rhs {
    padding-top: 5.556rem
}

@media (max-width: 1199.98px) {
    .paragraph--type--promo .text-rhs {
        padding-left:2rem;
        padding-top: 6.556rem
    }
}

@media (max-width: 991.98px) {
    .paragraph--type--promo .text-rhs {
        padding-top:0
    }
}

@media (max-width: 767.98px) {
    .paragraph--type--promo .text-rhs {
        font-size:15px;
        padding-left: 0;
        padding-top: 0
    }
}

.paragraph--type--promo h2 {
    color: #21578a;
    font-size: 2.111rem;
    font-weight: 700;
    letter-spacing: -.03rem;
    line-height: 115%;
    margin: 0 0 1.667rem
}

@media (max-width: 991.98px) {
    .paragraph--type--promo h2 {
        font-size:1.911rem;
        line-height: 115%
    }
}

@media (max-width: 767.98px) {
    .paragraph--type--promo h2 {
        font-size:1.611rem;
        line-height: 125%
    }
}

@media (max-width: 575.98px) {
    .paragraph--type--promo h2 {
        font-size:1.411rem;
        line-height: 125%
    }
}

.paragraph--type--promo .text {
    padding-right: 8.5rem
}

@media (max-width: 1199.98px) {
    .paragraph--type--promo .text {
        padding-right:0
    }
}

@media (max-width: 767.98px) {
    .paragraph--type--promo .text {
        padding-right:0
    }
}

.paragraph--type--promo .title {
    color: #21578a;
    font-size: 2.667rem;
    font-weight: 500;
    letter-spacing: -.095rem;
    line-height: 2.944rem
}

@media (max-width: 1199.98px) {
    .paragraph--type--promo .title {
        font-size:2.167rem;
        line-height: 2.644rem
    }
}

.paragraph--type--promo .title span {
    display: block;
    font-size: 3.167rem;
    font-weight: 300
}

@media (max-width: 1199.98px) {
    .paragraph--type--promo .title span {
        font-size:2.567rem
    }
}

.quote .text {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.35;
    padding-top: 2rem;
    position: relative;
    text-align: center
}

.quote .text:before {
    background-color: currentColor;
    content: "";
    display: block;
    height: .188rem;
    left: 50%;
    margin-left: -4rem;
    position: absolute;
    top: 0;
    width: 8rem
}

@media (min-width: 768px) {
    .quote .text:before {
        height:.288rem;
        margin-left: -5.5555rem;
        width: 11.111rem
    }
}

.quote .text strong {
    font-weight: 400
}

@media (min-width: 576px) {
    .quote .text {
        font-size:1.983334rem
    }
}

@media (min-width: 768px) {
    .quote .text {
        font-size:2.3rem
    }
}

@media (min-width: 992px) {
    .quote .text {
        font-size:2.5rem
    }
}

.rollover-tile {
    position: relative;
    width: 100%
}

.rollover-tile__front {
    color: #21578a;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    opacity: 1;
    text-align: center;
    transition: all .3s ease-out;
    visibility: visible;
    width: 100%
}

.bg-dark .rollover-tile__front,.bg-primary .rollover-tile__front {
    color: #fff
}

.rollover-tile:hover .rollover-tile__front,.rollover-tile__back {
    opacity: 0;
    visibility: hidden
}

.rollover-tile__back {
    background: linear-gradient(90deg,#1879b1 0,#21578a);
    bottom: 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-weight: 300;
    height: 100%;
    justify-content: center;
    left: 0;
    padding: 0 1.944rem;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    transition: all .3s ease-out;
    width: 100%
}

.bg-dark .rollover-tile__back,.bg-primary .rollover-tile__back {
    background: #fff;
    color: #414141
}

@media (max-width: 1199.98px) {
    .rollover-tile__back a[data-extlink]:after {
        color:#fff
    }

    .rollover-tile__back .rollover-tile__links a:not(:last-child) {
        padding-right: 28px
    }
}

.rollover-tile:hover .rollover-tile__back {
    opacity: 1;
    visibility: visible
}

.rollover-tile:hover .rollover-tile__back a {
    color: #fff
}

.bg-dark .rollover-tile:hover .rollover-tile__back a,.bg-primary .rollover-tile:hover .rollover-tile__back a {
    color: #414141
}

.rollover-tile:hover .rollover-tile__back [data-extlink]:after,.rollover-tile:hover .rollover-tile__back a svg {
    color: #fff
}

@media (max-width: 991.98px) {
    .rollover-tile__back {
        padding-left:0;
        padding-right: 0
    }
}

.rollover-tile__links a,.rollover-tile__title {
    display: inline-block;
    margin-top: 1.4rem;
    text-decoration: underline
}

.rollover-tile__links a.no-underline,.rollover-tile__title.no-underline {
    color: #414141;
    text-decoration: none
}

@media (max-width: 991.98px) {
    .tile .rollover-tile__title {
        font-size:1.35rem;
        font-weight: 700;
        text-decoration: none
    }
}

.rollover-tile__links,.rollover-tile__text {
    text-align: center
}

.rollover-tile__links.left,.rollover-tile__text.left {
    text-align: left
}

.rollover-tile__link,.rollover-tile__links a {
    color: #fff;
    font-weight: 400
}

.rollover-tile__link:not(:last-child),.rollover-tile__links a:not(:last-child) {
    margin-right: .833rem;
    padding-right: .733rem;
    position: relative
}

.rollover-tile__link:not(:last-child):before,.rollover-tile__links a:not(:last-child):before {
    background-color: #94a7be;
    content: "";
    display: inline-block;
    height: 15px;
    position: absolute;
    right: 0;
    top: 3px;
    width: 1px
}

@media (max-width: 1199.98px) {
    .rollover-tile__link:not(:last-child):before,.rollover-tile__links a:not(:last-child):before {
        width:0
    }
}

.rollover-tile__link:hover,.rollover-tile__links a:hover {
    color: #fff;
    text-decoration: underline
}

.bg-dark .rollover-tile__link,.bg-dark .rollover-tile__link:hover,.bg-dark .rollover-tile__links a,.bg-dark .rollover-tile__links a:hover,.bg-primary .rollover-tile__link,.bg-primary .rollover-tile__link:hover,.bg-primary .rollover-tile__links a,.bg-primary .rollover-tile__links a:hover {
    color: #21578a
}

@media (max-width: 575.98px) {
    .tile .rollover-tile__links a {
        display:block;
        margin: 20px auto;
        width: -moz-fit-content;
        width: fit-content
    }
}

.site-header .search-box,.superheader .search-box {
    border: 1px solid #d4d5d5;
    border-radius: 2.222rem!important;
    color: #58585a;
    display: inline-block;
    line-height: 1.1;
    margin-right: 0;
    opacity: 0;
    padding: 0;
    position: relative;
    transition: width .3s ease-out;
    visibility: hidden;
    width: 0
}

.site-header .search-box.is-active,.superheader .search-box.is-active {
    margin-right: -95px;
    opacity: 1;
    transition: width .3s ease-out;
    visibility: visible;
    width: 201px
}

.site-header .search-box .form-submit.form-control,.superheader .search-box .form-submit.form-control {
    border: none;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    z-index: 10
}

.site-header .search-box .form-search.form-control,.superheader .search-box .form-search.form-control {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-sizing: content-box;
    font-size: 16px;
    height: 40px;
    line-height: 120%;
    margin: 0;
    outline: none!important;
    padding: 0 16px;
    width: 74%
}

.site-header .search-box .form-search.form-control:focus,.superheader .search-box .form-search.form-control:focus {
    border-color: #21578a;
    box-shadow: none
}

.site-header .search-box .form-control,.site-header .search-box .form-group,.superheader .search-box .form-control,.superheader .search-box .form-group {
    background: none;
    border: unset;
    margin: unset;
    padding: unset
}

.site-header .search-box .st-default-search-input,.superheader .search-box .st-default-search-input {
    background: none!important;
    display: block;
    font-family: inherit;
    font-size: inherit
}

.site-header .trigger-search,.superheader .trigger-search {
    color: #21578a;
    font-size: 1rem;
    font-weight: 500;
    line-height: 40.5px;
    margin-right: 0;
    width: 100px
}

.site-header .trigger-search svg path,.superheader .trigger-search svg path {
    transition: all .3s ease-out
}

.site-header .trigger-search:hover,.superheader .trigger-search:hover {
    font-weight: 700;
    text-decoration: none
}

.site-header .trigger-search span,.superheader .trigger-search span {
    display: contents;
    opacity: 1;
    transition: all .3s ease-out
}

.site-header .trigger-search.is-hidden,.superheader .trigger-search.is-hidden {
    margin: 1px 15px 0 50px;
    width: 16px
}

.site-header .trigger-search.is-hidden span,.superheader .trigger-search.is-hidden span {
    display: none;
    opacity: 0;
    transition: all 10ms ease-out
}

.site-header .superheader__utility .trigger-search,.superheader .superheader__utility .trigger-search {
    margin-right: -4px;
    position: relative
}

.site-header .superheader__utility .trigger-search span,.superheader .superheader__utility .trigger-search span {
    display: none
}

.site-header .superheader__utility .trigger-search.is-hidden,.superheader .superheader__utility .trigger-search.is-hidden {
    margin-left: 0
}

.site-header .superheader__utility .search-box,.superheader .superheader__utility .search-box {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 2.222rem!important;
    color: #58585a;
    display: inline-block;
    line-height: 1.1;
    margin: 9px -45px 8px 0;
    opacity: 1;
    position: relative;
    visibility: visible;
    width: 200px
}

.site-header .superheader__utility .search-box #swiftype-search-box,.superheader .superheader__utility .search-box #swiftype-search-box {
    display: contents
}

.site-header .superheader__utility .search-box .form-submit.form-control,.superheader .superheader__utility .search-box .form-submit.form-control {
    border: none;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    z-index: 10
}

.site-header .superheader__utility .search-box .form-search.form-control,.superheader .superheader__utility .search-box .form-search.form-control {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    background-color: #fff;
    border: none;
    border-radius: 0;
    box-sizing: content-box;
    font-size: 16px;
    height: 40px;
    line-height: 205%;
    margin: 0;
    outline: none!important;
    padding: 1px 0 0 16px;
    width: 74%
}

.site-header .superheader__utility .search-box .form-search.form-control:focus,.superheader .superheader__utility .search-box .form-search.form-control:focus {
    border-color: #21578a;
    box-shadow: none
}

.site-header .block--languageswitcher,.superheader .block--languageswitcher {
    margin-left: 40px
}

.site-header .st-default-autocomplete,.superheader .st-default-autocomplete {
    display: none!important
}

.site-header .swiftype-widget .autocomplete,.superheader .swiftype-widget .autocomplete {
    overflow-wrap: break-word
}

.site-header .search-form-wrapper,.superheader .search-form-wrapper {
    min-width: 100px
}

@media (-ms-high-contrast:none) {
    .site-header .site-header .trigger-search.is-hidden,.superheader .site-header .trigger-search.is-hidden {
        position: relative;
        top: -15px
    }
}

#menu .trigger-search,.tbm .trigger-search {
    margin-left: -57px;
    position: relative
}

#menu .trigger-search:hover,.tbm .trigger-search:hover {
    text-decoration: none
}

#menu .trigger-search span,.tbm .trigger-search span {
    display: none
}

#menu .tbm-nav .search-box,.tbm .tbm-nav .search-box {
    border: 1px solid #d5d5d5;
    margin: 10px 0;
    width: 100%
}

#menu .tbm-nav .trigger-search,.tbm .tbm-nav .trigger-search {
    margin-left: -37px
}

#menu .search-box,.tbm .search-box {
    background-color: #fff;
    border: 1px solid #d5d5d5;
    border-radius: 2.222rem!important;
    color: #58585a;
    display: inline-block;
    line-height: 1.1;
    margin: 30px 20px;
    opacity: 1;
    position: relative;
    visibility: visible;
    width: calc(100% - 40px)
}

#menu .search-box #swiftype-search-box,.tbm .search-box #swiftype-search-box {
    display: contents
}

#menu .search-box .form-submit.form-control,.tbm .search-box .form-submit.form-control {
    border: none;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    z-index: 10
}

#menu .search-box .form-search.form-control,.tbm .search-box .form-search.form-control {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    background-color: #fff;
    border: none;
    border-radius: 0;
    box-sizing: content-box;
    font-size: 16px;
    height: 40px;
    line-height: 205%;
    margin: 0;
    max-width: 100%;
    outline: none!important;
    padding: 1px 0 0 16px
}

@media (max-width: 768px) {
    #menu .search-box .form-search.form-control,.tbm .search-box .form-search.form-control {
        width:91%
    }
}

@media (max-width: 412px) {
    #menu .search-box .form-search.form-control,.tbm .search-box .form-search.form-control {
        width:84%
    }
}

@media (max-width: 376px) {
    #menu .search-box .form-search.form-control,.tbm .search-box .form-search.form-control {
        width:83%
    }
}

@media (max-width: 360px) {
    #menu .search-box .form-search.form-control,.tbm .search-box .form-search.form-control {
        width:82%
    }
}

#menu .search-box .form-search.form-control:focus,.tbm .search-box .form-search.form-control:focus {
    border-color: #21578a;
    box-shadow: none
}

#menu .form-control,#menu .form-group,.tbm .form-control,.tbm .form-group {
    background: none;
    border: unset;
    margin: unset;
    padding: unset
}

#menu .st-default-search-input,.tbm .st-default-search-input {
    background: none!important;
    display: block;
    font-family: inherit;
    font-size: inherit
}

::-webkit-search-cancel-button {
    -webkit-appearance: none;
    background: linear-gradient(45deg,transparent,transparent 43%,#414141 45%,#414141 55%,transparent 57%,transparent),linear-gradient(135deg,transparent,transparent 43%,#414141 45%,#414141 55%,transparent 57%,transparent);
    height: 12px;
    margin-left: 11px;
    width: 12px
}

::-webkit-search-cancel-button:hover {
    cursor: pointer
}

.trigger-search {
    position: relative
}

.trigger-search svg {
    height: 16px;
    margin-top: -3px;
    width: 16px
}

.trigger-search.is-hidden path {
    fill: #414141
}

[class*=bg-light]+[class*=bg-light],[class*=bg-none]+[class*=bg-none],[class*=bg-primary]+[class*=bg-primary] {
    padding-top: 0!important
}

#views-exposed-form-networks-dental-plans .js-form-type-select:after,#views-exposed-form-networks-embed-networks-individual .js-form-type-select:after,#views-exposed-form-networks-embed-networks-large-group .js-form-type-select:after,#views-exposed-form-networks-embed-networks-small-group .js-form-type-select:after,#views-exposed-form-plans-employers .js-form-type-select:after,#views-exposed-form-plans-individual .js-form-type-select:after,.view-contact-contacts .views-exposed-form .js-form-type-select:after,.view-plan-search .js-form-type-select:after {
    bottom: 25px!important
}

#views-exposed-form-networks-dental-plans .js-select-hidden,#views-exposed-form-networks-embed-networks-individual .js-select-hidden,#views-exposed-form-networks-embed-networks-large-group .js-select-hidden,#views-exposed-form-networks-embed-networks-small-group .js-select-hidden,#views-exposed-form-plans-employers .js-select-hidden,#views-exposed-form-plans-individual .js-select-hidden,.view-contact-contacts .views-exposed-form .js-select-hidden,.view-plan-search .js-select-hidden {
    display: none;
    padding-right: 10px;
    visibility: hidden
}

#views-exposed-form-networks-dental-plans .js-select-hidden[required=required],#views-exposed-form-networks-embed-networks-individual .js-select-hidden[required=required],#views-exposed-form-networks-embed-networks-large-group .js-select-hidden[required=required],#views-exposed-form-networks-embed-networks-small-group .js-select-hidden[required=required],#views-exposed-form-plans-employers .js-select-hidden[required=required],#views-exposed-form-plans-individual .js-select-hidden[required=required],.view-contact-contacts .views-exposed-form .js-select-hidden[required=required],.view-plan-search .js-select-hidden[required=required] {
    background: transparent!important;
    border: 0;
    display: inline-block;
    font-size: 0!important;
    left: 0;
    margin: 0 auto;
    padding-right: 0;
    position: absolute;
    right: 0;
    text-indent: -9999px;
    visibility: visible;
    z-index: -1
}

#views-exposed-form-networks-dental-plans .select,#views-exposed-form-networks-embed-networks-individual .select,#views-exposed-form-networks-embed-networks-large-group .select,#views-exposed-form-networks-embed-networks-small-group .select,#views-exposed-form-plans-employers .select,#views-exposed-form-plans-individual .select,.view-contact-contacts .views-exposed-form .select,.view-plan-search .select {
    color: #414141;
    cursor: pointer;
    display: inline-block;
    font-size: .875rem;
    height: 42px;
    position: relative;
    width: 100%
}

.view-networks #views-exposed-form-networks-dental-plans .select,.view-networks #views-exposed-form-networks-embed-networks-individual .select,.view-networks #views-exposed-form-networks-embed-networks-large-group .select,.view-networks #views-exposed-form-networks-embed-networks-small-group .select,.view-networks #views-exposed-form-plans-employers .select,.view-networks #views-exposed-form-plans-individual .select,.view-networks .view-contact-contacts .views-exposed-form .select,.view-networks .view-plan-search .select {
    max-width: 310px
}

.view-plans #views-exposed-form-networks-dental-plans .select,.view-plans #views-exposed-form-networks-embed-networks-individual .select,.view-plans #views-exposed-form-networks-embed-networks-large-group .select,.view-plans #views-exposed-form-networks-embed-networks-small-group .select,.view-plans #views-exposed-form-plans-employers .select,.view-plans #views-exposed-form-plans-individual .select,.view-plans .view-contact-contacts .views-exposed-form .select,.view-plans .view-plan-search .select {
    width: 175px
}

@media (max-width: 767.98px) {
    .view-plans #views-exposed-form-networks-dental-plans .select,.view-plans #views-exposed-form-networks-embed-networks-individual .select,.view-plans #views-exposed-form-networks-embed-networks-large-group .select,.view-plans #views-exposed-form-networks-embed-networks-small-group .select,.view-plans #views-exposed-form-plans-employers .select,.view-plans #views-exposed-form-plans-individual .select,.view-plans .view-contact-contacts .views-exposed-form .select,.view-plans .view-plan-search .select {
        font-size:14px;
        width: 150px
    }
}

#views-exposed-form-networks-dental-plans .select-styled,#views-exposed-form-networks-embed-networks-individual .select-styled,#views-exposed-form-networks-embed-networks-large-group .select-styled,#views-exposed-form-networks-embed-networks-small-group .select-styled,#views-exposed-form-plans-employers .select-styled,#views-exposed-form-plans-individual .select-styled,.view-contact-contacts .views-exposed-form .select-styled,.view-plan-search .select-styled {
    background-color: transparent;
    border: solid hsla(0,0%,100%,.33);
    border-radius: 0;
    border-width: 0 0 1px;
    bottom: 0;
    color: hsla(0,0%,100%,.7);
    font-weight: 300;
    left: 0;
    padding: 8px 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .2s ease-in
}

@media (prefers-reduced-motion:reduce) {
    #views-exposed-form-networks-dental-plans .select-styled,#views-exposed-form-networks-embed-networks-individual .select-styled,#views-exposed-form-networks-embed-networks-large-group .select-styled,#views-exposed-form-networks-embed-networks-small-group .select-styled,#views-exposed-form-plans-employers .select-styled,#views-exposed-form-plans-individual .select-styled,.view-contact-contacts .views-exposed-form .select-styled,.view-plan-search .select-styled {
        transition: none
    }
}

.section-view--networks #views-exposed-form-networks-dental-plans .select-styled,.section-view--networks #views-exposed-form-networks-embed-networks-individual .select-styled,.section-view--networks #views-exposed-form-networks-embed-networks-large-group .select-styled,.section-view--networks #views-exposed-form-networks-embed-networks-small-group .select-styled,.section-view--networks #views-exposed-form-plans-employers .select-styled,.section-view--networks #views-exposed-form-plans-individual .select-styled,.section-view--networks .view-contact-contacts .views-exposed-form .select-styled,.section-view--networks .view-plan-search .select-styled {
    border-color: #d3d3d3;
    color: #716f6f;
    margin: 0
}

.view-plans #views-exposed-form-networks-dental-plans .select-styled,.view-plans #views-exposed-form-networks-embed-networks-individual .select-styled,.view-plans #views-exposed-form-networks-embed-networks-large-group .select-styled,.view-plans #views-exposed-form-networks-embed-networks-small-group .select-styled,.view-plans #views-exposed-form-plans-employers .select-styled,.view-plans #views-exposed-form-plans-individual .select-styled,.view-plans .view-contact-contacts .views-exposed-form .select-styled,.view-plans .view-plan-search .select-styled {
    border-bottom-width: 0;
    font-size: 14px;
    font-weight: 500;
    margin-top: 2px;
    padding-bottom: 0;
    padding-left: 0
}

@media (min-width: 768px) {
    .view-plans #views-exposed-form-networks-dental-plans .select-styled,.view-plans #views-exposed-form-networks-embed-networks-individual .select-styled,.view-plans #views-exposed-form-networks-embed-networks-large-group .select-styled,.view-plans #views-exposed-form-networks-embed-networks-small-group .select-styled,.view-plans #views-exposed-form-plans-employers .select-styled,.view-plans #views-exposed-form-plans-individual .select-styled,.view-plans .view-contact-contacts .views-exposed-form .select-styled,.view-plans .view-plan-search .select-styled {
        font-size:.888rem
    }
}

.section-view--contact_contacts #views-exposed-form-networks-dental-plans .select-styled,.section-view--contact_contacts #views-exposed-form-networks-embed-networks-individual .select-styled,.section-view--contact_contacts #views-exposed-form-networks-embed-networks-large-group .select-styled,.section-view--contact_contacts #views-exposed-form-networks-embed-networks-small-group .select-styled,.section-view--contact_contacts #views-exposed-form-plans-employers .select-styled,.section-view--contact_contacts #views-exposed-form-plans-individual .select-styled,.section-view--contact_contacts .view-contact-contacts .views-exposed-form .select-styled,.section-view--contact_contacts .view-plan-search .select-styled {
    border-color: rgba(33,37,41,.33);
    color: #716f6f
}

#views-exposed-form-networks-dental-plans .select-options,#views-exposed-form-networks-embed-networks-individual .select-options,#views-exposed-form-networks-embed-networks-large-group .select-options,#views-exposed-form-networks-embed-networks-small-group .select-options,#views-exposed-form-plans-employers .select-options,#views-exposed-form-plans-individual .select-options,.view-contact-contacts .views-exposed-form .select-options,.view-plan-search .select-options {
    background-color: #f4f3f1;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: none;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 9999
}

#views-exposed-form-networks-dental-plans .select-options li,#views-exposed-form-networks-embed-networks-individual .select-options li,#views-exposed-form-networks-embed-networks-large-group .select-options li,#views-exposed-form-networks-embed-networks-small-group .select-options li,#views-exposed-form-plans-employers .select-options li,#views-exposed-form-plans-individual .select-options li,.view-contact-contacts .views-exposed-form .select-options li,.view-plan-search .select-options li {
    margin: 0;
    padding: 12px 0;
    text-indent: 15px;
    transition: all .15s ease-in
}

@media (prefers-reduced-motion:reduce) {
    #views-exposed-form-networks-dental-plans .select-options li,#views-exposed-form-networks-embed-networks-individual .select-options li,#views-exposed-form-networks-embed-networks-large-group .select-options li,#views-exposed-form-networks-embed-networks-small-group .select-options li,#views-exposed-form-plans-employers .select-options li,#views-exposed-form-plans-individual .select-options li,.view-contact-contacts .views-exposed-form .select-options li,.view-plan-search .select-options li {
        transition: none
    }
}

#views-exposed-form-networks-dental-plans .select-options li:hover,#views-exposed-form-networks-embed-networks-individual .select-options li:hover,#views-exposed-form-networks-embed-networks-large-group .select-options li:hover,#views-exposed-form-networks-embed-networks-small-group .select-options li:hover,#views-exposed-form-plans-employers .select-options li:hover,#views-exposed-form-plans-individual .select-options li:hover,.view-contact-contacts .views-exposed-form .select-options li:hover,.view-plan-search .select-options li:hover {
    background: #fff;
    color: #21578a
}

#views-exposed-form-networks-dental-plans .form-item-county .select-styled+.select-options li:first-child,#views-exposed-form-networks-dental-plans .select-options li[rel=hide],#views-exposed-form-networks-embed-networks-individual .form-item-county .select-styled+.select-options li:first-child,#views-exposed-form-networks-embed-networks-individual .select-options li[rel=hide],#views-exposed-form-networks-embed-networks-large-group .form-item-county .select-styled+.select-options li:first-child,#views-exposed-form-networks-embed-networks-large-group .select-options li[rel=hide],#views-exposed-form-networks-embed-networks-small-group .form-item-county .select-styled+.select-options li:first-child,#views-exposed-form-networks-embed-networks-small-group .select-options li[rel=hide],#views-exposed-form-plans-employers .form-item-county .select-styled+.select-options li:first-child,#views-exposed-form-plans-employers .select-options li[rel=hide],#views-exposed-form-plans-individual .form-item-county .select-styled+.select-options li:first-child,#views-exposed-form-plans-individual .select-options li[rel=hide],.county-list.hidden,.view-contact-contacts .views-exposed-form .form-item-county .select-styled+.select-options li:first-child,.view-contact-contacts .views-exposed-form .select-options li[rel=hide],.view-plan-search .form-item-county .select-styled+.select-options li:first-child,.view-plan-search .select-options li[rel=hide] {
    display: none
}

#views-exposed-form-plan-search-plan-search .alert {
    bottom: -51px;
    font-size: 15px;
    margin: 0;
    padding: .55rem;
    position: absolute;
    width: 100%;
    z-index: -1!important
}

@media (max-width: 767.98px) {
    #views-exposed-form-plan-search-plan-search .alert {
        font-size:14px
    }
}

#views-exposed-form-plan-search-plan-search .js-form-type-select {
    z-index: -1
}

#views-exposed-form-plan-search-plan-search>div:first-child {
    z-index: 8
}

#views-exposed-form-plan-search-plan-search>div:nth-child(2) {
    z-index: 7
}

#views-exposed-form-plan-search-plan-search>div:nth-child(3) {
    z-index: 6
}

#views-exposed-form-plan-search-plan-search>div:nth-child(4) {
    z-index: 5
}

#views-exposed-form-plan-search-plan-search>div:nth-child(5) {
    z-index: 4
}

#views-exposed-form-plan-search-plan-search>div:nth-child(6) {
    z-index: 3
}

#views-exposed-form-plan-search-plan-search>div:nth-child(7) {
    z-index: 2
}

#views-exposed-form-plan-search-plan-search>div:nth-child(8) {
    z-index: 1
}

#views-exposed-form-plan-search-plan-search>div:nth-child(9) {
    z-index: 0
}

@media (max-width: 767.98px) {
    #views-exposed-form-plan-search-plan-search .js-form-item-county-wrap {
        width:48%
    }

    #views-exposed-form-plan-search-plan-search .js-form-item-county-wrap .js-form-type-select {
        width: 100%
    }
}

#views-exposed-form-contact-contacts-block-1>div:first-child {
    z-index: 3
}

#views-exposed-form-contact-contacts-block-1>div:nth-child(2) {
    z-index: 2
}

#views-exposed-form-contact-contacts-block-1>div:nth-child(3) {
    z-index: 1
}

#views-exposed-form-contact-contacts-block-1>div:nth-child(4) {
    z-index: 0
}

@media (min-width: 768px) {
    #views-exposed-form-plans-employers .form-item-year,#views-exposed-form-plans-individual .form-item-year,.view-plan-search #views-exposed-form-plan-search-plan-search .form-item-year {
        width:140px
    }
}

#views-exposed-form-plans-employers .form-item-year .select-styled+.select-options li:first-child,#views-exposed-form-plans-individual .form-item-year .select-styled+.select-options li:first-child,.view-plan-search #views-exposed-form-plan-search-plan-search .form-item-year .select-styled+.select-options li:first-child,.view-plan-search #views-exposed-form-plan-search-plan-search .select-styled+.select-options li:first-child {
    display: none
}

.view-plan-search #views-exposed-form-plan-search-plan-search .form-actions {
    margin-top: 10px
}

.short_header.breadcrumb-space .container {
    padding-bottom: 2.833rem
}

.short_header .container {
    padding-bottom: 2rem;
    padding-top: 2rem
}

.short_header .container h1 {
    line-height: 1.1;
    margin-bottom: 0!important
}

.short_header .container h1+.text-formatted {
    margin-top: 1rem!important
}

.short_header .container p {
    font-size: 1.11111rem;
    line-height: 1.3
}

.state__content {
    border: 1px solid #ced4da;
    border-radius: 25px;
    overflow-wrap: break-word
}

.state__top {
    border-bottom: 1px solid #ced4da
}

.icons .col {
    margin: 8px 0
}

.icons .icon {
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 10px;
    box-shadow: 0 0 10px 1px rgba(0,0,0,.2);
    height: 100%;
    padding: 15px;
    position: relative;
    text-align: center
}

.icons .icon:hover {
    border: 1px solid #717b2d
}

.icons .icon .linked-icon__image {
    align-items: center;
    display: flex;
    height: 48px;
    justify-content: center;
    margin: 10px 0 15px
}

.icons .icon a {
    font-weight: 700
}

#tbm-custom-overlay {
    background-color: #000;
    filter: alpha(opacity=50);
    height: 100%;
    left: 0;
    -moz-opacity: .5;
    -khtml-opacity: .5;
    opacity: .5;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000
}

.site-header .mega-menu {
    padding-top: 0
}

.logo-limiter {
    margin: 0 25px 5px 30px;
    padding: 0;
    width: 186px
}

.logo-limiter svg {
    width: 186px
}

@media (max-width: 991.98px) {
    .logo-limiter svg {
        width:150px
    }
}

@media (max-width: 767.98px) {
    .logo-limiter article div>svg {
        display:none
    }

}

@media (max-width: 991.98px) {
    .logo-limiter {
        flex:0 0 33.3333333333%;
        max-width: 33.3333333333%
    }
}

@media (max-width: 991.98px) {
    @supports (-webkit-touch-callout:none) {
        .tbm.tbm--mobile .trigger-search {
            display:none
        }

        .tbm.tbm--mobile .tbm-collapse {
            padding-bottom: env(safe-area-inset-bottom);
            width: 98vw
        }

        .tbm.tbm--mobile .tbm-collapse .tbm-nav .tbm-item.tb-megamenu-mobile-search.force-open.level-1 {
            padding: 20px 0 0
        }
    }

    .open>.tbm-link-container>.tbm-submenu-toggle:before {
        transform: rotate(315deg)
    }

    .tbm-submenu-toggle {
        background-color: #f4f3f1
    }

    .tbm-submenu-toggle:focus,.tbm-submenu-toggle:hover {
        background-color: transparent
    }

    .tbm-submenu-toggle:before {
        border-left: 0;
        border-right: 2px solid #000;
        border-top: 2px solid #000;
        height: 10px;
        left: 36%;
        margin-right: 0;
        top: 35%;
        transform: rotate(135deg);
        width: 10px
    }

    .tbm.tbm--mobile .tbm-nav {
        background-color: #f4f3f1
    }

    .tbm.tbm--mobile .tbm-submenu {
        border-top: none
    }

    .tbm.tbm--mobile .tbm-collapse {
        max-height: 600px;
        overflow-y: auto;
        padding-top: 0;
        right: 2px;
        top: 60px;
        width: 100vw
    }

    .tbm.tbm--mobile .tbm-collapse .cust-sublogo {
        text-align: center;
        width: 100%
    }

    .tbm.tbm--mobile .tbm-collapse .cust-sublogo .drupal-media {
        margin: auto;
        padding: 20px 10px;
        width: 186px
    }
}

@media (max-width: 991.98px) and (max-width:767.98px) {
    .tbm.tbm--mobile .tbm-collapse {
        max-height:500px;
        right: 20px
    }
}

@media (max-width: 991.98px) {
    .tbm.tbm--mobile .tbm-item {
        border-top:none
    }

    .tbm.tbm--mobile .tbm-item li.level-2:last-of-type {
        padding-bottom: 10px
    }

    .tbm.tbm--mobile .tbm-item.force-open {
        background-color: #fff
    }

    .tbm.tbm--mobile .tbm-item.force-open a {
        color: #414141
    }

    .tbm.tbm--mobile .tbm-item.force-open a:hover {
        color: #21578a
    }

    .tbm.tbm--mobile .tbm-item.force-open .nav-item:last-child {
        margin-bottom: 10px
    }

    .tbm.tbm--mobile .tbm-item.force-open.level-1 {
        border-bottom: 1px solid #ced4da
    }

    .tbm.tbm--mobile .tbm-item.force-open.level-1 .tbm-link.level-1 {
        padding-bottom: 10px
    }

    .tbm.tbm--mobile .tbm-item.force-open.level-1.open>.tbm-link-container:before {
        display: block
    }

    .tbm.tbm--mobile .tbm-item.force-open.level-1.open .tbm-submenu.tbm-item-child:before {
        border-bottom: none
    }

    .tbm.tbm--mobile .tbm-item.force-open .nav-link {
        line-height: 24px;
        padding: 5px 18px
    }

    .tbm.tbm--mobile .tbm-item.force-open .nav-link:focus,.tbm.tbm--mobile .tbm-item.force-open .nav-link:hover {
        text-decoration: underline
    }

    .tbm.tbm--mobile .tbm-item.force-open .tbm-row {
        background-color: #fff
    }

    .tbm.tbm--mobile .tbm-item.force-open .tbm-submenu {
        display: block;
        font-size: 16px
    }

    .tbm.tbm--mobile .tbm-item.force-open button {
        display: none
    }

    .tbm.tbm--mobile .tbm-item.force-open ul {
        display: block
    }

    .tbm.tbm--mobile .tbm-item.force-open ul li {
        margin-bottom: 0;
        padding-left: 0
    }

    .tbm.tbm--mobile .tbm-item.force-open ul li:first-child {
        margin-top: 6px
    }

    .tbm.tbm--mobile .tbm-submenu-toggle {
        border-left: none
    }

    .tbm button:focus {
        outline: none
    }

    .tbm-button {
        background-color: #f4f3f1;
        border: none;
        border-radius: unset;
        float: right;
        margin: 0
    }
}

@media (max-width: 991.98px) and (max-width:767.98px) {
    .tbm-button {
        margin-right:20px
    }
}

@media (max-width: 991.98px) {
    .tbm-button:after {
        bottom:2px;
        color: #414141;
        content: "Menu";
        font-size: 14px;
        left: 25%;
        position: absolute
    }

    .tbm--mobile-show .tbm-button:after {
        content: ""
    }

    .tbm--mobile-show .tbm-button-container {
        margin: 20px 26px
    }

    .tbm--mobile-show .tbm-button-container span:nth-child(2),.tbm--mobile-show .tbm-button-container span:nth-child(3),.tbm--mobile-show .tbm-button-container span:nth-child(4) {
        top: calc(50% - 2px)
    }

    .tbm-button-container {
        height: 20px;
        margin: 12px 26px 28px;
        width: 24px
    }

    .tbm-button-container span {
        color: #414141;
        height: 3px
    }

    .tbm-button-container span:nth-child(2) {
        top: 7px
    }
}

@media (max-width: 991.98px) and (-webkit-min-device-pixel-ratio:2),(max-width:991.98px) and (min-resolution:192dpi) {
    .tbm-button-container span:nth-child(2) {
        top:10px
    }
}

@media (max-width: 991.98px) {
    .tbm-button-container span:nth-child(3) {
        top:14px
    }
}

@media (max-width: 991.98px) and (-webkit-min-device-pixel-ratio:2),(max-width:991.98px) and (min-resolution:192dpi) {
    .tbm-button-container span:nth-child(3) {
        top:20px
    }
}

@media (max-width: 991.98px) {
    .tbm-button-container span:nth-child(4) {
        display:none
    }
}

.tbm-subnav>.tbm-item:first-child>.tbm-link-container>.tbm-link {
    padding-top: 0
}

.tbm-subnav>.tbm-item>.tbm-link-container>.tbm-link {
    padding: 5px 0
}

.tbm-subnav>.tbm-item>.tbm-link-container>.tbm-link:focus-visible {
    border-top: 1px dotted
}

.tbm-subnav>.tbm-item>.tbm-link-container>.tbm-link.active-trail,.tbm-subnav>.tbm-item>.tbm-link-container>.tbm-link:focus,.tbm-subnav>.tbm-item>.tbm-link-container>.tbm-link:hover {
    color: #21578a
}

li.tbm-item.level-1 {
    border-right: none
}

@media (max-width: 991.98px) {
    li.tbm-item.level-1>.tbm-link-container {
        position:relative
    }

    li.tbm-item.level-1>.tbm-link-container:before {
        border-bottom: 1px solid #ced4da;
        bottom: 0;
        content: "";
        height: 1px;
        left: 5%;
        position: absolute;
        width: 90%;
        z-index: 110
    }

    li.tbm-item.level-1.open .tbm-submenu.tbm-item-child {
        position: relative
    }

    li.tbm-item.level-1.open .tbm-submenu.tbm-item-child:before {
        border-bottom: 1px solid #ced4da;
        bottom: 0;
        content: "";
        height: 1px;
        left: 5%;
        position: absolute;
        width: 90%;
        z-index: 110
    }

    li.tbm-item.level-1.open>.tbm-link-container {
        border-bottom: none
    }

    li.tbm-item.level-1.open>.tbm-link-container:before {
        display: none
    }

    li.tbm-item.level-1.open .tbm-link.level-1 {
        padding-bottom: 10px
    }
}

@media (min-width: 992px) {
    li.tbm-item.level-1.open .tbm-toggle.no-link {
        position:relative
    }

    li.tbm-item.level-1.open .tbm-toggle.no-link:before {
        border-bottom: 8px solid #dee2e6;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        bottom: -18px;
        content: "";
        height: 0;
        left: 45%;
        position: absolute;
        width: 0;
        z-index: 20
    }
}

.tbm .nav li.dropdown.open.active>.dropdown-toggle,.tbm .nav>li.dropdown.open.active>a:hover,.tbm .nav>li.dropdown.open.active>span.tbm-no-link:hover {
    background-color: transparent;
    border-color: transparent;
    color: #21578a
}

.tbm-link.level-1 {
    color: #414141;
    font-weight: 700;
    padding-bottom: 0;
    padding-left: 15px;
    padding-right: 15px
}

@media (max-width: 991.98px) {
    .tbm-link.level-1 {
        padding:.75rem 30px
    }
}

.tbm-link.level-1:focus,.tbm-link.level-1:hover {
    background-color: transparent;
    color: #12304c
}

.tbm {
    background-color: #fff;
    font-size: 16px
}

@media (min-width: 992px) {
    .tbm .level-0>.level-1 .tbm-submenu-toggle.always-show {
        display:none
    }

    .tbm .tbm-link.level-1 {
        font-size: 18px
    }
}

@media (max-width: 991.98px) {
    .tbm {
        font-size:18px
    }

    .tbm .level-2 {
        font-size: 16px
    }
}

.tbm :focus-visible {
    border: 1px dotted #21578a;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    outline: none
}

.tbm h2 {
    color: #414141;
    font-size: 24px;
    font-weight: 300
}

@media (min-width: 992px) {
    .tbm .tbm-block ul {
        padding-inline-start:0
    }
}

.tbm .tbm-block ul li {
    list-style-type: none;
    margin-bottom: 6px
}

.tbm .dropdown-menu {
    font-size: 16px
}

.tbm .dropdown-menu a {
    padding: 3px 0
}

.tbm .dropdown-menu .active>a,.tbm .dropdown-menu .active>a:hover {
    background-color: transparent;
    background-image: none;
    color: #12304c
}

.tbm .dropdown-menu li {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px
}

.tbm .dropdown-menu li>a {
    border-top: none;
    font-weight: 700
}

.tbm .dropdown-menu li>a:hover {
    color: #12304c;
    text-decoration: underline
}

@media (min-width: 768px) {
    .tbm .dropdown-menu .tbm-column {
        position:relative
    }
}

.tbm .dropdown-menu .tbm-column:first-child .block--basic a {
    color: #21578a;
    font-weight: 700
}

.tbm.tbm--mobile .tbm-collapse .tbm-nav .tbm-item.tb-megamenu-mobile-search.force-open.level-1 {
    background-color: #f4f3f1;
    border-bottom: none;
    padding: 20px 0
}

@supports (-webkit-touch-callout:none) {
    .tbm.tbm--mobile .tbm-collapse .tbm-nav .tbm-item.tb-megamenu-mobile-search.force-open.level-1 {
        padding: 20px 0 10px
    }
}

.tbm.tbm--mobile .tbm-collapse .tbm-nav .tbm-item.tb-megamenu-mobile-search.force-open.level-1 .tbm-link-container {
    display: none
}

.tbm.tbm--mobile .tbm-collapse .tbm-nav .tbm-item.tb-megamenu-mobile-search.force-open.level-1 .tbm-row {
    background-color: #f4f3f1
}

.tbm .tb-megamenu-mobile-search .tbm-link-container {
    display: none
}

.tbm .tbm-row {
    background-color: #fff
}

@media (max-width: 991.98px) {
    .tbm .tbm-row {
        background-color:#f4f3f1
    }
}

@media (min-width: 992px) {
    .tbm .tbm-row {
        -moz-column-gap:0;
        column-gap: 0;
        display: grid
    }

    .tbm .tbm-row .tbm-column {
        padding: 40px 40px 20px;
        position: relative
    }

    .tbm .tbm-row .tbm-column:nth-child(3n) {
        background-color: #f4f3f1;
        padding: 48px 40px 20px
    }

    .tbm .tbm-row .tbm-column:nth-child(3n) a {
        color: #414141
    }

    .tbm .tbm-row .tbm-column:nth-child(3n) a:hover {
        color: #21578a
    }

    .tbm .tbm-row .tbm-column:nth-child(3n) h2 {
        font-size: 18px;
        font-weight: 400;
        position: relative
    }

    .tbm .tbm-row .tbm-column:nth-child(3n) h2:after {
        background-color: #dee2e6;
        bottom: -5px;
        content: "";
        height: 1px;
        left: 0;
        position: absolute;
        width: 100%
    }

    .tbm .tbm-row .tbm-column:first-child:after {
        background-color: #dee2e6;
        content: "";
        height: 60%;
        position: absolute;
        right: 0;
        top: 20%;
        width: 1px
    }

    .tbm .tbm-submenu {
        left: -221px;
        margin-left: -20px;
        margin-right: -20px;
        padding: 0;
        top: 139%;
        width: 100vw
    }

    .tbm .tbm-submenu .span4:first-child {
        padding-left: 40px
    }
}

@media (min-width: 1200px) {
    .tbm .tbm-submenu {
        left:-200px;
        max-width: 1100px;
        width: 100vw
    }
}

@media (max-width: 991.98px) {
    .tbm .tbm-submenu ul li {
        padding-left:40px
    }

    .tbm .tbm-submenu ul a {
        font-weight: 400;
        line-height: 1.5
    }

    .tbm .tbm-submenu ul a.active-trail {
        color: #21578a;
        font-weight: 700
    }
}

.tbm .nav>li {
    margin-right: 30px
}

.tbm .nav>li:last-child {
    margin-right: 0
}

.tbm .nav>li .tbm-no-link:hover {
    background-color: transparent;
    border-color: transparent;
    color: #12304c
}

.tbm .nav li.dropdown>.dropdown-toggle .caret {
    display: none
}

.tbm .nav li.dropdown.open.active {
    background-color: transparent;
    border-color: transparent;
    color: #12304c
}

.tbm .nav li.dropdown.open>.dropdown-toggle {
    color: #21578a
}

.tbm .nav li.dropdown.open>.dropdown-toggle .caret {
    display: none
}

.tbm .nav li.dropdown.active>.dropdown-toggle {
    background-color: transparent;
    border-color: transparent;
    color: #21578a
}

.tbm .nav li.dropdown.active>.dropdown-toggle .caret {
    display: none
}

.tbm .nav li.tbm-no-link {
    order-bottom: 0;
    border-right: none;
    border-top: 0;
    color: #414141;
    font-weight: 700;
    padding: 0;
    text-shadow: none
}

.tbm .nav li.tbm-no-link:focus,.tbm .nav li.tbm-no-link:hover {
    color: #12304c
}

@media (min-width: 992px) {
    .tbm .dropdown {
        position:static
    }

    .tbm .dropdown .dropdown-menu {
        background-color: #f4f3f1;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        padding: 0;
        top: 278%
    }

    .tbm .tbm-nav {
        padding-right: 1.33rem
    }

    .tbm .tbm-nav.active-trail>a {
        color: #21578a;
        font-weight: 700
    }

    .tbm .tbm-nav:last-child {
        padding-right: 0
    }

    .tbm .tbm-nav:last-child ul {
        list-style-type: none;
        padding-inline-start:0}

    .tbm .tbm-nav:last-child ul .list-inline-item:not(:last-child) {
        margin-right: 10px;
    }

    .tbm .tbm-nav:last-child ul .dropdown-toggle {
        color: #414141;
        font-size: 18px;
        font-weight: 500;
        text-decoration: none!important
    }

    .tbm .tbm-nav:last-child ul li:last-child {
        padding-right: 0
    }

    .tbm .tbm-nav.show .dropdown-toggle,.tbm .tbm-nav.show .dropdown-toggle:hover {
        color: #21578a;
        font-weight: 700
    }

    .tbm .tbm-nav.dropdown {
        position: unset
    }

    .tbm .tbm-nav .dropdown-toggle {
        color: #414141;
        font-size: 1rem;
        font-weight: 500;
        text-decoration: none!important
    }

    .tbm .tbm-nav .dropdown-toggle.active,.tbm .tbm-nav .dropdown-toggle.active:hover,.tbm .tbm-nav .dropdown-toggle:hover {
        color: #12304c;
        font-weight: 700
    }

    .tbm .tbm-nav .dropdown-toggle:after {
        border-bottom: 0;
        border-left: .2em solid transparent;
        border-right: .2em solid transparent;
        border-top: .2em solid #58585a;
        content: "";
        display: none;
        margin-left: .255em;
        vertical-align: .155em
    }

    .tbm .tbm-nav .links {
        color: #21578a;
        text-decoration: none!important
    }

    .tbm .tbm-nav .links:hover {
        color: #12304c;
        text-decoration: underline!important
    }

    .tbm .tbm-nav .links:hover svg path {
        fill: #12304c
    }

    .tbm .mega .first {
        background-color: #f4f3f1;
        display: block;
        padding-bottom: 30px;
        padding-top: 30px
    }

    .tbm .mega .second {
        left: 25%;
        top: 0;
        width: 25%
    }

    .tbm .mega .tab-content,.tbm .mega .tab-pane {
        height: 100%
    }

    .tbm .mega .nav.nav-tabs {
        border: none;
        border-right: 1px solid rgba(0,0,0,.2);
        display: block;
        height: 100%;
        padding-bottom: 30px;
        padding-top: 30px
    }

    .tbm .mega .nav.nav-tabs.no-border {
        border-right: 0
    }

    .tbm .mega .nav.nav-tabs.first {
        background-color: #f4f3f1;
        border-right: none!important
    }

    .tbm .mega .nav.nav-tabs.first a {
        font-size: 1rem
    }

    .tbm .mega .nav.nav-tabs li:first-child a {
        font-weight: 700
    }

    .tbm .mega .nav.nav-tabs li a {
        color: #414141;
        display: block;
        font-size: .944rem;
        font-weight: 400;
        line-height: 120%;
        padding: .556rem 1.389rem;
        width: 100%
    }

    .tbm .mega .nav.nav-tabs li a.active,.tbm .mega .nav.nav-tabs li a.active:hover,.tbm .mega .nav.nav-tabs li a:hover {
        background-color: #fff;
        color: #12304c;
        font-weight: 700;
        text-decoration: none!important
    }

    .tbm .mega .nav.nav-tabs li a.with-icon:hover svg path {
        fill: #12304c
    }

    .tbm .mega .nav.nav-tabs li a.with-icon svg {
        display: inline-block;
        height: .578rem;
        margin-left: .278rem;
        margin-top: -.122rem;
        vertical-align: middle;
        width: .689rem
    }

    .tbm .mega .nav.nav-tabs li a.more {
        padding-right: 30px;
        position: relative
    }

    .tbm .mega .nav.nav-tabs li a.more:after {
        border-bottom: .2em solid transparent;
        border-left: .2em solid #58585a;
        border-top: .2em solid transparent;
        content: "";
        display: inline-block;
        height: 0;
        margin-bottom: .1rem;
        margin-left: .6rem;
        position: relative;
        width: 0
    }

    .tbm .mega .row {
        height: 100%;
        margin-left: 0;
        margin-right: 0
    }

    .tbm .mega .dropdown-submenu.first li a {
        color: #414141;
        display: block;
        line-height: 120%;
        padding: 8px 20px;
        width: 100%
    }

    .tbm .mega .dropdown-submenu.first li a.active,.tbm .mega .dropdown-submenu.first li a.active:hover,.tbm .mega .dropdown-submenu.first li a:hover {
        background-color: #fff;
        color: #717b2d;
        text-decoration: none!important
    }

    .tbm .mega .dropdown-submenu .dropdown-toggle {
        font-weight: 400;
        position: relative
    }

    .tbm .mega .dropdown-submenu .dropdown-toggle:after {
        border-bottom: .2em solid transparent;
        border-left: .2em solid #000;
        border-right: 0;
        border-top: .2em solid transparent;
        margin-top: -5px;
        position: absolute;
        right: 10px;
        top: 50%
    }

    .tbm .mega .description-hover-div {
        border-left: 1px solid transparent;
        display: none;
        font-size: 17px;
        height: 100%;
        line-height: 22px;
        padding: 50px 40px;
        position: absolute;
        right: 0;
        text-align: center;
        top: 0;
        width: 22%
    }

    .tbm .mega .description-hover-div h5 {
        font-size: .944rem;
        padding: .556rem 0
    }

    .tbm .mega .description-hover-div .fade {
        left: 0;
        padding: 30px 20px 20px;
        position: absolute;
        text-align: left;
        top: 0;
        width: 100%
    }
}

.testimonial {
    display: block;
    font-size: .944rem;
    line-height: 144%;
    position: relative
}

.testimonial__avatar {
    background-color: #d9dee1;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    display: inline-block;
    height: 4.167rem;
    left: 0;
    position: absolute;
    top: 0;
    width: 4.167rem
}

.testimonial__avatar img {
    border-radius: 50%
}

.testimonial__text {
    margin-bottom: 1rem
}

.testimonial__author {
    color: #414141;
    font-size: 15px;
    font-weight: 700
}

.testimonial__title {
    font-size: 15px;
    font-weight: 400
}

.callout-wht-box {
    background-color: #fff;
    border-top-left-radius: 1.667rem;
    border-top-right-radius: 1.667rem;
    box-shadow: 0 10px 19px 10px rgba(0,0,0,.15);
    margin-bottom: 30px;
    padding: 2.333rem 1rem;
    position: relative;
    width: 100%;
    z-index: 5
}

@media (min-width: 768px) {
    .callout-wht-box {
        padding:3.333rem 3.889rem
    }
}

.callout-wht-box.invert {
    border-bottom-left-radius: 1.667rem;
    border-bottom-right-radius: 1.667rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.callout-wht-box .testimonals-in-columns {
    display: block
}

@media (min-width: 768px) {
    .callout-wht-box .testimonals-in-columns {
        display:flex
    }
}

.callout-wht-box .single {
    margin-bottom: 40px;
    padding: 1.111rem 3.333rem 0;
    position: relative
}

.callout-wht-box .single:after {
    background-color: #21578a;
    content: "";
    display: block;
    height: 5px;
    left: 60px;
    position: absolute;
    top: 0;
    width: 50px
}

.callout-wht-box .single p {
    margin-bottom: 1rem;
    margin-top: 0
}

@media (min-width: 768px) {
    .callout-wht-box .single {
        margin-bottom:10px
    }
}

.callout-wht-box .single:last-child {
    border: none
}

@media (min-width: 768px) {
    .callout-wht-box .single:last-child {
        border-left:1px solid #ccc
    }
}

.tiles {
    flex-wrap: wrap
}

.tiles,.tiles .tile {
    align-items: stretch;
    display: flex
}

.tiles .tile {
    border-bottom: 1px solid #d1cdcb;
    flex: 0 0 100%;
    min-height: 13.889rem;
    width: 100%
}

.tiles .tile:last-child {
    border-bottom-width: 0
}

.tiles .tile a {
    font-weight: 700
}

@media (min-width: 576px) {
    .tiles[data-layout="2"] .tile {
        border-right:1px solid #d1cdcb;
        flex: 0 0 50%;
        max-width: 50%
    }

    .tiles[data-layout="2"] .tile:last-child,.tiles[data-layout="2"] .tile:nth-child(2n) {
        border-right-width: 0
    }

    .tiles[data-layout="2"][data-modulo-2="1"] .tile:last-child {
        margin-left: 25%
    }

    .tiles[data-layout="2"][data-modulo-2="0"] .tile:last-child,.tiles[data-layout="2"][data-modulo-2="0"] .tile:nth-last-child(2) {
        border-bottom-width: 0
    }
}

@media (min-width: 576px) and (max-width:767.98px) {
    .tiles[data-layout="3"] .tile {
        border-right:1px solid #d1cdcb;
        flex: 0 0 50%;
        max-width: 50%
    }

    .tiles[data-layout="3"] .tile:last-child,.tiles[data-layout="3"] .tile:nth-child(2n) {
        border-right-width: 0
    }

    .tiles[data-layout="3"][data-modulo-2="1"] .tile:last-child {
        margin-left: 25%
    }

    .tiles[data-layout="3"][data-modulo-2="0"] .tile:last-child,.tiles[data-layout="3"][data-modulo-2="0"] .tile:nth-last-child(2) {
        border-bottom-width: 0
    }
}

@media (min-width: 768px) {
    .tiles[data-layout="3"] .tile {
        border-right:1px solid #d1cdcb;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .tiles[data-layout="3"] .tile:last-child,.tiles[data-layout="3"] .tile:nth-child(3n) {
        border-right-width: 0
    }

    .tiles[data-layout="3"][data-modulo-3="1"] .tile:last-child {
        margin-left: 33.33333%
    }

    .tiles[data-layout="3"][data-modulo-3="2"] .tile:last-child,.tiles[data-layout="3"][data-modulo-3="2"] .tile:nth-last-child(2) {
        border-bottom-width: 0
    }

    .tiles[data-layout="3"][data-modulo-3="2"] .tile:nth-last-child(2) {
        margin-left: 16.66665%
    }

    .tiles[data-layout="3"][data-modulo-3="0"] .tile:last-child,.tiles[data-layout="3"][data-modulo-3="0"] .tile:nth-last-child(2),.tiles[data-layout="3"][data-modulo-3="0"] .tile:nth-last-child(3) {
        border-bottom-width: 0
    }
}

@media (max-width: 1199.98px) {
    .tiles[data-layout="4"] {
        display:flex
    }
}

@media (min-width: 576px) and (max-width:767.98px) {
    .tiles[data-layout="4"] .tile {
        border-right:1px solid #d1cdcb;
        flex: 0 0 50%;
        max-width: 50%
    }

    .tiles[data-layout="4"] .tile:last-child,.tiles[data-layout="4"] .tile:nth-child(2n) {
        border-right-width: 0
    }

    .tiles[data-layout="4"][data-modulo-2="1"] .tile:last-child {
        margin-left: 25%
    }

    .tiles[data-layout="4"][data-modulo-2="0"] .tile:last-child,.tiles[data-layout="4"][data-modulo-2="0"] .tile:nth-last-child(2) {
        border-bottom-width: 0
    }
}

@media (min-width: 768px) and (max-width:991.98px) {
    .tiles[data-layout="4"] .tile {
        border-right:1px solid #d1cdcb;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .tiles[data-layout="4"] .tile:last-child,.tiles[data-layout="4"] .tile:nth-child(3n) {
        border-right-width: 0
    }

    .tiles[data-layout="4"][data-modulo-3="1"] .tile:last-child {
        margin-left: 33.33333%
    }

    .tiles[data-layout="4"][data-modulo-3="2"] .tile:last-child,.tiles[data-layout="4"][data-modulo-3="2"] .tile:nth-last-child(2) {
        border-bottom-width: 0
    }

    .tiles[data-layout="4"][data-modulo-3="2"] .tile:nth-last-child(2) {
        margin-left: 16.66665%
    }

    .tiles[data-layout="4"][data-modulo-3="0"] .tile:last-child,.tiles[data-layout="4"][data-modulo-3="0"] .tile:nth-last-child(2),.tiles[data-layout="4"][data-modulo-3="0"] .tile:nth-last-child(3) {
        border-bottom-width: 0
    }
}

@media (min-width: 992px) {
    .tiles[data-layout="4"] .tile {
        border-right:1px solid #d1cdcb;
        flex: 0 0 25%;
        max-width: 25%
    }

    .tiles[data-layout="4"] .tile:last-child,.tiles[data-layout="4"] .tile:nth-child(4n) {
        border-right-width: 0
    }

    .tiles[data-layout="4"][data-modulo-4="1"] .tile:last-child {
        margin-left: 37.5%
    }

    .tiles[data-layout="4"][data-modulo-4="2"] .tile:last-child,.tiles[data-layout="4"][data-modulo-4="2"] .tile:nth-last-child(2) {
        border-bottom-width: 0
    }

    .tiles[data-layout="4"][data-modulo-4="2"] .tile:nth-last-child(2) {
        margin-left: 25%
    }

    .tiles[data-layout="4"][data-modulo-4="3"] .tile:last-child,.tiles[data-layout="4"][data-modulo-4="3"] .tile:nth-last-child(2),.tiles[data-layout="4"][data-modulo-4="3"] .tile:nth-last-child(3) {
        border-bottom-width: 0
    }

    .tiles[data-layout="4"][data-modulo-4="3"] .tile:nth-last-child(3) {
        margin-left: 12.5%
    }

    .tiles[data-layout="4"][data-modulo-4="0"] .tile:last-child,.tiles[data-layout="4"][data-modulo-4="0"] .tile:nth-last-child(2),.tiles[data-layout="4"][data-modulo-4="0"] .tile:nth-last-child(3),.tiles[data-layout="4"][data-modulo-4="0"] .tile:nth-last-child(4) {
        border-bottom-width: 0
    }
}

@media (max-width: 991.98px) {
    .tiles,.tiles .tile {
        display:block
    }

    .tiles .tile {
        margin-bottom: 30px;
        padding-bottom: 30px
    }

    .rollover-tile__front {
        display: block
    }

    .rollover-tile__back {
        background: #fff;
        color: #414141;
        display: block;
        opacity: 1;
        position: static;
        visibility: visible
    }

    .rollover-tile__back svg:after {
        color: #fff
    }

    .rollover-tile__links a {
        background-color: #717b2d;
        border: 2px solid #717b2d;
        border-radius: 3rem;
        box-shadow: none;
        color: #fff;
        font-weight: 700;
        letter-spacing: -.01rem;
        padding: 14px 28px;
        position: relative;
        text-align: center;
        text-decoration: none;
        text-shadow: none;
        text-transform: none
    }

    .rollover-tile__links a:hover {
        background-color: #414141;
        border-color: #414141
    }

    .rollover-tile:hover .rollover-tile__front {
        opacity: 1;
        visibility: visible
    }

    .rollover-tile__title.no-underline {
        display: none
    }

    .rollover-tile__text {
        margin-top: 20px
    }

    .tiles[data-layout="3"] div.tile {
        border-right: 0;
        max-width: 100%
    }
}

.tooltip-inner {
    background: #21578a;
    color: #fff;
    line-height: 1.3;
    text-align: left
}

.bg-dark .tooltip-inner,.bg-primary .tooltip-inner {
    background: #fff;
    color: #21578a
}

@media (-ms-high-contrast:none) {
    .tooltip .arrow {
        margin-right: -20px
    }
}

.tooltip-indicator {
    display: inline-block;
    min-width: 0!important
}

span.tooltip-indicator {
    min-width: unset!important
}

.tooltip-icon {
    color: #21578a;
    height: .889em;
    width: .889em
}

.bg-dark .tooltip-icon,.bg-primary .tooltip-icon {
    color: #fff
}

form.webform-submission-prenatal-program-form #edit-state:invalid {
    color: #777
}

form.webform-submission-prenatal-program-form #edit-state option {
    color: #414141
}

form.webform-submission-prenatal-program-form #edit-due-date {
    color: transparent
}

form.webform-submission-prenatal-program-form #edit-due-date:focus,form.webform-submission-prenatal-program-form #edit-due-date:valid {
    color: #414141
}

form.webform-submission-prenatal-program-form #edit-due-date:before {
    color: #777;
    content: attr(placeholder)
}

form.webform-submission-prenatal-program-form #edit-due-date:focus:before,form.webform-submission-prenatal-program-form #edit-due-date:valid:before {
    content: ""
}

#webform-submission-condition-support-registration-paragraph-14751-add-form .form-item-contact-me-by {
    flex-direction: row;
    justify-content: left;
    margin-bottom: .1rem
}

#webform-submission-condition-support-registration-paragraph-14751-add-form .form-item-contact-me-by .field-prefix {
    margin-top: .25rem
}

#webform-submission-condition-support-registration-paragraph-14751-add-form .form-item-contact-me-by #edit-contact-me-by .form-item-contact-me-by.form-check {
    margin-right: 1rem;
    padding-left: 1.4rem
}

#section-11416 a {
    margin-bottom: 20px
}

@media (min-width: 768px) {
    #section-11416 a {
        margin-bottom:0
    }
}

.field--label-inline {
    display: flex
}

.field--label-inline .field__label {
    display: flex;
    font-weight: 300;
    margin-right: .5ch
}

.views-exposed-form.bef-exposed-form details {
    border: none;
    padding-bottom: 0
}

.views-exposed-form.bef-exposed-form details summary::marker {
    content: ""
}

.views-exposed-form.bef-exposed-form details summary:before {
    background-color: transparent;
    color: #adb5bd;
    font-size: 26px;
    font-weight: 500;
    height: 30px;
    line-height: 30px;
    right: 5px;
    text-align: center;
    top: 8px;
    width: 30px
}

.views-exposed-form.bef-exposed-form details .card-body {
    padding-bottom: 0
}

.views-exposed-form.bef-exposed-form details .card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
    padding: 0
}

.views-exposed-form.bef-exposed-form details .card-header {
    border-bottom: none
}

.exposed-form__wrapper form {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px
}

@media (min-width: 576px) {
    .exposed-form__wrapper form {
        justify-content:flex-start
    }
}

@media (min-width: 768px) {
    .exposed-form__wrapper form .group__container {
        display:flex;
        flex-wrap: wrap;
        justify-content: space-between
    }

    .exposed-form__wrapper form .group__container>.form-item {
        width: 48%
    }
}

.exposed-form__wrapper form .form-item {
    width: 48%
}

@media (min-width: 576px) {
    .exposed-form__wrapper form .form-item {
        margin-right:1.5rem;
        width: 150px
    }
}

@media (min-width: 992px) {
    .exposed-form__wrapper form .form-item {
        margin-bottom:0;
        width: 140px
    }
}

@media (min-width: 1200px) {
    .exposed-form__wrapper form .form-item {
        width:160px
    }
}

.exposed-form__wrapper form label {
    color: #212529;
    font-size: .833rem;
    margin-bottom: 0
}

@media (min-width: 768px) {
    .exposed-form__wrapper form label {
        font-size:1rem
    }
}

.exposed-form__wrapper form .custom-select,.exposed-form__wrapper form .form-control {
    background: none;
    border-color: rgba(33,37,41,.33);
    border-radius: 0;
    border-width: 0 0 1px;
    color: #212529;
    font-size: .833rem;
    font-weight: 300;
    padding-left: 0;
    padding-right: 0
}

@media (min-width: 768px) {
    .exposed-form__wrapper form .custom-select,.exposed-form__wrapper form .form-control {
        font-size:1rem
    }
}

.exposed-form__wrapper form .custom-select::-moz-placeholder,.exposed-form__wrapper form .form-control::-moz-placeholder {
    color: #212529
}

.exposed-form__wrapper form .custom-select::placeholder,.exposed-form__wrapper form .form-control::placeholder {
    color: #212529
}

.exposed-form__wrapper form .custom-select:focus,.exposed-form__wrapper form .form-control:focus {
    box-shadow: none;
    outline: none
}

.exposed-form__wrapper form .custom-select.form-textarea,.exposed-form__wrapper form .form-control.form-textarea {
    border-width: 1px;
    padding: .5rem
}

.exposed-form__wrapper form .custom-select.chosen-container .chosen-single,.exposed-form__wrapper form .form-control.chosen-container .chosen-single {
    color: #212529
}

.exposed-form__wrapper form .custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.exposed-form__wrapper form .js-form-type-select {
    position: relative;
    z-index: 0
}

.exposed-form__wrapper form .js-form-type-select select {
    cursor: pointer
}

.exposed-form__wrapper form .js-form-type-select:after {
    border-color: rgba(33,37,41,.7) transparent transparent;
    border-style: solid;
    border-width: 4px 3px 0;
    bottom: 18px;
    content: "";
    position: absolute;
    right: 5px;
    z-index: -1
}

@media (min-width: 768px) {
    .exposed-form__wrapper form .js-form-type-select:after {
        border-width:5px 4px 0
    }
}

.exposed-form__wrapper form .form-actions {
    margin-top: 1rem;
    width: 100%
}

@media (min-width: 992px) {
    .exposed-form__wrapper form .form-actions {
        margin-top:0;
        width: auto
    }
}

.exposed-form__wrapper form .form-submit {
    font-size: .833rem;
    min-width: 160px
}

@media (min-width: 992px) {
    .exposed-form__wrapper form .form-submit {
        font-size:1rem
    }
}

.exposed-form__wrapper form.views-exposed-form .custom-select,.exposed-form__wrapper form.views-exposed-form .form-control {
    color: rgba(33,37,41,.7);
    font-size: .833rem
}

@media (min-width: 768px) {
    .exposed-form__wrapper form.views-exposed-form .custom-select,.exposed-form__wrapper form.views-exposed-form .form-control {
        font-size:.875rem
    }
}

.exposed-form__wrapper form.views-exposed-form .custom-select option,.exposed-form__wrapper form.views-exposed-form .form-control option {
    color: #212529
}

.custom-select.chosen-container {
    color: #414141
}

.custom-select.chosen-container .chosen-single {
    background: none;
    border: 0;
    box-shadow: none;
    font-weight: 300;
    padding: 0
}

.custom-select.chosen-container .chosen-single div b {
    display: none
}

.custom-select.chosen-container .chosen-drop {
    background-color: #f4f3f1;
    border: 0;
    border-radius: 0 0 20px 20px;
    box-shadow: none
}

.custom-select.chosen-container .chosen-results {
    margin: 0;
    overflow: hidden;
    padding: 10px 0 18px
}

.custom-select.chosen-container .chosen-results .active-result {
    color: #414141;
    font-weight: 700;
    letter-spacing: -.01rem;
    line-height: 125%;
    padding: 5px 18px
}

.custom-select.chosen-container .chosen-results .active-result[data-option-array-index="0"] {
    display: none
}

.custom-select.chosen-container .chosen-results .active-result.highlighted {
    background: #fff;
    color: #21578a
}

.js-form-type-radio {
    margin: 0;
    padding-left: 1.8rem;
    position: relative
}

.js-form-type-radio+.js-form-type-radio {
    margin-left: 1rem
}

@media (min-width: 992px) {
    .js-form-type-radio+.js-form-type-radio {
        margin-left:.5rem
    }
}

.js-form-type-radio input {
    display: none
}

.js-form-type-radio input+label {
    align-items: center;
    cursor: pointer;
    display: flex
}

.js-form-type-radio input+label:before {
    background: #fff;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #969696;
    content: "";
    height: 20px;
    left: 0;
    position: absolute;
    width: 20px
}

.js-form-type-radio input:checked+label:before {
    background: #717b2d
}

.js-form-type-checkbox {
    margin: 0;
    padding-left: 1.2rem;
    position: relative
}

.js-form-type-checkbox+.js-form-type-checkbox {
    margin-top: .5rem
}

.js-form-type-checkbox input,.js-form-type-checkbox.js-form-item-crm-retreived {
    display: none
}

.js-form-type-checkbox input+label {
    align-items: center;
    cursor: pointer;
    display: flex
}

.js-form-type-checkbox input+label:before {
    background: #fff;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #969696;
    content: "";
    height: 12px;
    left: 0;
    position: absolute;
    top: 6px;
    width: 12px
}

.js-form-type-checkbox input:checked+label:before {
    background: #21578a
}

div[data-entity-type=media].align-center {
    text-align: center
}

.drupal-media.align-left {
    text-align: left
}

.drupal-media.align-center {
    text-align: center
}

.drupal-media.align-right {
    text-align: right
}

.drupal-media .media-library-item__edit {
    background: none;
    border: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    text-indent: -9999px;
    top: 0;
    width: 100%;
    z-index: 10
}

.drupal-media.media--image svg {
    max-width: 100%
}

.node-preview-container {
    background-color: rgba(33,87,138,.9);
    color: #fff;
    font-size: .875rem;
    top: 39px;
    z-index: 1500
}

.toolbar-fixed .node-preview-container {
    top: 39px
}

.toolbar-tray-open.toolbar-horizontal .node-preview-container {
    top: 79px
}

.node-preview-container .node-preview-backlink {
    background-color: #717b2d;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    padding: .25rem 1rem;
    text-decoration: none
}

.node-preview-container .node-preview-backlink:hover {
    background-color: #606826
}

.node-preview-container form {
    display: flex;
    justify-content: space-between
}

.node-preview-container .form-item {
    align-items: center;
    display: flex;
    margin: 0
}

.node-preview-container .form-item label {
    display: block;
    margin: 0 1rem 0 0
}

.node-preview-container .form-item .form-select {
    flex: 1;
    font-size: .875rem;
    height: 30px;
    padding: .15rem 1.5rem .15rem .5rem
}

.faq h4 {
    font-size: 1rem;
    line-height: 140%
}

@media (min-width: 768px) {
    .faq h4 {
        font-size:1.166rem
    }
}

.faq p {
    font-size: .75rem;
    line-height: 190%
}

@media (min-width: 768px) {
    .faq p {
        font-size:1rem
    }
}

.find-drug .text-grey-dark {
    color: #414141
}

.find-drug .restyle-btn {
    background-color: #717b2d;
    border: 0 #fff;
    border-radius: 0 54px 54px 0;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 16px;
    font-weight: 700;
    height: 50px;
    letter-spacing: .05rem;
    line-height: 16px;
    margin: 0;
    padding: 15px 30px;
    position: absolute;
    right: 20px;
    text-align: center;
    top: 0;
    width: 115px
}

.find-drug .restyle-btn.btn.disabled,.find-drug .restyle-btn.btn.form-disabled,.find-drug .restyle-btn.btn:disabled {
    background-color: #717b2d;
    border: 0 #fff
}

.find-drug .restyle-btn:active,.find-drug .restyle-btn:focus,.find-drug .restyle-btn:hover {
    background-color: #414141;
    border-color: #414141;
    box-shadow: none;
    color: #fff
}

.find-drug .restyle-btn:focus {
    text-decoration: underline
}

.find-drug .top-blue-box .btn-primary {
    background-color: transparent;
    border-color: #fff;
    color: #fff
}

.find-drug .top-blue-box .btn-primary.restyle-btn {
    background-color: #717b2d;
    border: 2px solid #717b2d;
    color: #fff
}

.find-drug .top-blue-box .btn-primary.restyle-btn:focus {
    text-decoration: underline
}

.find-drug .top-blue-box .btn-primary.restyle-btn:active,.find-drug .top-blue-box .btn-primary.restyle-btn:hover {
    background-color: #414141;
    border-color: #414141;
    color: #fff
}

.find-drug .top-blue-box .btn-primary.restyle-btn.disabled,.find-drug .top-blue-box .btn-primary.restyle-btn.disabled:active,.find-drug .top-blue-box .btn-primary.restyle-btn.disabled:focus,.find-drug .top-blue-box .btn-primary.restyle-btn.disabled:hover,.find-drug .top-blue-box .btn-primary.restyle-btn.form-disabled,.find-drug .top-blue-box .btn-primary.restyle-btn.form-disabled:active,.find-drug .top-blue-box .btn-primary.restyle-btn.form-disabled:focus,.find-drug .top-blue-box .btn-primary.restyle-btn.form-disabled:hover,.find-drug .top-blue-box .btn-primary.restyle-btn:disabled,.find-drug .top-blue-box .btn-primary.restyle-btn:disabled:active,.find-drug .top-blue-box .btn-primary.restyle-btn:disabled:focus,.find-drug .top-blue-box .btn-primary.restyle-btn:disabled:hover {
    background-color: #414141;
    border-color: #414141;
    box-shadow: none;
    color: #fff
}

.find-drug .top-blue-box .btn-primary.disabled,.find-drug .top-blue-box .btn-primary.form-disabled,.find-drug .top-blue-box .btn-primary:disabled {
    background-color: #414141;
    border-color: #414141;
    color: #fff
}

.find-drug .top-blue-box .btn:focus {
    text-decoration: underline
}

.find-drug .top-blue-box .btn:active,.find-drug .top-blue-box .btn:hover {
    background-color: #414141;
    color: #fff
}

.find-drug .top-blue-box .btn.btn-alt-primary {
    background-color: #fff;
    color: #21578a
}

.find-drug .top-blue-box .btn.btn-alt-primary :focus {
    text-decoration: underline
}

.find-drug .top-blue-box .btn.btn-alt-primary:active,.find-drug .top-blue-box .btn.btn-alt-primary:hover {
    background-color: #414141;
    color: #fff
}

.find-drug .top-blue-box .btn.btn-alt-primary.disabled,.find-drug .top-blue-box .btn.btn-alt-primary.disabled:active,.find-drug .top-blue-box .btn.btn-alt-primary.disabled:focus,.find-drug .top-blue-box .btn.btn-alt-primary.disabled:hover,.find-drug .top-blue-box .btn.btn-alt-primary.form-disabled,.find-drug .top-blue-box .btn.btn-alt-primary.form-disabled:active,.find-drug .top-blue-box .btn.btn-alt-primary.form-disabled:focus,.find-drug .top-blue-box .btn.btn-alt-primary.form-disabled:hover,.find-drug .top-blue-box .btn.btn-alt-primary:disabled,.find-drug .top-blue-box .btn.btn-alt-primary:disabled:active,.find-drug .top-blue-box .btn.btn-alt-primary:disabled:focus,.find-drug .top-blue-box .btn.btn-alt-primary:disabled:hover {
    background-color: #fff;
    border-color: #fff;
    color: #21578a
}

.find-drug .top-blue-box {
    background: #1879b1;
    background: linear-gradient(90deg,#1879b1 0,#21578a);
    color: #fff;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1879b1",endColorstr="#21578a",GradientType=1);
    font-size: 1.111rem;
    letter-spacing: -.015rem;
    line-height: 1.667rem;
    padding: 1.667rem 0;
    width: 100%
}

.find-drug .top-blue-box .breadcrumb-custom li,.find-drug .top-blue-box .breadcrumb-custom li a,.find-drug .top-blue-box .breadcrumb-custom li:not(:last-child):before,.find-drug .top-blue-box a {
    color: #fff
}

.find-drug .top-blue-box h1 {
    color: #fff;
    margin-bottom: .833rem
}

.find-drug .top-blue-box title {
    border-bottom: 1px solid hsla(40,12%,95%,.33);
    margin-bottom: 1.667rem;
    padding-bottom: 1.667rem
}

.find-drug .top-blue-box title .search {
    display: inline-block;
    position: relative
}

.find-drug .top-blue-box title .search input {
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 45px;
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    max-width: 100%;
    outline: none!important;
    padding: 16px 60px 16px 30px;
    width: 340px
}

.find-drug .top-blue-box title .search input:-moz-placeholder,.find-drug .top-blue-box title .search input:-ms-input-placeholder,.find-drug .top-blue-box title .search input::-moz-placeholder,.find-drug .top-blue-box title .search input::-ms-input-placeholder,.find-drug .top-blue-box title .search input::-webkit-input-placeholder,.find-drug .top-blue-box title .search input::placeholder {
    color: #fff
}

.find-drug .top-blue-box .filters .label {
    font-size: 1rem;
    font-weight: 500;
    line-height: 110%
}

.find-drug .top-blue-box .filters .list-inline-item li {
    width: 100%
}

.find-drug .top-blue-box .filters .list-inline-item:first-child {
    margin-right: 2.5rem;
    width: 12.353rem
}

.find-drug .top-blue-box .filters .list-inline-item:nth-child(2) {
    margin-right: 4.167rem;
    width: 12.353rem
}

.find-drug .top-blue-box .filters .list-inline-item:last-child {
    width: 18.235rem
}

.find-drug .top-blue-box .filters .standard.drugs .list-inline-item {
    width: 100%
}

.find-drug .top-blue-box .dropdown .dropdown-toggle {
    border-bottom: 1px solid hsla(0,0%,100%,.4);
    color: #fff;
    display: block;
    font-size: .882rem;
    font-weight: 400;
    padding: 6px 20px 6px 0;
    text-decoration: none
}

.find-drug .top-blue-box .dropdown .dropdown-toggle.no-selected {
    color: hsla(0,0%,100%,.7)
}

.find-drug .top-blue-box .dropdown .dropdown-toggle.updated {
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
    line-height: 120%;
    padding: .667rem 0
}

.find-drug .top-blue-box .dropdown .dropdown-toggle.updated.no-selected {
    color: hsla(0,0%,100%,.7);
    font-size: .882rem;
    padding: 6px 0
}

.find-drug .top-blue-box .dropdown .dropdown-toggle:after {
    border-bottom: 0;
    border-left: .2rem solid transparent;
    border-right: .2rem solid transparent;
    border-top: .2rem solid;
    content: "";
    display: inline-block;
    margin-left: .155rem;
    margin-top: -.222rem;
    position: absolute;
    right: 0;
    top: 50%;
    vertical-align: .2rem
}

.find-drug .top-blue-box .dropdown .dropdown-menu {
    background-color: #f4f3f1;
    border: none;
    border-radius: 0 0 20px 20px;
    border-top: 0;
    margin: 0;
    padding: 9px 0 1rem;
    width: 100%
}

.find-drug .top-blue-box .dropdown .dropdown-item {
    color: #414141;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: -.01rem;
    line-height: 125%;
    padding: .3rem 1rem
}

.find-drug .top-blue-box .dropdown .dropdown-item.active,.find-drug .top-blue-box .dropdown .dropdown-item:active,.find-drug .top-blue-box .dropdown .dropdown-item:focus,.find-drug .top-blue-box .dropdown .dropdown-item:hover {
    background-color: #fff;
    color: #21578a
}

.find-drug .section-padding {
    padding: 3rem 0
}

.find-drug form {
    position: relative
}

.find-drug form .form-required:after {
    visibility: hidden
}

.find-drug form .form-submit.js-by-name {
    align-items: flex-start;
    background-color: #717b2d;
    border: none;
    border-radius: 0 3rem 3rem 0;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: .889rem;
    font-weight: 700;
    height: 50px;
    letter-spacing: .05rem;
    margin: 0;
    padding: .463rem 1.667rem;
    position: absolute;
    right: 0;
    text-align: center;
    text-shadow: none;
    top: 0
}

.find-drug form .second-step {
    align-items: stretch;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start
}

.find-drug form label {
    font-size: 1rem;
    font-weight: 500;
    line-height: 110%
}

.find-drug form .form-item-name label,.find-drug form select {
    clip: rect(0 0 0 0)!important;
    border: 0!important;
    clip-path: inset(50%)!important;
    height: 1px!important;
    overflow: hidden!important;
    padding: 0!important;
    position: absolute!important;
    white-space: nowrap!important;
    width: 1px!important
}

.find-drug .drug-search-results h3 {
    color: #414141;
    font-weight: 700
}

.find-drug .drug-search-results h3.fs-28 {
    font-size: 1.4rem
}

.find-drug .drug-search-results .top {
    border-bottom: 1px solid #ddd;
    position: relative;
    width: 100%
}

.find-drug .drug-search-results .top .title {
    display: block;
    max-width: 300px;
    position: relative;
    width: 100%
}

.find-drug .drug-search-results .top .change-start ul .list-inline-item:not(:last-child) {
    margin-right: 10px;
    padding-right: 1.111rem;
    position: relative
}

.find-drug .drug-search-results .top .change-start ul .list-inline-item:not(:last-child):before {
    background-color: #414141;
    content: "";
    height: 1rem;
    margin-top: -.5rem;
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px
}

.find-drug .drug-search-results .top .change-start ul li a {
    color: #21578a;
    font-size: 1.111rem;
    font-weight: 700;
    line-height: 110%
}

.find-drug .drug-search-results .table-navi-top {
    font-size: .778rem;
    font-weight: 400;
    line-height: .889rem
}

.find-drug .drug-search-results .table-navi-top select {
    border-radius: 4px;
    outline: none!important;
    padding: .278rem
}

.find-drug .drug-search-results .table-navi-top a {
    color: #21578a;
    font-weight: 500;
    position: relative;
    text-decoration: none
}

.find-drug .drug-search-results .table-navi-top a:after {
    background-color: #21578a;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    transition: all .3s ease-out;
    width: 0
}

.find-drug .drug-search-results .table-navi-top a:hover:after {
    transition: all .3s ease-out;
    width: 100%
}

.find-drug .drug-search-results .table-navi-top a sub {
    bottom: 0;
    font-size: 15px;
    padding-right: 5px;
    text-decoration: none!important
}

.find-drug .drug-search-results .table-navi-top a.disabled {
    color: #414141;
    text-decoration: none
}

.find-drug .drug-search-results .table-navi-top a.disabled:after {
    display: none
}

.find-drug .drug-search-results .table-navi-top a.last sub {
    padding-left: .278rem;
    padding-right: 0
}

.find-drug .drug-search-results .table-bordered td:first-child {
    border-left: none
}

.find-drug .drug-search-results .table-bordered td:last-child {
    border-right: none
}

.find-drug .drug-search-results .table-bordered th {
    background-color: #e7f0f5;
    border-bottom: 1px solid #fff;
    border-top: none;
    color: #414141;
    font-size: 1.111rem;
    font-weight: 700;
    line-height: 115%
}

.find-drug .drug-search-results .table-bordered th:first-child {
    border-left: none
}

.find-drug .drug-search-results .table-bordered th:last-child {
    border-right: none
}

.find-drug .drug-search-results .table-striped tbody tr:nth-of-type(odd) {
    background-color: #f4f3f1
}

.find-drug .drug-search-results .table-striped tbody tr td {
    border-bottom: none;
    border-top: none;
    color: #414141;
    font-size: .889rem;
    line-height: 1.111rem
}

.what-is-this-link,.what-is-this-link:hover {
    color: #fff;
    display: inline-block;
    font-size: .778rem;
    font-weight: 400;
    line-height: .889rem;
    padding-left: 1.278rem;
    position: relative;
    text-decoration: underline
}

.what-is-this-link:before {
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    content: "?";
    display: inline-block;
    font-size: .667rem;
    height: 1rem;
    left: 0;
    line-height: .9rem;
    margin-top: -.5rem;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 1rem
}

.divider-fill-width {
    background-color: #cfcfcf;
    height: 1px;
    margin: 2rem 0
}

.divider-fill-width,.search-results-input {
    display: block;
    position: relative;
    width: 100%
}

.search-results-input label {
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    height: 1px;
    overflow: hidden;
    position: absolute!important;
    white-space: nowrap;
    width: 1px
}

.search-results-input.smaller .form-control {
    background-color: #fff;
    border: 1px solid #cdcdcd;
    border-radius: 56px;
    color: #414141;
    display: block;
    font-size: 16px;
    height: 50px;
    margin: 0;
    min-height: 50px;
    padding: .633rem 1.667rem
}

.select2-container--ps-big-white-rounded .select2-selection--single,.select2-container--ps-transparent-border-bottom .select2-selection--single {
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 0;
    outline: 0
}

.select2-container--ps-big-white-rounded .select2-selection--single .select2-selection__rendered,.select2-container--ps-transparent-border-bottom .select2-selection--single .select2-selection__rendered {
    color: #fff;
    font-size: .882rem;
    height: 2.333rem;
    line-height: 115%;
    padding: .667rem 1.111rem .667rem 0
}

.select2-container--ps-big-white-rounded .select2-selection--single .select2-selection__clear,.select2-container--ps-transparent-border-bottom .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-size: 22px;
    font-weight: 700;
    margin-top: -7px;
    position: absolute;
    right: 43px;
    top: 50%
}

.select2-container--ps-big-white-rounded .select2-selection--single .select2-selection__arrow,.select2-container--ps-transparent-border-bottom .select2-selection--single .select2-selection__arrow {
    height: 2.222rem;
    position: absolute;
    right: 1px;
    top: 1px;
    width: .556rem
}

.select2-container--ps-big-white-rounded .select2-selection--single .select2-selection__arrow b,.select2-container--ps-transparent-border-bottom .select2-selection--single .select2-selection__arrow b {
    border-color: hsla(0,0%,100%,.7) transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0
}

.select2-container--ps-big-white-rounded .select2-selection--single .select2-selection__placeholder,.select2-container--ps-transparent-border-bottom .select2-selection--single .select2-selection__placeholder {
    color: hsla(0,0%,100%,.7)
}

.select2-container--ps-big-white-rounded.select2-container--disabled .select2-selection--single,.select2-container--ps-transparent-border-bottom.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: not-allowed!important
}

.select2-container--ps-big-white-rounded.select2-container--disabled .select2-selection--single .select2-selection__clear,.select2-container--ps-transparent-border-bottom.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none
}

.select2-container--ps-big-white-rounded.select2-container--disabled .select2-selection--multiple,.select2-container--ps-transparent-border-bottom.select2-container--disabled .select2-selection--multiple {
    background-color: #eee;
    cursor: default
}

.select2-container--ps-big-white-rounded.select2-container--disabled .select2-selection__choice__remove,.select2-container--ps-transparent-border-bottom.select2-container--disabled .select2-selection__choice__remove {
    display: none
}

.select2-container--ps-big-white-rounded.select2-container--open .select2-selection--single .select2-selection__arrow b,.select2-container--ps-transparent-border-bottom.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent hsla(0,0%,100%,.7);
    border-width: 0 4px 5px
}

.select2-container--ps-big-white-rounded.select2-container--open .select2-selection--single .select2-selection__rendered,.select2-container--ps-transparent-border-bottom.select2-container--open .select2-selection--single .select2-selection__rendered {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--ps-big-white-rounded.select2-container--open.select2-container--above .select2-selection--multiple,.select2-container--ps-big-white-rounded.select2-container--open.select2-container--above .select2-selection--single,.select2-container--ps-transparent-border-bottom.select2-container--open.select2-container--above .select2-selection--multiple,.select2-container--ps-transparent-border-bottom.select2-container--open.select2-container--above .select2-selection--single {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-container--ps-big-white-rounded.select2-container--open.select2-container--below .select2-selection--multiple,.select2-container--ps-big-white-rounded.select2-container--open.select2-container--below .select2-selection--single,.select2-container--ps-transparent-border-bottom.select2-container--open.select2-container--below .select2-selection--multiple,.select2-container--ps-transparent-border-bottom.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--ps-big-white-rounded .select2-selection--multiple,.select2-container--ps-transparent-border-bottom .select2-selection--multiple {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text
}

.select2-container--ps-big-white-rounded .select2-selection--multiple .select2-selection__rendered,.select2-container--ps-transparent-border-bottom .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%
}

.select2-container--ps-big-white-rounded .select2-selection--multiple .select2-selection__rendered li,.select2-container--ps-transparent-border-bottom .select2-selection--multiple .select2-selection__rendered li {
    list-style: none
}

.select2-container--ps-big-white-rounded .select2-selection--multiple .select2-selection__placeholder,.select2-container--ps-transparent-border-bottom .select2-selection--multiple .select2-selection__placeholder {
    color: #999;
    float: left;
    margin-top: 5px
}

.select2-container--ps-big-white-rounded .select2-selection--multiple .select2-selection__clear,.select2-container--ps-transparent-border-bottom .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: 700;
    margin-right: 10px;
    margin-top: 5px
}

.select2-container--ps-big-white-rounded .select2-selection--multiple .select2-selection__choice,.select2-container--ps-transparent-border-bottom .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px
}

.select2-container--ps-big-white-rounded .select2-selection--multiple .select2-selection__choice__remove,.select2-container--ps-transparent-border-bottom .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    margin-right: 2px
}

.select2-container--ps-big-white-rounded .select2-selection--multiple .select2-selection__choice__remove:hover,.select2-container--ps-transparent-border-bottom .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #333
}

.select2-container--ps-big-white-rounded.select2-container--focus .select2-selection--multiple,.select2-container--ps-transparent-border-bottom.select2-container--focus .select2-selection--multiple {
    border: 1px solid #000;
    outline: 0;
    outline: none!important
}

.select2-container--ps-big-white-rounded .select2-search--dropdown,.select2-container--ps-transparent-border-bottom .select2-search--dropdown {
    padding: 10px 10px 0
}

.select2-container--ps-big-white-rounded .select2-search--dropdown .select2-search__field,.select2-container--ps-transparent-border-bottom .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaacac;
    border-radius: 2px;
    font-size: 16px;
    outline: none;
    padding: 8px
}

.select2-container--ps-big-white-rounded .select2-search--inline .select2-search__field,.select2-container--ps-transparent-border-bottom .select2-search--inline .select2-search__field {
    -webkit-appearance: textfield;
    background: transparent;
    border: none;
    box-shadow: none;
    outline: 0
}

.select2-container--ps-big-white-rounded .select2-results>.select2-results__options,.select2-container--ps-transparent-border-bottom .select2-results>.select2-results__options {
    max-height: 200px;
    overflow-y: auto
}

.select2-container--ps-big-white-rounded .select2-results__option,.select2-container--ps-transparent-border-bottom .select2-results__option {
    color: #414141;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: -.01rem;
    line-height: 125%;
    padding: .3rem 1rem
}

.select2-container--ps-big-white-rounded .select2-results__option[role=group],.select2-container--ps-transparent-border-bottom .select2-results__option[role=group] {
    padding: 0
}

.select2-container--ps-big-white-rounded .select2-results__option[aria-disabled=true],.select2-container--ps-transparent-border-bottom .select2-results__option[aria-disabled=true] {
    color: #999
}

.select2-container--ps-big-white-rounded .select2-results__option[aria-selected=true],.select2-container--ps-transparent-border-bottom .select2-results__option[aria-selected=true] {
    background-color: #fff;
    color: #21578a
}

.select2-container--ps-big-white-rounded .select2-results__option .select2-results__option,.select2-container--ps-transparent-border-bottom .select2-results__option .select2-results__option {
    padding-left: 1em
}

.select2-container--ps-big-white-rounded .select2-results__option .select2-results__option .select2-results__group,.select2-container--ps-transparent-border-bottom .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0
}

.select2-container--ps-big-white-rounded .select2-results__option .select2-results__option .select2-results__option,.select2-container--ps-transparent-border-bottom .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em
}

.select2-container--ps-big-white-rounded .select2-results__option .select2-results__option .select2-results__option .select2-results__option,.select2-container--ps-transparent-border-bottom .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -2em;
    padding-left: 3em
}

.select2-container--ps-big-white-rounded .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option,.select2-container--ps-transparent-border-bottom .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -3em;
    padding-left: 4em
}

.select2-container--ps-big-white-rounded .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option,.select2-container--ps-transparent-border-bottom .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -4em;
    padding-left: 5em
}

.select2-container--ps-big-white-rounded .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option,.select2-container--ps-transparent-border-bottom .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -5em;
    padding-left: 6em
}

.select2-container--ps-big-white-rounded .select2-results__option:last-child,.select2-container--ps-transparent-border-bottom .select2-results__option:last-child {
    margin-bottom: 0
}

.select2-container--ps-big-white-rounded .select2-results__option--highlighted[aria-selected],.select2-container--ps-transparent-border-bottom .select2-results__option--highlighted[aria-selected] {
    background-color: #fff;
    color: #21578a
}

.select2-container--ps-big-white-rounded .select2-results__group,.select2-container--ps-transparent-border-bottom .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px
}

.select2-container--ps-big-white-rounded.select2-container .select2-selection--single,.select2-container--ps-transparent-border-bottom.select2-container .select2-selection--single {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid hsla(0,0%,100%,.4);
    border-radius: 0;
    height: auto;
    outline: none!important
}

.select2-container--ps-big-white-rounded.select2-container .select2-selection--single:active,.select2-container--ps-big-white-rounded.select2-container .select2-selection--single:focus,.select2-container--ps-transparent-border-bottom.select2-container .select2-selection--single:active,.select2-container--ps-transparent-border-bottom.select2-container .select2-selection--single:focus {
    outline: 1px solid hsla(0,0%,100%,.4)!important
}

.select2-container--ps-big-white-rounded.select2-container .select2-search--inline .select2-search__field,.select2-container--ps-transparent-border-bottom.select2-container .select2-search--inline .select2-search__field {
    font-weight: 300;
    padding: 6px 0 5px
}

.select2-container--ps-big-white-rounded.select2-container .select2-selection__rendered .select2-search--inline:first-child .select2-search__field,.select2-container--ps-transparent-border-bottom.select2-container .select2-selection__rendered .select2-search--inline:first-child .select2-search__field {
    margin-left: 8px;
    padding-bottom: 10px
}

.select2-container--ps-big-white-rounded .select2-results__options,.select2-container--ps-transparent-border-bottom .select2-results__options {
    color: #b21e5a;
    font-size: 16px;
    line-height: 22px
}

.select2-container--ps-big-white-rounded .select2-dropdown,.select2-container--ps-transparent-border-bottom .select2-dropdown {
    background-color: #f4f3f1;
    border: none;
    border-radius: 0 0 1.111rem 1.111rem;
    margin: 0;
    padding: .5rem 0 1rem
}

.select2-container--ps-big-white-rounded .select2-selection--single .select2-selection__rendered {
    border-radius: 2.778rem;
    color: #000;
    font-size: .889rem;
    height: 2.778rem;
    padding: .833rem 4.556rem .833rem 1.667rem
}

.select2-container--ps-big-white-rounded .select2-selection--single .select2-selection__rendered .select2-selection__placeholder {
    color: rgba(0,0,0,.7)
}

.select2-container--ps-big-white-rounded .select2-selection--single .select2-selection__placeholder {
    color: #1c1e20
}

.select2-container--ps-big-white-rounded .select2-selection--single .select2-selection__arrow {
    background-color: #717b2d;
    border-bottom-right-radius: 1.389rem;
    border-top-right-radius: 1.389rem;
    height: 100%;
    right: 0;
    top: 0;
    width: 3.333rem
}

.select2-container--ps-big-white-rounded .select2-selection--single .select2-selection__arrow b {
    border-width: .833rem .833rem 0;
    margin-left: -.833rem;
    margin-top: -.333rem
}

.select2-container--ps-big-white-rounded.select2-container--open .select2-selection--single .select2-selection__arrow {
    border-bottom-right-radius: 0
}

.select2-container--ps-big-white-rounded.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-width: 0 .833rem .833rem
}

.select2-container--ps-big-white-rounded.select2-container--open.select2-container--below .select2-selection--multiple {
    border-top-left-radius: 1.389rem;
    border-top-right-radius: 1.389rem
}

.select2-container--ps-big-white-rounded .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa
}

.select2-container--ps-big-white-rounded.select2-container .select2-selection--single {
    background-color: #fff;
    border-bottom: none;
    border-radius: 2.778rem;
    outline: none!important
}

.select2-container--ps-big-white-rounded.select2-container.select2-container--open .select2-selection--single {
    border-radius: 1.389rem 1.389rem 0 0
}

@media (max-width: 991.98px) {
    .drug-first-block .btn.green {
        margin:0;
        width: 100%
    }
}

.ps-search .module-hero {
    background-color: #f4f3f1;
    font-size: 1rem;
    padding-bottom: 1.055rem;
    padding-top: 2rem
}

.ps-search .module-hero h1 {
    padding-bottom: 1.556rem
}

.ps-search .main-content-box {
    letter-spacing: -.015rem;
    padding: 4.167rem 0;
    position: relative;
    width: 100%
}

.ps-search .search-results-input {
    display: block;
    margin-bottom: 2rem;
    position: relative;
    width: 100%
}

.ps-search .search-results-input .form-control {
    border: 1px solid #cdcdcd;
    border-radius: 56px;
    color: #414141;
    cursor: text;
    display: block;
    font-size: 19.998px;
    font-weight: 400;
    height: 56px;
    letter-spacing: normal;
    line-height: 23.004px;
    margin: 0;
    padding-bottom: 14.994px;
    padding-left: 30.006px;
    padding-right: 8.556rem!important;
    padding-top: 14.994px
}

.ps-search .search-results-input button {
    background-color: #717b2d;
    border: 0 #fff;
    border-radius: 0 54px 54px 0;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 16.002px;
    font-weight: 700;
    height: 53.9688px;
    letter-spacing: .05rem;
    line-height: 23.004px;
    margin: 0;
    padding: 14.994px 30.006px;
    position: absolute;
    right: 1px;
    text-align: center;
    top: 1px;
    width: 115.453px
}

.ps-search .single-search {
    border-bottom: 1px solid rgba(0,0,0,.2);
    color: #414141;
    display: block;
    font-size: .889rem;
    letter-spacing: .005rem;
    line-height: 1.444rem;
    margin-bottom: 1.389rem;
    padding-bottom: .556rem;
    position: relative
}

.ps-search .single-search p a {
    color: #414141;
    font-weight: 400;
    text-decoration: underline
}

.ps-search .single-search p em {
    font-style: normal;
    font-weight: 700
}

.ps-search .single-search h4 {
    color: #21578a;
    margin-bottom: .5rem;
    transition: all .3s ease-out
}

.ps-search .st-page {
    border-radius: .25rem;
    display: flex;
    list-style: none;
    padding-left: 0
}

.ps-search .st-page a {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-bottom-right-radius: 4.5px;
    border-top-right-radius: 4.5px;
    color: #007bff;
    cursor: pointer;
    display: block;
    font-size: 14.4px;
    font-weight: 400;
    height: 38px;
    letter-spacing: -.27px;
    line-height: 18px;
    list-style: none;
    margin-left: -1px;
    max-width: 100px;
    padding: 9px 13.5px;
    position: relative;
    text-align: left;
    text-decoration-color: #007bff;
    text-decoration-line: none;
    text-decoration-style: solid;
    transition-delay: 0s;
    transition-duration: .3s;
    transition-property: all;
    transition-timing-function: ease-out;
    width: auto
}

.view-board {
    padding-top: 30px
}

@media (min-width: 768px) {
    .view-board {
        padding-top:60px
    }
}

.view-networks.view-display-id-dental_plans .view__empty,.view-plans .view__empty {
    margin-top: 50px;
    text-align: center
}

.view-networks.view-display-id-dental_plans .views-exposed-form,.view-plans .views-exposed-form {
    font-size: .888rem;
    font-weight: 500;
    margin-top: 1rem;
    padding-bottom: 10px;
    position: relative
}

.view-networks.view-display-id-dental_plans .views-exposed-form .card-body,.view-networks.view-display-id-dental_plans .views-exposed-form .form-wrapper,.view-plans .views-exposed-form .card-body,.view-plans .views-exposed-form .form-wrapper {
    border-bottom: 1px solid #d1cdcb;
    margin-bottom: .8rem;
    padding-bottom: .8rem
}

.view-networks.view-display-id-dental_plans .views-exposed-form .form-item,.view-plans .views-exposed-form .form-item {
    align-items: center;
    display: flex;
    flex-wrap: wrap
}

.view-networks.view-display-id-dental_plans .views-exposed-form label,.view-plans .views-exposed-form label {
    font-size: 1.111rem;
    font-weight: 500;
    line-height: 125%;
    margin: 0
}

.view-networks.view-display-id-dental_plans .views-exposed-form .form-control,.view-networks.view-display-id-dental_plans .views-exposed-form .form-select,.view-plans .views-exposed-form .form-control,.view-plans .views-exposed-form .form-select {
    font-size: .888rem;
    font-weight: 500;
    margin-left: .5rem;
    width: auto
}


.view-networks.view-display-id-dental_plans .views-exposed-form .form-select:focus,.view-plans .views-exposed-form .form-select:focus {
    outline: none
}

.view-networks.view-display-id-dental_plans .views-exposed-form .description,.view-plans .views-exposed-form .description {
    font-size: .889rem;
    letter-spacing: -.025rem;
    margin-top: .75rem;
    width: 100%
}

.view-networks.view-display-id-dental_plans .views-exposed-form details.form-wrapper,.view-plans .views-exposed-form details.form-wrapper {
    border: 0;
    margin: 0!important;
    padding: 0
}

.view-networks.view-display-id-dental_plans .views-exposed-form details.form-wrapper summary,.view-plans .views-exposed-form details.form-wrapper summary {
    display: none
}

.view-networks.view-display-id-dental_plans .views-exposed-form details.form-wrapper .card-body,.view-plans .views-exposed-form details.form-wrapper .card-body {
    display: flex;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0
}

.view-networks.view-display-id-dental_plans .views-exposed-form details.form-wrapper .form-item,.view-plans .views-exposed-form details.form-wrapper .form-item {
    margin-bottom: 0
}

.view-networks.view-display-id-dental_plans .views-exposed-form details.form-wrapper .form-item+.form-item,.view-plans .views-exposed-form details.form-wrapper .form-item+.form-item {
    margin-top: .75rem
}

@media (min-width: 576px) {
    .view-networks.view-display-id-dental_plans .views-exposed-form details.form-wrapper .form-item+.form-item,.view-plans .views-exposed-form details.form-wrapper .form-item+.form-item {
        margin-left:2rem;
        margin-top: 0
    }
}

.view-networks.view-display-id-dental_plans .views-exposed-form details.form-wrapper .form-control,.view-networks.view-display-id-dental_plans .views-exposed-form details.form-wrapper .form-select,.view-networks.view-display-id-dental_plans .views-exposed-form details.form-wrapper label,.view-plans .views-exposed-form details.form-wrapper .form-control,.view-plans .views-exposed-form details.form-wrapper .form-select,.view-plans .views-exposed-form details.form-wrapper label {
    font-size: 1rem
}

@media (min-width: 768px) {
    .view-networks.view-display-id-dental_plans .views-exposed-form details.form-wrapper .form-control,.view-networks.view-display-id-dental_plans .views-exposed-form details.form-wrapper .form-select,.view-networks.view-display-id-dental_plans .views-exposed-form details.form-wrapper label,.view-plans .views-exposed-form details.form-wrapper .form-control,.view-plans .views-exposed-form details.form-wrapper .form-select,.view-plans .views-exposed-form details.form-wrapper label {
        font-size:.888rem
    }
}

.view-networks.view-display-id-dental_plans .views-exposed-form .js-form-type-select,.view-plans .views-exposed-form .js-form-type-select {
    position: relative
}

.view-networks.view-display-id-dental_plans .views-exposed-form .form-submit,.view-plans .views-exposed-form .form-submit {
    background-color: #fff;
    border-width: 1px;
    color: #717b2d;
    font-size: 1rem;
    font-weight: 300;
    margin-top: 1rem;
    padding: .35rem .85rem
}

@media (min-width: 576px) {
    .view-networks.view-display-id-dental_plans .views-exposed-form .form-submit,.view-plans .views-exposed-form .form-submit {
        margin-left:1rem;
        margin-top: 0
    }
}

.view-networks.view-display-id-dental_plans .views-exposed-form .form-submit:hover,.view-plans .views-exposed-form .form-submit:hover {
    background-color: #414141;
    border-color: #414141;
    color: #fff
}

.view-networks.view-display-id-dental_plans .views-exposed-form .form-control[name=zip],.view-plans .views-exposed-form .form-control[name=zip] {
    border: 0;
    border-bottom: 1px solid #21578a;
    border-radius: 0;
    color: #21578a;
    font-size: 1.333rem;
    font-weight: 300;
    height: auto;
    line-height: 1;
    padding: 0 0 5px;
    text-align: center;
    width: 80px
}

.view-networks.view-display-id-dental_plans .views-exposed-form .form-control[name=zip]:focus,.view-plans .views-exposed-form .form-control[name=zip]:focus {
    box-shadow: none;
    outline: none
}

.view-networks.view-display-id-dental_plans .views-exposed-form .form-composite,.view-plans .views-exposed-form .form-composite {
    border-radius: 0;
    border-width: 0 0 1px;
    display: block
}

.view-networks.view-display-id-dental_plans .views-exposed-form .form-composite .card-body,.view-networks.view-display-id-dental_plans .views-exposed-form .form-composite .card-header,.view-plans .views-exposed-form .form-composite .card-body,.view-plans .views-exposed-form .form-composite .card-header {
    border: 0;
    display: inline-block;
    float: left;
    margin: 0
}

.view-networks.view-display-id-dental_plans .views-exposed-form .form-composite .card-header,.view-plans .views-exposed-form .form-composite .card-header {
    background: none;
    border: 0;
    margin-right: 1rem;
    padding: 0;
    width: auto
}

.view-networks.view-display-id-dental_plans .views-exposed-form .form-composite .card-body,.view-plans .views-exposed-form .form-composite .card-body {
    padding: 0
}

.view-networks.view-display-id-dental_plans .views-exposed-form .form-composite legend,.view-plans .views-exposed-form .form-composite legend {
    color: #21578a;
    font-size: 1.2rem;
    line-height: 1
}

.view-networks.view-display-id-dental_plans .views-exposed-form .form-composite .form-radios,.view-plans .views-exposed-form .form-composite .form-radios {
    display: flex
}

.view-networks.view-display-id-dental_plans .views-exposed-form .js-form-type-radio,.view-plans .views-exposed-form .js-form-type-radio {
    align-items: center;
    border: 0;
    display: flex;
    margin-bottom: 0;
    padding-bottom: 0
}

.view-networks.view-display-id-dental_plans .views-exposed-form .js-form-type-radio+.js-form-type-radio,.view-plans .views-exposed-form .js-form-type-radio+.js-form-type-radio {
    margin-left: 1rem
}

.view-networks.view-display-id-dental_plans .views-exposed-form .js-form-type-radio input,.view-plans .views-exposed-form .js-form-type-radio input {
    margin: 0;
    position: static
}

.view-networks.view-display-id-dental_plans .views-exposed-form .js-form-type-radio label,.view-plans .views-exposed-form .js-form-type-radio label {
    color: #21578a
}

.view-contact-contacts .views-field-field-phone-direct {
    white-space: nowrap
}

@media (max-width: 767.98px) {
    .view-press-releases .views-row {
        margin-bottom:1rem
    }

    .view-press-releases .views-row .d-flex {
        flex-direction: column
    }

    .view-press-releases .views-row .d-flex>h2 {
        margin-bottom: 0
    }
}

.view-documents-forms .break-out {
    left: calc(-50vw - -50%);
    position: relative;
    width: 100vw
}

.view-documents-forms .view__header {
    border-bottom: 1px solid #cfcfcf;
    margin-bottom: 3rem;
    padding-bottom: 2rem
}

.view-documents-forms .header h1 {
    margin-bottom: 10px;
    margin-top: 7px
}

.view-documents-forms .header .container>div {
    padding-bottom: 30px!important
}

.view-documents-forms .header .container .header__form-wrapper form.views-exposed-form.bef-exposed-form {
    margin-bottom: 20px
}

.view-documents-forms .header .container .header__form-wrapper form.views-exposed-form.bef-exposed-form .form-actions {
    border: none
}

.view-documents-forms form[id^=views-exposed-form-documents-forms-page-] {
    padding-top: 41px
}

.view-documents-forms form[id^=views-exposed-form-documents-forms-page-] details {
    padding-bottom: 0
}

.view-documents-forms form[id^=views-exposed-form-documents-forms-page-] details>summary {
    list-style: none
}

.view-documents-forms form[id^=views-exposed-form-documents-forms-page-] details>summary::-webkit-details-marker {
    display: none
}

.view-documents-forms form[id^=views-exposed-form-documents-forms-page-] .card {
    border: none;
    margin: 0!important
}

.view-documents-forms form[id^=views-exposed-form-documents-forms-page-] .card summary.card-header {
    background-color: #fff;
    border-bottom: none;
    border-top: 1px solid #d1cdcb;
    color: #414141;
    font-size: 1.1111rem;
    padding: 1.41rem 1.25rem 1.41rem 0
}

.view-documents-forms form[id^=views-exposed-form-documents-forms-page-] .card summary.card-header:before {
    background-color: transparent;
    border: 2px solid rgba(0,0,0,.3);
    border-bottom: none;
    border-radius: 0;
    border-right: none;
    bottom: 0;
    box-sizing: content-box;
    content: "";
    display: block;
    height: 8px!important;
    left: auto;
    margin: auto;
    position: absolute;
    right: 23px;
    top: 0;
    transform: rotate(225deg);
    width: 8px!important
}

.view-documents-forms form[id^=views-exposed-form-documents-forms-page-] .card summary.card-header::-webkit-details-marker {
    display: none
}

.view-documents-forms form[id^=views-exposed-form-documents-forms-page-] .card summary.card-header::marker {
    display: none
}

.view-documents-forms form[id^=views-exposed-form-documents-forms-page-] .card .card-body {
    padding-bottom: 1.675rem!important;
    padding-left: 0;
    padding-top: 0
}

.view-documents-forms form[id^=views-exposed-form-documents-forms-page-] .card[open] .card-header:before {
    top: 8px;
    transform: rotate(45deg)
}

.view-documents-forms form[id^=views-exposed-form-documents-forms-page-] .form-actions {
    border-top: 1px solid #d1cdcb;
    padding-top: 1.675rem
}

.view-documents-forms form[id^=views-exposed-form-documents-forms-page-] .form-actions .form-submit {
    float: none;
    margin-left: 0;
    margin-right: 0;
    width: 100%
}

.view-documents-forms .no-results {
    margin-top: 57px
}

.view-plan-search .view__header {
    font-size: .888rem
}

.view-plan-search .view__header h3 {
    margin-bottom: 0
}

.view-plan-search .nav-tabs .nav-link {
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    color: #a0a0a0;
    font-size: .883rem;
    font-weight: 700;
    line-height: 20px;
    padding: 16px
}

@media (min-width: 992px) {
    .view-plan-search .nav-tabs .nav-link {
        font-size:1rem;
        padding: 20px
    }
}

.view-plan-search .nav-tabs .nav-link.active,.view-plan-search .nav-tabs .nav-link:hover {
    border-color: #21578a;
    color: #21578a
}

.view-plan-search table {
    color: #212529;
    font-size: .889rem;
    letter-spacing: .005rem;
    line-height: 1.222rem
}

.view-plan-search table tbody td:first-child,.view-plan-search table thead th:first-child {
    padding-left: 0
}

.view-plan-search table thead th {
    border-bottom: 1px solid #e0dfdd;
    border-top: 0;
    color: #414141;
    font-size: .833rem;
    font-weight: 400;
    line-height: 1rem;
    vertical-align: top
}

.view-plan-search table thead th strong {
    display: block;
    font-size: .889rem;
    font-weight: 700;
    margin-bottom: .278rem
}

.view-plan-search table thead th small {
    font-weight: 700
}

.view-plan-search table tbody td {
    border: 0
}

.view-plan-search table tbody td.views-field-office-visits {
    width: 30%
}

.view-plan-search .view__footer {
    border-top: 1px solid #cfcfcf;
    font-size: .722rem;
    line-height: 1rem;
    margin-top: 3rem;
    padding-top: 2rem
}

.view-plans .view__header {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 25px
}

@media (min-width: 768px) {
    .view-plans .view__header {
        margin-bottom:50px
    }
}

.view-plans #views-exposed-form-plans-employers .card-body .form-item-year .select,.view-plans #views-exposed-form-plans-individual .card-body .form-item-year .select {
    width: 100px
}

.view-plans .view__empty {
    margin-top: 50px;
    text-align: center
}

.view-plans .views-exposed-form {
    font-size: .888rem;
    font-weight: 500;
    margin-top: 1rem;
    padding-bottom: 10px;
    position: relative
}

.view-plans .views-exposed-form .card-body,.view-plans .views-exposed-form .form-wrapper {
    border-bottom: 1px solid #d1cdcb;
    margin-bottom: .8rem;
    padding-bottom: .8rem
}

.view-plans .views-exposed-form .form-item {
    align-items: center;
    display: flex;
    flex-wrap: wrap
}

@media (max-width: 767.98px) {
    .view-plans .views-exposed-form .form-item label {
        padding-bottom:15px
    }

    .view-plans .views-exposed-form .form-item .form-control[name=zip] {
        margin-left: 0;
        margin-right: 15px
    }

    .view-plans .views-exposed-form .form-item .form-submit {
        margin-top: 0
    }

    .view-plans .views-exposed-form details:before {
        border-bottom: 1px solid #d1cdcb;
        content: "Filters";
        margin-bottom: 10px;
        padding-bottom: 5px
    }

    .view-plans .views-exposed-form details .form-item {
        justify-content: space-between
    }

    .view-plans .views-exposed-form details .form-item label {
        padding-bottom: 0
    }

    .view-plans .views-exposed-form details .form-item .select {
        height: 28px!important
    }

    .view-plans .views-exposed-form details .form-item .select .select-styled {
        padding-top: 0!important
    }

    .view-plans .views-exposed-form details .form-item.form-item-year .select {
        width: 62px!important
    }
}

.view-plans .views-exposed-form .form-label,.view-plans .views-exposed-form label {
    font-size: 1.111rem;
    font-weight: 500;
    line-height: 125%;
    margin: 0
}

.view-plans .views-exposed-form .form-control,.view-plans .views-exposed-form .form-select,.view-plans .views-exposed-form .form-value {
    font-size: 14px;
    margin-left: .5rem;
    width: auto
}

@media (min-width: 768px) {
    .view-plans .views-exposed-form .form-control,.view-plans .views-exposed-form .form-select,.view-plans .views-exposed-form .form-value {
        font-size:.888rem
    }
}


.view-plans .views-exposed-form .form-select:focus {
    outline: none
}

.view-plans .views-exposed-form .description {
    font-size: .889rem;
    letter-spacing: -.025rem;
    margin-top: .75rem;
    width: 100%
}

.view-plans .views-exposed-form details.form-wrapper {
    border: 0;
    margin: 0!important;
    padding: 0
}

.view-plans .views-exposed-form details.form-wrapper summary {
    display: none
}

.view-plans .views-exposed-form details.form-wrapper .card-body {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0
}

@media (min-width: 768px) {
    .view-plans .views-exposed-form details.form-wrapper .card-body {
        flex-direction:row
    }
}

.view-plans .views-exposed-form details.form-wrapper .form-item {
    margin-bottom: 0
}

.view-plans .views-exposed-form details.form-wrapper .form-item+.form-item {
    margin-top: .75rem
}

@media (min-width: 576px) {
    .view-plans .views-exposed-form details.form-wrapper .form-item+.form-item {
        margin-left:2rem;
        margin-top: 0
    }
}

.view-plans .views-exposed-form details.form-wrapper .form-control,.view-plans .views-exposed-form details.form-wrapper .form-label,.view-plans .views-exposed-form details.form-wrapper .form-select,.view-plans .views-exposed-form details.form-wrapper label {
    font-size: 14px
}

@media (min-width: 768px) {
    .view-plans .views-exposed-form details.form-wrapper .form-control,.view-plans .views-exposed-form details.form-wrapper .form-label,.view-plans .views-exposed-form details.form-wrapper .form-select,.view-plans .views-exposed-form details.form-wrapper label {
        font-size:.888rem
    }
}

.view-plans .views-exposed-form .js-form-type-select {
    position: relative
}

.view-plans .views-exposed-form .form-submit {
    background-color: #fff;
    border-width: 1px;
    color: #717b2d;
    font-size: 1rem;
    font-weight: 300;
    margin-top: 1rem;
    padding: .35rem .85rem
}

@media (min-width: 576px) {
    .view-plans .views-exposed-form .form-submit {
        margin-left:1rem;
        margin-top: 0
    }
}

.view-plans .views-exposed-form .form-submit:hover {
    background-color: #414141;
    border-color: #414141;
    color: #fff
}

.view-plans .views-exposed-form .form-control[name=zip] {
    border: 0;
    border-bottom: 1px solid #21578a;
    border-radius: 0;
    color: #21578a;
    font-size: 1.333rem;
    font-weight: 300;
    height: auto;
    line-height: 1;
    padding: 0 0 5px;
    text-align: center;
    width: 80px
}

.view-plans .views-exposed-form .form-control[name=zip]:focus {
    box-shadow: none;
    outline: none
}

.view-plans .views-exposed-form .form-composite {
    border-radius: 0;
    border-width: 0 0 1px;
    display: block
}

@media (max-width: 767.98px) {
    .view-plans .views-exposed-form .form-composite .card-body {
        padding-top:15px!important;
        width: 100%
    }

    .view-plans .views-exposed-form .form-composite .card-body .form-radios .js-form-type-radio {
        margin-right: 2rem
    }
}

.view-plans .views-exposed-form .form-composite .card-body,.view-plans .views-exposed-form .form-composite .card-header {
    border: 0;
    display: inline-block;
    float: left;
    margin: 0
}

.view-plans .views-exposed-form .form-composite .card-header {
    background: none;
    border: 0;
    margin-right: 1rem;
    padding: 0;
    width: auto
}

.view-plans .views-exposed-form .form-composite .card-body {
    padding: 0
}

.view-plans .views-exposed-form .form-composite legend {
    color: #21578a;
    font-size: 1.2rem;
    line-height: 1
}

.view-plans .views-exposed-form .form-composite .form-radios {
    display: flex
}

.view-plans .views-exposed-form .js-form-type-radio {
    align-items: center;
    border: 0;
    display: flex;
    margin-bottom: 0;
    padding-bottom: 0
}

.view-plans .views-exposed-form .js-form-type-radio+.js-form-type-radio {
    margin-left: 1rem
}

.view-plans .views-exposed-form .js-form-type-radio input {
    margin: 0;
    position: static
}

.view-plans .views-exposed-form .js-form-type-radio label {
    color: #21578a
}

.view-plans .plan {
    margin-top: 25px
}

@media (min-width: 768px) {
    .view-plans .plan {
        margin-top:50px
    }
}

.view-plans .view__footer {
    margin: 50px auto
}

@media (min-width: 992px) {
    .view-plans .view__footer {
        margin:90px auto
    }
}

.view-plans .view__footer .view__content {
    border: 3px solid #dcdcdc;
    padding: 20px 30px
}

@media (min-width: 992px) {
    .view-plans .view__footer .view__content {
        padding:50px 75px
    }
}

.view-plans .view__footer .view__header {
    text-align: center
}

.view-plans .view__footer .view__header h2 {
    font-size: 1.333rem;
    margin-bottom: 0
}

@media (min-width: 768px) {
    .view-plans .view__footer .view__header h2 {
        font-size:2.1rem
    }
}

.view-plans .item-list {
    margin-top: 1rem
}

.view-plans .item-list ul {
    list-style: none outside none;
    margin: 0;
    padding: 0
}

.view-plans .item-list ul li {
    padding: 1.111rem 0
}

.view-plans .item-list ul li+li {
    border-top: 1px solid #e1e0de
}

.view-plans .item-list ul li a:first-child {
    display: block
}

.view-plans .view-disclaimers {
    border-top: 1px solid #cfcfcf;
    font-size: .722rem;
    line-height: 1rem;
    margin-top: 3rem;
    padding-top: 2rem
}

.view-plans .view-disclaimers .views-exposed-form {
    display: none
}

.view-plans .view-disclaimers p {
    margin-bottom: 1rem
}

.view-wellness .module-hero {
    background-color: #f4f3f1;
    font-size: 1rem;
    padding: 1.667rem 0
}

.view-wellness .views-exposed-form>.form-item:first-child {
    margin-bottom: 1rem
}

@media (min-width: 768px) {
    .view-wellness .views-exposed-form>.form-item:first-child {
        margin-bottom:2rem
    }
}


@media (min-width: 768px) {
    .view-wellness .views-exposed-form .form-control {
        padding:15px 45px 15px 15px
    }
}

.view-wellness .views-exposed-form details {
    background: none;
    border: 0;
    border-radius: 0;
    border-top: 1px solid #d1cdcb;
    margin-bottom: 0!important;
    margin-top: 0!important;
    padding-bottom: 20px
}

.view-wellness .views-exposed-form details summary {
    background: none;
    border: 0;
    border-radius: 0;
    color: #414141;
    font-size: .833rem;
    font-weight: 700;
    list-style: none;
    outline: none;
    padding: 20px 40px 0 0;
    position: relative
}

@media (min-width: 768px) {
    .view-wellness .views-exposed-form details summary {
        font-size:1rem
    }
}

.view-wellness .views-exposed-form details summary:before {
    display: none
}

.view-wellness .views-exposed-form details summary:after {
    align-items: center;
    bottom: 0;
    content: "+";
    display: flex;
    font-size: 1rem;
    font-weight: 400;
    position: absolute;
    right: 10px;
    top: 20px
}

.view-wellness .views-exposed-form details summary::-webkit-details-marker {
    display: none
}

.view-wellness .views-exposed-form details[open] summary {
    color: #21578a
}

.view-wellness .views-exposed-form details[open] summary:after {
    content: "-";
    right: 7px
}

.view-wellness .views-exposed-form .card-body {
    padding: 20px 10px
}

.view-wellness .views-exposed-form .card-body .bef-toggle {
    display: none;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px
}

.view-wellness .views-exposed-form .card-body .bef-toggle.clear-all {
    display: block
}

.view-wellness .views-exposed-form .card-body label {
    font-size: .888rem
}

.view-wellness .view__attachment {
    margin-bottom: 30px
}

.view-faq .accordion-tree .nav-item .accordion-item {
    border: 0;
    margin: 0;
    padding: 0
}

.view-faq .accordion-tree .nav-item .accordion-item__title {
    color: #495057;
    font-size: .887rem;
    font-weight: 400;
    padding: 0 1rem 0 1.2rem
}

.view-faq .accordion-tree .nav-item .accordion-item__title:before {
    background-color: transparent;
    color: #21578a;
    font-size: 1rem;
    height: auto;
    left: 0;
    line-height: 1;
    right: auto;
    top: 2px;
    width: auto
}

.view-faq .accordion-tree .nav-item .accordion-item__title[aria-expanded=true] {
    color: #000
}

.view-faq .accordion-tree .nav-item .accordion-item__content {
    margin: 0;
    padding: 0 2rem 0 1.2rem
}

.view-faq .accordion-tree .views-field-body {
    font-size: .887rem;
    margin-top: .75rem
}

.view-networks.view-display-id-dental_plans .view__header {
    font-weight: 500;
    margin-bottom: 1rem
}

.view-networks.view-display-id-dental_plans .view__header p {
    margin: 0
}

.view-networks.view-display-id-dental_plans .views-exposed-form {
    padding-bottom: 0
}

.view-networks.view-display-id-dental_plans .views-exposed-form .form-item-business-line {
    border-bottom: 1px solid #d1cdcb;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem
}

.view-networks.view-display-id-dental_plans .views-exposed-form .form-item-business-line.form-check {
    border: 0;
    margin-bottom: 0;
    margin-top: 1rem;
    padding-bottom: 0
}

@media (min-width: 768px) {
    .view-networks.view-display-id-dental_plans .views-exposed-form .form-item-business-line.form-check {
        margin-top:0
    }
}

.view-networks.view-display-id-dental_plans .views-exposed-form .form-item-business-line label {
    color: #21578a;
    font-weight: 700
}

@media (min-width: 768px) {
    .view-networks.view-display-id-dental_plans .views-exposed-form .form-item-business-line label {
        font-size:1.222rem
    }
}

.view-networks.view-display-id-dental_plans .views-exposed-form .form-item-business-line .form-select {
    border-bottom: 1px solid #21578a;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 700;
    margin: 1rem 0 0;
    padding-bottom: 5px;
    padding-left: 8px
}

@media (min-width: 768px) {
    .view-networks.view-display-id-dental_plans .views-exposed-form .form-item-business-line .form-select {
        margin:0 0 0 .5rem
    }
}

.view-networks.view-display-id-dental_plans .views-row {
    margin-top: 25px
}

@media (min-width: 768px) {
    .view-networks.view-display-id-dental_plans .views-row {
        margin-top:50px
    }
}

.section-view--networks:not(.section-view--networks--dental_plans) {
    margin: 30px 10px;
    position: relative
}

@media (min-width: 576px) {
    .section-view--networks:not(.section-view--networks--dental_plans) {
        margin-left:20px;
        margin-right: 20px
    }
}

@media (min-width: 992px) {
    .section-view--networks:not(.section-view--networks--dental_plans) {
        margin:60px 0
    }
}

.section-view--networks:not(.section-view--networks--dental_plans):after,.section-view--networks:not(.section-view--networks--dental_plans):before {
    background-color: #fff;
    content: "";
    display: block;
    height: 8rem;
    left: 0;
    position: absolute;
    right: 0;
    width: 100%;
    z-index: 1
}

.section-view--networks:not(.section-view--networks--dental_plans):before {
    top: 0
}

.section-view--networks:not(.section-view--networks--dental_plans):after {
    bottom: 0
}

.section-view--networks:not(.section-view--networks--dental_plans)>* {
    position: relative;
    z-index: 100
}

.section-view--networks:not(.section-view--networks--dental_plans)>.container,.section-view--networks:not(.section-view--networks--dental_plans)>header>.container {
    background: #fff;
    box-shadow: 0 10px 19px rgba(0,0,0,.15);
    padding: 30px 10px 20px
}

@media (min-width: 576px) {
    .section-view--networks:not(.section-view--networks--dental_plans)>.container,.section-view--networks:not(.section-view--networks--dental_plans)>header>.container {
        padding:40px 20px
    }
}

@media (min-width: 768px) {
    .section-view--networks:not(.section-view--networks--dental_plans)>.container,.section-view--networks:not(.section-view--networks--dental_plans)>header>.container {
        padding:60px 30px
    }
}

.section-view--networks:not(.section-view--networks--dental_plans)>header>.container {
    border-radius: 1.667rem 1.667rem 0 0
}

@media (min-width: 768px) {
    .section-view--networks:not(.section-view--networks--dental_plans)>header>.container {
        padding-bottom:20px
    }
}

.section-view--networks:not(.section-view--networks--dental_plans)>header .row {
    margin: 0 auto!important;
    max-width: 725px
}

.section-view--networks:not(.section-view--networks--dental_plans)>header h2 {
    font-size: 1.833rem
}

@media (min-width: 768px) {
    .section-view--networks:not(.section-view--networks--dental_plans)>header h2 {
        font-size:3.333rem
    }
}

.section-view--networks:not(.section-view--networks--dental_plans)>.container {
    border-radius: 0 0 1.667rem 1.667rem;
    padding-top: 20px;
    position: relative
}

.section-view--networks:not(.section-view--networks--dental_plans)>.container:before {
    background-color: #fff;
    content: "";
    height: 20px;
    left: 0;
    position: absolute;
    right: 0;
    top: -20px
}

.section-view--networks:not(.section-view--networks--dental_plans) .non-dental .views-exposed-form {
    margin: 0 auto 20px;
    max-width: 250px;
    position: relative
}

@media (min-width: 768px) {
    .section-view--networks:not(.section-view--networks--dental_plans) .non-dental .views-exposed-form {
        max-width:450px
    }
}

@media (min-width: 992px) {
    .section-view--networks:not(.section-view--networks--dental_plans) .non-dental .views-exposed-form {
        margin-bottom:40px
    }
}

.section-view--networks:not(.section-view--networks--dental_plans) .non-dental .views-exposed-form .form-item label {
    display: none
}

.section-view--networks:not(.section-view--networks--dental_plans) .non-dental .views-exposed-form .form-item .form-control {
    border: 1px solid #d3d3d3;
    border-radius: 56px;
    color: #716f6f;
    font-size: 1rem;
    font-weight: 500;
    height: 46px;
    line-height: 22px;
    padding: 16px 80px 16px 30px
}

@media (min-width: 768px) {
    .section-view--networks:not(.section-view--networks--dental_plans) .non-dental .views-exposed-form .form-item .form-control {
        font-size:1.111rem;
        height: 56px
    }
}

.section-view--networks:not(.section-view--networks--dental_plans) .non-dental .views-exposed-form .form-item-group {
    display: none
}

.section-view--networks:not(.section-view--networks--dental_plans) .non-dental .views-exposed-form .form-actions {
    position: absolute;
    right: 0;
    top: 0
}

.section-view--networks:not(.section-view--networks--dental_plans) .non-dental .views-exposed-form .form-actions .form-submit {
    border-radius: 0 56px 56px 0;
    height: 46px;
    padding: 10px 0;
    width: 65px
}

@media (min-width: 768px) {
    .section-view--networks:not(.section-view--networks--dental_plans) .non-dental .views-exposed-form .form-actions .form-submit {
        height:56px;
        padding: 14px 0
    }
}

.section-view--networks:not(.section-view--networks--dental_plans) .nav-tabs {
    border-bottom: 1px solid #878787;
    display: grid;
    margin-bottom: 2.5rem;
    margin-top: 2rem
}

.section-view--networks:not(.section-view--networks--dental_plans) .nav-tabs .nav-item {
    margin: 0
}

.section-view--networks:not(.section-view--networks--dental_plans) .nav-tabs .nav-link {
    align-items: center;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    color: #a0a0a0;
    display: flex;
    flex-direction: column;
    font-size: .75rem;
    font-weight: 300;
    height: 100%;
    justify-content: space-between;
    padding: 10px 5px 20px;
    position: relative
}

@media (min-width: 768px) {
    .section-view--networks:not(.section-view--networks--dental_plans) .nav-tabs .nav-link {
        font-size:1rem;
        padding: 10px 10px 30px
    }
}

.section-view--networks:not(.section-view--networks--dental_plans) .nav-tabs .nav-link:after {
    background-color: #d1cdcb;
    border-radius: 50%;
    bottom: -8px;
    content: "";
    height: 16px;
    left: 50%;
    margin-left: -8px;
    opacity: 1;
    position: absolute;
    width: 16px
}

.section-view--networks:not(.section-view--networks--dental_plans) .nav-tabs .nav-link img {
    filter: grayscale(1);
    height: auto;
    margin-bottom: 10px;
    max-width: 45px;
    opacity: .6;
    width: 80%
}

@media (min-width: 768px) {
    .section-view--networks:not(.section-view--networks--dental_plans) .nav-tabs .nav-link img {
        margin-bottom:20px;
        max-width: 75px
    }
}

@media (min-width: 992px) {
    .section-view--networks:not(.section-view--networks--dental_plans) .nav-tabs .nav-link img {
        max-width:95px
    }
}

.section-view--networks:not(.section-view--networks--dental_plans) .nav-tabs .nav-link.active {
    color: #21578a;
    font-weight: 500
}

.section-view--networks:not(.section-view--networks--dental_plans) .nav-tabs .nav-link.active:after {
    background-color: #21578a
}

.section-view--networks:not(.section-view--networks--dental_plans) .nav-tabs .nav-link.active img {
    filter: none;
    opacity: 1
}

@media (-ms-high-contrast:none) {
    .section-view--networks:not(.section-view--networks--dental_plans) .nav-tabs {
        display: table;
        width: 100%
    }

    .section-view--networks:not(.section-view--networks--dental_plans) .nav-tabs .nav-item {
        display: table-cell
    }
}

.view-articles h1 {
    margin: 12px 0
}

.view-articles .article__date {
    font-size: 14px
}

.view-articles .view__content .card-container .style-as-tag a {
    background: #f4f3f1;
    border-radius: 8px;
    color: #414141;
    font-size: 12px;
    line-height: 40px;
    margin-right: 10px;
    padding: 8px;
    text-decoration: none;
    white-space: nowrap;
    width: -moz-fit-content;
    width: fit-content
}

.view-articles .view__content .card-container .style-as-tag a:active,.view-articles .view__content .card-container .style-as-tag a:hover {
    text-decoration: underline
}

.view-articles .views-exposed-form>.form-item:first-child {
    margin-bottom: 1rem
}

@media (min-width: 768px) {
    .view-articles .views-exposed-form>.form-item:first-child {
        margin-bottom:2rem
    }
}

@media (min-width: 768px) {
    .view-articles .views-exposed-form .form-control {
        padding:15px 45px 15px 15px
    }
}

.view-articles .views-exposed-form details,.view-articles .views-exposed-form fieldset {
    background: none;
    border: 0;
    border-radius: 0;
    border-top: 1px solid #d1cdcb;
    margin-bottom: 0!important;
    margin-top: 0!important;
    padding-bottom: 20px
}

.view-articles .views-exposed-form details .card-header,.view-articles .views-exposed-form details summary,.view-articles .views-exposed-form fieldset .card-header,.view-articles .views-exposed-form fieldset summary {
    background: none;
    border: 0;
    border-radius: 0;
    color: #414141;
    font-size: .833rem;
    font-weight: 700;
    list-style: none;
    outline: none;
    padding: 20px 40px 0 0;
    position: relative
}

@media (min-width: 768px) {
    .view-articles .views-exposed-form details .card-header,.view-articles .views-exposed-form details summary,.view-articles .views-exposed-form fieldset .card-header,.view-articles .views-exposed-form fieldset summary {
        font-size:1rem
    }
}

.view-articles .views-exposed-form details .card-header:before,.view-articles .views-exposed-form details summary:before,.view-articles .views-exposed-form fieldset .card-header:before,.view-articles .views-exposed-form fieldset summary:before {
    display: none
}

.view-articles .views-exposed-form details .card-header:after,.view-articles .views-exposed-form details summary:after,.view-articles .views-exposed-form fieldset .card-header:after,.view-articles .views-exposed-form fieldset summary:after {
    align-items: center;
    bottom: 0;
    content: "+";
    display: none;
    font-size: 1rem;
    font-weight: 400;
    position: absolute;
    right: 10px;
    top: 20px
}

.view-articles .views-exposed-form details summary::-webkit-details-marker,.view-articles .views-exposed-form fieldset summary::-webkit-details-marker {
    display: none
}

.view-articles .views-exposed-form details[open] summary,.view-articles .views-exposed-form fieldset[open] summary {
    color: #21578a
}

.view-articles .views-exposed-form details[open] summary:after,.view-articles .views-exposed-form fieldset[open] summary:after {
    content: "-";
    right: 7px
}

.view-articles .views-exposed-form .card-body {
    padding: 20px 10px 0
}

.view-articles .views-exposed-form .card-body label {
    font-size: .888rem
}

.view-articles .views-exposed-form .card-body .form-check {
    margin: 0 0 5px
}

.view-articles .view__attachment {
    margin-bottom: 30px
}

.view-articles .view__content {
    margin-bottom: 3rem
}

.view-articles .view__content .card-container a {
    text-decoration: underline
}

.video-embed-field-responsive-video {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 56.25%
}

@media (max-width: 767.98px) {
    .video-embed-field-responsive-video {
        padding-bottom:56.25%!important;
        width: 100%!important
    }
}

.video-embed-field-responsive-video.video-embed-field-provider-wistia-video {
    padding-bottom: 0
}

@media (max-width: 767.98px) {
    .video-embed-field-responsive-video.video-embed-field-provider-wistia-video {
        padding-bottom:0!important
    }
}

.video-embed-field-responsive-video iframe {
    bottom: 0;
    height: 100%;
    left: 0;
    margin: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

@media (min-width: 768px) {
    .video-listing {
        -moz-column-count:2;
        column-count: 2;
        -moz-column-gap: 40px;
        column-gap: 40px
    }
}

.video-listing .video-list {
    margin-bottom: 2rem
}

.navbar .form-inline .form-actions {
    display: none
}

.toolbar-oriented .toolbar-bar {
    z-index: 1200
}

.toolbar-horizontal .toolbar-menu.nav {
    float: left
}

fieldset.card legend {
    font-size: 1rem
}

.form-check {
    margin-bottom: 1rem
}

.form-checkboxes .form-check,.form-radios .form-check {
    margin-bottom: 0
}

.forum__last-reply {
    width: 20%
}

.forum-list__forum {
    width: 60%
}

#drupal-off-canvas {
    box-sizing: initial
}

.text-align-center
{
    text-align: center;
}

.open-secure-section
{
    border-top: 3px solid #717b2d;
}

.banner-account-subtitle {
    color: #0d1c3d;
    line-height: 30px;
    letter-spacing: 0px;
    width: 553px;
    margin: 0px 6.3px 0 0;
}

.api-description
{
    line-height: 30px;
}

.step-sub-title {
    font-size: 20px;
    line-height: 27px;
    color: #000;
}

.navbar-div {
    width: 100%;
    height: 55px;
    display: flex;
    flex-direction: row;
    align-items: center;
    /*background-color: #e7f0f5;*/
    background-color: #f8fafc;
    padding-left: 5px;
    padding-top: 14px;
    padding-right: 10px;
    -moz-column-gap: 39px;
    column-gap: 39px;
}

.navbar_top {
    display: flex;
    flex-direction: row;
    height: 100%;
    -moz-column-gap: 39px;
    column-gap: 39px;
}

.page-header-div {
    height: 108px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 3em;
    margin-left: 6em;
    margin-right: 6em;
}