/*! @algolia/autocomplete-theme-classic 1.5.0 | MIT License | © Algolia, Inc. and contributors | https://github.com/algolia/autocomplete */
:root {
    --aa-search-input-height: 44px;
    --aa-input-icon-size: 20px;
    --aa-base-unit: 16;
    --aa-spacing-factor: 1;
    --aa-spacing: calc(var(--aa-base-unit)*var(--aa-spacing-factor)*1px);
    --aa-spacing-half: calc(var(--aa-spacing)/2);
    --aa-panel-max-height: 650px;
    --aa-base-z-index: 9999;
    --aa-font-size: calc(var(--aa-base-unit)*1px);
    --aa-font-family: inherit;
    --aa-font-weight-medium: 500;
    --aa-font-weight-semibold: 600;
    --aa-font-weight-bold: 700;
    --aa-icon-size: 20px;
    --aa-icon-stroke-width: 1.6;
    --aa-icon-color-rgb: 119,119,163;
    --aa-icon-color-alpha: 1;
    --aa-action-icon-size: 20px;
    --aa-text-color-rgb: 38,38,39;
    --aa-text-color-alpha: 1;
    --aa-primary-color-rgb: 62,52,211;
    --aa-primary-color-alpha: 0.2;
    --aa-muted-color-rgb: 128,126,163;
    --aa-muted-color-alpha: 0.6;
    --aa-panel-border-color-rgb: 128,126,163;
    --aa-panel-border-color-alpha: 0.3;
    --aa-input-border-color-rgb: 128,126,163;
    --aa-input-border-color-alpha: 0.8;
    --aa-background-color-rgb: 255,255,255;
    --aa-background-color-alpha: 1;
    --aa-input-background-color-rgb: 255,255,255;
    --aa-input-background-color-alpha: 1;
    --aa-selected-color-rgb: 179,173,214;
    --aa-selected-color-alpha: 0.205;
    --aa-description-highlight-background-color-rgb: 245,223,77;
    --aa-description-highlight-background-color-alpha: 0.5;
    --aa-detached-media-query: (max-width:680px);
    --aa-detached-modal-media-query: (min-width:680px);
    --aa-detached-modal-max-width: 680px;
    --aa-detached-modal-max-height: 500px;
    --aa-overlay-color-rgb: 115,114,129;
    --aa-overlay-color-alpha: 0.4;
    --aa-panel-shadow: 0 0 0 1px rgba(35,38,59,0.1),0 6px 16px -4px rgba(35,38,59,0.15);
    --aa-scrollbar-width: 13px;
    --aa-scrollbar-track-background-color-rgb: 234,234,234;
    --aa-scrollbar-track-background-color-alpha: 1;
    --aa-scrollbar-thumb-background-color-rgb: var(--aa-background-color-rgb);
    --aa-scrollbar-thumb-background-color-alpha: 1
}

@media (hover: none) and (pointer: coarse) {
    :root {
        --aa-spacing-factor:1.2;
        --aa-action-icon-size: 22px
    }
}

body.dark,body[data-theme=dark] {
    --aa-text-color-rgb: 183,192,199;
    --aa-primary-color-rgb: 146,138,255;
    --aa-muted-color-rgb: 146,138,255;
    --aa-input-background-color-rgb: 0,3,9;
    --aa-background-color-rgb: 21,24,42;
    --aa-selected-color-rgb: 146,138,255;
    --aa-selected-color-alpha: 0.25;
    --aa-description-highlight-background-color-rgb: 0 255 255;
    --aa-description-highlight-background-color-alpha: 0.25;
    --aa-icon-color-rgb: 119,119,163;
    --aa-panel-shadow: inset 1px 1px 0 0 #2c2e40,0 3px 8px 0 #000309;
    --aa-scrollbar-track-background-color-rgb: 44,46,64;
    --aa-scrollbar-thumb-background-color-rgb: var(--aa-background-color-rgb)
}

.aa-Autocomplete *,.aa-DetachedFormContainer *,.aa-Panel * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.aa-Autocomplete,.aa-DetachedFormContainer,.aa-Panel {
    color: #262627;
    color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
    font-family: inherit;
    font-family: var(--aa-font-family);
    font-size: 16px;
    font-size: var(--aa-font-size);
    font-weight: 400;
    line-height: 1em;
    margin: 0;
    padding: 0;
    text-align: left
}

.aa-Form {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    background-color: rgba(var(--aa-input-background-color-rgb), var(--aa-input-background-color-alpha));
    border: 1px solid rgba(128,126,163,0.8);
    border: 1px solid rgba(var(--aa-input-border-color-rgb), var(--aa-input-border-color-alpha));
    border-radius: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1em;
    margin: 0;
    position: relative;
    width: 100%
}

.aa-Form[focus-within] {
    border-color: #3e34d3;
    border-color: rgba(var(--aa-primary-color-rgb), 1);
    -webkit-box-shadow: 0 0 0 2px rgba(62,52,211,0.2),inset 0 0 0 2px rgba(62,52,211,0.2);
    box-shadow: 0 0 0 2px rgba(62,52,211,0.2),inset 0 0 0 2px rgba(62,52,211,0.2);
    -webkit-box-shadow: rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 2px,inset rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 2px;
    box-shadow: rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 2px,inset rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 2px;
    outline: medium none currentColor
}

.aa-Form:focus-within {
    border-color: #3e34d3;
    border-color: rgba(var(--aa-primary-color-rgb), 1);
    -webkit-box-shadow: 0 0 0 2px rgba(62,52,211,0.2),inset 0 0 0 2px rgba(62,52,211,0.2);
    box-shadow: 0 0 0 2px rgba(62,52,211,0.2),inset 0 0 0 2px rgba(62,52,211,0.2);
    -webkit-box-shadow: rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 2px,inset rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 2px;
    box-shadow: rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 2px,inset rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 2px;
    outline: medium none currentColor
}

.aa-InputWrapperPrefix {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 44px;
    height: var(--aa-search-input-height);
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.aa-Label,.aa-LoadingIndicator {
    cursor: auto;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 100%;
    padding: 0;
    text-align: left
}

.aa-Label svg,.aa-LoadingIndicator svg {
    color: #3e34d3;
    color: rgba(var(--aa-primary-color-rgb), 1);
    height: auto;
    max-height: 20px;
    max-height: var(--aa-input-icon-size);
    stroke-width: 1.6;
    stroke-width: var(--aa-icon-stroke-width);
    width: 20px;
    width: var(--aa-input-icon-size)
}

.aa-LoadingIndicator,.aa-SubmitButton {
    height: 100%;
    padding-left: 11px;
    padding-left: calc(var(--aa-spacing)*0.75 - 1px);
    padding-right: 8px;
    padding-right: var(--aa-spacing-half);
    width: 47px;
    width: calc(var(--aa-spacing)*1.75 + var(--aa-icon-size) - 1px)
}

@media (hover: none) and (pointer: coarse) {
    .aa-LoadingIndicator,.aa-SubmitButton {
        padding-left:3px;
        padding-left: calc(var(--aa-spacing-half)/2 - 1px);
        width: 39px;
        width: calc(var(--aa-icon-size) + var(--aa-spacing)*1.25 - 1px)
    }
}

.aa-SubmitButton {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: 0;
    margin: 0
}

.aa-LoadingIndicator {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.aa-LoadingIndicator[hidden] {
    display: none
}

.aa-InputWrapper {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    position: relative;
    width: 100%
}

.aa-Input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: 0;
    color: #262627;
    color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
    font: inherit;
    height: 44px;
    height: var(--aa-search-input-height);
    padding: 0;
    width: 100%
}

.aa-Input::-moz-placeholder {
    color: rgba(128,126,163,0.6);
    color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
    opacity: 1
}

.aa-Input:-ms-input-placeholder {
    color: rgba(128,126,163,0.6);
    color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
    opacity: 1
}

.aa-Input::-webkit-input-placeholder {
    color: rgba(128,126,163,0.6);
    color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
    opacity: 1
}

.aa-Input::-ms-input-placeholder {
    color: rgba(128,126,163,0.6);
    color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
    opacity: 1
}

.aa-Input::placeholder {
    color: rgba(128,126,163,0.6);
    color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
    opacity: 1
}

.aa-Input:focus {
    border-color: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none
}

.aa-Input::-webkit-search-cancel-button,.aa-Input::-webkit-search-decoration,.aa-Input::-webkit-search-results-button,.aa-Input::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none
}

.aa-InputWrapperSuffix {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 44px;
    height: var(--aa-search-input-height);
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4
}

.aa-ClearButton {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: none;
    border: 0;
    color: rgba(128,126,163,0.6);
    color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0 12.8333333333px;
    padding: 0 calc(var(--aa-spacing)*0.83333 - .5px)
}

@media (hover: none) and (pointer: coarse) {
    .aa-ClearButton {
        padding:0 10.1666666667px;
        padding: 0 calc(var(--aa-spacing)*0.66667 - .5px)
    }
}

.aa-ClearButton:focus,.aa-ClearButton:hover {
    color: #262627;
    color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha))
}

.aa-ClearButton[hidden] {
    display: none
}

.aa-ClearButton svg {
    stroke-width: 1.6;
    stroke-width: var(--aa-icon-stroke-width);
    width: 20px;
    width: var(--aa-icon-size)
}

.aa-Panel {
    background-color: #fff;
    background-color: rgba(var(--aa-background-color-rgb), var(--aa-background-color-alpha));
    border-radius: 4px;
    border-radius: calc(var(--aa-spacing)/4);
    -webkit-box-shadow: 0 0 0 1px rgba(35,38,59,0.1),0 6px 16px -4px rgba(35,38,59,0.15);
    box-shadow: 0 0 0 1px rgba(35,38,59,0.1),0 6px 16px -4px rgba(35,38,59,0.15);
    -webkit-box-shadow: var(--aa-panel-shadow);
    box-shadow: var(--aa-panel-shadow);
    margin: 8px 0 0;
    overflow: hidden;
    position: absolute;
    -webkit-transition: opacity .2s ease-in,-webkit-filter .2s ease-in;
    transition: opacity .2s ease-in,-webkit-filter .2s ease-in;
    transition: opacity .2s ease-in,filter .2s ease-in;
    transition: opacity .2s ease-in,filter .2s ease-in,-webkit-filter .2s ease-in;
    z-index: 10; 
    width: 65%;
}

@media (max-width: 991.98px) {
    .aa-Panel {
        width: 80%;
    }
}

.aa-Panel-Toggle {
    display: none;
}

@media screen and (prefers-reduced-motion) {
    .aa-Panel {
        -webkit-transition: none;
        transition: none
    }
}

.aa-Panel button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: 0;
    margin: 0;
    padding: 0
}

.aa-PanelLayout {
    height: 100%;
    margin: 0;
    max-height: 650px;
    max-height: var(--aa-panel-max-height);
    overflow-y: auto;
    padding: 0;
    position: relative;
    text-align: left
}

.aa-PanelLayoutColumns--twoGolden {
    display: grid;
    grid-template-columns: 39.2% auto;
    overflow: hidden;
    padding: 0
}

.aa-PanelLayoutColumns--two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    padding: 0
}

.aa-PanelLayoutColumns--three {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    padding: 0
}

.aa-Panel--stalled .aa-Source {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: .8
}

.aa-Panel--scrollable {
    margin: 0;
    max-height: 650px;
    max-height: var(--aa-panel-max-height);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 8px;
    padding: var(--aa-spacing-half);
    scrollbar-color: #fff #eaeaea;
    scrollbar-color: rgba(var(--aa-scrollbar-thumb-background-color-rgb), var(--aa-scrollbar-thumb-background-color-alpha)) rgba(var(--aa-scrollbar-track-background-color-rgb), var(--aa-scrollbar-track-background-color-alpha));
    scrollbar-width: thin
}

.aa-Panel--scrollable::-webkit-scrollbar {
    width: 13px;
    width: var(--aa-scrollbar-width)
}

.aa-Panel--scrollable::-webkit-scrollbar-track {
    background-color: #eaeaea;
    background-color: rgba(var(--aa-scrollbar-track-background-color-rgb), var(--aa-scrollbar-track-background-color-alpha))
}

.aa-Panel--scrollable::-webkit-scrollbar-thumb {
    background-color: #fff;
    background-color: rgba(var(--aa-scrollbar-thumb-background-color-rgb), var(--aa-scrollbar-thumb-background-color-alpha));
    border-radius: 9999px;
    border: 3px solid #eaeaea;
    border-color: rgba(var(--aa-scrollbar-track-background-color-rgb), var(--aa-scrollbar-track-background-color-alpha));
    border-right: 2px solid rgba(var(--aa-scrollbar-track-background-color-rgb), var(--aa-scrollbar-track-background-color-alpha))
}

.aa-Source {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%
}

.aa-Source:empty {
    display: none
}

.aa-SourceNoResults {
    font-size: 1em;
    margin: 0;
    padding: 16px;
    padding: var(--aa-spacing)
}

.aa-List {
    list-style: none;
    margin: 0
}

.aa-List,.aa-SourceHeader {
    padding: 0;
    position: relative
}

.aa-SourceHeader {
    margin: 8px .5em 8px 0;
    margin: var(--aa-spacing-half) 0.5em var(--aa-spacing-half) 0
}

.aa-SourceHeader:empty {
    display: none
}

.aa-SourceHeaderTitle {
    background: #fff;
    background: rgba(var(--aa-background-color-rgb), var(--aa-background-color-alpha));
    color: #3e34d3;
    color: rgba(var(--aa-primary-color-rgb), 1);
    display: inline-block;
    font-size: .8em;
    font-weight: 600;
    font-weight: var(--aa-font-weight-semibold);
    margin: 0;
    padding: 0 8px 0 0;
    padding: 0 var(--aa-spacing-half) 0 0;
    position: relative;
    z-index: 9999;
    z-index: var(--aa-base-z-index)
}

.aa-SourceHeaderLine {
    border-bottom: 1px solid #3e34d3;
    border-bottom: 1px solid rgba(var(--aa-primary-color-rgb), 1);
    display: block;
    height: 2px;
    left: 0;
    margin: 0;
    opacity: .3;
    padding: 0;
    position: absolute;
    right: 0;
    top: 8px;
    top: var(--aa-spacing-half);
    z-index: 9998;
    z-index: calc(var(--aa-base-z-index) - 1)
}

.aa-SourceFooterSeeAll {
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(rgba(128,126,163,0.14)));
    background: linear-gradient(180deg, #fff, rgba(128,126,163,0.14));
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(var(--aa-background-color-rgb), var(--aa-background-color-alpha))), to(rgba(128,126,163,0.14)));
    background: linear-gradient(180deg, rgba(var(--aa-background-color-rgb), var(--aa-background-color-alpha)), rgba(128,126,163,0.14));
    border: 1px solid rgba(128,126,163,0.6);
    border: 1px solid rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 2px #fff,0 2px 2px -1px rgba(76,69,88,0.15);
    box-shadow: inset 0 0 2px #fff,0 2px 2px -1px rgba(76,69,88,0.15);
    color: inherit;
    font-size: .95em;
    font-weight: 500;
    font-weight: var(--aa-font-weight-medium);
    padding: .475em 1em .6em;
    text-decoration: none
}

.aa-SourceFooterSeeAll:focus,.aa-SourceFooterSeeAll:hover {
    border: 1px solid #3e34d3;
    border: 1px solid rgba(var(--aa-primary-color-rgb), 1);
    color: #3e34d3;
    color: rgba(var(--aa-primary-color-rgb), 1)
}

.aa-Item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 3px;
    cursor: pointer;
    display: grid;
    min-height: 40px;
    min-height: calc(var(--aa-spacing)*2.5);
    padding: 4px;
    padding: calc(var(--aa-spacing-half)/2)
}

.aa-Item[aria-selected=true] {
    background-color: rgba(179,173,214,0.205);
    background-color: rgba(var(--aa-selected-color-rgb), var(--aa-selected-color-alpha))
}

.aa-Item[aria-selected=true] .aa-ActiveOnly,.aa-Item[aria-selected=true] .aa-ItemActionButton {
    visibility: visible
}

.aa-ItemIcon {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    background: rgba(var(--aa-background-color-rgb), var(--aa-background-color-alpha));
    border-radius: 3px;
    -webkit-box-shadow: inset 0 0 0 1px rgba(128,126,163,0.3);
    box-shadow: inset 0 0 0 1px rgba(128,126,163,0.3);
    -webkit-box-shadow: inset 0 0 0 1px rgba(var(--aa-panel-border-color-rgb), var(--aa-panel-border-color-alpha));
    box-shadow: inset 0 0 0 1px rgba(var(--aa-panel-border-color-rgb), var(--aa-panel-border-color-alpha));
    color: #7777a3;
    color: rgba(var(--aa-icon-color-rgb), var(--aa-icon-color-alpha));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: .7em;
    height: 28px;
    height: calc(var(--aa-icon-size) + var(--aa-spacing-half));
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    stroke-width: 1.6;
    stroke-width: var(--aa-icon-stroke-width);
    text-align: center;
    width: 28px;
    width: calc(var(--aa-icon-size) + var(--aa-spacing-half))
}

.aa-ItemIcon img {
    height: auto;
    max-height: 20px;
    max-height: calc(var(--aa-icon-size) + var(--aa-spacing-half) - 8px);
    max-width: 20px;
    max-width: calc(var(--aa-icon-size) + var(--aa-spacing-half) - 8px);
    width: auto
}

.aa-ItemIcon svg {
    height: 20px;
    height: var(--aa-icon-size);
    width: 20px;
    width: var(--aa-icon-size)
}

.aa-ItemIcon--alignTop {
    -ms-flex-item-align: start;
    align-self: flex-start
}

.aa-ItemIcon--noBorder {
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none
}

.aa-ItemIcon--picture {
    height: 96px;
    width: 96px
}

.aa-ItemIcon--picture img {
    max-height: 100%;
    max-width: 100%;
    padding: 8px;
    padding: var(--aa-spacing-half)
}

.aa-ItemContent {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    display: grid;
    grid-gap: 8px;
    gap: 8px;
    grid-gap: var(--aa-spacing-half);
    gap: var(--aa-spacing-half);
    grid-auto-flow: column;
    line-height: 1.25em;
    overflow: hidden
}

.aa-ItemContent:empty {
    display: none
}

.aa-ItemContent mark {
    background: none;
    color: #262627;
    color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
    font-style: normal;
    font-weight: 700;
    font-weight: var(--aa-font-weight-bold)
}

.aa-ItemContent--dual {
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: left
}

.aa-ItemContent--dual .aa-ItemContentSubtitle,.aa-ItemContent--dual .aa-ItemContentTitle {
    display: block
}

.aa-ItemContent--indented {
    padding-left: 36px;
    padding-left: calc(var(--aa-icon-size) + var(--aa-spacing))
}

.aa-ItemContentBody {
    display: grid;
    grid-gap: 4px;
    gap: 4px;
    grid-gap: calc(var(--aa-spacing-half)/2);
    gap: calc(var(--aa-spacing-half)/2)
}

.aa-ItemContentTitle {
    display: inline-block;
    margin: 0 .5em 0 0;
    max-width: 100%;
    overflow: hidden;
    padding: 0;
    text-overflow: ellipsis;
    white-space: nowrap
}

.aa-ItemContentSubtitle {
    font-size: .92em
}

.aa-ItemContentSubtitleIcon:before {
    border-color: rgba(128,126,163,0.64);
    border-color: rgba(var(--aa-muted-color-rgb), 0.64);
    border-style: solid;
    content: "";
    display: inline-block;
    left: 1px;
    position: relative;
    top: -3px
}

.aa-ItemContentSubtitle--inline .aa-ItemContentSubtitleIcon:before {
    border-width: 0 0 1.5px;
    margin-left: 8px;
    margin-left: var(--aa-spacing-half);
    margin-right: 4px;
    margin-right: calc(var(--aa-spacing-half)/2);
    width: 10px;
    width: calc(var(--aa-spacing-half) + 2px)
}

.aa-ItemContentSubtitle--standalone {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #262627;
    color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
    display: grid;
    grid-gap: 8px;
    gap: 8px;
    grid-gap: var(--aa-spacing-half);
    gap: var(--aa-spacing-half);
    grid-auto-flow: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start
}

.aa-ItemContentSubtitle--standalone .aa-ItemContentSubtitleIcon:before {
    border-radius: 0 0 0 3px;
    border-width: 0 0 1.5px 1.5px;
    height: 8px;
    height: var(--aa-spacing-half);
    width: 8px;
    width: var(--aa-spacing-half)
}

.aa-ItemContentSubtitleCategory {
    color: #807ea3;
    color: rgba(var(--aa-muted-color-rgb), 1);
    font-weight: 500
}

.aa-ItemContentDescription {
    color: #262627;
    color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
    font-size: .85em;
    max-width: 100%;
    overflow-x: hidden;
    text-overflow: ellipsis
}

.aa-ItemContentDescription:empty {
    display: none
}

.aa-ItemContentDescription mark {
    background: rgba(245,223,77,0.5);
    background: rgba(var(--aa-description-highlight-background-color-rgb), var(--aa-description-highlight-background-color-alpha));
    color: #262627;
    color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
    font-style: normal;
    font-weight: 500;
    font-weight: var(--aa-font-weight-medium)
}

.aa-ItemContentDash {
    color: rgba(128,126,163,0.6);
    color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
    display: none;
    opacity: .4
}

.aa-ItemContentTag {
    background-color: rgba(62,52,211,0.2);
    background-color: rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha));
    border-radius: 3px;
    margin: 0 .4em 0 0;
    padding: .08em .3em
}

.aa-ItemLink,.aa-ItemWrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: inherit;
    display: grid;
    grid-gap: 4px;
    gap: 4px;
    grid-gap: calc(var(--aa-spacing-half)/2);
    gap: calc(var(--aa-spacing-half)/2);
    grid-auto-flow: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%
}

.aa-ItemLink {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.aa-ItemActions {
    display: grid;
    grid-auto-flow: column;
    height: 100%;
    justify-self: end;
    margin: 0 -5.3333333333px;
    margin: 0 calc(var(--aa-spacing)/-3);
    padding: 0 2px 0 0
}

.aa-ItemActionButton {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: none;
    border: 0;
    color: rgba(128,126,163,0.6);
    color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 0
}

.aa-ItemActionButton:focus svg,.aa-ItemActionButton:hover svg {
    color: #262627;
    color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha))
}

@media (hover: none) and (pointer: coarse) {
    .aa-ItemActionButton:focus svg,.aa-ItemActionButton:hover svg {
        color:inherit
    }
}

.aa-ItemActionButton svg {
    color: rgba(128,126,163,0.6);
    color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
    margin: 5.3333333333px;
    margin: calc(var(--aa-spacing)/3);
    stroke-width: 1.6;
    stroke-width: var(--aa-icon-stroke-width);
    width: 20px;
    width: var(--aa-action-icon-size)
}

.aa-ActiveOnly {
    visibility: hidden
}

.aa-PanelHeader {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #3e34d3;
    background: rgba(var(--aa-primary-color-rgb), 1);
    color: #fff;
    display: grid;
    height: var(--aa-modal-header-height);
    margin: 0;
    padding: 8px 16px;
    padding: var(--aa-spacing-half) var(--aa-spacing);
    position: relative
}

.aa-PanelHeader:after {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(rgba(255,255,255,0)));
    background-image: linear-gradient(#fff, rgba(255,255,255,0));
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(var(--aa-background-color-rgb), 1)), to(rgba(var(--aa-background-color-rgb), 0)));
    background-image: linear-gradient(rgba(var(--aa-background-color-rgb), 1), rgba(var(--aa-background-color-rgb), 0));
    bottom: -8px;
    bottom: calc(var(--aa-spacing-half)*-1);
    content: "";
    height: 8px;
    height: var(--aa-spacing-half);
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0
}

.aa-PanelFooter,.aa-PanelHeader:after {
    z-index: 9999;
    z-index: var(--aa-base-z-index)
}

.aa-PanelFooter {
    background-color: #fff;
    background-color: rgba(var(--aa-background-color-rgb), var(--aa-background-color-alpha));
    -webkit-box-shadow: inset 0 1px 0 rgba(128,126,163,0.3);
    box-shadow: inset 0 1px 0 rgba(128,126,163,0.3);
    -webkit-box-shadow: inset 0 1px 0 rgba(var(--aa-panel-border-color-rgb), var(--aa-panel-border-color-alpha));
    box-shadow: inset 0 1px 0 rgba(var(--aa-panel-border-color-rgb), var(--aa-panel-border-color-alpha));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0;
    padding: 16px;
    padding: var(--aa-spacing);
    position: relative
}

.aa-PanelFooter:after {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)), to(rgba(128,126,163,0.6)));
    background-image: linear-gradient(rgba(255,255,255,0), rgba(128,126,163,0.6));
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(var(--aa-background-color-rgb), 0)), to(rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha))));
    background-image: linear-gradient(rgba(var(--aa-background-color-rgb), 0), rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha)));
    content: "";
    height: 16px;
    height: var(--aa-spacing);
    left: 0;
    opacity: .12;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: -16px;
    top: calc(var(--aa-spacing)*-1);
    z-index: 9998;
    z-index: calc(var(--aa-base-z-index) - 1)
}

.aa-DetachedContainer {
    background: #fff;
    background: rgba(var(--aa-background-color-rgb), var(--aa-background-color-alpha));
    bottom: 0;
    -webkit-box-shadow: 0 0 0 1px rgba(35,38,59,0.1),0 6px 16px -4px rgba(35,38,59,0.15);
    box-shadow: 0 0 0 1px rgba(35,38,59,0.1),0 6px 16px -4px rgba(35,38,59,0.15);
    -webkit-box-shadow: var(--aa-panel-shadow);
    box-shadow: var(--aa-panel-shadow);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    left: 0;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    z-index: var(--aa-base-z-index)
}

.aa-DetachedContainer:after {
    height: 32px
}

.aa-DetachedContainer .aa-SourceHeader {
    margin: 8px 0 8px 2px;
    margin: var(--aa-spacing-half) 0 var(--aa-spacing-half) 2px
}

.aa-DetachedContainer .aa-Panel {
    background-color: #fff;
    background-color: rgba(var(--aa-background-color-rgb), var(--aa-background-color-alpha));
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 0;
    padding: 0;
    position: relative
}

.aa-DetachedContainer .aa-PanelLayout {
    bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    left: 0;
    margin: 0;
    max-height: none;
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

.aa-DetachedFormContainer {
    border-bottom: 1px solid rgba(128,126,163,0.3);
    border-bottom: 1px solid rgba(var(--aa-panel-border-color-rgb), var(--aa-panel-border-color-alpha));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0;
    padding: 8px;
    padding: var(--aa-spacing-half)
}

.aa-DetachedCancelButton {
    background: none;
    border: 0;
    border-radius: 3px;
    color: inherit;
    color: #262627;
    color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
    cursor: pointer;
    font: inherit;
    margin: 0 0 0 8px;
    margin: 0 0 0 var(--aa-spacing-half);
    padding: 0 8px;
    padding: 0 var(--aa-spacing-half)
}

.aa-DetachedCancelButton:focus,.aa-DetachedCancelButton:hover {
    -webkit-box-shadow: inset 0 0 0 1px rgba(128,126,163,0.3);
    box-shadow: inset 0 0 0 1px rgba(128,126,163,0.3);
    -webkit-box-shadow: inset 0 0 0 1px rgba(var(--aa-panel-border-color-rgb), var(--aa-panel-border-color-alpha));
    box-shadow: inset 0 0 0 1px rgba(var(--aa-panel-border-color-rgb), var(--aa-panel-border-color-alpha))
}

.aa-DetachedContainer--modal {
    border-radius: 6px;
    bottom: inherit;
    height: auto;
    margin: 0 auto;
    max-width: 680px;
    max-width: var(--aa-detached-modal-max-width);
    position: absolute;
    top: 3%
}

.aa-DetachedContainer--modal .aa-PanelLayout {
    max-height: 500px;
    max-height: var(--aa-detached-modal-max-height);
    padding-bottom: 8px;
    padding-bottom: var(--aa-spacing-half);
    position: static
}

.aa-DetachedSearchButton {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    background-color: rgba(var(--aa-input-background-color-rgb), var(--aa-input-background-color-alpha));
    border: 1px solid rgba(128,126,163,0.8);
    border: 1px solid rgba(var(--aa-input-border-color-rgb), var(--aa-input-border-color-alpha));
    border-radius: 3px;
    color: rgba(128,126,163,0.6);
    color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font: inherit;
    font-family: inherit;
    font-family: var(--aa-font-family);
    font-size: 16px;
    font-size: var(--aa-font-size);
    height: 44px;
    height: var(--aa-search-input-height);
    margin: 0;
    padding: 0 5.5px;
    padding: 0 calc(var(--aa-search-input-height)/8);
    position: relative;
    text-align: left;
    width: 100%
}

.aa-DetachedSearchButton:focus {
    border-color: #3e34d3;
    border-color: rgba(var(--aa-primary-color-rgb), 1);
    -webkit-box-shadow: 0 0 0 3px rgba(62,52,211,0.2),inset 0 0 0 2px rgba(62,52,211,0.2);
    box-shadow: 0 0 0 3px rgba(62,52,211,0.2),inset 0 0 0 2px rgba(62,52,211,0.2);
    -webkit-box-shadow: rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 3px,inset rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 2px;
    box-shadow: rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 3px,inset rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 2px;
    outline: medium none currentColor
}

.aa-DetachedSearchButtonIcon {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #3e34d3;
    color: rgba(var(--aa-primary-color-rgb), 1);
    cursor: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 36px;
    width: calc(var(--aa-icon-size) + var(--aa-spacing))
}

.aa-Detached {
    height: 100vh;
    overflow: hidden
}

.aa-DetachedOverlay {
    background-color: rgba(115,114,129,0.4);
    background-color: rgba(var(--aa-overlay-color-rgb), var(--aa-overlay-color-alpha));
    height: 100vh;
    left: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9998;
    z-index: calc(var(--aa-base-z-index) - 1)
}

.aa-GradientBottom,.aa-GradientTop {
    height: 8px;
    height: var(--aa-spacing-half);
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    z-index: 9999;
    z-index: var(--aa-base-z-index)
}

.aa-GradientTop {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(rgba(255,255,255,0)));
    background-image: linear-gradient(#fff, rgba(255,255,255,0));
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(var(--aa-background-color-rgb), 1)), to(rgba(var(--aa-background-color-rgb), 0)));
    background-image: linear-gradient(rgba(var(--aa-background-color-rgb), 1), rgba(var(--aa-background-color-rgb), 0));
    top: 0
}

.aa-GradientBottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)), to(#fff));
    background-image: linear-gradient(rgba(255,255,255,0), #fff);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(var(--aa-background-color-rgb), 0)), to(rgba(var(--aa-background-color-rgb), 1)));
    background-image: linear-gradient(rgba(var(--aa-background-color-rgb), 0), rgba(var(--aa-background-color-rgb), 1));
    border-bottom-left-radius: 4px;
    border-bottom-left-radius: calc(var(--aa-spacing)/4);
    border-bottom-right-radius: 4px;
    border-bottom-right-radius: calc(var(--aa-spacing)/4);
    bottom: 0
}

@media (hover: none) and (pointer: coarse) {
    .aa-DesktopOnly {
        display:none
    }
}

@media (hover: hover) {
    .aa-TouchOnly {
        display:none
    }
}

:root {
    --aa-primary-color-rgb: 64, 71, 109;
    --aa-input-border-color-rgb: 62, 77, 97;
    --aa-input-border-color-alpha: 0.5;
    --aa-text-color-rgb: 62, 77, 97;
    --aa-selected-color-rgb: 0, 164, 153;
    --aa-selected-color-alpha: 0.1;
    --aa-overlay-color-rgb: 0, 164, 153;
    --aa-panel-border-color-rgb: 0, 164, 153;
    --aa-panel-border-color-alpha: 0
}

.aa-Form {
    border-radius: 100px
}

.aa-DetachedSearchButton {
    border-radius: 100px
}

.aa-ItemLink {
    text-decoration: none !important;
    color: #3e4d61 !important;
    font-family: 'Poppins', sans-serif;
}

.aa-ItemLink:hover {
    background-color: #beef;
}

.title p {
    font-size: 2rem;
    font-family: 'PT Serif', serif !important;
    font-weight: 700 !important;
    color: #3e4d61 !important
}

.title .subtitle {
    text-transform: uppercase;
    font-size: 90%;
    font-weight: 300;
    margin-bottom: 0.3rem
}

.block-content {
    position: relative;
    margin: 1.5rem 0
}

.block-content_content {
    padding: 15px;
}

.block-content_content .block-content_image{
    width: 100%;
    object-fit: cover;
}

.block-content_content .block-content_button {
    margin: 2em 0;
}

.block-content.highlight p,.block-content.highlight ul,.block-content.highlight ol {
    position: relative;
    left: -1.25rem;
    border-left: 1px solid #08c2c0
}

.block-content.highlight p {
    padding-left: 1.25rem
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'PT Serif', serif !important;
    font-weight: 700 !important;
    color: #374354 !important
}

h6.result-title {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500 !important;
    color: #3e4d61 !important;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

html {
    position: relative;
    overflow-x: hidden !important
}

body {
    font-family: 'Poppins', sans-serif;
    color: #3e4d61 !important;
    overflow-x: hidden !important;
    position: relative;
    line-height: 1.75 !important
}

.phone-icon,.fax-icon {
    display: inline
}

.phone-icon svg,.fax-icon svg {
    width: 15px;
    height: 15px
}

.slick-prev-arrow,.slick-next-arrow {
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0 16px
}

.slick-prev-arrow {
    left: -40px
}

.slick-next-arrow {
    right: -44px
}

.slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: -1rem;
    list-style-type: none
}

.slick-dots li {
    margin: 0.25rem
}

.slick-dots li button {
    display: block;
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: #3e4d61;
    text-indent: -9999px
}

.slick-dots li.slick-active button {
    background-color: #00a499
}

.section-transition {
    position: relative
}

.section-transition .bg-triangle {
    position: absolute;
    background-size: cover;
    top: 0;
    right: 0;
    left: 0;
    height: 15rem;
    z-index: -1;
    width: 100%;
    overflow: hidden
}

.wagtail-userbar--bottom-right {
    left: 2rem !important
}

.mobile-phone {
    background-color: #00a499 !important;
    padding-top: 0.5em;
    padding-bottom: 0.2em
}

.mobile-phone a:link {
    text-decoration: none;
    color: white
}

.phone-select {
    text-decoration: none !important;
    color: #3e4d61 !important
}

@media (max-width: 1400px) {
    .phone-select {
        display:none
    }

    .mobile-phone {
        display: block
    }
}

@media (min-width: 1400px) {
    .mobile-phone {
        display:none
    }
}

nav {
    font-family: 'Poppins', sans-serif;
    font-size: 85%;
    font-weight: 300;
    z-index: 101
}

nav .nav-logo {
    height: 50px
}

nav .nav-link {
    width: 100%;
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 8px;
    margin-bottom: 8px
}

nav .nav-link .link-animation {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0%;
    background: rgba(47,185,183,0.2);
    -webkit-transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1)
}

nav .nav-link:hover .link-animation {
    width: 100%
}

nav form button {
    border-radius: 0 1em 1em 0 !important
}

nav .nav-phone a {
    text-decoration: none;
    color: #3e4d61
}

nav .nav-phone a:hover {
    text-decoration: underline
}

nav .nav-phone .icon {
    color: #2fb9b7
}

nav .nav-phone .main-phone {
    font-weight: bold;
    font-size: 1.2rem
}

nav .nav-phone .secondary-phone {
    font-weight: 400;
    margin-top: -10px
}

nav .main-nav-btn {
    border-radius: 100%;
    width: 50px;
    height: 50px
}

.fixed {
    position: fixed !important;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100
}

.nav-up {
    top: -117.6px
}

.subnavigation {
    padding: 0.5rem 0 0 0;
    background-color: #f9fafe;
    z-index: 99;
    font-size: 85%
}

.subnavigation .nav-item.active {
    -webkit-box-shadow: inset 0 -4px 0 #2fb9b7;
    box-shadow: inset 0 -4px 0 #2fb9b7
}

.subnavigation .nav-link {
    color: #3e4d61
}

.secondary-navigation {
    font-size: 85%
}

.navigation-modal img {
    height: 45px
}

.navigation-modal .modal-dialog {
    width: 75% !important;
    max-width: none !important;
    height: 100%;
    margin: 0 !important
}

.navigation-modal .modal-content {
    height: 100% !important;
    border: 0 !important;
    border-radius: 0 !important
}

.navigation-modal .modal-body {
    overflow-y: auto
}

.navigation-modal .modal-nav {
    margin-left: 2rem
}

.navigation-modal .modal-nav .nav-link {
    color: #40476d;
    margin-bottom: 1rem
}

.navigation-modal .modal-nav .nav-link i {
    margin-left: .5rem
}

.navigation-modal .other-links {
    font-size: 85%;
    color: #40476d;
    width: 80%
}

.navigation-modal .other-links .secondary-nav-title {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.3rem
}

.navigation-modal .other-links .modal-secondary-nav .nav-link {
    color: #40476d;
    padding-bottom: 0 !important
}

@media (max-width: 575.98px) {
    .navigation-modal {
        font-size:90%
    }

    .navigation-modal .modal-nav .nav-link i {
        display: none
    }
}

@media (max-width: 767.98px) {
    .navigation-modal {
        font-size:95%
    }

    .navigation-modal img {
        height: 35px
    }

    .navigation-modal .modal-dialog {
        width: 85% !important
    }

    .navigation-modal .modal-nav {
        margin-left: 0
    }

    .navigation-modal .other-links {
        width: 100%
    }
    
    .headerIframe{
        height: 200px !important;
    }
}

.headerIframe{
    width: 100%;
    height: 300px;
}
footer {
    padding: 4rem 4rem 2rem 4rem;
    background-color: #f6f8fd
}

@media (max-width: 696px) {
    footer .languageBtnText,footer .languageIconContainer::after {
        display:none
    }

    footer .languageIconContainer {
        padding: 0.5em !important;
        border-radius: 100% !important
    }

    footer #dropdown-list {
        -webkit-transform: translate3d(-116px, -95px, 0px) !important;
        transform: translate3d(-116px, -95px, 0px) !important
    }

    footer .langBtnIcon {
        height: 1.4em !important
    }
}

footer .dropdown-menu.show {
    padding: 0;
    top: -1px !important;
    left: -1px !important
}

footer .dropdown-item {
    padding: 0.5rem 1rem !important
}

footer .dropdown-item-language {
    padding-left: 1.4em
}

footer .dropdown-item-language.selected {
    padding-left: 0.2em
}

footer .langBtnIcon {
    width: auto;
    height: 1.2em;
    margin-bottom: 0.2em
}

footer .languageBtn {
    border: 0;
    position: fixed;
    right: 1.5em;
    bottom: 1.5em;
    z-index: 10000;
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    border-radius: 5px;
    -webkit-transform: all 0.5s;
    transform: all 0.5s
}

footer .languageIconContainer {
    text-align: left;
    color: white;
    font-size: 15px;
    -webkit-transition: all .1s;
    transition: all .1s;
    -webkit-box-shadow: 0 0 1px 0 #000,0 1px 10px 0 rgba(0,0,0,0.3);
    box-shadow: 0 0 1px 0 #000,0 1px 10px 0 rgba(0,0,0,0.3);
    opacity: 0.6
}

footer .languageIconContainer:hover,footer .languageIconContainer:focus {
    opacity: 1
}

footer .languageIconContainer::after {
    padding-left: 2.7em;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\0020\f0d7"
}

footer .languageIconContainer:focus::after {
    padding-left: 2.7em;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\0020\f0d8"
}

footer .languageBtnText {
    padding-left: 0.2em
}

footer .languageIconContainer:hover {
    color: white
}

footer .languageIcon {
    font-family: "Font Awesome 5 Free";
    color: white
}

footer img {
    width: 80%;
    margin-bottom: 3rem
}

footer .footer-navigation {
    font-size: 85%
}

footer .footer-navigation .footer-title {
    text-transform: uppercase;
    font-weight: 700;
    color: #40476d;
    margin-bottom: .7rem
}

footer .footer-navigation .nav-link {
    padding: 0;
    margin: 0;
    margin-bottom: 0.3rem;
    color: #40476d;
    width: 100%;
    position: relative
}

footer .footer-navigation .nav-link .link-animation {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0%;
    background: rgba(47,185,183,0.2);
    -webkit-transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1)
}

footer .footer-navigation .nav-link:hover .link-animation {
    width: 100%
}

footer .legal-links {
    font-size: 85%;
    color: #40476d
}

footer .legal-links .nav-link {
    color: #40476d
}

footer .legal-links .nav-item {
    border-left: 1px solid #ccc
}

footer .legal-links .nav-item:first-child {
    border-left: none
}

@media (max-width: 575.98px) {
    footer {
        padding:4rem 0.5rem
    }

    footer .legal-links {
        font-size: 80%
    }

    footer .legal-links .nav-item {
        border-left: none
    }
}

.alert-banner {
    padding: 1.2rem 0
}

.alert-banner a {
    color: black
}

.alert-banner a:hover {
    color: #212529
}

@media (max-width: 575.98px) {
    .alert-banner {
        font-size:85%
    }
}

.round-button {
    border-radius: 100px !important;
    text-transform: uppercase;
    font-weight: 400 !important;
    padding: 0.5rem 2rem !important;
    font-size: 100% !important;
    letter-spacing: 0.08em
}

.left-arrow-icon svg {
    height: 2.5rem;
    width: 2.5rem
}

.left-arrow-icon .left-arrow-icon-st0,.left-arrow-icon .left-arrow-icon-st1 {
    -webkit-transition: fill 0.3s linear, stroke 0.3s linear;
    transition: fill 0.3s linear, stroke 0.3s linear
}

.left-arrow-icon:hover .left-arrow-icon-st0 {
    fill: #2fb9b7;
    stroke: #2fb9b7
}

.left-arrow-icon:hover .left-arrow-icon-st1 {
    fill: white
}

.right-arrow-icon {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    -webkit-transform-origin: center;
    transform-origin: center
}

.right-arrow-icon svg {
    height: 2.5rem;
    width: 2.5rem
}

.right-arrow-icon .right-arrow-icon-st0,.right-arrow-icon .right-arrow-icon-st1 {
    -webkit-transition: fill 0.3s linear, stroke 0.3s linear;
    transition: fill 0.3s linear, stroke 0.3s linear
}

.right-arrow-icon:hover .right-arrow-icon-st0 {
    fill: #2fb9b7;
    stroke: #2fb9b7
}

.right-arrow-icon:hover .right-arrow-icon-st1 {
    fill: white
}

.do-not-display {
    display: none !important
}

.long-arrow-circle {
    display: inline-block
}

.long-arrow-circle svg {
    margin-left: 15px;
    height: 25px
}

.right-arrow-short-icon {
    display: inline-block;
    vertical-align: middle
}

.right-arrow-short-icon svg {
    height: 10px
}

.right-arrow-long-teal {
    display: inline-block;
    vertical-align: middle
}

.right-arrow-long-teal svg {
    height: 10px
}

.right-arrow-long-white {
    display: inline-block;
    vertical-align: middle
}

.right-arrow-long-white svg {
    height: 10px
}

.location-icon svg {
    height: 2.25rem
}

.download-link {
    position: relative;
    text-decoration: none;
    color: #3e4d61;
    padding: 0;
}

.download-link .link-animation {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0%;
    background: rgba(47,185,183,0.2);
    -webkit-transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1)
}

.download-link:hover {
    text-decoration: none;
    color: #3e4d61
}

.download-link:hover .link-animation {
    width: 100%
}

.download-button {
    border: 1px #3e4d61 solid;
    padding: 0.5em 2.5rem
}

.download-icon {
    width: 50px;
    height: auto
}

.resource-link {
    position: relative;
    text-decoration: none;
    color: #3e4d61;
    padding: 0;
}

.resource-link .link-animation {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0%;
    background: rgba(47,185,183,0.2);
    -webkit-transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1)
}

.resource-link:hover {
    text-decoration: none;
    color: #3e4d61
}

.resource-link:hover .link-animation {
    width: 100%
}

.resource-button {
    border: 1px #3e4d61 solid;
    padding: 0.5em 2.5rem
}

.resource-icon {
    width: 50px;
    height: auto
}

.subnavigation-mobile .modal-toggle {
    color: #40476d
}

.subnavigation-mobile-modal {
    padding: 0 !important
}

.subnavigation-mobile-modal img {
    height: 45px
}

.subnavigation-mobile-modal .nav .nav-item .nav-link {
    color: #40476d;
    text-decoration: underline
}

.subnavigation-mobile-modal .nav .nav-item.active .nav-link {
    color: #00a499 !important;
    font-weight: bold;
    text-decoration: none
}

.subnavigation-mobile-modal .modal-dialog {
    width: 100% !important;
    max-width: none !important;
    height: 60%;
    margin: 0 !important
}

.subnavigation-mobile-modal .modal-content {
    height: 100% !important;
    border: 0 !important;
    border-radius: 0 !important
}

.subnavigation-mobile-modal .modal-body {
    overflow-y: auto
}

.subnavigation-mobile-modal .modal-nav {
    margin-left: 2rem
}

.subnavigation-mobile-modal .modal-nav .nav-link {
    color: #40476d;
    margin-bottom: 1rem
}

.subnavigation-mobile-modal .modal-nav .nav-link i {
    margin-left: .5rem
}

.physician-card2 {
    margin-right: 1.5rem;
    margin-bottom: 3rem;
    width: rem-calc(815px);
    height: rem-calc(310px);
    border: 1px solid #eee;
    background: white;
    text-overflow: hidden;
    -webkit-transition: -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s linear;
    transition: -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s linear;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s linear;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s linear, -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s linear;
    position: relative
}

.physician-card2:after,.physician-card2:before {
    content: '';
    width: 0;
    height: 3px;
    top: 0;
    z-index: 5;
    position: absolute;
    background: #00a499
}

.physician-card2:before {
    left: 0
}

.physician-card2:after {
    right: 0;
    background: #00a499;
    -webkit-transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1)
}

.physician-card2 .side-bar {
    width: 33%;
    height: 100%;
    padding-top: 1.5rem
}

.physician-card2 .side-bar .photo {
    width: rem-calc(160px);
    height: rem-calc(160px);
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-color: #eee;
    background-size: cover;
    background-position: center
}

.physician-card2 .side-bar .profile-link {
    margin-bottom: 1.5rem;
    text-align: center
}

.physician-card2 .side-bar .profile-link a {
    color: #40476d;
    text-transform: uppercase;
    border-bottom: 1px solid #40476d
}

.physician-card2 .side-bar .tags {
    width: 100%;
    padding: 0 1.5rem
}

.physician-card2 .side-bar .tags .tag {
    display: inline-block;
    vertical-align: middle;
    background: white;
    padding: 0 1rem 0.15rem;
    border-radius: 16px
}

.physician-card2 .side-bar .tags .tag p {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    color: rgba(75,76,101,0.8);
    letter-spacing: 0
}

.physician-card2 .side-bar .tags .tag .tag-icon {
    display: inline-block;
    vertical-align: middle
}

.physician-card2 .side-bar .tags .tag .tag-icon svg {
    height: baselines(0.5)
}

.physician-card2 .content-area {
    width: 66%;
    position: relative;
    height: 100%;
    padding: 1.5rem
}

.physician-card2 .content-area .heading {
    width: 100%;
    margin-bottom: 0.75rem
}

.physician-card2 .content-area .heading p {
    margin: 0;
    color: #6c7580
}

.physician-card2 .content-area .locations {
    width: 100%;
    height: calc(100% - 3rem)
}

.physician-card2 .content-area .locations .list {
    width: 50%;
    height: 100%
}

.physician-card2 .content-area .locations .list .icon-text {
    width: 100%
}

.physician-card2 .content-area .locations .list .icon-text img,.physician-card2 .content-area .locations .list .icon-text p {
    display: inline-block;
    vertical-align: middle
}

.physician-card2 .content-area .locations .list .icon-text img {
    top: 0.2rem;
    left: -0.5rem;
    position: relative
}

.physician-card2 .content-area .locations .list .icon-text p {
    margin: 0;
    color: #222222
}

.physician-card2 .content-area .locations .list li {
    width: 100%;
    padding-left: 1rem;
    position: relative
}

.physician-card2 .content-area .locations .list li:before {
    content: ' ';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #00a499;
    top: 50%;
    left: 0.75rem;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform-origin: center;
    transform-origin: center
}

.physician-card2 .content-area .locations .list li .hover-link.with-arrow {
    width: 97%;
    padding-top: 0;
    padding-right: 3.5rem;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.physician-card2 .content-area .locations .list li .hover-link.with-arrow .right-arrow-long-teal svg {
    height: 0.6rem
}

.physician-card2 .content-area .locations .list li .hover-link.with-arrow .hover-animation-content h5 {
    letter-spacing: 0
}

.physician-card2 .content-area .locations .list li .hover-link.with-arrow:after,.physician-card2 .content-area .locations .list li .hover-link.with-arrow:before {
    display: none
}

.physician-card2 .content-area .locations .display {
    width: 50%;
    height: 100%;
    position: relative
}

.physician-card2 .content-area .locations .display:before {
    content: ' ';
    top: 0;
    bottom: 1.5rem;
    left: -0.5rem;
    width: 1px;
    position: absolute;
    border-left: 1px dotted #ced1d6
}

.physician-card2 .content-area .locations .display .location {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: visibility 0s linear 0.3s, opacity 0.3s;
    transition: visibility 0s linear 0.3s, opacity 0.3s;
    top: 0;
    left: 0;
    right: 0;
    position: absolute
}

.physician-card2 .content-area .locations .display .location .get-directions {
    width: 100%;
    margin-top: 0.5rem;
    text-align: right;
    font-size: 80% !important
}

.physician-card2 .content-area .locations .display .location.active {
    opacity: 1;
    visibility: visible;
    -webkit-transition: visibility 0s linear 0s, opacity 0.3s;
    transition: visibility 0s linear 0s, opacity 0.3s
}

.physician-card2 .content-area .locations .display p {
    margin: 0;
    padding-left: 1.5rem;
    height: 72px;
    color: #4b4c65;
    letter-spacing: 0
}

.physician-card2 .content-area .locations .display p a {
    color: #4b4c65;
    letter-spacing: 0
}

.physician-card2 .content-area .locations .display .row {
    width: 100%;
    margin-bottom: 0.5rem
}

.physician-card2 .content-area .locations .display .row .row--icon {
    width: 3rem;
    text-align: right;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: 2px;
    padding-right: 0.5rem
}

.physician-card2 .content-area .locations .display .row .row--icon svg {
    height: 1rem
}

.physician-card2 .content-area .locations .display .row .row--data {
    width: 77%;
    display: inline-block;
    vertical-align: middle
}

.physician-card2 .content-area .locations .display .row .row--data a,.physician-card2 .content-area .locations .display .row .row--data span {
    font-size: 16px;
    letter-spacing: 0.01em;
    color: #343a40
}

.physician-card2 .content-area .locations .display .row .row--data .label {
    float: left;
    color: black
}

.physician-card2 .content-area .locations .display .row .row--data .data {
    float: right
}

.physician-card2 .content-area .locations .display .row .row--data p {
    color: #4b4c65;
    line-height: rem-calc(26px);
    letter-spacing: 0.01em;
    margin: 0
}

.physician-card2 .content-area .website-link {
    left: 1.5rem;
    bottom: 1.5rem;
    position: absolute
}

.physician-card2 .content-area .website-link .hover-icon-link img {
    height: 1.5rem
}

.physician-card2 .content-area .website-link .hover-icon-link h5 {
    letter-spacing: 0.025em
}

.physician-card2 .content-area .website-link .hover-icon-link .right-arrow-short-icon {
    display: none
}

@media only screen and (min-width: 1025px) {
    .physician-card2:hover {
        -webkit-transform:scale(1.05);
        transform: scale(1.05);
        -webkit-box-shadow: 2px 2px 26.19px 0.81px rgba(87,92,192,0.15);
        box-shadow: 2px 2px 26.19px 0.81px rgba(87,92,192,0.15)
    }

    .physician-card2:hover:before {
        background: #00a499;
        width: 100%;
        -webkit-transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
        transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1)
    }

    .physician-card2:hover:after {
        background: transparent;
        width: 100%;
        -webkit-transition: 0s;
        transition: 0s
    }
}

.search-area {
    position: relative
}

.search-area .search-form {
    position: relative;
    width: 80%
}

.search-area .search-form input {
    border-radius: 100px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.search-area .search-form .search-button {
    position: absolute;
    border-radius: 100%;
    /*padding: 0.45rem 0.79rem;*/
    top: -1px;
    right: -1.65rem;
    margin: 0.2rem;
    background-color: #00a499
}

.search-area .search-form .search-button:hover {
    background-color: #007b73
}

.ais-SearchBox-resetIcon path {
    fill: white
}

.ais-SearchBox-submitIcon path {
    fill: white
}

section.reviews .header .title {
    border-right: 1px lightgray solid
}

section.reviews .reviews {
    margin: 3rem 0
}

section.reviews .review-container {
    border: 1px lightgray solid;
    margin: 0 1rem
}

section.reviews .review {
    padding: 1.25rem;
    background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #f8fafd), color-stop(50%, #eff2f9));
    background: linear-gradient(to bottom right, #f8fafd 50%, #eff2f9 50%);
    position: relative
}

section.reviews .review img {
    height: 50px;
    display: block;
    margin: 0 auto;
    margin-bottom: 1rem
}

section.reviews .author {
    padding: 1.25rem;
    text-align: right
}

section.reviews .author span {
    font-style: italic;
    display: block
}

section.videos .header .title {
    border-right: 1px lightgray solid
}

section.videos h3 {
    font-size: 1.1rem;
    margin: 0.75rem 0;
    font-family: 'Poppins', serif !important;
    font-weight: 600 !important
}

section.videos .videos-slider-container {
    margin: 2.5rem 0
}

section.videos .slide-container {
    border: 1px lightgray solid;
    margin: 0 1rem;
    padding: 1.25rem;
    -webkit-box-shadow: -3px 6px 23.28px 0.72px rgba(79,94,200,0.11);
    box-shadow: -3px 6px 23.28px 0.72px rgba(79,94,200,0.11)
}

section.videos .video-container {
    position: relative;
    width: 100%;
    overflow: hidden
}

section.videos .video {
    width: 100%;
    position: relative
}

section.videos .video iframe {
    min-height: 10rem;
    width: 100%;
    top: 0;
    left: 0
}

section.news-stories .header .title {
    border-right: 1px lightgray solid
}

section.news-stories .slick-slide {
    overflow: hidden
}

section.news-stories .news-slide {
    position: relative;
    height: 350px;
    border: none;
    color: #3e4d61
}

section.news-stories .news-slide .image-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

section.news-stories .news-slide .image-container img {
    position: relative;
    /*width: 100%;
    height: auto*/
    width: auto;
}

section.news-stories .news-slide .title {
    background-color: white;
    opacity: 0.9;
    position: absolute;
    bottom: -5px;
    right: -3px;
    width: 75%
}

section.news-stories .news-slide .title .date {
    padding: 2rem 2rem 0 2rem;
    font-size: 85%
}

section.news-stories .news-slide .title .date hr {
    display: inline-block;
    width: 1.5rem;
    border-bottom: 2px solid #666;
    vertical-align: middle;
    margin: 0 0.5rem
}

section.news-stories .news-slide .title h3 {
    padding: 0.5rem 2rem 1rem 2rem;
    margin: 0;
    font-size: 110%
}

section.news-stories .news-slide .title .more {
    padding-left: 2rem;
    padding-bottom: 1rem;
    visibility: hidden;
    text-transform: uppercase;
    font-size: 80%
}

section.news-stories .news-slide .title .more i {
    color: #00a499;
    margin-left: 0.7rem
}

section.news-stories .news-slide:hover .title .more {
    visibility: visible
}

@media (max-width: 991.98px) {
    section.news-stories .header .title {
        border:none
    }
}

.home-page h1 {
    margin-bottom: 2rem
}

.home-page .subheading {
    text-transform: uppercase !important;
    margin-bottom: 0.2rem;
    font-size: 85%;
    font-weight: 300
}

.home-page .controls {
    font-size: 38px
}

.home-page header {
    position: relative
}

.home-page header .video-mask {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background-size: cover;
    background-position: center
}

.home-page header .search-area {
    padding: 5rem 7rem;
    position: relative
}

.home-page header .search-area .search-form {
    position: relative
}

.home-page header .search-area .search-form input {
    border-radius: 100px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.home-page header .search-area .search-form .search-button {
    position: absolute;
    border-radius: 100%;
    top: -1px;
    right: -1.65rem;
    margin: 0.2rem;
    font-size: 20px
}

.home-page header .search-area .suggestions {
    margin-top: 2rem;
    font-size: 85%;
    color: #3e4d61;
    position: relative
}

.home-page header .search-area .suggestions ul {
    padding-left: 0
}

.home-page header .search-area .suggestions .btn {
    font-size: 85% !important;
    border-radius: 100px;
    margin-bottom: 0.5rem
}

.home-page header .video-container {
    position: relative;
    padding-right: 0;
    padding-left: 0
}

.home-page header .video-container video {
    position: absolute;
    width: 140%;
    z-index: -1;
    right: 0
}

.home-page header .video-container .control {
    padding: 0;
    position: relative
}

.home-page header .video-container .quick-links-prev,.home-page header .video-container .quick-links-next {
    position: relative;
    margin: auto 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%)
}

.home-page header .video-container .quick-links {
    position: relative;
    background-color: white;
    margin-top: 30rem;
    padding: 1rem 0.7rem;
    margin: 28rem -0 0 0
}

.home-page header .video-container .quick-links .quick-link .icon img {
    position: relative;
    margin: 0 auto;
    width: 115px
}

.home-page header .video-container .quick-links .quick-link .name {
    font-size: 85%;
    color: #3e4d61
}

.home-page header .video-container .quick-links .quick-link .name span {
    text-transform: uppercase
}

.home-page .transition {
    position: relative
}

.home-page .transition .bg-triangle {
    position: absolute;
    background-size: cover;
    top: 0;
    right: 0;
    left: 0;
    height: 15rem;
    z-index: -1;
    width: 110%
}

.home-page .long-arrow-circle {
    display: inline-block
}

.home-page .long-arrow-circle svg {
    margin-left: 15px;
    height: 25px
}

.home-page section.services {
    position: relative
}

.home-page section.services .header {
    margin-bottom: 2rem
}

.home-page section.services .header .title {
    border-right: 1px lightgray solid
}

.home-page section.services .services-slider .card {
    border: none;
    border-radius: 0;
    font-size: 75%;
    color: black;
    padding: 1rem;
    text-decoration: none
}

.home-page section.services .services-slider .card .image-container {
    position: relative;
    height: 8rem;
    overflow: hidden;
    margin-bottom: 1rem
}

.home-page section.services .services-slider .card .image-container img {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%
}

.home-page section.services .services-slider .card .image-container .overlay {
    -webkit-transition: .5s ease;
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.home-page section.services .services-slider .card .image-container .overlay .text {
    text-align: center;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    color: white
}

.home-page section.services .services-slider .card .title {
    text-transform: uppercase;
    font-weight: bold;
    color: #3e4d61;
    margin-bottom: 1rem
}

.home-page section.services .services-slider .card:hover .overlay {
    opacity: 0.7;
    background-color: black
}

.home-page section.services .services-slider .slick-slide {
    margin: .5rem .5rem 2rem 1rem !important
}

.home-page section.news-stories .header .title {
    border-right: 1px lightgray solid
}

.home-page section.news-stories .slick-slide {
    overflow: hidden
}

.home-page section.news-stories .news-slide {
    position: relative;
    height: 350px;
    border: none;
    color: #3e4d61
}

.home-page section.news-stories .news-slide .image-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

.home-page section.news-stories .news-slide .image-container img {
    position: relative;
    /*width: 100%;
    height: auto*/
}

.home-page section.news-stories .news-slide .title {
    background-color: white;
    opacity: 0.9;
    position: absolute;
    bottom: -5px;
    right: -3px;
    width: 75%
}

.home-page section.news-stories .news-slide .title .date {
    padding: 2rem 2rem 0 2rem;
    font-size: 85%
}

.home-page section.news-stories .news-slide .title .date hr {
    display: inline-block;
    width: 1.5rem;
    border-bottom: 2px solid #666;
    vertical-align: middle;
    margin: 0 0.5rem
}

.home-page section.news-stories .news-slide .title h3 {
    padding: 0.5rem 2rem 1rem 2rem;
    margin: 0;
    font-size: 110%
}

.home-page section.news-stories .news-slide .title .more {
    padding-left: 2rem;
    padding-bottom: 1rem;
    visibility: hidden;
    text-transform: uppercase;
    font-size: 80%
}

.home-page section.news-stories .news-slide .title .more i {
    color: #00a499;
    margin-left: 0.7rem
}

.home-page section.news-stories .news-slide:hover .title .more {
    visibility: visible
}

.home-page section.map {
    margin-top: 2rem;
    padding-right: 4rem;
    position: relative
}

.home-page section.map .stats-container-bg {
    top: 2.5rem;
    right: 0;
    z-index: 1;
    position: absolute
}

.home-page section.map .stats-container-bg svg {
    height: 11rem
}

.home-page section.map .stats-container {
    top: 0;
    right: 0;
    z-index: 2;
    position: absolute;
    background: white;
    border-left: 1px solid gray;
    border-bottom: 1px solid gray;
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 6rem;
    padding-bottom: 3rem
}

.home-page section.map .stats-container h5 {
    width: 100%;
    display: block;
    padding-left: 4.5rem;
    color: #40476d;
    text-transform: uppercase;
    margin-bottom: 1rem
}

.home-page section.map .stats-container .stat {
    display: inline-block;
    vertical-align: top;
    padding: 0 5rem;
    border-width: 0 0 0 3px;
    border-style: dotted;
    border-color: gray;
    border-image-slice: 33% 33%;
    border-image-repeat: round
}

.home-page section.map .stats-container .stat:first-of-type {
    border-left: none
}

.home-page section.map .stats-container .stat h2 {
    color: black;
    font-weight: bold;
    letter-spacing: 0
}

.home-page section.map .stats-container .stat p {
    color: #40476d;
    margin: 0
}

.home-page section.map .stats-container .stat:not(:first-of-type) {
    text-align: center
}

.home-page section.map .map-container {
    width: 100%;
    position: relative
}

.home-page section.map .map-container img.bg-map {
    width: 100%;
    z-index: 0;
    position: relative
}

.home-page section.map .map-container .map-point {
    width: 1rem;
    height: 1rem;
    top: 10%;
    left: 10%;
    position: absolute
}

.home-page section.map .map-container .map-point div {
    width: 1rem;
    height: 1rem;
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transform-origin: middle center;
    transform-origin: middle center;
    border-radius: 50%;
    -webkit-transition: background 0.3s linear, -webkit-transform 0.3s ease-in-out;
    transition: background 0.3s linear, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, background 0.3s linear;
    transition: transform 0.3s ease-in-out, background 0.3s linear, -webkit-transform 0.3s ease-in-out;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s
}

.home-page section.map .map-container .map-point .solid {
    background: #00a499;
    z-index: 2;
    -webkit-animation-name: dot-center;
    animation-name: dot-center;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.home-page section.map .map-container .map-point .ring--opaque {
    background: rgba(47,185,183,0.27);
    z-index: 1;
    -webkit-animation-name: dot-ring1;
    animation-name: dot-ring1;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.home-page section.map .map-container .map-point .ring--transluscent {
    background: rgba(47,185,183,0.15);
    z-index: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-animation-name: dot-ring2;
    animation-name: dot-ring2;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

@-webkit-keyframes dot-center {
    0% {
        background: #00a499
    }

    20% {
        background: white
    }

    30% {
        background: #00a499
    }
}

@keyframes dot-center {
    0% {
        background: #00a499
    }

    20% {
        background: white
    }

    30% {
        background: #00a499
    }
}

@-webkit-keyframes dot-ring1 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    20% {
        -webkit-transform: scale(3);
        transform: scale(3)
    }

    30% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
}

@keyframes dot-ring1 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    20% {
        -webkit-transform: scale(3);
        transform: scale(3)
    }

    30% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
}

@-webkit-keyframes dot-ring2 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    20% {
        -webkit-transform: scale(6);
        transform: scale(6)
    }

    30% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
}

@keyframes dot-ring2 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    20% {
        -webkit-transform: scale(6);
        transform: scale(6)
    }

    30% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
}

.home-page section.map .map-container .map-point:hover .solid {
    background: white;
    -webkit-transition-delay: 0s;
    transition-delay: 0s
}

.home-page section.map .map-container .map-point:hover .ring--opaque {
    -webkit-transform: scale(3);
    transform: scale(3);
    -webkit-transition-delay: 0s;
    transition-delay: 0s
}

.home-page section.map .map-container .map-point:hover .ring--transluscent {
    -webkit-transform: scale(6);
    transform: scale(6);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s
}

.home-page section.map .map-container .map-point.point-1 {
    top: 67.5%;
    left: 18.5%
}

.home-page section.map .map-container .map-point.point-1 .solid {
    -webkit-animation-delay: 3s;
    animation-delay: 3s
}

.home-page section.map .map-container .map-point.point-1 .ring--opaque {
    -webkit-animation-delay: 3s;
    animation-delay: 3s
}

.home-page section.map .map-container .map-point.point-1 .ring--transluscent {
    -webkit-animation-delay: 3s;
    animation-delay: 3s
}

.home-page section.map .map-container .map-point.point-2 {
    top: 72%;
    left: 19.5%
}

.home-page section.map .map-container .map-point.point-2 .solid {
    -webkit-animation-delay: 6s;
    animation-delay: 6s
}

.home-page section.map .map-container .map-point.point-2 .ring--opaque {
    -webkit-animation-delay: 6s;
    animation-delay: 6s
}

.home-page section.map .map-container .map-point.point-2 .ring--transluscent {
    -webkit-animation-delay: 6s;
    animation-delay: 6s
}

.home-page section.map .map-container .map-point.point-3 {
    top: 71%;
    left: 21.34%
}

.home-page section.map .map-container .map-point.point-3 .solid {
    -webkit-animation-delay: 9s;
    animation-delay: 9s
}

.home-page section.map .map-container .map-point.point-3 .ring--opaque {
    -webkit-animation-delay: 9s;
    animation-delay: 9s
}

.home-page section.map .map-container .map-point.point-3 .ring--transluscent {
    -webkit-animation-delay: 9s;
    animation-delay: 9s
}

.home-page section.map .map-container .map-point.point-4 {
    top: 68%;
    left: 24%
}

.home-page section.map .map-container .map-point.point-4 .solid {
    -webkit-animation-delay: 12s;
    animation-delay: 12s
}

.home-page section.map .map-container .map-point.point-4 .ring--opaque {
    -webkit-animation-delay: 12s;
    animation-delay: 12s
}

.home-page section.map .map-container .map-point.point-4 .ring--transluscent {
    -webkit-animation-delay: 12s;
    animation-delay: 12s
}

.home-page section.map .map-container .map-point.point-5 {
    top: 75.4%;
    left: 23.6%
}

.home-page section.map .map-container .map-point.point-5 .solid {
    -webkit-animation-delay: 15s;
    animation-delay: 15s
}

.home-page section.map .map-container .map-point.point-5 .ring--opaque {
    -webkit-animation-delay: 15s;
    animation-delay: 15s
}

.home-page section.map .map-container .map-point.point-5 .ring--transluscent {
    -webkit-animation-delay: 15s;
    animation-delay: 15s
}

.home-page section.map .map-container .map-point.point-6 {
    top: 70.5%;
    left: 26.5%
}

.home-page section.map .map-container .map-point.point-6 .solid {
    -webkit-animation-delay: 18s;
    animation-delay: 18s
}

.home-page section.map .map-container .map-point.point-6 .ring--opaque {
    -webkit-animation-delay: 18s;
    animation-delay: 18s
}

.home-page section.map .map-container .map-point.point-6 .ring--transluscent {
    -webkit-animation-delay: 18s;
    animation-delay: 18s
}

.home-page section.map .map-container .map-point.point-7 {
    top: 74.5%;
    left: 26.5%
}

.home-page section.map .map-container .map-point.point-7 .solid {
    -webkit-animation-delay: 21s;
    animation-delay: 21s
}

.home-page section.map .map-container .map-point.point-7 .ring--opaque {
    -webkit-animation-delay: 21s;
    animation-delay: 21s
}

.home-page section.map .map-container .map-point.point-7 .ring--transluscent {
    -webkit-animation-delay: 21s;
    animation-delay: 21s
}

.home-page section.map .map-container .map-point.point-8 {
    top: 77.1%;
    left: 27.5%
}

.home-page section.map .map-container .map-point.point-8 .solid {
    -webkit-animation-delay: 24s;
    animation-delay: 24s
}

.home-page section.map .map-container .map-point.point-8 .ring--opaque {
    -webkit-animation-delay: 24s;
    animation-delay: 24s
}

.home-page section.map .map-container .map-point.point-8 .ring--transluscent {
    -webkit-animation-delay: 24s;
    animation-delay: 24s
}

.home-page section.map .map-container .state-label {
    color: #91876e;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    top: 17%;
    left: 13%;
    z-index: 1;
    position: absolute
}

.home-page section.map .map-container .location-count {
    top: 36%;
    left: 27%;
    z-index: 1;
    position: absolute;
    text-align: center
}

.home-page section.map .map-container .location-count h1 {
    color: #2fb9b7;
    letter-spacing: -0.02em;
    font-weight: bold;
    margin-bottom: 0.75rem
}

.home-page section.map .map-container .location-count p {
    color: #40476d;
    letter-spacing: 0.075em;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0
}

.home-page section.map .map-container h1.sub-heading {
    color: #dae9f8;
    font-weight: bold;
    letter-spacing: -0.05em;
    left: 0.75rem;
    bottom: 2rem;
    z-index: 1;
    position: absolute
}

.home-page section.map .map-container .search-container {
    width: 50%;
    padding: 3rem 3rem;
    padding-bottom: 2rem;
    padding-right: 10rem;
    right: 0;
    bottom: 0;
    z-index: 1;
    position: absolute;
    background: #f9fcfd;
    -webkit-box-shadow: -6px 8px 30.78px 7.22px rgba(57,141,203,0.13);
    box-shadow: -6px 8px 30.78px 7.22px rgba(57,141,203,0.13)
}

.home-page section.map .map-container .search-container h3 {
    color: #40476d;
    margin-bottom: 1.5rem;
    letter-spacing: 0em
}

.home-page section.map .map-container .search-container hr {
    display: inline-block;
    vertical-align: middle;
    height: baselines(1.5);
    width: 1px;
    background-color: #bfc3c9;
    border: none;
    margin-right: 1.5rem
}

.home-page section.map .map-container .search-container .hover-icon-link {
    margin: 0 2.25rem;
    margin-left: 1rem
}

.home-page section.map .map-container .search-container .search-box {
    border-radius: rem-calc(55px);
    padding: 0 4rem;
    border-color: gray;
    margin-top: 1.5rem;
    margin-bottom: 1rem
}

.home-page section.map .map-container .search-container .search-box input {
    color: #40476d;
    padding: baselines(1.5) 0
}

.home-page section.map .map-container .search-container .search-box .search-icon {
    width: 5.5rem;
    height: 5.5rem
}

.home-page section.map .map-container .search-container .search-box .search-icon svg {
    top: 0.25rem;
    width: 5.5rem;
    height: 5.5rem
}

section.events .event-slide:hover {
    text-decoration: none
}

section.events .event-slide:hover .details {
    text-decoration: underline
}

section.events .event-slide:hover .content {
    background: -webkit-gradient(linear, left top, right top, from(#2fb9b7), color-stop(33%, rgba(47,185,183,0.27)), to(rgba(47,185,183,0)));
    background: linear-gradient(to right, #2fb9b7 0%, rgba(47,185,183,0.27) 33%, rgba(47,185,183,0) 100%)
}

section.events .content .title {
    color: #3e4d61 !important
}

section.events .content .title .date {
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 0.6rem
}

section.events .content .title .date hr {
    display: inline-block;
    width: 1.5rem;
    border-bottom: 2px solid #666;
    vertical-align: middle;
    margin: 0 0.5rem
}

section.events .content .details {
    color: #3e4d61 !important;
    text-transform: uppercase;
    font-size: 85%
}

@media (max-width: 575.98px) {
    .home-page .alert {
        font-size:75%
    }
}

@media (max-width: 767.98px) {
    .home-page .alert {
        font-size:85%
    }

    .home-page header .search-area {
        padding: 5rem 1.5rem 0;
        padding-right: 1.5rem !important
    }

    .home-page header .video-container .quick-links-prev i,.home-page header .video-container .quick-links-next i {
        font-size: 35px;
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }

    .home-page header .video-container .quick-links {
        margin-top: 2rem
    }

    .home-page header .video-container .quick-links .quick-link .icon img {
        width: 60px
    }

    .home-page section.services .services-slider .card .image-container {
        height: 12rem
    }
}

@media (max-width: 991.98px) {
    .home-page header .search-area {
        padding-right:5rem
    }

    .home-page header .video-container .quick-links {
        margin-top: 2rem
    }

    .home-page section.services .header .title {
        border: none
    }

    .home-page section.news-stories .header .title {
        border: none
    }
}

.news-stories-page .header {
    padding: 5rem 2rem
}

.news-stories-page .header .title {
    font-size: 1.6rem;
    line-height: 1.7rem
}

.news-stories-page .header .title span {
    font-weight: bold;
    display: block
}

.news-stories-page .header .search-area {
    position: relative
}

.news-stories-page .header .search-area .search-form {
    position: relative;
    width: 60%
}

.news-stories-page .header .search-area .search-form input {
    height: 27px
}

.news-stories-page .header .search-area .search-form .search-button {
    right: -1.65rem;
    margin: 0.2rem;
    font-size: 15px
}

.news-stories-page .news-stories .slider-header .title {
    text-transform: uppercase;
    font-size: 90%
}

.news-stories-page .news-stories-page-slider .news-story-page-slide {
    margin-bottom: 1rem
}

.news-stories-page .news-stories-page-slider .news-story-page-slide a:hover {
    text-decoration: none
}

.news-stories-page .news-stories-page-slider .news-story-page-slide a:hover .content .title {
    text-decoration: underline
}

.news-stories-page .news-stories-page-slider .news-story-page-slide .image-container {
    width: 100%;
    max-height: 250px;
    overflow: hidden
}

.news-stories-page .news-stories-page-slider .news-story-page-slide .image-container img {
    width: 100%
}

.news-stories-page .news-stories-page-slider .news-story-page-slide .content {
    color: #3e4d61 !important
}

.news-stories-page .news-stories-page-slider .news-story-page-slide .content .date {
    font-weight: 300;
    margin: 0.6rem 0
}

.news-stories-page .news-stories-page-slider .news-story-page-slide:hover {
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important
}

@media (max-width: 767.98px) {
    .news-stories-page .header {
        padding:10px
    }

    .news-stories-page .header .search-area .search-form {
        width: 100%
    }
}

@media (max-width: 991.98px) {
    .news-stories-page .header .title {
        font-size:1.6rem;
        margin-bottom: 1rem
    }

    .news-stories-page .header .title span {
        font-weight: bold;
        display: inline
    }

    .news-stories-page .header .search-area .search-form {
        width: 80%;
        margin: 0 auto
    }
}

.news-story-page .date {
    margin-bottom: 1rem
}

.news-story-page .title {
    margin-bottom: 2rem
}

.news-story-page .mobile-title {
    display: none
}

.news-story-page .image-container {
    width: 100%;
    overflow: hidden
}

.news-story-page .image-container img {
    width: 100%
}

.news-story-page .image-container .mobile {
    display: none
}

.news-story-page .social-share .social-icon i {
    color: #40476d
}

.news-story-page .social-share .social-icon:hover i {
    color: #00a499
}

@media (max-width: 991.98px) {
    .news-story-page .mobile-title {
        display:block
    }

    .news-story-page .image-container {
        margin-bottom: 2rem
    }

    .news-story-page .image-container .desktop {
        display: none
    }

    .news-story-page .image-container .mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .news-story-page .desktop-title {
        display: none
    }
}

.events-page .header {
    padding: 5rem 2rem
}

.events-page .header h1,
.news-stories-page .header h1,
.directory-page .header h1,
.physicians-page .header h1 {
    font-size: 1.8rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.events-page .header .title {
    font-size: 1.6rem;
    text-align: right
}

.events-page .header .title span {
    font-weight: bold
}

.events-page .header .search-area {
    position: relative
}

.events-page .header .search-area .search-form {
    position: relative;
    width: 60%
}

.events-page .header .search-area .search-form input {
    height: 27px
}

.events-page .header .search-area .search-form .search-button {
    right: -1.65rem;
    margin: 0.2rem;
    font-size: 15px
}

.events-page .events .event-slide:hover {
    text-decoration: none
}

.events-page .events .event-slide:hover .details {
    text-decoration: underline
}

.events-page .events .event-slide:hover .content {
    background: -webkit-gradient(linear, left top, right top, from(#2fb9b7), color-stop(33%, rgba(47,185,183,0.27)), to(rgba(47,185,183,0)));
    background: linear-gradient(to right, #2fb9b7 0%, rgba(47,185,183,0.27) 33%, rgba(47,185,183,0) 100%)
}

.events-page .events .content .thumbnail img {
    width: 200px
}

.events-page .events .content .title {
    color: #3e4d61 !important
}

.events-page .events .content .title .date {
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 0.6rem
}

.events-page .events .content .title .date hr {
    display: inline-block;
    width: 1.5rem;
    border-bottom: 2px solid #666;
    vertical-align: middle;
    margin: 0 0.5rem
}

.events-page .events .content .details {
    color: #3e4d61 !important;
    text-transform: uppercase;
    font-size: 85%
}

@media (max-width: 767.98px) {
    .events-page .header .search-area .search-form {
        width:100%
    }
}

@media (max-width: 991.98px) {
    .events-page .header .title {
        font-size:1.6rem;
        text-align: center;
        line-height: 1.7rem;
        margin-bottom: 1rem
    }

    .events-page .header .title span {
        font-weight: bold;
        display: inline
    }

    .events-page .header .search-area .search-form {
        width: 80%;
        margin: 0 auto
    }
}

.event-page .date {
    margin-bottom: 1rem
}

.event-page .mobile-title {
    display: none
}

.event-page .title {
    margin-bottom: 2rem
}

.event-page .content {
    margin-top: 2rem
}

.event-page .image-container {
    width: 100%;
    overflow: hidden
}

.event-page .image-container img {
    width: 100%
}

.event-page .social-share .social-icon i {
    color: #40476d
}

.event-page .social-share .social-icon:hover i {
    color: #00a499
}

@media (max-width: 991.98px) {
    .event-page .mobile-title {
        display:block
    }

    .event-page .image-container {
        margin-bottom: 2rem
    }

    .event-page .image-container .desktop {
        display: none
    }

    .event-page .image-container .mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .event-page .desktop-title {
        display: none
    }
}

.services-page .header {
    margin-top: 5rem
}

.services-page .header .subtitle {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 90%;
    margin-bottom: 1.2rem
}

.services-page ol li {
    list-style-type: none
}

.services-page .search-area {
    margin-top: 2rem
}

.services-page .search-area .search-form {
    width: 100%
}

.services-page .search-area .search-form input {
    height: 27px
}

.services-page .search-area .search-form .search-button {
    right: -1.65rem;
    margin: 0.2rem;
    font-size: 14px;
    top: 0;
}

.services-page .services .service {
    background-color: white;
    padding: 2rem 1rem;
    -webkit-transition: ease-in-out 0.2s;
}

.services-page .services .service a {
    color: #40476d !important;
    font-family: 'PT Serif', serif;
    font-size: 1.2rem;
    text-decoration: none;
    position: relative
}

    .services-page .services .service .content {
        /*margin: 0;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)*/
    }

.services-page .services .service .learn-more {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 300;
    margin-top: 0.8rem;
    letter-spacing: 0.1rem;
    position: relative
}

.services-page .services .service .learn-more .link-animation {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0%;
    background: rgba(47,185,183,0.2);
    -webkit-transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1)
}

.services-page .services .service:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    background-color: white;
    z-index: 10;
    border: none !important;
    border-top: 5px #00a499 solid !important;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none
}

.services-page .services .service:hover .link-animation {
    width: 100%
}

header .image {
    position: relative
}

.service-page header .image .mobile {
    display: none
}

.service-page header .image .caption {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: white;
    z-index: 10;
    text-align: right;
    padding: 1.5rem;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    max-width: 90%;
    font-family: 'PT Serif', serif;
    font-size: 90%
}

header .caption {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: white;
    z-index: 10;
    text-align: right;
    padding: 1rem;
    -webkit-transform: translateY(calc(50% - 0.59em));
    transform: translateY(50%);
    max-width: 90%;
    font-family: 'PT Serif', serif;
    font-size: 90%
}

.service-page header .image-container {
    width: 100%;
    overflow: hidden
}

.service-page header .image-container img {
    width: 100%
}

.service-page header .header-links .header-link a {
    color: #40476d !important;
    position: relative
}

.service-page header .header-links .header-link a .link-animation {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0%;
    background: rgba(47,185,183,0.2);
    -webkit-transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1)
}

.service-page header .header-links .header-link a:hover {
    text-decoration: none
}

.service-page header .header-links .header-link a:hover .link-animation {
    width: 100%
}

.service-page .section-transition {
    position: relative
}

.service-page .section-transition .bg-triangle {
    position: absolute;
    background-size: cover;
    top: 0;
    right: 0;
    left: 0;
    height: 15rem;
    z-index: -1;
    width: 110%
}

.service-page section.services h2,
.general-page .services h2{
    margin-bottom: 2rem
}

.service-page section.services .service-area,
.general-page .service-area{
    position: relative
}

.service-page section.services .service-area .controls,
.general-page .service-area .controls{
    position: absolute;
    top: 12em;
    right: 2em;
    z-index: 10;
    cursor: pointer;
}

.service-page section.services .service-area .controls .left-arrow-icon svg,.service-page section.services .service-area .controls .right-arrow-icon svg,
.general-page .service-area .controls .left-arrow-icon svg,
.general-page .service-area .controls .right-arrow-icon svg{
    height: 2.5rem;
    width: 2.5rem
}

.service-page section.services .service-area .controls .service-next,.service-page section.services .service-area .controls .service-prev,
.general-page .service-area .controls .service-next,
.general-page .service-area .controls .service-prev{
    z-index: 100
}

.service-page section.services .service-area .controls .service-next,
.general-page .service-area .controls .service-next{
    margin-right: 2rem
}

/*-------*/
.service-page section.services .services-menu,
.service-page section.services ul[class*="services-menu-"],
.general-page .services-menu,
.general-page ul[class*="services-menu-"]{
    list-style-type: none;
    padding-left: 15px
}

.service-page section.services .services-menu li,
.service-page section.services ul[class*="services-menu-"] li,
.general-page .services-menu li,
.general-page ul[class*="services-menu-"] li{
    margin-bottom: 1rem
}

.service-page section.services .services-menu li a,
.service-page section.services ul[class*="services-menu-"] li a,
.general-page .services-menu li a,
.general-page ul[class*="services-menu-"] li a{
    color: #3e4d61;
    position: relative
}

.service-page section.services .services-menu li a .link-animation,
.service-page section.services ul[class*="services-menu-"] li a .link-animation,
.general-page .services-menu li a .link-animation,
.general-page ul[class*="services-menu-"] li a .link-animation{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0%;
    background: rgba(47,185,183,0.2);
    -webkit-transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1)
}

.service-page section.services .services-menu li a:hover,
.service-page section.services ul[class*="services-menu-"] li a:hover,
.general-page .services-menu li a:hover,
.general-page ul[class*="services-menu-"] li a:hover{
    text-decoration: none
}

.service-page section.services .services-menu li a:hover .link-animation,
.service-page section.services ul[class*="services-menu-"] li a:hover .link-animation,
.general-page .services-menu li a:hover .link-animation,
.general-page ul[class*="services-menu-"] li a:hover .link-animation{
    width: 100%
}

.service-page section.services .services-menu li.active a .link-animation,
.service-page section.services ul[class*="services-menu-"] li.active a .link-animation,
.general-page .services-menu li.active a .link-animation,
.general-page ul[class*="services-menu-"] li.active a .link-animation{
    width: 100%
}
/*-------*/

.service-page section.services .service-slide p img,
.general-page .service-slide p img,
.service-page section.services .services-slide div:not(:nth-child(1)) img,
.general-page .service-slide div:not(:nth-child(1)) img{
    max-width: 100%;
    max-height: 500px;
    object-fit: cover;
}

@media (max-width: 991.98px)
{
    .service-page section.services .service-slide p img,
    .general-page .service-slide p img,
    .service-page section.services .services-slide div:not(:nth-child(1)) img,
    .general-page .service-slide div:not(:nth-child(1)) img{
        max-width: 320px;
        height: auto;
        object-fit: cover;
    }
    
    .service-page section.services .service-slide .image-container img,
    .general-page .service-slide .image-container img{
        max-height: 110px !important;
    }
}

.service-page section.services .service-slide .image-container,
.general-page .service-slide .image-container{
    width: 100%;
    overflow: hidden;
    margin-bottom: 3.75rem
}

.service-page section.services .service-slide .image-container img,
.general-page .service-slide .image-container img{
    width: 100%;
    max-height: 165px;
    object-fit: cover;
}

.service-page section.conditions h2 {
    margin-bottom: 2rem
}

.service-page section.conditions .conditions-area {
    position: relative
}

.service-page section.conditions .conditions-area .controls {
    position: absolute;
    top: 14.5rem;
    right: 0
}

.service-page section.conditions .conditions-area .controls .left-arrow-icon svg,.service-page section.conditions .conditions-area .controls .right-arrow-icon svg {
    height: 2.5rem;
    width: 2.5rem
}

.service-page section.conditions .conditions-area .controls .conditions-next,.service-page section.conditions .conditions-area .controls .conditions-prev {
    z-index: 100
}

.service-page section.conditions .conditions-area .controls .conditions-next {
    margin-right: 2rem
}

.service-page section.conditions .conditions-menu {
    list-style-type: none;
    padding-left: 15px
}

.service-page section.conditions .conditions-menu li {
    margin-bottom: 1rem
}

.service-page section.conditions .conditions-menu li a {
    color: #3e4d61;
    position: relative
}

.service-page section.conditions .conditions-menu li a .link-animation {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0%;
    background: rgba(47,185,183,0.2);
    -webkit-transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1)
}

.service-page section.conditions .conditions-menu li a:hover {
    text-decoration: none
}

.service-page section.conditions .conditions-menu li a:hover .link-animation {
    width: 100%
}

.service-page section.conditions .conditions-menu li.active a .link-animation {
    width: 100%
}

.service-page section.conditions .conditions-slide .image-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 3.75rem
}

.service-page section.conditions .conditions-slide .image-container img {
    width: 100%
}

section.physicians .header .title .subheading,
section.clinicians .header .title .clinicians,
section.residents .header .title .residents{
    text-transform: uppercase;
    font-weight: 300;
    font-size: 90%;
    padding-bottom: 0;
    margin-bottom: 0.3rem
}

section.physicians .controls .left-arrow-icon svg,.service-page section.physicians .controls .right-arrow-icon svg,
section.clinicians .controls .left-arrow-icon svg,.service-page section.clinicians .controls .right-arrow-icon svg,
section.residents .controls .left-arrow-icon svg,.service-page section.residents .controls .right-arrow-icon svg{
    height: 2.5rem;
    width: 2.5rem
}

section.physicians .physician-slider .physician-slide .physician-card,
section.clinicians .clinicians-slider .clinicians-slide .clinicians-card,
section.residents .residents-slider .residents-slide .residents-card{
    margin: 2rem 1rem;
    position: relative;
    overflow: hidden;
    border: 1px solid #dee2e6;
    line-height: 1.4;
    -webkit-transition: ease-in-out 0.3s;
}

section.residents .residents-slider .residents-slide .residents-card .service-container {
    margin: 0 10px;
}

section.residents .residents-slider .residents-slide .residents-card .service-container a {
    font-family: 'PT Serif', serif;
    font-weight: 500;
    font-size: 1.25rem;
    color: #40476d !important;
    text-decoration: none;
}

section.physicians .physician-slider .physician-slide .physician-card .border-top,
section.clinicians .clinicians-slider .clinicians-slide .clinicians-card .border-top,
section.residents .residents-slider .residents-slide .residents-card .border-top{
    width: 0%;
    height: 5px;
    position: absolute;
    top: -1px;
    left: 0px;
    right: 0;
    background-color: #00a499;
    z-index: 10;
    -webkit-transition: width 0.5s;
    transition: width 0.5s
}

section.physicians .physician-slider .physician-slide .physician-card .side-bar,
section.clinicians .clinicians-slider .clinicians-slide .clinicians-card .side-bar,
section.residents .residents-slider .residents-slide .residents-card .side-bar{
    padding: 2rem;
    text-align: center
}

section.residents .residents-slider .residents-slide .residents-card .side-bar{
    padding: 1rem !important;
}

section.physicians .physician-slider .physician-slide .physician-card .content .title{
    padding-bottom: 1em;
}

section.physicians .physician-slider .physician-slide .physician-card .side-bar a,
section.physicians .physician-slider .physician-slide .physician-card .content .profile-link,
section.clinicians .clinicians-slider .clinicians-slide .clinicians-card .side-bar a,
section.residents .residents-slider .residents-slide .residents-card .side-bar a{
    text-transform: uppercase;
    font-size: 90%;
    color: #3e4d61;
    text-decoration: underline
}

section.physicians .physician-slider .physician-slide .physician-card .image-container,
section.clinicians .clinicians-slider .clinicians-slide .clinicians-card .image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 500px;
    margin: 0 auto;
    margin-bottom: 1rem
}

section.residents .residents-slider .residents-slide .residents-card .image-container{
    position: relative;
    overflow: hidden;
    max-width: 60%;
    border-radius: 500px;
    margin: 0 auto;
}

section.physicians .physician-slider .physician-slide .physician-card .image-container img,
section.clinicians .clinicians-slider .clinicians-slide .clinicians-card .image-container img,
section.residents .residents-slider .residents-slide .residents-card .image-container img{
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    
}

section.physicians .physician-slider .physician-slide .physician-card .content,
section.clinicians .clinicians-slider .clinicians-slide .clinicians-card .content,
section.residents .residents-slider .residents-slide .residents-card .content{
    padding: 1.5rem;
    padding-left: 10px
}

section.physicians .physician-slider .physician-slide .physician-card .content .title h3,
section.clinicians .clinicians-slider .clinicians-slide .clinicians-card .content .title h3,
section.residents .residents-slider .residents-slide .residents-card .content .title h3{
    color: #3e4d61;
    font-size: 1rem;
    margin-bottom: 0.6em;
}

section.physicians .physician-slider .physician-slide .physician-card .content .title span,
section.clinicians .clinicians-slider .clinicians-slide .clinicians-card .content .title span,
section.residents .residents-slider .residents-slide .residents-card .content .title span{
    font-size: 0.9rem
}

section.physicians .physician-slider .physician-slide .physician-card .content .location-list,
section.clinicians .clinicians-slider .clinicians-slide .clinicians-card .content .location-list,
section.residents .residents-slider .residents-slide .residents-card .content .location-list{
    font-size: 80%
}

section.physicians .physician-slider .physician-slide .physician-card .content .location-list .phone-icon,
section.physicians .physician-slider .physician-slide .physician-card .content .location-list .fax-icon,
section.clinicians .clinicians-slider .clinicians-slide .clinicians-card .content .location-list .phone-icon,
section.clinicians .clinicians-slider .clinicians-slide .clinicians-card .content .location-list .fax-icon,
section.residents .residents-slider .residents-slide .residents-card .content .location-list .fax-icon,
section.residents .residents-slider .residents-slide .residents-card .content .location-list .phone-icon,
.hours-icon {
    display: inline
}

section.physicians .physician-slider .physician-slide .physician-card .content .location-list .phone-icon svg,
section.physicians .physician-slider .physician-slide .physician-card .content .location-list .fax-icon svg,
section.clinicians .clinicians-slider .clinicians-slide .clinicians-card .content .location-list .phone-icon svg,
section.clinicians .clinicians-slider .clinicians-slide .clinicians-card .content .location-list .fax-icon svg,
section.residents .residents-slider .residents-slide .residents-card .content .location-list .fax-icon svg,
section.residents .residents-slider .residents-slide .residents-card .content .location-list .phone-icon svg,
.hours-icon svg {
    width: 12px;
    height: 12px
}

section.physicians .physician-slider .physician-slide .physician-card .content .location-list .nav-link,
section.clinicians .clinicians-slider .clinicians-slide .clinicians-card .content .location-list .nav-link,
section.residents .residents-slider .residents-slide .residents-card .content .location-list .nav-link{
    padding-left: 0;
    color: #3e4d61;
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    margin-bottom: 0.5rem
}

section.physicians .physician-slider .physician-slide .physician-card .content .location-list .nav-link i,
section.clinicians .clinicians-slider .clinicians-slide .clinicians-card .content .location-list .nav-link i,
section.residents .residents-slider .residents-slide .residents-card .content .location-list .nav-link i{
    margin-left: 0.2rem
}

section.physicians .physician-slider .physician-slide .physician-card .content .location-list .nav-link.active .link-animation,
section.clinicians .clinicians-slider .clinicians-slide .clinicians-card .content .location-list .nav-link.active .link-animation,
section.residents .residents-slider .residents-slide .residents-card .content .location-list .nav-link.active .link-animation{
    width: 100%
}

section.physicians .physician-slider .physician-slide .physician-card .content .location-list .nav-link .link-animation,
section.clinicians .clinicians-slider .clinicians-slide .clinicians-card .content .location-list .nav-link .link-animation,
section.residents .residents-slider .residents-slide .residents-card .content .location-list .nav-link .link-animation{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0%;
    background: rgba(47,185,183,0.2);
    -webkit-transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1)
}

section.physicians .physician-slider .physician-slide .physician-card .content .location-list .nav-link:hover .link-animation,
section.clinicians .clinicians-slider .clinicians-slide .clinicians-card .content .location-list .nav-link:hover .link-animation,
section.residents .residents-slider .residents-slide .residents-card .content .location-list .nav-link:hover .link-animation{
    width: 100%
}

section.physicians .physician-slider .physician-slide .physician-card .content .location-list .get-directions-button,
section.clinicians .clinicians-slider .clinicians-slide .clinicians-card .content .location-list .get-directions-button,
section.residents .residents-slider .residents-slide .residents-card .content .location-list .get-directions-button{
    display: inline-block;
    margin-top: 1rem;
    text-transform: uppercase;
    width: 100%;
    font-weight: bold;
    color: #3e4d61;
    padding: 0.5rem 1rem;
    font-size: 85%
}

section.physicians .physician-slider .physician-slide .physician-card:hover,
section.clinicians .clinicians-slider .clinicians-slide .clinicians-card:hover,
section.residents .residents-slider .residents-slide .residents-card:hover{
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0 0.5rem 1rem rgba(87,92,192,0.15) !important;
    box-shadow: 0 0.5rem 1rem rgba(87,92,192,0.15) !important
}

section.physicians .physician-slider .physician-slide .physician-card:hover .border-top,
section.clinicians .clinicians-slider .clinicians-slide .clinicians-card:hover .border-top,
section.residents .residents-slider .residents-slide .residents-card:hover .border-top {
    width: 100%;
    -webkit-transition: width 0.5s;
    transition: width 0.5s;
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg)
}

section.locations {
    position: relative;
    overflow: auto
}

section.locations .content {
    width: 90%;
    float: right
}

section.locations .content .header .title .subheading {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 90%;
    padding-bottom: 0;
    margin-bottom: 0.3rem
}

section.locations .content .header .controls .left-arrow-icon svg,.service-page section.locations .content .header .controls .right-arrow-icon svg {
    height: 2.5rem;
    width: 2.5rem
}

section.locations .content .location-card {
    background-color: white;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    position: relative;
    -webkit-transition: ease-in-out 0.3s;
}

section.locations .content .location-card .header {
    padding: 1.2rem;
    font-size: 90%
}

section.locations .content .location-card .header h3 {
    font-size: 1.3rem
}

section.locations .content .location-card .header .name {
    text-transform: uppercase
}

section.locations .content .location-card .map-container {
    width: 100%;
    min-height: 12rem
}

section.locations .content .location-card .map-container .map {
    width: 100%;
    height: 12rem
}

section.locations .content .location-card .address {
    padding: 1.2rem;
    font-size: 85%
}

section.locations .content .location-card .address .location-map-icon {
    display: inline
}

section.locations .content .location-card .address .location-map-icon svg {
    width: 15px;
    height: 15px
}

section.locations .content .location-card .contact-info {
    padding: 0 1.2rem 1.2rem;
    font-size: 85%
}

section.locations .content .location-card .contact-info .phone-icon,
section.locations .content .location-card .contact-info .fax-icon,
section.locations .content .location-card .contact-info .hours-icon {
    display: inline
}

section.locations .content .location-card .contact-info .phone-icon svg,
section.locations .content .location-card .contact-info .fax-icon svg,
section.locations .content .location-card .contact-info .hours-icon svg {
    width: 15px;
    height: 15px
}

section.locations .content .location-card .location-physicians {
    padding: 1rem 2rem;
    font-size: 85%
}

section.locations .content .location-card .location-physicians img {
    display: inline-block;
    width: 20px;
    margin-top: -5px;
    margin-right: 5px
}

ection.locations .content .location-card .location-physicians a {
    color: #3e4d61
}

section.locations .content .location-card .location-physicians .down-gray-arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 5px
}

section.locations .content .location-card .location-physicians .collapse {
    padding: 1rem 0
}

section.locations .content .location-card .directions {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.12rem;
    font-size: 85%
}

section.locations .content .location-card .directions a {
    display: inline-block;
    padding: 1rem;
    color: #3e4d61
}

section.locations .content .location-card .directions a:hover {
    color: #00a499
}

section.locations .content .location-card .border-bottom {
    width: 0%;
    height: 5px;
    position: absolute;
    bottom: -1px;
    left: 0px;
    right: 0;
    background-color: #00a499;
    z-index: 10;
    -webkit-transition: width 0.5s;
    transition: width 0.5s
}

section.locations .content .location-card:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0 0.5rem 1rem rgba(87,92,192,0.15) !important;
    box-shadow: 0 0.5rem 1rem rgba(87,92,192,0.15) !important
}

section.locations .content .location-card:hover .directions a {
    color: #00a499
}

section.locations .content .location-card:hover .border-bottom {
    width: 100%;
    -webkit-transition: width 0.5s;
    transition: width 0.5s
}

@media (max-width: 575.98px) {
    .general-page .service-area .controls,
    .service-page section.services .service-area .controls {
        top:7.5rem
    }

    .general-page .service-area .controls,
    .service-page section.conditions .conditions-area .controls {
        top: 8.5rem
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .general-page .service-area .controls,
    .service-page section.services .service-area .controls {
        top:10.5rem
    }
    
    .general-page .service-area .controls,
    .service-page section.conditions .conditions-area .controls {
        top: 10.5rem
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .general-page .service-area .controls,
    .service-page section.services .service-area .controls {
        top:9.5rem
    }

    .general-page .service-area .controls,
    .service-page section.conditions .conditions-area .controls {
        top: 9.5rem
    }
    
    .general-page .service-area .controls,
    .service-page section.services .service-slide .image-container img {
        max-height: 95px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .general-page .service-area .controls,
    .service-page section.services .service-area .controls {
        position:absolute;
        top: 12.5rem;
        right: 0
    }

    .general-page .service-area .controls,
    .service-page section.conditions .conditions-area .controls {
        position: absolute;
        top: 12.5rem;
        right: 0
    }
}

@media (max-width: 1200px) {
    header .caption {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .service-page header .image {
        margin-bottom:2rem
    }

    .service-page header .image .image-container .desktop {
        display: none
    }

    .service-page header .image .image-container .mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .service-page header .image .caption {
        display: none
    }

    .service-page section.locations .content {
        width: 100%
    }

    section.physicians .physician-slider .physician-slide,
    section.clinicians .clinicians-slider .clnicians-slide{
        font-size: 85%
    }

    section.physicians .physician-slider .physician-slide .physician-card .side-bar,
    section.clinicians .clnicians-slider .clinicians-slide .clinicians-card .side-bar {
        padding: 1rem
    }

    section.physicians .physician-slider .physician-slide .physician-card .image-container,
    section.clinicians .clinicians-slider .clinicians-slide .clinicians-card .image-container{
        width: 35%
    }
}

.physicians-page .header {
    padding: 5rem 2rem
}

.physicians-page .header .title {
    font-size: 1.6rem;
    line-height: 1.7rem
}

.physicians-page .header .title span {
    font-weight: bold;
    display: block
}

.physicians-page .header .search-area {
    position: relative
}

.physicians-page .header .search-area .search-form {
    position: relative;
    width: 60%
}

.physicians-page .header .search-area .search-form input {
    height: 27px
}

.physicians-page .header .search-area .search-form .search-button {
    right: -1.65rem;
    margin: 0.2rem;
    font-size: 15px
}

.physicians-page section.physicians ol li {
    list-style-type: none
}

.physicians-page section.physicians ol {
    padding-left: 0
}

.physicians-page section.physicians .physician-card {
    margin: 2rem 1rem;
    position: relative;
    overflow: hidden;
    border: 1px solid #dee2e6;
    line-height: 1.4;
    font-size: 90%;
    -webkit-transition: ease-in-out 0.3s;
}

.physicians-page section.physicians .physician-card .border-top {
    width: 0%;
    height: 5px;
    position: absolute;
    top: -1px;
    left: 0px;
    right: 0;
    background-color: #00a499;
    z-index: 10
}

.physicians-page section.physicians .physician-card .side-bar {
    padding: 2rem;
    text-align: center
}

.physicians-page section.physicians .physician-card .side-bar a {
    text-transform: uppercase;
    font-size: 90%;
    color: #3e4d61;
    text-decoration: underline
}

.physicians-page section.physicians .physician-card .image-container {
    position: relative;
    overflow: hidden;
    width: 100px;
    height: 100px;
    border-radius: 500px;
    margin: 0 auto;
    margin-bottom: 1rem
}

.physicians-page section.physicians .physician-card .image-container img {
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.physicians-page section.physicians .physician-card .content {
    padding: 1.5rem
}

.physicians-page section.physicians .physician-card .content .title h2 {
    color: #3e4d61;
    font-size: 0.9rem;
    margin-bottom: 0
}

.physicians-page section.physicians .physician-card .content .title span {
    font-size: 0.85rem;
    margin-top: -0.5rem
}

.physicians-page section.physicians .physician-card .content .location-list {
    font-size: 85%
}

.physicians-page section.physicians .physician-card .content .location-list .phone-icon,.physicians-page section.physicians .physician-card .content .location-list .fax-icon {
    display: inline
}

.physicians-page section.physicians .physician-card .content .location-list .phone-icon svg,.physicians-page section.physicians .physician-card .content .location-list .fax-icon svg {
    width: 12px;
    height: 12px
}

.physicians-page section.physicians .physician-card .content .location-list .nav-link {
    padding-left: 0;
    color: #3e4d61;
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0.5rem
}

.physicians-page section.physicians .physician-card .content .location-list .nav-link i {
    margin-left: 0.2rem
}

.physicians-page section.physicians .physician-card .content .location-list .nav-link.active .link-animation {
    width: 100%
}

.physicians-page section.physicians .physician-card .content .location-list .nav-link .link-animation {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0%;
    background: rgba(47,185,183,0.2);
    -webkit-transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1)
}

.physicians-page section.physicians .physician-card .content .location-list .nav-link:hover .link-animation {
    width: 100%
}

.physicians-page section.physicians .physician-card .content .location-list .get-directions-button {
    display: inline-block;
    margin-top: 1rem;
    text-transform: uppercase;
    width: 100%;
    font-weight: bold;
    color: #3e4d61;
    padding: 0.5rem 1rem;
    font-size: 85%
}

.physicians-page section.physicians .physician-card:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important
}

.physicians-page section.physicians .physician-card:hover .border-top {
    width: 100%;
    -webkit-transition: width 0.5s;
    transition: width 0.5s
}

@media (max-width: 767.98px) {
    .physicians-page .header {
        padding:10px
    }

    .physicians-page .header .search-area .search-form {
        width: 100%
    }

    .physicians-page section.physicians .physician-card {
        margin-left: 0;
        margin-right: 0
    }
}

@media (max-width: 991.98px) {
    .physicians-page .header .title {
        font-size:1.6rem;
        text-align: center;
        margin-bottom: 2rem
    }

    .physicians-page .header .title span {
        font-weight: bold;
        display: inline
    }

    .physicians-page .header .search-area .search-form {
        width: 80%;
        margin: 0 auto
    }

    .physicians-page section.physicians .physician-card .side-bar {
        padding: 1rem
    }

    /*.physicians-page section.physicians .physician-card .image-container {
        width: 35%
    }*/

    .physicians-page section.physicians .physician-card .content .location-list .locations-icon {
        height: 25px;
        width: auto
    }

    .physicians-page section.physicians .physician-card .content .location-list .get-directions-button {
        font-size: 80%
    }
}

.general-page header {
    position: relative
}

.general-page header .page-subnav {
    background-color: white;
    position: absolute;
    top: 16rem;
    width: 25%;
    padding: 2rem 1.75rem
}

.general-page header .page-subnav2 {
    background-color: white;
    position: absolute;
    top: 2em;
    width: 25%;
    padding: 2rem 1.75rem
}

.general-page header .page-subnav .nav-header,
.general-page header .page-subnav2 .nav-header{
    font-family: 'PT Serif', serif;
    font-weight: 700;
    font-size: 1rem;
    width: 75%;
    border-left: 2px solid #3e4d61;
    padding-left: 1rem
}

.general-page header .page-subnav .nav,
.general-page header .page-subnav2 .nav{
    margin-top: 2rem;
    margin-left: 2rem
}

.general-page header .page-subnav .nav .nav-link,
.general-page header .page-subnav2 .nav .nav-link{
    font-weight: 700;
    color: #3e4d61;
    font-size: 14px;
    padding: 0;
    margin-bottom: 1.5rem;
    -webkit-transition: ease-in-out 0.3s;
}

.general-page header .page-subnav .nav .nav-link:hover,
.general-page header .page-subnav2 .nav .nav-link:hover{
    background-color: #00a499;
    padding: 0.1rem 0 0.1rem 0.3em;
    border-radius: 5px;
    color: white;
}

.general-page header .title .subtitle {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 90%
}

.general-page header .title h1 {
    margin-top: 0.8rem;
    margin-bottom: 2rem
}

.general-page header .stats {
    padding: 0.8rem 0
}

.general-page header .stats .column:not(:last-child)::after {
    content: ' ';
    border-width: 0 0 0 3px;
    border-style: dotted;
    border-color: #c6cacf;
    border-image-slice: 33% 33%;
    border-image-repeat: round;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    position: absolute
}

.general-page header .stats .stat {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'PT Serif', serif !important
}

.general-page header .stats .label {
    font-weight: 300
}

.general-page header .image-container {
    width: 100%;
    overflow: hidden
}

.general-page header .image-container img {
    width: 100%
}

/*.general-page header .image-container video {*/
/*    width: 100%*/
/*}*/

.general-page header .image-container .mobile {
    display: none
}

.general-page header .long-image-container {
    padding-top: 0;
    width: 100%;
    overflow: hidden;
    max-height: 25rem
}

.general-page header .long-image-container img {
    width: 100%
}

.general-page header .header-links .header-link a {
    color: #40476d !important;
    position: relative
}

.general-page header .header-links .header-link a .link-animation {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0%;
    background: rgba(47,185,183,0.2);
    -webkit-transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1)
}

.general-page header .header-links .header-link a:hover {
    text-decoration: none
}

.general-page header .header-links .header-link a:hover .link-animation {
    width: 100%
}

.general-page .transition {
    position: relative
}

.general-page .transition .bg-triangle {
    position: absolute;
    background-size: cover;
    top: 0;
    right: 0;
    left: 0;
    height: 15rem;
    z-index: -1;
    width: 110%
}

@media (max-width: 767.98px) {
    .general-page header .stats {
        padding:0
    }

    .general-page header .stats .column {
        margin: 0.4rem 0
    }

    .general-page header .stats .column::after {
        display: none
    }

    .general-page header .page-subnav,
    .general-page header .page-subnav2 {
        display: none
    }
}

@media (min-width: 768px) and (max-width: 991.08px) {
    .general-page header .page-subnav {
        top:12rem;
        width: 38%
    }
}

@media (max-width: 991.98px) {
    .general-page header .image-container .desktop {
        display:none
    }

    .general-page header .image-container .mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        /*margin-bottom: 2rem*/
    }
}

.directory-page {
    font-size: 110%
}

.directory-page .header {
    padding: 5rem 2rem;
    margin-bottom: 2rem
}

.directory-page .header .title {
    font-size: 1.6rem;
    text-align: right
}

.directory-page .header .title span {
    font-weight: bold
}

.directory-page .header .search-area {
    position: relative
}

.directory-page .header .search-area .search-form {
    position: relative;
    width: 60%
}

.directory-page .header .search-area .search-form input {
    height: 27px
}

.directory-page .header .search-area .search-form .search-button {
    right: -1.65rem;
    margin: 0.2rem;
    font-size: 14px
}

.directory-page ol li {
    list-style-type: none
}

.directory-page .directory-card {
    border: 1px #f5f9fb solid;
    position: relative
}

.directory-page .directory-card:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0 0.5rem 1rem rgba(87,92,192,0.15) !important;
    box-shadow: 0 0.5rem 1rem rgba(87,92,192,0.15) !important
}

.directory-page .directory-card:hover .directory-card-header {
    background-size: cover
}

.directory-page .directory-card:hover .border-top {
    width: 100%;
    -webkit-transition: width 0.5s;
    transition: width 0.5s;
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg)
}

.directory-page .directory-card-header {
    padding: 1rem 1.75rem
}

.directory-page .directory-card-header .border-top {
    width: 0%;
    height: 4px;
    position: absolute;
    top: -1px;
    left: 0px;
    right: 0;
    background-color: #00a499;
    z-index: 10;
    -webkit-transition: width 0.5s;
    transition: width 0.5s
}

.directory-page .directory-card-header .department h2 {
    font-size: 85%;
    letter-spacing: 0.058em;
    margin-bottom: 0.2rem
}

.directory-page .directory-card-header .office {
    font-size: 82%
}

.directory-page .directory-card-body {
    padding: 1rem 1.75rem;
    font-size: 85%
}

.about-page header {
    position: relative
}

.about-page header .timeline-title {
    margin-top: 3.5rem;
    margin-bottom: 1rem
}

.about-page header .timeline-title h1 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 300 !important
}

.about-page header .timeline-title .year-display {
    font-size: 3.5rem;
    font-family: 'PT Serif', serif !important;
    font-weight: 700 !important
}

.about-page .timeline-photo-slider,.about-page .timeline-text-slider {
    padding: 3rem 0
}

.about-page .timeline-photo-slider .slide .image-container {
    width: 100%;
    overflow: hidden;
    position: relative
}

.about-page .timeline-photo-slider .slide .image-container img {
    position: relative;
    width: 100%;
    height: 100%
}

.about-page .timeline-text-slide .slide-content {
    font-weight: 300
}

.about-page .timeline-text-slide .slide-content .year {
    font-size: 4.5rem;
    font-weight: bold;
    font-family: 'PT Serif', serif;
    margin-bottom: 5rem
}

.about-page .timeline-text-slide .slide-content .title {
    text-transform: uppercase;
    margin-bottom: 1.5rem
}

.about-page .year-menu-container {
    margin-top: 2rem;
    padding-bottom: 3rem;
    border-right: 1px lightgray solid
}

.about-page .year-menu {
    padding-top: 3rem;
    font-family: 'PT Serif', serif
}

.about-page .year-menu li {
    list-style: none;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    padding-right: 1rem;
    margin-right: -3px;
    color: #b4b4b4
}

.about-page .year-menu li.active {
    color: #343a40 !important;
    border-right: 3px #00a499 solid;
    font-size: 1.6rem
}

.about-page .year-menu li:hover {
    cursor: pointer
}

.about-page section.board {
    margin: 2rem 0
}

.about-page section.board .title {
    padding: 3rem 0 4rem 0
}

.about-page section.board .title .subtitle {
    text-transform: uppercase;
    font-weight: 100;
    font-size: 85%
}

.about-page section.board .member-card {
    background-color: white
}

.about-page section.board .member-card-container {
    text-align: center;
    padding: 2rem 1rem 0.5rem 1rem
}

.about-page section.board .member-card-container .image-container {
    border-radius: 100%;
    overflow: hidden;
    width: 7rem;
    height: 7rem;
    margin: 0 auto
}

.about-page section.board .member-card-container .image-container img {
    width: 100%;
    height: auto
}

.about-page section.board .member-card-container .name {
    margin-top: 1rem
}

.about-page section.board .member-card-container .name h3 {
    font-size: 1rem;
    margin-bottom: 0
}

@media (max-width: 991.98px) {
    .about-page .year-menu-sidebar{
        display: none
    }
}


.community-page header,
.three_simple_columns {
    padding: 4rem 0
}

.community-page header .subtitle,
.three_simple_columns .subtitle{
    text-transform: uppercase;
    font-size: 85%;
    font-weight: 300
}

.community-page .stats-container:not(:first-child),
.three_simple_columns .stats-container:not(:first-child){
    border-left: 3px dotted lightgray
}

.community-page .stat-block,
.three_simple_columns .stat-block{
    text-align: center
}

.community-page .stat-block .stat,
.three_simple_columns .stat-block .stat{
    font-size: 2rem;
    font-weight: 600;
    font-family: 'PT Serif', serif
}

.community-page .stat-block .stat-title,
.three_simple_columns .stat-block .stat-title{
    font-size: 85%
}

@media (max-width: 991.98px) {
    .stats {
        margin-top: 2em;
    }
    .three_simple_columns {
        padding: 2rem 0;
    }
}

.sliding-columns {
   padding: 15px;
}

.community-page .slider-container,
.sliding-columns .slider-container {
    background-color: white;
    margin: 1rem 0 2rem 0;
    padding: 2rem 0.75rem 1.5rem 2rem
}

.community-page .slider-container .description .slider-subtitle,
.sliding-columns .slider-container .description .slider-subtitle {
    text-transform: uppercase;
    font-size: 85%
}

.community-page .slider-container .description .slider-title,
.sliding-columns .slider-container .description .slider-title{
    font-weight: bold;
    font-family: 'PT Serif', serif;
    font-size: 21px;
    margin-bottom: 1.5rem
}

.community-page .slider-container .description .slider-paragraph,
.sliding-columns .slider-container .description .slider-paragraph {
    font-size: 80%
}

.community-page .fundraiser-slide,
.sliding-columns .fundraiser-slide{
    position: relative;
    height: 18em;
    width: 100%
}

.community-page .fundraiser-slide-block,
.sliding-columns .fundraiser-slide-block {
    margin-right: 15px;
    height: 100%;
    position: relative
}

.community-page .fundraiser-slide-block .contribution,
.sliding-columns .fundraiser-slide-block .fundraiser-slide-content{
    margin-bottom: 1rem;
    margin-top: 0.5em;
    font-size: 75%
}

.community-page .fundraiser-slide-block .fundraiser-slide-title,
.sliding-columns .fundraiser-slide-block .fundraiser-slide-title{
    font-family: 'PT Serif', serif
}

.community-page .fundraiser-slide-block .fundraiser-slide-money,
.sliding-columns .fundraiser-slide-block .fundraiser-slide-money{
    color: #00a499
}

.community-page .fundraiser-slide-block .fundraiser-photo,
.sliding-columns .fundraiser-slide-block .fundraiser-photo{
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    width: 100%
}

.community-page .fundraiser-slide-block .fundraiser-photo img,
.sliding-columns .fundraiser-slide-block .fundraiser-photo img{
    width: 100%;
    height: auto
}

@media (max-width: 991.98px) {
    .community-page .slider-container, .sliding-columns .slider-container {
        padding: 2em;
    }
    .community-page .fundraiser-slide, .sliding-columns .fundraiser-slide{
        height: 20em;
    }
    .sliding-columns .controls {
        margin: 1em auto;
    }
}

.awards-page header {
    min-height: 35rem
}

.awards-page header .title {
    margin-left: 10rem;
    padding-top: 5rem
}

.awards-page header .subtitle {
    font-size: 85%;
    font-weight: 300
}

.awards-page header h2 {
    font-weight: 700;
    font-family: 'PT Serif', serif;
    font-size: 2rem
}

.awards-page header .excellence-logo {
    padding-top: 5rem;
    width: 250px
}

.awards-page section.awards {
    position: relative;
    padding: 2rem;
    padding-top: 5rem;
    padding-right: 12rem;
    margin-left: 10rem;
    background-color: white;
    top: -12rem
}

.awards-page section.awards .awards-header .subtitle {
    font-size: 85%;
    font-weight: 300
}

.awards-page section.awards .awards-header .title {
    font-weight: 700;
    font-family: 'PT Serif', serif;
    font-size: 2rem
}

.awards-page section.awards .awards-header p {
    font-size: 85%
}

.awards-page section.awards .awards-container .award-card .award-title,
section.block-two_col .download label,
section.block-one_col .download label,
section.block-one_col_over_image .download label,
section.block-one_col_over_long_image .download label,
section.block-one_col_header_image .download label,
section.block-one_col_with_image .download label,
section.block-one_col_with_image_gallery .download label,
section.block-one_col_with_video .download label,
section.block-three_col .download label,
section.block-three_col_stairs .download label,
section.block-three_col_image .download label {
    margin-bottom: 0.5rem;
    line-height: 1.2;
    margin-top: 0;
    font-weight: 700;
    color: #3e4d61;
    font-family: 'PT Serif', seif !important;
}

section.block-two_col .download label,
section.block-one_col .download label,
section.block-one_col_over_image .download label,
section.block-one_col_over_long_image .download label,
section.block-one_col_header_image .download label,
section.block-one_col_with_image .download label,
section.block-one_col_with_image_gallery .download label,
section.block-one_col_with_video .download label,
section.block-three_col .download label,
section.block-three_col_stairs .download label,
section.block-three_col_image .download label {
    font-size: 1.2rem;
}

.awards-page section.awards .award-card {
    background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #eff2f9), color-stop(50%, #f8fafd));
    background: linear-gradient(to bottom right, #eff2f9 50%, #f8fafd 50%);
    font-size: 85%;
    line-height: 2.5
}

.awards-page .excellence-logo .header_image {
    width: 100%;
}

@media (max-width: 1199.98px) {
    .awards-page header {
        min-height:auto;
        padding-bottom: 3rem
    }

    .awards-page header .title {
        margin-left: 2rem
    }

    .awards-page section.awards {
        margin-left: 0;
        padding-right: 4rem;
        top: 0
    }
}

.resources-page .header {
    padding: 5rem 2rem;
    margin-bottom: 2rem
}

.resources-page .header .title {
    font-size: 1.6rem;
    text-align: right
}

.resources-page .header .title span {
    font-weight: bold
}

.resources-page .header .search-area {
    position: relative
}

.resources-page .header .search-area .search-form {
    position: relative;
    width: 60%
}

.resources-page .header .search-area .search-form input {
    height: 27px
}

.resources-page .header .search-area .search-form .search-button {
    right: -1.65rem;
    margin: 0.2rem;
    font-size: 12px
}

.resources-page ol {
    padding: 0 !important
}

.resources-page ol li {
    list-style-type: none
}

.resources-page .card {
    text-decoration: none;
    padding: 1rem
}

.resources-page .card:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-box-shadow: 0 0.5rem 3rem rgba(0,0,0,0.1);
    box-shadow: 0 0.5rem 3rem rgba(0,0,0,0.1)
}

@media (max-width: 767.98px) {
    .resources-page header .stats {
        padding:0
    }

    .resources-page header .stats .column {
        margin: 0.4rem 0
    }

    .resources-page header .stats .column::after {
        display: none
    }

    .resources-page header .page-subnav {
        display: none
    }
}

.physician-page .header .profile-photo {
    margin-bottom: 1rem;
    text-align: center;
    padding: 0 2rem
}

.physician-page .header .profile-photo .image-container {
    border-radius: 1000px;
    overflow: hidden;
    width: 100%;
    margin: 0 auto
}

.physician-page .header .profile-photo .image-container img {
    width: 100%;
    /*height: auto*/
    aspect-ratio: 1/1;
    object-fit: cover;
}

.physician-page .header h1 {
    font-size: 2rem !important
}

.physician-page .header .resident-pgy {
    font-size: 1.4rem;
}

.physician-page .header .resident-interest {
    margin-top: 2em;
    font-size: 1.4rem !important;
}

.physician-page .header .service-container {
    margin: 0 20px
}

.physician-page .header .service {
    font-family: 'PT Serif', serif;
    font-weight: 500;
    font-size: 1.25rem;
    color: #40476d !important;
    text-decoration: none;
    border-top: 5px transparent solid !important
}

.physician-page .header .service .learn-more {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 300;
    margin-top: 0.8rem;
    letter-spacing: 0.1rem;
    position: relative
}

.physician-page .header .service .learn-more .link-animation {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0%;
    background: rgba(47,185,183,0.2);
    -webkit-transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1)
}

.physician-page .header .service:hover {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    background-color: white;
    z-index: 10;
    border: none !important;
    border-top: 5px #00a499 solid !important;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none;
    position: relative
}

.physician-page .header .service:hover .link-animation {
    width: 100%
}

.physician-page .nav .nav-link {
    color: #40476d !important;
    margin-bottom: 4px
}

.physician-page .nav .nav-link:hover {
    border-bottom: 4px #00a499 solid;
    margin-bottom: 0px
}

.physician-page section.biography h2 {
    font-size: 1.5rem !important;
    margin-bottom: 1.5rem
}

.physician-page section.locations {
    position: relative;
    overflow: auto
}

.physician-page section.locations .content {
    width: 90%;
    float: right
}

.physician-page section.locations .content .header .title .subheading {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 90%;
    padding-bottom: 0;
    margin-bottom: 0.3rem
}

.physician-page section.locations .content .location-card {
    background-color: white;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    position: relative
}

.physician-page section.locations .content .location-card .header {
    padding: 1.2rem;
    font-size: 90%
}

.physician-page section.locations .content .location-card .header h3 {
    font-size: 1.3rem
}

.physician-page section.locations .content .location-card .header .name {
    text-transform: uppercase
}

.physician-page section.locations .content .location-card .map-container {
    width: 100%;
    min-height: 8rem
}

.physician-page section.locations .content .location-card .map-container .map {
    width: 100%;
    height: 8rem
}

.physician-page section.locations .content .location-card .address {
    padding: 1.2rem;
    font-size: 85%
}

.physician-page section.locations .content .location-card .address .location-map-icon {
    display: inline
}

.physician-page section.locations .content .location-card .address .location-map-icon svg {
    width: 15px;
    height: 15px
}

.physician-page section.locations .content .location-card .contact-info {
    padding: 0 1.2rem 1.2rem;
    font-size: 85%
}

.physician-page section.locations .content .location-card .contact-info .phone-icon,.physician-page section.locations .content .location-card .contact-info .fax-icon {
    display: inline
}

.physician-page section.locations .content .location-card .contact-info .phone-icon svg,.physician-page section.locations .content .location-card .contact-info .fax-icon svg {
    width: 15px;
    height: 15px
}

.physician-page section.locations .content .location-card .location-physicians {
    padding: 1rem 2rem;
    font-size: 85%
}

.physician-page section.locations .content .location-card .location-physicians img {
    display: inline-block;
    width: 20px;
    margin-top: -5px;
    margin-right: 5px
}

.physician-page section.locations .content .location-card .location-physicians a {
    color: #3e4d61
}

.physician-page section.locations .content .location-card .location-physicians .down-gray-arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 5px
}

.physician-page section.locations .content .location-card .location-physicians .collapse {
    padding: 1rem 0
}

.physician-page section.locations .content .location-card .directions {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.12rem;
    font-size: 85%
}

.physician-page section.locations .content .location-card .directions a {
    display: inline-block;
    padding: 1rem;
    color: #3e4d61
}

.physician-page section.locations .content .location-card .directions a:hover {
    color: #00a499
}

.physician-page section.locations .content .location-card .border-bottom {
    width: 0%;
    height: 5px;
    position: absolute;
    bottom: -1px;
    left: 0px;
    right: 0;
    background-color: #00a499;
    z-index: 10;
    -webkit-transition: width 0.5s;
    transition: width 0.5s
}

.physician-page section.locations .content .location-card:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0 0.5rem 1rem rgba(87,92,192,0.15) !important;
    box-shadow: 0 0.5rem 1rem rgba(87,92,192,0.15) !important
}

.physician-page section.locations .content .location-card:hover .directions a {
    color: #00a499
}

.physician-page section.locations .content .location-card:hover .border-bottom {
    width: 100%;
    -webkit-transition: width 0.5s;
    transition: width 0.5s
}

@media (max-width: 767.98px) {
    .header .profile-photo {
        width:50%;
        margin: 0 auto;
        padding: 0 !important
    }
}

@media (max-width: 991.98px) {
    .physician-page section.locations .content {
        width:100%
    }
}

.locations-page #map {
    height: calc(80vh)
}

.locations-page .ais-GeoSearch {
    height: 100%
}

.locations-page .ais-GeoSearch-map {
    height: 100%
}

.locations-page .form-container {
    background-color: #F0F2F9;
    padding: 0.75rem 1rem
}

.locations-page .locations {
    height: calc(65vh);
    overflow-y: auto;
}

.locations-page hr {
    margin: 0;
    padding: 0
}

.locations-page h6 {
    font-size: 0.9rem
}

.locations-page .location-container {
    padding: 1rem 0.5rem;
    border: 1px transparent solid;
    position: relative
}

.locations-page .location-container .border-bottom {
    width: 0%;
    height: 4px;
    position: absolute;
    bottom: -1px;
    left: 0px;
    right: 0;
    background-color: #00a499;
    z-index: 10;
    -webkit-transition: width 0.5s;
    transition: width 0.5s
}

.locations-page .location-container .actions {
    display: none
}

.locations-page .location-container .actions a {
    position: relative;
    color: #40476d;
    text-decoration: none;
    padding: 0 1rem
}

.locations-page .location-container .actions a .link-animation {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0%;
    background: rgba(47,185,183,0.2);
    -webkit-transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1)
}

.locations-page .location-container .actions a:hover .link-animation {
    width: 100%
}

.locations-page .location-container:hover {
    background-color: #f5f7fe;
    cursor: pointer
}

.locations-page .location-container:hover .actions {
    display: block;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.locations-page .location-container:hover .border-bottom {
    width: 100%;
    -webkit-transition: width 0.5s;
    transition: width 0.5s;
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg)
}

.locations-page .dhr-info-window {
    padding: 1.5rem
}

.locations-page #iw-container {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    background: #fff !important;
    padding: 0 1.5rem 1.5rem 1.5rem;
    position: relative;
    z-index: 1
}

.locations-page #iw-container .iw-title-box {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    padding: 2.5rem 3rem 1.5rem;
    background-size: cover;
    position: relative;
    z-index: 3;
    -webkit-transform: translateY(-2rem);
    transform: translateY(-2rem)
}

.locations-page #iw-container .iw-title-box .iw-title {
    font-size: 1.4375em;
    margin: 0;
    font-weight: 400;
    color: #fff !important;
    line-height: 1em;
    letter-spacing: .01em;
    padding-right: 2.1875rem
}

.locations-page #iw-container .hours {
    background-color: #e6e6e6 !important;
    text-align: center;
    bottom: -1rem;
    position: relative;
    padding: 1.5rem
}

.locations-page .gm-style-iw-d {
    overflow: hidden !important
}

.locations-page .gm-style div:first-of-type div:last-of-type div:last-of-type div:first-of-type div:not(.body) {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    background-color: transparent !important
}

.gratitude-page header {
    position: relative
}

.gratitude-page header .page-subnav {
    background-color: white;
    position: absolute;
    top: 16rem;
    width: 25%;
    padding: 2rem 1.75rem
}

.gratitude-page header .page-subnav .nav-header {
    font-family: 'PT Serif', serif;
    font-weight: 700;
    font-size: 1rem;
    width: 75%;
    border-left: 2px solid #3e4d61;
    padding-left: 1rem
}

.gratitude-page header .page-subnav .nav {
    margin-top: 2rem;
    margin-left: 2rem
}

.gratitude-page header .page-subnav .nav .nav-link {
    font-weight: 700;
    color: #3e4d61;
    font-size: 14px;
    padding: 0;
    margin-bottom: 1.5rem
}

.gratitude-page header .title .subtitle {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 90%
}

.gratitude-page header .title h1 {
    margin-top: 0.8rem;
    margin-bottom: 2rem
}

.gratitude-page header .image-container {
    width: 100%;
    overflow: hidden
}

.gratitude-page header .image-container img {
    width: 100%
}

.gratitude-page header .image-container .mobile {
    display: none
}

.gratitude-page header .long-image-container {
    padding-top: 0;
    width: 100%;
    overflow: hidden;
    max-height: 25rem
}

.gratitude-page header .long-image-container img {
    width: 100%
}

.gratitude-page section.gratitude-wall .gratitude-message,
section.gratitude-wall .gratitude-message{
    border: 1px solid #6c7580;
    -webkit-box-shadow: 2px 5px 5px #d6d6d6;
    box-shadow: 2px 5px 5px #d6d6d6;
    background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #f8fafd), color-stop(50%, #eff2f9));
    background: linear-gradient(to bottom right, #f8fafd 50%, #eff2f9 50%)
}

@media (max-width: 767.98px) {
    .gratitude-page header .page-subnav {
        display:none
    }
}

@media (min-width: 768px) and (max-width: 991.08px) {
    .gratitude-page header .page-subnav {
        top:12rem;
        width: 38%
    }
}

@media (max-width: 991.98px) {
    .gratitude-page header .image-container .desktop {
        display:none
    }

    .gratitude-page header .image-container .mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 2rem
    }
}

.cheer-cards-page header {
    position: relative
}

.cheer-cards-page header .page-subnav {
    background-color: white;
    position: absolute;
    top: 16rem;
    width: 25%;
    padding: 2rem 1.75rem
}

.cheer-cards-page header .page-subnav .nav-header {
    font-family: 'PT Serif', serif;
    font-weight: 700;
    font-size: 1rem;
    width: 75%;
    border-left: 2px solid #3e4d61;
    padding-left: 1rem
}

.cheer-cards-page header .page-subnav .nav {
    margin-top: 2rem;
    margin-left: 2rem
}

.cheer-cards-page header .page-subnav .nav .nav-link {
    font-weight: 700;
    color: #3e4d61;
    font-size: 14px;
    padding: 0;
    margin-bottom: 1.5rem
}

.cheer-cards-page header .title .subtitle {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 90%
}

.cheer-cards-page header .title h1 {
    margin-top: 0.8rem;
    margin-bottom: 2rem
}

.cheer-cards-page header .stats {
    padding: 0.8rem 0
}

.cheer-cards-page header .stats .column:not(:last-child)::after {
    content: ' ';
    border-width: 0 0 0 3px;
    border-style: dotted;
    border-color: #c6cacf;
    border-image-slice: 33% 33%;
    border-image-repeat: round;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    position: absolute
}

.cheer-cards-page header .stats .stat {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'PT Serif', serif !important
}

.cheer-cards-page header .stats .label {
    font-weight: 300
}

.cheer-cards-page header .image-container {
    width: 100%;
    overflow: hidden
}

.cheer-cards-page header .image-container img {
    width: 100%
}

.cheer-cards-page header .image-container .mobile {
    display: none
}

.cheer-cards-page header .long-image-container {
    padding-top: 0;
    width: 100%;
    overflow: hidden;
    max-height: 25rem
}

.cheer-cards-page header .long-image-container img {
    width: 100%
}

.cheer-cards-page header .header-links .header-link a {
    color: #40476d !important;
    position: relative
}

.cheer-cards-page header .header-links .header-link a .link-animation {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0%;
    background: rgba(47,185,183,0.2);
    -webkit-transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1)
}

.cheer-cards-page header .header-links .header-link a:hover {
    text-decoration: none
}

.cheer-cards-page header .header-links .header-link a:hover .link-animation {
    width: 100%
}

.cheer-cards-page section.categories {
    margin: 2rem 0
}

.cheer-cards-page section.categories .category-container {
    position: relative;
    padding: 1rem;
    text-align: center;
    background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #f8fafd), color-stop(50%, #eff2f9));
    background: linear-gradient(to bottom right, #f8fafd 50%, #eff2f9 50%);
    -webkit-box-shadow: 0 0.5rem 3rem rgba(0,0,0,0.1);
    box-shadow: 0 0.5rem 3rem rgba(0,0,0,0.1);
    display: block
}

.cheer-cards-page section.categories .category-container .image-container {
    position: relative
}

.cheer-cards-page section.categories .category-container .image-container img {
    width: 100%;
    height: auto
}

.cheer-cards-page section.categories .category-container .title {
    font-weight: 700;
    color: #3e4d61;
    font-size: 1.1rem;
    margin: 1rem 0
}

.cheer-cards-page section.categories .category-container:hover {
    text-decoration: none;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    -webkit-transform: scale(0.95);
    transform: scale(0.95)
}

.cheer-cards-page section.cards {
    margin: 2rem 0
}

.cheer-cards-page section.cards .image-container {
    position: relative;
    padding: 2rem
}

.cheer-cards-page section.cards .image-container img {
    position: relative;
    width: 100%;
    height: auto
}

.cheer-cards-page section.cards form {
    margin: 2rem 0
}

.cheer-cards-page .transition {
    position: relative
}

.cheer-cards-page .transition .bg-triangle {
    position: absolute;
    background-size: cover;
    top: 0;
    right: 0;
    left: 0;
    height: 15rem;
    z-index: -1;
    width: 110%
}

@media (max-width: 767.98px) {
    .cheer-cards-page header .stats {
        padding:0
    }

    .cheer-cards-page header .stats .column {
        margin: 0.4rem 0
    }

    .cheer-cards-page header .stats .column::after {
        display: none
    }

    .cheer-cards-page header .page-subnav {
        display: none
    }
}

@media (min-width: 768px) and (max-width: 991.08px) {
    .cheer-cards-page header .page-subnav {
        top:12rem;
        width: 38%
    }
}

@media (max-width: 991.98px) {
    .cheer-cards-page header .image-container .desktop {
        display:none
    }

    .cheer-cards-page header .image-container .mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 2rem
    }
}

.form-page .image {
    position: relative;
    margin-bottom: 2rem;
    width: 100%;
}

.form-page .image .image-container {
    position: relative
}

.form-page .image .image-container img {
    width: 100%;
    object-fit: contain;
}

.form-page .image .image-container .mobile {
    display: none
}

@media (max-width: 991.98px) {
    .form-page .image {
        margin-bottom:2rem;
        width: 100%;
    }

    /*.form-page .image .image-container .desktop {*/
    /*    display: none*/
    /*}*/

    .form-page .image .image-container .mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        margin-bottom: 2rem
    }

    .form-page .image .image-container .mobile img {
        width: 100%
    }
}

.banner p {
    margin: 0 !important;
    padding: 0 !important
}

.banner p a {
    color: #ffffff
}

.banner p a:hover {
    color: #beef
}

section.block-three_col_stairs {
    margin: 2rem 0;
    padding-top: 4rem;
    position: relative
}

section.block-three_col_stairs .column {
    position: relative;
    margin-top: 2rem
}

section.block-three_col_stairs .column:nth-child(2) {
    margin-top: 6rem
}

section.block-three_col_stairs .column:nth-child(3) {
    margin-top: 10rem
}

section.block-three_col_stairs .column .column-container {
    border-left: 5px dotted lightgray;
    padding: 0.5rem 0 0.25rem 2.5rem;
    height: auto
}

section.block-three_col_stairs .image-container {
    position: absolute;
    z-index: -1;
    width: 100%;
    right: 0;
    left: 0;
    top: -4rem
}

section.block-three_col_stairs .image-container img {
    position: relative;
    float: right;
    height: auto
}

section.block-three_col_stairs .title {
    width: 50%;
    margin-bottom: 2rem
}

section.block-three_col_stairs .heading {
    margin-bottom: 1.2rem
}

section.block-three_col_stairs .heading h3 {
    font-size: 1.5rem;
    font-weight: 400
}

@media (max-width: 767.98px) {
    section.block-three_col_stairs .column {
        border:none !important
    }

    section.block-three_col_stairs .title {
        width: 100%
    }
}

@media (max-width: 991.98px) {
    section.block-three_col_stairs .title {
        width:100%
    }

    section.block-three_col_stairs .image-container{
        display: none
    }

    section.block-three_col_stairs .column {
        margin-top: 1rem
    }

    section.block-three_col_stairs .column:nth-child(2) {
        margin-top: 1rem
    }

    section.block-three_col_stairs .column:nth-child(3) {
        margin-top: 1rem
    }

    section.block-three_col_stairs .column .column-container {
        border: none;
        padding: 0
    }
}

.block-accordion {
    margin: 0.5rem 0 2rem 0;
    padding-left: 15px;
}

.block-accordion .accordion-container {
    width: 85%;
    background-color: #f3f5fd;
    padding-left: 6rem;
    padding-top: 2rem;
    padding-bottom: 4rem
}

/*.block-accordion .accordion-container #accordion2 {
    width: 90%
}*/

.block-accordion .accordion-container .question .btn-link {
    color: #40476d;
    font-size: 1rem;
    cursor: pointer;
    font-size: 1.150rem
}

.block-accordion .accordion-container .image-container {
    width: 155%;
    overflow: hidden
}

.block-accordion .accordion-container .image-container img {
    width: 100%
}

@media (max-width: 991.98px) {
    .block-accordion .accordion-container {
        width:100% !important;
        padding: 2rem
    }

    .block-accordion .accordion-container .image-container {
        margin: 2rem auto;
        width: 100%
    }

    .block-accordion .accordion-container .image-container img {
        width: 100%;
        height: auto
    }
}

@media (max-width: 767.98px) {
    .block-accordion {
        padding: 15px;
    }
    .block-accordion .accordion-container .image-container {
        margin:2rem auto;
        width: 80%;
        overflow: hidden
    }

    .block-accordion .accordion-container .image-container img {
        width: 100%;
        height: auto
    }
}

.block-accordion_with_paragraph {
    margin: 2rem 0;
    padding-left: 15px
}

.block-accordion_with_paragraph .header {
    /*width: 75%;*/
    margin-bottom: 2.5rem;
    border-left: 1px solid #2fb9b7;
    padding: 0.2rem 0 0.2rem 1rem
}

.block-accordion_with_paragraph .header .subtitle {
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    font-weight: 300;
    font-size: 90%
}

.block-accordion_with_paragraph .accordion-container {
    width: 85%;
    background-color: #f3f5fd;
    padding-left: 6rem;
    padding-top: 2rem;
    padding-bottom: 4rem
}

.block-accordion_with_paragraph .accordion-container #accordion {
    width: 90%
}

.block-accordion_with_paragraph .accordion-container .question .btn-link {
    color: #40476d;
    font-size: 1rem;
    cursor: pointer;
    font-size: 1.150rem
}

.block-accordion_with_paragraph .accordion-container .image-container {
    width: 155%;
    overflow: hidden
}

.block-accordion_with_paragraph .accordion-container .image-container img {
    width: 100%
}

@media (max-width: 991.98px) {
    .block-accordion_with_paragraph .header {
        width:100%
    }

    .block-accordion_with_paragraph .accordion-container {
        width: 100%;
        padding: 2rem
    }

    .block-accordion_with_paragraph .accordion-container .image-container {
        margin: 2rem auto;
        width: 100%
    }

    .block-accordion_with_paragraph .accordion-container .image-container img {
        width: 100%;
        height: auto
    }
}

@media (max-width: 767.98px) {
    .block-accordion_with_paragraph {
        padding: 15px;
    }
    
    .block-accordion_with_paragraph .accordion-container .image-container {
        margin:2rem auto;
        width: 80%;
        overflow: hidden
    }

    .block-accordion_with_paragraph .accordion-container .image-container img {
        width: 100%;
        height: auto
    }
}

.cta_button_block {
    position: relative;
    min-height: 10rem;
    margin: 3rem 0
}

.cta_button_block .bg-overlay {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-color: rgba(0,0,0,0.6)
}

.cta_button_block .background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    overflow: hidden
}

.cta_button_block .background-image img {
    z-index: -2;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.cta_button_block .text-container {
    position: relative;
    width: 100%;
    text-align: center;
    z-index: 1;
    font-weight: 700
}

.cta_button_block .text {
    width: 40%;
    margin: 0 auto;
    color: white;
    font-family: 'PT Serif', serif;
    font-size: 24px
}

@media (max-width: 575.98px) {
    .cta_button_block .text-container .text {
        width:90%;
        padding: 1rem 3rem 0rem;
        font-size: 18px
    }
}

@media (max-width: 767.98px) {
    .cta_button_block .text-container .text {
        width:90%;
        padding: 1rem 3rem 0rem
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .cta_button_block .text-container .text {
        width:90%;
        padding: 1rem 3rem 0rem;
        font-size: 22px
    }
}

.single-column-block-over-image-block {
    margin-bottom: 2rem;
    margin-top: 2rem
}

.single-column-block-over-image-block .text-container {
    background-color: white;
    padding: 4.5rem 3rem
}

.single-column-block-over-image-block .title .subtitle {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 90%;
    margin-bottom: 0.5rem
}

.single-column-block-over-image-block .image-container {
    width: 170%;
    overflow: hidden
}

.single-column-block-over-image-block .image-container img {
    width: 100%
}

.single-column-block-header-image-block {
    margin-bottom: 2rem;
    margin-top: 4rem
}

.single-column-block-header-image-block .title .subtitle {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 90%;
    margin-bottom: 0.5rem
}

.single-column-block-header-image-block .header-image {
    width: 100%;
    overflow: hidden
}

.single-column-block-header-image-block .header-image img {
    width: 100%
}

.block-one_col {
    padding: 1.75rem 0 0.3rem 0;
}

.block-one_col_header_image {
    margin: 2rem 0;
    padding: 15px
}

.block-one_col_header_image .image-container {
    width: 100%
}

.block-one_col_header_image .image-container img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

.block-one_col_header_image .content-container {
    margin: 2rem 0 0 0
}

.block-one_col_over_image {
    margin: 1.75rem 0
}

.block-one_col_over_image .text-container {
    background-color: white;
    padding: 4.5rem 3rem
}

.block-one_col_over_image .image-container {
    width: 200%;
    overflow: hidden
}

.block-one_col_over_image .image-container img {
    width: 100%;
}

.block-one_col_over_image .desktop-image-container img {
    max-width: 700px;
}

@media (max-width: 991.98px) {
    .block-one_col_over_image .mobile-image-container {
        width:100%;
        overflow: hidden
    }

    .block-one_col_over_image .mobile-image-container img {
        width: 100%;
        object-fit: cover;
        max-height: 90%;
    }

    .block-one_col_over_image .text-container {
        padding: 2.5rem 2rem
    }
}

.block-one_col_over_long_image {
    position: relative;
    margin: 1.75rem 0 -1.75rem 0;
    padding: 15px
}

.block-one_col_over_long_image .image-container {
    width: 90%
}

.block-one_col_over_long_image .image-container img {
    width: 100%;
    object-fit: cover;
    max-height: 350px;
}

.block-one_col_over_long_image .content-container {
    width: 80%;
    background-color: white;
    padding: 4rem;
    position: relative;
    top: -6rem;
    left: 0
}

.block-one_col_over_long_image .content-container .title {
    margin-bottom: 1.5rem;
    padding-right: 1em;
}

.block-one_col_over_long_image .content-container .title::after {
    content: ' ';
    border-width: 0 0 0 3px;
    border-style: dotted;
    border-color: #c6cacf;
    border-image-slice: 33% 33%;
    border-image-repeat: round;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    position: absolute;
    padding-right: 1rem
}

@media (max-width: 991.98px) {
    .block-one_col_over_long_image {
        margin-bottom:1rem
    }

    .block-one_col_over_long_image .image-container {
        width: 100%
    }

    .block-one_col_over_long_image .content-container {
        width: 100%;
        top: 0;
        padding: 1.75rem 1rem
    }

    .block-one_col_over_long_image .content-container .title::after {
        display: none
    }

    .block-one_col_over_long_image .content-container .button {
        margin-bottom: 2.5rem
    }
}

.block-one_col_with_image {
    margin: 1.75rem 0;
    padding: 15px
}

.block-one_col_with_image .image-container {
    position: relative;
    width: 100%;
    overflow: hidden
}

.block-one_col_with_image .image-container.gradient {
    padding-right: 3rem;
    padding-left: 2rem
}

.block-one_col_with_image .image-container.gradient .gradient-image {
    position: absolute;
    z-index: -1;
    height: 85%;
    width: 80%
}

.block-one_col_with_image .image-container.gradient .main-image {
    -webkit-transform: translate(7%, 7%);
    transform: translate(7%, 7%);
    margin-bottom: 3rem
}

.block-one_col_with_image .main-image {
    width: 100%;
    position: relative
}

.block-one_col_with_image .main-image img {
    width: 100%
}

.block-one_col_with_image .main-image .image-link {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: white;
    padding: 2rem 3rem 2rem 3rem;
    text-transform: uppercase
}

.block-one_col_with_image .main-image .image-link a {
    position: relative;
    color: #3e4d61;
    text-decoration: none;
    display: inline-block
}

.block-one_col_with_image .main-image .image-link a .link-animation {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0%;
    background: rgba(47,185,183,0.2);
    -webkit-transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1)
}

.block-one_col_with_image .main-image .image-link a:hover .link-animation {
    width: 100%
}

/*.block-one_col_with_image .buttons:last-child {*/
/*    margin-top: 2em;*/
/*}*/


.stats .column:not(:last-child)::after{
    content: ' ';
    border-width: 0 0 0 3px;
    border-style: dotted;
    border-color: #c6cacf;
    border-image-slice: 33% 33%;
    border-image-repeat: round;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    position: absolute
}

.stats .stat{
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'PT Serif', serif !important
}

.stats .label{
    font-weight: 300
}

@media (max-width: 991.98px) {
    .block-one_col_with_image .image-container.gradient{
        padding:0
    }
}

@media (max-width: 767.98px) {
    .stats {
        padding:0
    }

    .stats .column {
        margin: 0.4rem 0
    }

    .stats .column::after {
        display: none
    }
}

section.block-two_col {
    /*margin: 1.75rem 0;*/
    padding: 1.75rem 15px
}

section.block-two_col h3 {
    font-size: 1.5rem;
    font-weight: 400
}

section.block-two_col .heading {
    margin-bottom: 1.2rem
}

section.block-two_col .heading h3 {
    font-size: 1.5rem;
    font-weight: 400
}

section.block-two_col .content-container {
    margin: 3rem 0 0 0
}

section.block-two_col .content-container .resources {
    margin: 2rem 0 3rem 0
}

section.block-three_col {
    margin: 2rem 0;
    padding: 15px;
}

section.block-three_col .column:not(:last-child)::after {
    content: ' ';
    border-width: 0 0 0 3px;
    border-style: dotted;
    border-color: #c6cacf;
    border-image-slice: 33% 33%;
    border-image-repeat: round;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    position: absolute
}

section.block-three_col .title {
    width: 50%;
    margin-bottom: 2rem
}

section.block-three_col_stairs .row .column .column-container .heading .subtitle,
section.block-three_col .title .subtitle {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 85%;
    margin-bottom: 1rem
}

section.block-three_col .heading {
    margin-bottom: 1.2rem
}

section.block-three_col .heading h3 {
    font-size: 1.5rem;
    font-weight: 400
}

@media (max-width: 767.98px) {
    section.block-three_col .title {
        width:100%
    }
}

@media (max-width: 991.98px) {
    section.block-three_col .column::after {
        display:none
    }

    section.block-three_col .title {
        width: 80%
    }
}

section.block-three_col_image {
    margin: 2rem 0;
    padding: 15px
}

section.block-three_col_image .row {
    background-color: white;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(66,66,192,0.15);
    box-shadow: 0 0.5rem 1rem rgba(66,66,192,0.15)
}

section.block-three_col_image .title-container {
    position: relative;
    min-height: 20rem
}

section.block-three_col_image .title-container .title {
    width: 50%;
    padding-top: 7rem;
    margin-bottom: 2rem;
    padding-left: 2rem
}

section.block-three_col_image .container .row .column .heading .subtitle {
    text-transform: uppercase;
    font-size: 90%;
    font-weight: 300;
    margin-bottom: 0.3rem;
}

section.block-three_col_image .title-container .title .subtitle,
section.block-three_col_image .title-container .title  h2 {
    background-color: rgba(255 , 255, 255, 0.8);
    padding: 0.2em;
    border-radius: 3px;
    width: fit-content;
}

section.block-three_col_image .title-container .image-container {
    position: absolute;
    z-index: -1;
    width: 100%
}

section.block-three_col_image .title-container .image-container img {
    display: block;
    width: 100%;
    height: 598px;
    object-fit: cover;
}

section.block-three_col_image .column {
    position: relative;
    margin-top: 2rem;
    padding: 2rem
}

section.block-three_col_image .heading {
    margin-bottom: 1.2rem
}

section.block-three_col_image .heading h3 {
    font-size: 1.5rem;
    font-weight: 400
}

@media (max-width: 767.98px) {
    section.block-three_col_image .column {
        border:none !important
    }

    section.block-three_col_image .title {
        width: 100%
    }
}

@media (max-width: 991.98px) {
    section.block-three_col_image .row {
        -webkit-box-shadow:none;
        box-shadow: none
    }

    section.block-three_col_image .title-container {
        min-height: auto
    }

    section.block-three_col_image .title-container .title {
        width: 100%;
        padding: 0;
        margin: 0
    }

    section.block-three_col_image .title-container .image-container {
        display: none
    }

    section.block-three_col_image .column {
        padding: 0
    }
    
    section.block-three_col_image .title-container .title .subtitle,
    section.block-three_col_image .title-container .title  h2 {
        color: #3e4d61 !important;
        background-color: transparent;
        padding: 0;
        border-radius: 0;
        width: 100%;
    }
}

section.block-image_links {
    margin: 2rem 0;
    padding: 15px
}

section.block-image_links .card-img-overlay {
    background-color: rgba(0,0,0,0.5);
    text-decoration: none;
    font-family: 'PT Serif', serif;
    font-size: 1.125rem;
    transition: ease-in-out 0.3s;
}

section.block-image_links .card-img-overlay:hover {
    background-color: rgba(0,0,0,0.7);
    text-decoration: none
}

section.block-image_links img{
    max-height: 157px;
    object-fit: cover;
}

@media (max-width: 763px){
        section.block-image_links img{
        max-height: 127px;
    }
}

@media (max-width: 599px){
        section.block-image_links img{
        max-height: 97px;
    }
}

.block-links_list {
    margin: 2rem 0;
    padding: 15px;
    position: relative;
    min-height: 30rem
}

.block-links_list .background-image {
    position: absolute;
    width: 90%;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden
}

.block-links_list .background-image img {
    width: 100%;
    height: auto
}

.block-links_list .content-container {
    padding: 2rem
}



section.block-links_list .content-container .title .subtitle, section.block-links_list .content-container .title  h2 {
    color: white !important;
    background-color: rgba(0 , 0, 0, 0.2);
    padding: 0.2em;
    border-radius: 3px;
    width: fit-content;
}

.block-links_list .block-content {
    color: white
}

.block-links_list .block-content a {
    color: white;
    text-decoration: underline
}

.block-links_list .links-container {
    margin-top: 3rem;
    padding: 4rem 2rem;
    background-color: white
}

.block-links_list .links-container a {
    color: #3e4d61
}

.block-links_list .links-container a .animated-link span {
    position: relative
}

.block-links_list .links-container a .animated-link span .link-animation {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0%;
    background: rgba(47,185,183,0.2);
    -webkit-transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1)
}

.block-links_list .links-container a:hover {
    text-decoration: none
}

.block-links_list .links-container a:hover .animated-link span .link-animation {
    width: 100%
}

@media (max-width: 1199.98px) {
    .block-links_list {
        padding:15px
    }

    .block-links_list .background-image {
        height: 100%;
        width: 100%
    }

    .block-links_list .background-image img {
        height: 100%;
        width: auto
    }

    .block-links_list .content-container {
        padding: 15px;
        padding-top: 45px
    }

    .block-links_list .links-container {
        margin-top: 0;
        padding: 2rem
    }
}

.block-resources_links_text {
    margin: 3rem 0;
    /*padding: 15px*/
}

.block-resources_links_text .title {
    padding: 2rem 0 0.75rem 0
}

.block-resources_links_text .content {
    margin-bottom: 2rem
}

.block-resources_links_text .block-container {
    padding: 3rem;
    background-color: #f0f3fa
}

.block-resources_links_text .links-container {
    padding: 3rem;
    background-color: white;
    display: grid;
    grid-template-columns: repeat(2, 1fr)
}

.block-resources_links_text .links-container .link {
    padding: 1rem;
    margin: 0 0.75rem;
    border-bottom: 1px solid #d6d6d6;
    padding-top: -1px;
    color: #3e4d61;
    position: relative;
}

.block-resources_links_text .links-container .link .animated-link span {
    position: relative
}

.block-resources_links_text .links-container .link .animated-link span .link-animation {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0%;
    background: rgba(47,185,183,0.2);
    -webkit-transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1)
}

.block-resources_links_text .links-container .link::after {
    content: '';
    display: block;
    border-bottom: 3px solid #2fb9b7;
    width: 0;
    position: absolute;
    left: 0;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    padding-bottom: 1rem
}

.block-resources_links_text .links-container .link:hover {
    text-decoration: none
}

.block-resources_links_text .links-container .link:hover .animated-link span .link-animation {
    width: 100%
}

.block-resources_links_text .links-container .link:hover::after {
    width: 100%
}

@media (max-width: 991.98px) {
    .block-resources_links_text .block-container {
        padding:1.5rem
    }

    .block-resources_links_text .links-container {
        padding: 1rem;
        display: block
    }

    .block-resources_links_text .links-container .link {
        display: block;
        padding: 1rem 0.75rem;
        margin: 0
    }
}

.block-resources_links_icons {
    margin: 2rem 0;
    padding: 15px
}

.block-resources_links_icons img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.block-resources_links_icons .title {
    padding: 2rem 0 0.75rem 0
}

.block-resources_links_icons .content {
    margin-bottom: 2rem
}

.block-resources_links_icons .block-container {
    padding: 3rem;
    background-color: #f0f3fa
}

.block-resources_links_icons .icons-container {
    padding: 3rem;
    background-color: white
}

.block-resources_links_icons .icons-container .link {
    text-align: center;
    margin: 0.5em;
    transition: ease-in-out 0.3s;
}

.block-resources_links_icons .icons-container .link:hover {
    -webkit-filter: brightness(75%);
}

@media (max-width: 991.98px) {
    .block-resources_links_icons .block-container {
        padding:1.5rem
    }

    .block-resources_links_icons .icons-container {
        margin: 1rem
    }

    .block-resources_links_icons .icons-container .link {
        margin-bottom: 2rem;
        text-align: center
    }
}

.block-cta_blue {
    margin: 2rem 0;
    padding: 15px
}

.block-cta_blue .block-container {
    padding: 3rem 4rem
}

.block-cta_blue .block-container .title::after {
    content: ' ';
    border-width: 0 0 0 3px;
    border-style: dotted;
    border-color: #c6cacf;
    border-image-slice: 33% 33%;
    border-image-repeat: round;
    top: 0;
    right: 0;
    bottom: 0;
    width: 3px;
    position: absolute
}

.block-cta_blue .block-container .content {
    padding-left: 2rem
}

.block-cta_blue .block-container .cta-button {
    display: inline-block;
    border: 1px solid white;
    padding: 0.5rem 1rem;
    color: white
}

.block-cta_blue .block-container .cta-button:hover {
    text-decoration: none;
    -webkit-transform: scale(1.05);
    transform: scale(1.05)
}

@media (max-width: 991.98px) {
    .block-cta_blue .block-container {
        padding:3rem
    }

    .block-cta_blue .block-container .title {
        margin-bottom: 2rem
    }

    .block-cta_blue .block-container .title::after {
        display: none
    }

    .block-cta_blue .block-container .content {
        padding: 0
    }
}

.block-cta_white {
    margin: 2rem 0;
    padding: 15px
}

.block-cta_white .block-container {
    padding: 3rem 4rem
}

.block-cta_white .block-container .title::after {
    content: ' ';
    border-width: 0 0 0 3px;
    border-style: dotted;
    border-color: #c6cacf;
    border-image-slice: 33% 33%;
    border-image-repeat: round;
    top: 0;
    right: 0;
    bottom: 0;
    width: 3px;
    position: absolute
}

.block-cta_white .block-container .content {
    padding-left: 2rem
}

.block-cta_white .block-container .cta-button {
    display: inline-block;
    border: 1px solid #3e4d61;
    padding: 0.5rem 1rem;
    color: #3e4d61
}

.block-cta_white .block-container .cta-button:hover {
    text-decoration: none;
    -webkit-transform: scale(1.05);
    transform: scale(1.05)
}

@media (max-width: 991.98px) {
    .block-cta_white .block-container {
        padding:3rem
    }

    .block-cta_white .block-container .title {
        margin-bottom: 2rem
    }

    .block-cta_white .block-container .title::after {
        display: none
    }

    .block-cta_white .block-container .content {
        padding: 0
    }
}

.block-one_col_with_image_gallery {
    margin: 2rem 0;
    padding: 15px
}

.block-one_col_with_image_gallery .image-container img {
    /*max-height: 100%;*/
    /*max-width: 500px;*/
    /*height: auto;*/
    /*object-fit: contain;*/
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media(max-width: 991.98px){
    .block-one_col_with_image_gallery .image-container {
        height: 310px !important;
    }
}

.block-one_col_with_image_gallery .image-container {
    /*position: relative;*/
    /*width: 100%;*/
    /*overflow: hidden*/
    height: 500px;
}

.block-one_col_with_image_gallery .image-container.gradient {
    padding-right: 3rem;
    padding-left: 2rem;
    padding-bottom: 3rem
}

.block-one_col_with_image_gallery .image-container.gradient .gradient-image {
    position: absolute;
    z-index: -1;
    height: 85%;
    width: 80%
}

.block-one_col_with_image_gallery .image-container.gradient .image-gallery {
    -webkit-transform: translate(7%, 7%);
    transform: translate(7%, 7%);
    margin-bottom: 3rem
}

.block-one_col_with_image_gallery .image-container.padding {
    padding-right: 3rem;
    padding-left: 3rem
}

.block-one_col_with_image_gallery .main-image {
    width: 100%;
    position: relative
}

.block-one_col_with_image_gallery .main-image img {
    width: 100%
}

.block-one_col_with_image_gallery .main-image .image-link {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: white;
    padding: 2rem 3rem 2rem 3rem;
    text-transform: uppercase
}

.block-one_col_with_image_gallery .main-image .image-link a {
    position: relative;
    color: #3e4d61;
    text-decoration: none;
    display: inline-block
}

.block-one_col_with_image_gallery .main-image .image-link a .link-animation {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0%;
    background: rgba(47,185,183,0.2);
    -webkit-transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1)
}

.block-one_col_with_image_gallery .main-image .image-link a:hover .link-animation {
    width: 100%
}

@media (max-width: 991.98px) {
    .block-one_col_with_image_gallery .image-container.gradient {
        padding:0
    }

    .block-one_col_with_image_gallery .image-container.padding {
        padding: 0
    }
}

section.block-slider {
    margin: 2rem 0;
    padding: 15px
}

section.block-slider h2 {
    margin-bottom: 2rem
}

section.block-slider .slider-area {
    position: relative;
    border-left: 1px solid #dee2e6
}

section.block-slider .slider-area .controls {
    position: absolute;
    top: 16rem;
    right: 0
}

section.block-slider .slider-area .controls div[class*="slider-next-"] {
    z-index: 10;
    margin-right: 2rem;
    cursor: pointer
}

section.block-slider .slider-area .controls div[class*="slider-prev-"] {
    z-index: 10;
    cursor: pointer
}

section.block-slider .slider-area .slide {
    padding: 1rem
}

section.block-slider ul[class*="slider-menu-"] {
    list-style-type: none;
    font-size: 90%
}

section.block-slider ul[class*="slider-menu-"] li {
    margin-bottom: 1rem;
    cursor: pointer
}

section.block-slider ul[class*="slider-menu-"] li a {
    color: #3e4d61;
    position: relative
}

section.block-slider ul[class*="slider-menu-"] li a .link-animation {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0%;
    background: rgba(47,185,183,0.2);
    -webkit-transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1)
}

section.block-slider ul[class*="slider-menu-"] li a:hover {
    text-decoration: none
}

section.block-slider ul[class*="slider-menu-"] li a:hover .link-animation {
    width: 100%
}

section.block-slider ul[class*="slider-menu-"] li.active a .link-animation {
    width: 100%
}

section.block-slider .slider {
    font-size: 90%
}

section.block-slider .slider .image-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 3.75rem
}

section.block-slider .slider .image-container img {
    width: 100%;
    height: auto
}

@media (max-width: 320.98px) {
    section.block-slider .slider-area .controls {
        top:5.25rem;
        display: none !important
    }
}

@media (min-width: 321px) and (max-width: 541.98px) {
    section.block-slider .slider-area .controls {
        top:10rem;
        display: none !important
    }
}

@media (min-width: 542px) and (max-width: 575.98px) {
    section.block-slider .slider-area .controls {
        top:10.5rem
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    section.block-slider .slider-area .controls {
        top:10.5rem
    }

    section.block-slider .slider-area .slide {
        padding: 0
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    section.block-slider .slider-area .controls {
        top:10rem
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    section.block-slider .slider-area .controls {
        position:absolute;
        top: 13.5rem;
        right: 0
    }
}

@media (max-width: 991.98px) {
    section.block-slider .slider-area {
        border:none
    }

    section.block-slider .slider-area .slide {
        padding: 0
    }

    .slick-slide .richtext-image {
        max-height: 330px;
        max-width: 280px;
        height: auto
    }
}

.block-one_col_with_video {
    margin: 1.75rem 0;
    padding: 15px
}

.block-one_col_with_video .video-container {
    position: relative;
    width: 100%;
    overflow: hidden
}

.block-one_col_with_video .video {
    width: 100%;
    position: relative
}

.block-one_col_with_video .video iframe {
    min-height: 20rem;
    width: 100%;
    top: 0;
    left: 0
}

@media (max-width: 991.98px) {
    .block-one_col_with_image .image-container.gradient {
        padding:0
    }
}

section.block-team {
    margin: 2.75rem 0;
    padding: 15px;
}

section.block-team img {
    width: 125px;
    height: 125px;
    object-fit: cover;
}

section.block-team .member-hover {
    -webkit-transition: ease-in-out 0.3s
}

section.block-team .member-hover:hover {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
    -webkit-box-shadow: 0 0.5rem 1rem rgba(87,92,192,0.15) !important;
    box-shadow: 0 0.5rem 1rem rgba(87,92,192,0.15) !important;
    z-index: 2;
}

@media (max-width: 991.98px) {
    section.block-team img {
        width: 95px;
        height: 95px;
    }
}

@media (max-width: 391.98px) {
    section.block-team img {
        width: 75px;
        height: 75px;
    }
}

section.block-hsir_table table .display-name {
    background-color: #00a499;
    color: white
}

section.block-hsir_table table .table-header {
    background-color: #aaa;
    color: #40476D
}

section.block-hsir_table table th {
    text-align: center
}

section.block-hsir_table table td.bold {
    font-weight: bold !important;
    color: #40476D !important
}

section.block-hsir_table table td.align-right {
    text-align: right !important
}

section.card-slider-block {
    position: relative
}

section.card-slider-block .header {
    margin-bottom: 2rem
}

section.card-slider-block .header .title {
    border-right: 1px lightgray solid
}

section.card-slider-block .card-slider .card {
    border: none;
    border-radius: 0;
    font-size: 75%;
    color: black;
    padding: 1rem;
    text-decoration: none
}

section.card-slider-block .card-slider .card .image-container {
    position: relative;
    height: 8rem;
    overflow: hidden;
    margin-bottom: 1rem
}

section.card-slider-block .card-slider .card .image-container img {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%
}

section.card-slider-block .card-slider .card .image-container .overlay {
    -webkit-transition: .5s ease;
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

section.card-slider-block .card-slider .card .image-container .overlay .text {
    text-align: center;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    color: white
}

section.card-slider-block .card-slider .card .title {
    text-transform: uppercase;
    font-weight: bold;
    color: #3e4d61;
    margin-bottom: 1rem
}

section.card-slider-block .card-slider .card:hover .overlay {
    opacity: 0.7;
    background-color: black
}

section.card-slider-block .card-slider .slick-slide {
    margin: .5rem .5rem 2rem 1rem !important
}

.slick-slide {
    overflow: hidden;
}

.slick-slide .service-slide {
    text-overflow: elipsis;
}

.resource_tiles-block {
    padding: 15px;
}

.resource_tile .logo {
    margin-bottom: 0.5em;
}

.resource_tiles-block .resource_tile_hover {
    -webkit-transition: ease-in-out 0.3s;
}

.resource_tiles-block .resource_tile {
    margin: 1em 0;
    padding: 1em;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(87,92,192,0.09);
    box-shadow: 0 0.5rem 1rem rgba(87,92,192,0.09);
}

.resource_tiles-block .resource_tile2 {
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin: 1em 0;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(87,92,192,0.09);
    box-shadow: 0 0.5rem 1rem rgba(87,92,192,0.09);
    -webkit-transition: ease-in-out 0.3s;
}

.resource_tiles-block .resource_tile_hover:hover{
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0 0.5rem 1rem rgba(87,92,192,0.15) !important;
    box-shadow: 0 0.5rem 1rem rgba(87,92,192,0.15) !important
}

.resource_tiles-block img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    object-fit: cover;
}

.directory-block {
    padding: 15px;
}

.directory-block .directory-card {
    border: 1px #f5f9fb solid;
    position: relative;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(87,92,192,0.09);
    box-shadow: 0 0.5rem 1rem rgba(87,92,192,0.09);
    -webkit-transition: ease-in-out 0.3s;
}

.directory-block .directory-card:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0 0.5rem 1rem rgba(87,92,192,0.15) !important;
    box-shadow: 0 0.5rem 1rem rgba(87,92,192,0.15) !important
}

.directory-block .directory-card:hover .directory-card-header {
    background-size: cover
}

.directory-block .directory-card:hover .border-top {
    width: 100%;
    -webkit-transition: width 0.5s;
    transition: width 0.5s;
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg)
}

.directory-block .directory-card-header {
    padding: 1rem 1.75rem
}

.directory-block .directory-card-header .border-top {
    width: 0%;
    height: 4px;
    position: absolute;
    top: -1px;
    left: 0px;
    right: 0;
    background-color: #00a499;
    z-index: 10;
    -webkit-transition: width 0.5s;
    transition: width 0.5s
}

.directory-block .directory-card-header .department h2 {
    font-size: 95%;
    letter-spacing: 0.058em;
    margin-bottom: 0.2rem
}

.directory-block .directory-card-header .office {
    font-size: 82%
}

.directory-block .directory-card-body {
    padding: 1rem 1.75rem;
    font-size: 85%
}

.directory-block .header .row .col-auto img {
    width: 80px;
    height: 80px;
    border-radius: 150px;
    object-fit: cover;
}

.directory-block .header .row .header-title {
    margin: auto 0;
}

.directory-block a {
    color: inherit;
    text-decoration: inherit;
}

.iframe-container {
    margin: 3rem 1rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 76.25%;
    -webkit-box-shadow: rgba(149,157,165,0.2) 0px 8px 24px;
    box-shadow: rgba(149,157,165,0.2) 0px 8px 24px
}

.iframe-object {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 3px
}

@media (max-width: 767.98px) {
    .iframe-container {
        padding-top:136.25%
    }
}

.daterange {
    position: relative;
    -webkit-box-shadow: 0 1px 1px 0 rgba(85,95,110,0.2);
    box-shadow: 0 1px 1px 0 rgba(85,95,110,0.2);
    border-radius: 4px
}

.daterange * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.daterange div,.daterange li,.daterange span,.daterange ul {
    margin: 0;
    padding: 0;
    border: 0
}

.daterange ul {
    list-style: none
}

.daterange.dr-active {
    z-index: 10
}

.daterange .dr-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #d4d8e3;
    border-radius: 5px;
    background-color: #fff;
    position: relative;
    z-index: 5;
    overflow: hidden;
    height: 46px
}

.daterange .dr-input:hover {
    border-color: #2693d5
}

.daterange .dr-input.dr-active {
    -webkit-box-shadow: 0 0 0 3px rgba(38,147,213,0.3);
    box-shadow: 0 0 0 3px rgba(38,147,213,0.3);
    border-color: #2693d5
}

.daterange .dr-input .dr-dates {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 1.5rem 0 0.75rem;
    min-width: calc(100% - 35px)
}

.daterange .dr-input .dr-dates .dr-date {
    font-size: 0.9375rem;
    padding: 0.65625rem 0;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    outline: 0
}

.daterange .dr-input .dr-dates .dr-date.dr-active,.daterange .dr-input .dr-dates .dr-date:focus,.daterange .dr-input .dr-dates .dr-date:hover {
    color: #2693d5
}

.daterange .dr-input .dr-dates .dr-date:empty:after {
    content: attr(placeholder);
    color: #9ba3a7
}

.daterange .dr-input .dr-dates .dr-dates-dash {
    color: #9ba3a7;
    padding: 0 10px;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    font-weight: 600
}

.daterange .dr-input .dr-presets {
    width: 2.1875rem;
    border-left: 1px solid #d4d8e3;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.daterange .dr-input .dr-presets.dr-active,.daterange .dr-input .dr-presets:hover {
    border-color: #2693d5;
    -webkit-box-shadow: inset 0 2px 3px #ebf1f4;
    box-shadow: inset 0 2px 3px #ebf1f4
}

.daterange .dr-input .dr-presets.dr-active .dr-preset-bar,.daterange .dr-input .dr-presets:hover .dr-preset-bar {
    background-color: #2693d5
}

.daterange .dr-input .dr-presets .dr-preset-bar {
    height: 2px;
    background-color: #d4d8e3;
    margin: 1px 0 1px 25%
}

.daterange .dr-input .dr-presets .dr-preset-bar:nth-child(1) {
    width: 50%
}

.daterange .dr-input .dr-presets .dr-preset-bar:nth-child(2) {
    width: 40%
}

.daterange .dr-input .dr-presets .dr-preset-bar:nth-child(3) {
    width: 30%
}

.daterange .dr-selections {
    position: absolute
}

.daterange .dr-selections .dr-calendar {
    background-color: #fff;
    font-size: 0.9375rem;
    -webkit-box-shadow: 0 0 5px #d4d8e3;
    box-shadow: 0 0 5px #d4d8e3;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    z-index: 4;
    padding-top: 5px;
    top: -5px;
    left: 4px;
    -webkit-transition: width 0.2s;
    transition: width 0.2s;
    min-width: 210px
}

.daterange .dr-selections .dr-calendar .dr-range-switcher {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.375rem 0.5rem;
    font-size: 0.875rem
}

.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid rgba(195,202,205,0.5);
    border-radius: 5px;
    height: 1.5625rem
}

.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i {
    color: #d4d8e3;
    position: relative;
    top: -1px;
    cursor: pointer;
    font-size: 0.75rem;
    height: 100%;
    width: 20px
}

.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i:hover:after,.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i:hover:before {
    background-color: #2693d5
}

.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i.dr-disabled {
    pointer-events: none;
    opacity: 0
}

.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i:after,.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i:before {
    content: '';
    position: absolute;
    width: 7px;
    height: 2px;
    background-color: #d4d8e3;
    border-radius: 1px;
    left: 50%
}

.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i.dr-left:before {
    top: calc(50% - 2px);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg)
}

.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i.dr-left:after {
    top: calc(50% + 2px);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg)
}

.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i.dr-right:before {
    top: calc(50% - 2px);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg)
}

.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i.dr-right:after {
    top: calc(50% + 2px);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg)
}

.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-month-switcher {
    width: 100%;
    margin-right: 0.375rem
}

.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-year-switcher {
    min-width: 80px
}

.daterange .dr-selections .dr-calendar .dr-days-of-week-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #ebf1f4;
    font-size: 0.625rem;
    color: #9ba3a7;
    padding: 0.3125rem 0;
    border: 1px solid rgba(195,202,205,0.5);
    border-left: none;
    border-right: none
}

.daterange .dr-selections .dr-calendar .dr-days-of-week-list .dr-day-of-week {
    width: calc(100% / 7);
    text-align: center
}

.daterange .dr-selections .dr-calendar .dr-day-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 0.9375rem
}

.daterange .dr-selections .dr-calendar .dr-day-list .dr-day {
    padding: 0.3125rem;
    text-align: center;
    width: calc(100% / 7);
    cursor: pointer;
    color: #4f565c
}

.daterange .dr-selections .dr-calendar .dr-day-list .dr-day.dr-hover:not(.dr-current) {
    background-color: #ebf1f4 !important
}

.daterange .dr-selections .dr-calendar .dr-day-list .dr-day.dr-hover-before {
    border-left: 2px solid #2693d5 !important;
    border-radius: 2px 0 0 2px;
    padding-left: 0.1875rem !important
}

.daterange .dr-selections .dr-calendar .dr-day-list .dr-day.dr-hover-after {
    border-right: 2px solid #2693d5 !important;
    border-radius: 0 2px 2px 0;
    padding-right: 0.1875rem !important
}

.daterange .dr-selections .dr-calendar .dr-day-list .dr-end,.daterange .dr-selections .dr-calendar .dr-day-list .dr-selected,.daterange .dr-selections .dr-calendar .dr-day-list .dr-start {
    background-color: #ebf1f4
}

.daterange .dr-selections .dr-calendar .dr-day-list .dr-maybe {
    background-color: #ebf1f4 !important
}

.daterange .dr-selections .dr-calendar .dr-day-list .dr-fade {
    color: #d4d8e3
}

.daterange .dr-selections .dr-calendar .dr-day-list .dr-start {
    border-left: 2px solid #2693d5;
    border-radius: 2px 0 0 2px;
    padding-left: 0.1875rem
}

.daterange .dr-selections .dr-calendar .dr-day-list .dr-end {
    border-right: 2px solid #2693d5;
    border-radius: 0 2px 2px 0;
    padding-right: 0.1875rem
}

.daterange .dr-selections .dr-calendar .dr-day-list .dr-current {
    color: #2693d5 !important;
    background-color: rgba(38,147,213,0.2) !important
}

.daterange .dr-selections .dr-calendar .dr-day-list .dr-outside {
    pointer-events: none;
    cursor: default;
    color: rgba(195,202,205,0.5)
}

.daterange .dr-selections .dr-preset-list {
    background-color: #fff;
    color: #2693d5;
    font-size: 0.9375rem;
    -webkit-box-shadow: 0 0 5px #d4d8e3;
    box-shadow: 0 0 5px #d4d8e3;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    z-index: 4;
    padding-top: 5px;
    top: -5px;
    left: 4px;
    width: 100%
}

.daterange .dr-selections .dr-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 0.75rem 0.625rem;
    border-bottom: 1px solid #ebf1f4;
    cursor: pointer;
    white-space: nowrap
}

.daterange .dr-selections .dr-list-item:hover {
    background-color: #ebf1f4
}

.daterange .dr-selections .dr-list-item .dr-item-aside {
    color: #9ba3a7;
    font-size: 0.75rem;
    margin-left: 0.3125rem;
    position: relative;
    top: -1px
}

.daterange--single .dr-input {
    cursor: text
}

.daterange--single .dr-input .dr-dates {
    padding: 0;
    min-width: 160px;
    width: 100%
}

.daterange--single .dr-input .dr-dates .dr-date {
    width: 100%;
    padding: 0.65625rem 0.75rem;
    text-align: left;
    color: #4f565c
}

:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #00a499;
    --secondary: #40476d;
    --success: #00703F;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #8E4876;
    --light: #f6f8fd;
    --dark: #212529;
    --gray: #f5f5f5;
    --space-blue: #3e4d61;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}

*,*::before,*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0)
}

article,aside,figcaption,figure,footer,header,hgroup,main,nav,section {
    display: block
}

body {
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation 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;
    color: #212529;
    text-align: left;
    background-color: #fff
}

[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

h1,h2,h3,h4,h5,h6 {
    margin-top: 0;
    margin-bottom: .5rem
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

abbr[title],abbr[data-original-title] {
    text-decoration: underline;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    text-decoration-skip-ink: none
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit
}

ol,ul,dl {
    margin-top: 0;
    margin-bottom: 1rem
}

ol ol,ul ul,ol ul,ul ol {
    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 {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent
}

a:hover {
    color: #0056b3;
    text-decoration: underline
}

a:not([href]):not([class]) {
    color: inherit;
    text-decoration: none
}

a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

pre,code,kbd,samp {
    font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    font-size: 1em
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar
}

figure {
    margin: 0 0 1rem
}

img {
    vertical-align: middle;
    border-style: none
}

svg {
    overflow: hidden;
    vertical-align: middle
}

table {
    border-collapse: collapse
}

caption {
    padding-top: .75rem;
    padding-bottom: .75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

label {
    display: inline-block;
    margin-bottom: .5rem
}

button {
    border-radius: 0
}

button:focus:not(:focus-visible) {
    outline: 0
}

input,button,select,optgroup,textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button,input {
    overflow: visible
}

button,select {
    text-transform: none
}

[role="button"] {
    cursor: pointer
}

select {
    word-wrap: normal
}

button,[type="button"],[type="reset"],[type="submit"] {
    -webkit-appearance: button
}

button:not(:disabled),[type="button"]:not(:disabled),[type="reset"]:not(:disabled),[type="submit"]:not(:disabled) {
    cursor: pointer
}

button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none
}

input[type="radio"],input[type="checkbox"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

textarea {
    overflow: auto;
    resize: vertical
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal
}

progress {
    vertical-align: baseline
}

[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button {
    height: auto
}

[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button
}

output {
    display: inline-block
}

summary {
    display: list-item;
    cursor: pointer
}

template {
    display: none
}

[hidden] {
    display: none !important
}

h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2
}

h1,.h1 {
    font-size: 2.5rem
}

h2,.h2 {
    font-size: 2rem
}

h3,.h3 {
    font-size: 1.75rem
}

h4,.h4 {
    font-size: 1.5rem
}

h5,.h5 {
    font-size: 1.25rem
}

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
}

.display-2 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2
}

.display-3 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0,0,0,0.1)
}

small,.small {
    font-size: 80%;
    font-weight: 400
}

mark,.mark {
    padding: .2em;
    background-color: #fcf8e3
}

.list-unstyled {
    padding-left: 0;
    list-style: none
}

.list-inline {
    padding-left: 0;
    list-style: none
}

.list-inline-item {
    display: inline-block
}

.list-inline-item:not(:last-child) {
    margin-right: .5rem
}

.initialism {
    font-size: 90%;
    text-transform: uppercase
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem
}

.blockquote-footer {
    display: block;
    font-size: 80%;
    color: #6c757d
}

.blockquote-footer::before {
    content: "\2014\00A0"
}

.img-fluid {
    max-width: 100%;
    height: auto
}

.img-thumbnail {
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    max-width: 100%;
    height: auto
}

.figure {
    display: inline-block
}

.figure-img {
    margin-bottom: .5rem;
    line-height: 1
}

.figure-caption {
    font-size: 90%;
    color: #6c757d
}

code {
    font-size: 87.5%;
    color: #e83e8c;
    word-wrap: break-word
}

a>code {
    color: inherit
}

kbd {
    padding: .2rem .4rem;
    font-size: 87.5%;
    color: #fff;
    background-color: #212529;
    border-radius: .2rem
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700
}

pre {
    display: block;
    font-size: 87.5%;
    color: #212529
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll
}

.container,.container-fluid,.container-sm,.container-md,.container-lg,.container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 576px) {
    .container,.container-sm {
        max-width:540px
    }
}

@media (min-width: 768px) {
    .container,.container-sm,.container-md {
        max-width:720px
    }
}

@media (min-width: 992px) {
    .container,.container-sm,.container-md,.container-lg {
        max-width:960px
    }
}

@media (min-width: 1200px) {
    .container,.container-sm,.container-md,.container-lg,.container-xl {
        max-width:1140px
    }
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.no-gutters {
    margin-right: 0;
    margin-left: 0
}

.no-gutters>.col,.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0
}

.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col,.col-auto,.col-sm-1,.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-10,.col-sm-11,.col-sm-12,.col-sm,.col-sm-auto,.col-md-1,.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-10,.col-md-11,.col-md-12,.col-md,.col-md-auto,.col-lg-1,.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-10,.col-lg-11,.col-lg-12,.col-lg,.col-lg-auto,.col-xl-1,.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-10,.col-xl-11,.col-xl-12,.col-xl,.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%
}

.row-cols-1>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.row-cols-2>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.row-cols-3>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%
}

.row-cols-4>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}

.row-cols-5>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%
}

.row-cols-6>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%
}

.col-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%
}

.col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%
}

.col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%
}

.col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}

.col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%
}

.col-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%
}

.col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.col-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%
}

.col-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%
}

.col-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
}

.col-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%
}

.col-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%
}

.col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1
}

.order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13
}

.order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0
}

.order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

.order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3
}

.order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4
}

.order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5
}

.order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6
}

.order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7
}

.order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8
}

.order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9
}

.order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10
}

.order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11
}

.order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12
}

.offset-1 {
    margin-left: 8.33333%
}

.offset-2 {
    margin-left: 16.66667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.33333%
}

.offset-5 {
    margin-left: 41.66667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.33333%
}

.offset-8 {
    margin-left: 66.66667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.33333%
}

.offset-11 {
    margin-left: 91.66667%
}

@media (min-width: 576px) {
    .col-sm {
        -ms-flex-preferred-size:0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .row-cols-sm-1>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-sm-2>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-sm-3>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .row-cols-sm-4>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-sm-5>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-sm-6>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-sm-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-sm-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-sm-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-sm-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-sm-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-sm-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-sm-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-sm-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-sm-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-sm-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-sm-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-sm-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-sm-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-sm-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }

    .order-sm-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13
    }

    .order-sm-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }

    .order-sm-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .order-sm-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .order-sm-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .order-sm-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .order-sm-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .order-sm-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .order-sm-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .order-sm-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .order-sm-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .order-sm-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .order-sm-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .order-sm-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.33333%
    }

    .offset-sm-2 {
        margin-left: 16.66667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.33333%
    }

    .offset-sm-5 {
        margin-left: 41.66667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.33333%
    }

    .offset-sm-8 {
        margin-left: 66.66667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.33333%
    }

    .offset-sm-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 768px) {
    .col-md {
        -ms-flex-preferred-size:0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .row-cols-md-1>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-md-2>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-md-3>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .row-cols-md-4>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-md-5>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-md-6>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-md-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-md-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-md-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-md-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-md-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-md-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-md-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-md-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-md-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-md-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-md-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-md-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-md-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }

    .order-md-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13
    }

    .order-md-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }

    .order-md-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .order-md-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .order-md-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .order-md-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .order-md-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .order-md-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .order-md-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .order-md-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .order-md-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .order-md-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .order-md-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .order-md-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.33333%
    }

    .offset-md-2 {
        margin-left: 16.66667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.33333%
    }

    .offset-md-5 {
        margin-left: 41.66667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.33333%
    }

    .offset-md-8 {
        margin-left: 66.66667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.33333%
    }

    .offset-md-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 992px) {
    .col-lg {
        -ms-flex-preferred-size:0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .row-cols-lg-1>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-lg-2>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-lg-3>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .row-cols-lg-4>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-lg-5>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-lg-6>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-lg-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-lg-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-lg-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-lg-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-lg-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-lg-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-lg-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-lg-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-lg-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-lg-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-lg-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-lg-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-lg-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }

    .order-lg-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13
    }

    .order-lg-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }

    .order-lg-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .order-lg-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .order-lg-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .order-lg-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .order-lg-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .order-lg-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .order-lg-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .order-lg-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .order-lg-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .order-lg-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .order-lg-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .order-lg-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.33333%
    }

    .offset-lg-2 {
        margin-left: 16.66667%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.33333%
    }

    .offset-lg-5 {
        margin-left: 41.66667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.33333%
    }

    .offset-lg-8 {
        margin-left: 66.66667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.33333%
    }

    .offset-lg-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 1200px) {
    .col-xl {
        -ms-flex-preferred-size:0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .row-cols-xl-1>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-xl-2>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-xl-3>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .row-cols-xl-4>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-xl-5>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-xl-6>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-xl-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-xl-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-xl-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-xl-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-xl-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-xl-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-xl-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-xl-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-xl-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-xl-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-xl-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-xl-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-xl-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-xl-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }

    .order-xl-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13
    }

    .order-xl-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }

    .order-xl-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .order-xl-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .order-xl-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .order-xl-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .order-xl-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .order-xl-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .order-xl-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .order-xl-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .order-xl-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .order-xl-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .order-xl-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .order-xl-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.33333%
    }

    .offset-xl-2 {
        margin-left: 16.66667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.33333%
    }

    .offset-xl-5 {
        margin-left: 41.66667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.33333%
    }

    .offset-xl-8 {
        margin-left: 66.66667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.33333%
    }

    .offset-xl-11 {
        margin-left: 91.66667%
    }
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529
}

.table th,.table td {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6
}

.table tbody+tbody {
    border-top: 2px solid #dee2e6
}

.table-sm th,.table-sm td {
    padding: .3rem
}

.table-bordered {
    border: 1px solid #dee2e6
}

.table-bordered th,.table-bordered td {
    border: 1px solid #dee2e6
}

.table-bordered thead th,.table-bordered thead td {
    border-bottom-width: 2px
}

.table-borderless th,.table-borderless td,.table-borderless thead th,.table-borderless tbody+tbody {
    border: 0
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,0.05)
}

.table-hover tbody tr:hover {
    color: #212529;
    background-color: rgba(0,0,0,0.075)
}

.table-primary,.table-primary>th,.table-primary>td {
    background-color: #b8e6e2
}

.table-primary th,.table-primary td,.table-primary thead th,.table-primary tbody+tbody {
    border-color: #7ad0ca
}

.table-hover .table-primary:hover {
    background-color: #a5dfda
}

.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th {
    background-color: #a5dfda
}

.table-secondary,.table-secondary>th,.table-secondary>td {
    background-color: #cacbd6
}

.table-secondary th,.table-secondary td,.table-secondary thead th,.table-secondary tbody+tbody {
    border-color: #9c9fb3
}

.table-hover .table-secondary:hover {
    background-color: #bcbdcb
}

.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th {
    background-color: #bcbdcb
}

.table-success,.table-success>th,.table-success>td {
    background-color: #b8d7c9
}

.table-success th,.table-success td,.table-success thead th,.table-success tbody+tbody {
    border-color: #7ab59b
}

.table-hover .table-success:hover {
    background-color: #a8cebd
}

.table-hover .table-success:hover>td,.table-hover .table-success:hover>th {
    background-color: #a8cebd
}

.table-danger,.table-danger>th,.table-danger>td {
    background-color: #f5c6cb
}

.table-danger th,.table-danger td,.table-danger thead th,.table-danger tbody+tbody {
    border-color: #ed969e
}

.table-hover .table-danger:hover {
    background-color: #f1b0b7
}

.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th {
    background-color: #f1b0b7
}

.table-warning,.table-warning>th,.table-warning>td {
    background-color: #ffeeba
}

.table-warning th,.table-warning td,.table-warning thead th,.table-warning tbody+tbody {
    border-color: #ffdf7e
}

.table-hover .table-warning:hover {
    background-color: #ffe8a1
}

.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th {
    background-color: #ffe8a1
}

.table-info,.table-info>th,.table-info>td {
    background-color: #dfccd9
}

.table-info th,.table-info td,.table-info thead th,.table-info tbody+tbody {
    border-color: #c4a0b8
}

.table-hover .table-info:hover {
    background-color: #d5bccd
}

.table-hover .table-info:hover>td,.table-hover .table-info:hover>th {
    background-color: #d5bccd
}

.table-light,.table-light>th,.table-light>td {
    background-color: #fcfdfe
}

.table-light th,.table-light td,.table-light thead th,.table-light tbody+tbody {
    border-color: #fafbfe
}

.table-hover .table-light:hover {
    background-color: #e9f0f8
}

.table-hover .table-light:hover>td,.table-hover .table-light:hover>th {
    background-color: #e9f0f8
}

.table-dark,.table-dark>th,.table-dark>td {
    background-color: #c1c2c3
}

.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody {
    border-color: #8c8e90
}

.table-hover .table-dark:hover {
    background-color: #b4b5b6
}

.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th {
    background-color: #b4b5b6
}

.table-gray,.table-gray>th,.table-gray>td {
    background-color: #fcfcfc
}

.table-gray th,.table-gray td,.table-gray thead th,.table-gray tbody+tbody {
    border-color: #fafafa
}

.table-hover .table-gray:hover {
    background-color: #efefef
}

.table-hover .table-gray:hover>td,.table-hover .table-gray:hover>th {
    background-color: #efefef
}

.table-space-blue,.table-space-blue>th,.table-space-blue>td {
    background-color: #c9cdd3
}

.table-space-blue th,.table-space-blue td,.table-space-blue thead th,.table-space-blue tbody+tbody {
    border-color: #9ba2ad
}

.table-hover .table-space-blue:hover {
    background-color: #bbc0c8
}

.table-hover .table-space-blue:hover>td,.table-hover .table-space-blue:hover>th {
    background-color: #bbc0c8
}

.table-active,.table-active>th,.table-active>td {
    background-color: rgba(0,0,0,0.075)
}

.table-hover .table-active:hover {
    background-color: rgba(0,0,0,0.075)
}

.table-hover .table-active:hover>td,.table-hover .table-active:hover>th {
    background-color: rgba(0,0,0,0.075)
}

.table .thead-dark th {
    color: #fff;
    background-color: #343a40;
    border-color: #454d55
}

.table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #dee2e6
}

.table-dark {
    color: #fff;
    background-color: #343a40
}

.table-dark th,.table-dark td,.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: rgba(255,255,255,0.05)
}

.table-dark.table-hover tbody tr:hover {
    color: #fff;
    background-color: rgba(255,255,255,0.075)
}

@media (max-width: 575.98px) {
    .table-responsive-sm {
        display:block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .table-responsive-sm>.table-bordered {
        border: 0
    }
}

@media (max-width: 767.98px) {
    .table-responsive-md {
        display:block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .table-responsive-md>.table-bordered {
        border: 0
    }
}

@media (max-width: 991.98px) {
    .table-responsive-lg {
        display:block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .table-responsive-lg>.table-bordered {
        border: 0
    }
}

@media (max-width: 1199.98px) {
    .table-responsive-xl {
        display:block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .table-responsive-xl>.table-bordered {
        border: 0
    }
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.table-responsive>.table-bordered {
    border: 0
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-transition: border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
    .form-control {
        -webkit-transition: none;
        transition: none
    }
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0
}

.form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(0,123,255,0.25);
    box-shadow: 0 0 0 .2rem rgba(0,123,255,0.25)
}

.form-control::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:disabled,.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1
}

input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff
}

.form-control-file,.form-control-range {
    display: block;
    width: 100%
}

.col-form-label {
    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5
}

.col-form-label-lg {
    padding-top: calc(.5rem + 1px);
    padding-bottom: calc(.5rem + 1px);
    font-size: 1.25rem;
    line-height: 1.5
}

.col-form-label-sm {
    padding-top: calc(.25rem + 1px);
    padding-bottom: calc(.25rem + 1px);
    font-size: .875rem;
    line-height: 1.5
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding: .375rem 0;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0
}

.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg {
    padding-right: 0;
    padding-left: 0
}

.form-control-sm {
    height: calc(1.5em + .5rem + 2px);
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

.form-control-lg {
    height: calc(1.5em + 1rem + 2px);
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem
}

select.form-control[size],select.form-control[multiple] {
    height: auto
}

textarea.form-control {
    height: auto
}

.form-group {
    margin-bottom: 1rem
}

.form-text {
    display: block;
    margin-top: .25rem
}

.form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px
}

.form-row>.col,.form-row>[class*="col-"] {
    padding-right: 5px;
    padding-left: 5px
}

.form-check {
    position: relative;
    display: block;
    padding-left: 0;
}

.form-check-input {
    position: absolute;
    margin-top: .3rem;
    margin-left: -1.25rem
}

.form-check-input[disabled] ~ .form-check-label,.form-check-input:disabled ~ .form-check-label {
    color: #6c757d
}

.form-check-label {
    margin-bottom: 0
}

.form-check-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: .75rem
}

.form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: .3125rem;
    margin-left: 0
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #28a745
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(40,167,69,0.9);
    border-radius: .25rem
}

.form-row>.col>.valid-tooltip,.form-row>[class*="col-"]>.valid-tooltip {
    left: 5px
}

.was-validated :valid ~ .valid-feedback,.was-validated :valid ~ .valid-tooltip,.is-valid ~ .valid-feedback,.is-valid ~ .valid-tooltip {
    display: block
}

.was-validated .form-control:valid,.form-control.is-valid {
    border-color: #28a745;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.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-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

.was-validated .form-control:valid:focus,.form-control.is-valid:focus {
    border-color: #28a745;
    -webkit-box-shadow: 0 0 0 .2rem rgba(40,167,69,0.25);
    box-shadow: 0 0 0 .2rem rgba(40,167,69,0.25)
}

.was-validated textarea.form-control:valid,textarea.form-control.is-valid {
    padding-right: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

.was-validated .custom-select:valid,.custom-select.is-valid {
    border-color: #28a745;
    padding-right: calc(.75em + 2.3125rem);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.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") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat
}

.was-validated .custom-select:valid:focus,.custom-select.is-valid:focus {
    border-color: #28a745;
    -webkit-box-shadow: 0 0 0 .2rem rgba(40,167,69,0.25);
    box-shadow: 0 0 0 .2rem rgba(40,167,69,0.25)
}

.was-validated .form-check-input:valid ~ .form-check-label,.form-check-input.is-valid ~ .form-check-label {
    color: #28a745
}

.was-validated .form-check-input:valid ~ .valid-feedback,.was-validated .form-check-input:valid ~ .valid-tooltip,.form-check-input.is-valid ~ .valid-feedback,.form-check-input.is-valid ~ .valid-tooltip {
    display: block
}

.was-validated .custom-control-input:valid ~ .custom-control-label,.custom-control-input.is-valid ~ .custom-control-label {
    color: #28a745
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before,.custom-control-input.is-valid ~ .custom-control-label::before {
    border-color: #28a745
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,.custom-control-input.is-valid:checked ~ .custom-control-label::before {
    border-color: #34ce57;
    background-color: #34ce57
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,.custom-control-input.is-valid:focus ~ .custom-control-label::before {
    -webkit-box-shadow: 0 0 0 .2rem rgba(40,167,69,0.25);
    box-shadow: 0 0 0 .2rem rgba(40,167,69,0.25)
}

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #28a745
}

.was-validated .custom-file-input:valid ~ .custom-file-label,.custom-file-input.is-valid ~ .custom-file-label {
    border-color: #28a745
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label,.custom-file-input.is-valid:focus ~ .custom-file-label {
    border-color: #28a745;
    -webkit-box-shadow: 0 0 0 .2rem rgba(40,167,69,0.25);
    box-shadow: 0 0 0 .2rem rgba(40,167,69,0.25)
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(220,53,69,0.9);
    border-radius: .25rem
}

.form-row>.col>.invalid-tooltip,.form-row>[class*="col-"]>.invalid-tooltip {
    left: 5px
}

.was-validated :invalid ~ .invalid-feedback,.was-validated :invalid ~ .invalid-tooltip,.is-invalid ~ .invalid-feedback,.is-invalid ~ .invalid-tooltip {
    display: block
}

.was-validated .form-control:invalid,.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus {
    border-color: #dc3545;
    -webkit-box-shadow: 0 0 0 .2rem rgba(220,53,69,0.25);
    box-shadow: 0 0 0 .2rem rgba(220,53,69,0.25)
}

.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid {
    padding-right: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

.was-validated .custom-select:invalid,.custom-select.is-invalid {
    border-color: #dc3545;
    padding-right: calc(.75em + 2.3125rem);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat
}

.was-validated .custom-select:invalid:focus,.custom-select.is-invalid:focus {
    border-color: #dc3545;
    -webkit-box-shadow: 0 0 0 .2rem rgba(220,53,69,0.25);
    box-shadow: 0 0 0 .2rem rgba(220,53,69,0.25)
}

.was-validated .form-check-input:invalid ~ .form-check-label,.form-check-input.is-invalid ~ .form-check-label {
    color: #dc3545
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,.was-validated .form-check-input:invalid ~ .invalid-tooltip,.form-check-input.is-invalid ~ .invalid-feedback,.form-check-input.is-invalid ~ .invalid-tooltip {
    display: block
}

.was-validated .custom-control-input:invalid ~ .custom-control-label,.custom-control-input.is-invalid ~ .custom-control-label {
    color: #dc3545
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before,.custom-control-input.is-invalid ~ .custom-control-label::before {
    border-color: #dc3545
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
    border-color: #e4606d;
    background-color: #e4606d
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,.custom-control-input.is-invalid:focus ~ .custom-control-label::before {
    -webkit-box-shadow: 0 0 0 .2rem rgba(220,53,69,0.25);
    box-shadow: 0 0 0 .2rem rgba(220,53,69,0.25)
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #dc3545
}

.was-validated .custom-file-input:invalid ~ .custom-file-label,.custom-file-input.is-invalid ~ .custom-file-label {
    border-color: #dc3545
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,.custom-file-input.is-invalid:focus ~ .custom-file-label {
    border-color: #dc3545;
    -webkit-box-shadow: 0 0 0 .2rem rgba(220,53,69,0.25);
    box-shadow: 0 0 0 .2rem rgba(220,53,69,0.25)
}

.form-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.form-inline .form-check {
    width: 100%
}

@media (min-width: 576px) {
    .form-inline label {
        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;
        margin-bottom: 0
    }

    .form-inline .form-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .form-inline .form-control-plaintext {
        display: inline-block
    }

    .form-inline .input-group,.form-inline .custom-select {
        width: auto
    }

    .form-inline .form-check {
        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;
        width: auto;
        padding-left: 0
    }

    .form-inline .form-check-input {
        position: relative;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-top: 0;
        margin-right: .25rem;
        margin-left: 0
    }

    .form-inline .custom-control {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .form-inline .custom-control-label {
        margin-bottom: 0
    }
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    -webkit-transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        -webkit-transition: none;
        transition: none
    }
}

.btn:hover {
    color: #212529;
    text-decoration: none
}

.btn:focus,.btn.focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(0,123,255,0.25);
    box-shadow: 0 0 0 .2rem rgba(0,123,255,0.25)
}

.btn.disabled,.btn:disabled {
    opacity: .65
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer
}

a.btn.disabled,fieldset:disabled a.btn {
    pointer-events: none
}

.btn-primary {
    color: #fff !important;
    background-color: #00a499;
    border-color: #00a499
}

.btn-primary:hover {
    color: #fff;
    background-color: #007e75;
    border-color: #007169
}

.btn-primary:focus,.btn-primary.focus {
    color: #fff;
    background-color: #007e75;
    border-color: #007169;
    -webkit-box-shadow: 0 0 0 .2rem rgba(38,178,168,0.5);
    box-shadow: 0 0 0 .2rem rgba(38,178,168,0.5)
}

.btn-primary.disabled,.btn-primary:disabled {
    color: #fff !important;
    background-color: #00a499;
    border-color: #00a499
}

.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled).active,.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #007169;
    border-color: #00645e
}

.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-primary.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(38,178,168,0.5);
    box-shadow: 0 0 0 .2rem rgba(38,178,168,0.5)
}

.btn-secondary {
    color: #fff;
    background-color: #40476d;
    border-color: #40476d
}

.btn-secondary:hover {
    color: #fff;
    background-color: #323755;
    border-color: #2d324d
}

.btn-secondary:focus,.btn-secondary.focus {
    color: #fff;
    background-color: #323755;
    border-color: #2d324d;
    -webkit-box-shadow: 0 0 0 .2rem rgba(93,99,131,0.5);
    box-shadow: 0 0 0 .2rem rgba(93,99,131,0.5)
}

.btn-secondary.disabled,.btn-secondary:disabled {
    color: #fff;
    background-color: #40476d;
    border-color: #40476d
}

.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled).active,.show>.btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #2d324d;
    border-color: #282d45
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(93,99,131,0.5);
    box-shadow: 0 0 0 .2rem rgba(93,99,131,0.5)
}

.btn-success {
    color: #fff;
    background-color: #00703F;
    border-color: #00703F
}

.btn-success:hover {
    color: #fff;
    background-color: #004a29;
    border-color: #003d22
}

.btn-success:focus,.btn-success.focus {
    color: #fff;
    background-color: #004a29;
    border-color: #003d22;
    -webkit-box-shadow: 0 0 0 .2rem rgba(38,133,92,0.5);
    box-shadow: 0 0 0 .2rem rgba(38,133,92,0.5)
}

.btn-success.disabled,.btn-success:disabled {
    color: #fff;
    background-color: #00703F;
    border-color: #00703F
}

.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled).active,.show>.btn-success.dropdown-toggle {
    color: #fff;
    background-color: #003d22;
    border-color: #00301b
}

.btn-success:not(:disabled):not(.disabled):active:focus,.btn-success:not(:disabled):not(.disabled).active:focus,.show>.btn-success.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(38,133,92,0.5);
    box-shadow: 0 0 0 .2rem rgba(38,133,92,0.5)
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-danger:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130
}

.btn-danger:focus,.btn-danger.focus {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
    -webkit-box-shadow: 0 0 0 .2rem rgba(225,83,97,0.5);
    box-shadow: 0 0 0 .2rem rgba(225,83,97,0.5)
}

.btn-danger.disabled,.btn-danger:disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled).active,.show>.btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #bd2130;
    border-color: #b21f2d
}

.btn-danger:not(:disabled):not(.disabled):active:focus,.btn-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-danger.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(225,83,97,0.5);
    box-shadow: 0 0 0 .2rem rgba(225,83,97,0.5)
}

.btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-warning:hover {
    color: #212529;
    background-color: #e0a800;
    border-color: #d39e00
}

.btn-warning:focus,.btn-warning.focus {
    color: #212529;
    background-color: #e0a800;
    border-color: #d39e00;
    -webkit-box-shadow: 0 0 0 .2rem rgba(222,170,12,0.5);
    box-shadow: 0 0 0 .2rem rgba(222,170,12,0.5)
}

.btn-warning.disabled,.btn-warning:disabled {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled).active,.show>.btn-warning.dropdown-toggle {
    color: #212529;
    background-color: #d39e00;
    border-color: #c69500
}

.btn-warning:not(:disabled):not(.disabled):active:focus,.btn-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-warning.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(222,170,12,0.5);
    box-shadow: 0 0 0 .2rem rgba(222,170,12,0.5)
}

.btn-info {
    color: #fff;
    background-color: #8E4876;
    border-color: #8E4876
}

.btn-info:hover {
    color: #fff;
    background-color: #753b61;
    border-color: #6c375a
}

.btn-info:focus,.btn-info.focus {
    color: #fff;
    background-color: #753b61;
    border-color: #6c375a;
    -webkit-box-shadow: 0 0 0 .2rem rgba(159,99,139,0.5);
    box-shadow: 0 0 0 .2rem rgba(159,99,139,0.5)
}

.btn-info.disabled,.btn-info:disabled {
    color: #fff;
    background-color: #8E4876;
    border-color: #8E4876
}

.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled).active,.show>.btn-info.dropdown-toggle {
    color: #fff;
    background-color: #6c375a;
    border-color: #643353
}

.btn-info:not(:disabled):not(.disabled):active:focus,.btn-info:not(:disabled):not(.disabled).active:focus,.show>.btn-info.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(159,99,139,0.5);
    box-shadow: 0 0 0 .2rem rgba(159,99,139,0.5)
}

.btn-light {
    color: #212529;
    background-color: #f6f8fd;
    border-color: #f6f8fd
}

.btn-light:hover {
    color: #212529;
    background-color: #d7e0f6;
    border-color: #ccd8f4
}

.btn-light:focus,.btn-light.focus {
    color: #212529;
    background-color: #d7e0f6;
    border-color: #ccd8f4;
    -webkit-box-shadow: 0 0 0 .2rem rgba(214,216,221,0.5);
    box-shadow: 0 0 0 .2rem rgba(214,216,221,0.5)
}

.btn-light.disabled,.btn-light:disabled {
    color: #212529;
    background-color: #f6f8fd;
    border-color: #f6f8fd
}

.btn-light:not(:disabled):not(.disabled):active,.btn-light:not(:disabled):not(.disabled).active,.show>.btn-light.dropdown-toggle {
    color: #212529;
    background-color: #ccd8f4;
    border-color: #c2cff1
}

.btn-light:not(:disabled):not(.disabled):active:focus,.btn-light:not(:disabled):not(.disabled).active:focus,.show>.btn-light.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(214,216,221,0.5);
    box-shadow: 0 0 0 .2rem rgba(214,216,221,0.5)
}

.btn-dark {
    color: #fff;
    background-color: #212529;
    border-color: #212529
}

.btn-dark:hover {
    color: #fff;
    background-color: #101214;
    border-color: #0a0c0d
}

.btn-dark:focus,.btn-dark.focus {
    color: #fff;
    background-color: #101214;
    border-color: #0a0c0d;
    -webkit-box-shadow: 0 0 0 .2rem rgba(66,70,73,0.5);
    box-shadow: 0 0 0 .2rem rgba(66,70,73,0.5)
}

.btn-dark.disabled,.btn-dark:disabled {
    color: #fff;
    background-color: #212529;
    border-color: #212529
}

.btn-dark:not(:disabled):not(.disabled):active,.btn-dark:not(:disabled):not(.disabled).active,.show>.btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #0a0c0d;
    border-color: #050506
}

.btn-dark:not(:disabled):not(.disabled):active:focus,.btn-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-dark.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(66,70,73,0.5);
    box-shadow: 0 0 0 .2rem rgba(66,70,73,0.5)
}

.btn-gray {
    color: #212529;
    background-color: #f5f5f5;
    border-color: #f5f5f5
}

.btn-gray:hover {
    color: #212529;
    background-color: #e2e2e2;
    border-color: #dcdcdc
}

.btn-gray:focus,.btn-gray.focus {
    color: #212529;
    background-color: #e2e2e2;
    border-color: #dcdcdc;
    -webkit-box-shadow: 0 0 0 .2rem rgba(213,214,214,0.5);
    box-shadow: 0 0 0 .2rem rgba(213,214,214,0.5)
}

.btn-gray.disabled,.btn-gray:disabled {
    color: #212529;
    background-color: #f5f5f5;
    border-color: #f5f5f5
}

.btn-gray:not(:disabled):not(.disabled):active,.btn-gray:not(:disabled):not(.disabled).active,.show>.btn-gray.dropdown-toggle {
    color: #212529;
    background-color: #dcdcdc;
    border-color: #d5d5d5
}

.btn-gray:not(:disabled):not(.disabled):active:focus,.btn-gray:not(:disabled):not(.disabled).active:focus,.show>.btn-gray.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(213,214,214,0.5);
    box-shadow: 0 0 0 .2rem rgba(213,214,214,0.5)
}

.btn-space-blue {
    color: #fff;
    background-color: #3e4d61;
    border-color: #3e4d61
}

.btn-space-blue:hover {
    color: #fff;
    background-color: #2f3a4a;
    border-color: #2a3442
}

.btn-space-blue:focus,.btn-space-blue.focus {
    color: #fff;
    background-color: #2f3a4a;
    border-color: #2a3442;
    -webkit-box-shadow: 0 0 0 .2rem rgba(91,104,121,0.5);
    box-shadow: 0 0 0 .2rem rgba(91,104,121,0.5)
}

.btn-space-blue.disabled,.btn-space-blue:disabled {
    color: #fff;
    background-color: #3e4d61;
    border-color: #3e4d61
}

.btn-space-blue:not(:disabled):not(.disabled):active,.btn-space-blue:not(:disabled):not(.disabled).active,.show>.btn-space-blue.dropdown-toggle {
    color: #fff;
    background-color: #2a3442;
    border-color: #252e3a
}

.btn-space-blue:not(:disabled):not(.disabled):active:focus,.btn-space-blue:not(:disabled):not(.disabled).active:focus,.show>.btn-space-blue.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(91,104,121,0.5);
    box-shadow: 0 0 0 .2rem rgba(91,104,121,0.5)
}

.btn-outline-primary {
    color: #00a499;
    border-color: #00a499
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #00a499;
    border-color: #00a499
}

.btn-outline-primary:focus,.btn-outline-primary.focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(0,164,153,0.5);
    box-shadow: 0 0 0 .2rem rgba(0,164,153,0.5)
}

.btn-outline-primary.disabled,.btn-outline-primary:disabled {
    color: #00a499;
    background-color: transparent
}

.btn-outline-primary:not(:disabled):not(.disabled):active,.btn-outline-primary:not(:disabled):not(.disabled).active,.show>.btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #00a499;
    border-color: #00a499
}

.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 {
    -webkit-box-shadow: 0 0 0 .2rem rgba(0,164,153,0.5);
    box-shadow: 0 0 0 .2rem rgba(0,164,153,0.5)
}

.btn-outline-secondary {
    color: #40476d;
    border-color: #40476d
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #40476d;
    border-color: #40476d
}

.btn-outline-secondary:focus,.btn-outline-secondary.focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(64,71,109,0.5);
    box-shadow: 0 0 0 .2rem rgba(64,71,109,0.5)
}

.btn-outline-secondary.disabled,.btn-outline-secondary:disabled {
    color: #40476d;
    background-color: transparent
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,.btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #40476d;
    border-color: #40476d
}

.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 {
    -webkit-box-shadow: 0 0 0 .2rem rgba(64,71,109,0.5);
    box-shadow: 0 0 0 .2rem rgba(64,71,109,0.5)
}

.btn-outline-success {
    color: #00703F;
    border-color: #00703F
}

.btn-outline-success:hover {
    color: #fff;
    background-color: #00703F;
    border-color: #00703F
}

.btn-outline-success:focus,.btn-outline-success.focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(0,112,63,0.5);
    box-shadow: 0 0 0 .2rem rgba(0,112,63,0.5)
}

.btn-outline-success.disabled,.btn-outline-success:disabled {
    color: #00703F;
    background-color: transparent
}

.btn-outline-success:not(:disabled):not(.disabled):active,.btn-outline-success:not(:disabled):not(.disabled).active,.show>.btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #00703F;
    border-color: #00703F
}

.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 {
    -webkit-box-shadow: 0 0 0 .2rem rgba(0,112,63,0.5);
    box-shadow: 0 0 0 .2rem rgba(0,112,63,0.5)
}

.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-outline-danger:focus,.btn-outline-danger.focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(220,53,69,0.5);
    box-shadow: 0 0 0 .2rem rgba(220,53,69,0.5)
}

.btn-outline-danger.disabled,.btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent
}

.btn-outline-danger:not(:disabled):not(.disabled):active,.btn-outline-danger:not(:disabled):not(.disabled).active,.show>.btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.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 {
    -webkit-box-shadow: 0 0 0 .2rem rgba(220,53,69,0.5);
    box-shadow: 0 0 0 .2rem rgba(220,53,69,0.5)
}

.btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107
}

.btn-outline-warning:hover {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-outline-warning:focus,.btn-outline-warning.focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(255,193,7,0.5);
    box-shadow: 0 0 0 .2rem rgba(255,193,7,0.5)
}

.btn-outline-warning.disabled,.btn-outline-warning:disabled {
    color: #ffc107;
    background-color: transparent
}

.btn-outline-warning:not(:disabled):not(.disabled):active,.btn-outline-warning:not(:disabled):not(.disabled).active,.show>.btn-outline-warning.dropdown-toggle {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107
}

.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 {
    -webkit-box-shadow: 0 0 0 .2rem rgba(255,193,7,0.5);
    box-shadow: 0 0 0 .2rem rgba(255,193,7,0.5)
}

.btn-outline-info {
    color: #8E4876;
    border-color: #8E4876
}

.btn-outline-info:hover {
    color: #fff;
    background-color: #8E4876;
    border-color: #8E4876
}

.btn-outline-info:focus,.btn-outline-info.focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(142,72,118,0.5);
    box-shadow: 0 0 0 .2rem rgba(142,72,118,0.5)
}

.btn-outline-info.disabled,.btn-outline-info:disabled {
    color: #8E4876;
    background-color: transparent
}

.btn-outline-info:not(:disabled):not(.disabled):active,.btn-outline-info:not(:disabled):not(.disabled).active,.show>.btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #8E4876;
    border-color: #8E4876
}

.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 {
    -webkit-box-shadow: 0 0 0 .2rem rgba(142,72,118,0.5);
    box-shadow: 0 0 0 .2rem rgba(142,72,118,0.5)
}

.btn-outline-light {
    color: #f6f8fd;
    border-color: #f6f8fd
}

.btn-outline-light:hover {
    color: #212529;
    background-color: #f6f8fd;
    border-color: #f6f8fd
}

.btn-outline-light:focus,.btn-outline-light.focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(246,248,253,0.5);
    box-shadow: 0 0 0 .2rem rgba(246,248,253,0.5)
}

.btn-outline-light.disabled,.btn-outline-light:disabled {
    color: #f6f8fd;
    background-color: transparent
}

.btn-outline-light:not(:disabled):not(.disabled):active,.btn-outline-light:not(:disabled):not(.disabled).active,.show>.btn-outline-light.dropdown-toggle {
    color: #212529;
    background-color: #f6f8fd;
    border-color: #f6f8fd
}

.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 {
    -webkit-box-shadow: 0 0 0 .2rem rgba(246,248,253,0.5);
    box-shadow: 0 0 0 .2rem rgba(246,248,253,0.5)
}

.btn-outline-dark {
    color: #212529;
    border-color: #212529
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #212529;
    border-color: #212529
}

.btn-outline-dark:focus,.btn-outline-dark.focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(33,37,41,0.5);
    box-shadow: 0 0 0 .2rem rgba(33,37,41,0.5)
}

.btn-outline-dark.disabled,.btn-outline-dark:disabled {
    color: #212529;
    background-color: transparent
}

.btn-outline-dark:not(:disabled):not(.disabled):active,.btn-outline-dark:not(:disabled):not(.disabled).active,.show>.btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #212529;
    border-color: #212529
}

.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 {
    -webkit-box-shadow: 0 0 0 .2rem rgba(33,37,41,0.5);
    box-shadow: 0 0 0 .2rem rgba(33,37,41,0.5)
}

.btn-outline-gray {
    color: #f5f5f5;
    border-color: #f5f5f5
}

.btn-outline-gray:hover {
    color: #212529;
    background-color: #f5f5f5;
    border-color: #f5f5f5
}

.btn-outline-gray:focus,.btn-outline-gray.focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(245,245,245,0.5);
    box-shadow: 0 0 0 .2rem rgba(245,245,245,0.5)
}

.btn-outline-gray.disabled,.btn-outline-gray:disabled {
    color: #f5f5f5;
    background-color: transparent
}

.btn-outline-gray:not(:disabled):not(.disabled):active,.btn-outline-gray:not(:disabled):not(.disabled).active,.show>.btn-outline-gray.dropdown-toggle {
    color: #212529;
    background-color: #f5f5f5;
    border-color: #f5f5f5
}

.btn-outline-gray:not(:disabled):not(.disabled):active:focus,.btn-outline-gray:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-gray.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(245,245,245,0.5);
    box-shadow: 0 0 0 .2rem rgba(245,245,245,0.5)
}

.btn-outline-space-blue {
    color: #3e4d61;
    border-color: #3e4d61
}

.btn-outline-space-blue:hover {
    color: #fff;
    background-color: #3e4d61;
    border-color: #3e4d61
}

.btn-outline-space-blue:focus,.btn-outline-space-blue.focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(62,77,97,0.5);
    box-shadow: 0 0 0 .2rem rgba(62,77,97,0.5)
}

.btn-outline-space-blue.disabled,.btn-outline-space-blue:disabled {
    color: #3e4d61;
    background-color: transparent
}

.btn-outline-space-blue:not(:disabled):not(.disabled):active,.btn-outline-space-blue:not(:disabled):not(.disabled).active,.show>.btn-outline-space-blue.dropdown-toggle {
    color: #fff;
    background-color: #3e4d61;
    border-color: #3e4d61
}

.btn-outline-space-blue:not(:disabled):not(.disabled):active:focus,.btn-outline-space-blue:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-space-blue.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(62,77,97,0.5);
    box-shadow: 0 0 0 .2rem rgba(62,77,97,0.5)
}

.btn-link {
    font-weight: 400;
    color: #007bff;
    text-decoration: none
}

.btn-link:hover {
    color: #0056b3;
    text-decoration: underline
}

.btn-link:focus,.btn-link.focus {
    text-decoration: underline
}

.btn-link:disabled,.btn-link.disabled {
    color: #6c757d;
    pointer-events: none
}

.btn-lg,.btn-group-lg>.btn {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem
}

.btn-sm,.btn-group-sm>.btn {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

.btn-block {
    display: block;
    width: 100%
}

.btn-block+.btn-block {
    margin-top: .5rem
}

input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block {
    width: 100%
}

.fade {
    -webkit-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear
}

@media (prefers-reduced-motion: reduce) {
    .fade {
        -webkit-transition: none;
        transition: none
    }
}

.fade:not(.show) {
    opacity: 0
}

.collapse:not(.show) {
    display: none
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    transition: height 0.35s ease
}

@media (prefers-reduced-motion: reduce) {
    .collapsing {
        -webkit-transition: none;
        transition: none
    }
}

.dropup,.dropright,.dropdown,.dropleft {
    position: relative
}

.dropdown-toggle {
    white-space: nowrap
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent
}

.dropdown-toggle:empty::after {
    margin-left: 0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: .25rem
}

.dropdown-menu-left {
    right: auto;
    left: 0
}

.dropdown-menu-right {
    right: 0;
    left: auto
}

@media (min-width: 576px) {
    .dropdown-menu-sm-left {
        right:auto;
        left: 0
    }

    .dropdown-menu-sm-right {
        right: 0;
        left: auto
    }
}

@media (min-width: 768px) {
    .dropdown-menu-md-left {
        right:auto;
        left: 0
    }

    .dropdown-menu-md-right {
        right: 0;
        left: auto
    }
}

@media (min-width: 992px) {
    .dropdown-menu-lg-left {
        right:auto;
        left: 0
    }

    .dropdown-menu-lg-right {
        right: 0;
        left: auto
    }
}

@media (min-width: 1200px) {
    .dropdown-menu-xl-left {
        right:auto;
        left: 0
    }

    .dropdown-menu-xl-right {
        right: 0;
        left: auto
    }
}

.dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: .125rem
}

.dropup .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 0;
    border-right: .3em solid transparent;
    border-bottom: .3em solid;
    border-left: .3em solid transparent
}

.dropup .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropright .dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: .125rem
}

.dropright .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: 0;
    border-bottom: .3em solid transparent;
    border-left: .3em solid
}

.dropright .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropright .dropdown-toggle::after {
    vertical-align: 0
}

.dropleft .dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: .125rem
}

.dropleft .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: ""
}

.dropleft .dropdown-toggle::after {
    display: none
}

.dropleft .dropdown-toggle::before {
    display: inline-block;
    margin-right: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: .3em solid;
    border-bottom: .3em solid transparent
}

.dropleft .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropleft .dropdown-toggle::before {
    vertical-align: 0
}

.dropdown-menu[x-placement^="top"],.dropdown-menu[x-placement^="right"],.dropdown-menu[x-placement^="bottom"],.dropdown-menu[x-placement^="left"] {
    right: auto;
    bottom: auto
}

.dropdown-divider {
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0
}

.dropdown-item:hover,.dropdown-item:focus {
    color: #16181b;
    text-decoration: none;
    background-color: #e9ecef
}

.dropdown-item.active,.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #007bff
}

.dropdown-item.disabled,.dropdown-item:disabled {
    color: #adb5bd;
    pointer-events: none;
    background-color: transparent
}

.dropdown-menu.show {
    display: block
}

.dropdown-header {
    display: block;
    padding: .5rem 1.5rem;
    margin-bottom: 0;
    font-size: .875rem;
    color: #6c757d;
    white-space: nowrap
}

.dropdown-item-text {
    display: block;
    padding: .25rem 1.5rem;
    color: #212529
}

.btn-group,.btn-group-vertical {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle
}

.btn-group>.btn,.btn-group-vertical>.btn {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.btn-group>.btn:hover,.btn-group-vertical>.btn:hover {
    z-index: 1
}

.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active {
    z-index: 1
}

.btn-toolbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.btn-toolbar .input-group {
    width: auto
}

.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child) {
    margin-left: -1px
}

.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child)>.btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.dropdown-toggle-split {
    padding-right: .5625rem;
    padding-left: .5625rem
}

.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after {
    margin-left: 0
}

.dropleft .dropdown-toggle-split::before {
    margin-right: 0
}

.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split {
    padding-right: .375rem;
    padding-left: .375rem
}

.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split {
    padding-right: .75rem;
    padding-left: .75rem
}

.btn-group-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.btn-group-vertical>.btn,.btn-group-vertical>.btn-group {
    width: 100%
}

.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child) {
    margin-top: -1px
}

.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child)>.btn {
    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="radio"],.btn-group-toggle>.btn input[type="checkbox"],.btn-group-toggle>.btn-group>.btn input[type="radio"],.btn-group-toggle>.btn-group>.btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%
}

.input-group>.form-control,.input-group>.form-control-plaintext,.input-group>.custom-select,.input-group>.custom-file {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0
}

.input-group>.form-control+.form-control,.input-group>.form-control+.custom-select,.input-group>.form-control+.custom-file,.input-group>.form-control-plaintext+.form-control,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.custom-file,.input-group>.custom-select+.form-control,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.custom-file,.input-group>.custom-file+.form-control,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.custom-file {
    margin-left: -1px
}

.input-group>.form-control:focus,.input-group>.custom-select:focus,.input-group>.custom-file .custom-file-input:focus ~ .custom-file-label {
    z-index: 3
}

.input-group>.custom-file .custom-file-input:focus {
    z-index: 4
}

.input-group>.form-control:not(:first-child),.input-group>.custom-select:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.input-group>.custom-file {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:first-child) .custom-file-label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.input-group:not(.has-validation)>.form-control:not(:last-child),.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group.has-validation>.form-control:nth-last-child(n+3),.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group-prepend,.input-group-append {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.input-group-prepend .btn,.input-group-append .btn {
    position: relative;
    z-index: 2
}

.input-group-prepend .btn:focus,.input-group-append .btn:focus {
    z-index: 3
}

.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.input-group-text,.input-group-append .input-group-text+.btn {
    margin-left: -1px
}

.input-group-prepend {
    margin-right: -1px
}

.input-group-append {
    margin-left: -1px
}

.input-group-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

.input-group-text input[type="radio"],.input-group-text input[type="checkbox"] {
    margin-top: 0
}

.input-group-lg>.form-control:not(textarea),.input-group-lg>.custom-select {
    height: calc(1.5em + 1rem + 2px)
}

.input-group-lg>.form-control,.input-group-lg>.custom-select,.input-group-lg>.input-group-prepend>.input-group-text,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-append>.btn {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem
}

.input-group-sm>.form-control:not(textarea),.input-group-sm>.custom-select {
    height: calc(1.5em + .5rem + 2px)
}

.input-group-sm>.form-control,.input-group-sm>.custom-select,.input-group-sm>.input-group-prepend>.input-group-text,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-append>.btn {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

.input-group-lg>.custom-select,.input-group-sm>.custom-select {
    padding-right: 1.75rem
}

.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.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) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.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) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.custom-control {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    -webkit-print-color-adjust: exact;
    color-adjust: exact
}

.custom-control-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1rem
}

.custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #007bff;
    background-color: #007bff
}

.custom-control-input:focus ~ .custom-control-label::before {
    -webkit-box-shadow: 0 0 0 .2rem rgba(0,123,255,0.25);
    box-shadow: 0 0 0 .2rem rgba(0,123,255,0.25)
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #80bdff
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    color: #fff;
    background-color: #b3d7ff;
    border-color: #b3d7ff
}

.custom-control-input[disabled] ~ .custom-control-label,.custom-control-input:disabled ~ .custom-control-label {
    color: #6c757d
}

.custom-control-input[disabled] ~ .custom-control-label::before,.custom-control-input:disabled ~ .custom-control-label::before {
    background-color: #e9ecef
}

.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top
}

.custom-control-label::before {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: #adb5bd solid 1px
}

.custom-control-label::after {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: 50% / 50% 50% no-repeat
}

.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,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-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 {
    border-color: #007bff;
    background-color: #007bff
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' 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(0,123,255,0.5)
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
    background-color: rgba(0,123,255,0.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,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' 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(0,123,255,0.5)
}

.custom-switch {
    padding-left: 2.25rem
}

.custom-switch .custom-control-label::before {
    left: -2.25rem;
    width: 1.75rem;
    pointer-events: all;
    border-radius: .5rem
}

.custom-switch .custom-control-label::after {
    top: calc(.25rem + 2px);
    left: calc(-2.25rem + 2px);
    width: calc(1rem - 4px);
    height: calc(1rem - 4px);
    background-color: #adb5bd;
    border-radius: .5rem;
    -webkit-transition: background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-transform 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-transform 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: transform 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    transition: transform 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-transform 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
    .custom-switch .custom-control-label::after {
        -webkit-transition: none;
        transition: none
    }
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    background-color: #fff;
    -webkit-transform: translateX(.75rem);
    transform: translateX(.75rem)
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(0,123,255,0.5)
}

.custom-select {
    display: inline-block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem 1.75rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.custom-select:focus {
    border-color: #80bdff;
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(0,123,255,0.25);
    box-shadow: 0 0 0 .2rem rgba(0,123,255,0.25)
}

.custom-select:focus::-ms-value {
    color: #495057;
    background-color: #fff
}

.custom-select[multiple],.custom-select[size]:not([size="1"]) {
    height: auto;
    padding-right: .75rem;
    background-image: none
}

.custom-select:disabled {
    color: #6c757d;
    background-color: #e9ecef
}

.custom-select::-ms-expand {
    display: none
}

.custom-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057
}

.custom-select-sm {
    height: calc(1.5em + .5rem + 2px);
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    font-size: .875rem
}

.custom-select-lg {
    height: calc(1.5em + 1rem + 2px);
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 1rem;
    font-size: 1.25rem
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin-bottom: 0
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin: 0;
    overflow: hidden;
    opacity: 0
}

.custom-file-input:focus ~ .custom-file-label {
    border-color: #80bdff;
    -webkit-box-shadow: 0 0 0 .2rem rgba(0,123,255,0.25);
    box-shadow: 0 0 0 .2rem rgba(0,123,255,0.25)
}

.custom-file-input[disabled] ~ .custom-file-label,.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 {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    overflow: hidden;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.5em + .75rem);
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 .25rem .25rem 0
}

.custom-range {
    width: 100%;
    height: 1.4rem;
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.custom-range:focus {
    outline: 0
}

.custom-range:focus::-webkit-slider-thumb {
    -webkit-box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,0.25);
    box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,0.25)
}

.custom-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,0.25)
}

.custom-range:focus::-ms-thumb {
    box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,0.25)
}

.custom-range::-moz-focus-outer {
    border: 0
}

.custom-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -.25rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    -webkit-transition: background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    appearance: none
}

@media (prefers-reduced-motion: reduce) {
    .custom-range::-webkit-slider-thumb {
        -webkit-transition: none;
        transition: none
    }
}

.custom-range::-webkit-slider-thumb:active {
    background-color: #b3d7ff
}

.custom-range::-webkit-slider-runnable-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem
}

.custom-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    -moz-transition: background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    -moz-appearance: none;
    appearance: none
}

@media (prefers-reduced-motion: reduce) {
    .custom-range::-moz-range-thumb {
        -moz-transition: none;
        transition: none
    }
}

.custom-range::-moz-range-thumb:active {
    background-color: #b3d7ff
}

.custom-range::-moz-range-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem
}

.custom-range::-ms-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: 0;
    margin-right: .2rem;
    margin-left: .2rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    -ms-transition: background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    appearance: none
}

@media (prefers-reduced-motion: reduce) {
    .custom-range::-ms-thumb {
        -ms-transition: none;
        transition: none
    }
}

.custom-range::-ms-thumb:active {
    background-color: #b3d7ff
}

.custom-range::-ms-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: transparent;
    border-color: transparent;
    border-width: .5rem
}

.custom-range::-ms-fill-lower {
    background-color: #dee2e6;
    border-radius: 1rem
}

.custom-range::-ms-fill-upper {
    margin-right: 15px;
    background-color: #dee2e6;
    border-radius: 1rem
}

.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 {
    -webkit-transition: background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
    .custom-control-label::before,.custom-file-label,.custom-select {
        -webkit-transition: none;
        transition: none
    }
}

.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav-link {
    display: block;
    padding: .5rem 1rem
}

.nav-link:hover,.nav-link:focus {
    text-decoration: none
}

.nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6
}

.nav-tabs .nav-link {
    margin-bottom: -1px;
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus {
    border-color: #e9ecef #e9ecef #dee2e6
}

.nav-tabs .nav-link.disabled {
    color: #6c757d;
    background-color: transparent;
    border-color: transparent
}

.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.nav-pills .nav-link {
    border-radius: .25rem
}

.nav-pills .nav-link.active,.nav-pills .show>.nav-link {
    color: #fff;
    background-color: #007bff
}

.nav-fill>.nav-link,.nav-fill .nav-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center
}

.nav-justified>.nav-link,.nav-justified .nav-item {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center
}

.tab-content>.tab-pane {
    display: none
}

.tab-content>.active {
    display: block
}

.navbar {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem 1rem
}

.navbar .container,.navbar .container-fluid,.navbar .container-sm,.navbar .container-md,.navbar .container-lg,.navbar .container-xl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.navbar-brand {
    display: inline-block;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap
}

.navbar-brand:hover,.navbar-brand:focus {
    text-decoration: none
}

.navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0
}

.navbar-nav .dropdown-menu {
    position: static;
    float: none
}

.navbar-text {
    display: inline-block;
    padding-top: .5rem;
    padding-bottom: .5rem
}

.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem
}

.navbar-toggler:hover,.navbar-toggler:focus {
    text-decoration: none
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: 50% / 100% 100% no-repeat
}

.navbar-nav-scroll {
    max-height: 75vh;
    overflow-y: auto
}

@media (max-width: 575.98px) {
    .navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl {
        padding-right:0;
        padding-left: 0
    }
}

@media (min-width: 576px) {
    .navbar-expand-sm {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .navbar-expand-sm .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .navbar-expand-sm .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-sm .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .navbar-expand-sm .navbar-toggler {
        display: none
    }
}

@media (max-width: 767.98px) {
    .navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl {
        padding-right:0;
        padding-left: 0
    }
}

@media (min-width: 768px) {
    .navbar-expand-md {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .navbar-expand-md .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .navbar-expand-md .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-md .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .navbar-expand-md .navbar-toggler {
        display: none
    }
}

@media (max-width: 991.98px) {
    .navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl {
        padding-right:0;
        padding-left: 0
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .navbar-expand-lg .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .navbar-expand-lg .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-lg .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .navbar-expand-lg .navbar-toggler {
        display: none
    }
}

@media (max-width: 1199.98px) {
    .navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl {
        padding-right:0;
        padding-left: 0
    }
}

@media (min-width: 1200px) {
    .navbar-expand-xl {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .navbar-expand-xl .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .navbar-expand-xl .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-xl .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .navbar-expand-xl .navbar-toggler {
        display: none
    }
}

.navbar-expand {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl {
    padding-right: 0;
    padding-left: 0
}

.navbar-expand .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.navbar-expand .navbar-nav .dropdown-menu {
    position: absolute
}

.navbar-expand .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem
}

.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.navbar-expand .navbar-nav-scroll {
    overflow: visible
}

.navbar-expand .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto
}

.navbar-expand .navbar-toggler {
    display: none
}

.navbar-light .navbar-brand {
    color: rgba(0,0,0,0.9)
}

.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus {
    color: rgba(0,0,0,0.9)
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0,0,0,0.5)
}

.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus {
    color: rgba(0,0,0,0.7)
}

.navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0,0,0,0.3)
}

.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .nav-link.active {
    color: rgba(0,0,0,0.9)
}

.navbar-light .navbar-toggler {
    color: rgba(0,0,0,0.5);
    border-color: rgba(0,0,0,0.1)
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-light .navbar-text {
    color: rgba(0,0,0,0.5)
}

.navbar-light .navbar-text a {
    color: rgba(0,0,0,0.9)
}

.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus {
    color: rgba(0,0,0,0.9)
}

.navbar-dark .navbar-brand {
    color: #fff
}

.navbar-dark .navbar-brand:hover,.navbar-dark .navbar-brand:focus {
    color: #fff
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,0.5)
}

.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255,255,255,0.75)
}

.navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255,255,255,0.25)
}

.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .nav-link.active {
    color: #fff
}

.navbar-dark .navbar-toggler {
    color: rgba(255,255,255,0.5);
    border-color: rgba(255,255,255,0.1)
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-dark .navbar-text {
    color: rgba(255,255,255,0.5)
}

.navbar-dark .navbar-text a {
    color: #fff
}

.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus {
    color: #fff
}

.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,0.125);
    border-radius: .25rem
}

.card>hr {
    margin-right: 0;
    margin-left: 0
}

.card>.list-group {
    border-top: inherit;
    border-bottom: inherit
}

.card>.list-group:first-child {
    border-top-width: 0;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.card>.list-group:last-child {
    border-bottom-width: 0;
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px)
}

.card>.card-header+.list-group,.card>.list-group+.card-footer {
    border-top: 0
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem
}

.card-title {
    margin-bottom: .75rem
}

.card-subtitle {
    margin-top: -.375rem;
    margin-bottom: 0
}

.card-text:last-child {
    margin-bottom: 0
}

.card-link:hover {
    text-decoration: none
}

.card-link+.card-link {
    margin-left: 1.25rem
}

.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.125)
}

.card-header:first-child {
    border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0
}

.card-footer {
    padding: .75rem 1.25rem;
    background-color: rgba(0,0,0,0.03);
    border-top: 1px solid rgba(0,0,0,0.125)
}

.card-footer:last-child {
    border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px)
}

.card-header-tabs {
    margin-right: -.625rem;
    margin-bottom: -.75rem;
    margin-left: -.625rem;
    border-bottom: 0
}

.card-header-pills {
    margin-right: -.625rem;
    margin-left: -.625rem
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
    border-radius: calc(.25rem - 1px)
}

.card-img,.card-img-top,.card-img-bottom {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%
}

.card-img,.card-img-top {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.card-img,.card-img-bottom {
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px)
}

.card-deck .card {
    margin-bottom: 15px
}

@media (min-width: 576px) {
    .card-deck {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px
    }

    .card-deck .card {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-right: 15px;
        margin-bottom: 0;
        margin-left: 15px
    }
}

.card-group>.card {
    margin-bottom: 15px
}

@media (min-width: 576px) {
    .card-group {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap
    }

    .card-group>.card {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-bottom: 0
    }

    .card-group>.card+.card {
        margin-left: 0;
        border-left: 0
    }

    .card-group>.card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }

    .card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header {
        border-top-right-radius: 0
    }

    .card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer {
        border-bottom-right-radius: 0
    }

    .card-group>.card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0
    }

    .card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header {
        border-top-left-radius: 0
    }

    .card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer {
        border-bottom-left-radius: 0
    }
}

.card-columns .card {
    margin-bottom: .75rem
}

@media (min-width: 576px) {
    .card-columns {
        -webkit-column-count:3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1
    }

    .card-columns .card {
        display: inline-block;
        width: 100%
    }
}

.accordion {
    overflow-anchor: none
}

.accordion>.card {
    overflow: hidden
}

.accordion>.card:not(:last-of-type) {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.accordion>.card:not(:first-of-type) {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.accordion>.card>.card-header {
    border-radius: 0;
    margin-bottom: -1px
}

.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: .25rem
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: .5rem
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: .5rem;
    color: #6c757d;
    content: "/"
}

.breadcrumb-item+.breadcrumb-item:hover::before {
    text-decoration: underline
}

.breadcrumb-item+.breadcrumb-item:hover::before {
    text-decoration: none
}

.breadcrumb-item.active {
    color: #6c757d
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem
}

.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6
}

.selected-page-link {
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6
}

.page-link:hover {
    z-index: 2;
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6
}

.page-link:focus {
    z-index: 3;
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(0,123,255,0.25);
    box-shadow: 0 0 0 .2rem rgba(0,123,255,0.25)
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6
}

.pagination-lg .page-link {
    padding: .75rem 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5
}

.pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: .3rem;
    border-bottom-left-radius: .3rem
}

.pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: .3rem;
    border-bottom-right-radius: .3rem
}

.pagination-sm .page-link {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5
}

.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: .2rem;
    border-bottom-left-radius: .2rem
}

.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: .2rem;
    border-bottom-right-radius: .2rem
}

.badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    -webkit-transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
    .badge {
        -webkit-transition: none;
        transition: none
    }
}

a.badge:hover,a.badge:focus {
    text-decoration: none
}

.badge:empty {
    display: none
}

.btn .badge {
    position: relative;
    top: -1px
}

.badge-pill {
    padding-right: .6em;
    padding-left: .6em;
    border-radius: 10rem
}

.badge-primary {
    color: #fff;
    background-color: #00a499
}

a.badge-primary:hover,a.badge-primary:focus {
    color: #fff;
    background-color: #007169
}

a.badge-primary:focus,a.badge-primary.focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(0,164,153,0.5);
    box-shadow: 0 0 0 .2rem rgba(0,164,153,0.5)
}

.badge-secondary {
    color: #fff;
    background-color: #40476d
}

a.badge-secondary:hover,a.badge-secondary:focus {
    color: #fff;
    background-color: #2d324d
}

a.badge-secondary:focus,a.badge-secondary.focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(64,71,109,0.5);
    box-shadow: 0 0 0 .2rem rgba(64,71,109,0.5)
}

.badge-success {
    color: #fff;
    background-color: #00703F
}

a.badge-success:hover,a.badge-success:focus {
    color: #fff;
    background-color: #003d22
}

a.badge-success:focus,a.badge-success.focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(0,112,63,0.5);
    box-shadow: 0 0 0 .2rem rgba(0,112,63,0.5)
}

.badge-danger {
    color: #fff;
    background-color: #dc3545
}

a.badge-danger:hover,a.badge-danger:focus {
    color: #fff;
    background-color: #bd2130
}

a.badge-danger:focus,a.badge-danger.focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(220,53,69,0.5);
    box-shadow: 0 0 0 .2rem rgba(220,53,69,0.5)
}

.badge-warning {
    color: #212529;
    background-color: #ffc107
}

a.badge-warning:hover,a.badge-warning:focus {
    color: #212529;
    background-color: #d39e00
}

a.badge-warning:focus,a.badge-warning.focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(255,193,7,0.5);
    box-shadow: 0 0 0 .2rem rgba(255,193,7,0.5)
}

.badge-info {
    color: #fff;
    background-color: #8E4876
}

a.badge-info:hover,a.badge-info:focus {
    color: #fff;
    background-color: #6c375a
}

a.badge-info:focus,a.badge-info.focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(142,72,118,0.5);
    box-shadow: 0 0 0 .2rem rgba(142,72,118,0.5)
}

.badge-light {
    color: #212529;
    background-color: #f6f8fd
}

a.badge-light:hover,a.badge-light:focus {
    color: #212529;
    background-color: #ccd8f4
}

a.badge-light:focus,a.badge-light.focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(246,248,253,0.5);
    box-shadow: 0 0 0 .2rem rgba(246,248,253,0.5)
}

.badge-dark {
    color: #fff;
    background-color: #212529
}

a.badge-dark:hover,a.badge-dark:focus {
    color: #fff;
    background-color: #0a0c0d
}

a.badge-dark:focus,a.badge-dark.focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(33,37,41,0.5);
    box-shadow: 0 0 0 .2rem rgba(33,37,41,0.5)
}

.badge-gray {
    color: #212529;
    background-color: #f5f5f5
}

a.badge-gray:hover,a.badge-gray:focus {
    color: #212529;
    background-color: #dcdcdc
}

a.badge-gray:focus,a.badge-gray.focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(245,245,245,0.5);
    box-shadow: 0 0 0 .2rem rgba(245,245,245,0.5)
}

.badge-space-blue {
    color: #fff;
    background-color: #3e4d61
}

a.badge-space-blue:hover,a.badge-space-blue:focus {
    color: #fff;
    background-color: #2a3442
}

a.badge-space-blue:focus,a.badge-space-blue.focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(62,77,97,0.5);
    box-shadow: 0 0 0 .2rem rgba(62,77,97,0.5)
}

.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: .3rem
}

@media (min-width: 576px) {
    .jumbotron {
        padding:4rem 2rem
    }
}

.jumbotron-fluid {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem
}

.alert-heading {
    color: inherit
}

.alert-link {
    font-weight: 700
}

.alert-dismissible {
    padding-right: 4rem
}

.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: .75rem 1.25rem;
    color: inherit
}

.alert-primary {
    color: #005550;
    background-color: #ccedeb;
    border-color: #b8e6e2
}

.alert-primary hr {
    border-top-color: #a5dfda
}

.alert-primary .alert-link {
    color: #002220
}

.alert-secondary {
    color: #212539;
    background-color: #d9dae2;
    border-color: #cacbd6
}

.alert-secondary hr {
    border-top-color: #bcbdcb
}

.alert-secondary .alert-link {
    color: #0e1019
}

.alert-success {
    color: #003a21;
    background-color: #cce2d9;
    border-color: #b8d7c9
}

.alert-success hr {
    border-top-color: #a8cebd
}

.alert-success .alert-link {
    color: #000704
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb
}

.alert-danger hr {
    border-top-color: #f1b0b7
}

.alert-danger .alert-link {
    color: #491217
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba
}

.alert-warning hr {
    border-top-color: #ffe8a1
}

.alert-warning .alert-link {
    color: #533f03
}

.alert-info {
    color: #4a253d;
    background-color: #e8dae4;
    border-color: #dfccd9
}

.alert-info hr {
    border-top-color: #d5bccd
}

.alert-info .alert-link {
    color: #281421
}

.alert-light {
    color: #808184;
    background-color: #fdfeff;
    border-color: #fcfdfe
}

.alert-light hr {
    border-top-color: #e9f0f8
}

.alert-light .alert-link {
    color: #67686a
}

.alert-dark {
    color: #111315;
    background-color: #d3d3d4;
    border-color: #c1c2c3
}

.alert-dark hr {
    border-top-color: #b4b5b6
}

.alert-dark .alert-link {
    color: #000
}

.alert-gray {
    color: #7f7f7f;
    background-color: #fdfdfd;
    border-color: #fcfcfc
}

.alert-gray hr {
    border-top-color: #efefef
}

.alert-gray .alert-link {
    color: #666
}

.alert-space-blue {
    color: #202832;
    background-color: #d8dbdf;
    border-color: #c9cdd3
}

.alert-space-blue hr {
    border-top-color: #bbc0c8
}

.alert-space-blue .alert-link {
    color: #0c0f13
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0
    }

    to {
        background-position: 0 0
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0
    }

    to {
        background-position: 0 0
    }
}

.progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    line-height: 0;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: .25rem
}

.progress-bar {
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #007bff;
    -webkit-transition: width 0.6s ease;
    transition: width 0.6s ease
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar {
        -webkit-transition: none;
        transition: none
    }
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem
}

.progress-bar-animated {
    -webkit-animation: 1s linear infinite progress-bar-stripes;
    animation: 1s linear infinite progress-bar-stripes
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar-animated {
        -webkit-animation: none;
        animation: none
    }
}

.media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.media-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.list-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: .25rem
}

.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit
}

.list-group-item-action:hover,.list-group-item-action:focus {
    z-index: 1;
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa
}

.list-group-item-action:active {
    color: #212529;
    background-color: #e9ecef
}

.list-group-item {
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.125)
}

.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit
}

.list-group-item:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit
}

.list-group-item.disabled,.list-group-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff
}

.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.list-group-item+.list-group-item {
    border-top-width: 0
}

.list-group-item+.list-group-item.active {
    margin-top: -1px;
    border-top-width: 1px
}

.list-group-horizontal {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.list-group-horizontal>.list-group-item:first-child {
    border-bottom-left-radius: .25rem;
    border-top-right-radius: 0
}

.list-group-horizontal>.list-group-item:last-child {
    border-top-right-radius: .25rem;
    border-bottom-left-radius: 0
}

.list-group-horizontal>.list-group-item.active {
    margin-top: 0
}

.list-group-horizontal>.list-group-item+.list-group-item {
    border-top-width: 1px;
    border-left-width: 0
}

.list-group-horizontal>.list-group-item+.list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px
}

@media (min-width: 576px) {
    .list-group-horizontal-sm {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .list-group-horizontal-sm>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-sm>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-sm>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-sm>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-left-width: 0
    }

    .list-group-horizontal-sm>.list-group-item+.list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px
    }
}

@media (min-width: 768px) {
    .list-group-horizontal-md {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .list-group-horizontal-md>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-md>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-md>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-md>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-left-width: 0
    }

    .list-group-horizontal-md>.list-group-item+.list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px
    }
}

@media (min-width: 992px) {
    .list-group-horizontal-lg {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .list-group-horizontal-lg>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-lg>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-lg>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-lg>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-left-width: 0
    }

    .list-group-horizontal-lg>.list-group-item+.list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px
    }
}

@media (min-width: 1200px) {
    .list-group-horizontal-xl {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .list-group-horizontal-xl>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-xl>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-xl>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-xl>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-left-width: 0
    }

    .list-group-horizontal-xl>.list-group-item+.list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px
    }
}

.list-group-flush {
    border-radius: 0
}

.list-group-flush>.list-group-item {
    border-width: 0 0 1px
}

.list-group-flush>.list-group-item:last-child {
    border-bottom-width: 0
}

.list-group-item-primary {
    color: #005550;
    background-color: #b8e6e2
}

.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus {
    color: #005550;
    background-color: #a5dfda
}

.list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: #005550;
    border-color: #005550
}

.list-group-item-secondary {
    color: #212539;
    background-color: #cacbd6
}

.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus {
    color: #212539;
    background-color: #bcbdcb
}

.list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #212539;
    border-color: #212539
}

.list-group-item-success {
    color: #003a21;
    background-color: #b8d7c9
}

.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus {
    color: #003a21;
    background-color: #a8cebd
}

.list-group-item-success.list-group-item-action.active {
    color: #fff;
    background-color: #003a21;
    border-color: #003a21
}

.list-group-item-danger {
    color: #721c24;
    background-color: #f5c6cb
}

.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus {
    color: #721c24;
    background-color: #f1b0b7
}

.list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #721c24;
    border-color: #721c24
}

.list-group-item-warning {
    color: #856404;
    background-color: #ffeeba
}

.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus {
    color: #856404;
    background-color: #ffe8a1
}

.list-group-item-warning.list-group-item-action.active {
    color: #fff;
    background-color: #856404;
    border-color: #856404
}

.list-group-item-info {
    color: #4a253d;
    background-color: #dfccd9
}

.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus {
    color: #4a253d;
    background-color: #d5bccd
}

.list-group-item-info.list-group-item-action.active {
    color: #fff;
    background-color: #4a253d;
    border-color: #4a253d
}

.list-group-item-light {
    color: #808184;
    background-color: #fcfdfe
}

.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus {
    color: #808184;
    background-color: #e9f0f8
}

.list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #808184;
    border-color: #808184
}

.list-group-item-dark {
    color: #111315;
    background-color: #c1c2c3
}

.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus {
    color: #111315;
    background-color: #b4b5b6
}

.list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: #111315;
    border-color: #111315
}

.list-group-item-gray {
    color: #7f7f7f;
    background-color: #fcfcfc
}

.list-group-item-gray.list-group-item-action:hover,.list-group-item-gray.list-group-item-action:focus {
    color: #7f7f7f;
    background-color: #efefef
}

.list-group-item-gray.list-group-item-action.active {
    color: #fff;
    background-color: #7f7f7f;
    border-color: #7f7f7f
}

.list-group-item-space-blue {
    color: #202832;
    background-color: #c9cdd3
}

.list-group-item-space-blue.list-group-item-action:hover,.list-group-item-space-blue.list-group-item-action:focus {
    color: #202832;
    background-color: #bbc0c8
}

.list-group-item-space-blue.list-group-item-action.active {
    color: #fff;
    background-color: #202832;
    border-color: #202832
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5
}

.close:hover {
    color: #000;
    text-decoration: none
}

.close:not(:disabled):not(.disabled):hover,.close:not(:disabled):not(.disabled):focus {
    opacity: .75
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0
}

a.close.disabled {
    pointer-events: none
}

.modal-open {
    overflow: hidden
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none
}

.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px)
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        -webkit-transition: none;
        transition: none
    }
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none
}

.modal.modal-static .modal-dialog {
    -webkit-transform: scale(1.02);
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: calc(100% - 1rem)
}

.modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden
}

.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto
}

.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem)
}

.modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    content: ""
}

.modal-dialog-centered.modal-dialog-scrollable {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
    max-height: none
}

.modal-dialog-centered.modal-dialog-scrollable::before {
    content: none
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: .3rem;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop.show {
    opacity: .5
}

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px)
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem
}

.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: .75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px)
}

.modal-footer>* {
    margin: .25rem
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width:500px;
        margin: 1.75rem auto
    }

    .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);
        height: -webkit-min-content;
        height: -moz-min-content;
        height: min-content
    }

    .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 {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    opacity: 0
}

.tooltip.show {
    opacity: .9
}

.tooltip .arrow {
    position: absolute;
    display: block;
    width: .8rem;
    height: .4rem
}

.tooltip .arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid
}

.bs-tooltip-top,.bs-tooltip-auto[x-placement^="top"] {
    padding: .4rem 0
}

.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^="top"] .arrow {
    bottom: 0
}

.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^="top"] .arrow::before {
    top: 0;
    border-width: .4rem .4rem 0;
    border-top-color: #000
}

.bs-tooltip-right,.bs-tooltip-auto[x-placement^="right"] {
    padding: 0 .4rem
}

.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^="right"] .arrow {
    left: 0;
    width: .4rem;
    height: .8rem
}

.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^="right"] .arrow::before {
    right: 0;
    border-width: .4rem .4rem .4rem 0;
    border-right-color: #000
}

.bs-tooltip-bottom,.bs-tooltip-auto[x-placement^="bottom"] {
    padding: .4rem 0
}

.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^="bottom"] .arrow {
    top: 0
}

.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    bottom: 0;
    border-width: 0 .4rem .4rem;
    border-bottom-color: #000
}

.bs-tooltip-left,.bs-tooltip-auto[x-placement^="left"] {
    padding: 0 .4rem
}

.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^="left"] .arrow {
    right: 0;
    width: .4rem;
    height: .8rem
}

.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^="left"] .arrow::before {
    left: 0;
    border-width: .4rem 0 .4rem .4rem;
    border-left-color: #000
}

.tooltip-inner {
    max-width: 200px;
    padding: .25rem .5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: .25rem
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: block;
    max-width: 276px;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: .3rem
}

.popover .arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: .5rem;
    margin: 0 .3rem
}

.popover .arrow::before,.popover .arrow::after {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid
}

.bs-popover-top,.bs-popover-auto[x-placement^="top"] {
    margin-bottom: .5rem
}

.bs-popover-top>.arrow,.bs-popover-auto[x-placement^="top"]>.arrow {
    bottom: calc(-.5rem - 1px)
}

.bs-popover-top>.arrow::before,.bs-popover-auto[x-placement^="top"]>.arrow::before {
    bottom: 0;
    border-width: .5rem .5rem 0;
    border-top-color: rgba(0,0,0,0.25)
}

.bs-popover-top>.arrow::after,.bs-popover-auto[x-placement^="top"]>.arrow::after {
    bottom: 1px;
    border-width: .5rem .5rem 0;
    border-top-color: #fff
}

.bs-popover-right,.bs-popover-auto[x-placement^="right"] {
    margin-left: .5rem
}

.bs-popover-right>.arrow,.bs-popover-auto[x-placement^="right"]>.arrow {
    left: calc(-.5rem - 1px);
    width: .5rem;
    height: 1rem;
    margin: .3rem 0
}

.bs-popover-right>.arrow::before,.bs-popover-auto[x-placement^="right"]>.arrow::before {
    left: 0;
    border-width: .5rem .5rem .5rem 0;
    border-right-color: rgba(0,0,0,0.25)
}

.bs-popover-right>.arrow::after,.bs-popover-auto[x-placement^="right"]>.arrow::after {
    left: 1px;
    border-width: .5rem .5rem .5rem 0;
    border-right-color: #fff
}

.bs-popover-bottom,.bs-popover-auto[x-placement^="bottom"] {
    margin-top: .5rem
}

.bs-popover-bottom>.arrow,.bs-popover-auto[x-placement^="bottom"]>.arrow {
    top: calc(-.5rem - 1px)
}

.bs-popover-bottom>.arrow::before,.bs-popover-auto[x-placement^="bottom"]>.arrow::before {
    top: 0;
    border-width: 0 .5rem .5rem .5rem;
    border-bottom-color: rgba(0,0,0,0.25)
}

.bs-popover-bottom>.arrow::after,.bs-popover-auto[x-placement^="bottom"]>.arrow::after {
    top: 1px;
    border-width: 0 .5rem .5rem .5rem;
    border-bottom-color: #fff
}

.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 1rem;
    margin-left: -.5rem;
    content: "";
    border-bottom: 1px solid #f7f7f7
}

.bs-popover-left,.bs-popover-auto[x-placement^="left"] {
    margin-right: .5rem
}

.bs-popover-left>.arrow,.bs-popover-auto[x-placement^="left"]>.arrow {
    right: calc(-.5rem - 1px);
    width: .5rem;
    height: 1rem;
    margin: .3rem 0
}

.bs-popover-left>.arrow::before,.bs-popover-auto[x-placement^="left"]>.arrow::before {
    right: 0;
    border-width: .5rem 0 .5rem .5rem;
    border-left-color: rgba(0,0,0,0.25)
}

.bs-popover-left>.arrow::after,.bs-popover-auto[x-placement^="left"]>.arrow::after {
    right: 1px;
    border-width: .5rem 0 .5rem .5rem;
    border-left-color: #fff
}

.popover-header {
    padding: .5rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px)
}

.popover-header:empty {
    display: none
}

.popover-body {
    padding: .5rem .75rem;
    color: #212529
}

.carousel {
    position: relative
}

.carousel.pointer-event {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden
}

.carousel-inner::after {
    display: block;
    clear: both;
    content: ""
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform .6s ease-in-out;
    transition: -webkit-transform .6s ease-in-out;
    transition: transform .6s ease-in-out;
    transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
    .carousel-item {
        -webkit-transition: none;
        transition: none
    }
}

.carousel-item.active,.carousel-item-next,.carousel-item-prev {
    display: block
}

.carousel-item-next:not(.carousel-item-left),.active.carousel-item-right {
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
}

.carousel-item-prev:not(.carousel-item-right),.active.carousel-item-left {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
}

.carousel-fade .carousel-item {
    opacity: 0;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transform: none;
    transform: none
}

.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right {
    z-index: 1;
    opacity: 1
}

.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right {
    z-index: 0;
    opacity: 0;
    -webkit-transition: opacity 0s .6s;
    transition: opacity 0s .6s
}

@media (prefers-reduced-motion: reduce) {
    .carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right {
        -webkit-transition: none;
        transition: none
    }
}

.carousel-control-prev,.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 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;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: .5;
    -webkit-transition: opacity 0.15s ease;
    transition: opacity 0.15s ease
}

@media (prefers-reduced-motion: reduce) {
    .carousel-control-prev,.carousel-control-next {
        -webkit-transition: none;
        transition: none
    }
}

.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9
}

.carousel-control-prev {
    left: 0
}

.carousel-control-next {
    right: 0
}

.carousel-control-prev-icon,.carousel-control-next-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: 50% / 100% 100% no-repeat
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-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,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none
}

.carousel-indicators li {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    -webkit-transition: opacity 0.6s ease;
    transition: opacity 0.6s ease
}

@media (prefers-reduced-motion: reduce) {
    .carousel-indicators li {
        -webkit-transition: none;
        transition: none
    }
}

.carousel-indicators .active {
    opacity: 1
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center
}

.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: #00a499 !important
}

a.bg-primary:hover,a.bg-primary:focus,button.bg-primary:hover,button.bg-primary:focus {
    background-color: #007169 !important
}

.bg-secondary {
    background-color: #40476d !important
}

a.bg-secondary:hover,a.bg-secondary:focus,button.bg-secondary:hover,button.bg-secondary:focus {
    background-color: #2d324d !important
}

.bg-success {
    background-color: #00703F !important
}

a.bg-success:hover,a.bg-success:focus,button.bg-success:hover,button.bg-success:focus {
    background-color: #003d22 !important
}

.bg-danger {
    background-color: #dc3545 !important
}

a.bg-danger:hover,a.bg-danger:focus,button.bg-danger:hover,button.bg-danger:focus {
    background-color: #bd2130 !important
}

.bg-warning {
    background-color: #ffc107 !important
}

a.bg-warning:hover,a.bg-warning:focus,button.bg-warning:hover,button.bg-warning:focus {
    background-color: #d39e00 !important
}

.bg-info {
    background-color: #8E4876 !important
}

a.bg-info:hover,a.bg-info:focus,button.bg-info:hover,button.bg-info:focus {
    background-color: #6c375a !important
}

.bg-light {
    background-color: #f6f8fd !important
}

a.bg-light:hover,a.bg-light:focus,button.bg-light:hover,button.bg-light:focus {
    background-color: #ccd8f4 !important
}

.bg-dark {
    background-color: #212529 !important
}

a.bg-dark:hover,a.bg-dark:focus,button.bg-dark:hover,button.bg-dark:focus {
    background-color: #0a0c0d !important
}

.bg-gray {
    background-color: #f5f5f5 !important
}

a.bg-gray:hover,a.bg-gray:focus,button.bg-gray:hover,button.bg-gray:focus {
    background-color: #dcdcdc !important
}

.bg-space-blue {
    background-color: #3e4d61 !important
}

a.bg-space-blue:hover,a.bg-space-blue:focus,button.bg-space-blue:hover,button.bg-space-blue:focus {
    background-color: #2a3442 !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: #00a499 !important
}

.border-secondary {
    border-color: #40476d !important
}

.border-success {
    border-color: #00703F !important
}

.border-danger {
    border-color: #dc3545 !important
}

.border-warning {
    border-color: #ffc107 !important
}

.border-info {
    border-color: #8E4876 !important
}

.border-light {
    border-color: #f6f8fd !important
}

.border-dark {
    border-color: #212529 !important
}

.border-gray {
    border-color: #f5f5f5 !important
}

.border-space-blue {
    border-color: #3e4d61 !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;
    border-top-right-radius: .25rem !important
}

.rounded-right {
    border-top-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important
}

.rounded-bottom {
    border-bottom-right-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important
}

.rounded-left {
    border-top-left-radius: .25rem !important;
    border-bottom-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 {
    display: block;
    clear: both;
    content: ""
}

.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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important
}

.d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    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: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-sm-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        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: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-md-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        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: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-lg-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        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: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-xl-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        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: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-print-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden
}

.embed-responsive::before {
    display: block;
    content: ""
}

.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.embed-responsive-21by9::before {
    padding-top: 42.85714%
}

.embed-responsive-16by9::before {
    padding-top: 56.25%
}

.embed-responsive-4by3::before {
    padding-top: 75%
}

.embed-responsive-1by1::before {
    padding-top: 100%
}

.flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important
}

.flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important
}

.flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important
}

.flex-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important
}

.flex-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important
}

.flex-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important
}

.flex-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important
}

.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important
}

.flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important
}

.justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important
}

.justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important
}

.align-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important
}

.align-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important
}

.align-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important
}

.align-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important
}

@media (min-width: 576px) {
    .flex-sm-row {
        -webkit-box-orient:horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-sm-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-sm-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-sm-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-sm-fill {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-sm-grow-0 {
        -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-sm-grow-1 {
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-sm-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-sm-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-sm-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-sm-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-sm-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-sm-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-sm-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-sm-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-sm-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-sm-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-sm-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width: 768px) {
    .flex-md-row {
        -webkit-box-orient:horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-md-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-md-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-md-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-md-fill {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-md-grow-0 {
        -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-md-grow-1 {
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-md-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-md-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-md-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-md-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-md-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-md-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-md-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-md-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-md-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-md-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-md-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width: 992px) {
    .flex-lg-row {
        -webkit-box-orient:horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-lg-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-lg-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-lg-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-lg-fill {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-lg-grow-0 {
        -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-lg-grow-1 {
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-lg-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-lg-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-lg-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-lg-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-lg-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-lg-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-lg-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-lg-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-lg-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-lg-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-lg-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width: 1200px) {
    .flex-xl-row {
        -webkit-box-orient:horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-xl-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-xl-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-xl-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-xl-fill {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-xl-grow-0 {
        -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-xl-grow-1 {
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-xl-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-xl-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-xl-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-xl-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-xl-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-xl-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-xl-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-xl-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-xl-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-xl-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-xl-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        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
    }
}

.user-select-all {
    -webkit-user-select: all !important;
    -moz-user-select: all !important;
    -ms-user-select: all !important;
    user-select: all !important
}

.user-select-auto {
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
    user-select: auto !important
}

.user-select-none {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: 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 {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030
}

@supports (position: sticky) {
    .sticky-top {
        position:sticky;
        top: 0;
        z-index: 1020
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.sr-only-focusable:active,.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal
}

.shadow-sm {
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075) !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075) !important
}

.shadow {
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important
}

.shadow-lg {
    -webkit-box-shadow: 0 1rem 3rem rgba(0,0,0,0.175) !important;
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.175) !important
}

.shadow-none {
    -webkit-box-shadow: none !important;
    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
}

.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-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
}

.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-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: 5rem !important
}

.pl-5,.px-5 {
    padding-left: 3rem !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-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-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-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
    }

    .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-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
    }

    .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-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-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-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
    }

    .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-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
    }

    .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-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-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-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
    }

    .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-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
    }

    .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-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-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-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
    }

    .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-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
    }

    .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-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-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
    }
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0,0,0,0)
}

.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: #00a499 !important
}

a.text-primary:hover,a.text-primary:focus {
    color: #005852 !important
}

.text-secondary {
    color: #40476d !important
}

a.text-secondary:hover,a.text-secondary:focus {
    color: #24283d !important
}

.text-success {
    color: #00703F !important
}

a.text-success:hover,a.text-success:focus {
    color: #002414 !important
}

.text-danger {
    color: #dc3545 !important
}

a.text-danger:hover,a.text-danger:focus {
    color: #a71d2a !important
}

.text-warning {
    color: #ffc107 !important
}

a.text-warning:hover,a.text-warning:focus {
    color: #ba8b00 !important
}

.text-info {
    color: #8E4876 !important
}

a.text-info:hover,a.text-info:focus {
    color: #5b2e4c !important
}

.text-light {
    color: #f6f8fd !important
}

a.text-light:hover,a.text-light:focus {
    color: #b7c7ef !important
}

.text-dark {
    color: #212529 !important
}

a.text-dark:hover,a.text-dark:focus {
    color: #000 !important
}

.text-gray {
    color: #f5f5f5 !important
}

a.text-gray:hover,a.text-gray:focus {
    color: #cfcfcf !important
}

.text-space-blue {
    color: #3e4d61 !important
}

a.text-space-blue:hover,a.text-space-blue:focus {
    color: #202832 !important
}

.text-body {
    color: #212529 !important
}

.text-muted {
    color: #6c757d !important
}

.text-black-50 {
    color: rgba(0,0,0,0.5) !important
}

.text-white-50 {
    color: rgba(255,255,255,0.5) !important
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

.text-decoration-none {
    text-decoration: none !important
}

.text-break {
    word-break: break-word !important;
    word-wrap: break-word !important
}

.text-reset {
    color: inherit !important
}

.visible {
    visibility: visible !important
}

.invisible {
    visibility: hidden !important
}

.support-input-container {
    padding: 15px;
}

.support-input-input{
    border: 1px solid #ced4da;
    border-radius: 0.3rem;
    padding: 0.375rem 0.75rem;
}

.support-input-input:focus {
    outline: none;
}

@media print {
    *,*::before,*::after {
        text-shadow: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important
    }

    a:not(.btn) {
        text-decoration: underline
    }

    abbr[title]::after {
        content: " (" attr(title) ")"
    }

    pre {
        white-space: pre-wrap !important
    }

    pre,blockquote {
        border: 1px solid #adb5bd;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    tr,img {
        page-break-inside: avoid
    }

    p,h2,h3 {
        orphans: 3;
        widows: 3
    }

    h2,h3 {
        page-break-after: avoid
    }

    @page {
        size: a3
    }

    body {
        min-width: 992px !important
    }

    .container {
        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 th,.table-bordered td {
        border: 1px solid #dee2e6 !important
    }

    .table-dark {
        color: inherit
    }

    .table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody {
        border-color: #dee2e6
    }

    .table .thead-dark th {
        color: inherit;
        border-color: #dee2e6
    }
}

/*# sourceMappingURL=app.css.map*/


.activeServicesFilter{
    background-color: #00a499;
    border-radius: 5px;
    color: white;
}

.ais-Hits-list{
    margin: 0;
    padding: 0;
    list-style: none;
}

.ais-ClearRefinements-button {
    padding: 0;
    overflow: visible;
    font: inherit;
    line-height: normal;
    color: inherit;
    background: none;
    border: 0;
    user-select: none;
}

/* Lite YouTube Embed */
.slide-container .video-container .video {
    cursor: pointer;
}

    .slide-container .video-container .video .play {
        height: 48px;
        width: 68px;
        left: 50%;
        top: 50%;
        margin-left: -34px;
        margin-top: -24px;
        position: absolute;
        background: url('/images/youtube_play_button.png') no-repeat;
        cursor: pointer;
        transition: ease-in-out 0.3s;
    }

        .slide-container .video-container .video .play:hover {
            transform: scale(1.05);
        }

    .slide-container .video-container .video img:hover ~ .play {
        transform: scale(1.05);
    }

    .slide-container .video-container .video .play:hover ~ .thumbnail {
        -webkit-filter: brightness(75%);
    }

    .slide-container .video-container .video img:hover {
        -webkit-filter: brightness(75%);
    }

    .slide-container .video-container .video img {
        width: 284px;
        height: 160px;
        object-fit: cover;
        transition: ease-in-out 0.3s;
    }
    
/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | https://dbushell.com/
 */

.pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*
clear child float (pika-lendar), using the famous micro clearfix hack
http://nicolasgallagher.com/micro-clearfix-hack/
*/
.pika-single:before,
.pika-single:after {
    content: " ";
    display: table;
}
.pika-single:after { clear: both }
.pika-single { *zoom: 1 }

.pika-single.is-hidden {
    display: none;
}

.pika-single.is-bound {
    position: absolute;
    box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
}

.pika-lendar {
    float: left;
    width: 240px;
    margin: 8px;
}

.pika-title {
    position: relative;
    text-align: center;
}

.pika-label {
    display: inline-block;
    *display: inline;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    background-color: #fff;
}
.pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    opacity: 0;
}

.pika-prev,
.pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    /* hide text using text-indent trick, using width value (it's enough) */
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: .5;
    *position: absolute;
    *top: 0;
}

.pika-prev:hover,
.pika-next:hover {
    opacity: 1;
}

.pika-prev,
.is-rtl .pika-next {
    float: left;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==');
    *left: 0;
}

.pika-next,
.is-rtl .pika-prev {
    float: right;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=');
    *right: 0;
}

.pika-prev.is-disabled,
.pika-next.is-disabled {
    cursor: default;
    opacity: .2;
}

.pika-select {
    display: inline-block;
    *display: inline;
}

.pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
}

.pika-table th,
.pika-table td {
    width: 14.285714285714286%;
    padding: 0;
}

.pika-table th {
    color: #999;
    font-size: 12px;
    line-height: 25px;
    font-weight: bold;
    text-align: center;
}

.pika-button {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #666;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    background: #f5f5f5;
}

.pika-week {
    font-size: 11px;
    color: #999;
}

.is-today .pika-button {
    color: #33aaff;
    font-weight: bold;
}

.is-selected .pika-button,
.has-event .pika-button {
    color: #fff;
    font-weight: bold;
    background: #33aaff;
    box-shadow: inset 0 1px 3px #178fe5;
    border-radius: 3px;
}

.has-event .pika-button {
    background: #005da9;
    box-shadow: inset 0 1px 3px #0076c9;
}

.is-disabled .pika-button,
.is-inrange .pika-button {
    background: #D5E9F7;
}

.is-startrange .pika-button {
    color: #fff;
    background: #6CB31D;
    box-shadow: none;
    border-radius: 3px;
}

.is-endrange .pika-button {
    color: #fff;
    background: #33aaff;
    box-shadow: none;
    border-radius: 3px;
}

.is-disabled .pika-button {
    pointer-events: none;
    cursor: default;
    color: #999;
    opacity: .3;
}

.is-outside-current-month .pika-button {
    color: #999;
    opacity: .3;
}

.is-selection-disabled {
    pointer-events: none;
    cursor: default;
}

.pika-button:hover,
.pika-row.pick-whole-week:hover .pika-button {
    color: #fff;
    background: #ff8000;
    box-shadow: none;
    border-radius: 3px;
}

/* styling for abbr */
.pika-table abbr {
    border-bottom: none;
    cursor: help;
}

.block-team .member .name p{
    font-family: 'PT Serif', serif !important;
    font-weight: 700 !important;
    color: #3e4d61;
}

.locations-slider .location-slide .location-card .location-physicians a:not(.text-dark) {
    font-weight: 500;
    color: #3e4d61;
}

.locations-slider .location-slide .location-card .location-physicians a:not(.text-dark):hover {
    color: #4C5E75;
}

.form-page .container a,
.event-page .content a,
.news-story-page .content a,
.service-page .services .tabbed-service-slider .service-slide a:not(.btn),
.block-content_content a:not(.block-content_button),
.general-page .block-content a:not(.block-content_button),
.general-page #heading .content a:not(.btn),
.services .container .tabbed-service-slider .service-slide a:not(.btn),
.block-accordion_with_paragraph a {
    color: #3e4d61;
    font-weight: 500;
    text-decoration: underline;
}

.block-accordion li{
    margin: 1em 0;
}


.clinics-directory .anchor-list a,
.clinics-directory .loc-number {
    color: #3e4d61;
    font-weight: 500;
    text-decoration: none;
}

.block-accordion a,
.physician-directory a,
.form-page .container a:hover,
.event-page .content a:hover,
.news-story-page .content a:hover,
.service-page .services .tabbed-service-slider .service-slide a:not(.btn):hover,
.block-content_content a:not(.block-content_button):hover,
.general-page .block-content a:not(.block-content_button):hover,
.general-page #heading .content a:not(.btn):hover,
.services .container .tabbed-service-slider .service-slide a:not(.btn):hover,
.block-accordion_with_paragraph a:hover,
.physician-directory a:hover,
.clinics-directory .loc-number:hover,
.block-accordion a:hover {
    color: #4C5E75;
}

.locations-page .locations-header {
    font-size: 1.5rem;
}

.resource_tiles-block .tile-name,
.block-support_form h2 {
    font-size: 1.25rem;
}

.ais-Menu-label {
    font-weight: 600;
}

.locations-page .location-container .name h2 {
    font-size: 0.9rem;
}

.event-page .title h1 {
    font-size: 2rem;
}

.physicians-page .refinements .form-group label {
    font-weight: 600;
    font-size: 0.9rem;
}

.g-recaptcha {
    margin: 2em 0;
}

.physician-directory .specialty-name,
.clinics-directory .specialty-name {
    color: #3e4d61 !important;
}

#accordion-container{
    background-color: rgb(255, 255, 255);
}

.anchor-container{

}

.anchor-container .anchor-list {
    list-style: none; 
    text-align: center;
    margin: 0.5em 0;
    padding: 0.5em 0;
}

.anchor-container .anchor-list li {
    display: inline-block; 
    margin-top: 0.5em;
}

.anchor-container .anchor-list li a {
    border-radius: 5px; 
    text-decoration: none; 
    color: white; 
    background-color:#00a499; 
    padding: 0.2em 0.5em; 
    font-size: 1.4em; 
    margin: 3px;
    font-weight: 500;
}

.anchor-container .anchor-list .disabled{
    background-color: rgba(0, 164, 153, 0.5);
    cursor: default;
}

.grouping-container {
    margin: 2em 0;
}

.grouping-container .anchor_label {
    border-radius: 5px;
    color: white; 
    background-color:#00a499; 
    padding: 0.05em 0.5em;
    font-weight: 500;
    margin: 0.5em 0 2em 0;
}

.grouping-container .question {
    cursor:pointer;
}

.grouping-container .card-body .grouped-physicians {
    padding: 0.5em; 
    margin: 0.5em;
}

.accordion-container .card-body {
    padding: 0.6em;
}

.accordion-container .card-body ul{
    padding: 0.2em;
    margin: 0.2em;
}

.accordion-container-lg {
    width: 100% !important;
}

.draft {
    background: #f6f4f4;
    padding: 1em;
    border-radius: 0px 0px 5px 5px;
    opacity: 0.8;
}

.draft_alert {
    background: rgba(27, 38, 79, 1);
    color: white;
    padding: 0.8em;
    border-radius: 5px 5px 0px 0px;
    position: relative;
}

.subnavigation .nav .nav-item.dropdown .nav-link {
    font-size: 16px;
}

/*# sourceMappingURL=app.css.map*/

        