﻿/* BUTTONS */
.button {
    border-radius: 4px;
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    text-align: center;
    transition: all 100ms linear;
    font-size: 14px;
    background: rgb(248, 249, 250);
}

    .button:hover {
        background: #ddd;
    }

    .button i.fa {
        margin-right: 6px;
    }

.button--dark.topMenu-button-active {
    color: #333;
}

.button--dark {
    color: #fff;
    background-color: #3d3d3d;
}

.button--light-blue {
    background-color: #d8e8f9;
}

.button--dark:hover, .button--dark:focus {
    background: #EEE;
    color: #333;
    text-decoration: none;
}

.button--white {
    background: #fff;
    color: #005f86;
}

.button--blue {
    background: #0A5C93;
    color: #fff;
}

.button--gray {
    background: #6f777f;
    color: #fff !important;
}

    .button--gray:hover {
        background: #eee;
        color: #868e96 !important;
    }

.button--full-width {
    display: block;
}

.button--centered {
    display: flex;
    margin: auto;
    justify-content: center;
}

.button--wide {
    width: 100%;
    max-width: 440px;
}

.button__icon {
    height: 30px;
    width: 30px;
    display: flex;
}

.button__icon--monochrome {
    background: #868e96;
}

    .button__icon--monochrome i.fa {
        color: #333;
    }

.button__icon i.fa {
    margin: auto;
}

.button__icon:hover {
    text-decoration: none;
}

.button__download-button {
    width: fit-content;
    margin-left: auto;
    display: flex;
}

.button__toggle {
    text-align: left;
    padding-left: 0;
    padding-right: 0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    font-family: Lato;
    color: #495057;
}

    .button__toggle:hover, .button__toggle:focus {
        text-decoration: none;
        color: #495057;
    }

.button-group {
    display: flex;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    flex-flow: row wrap;
}

    .button-group .button {
        margin-right: 15px;
    }

        .button-group .button:last-of-type {
            margin-right: auto;
        }

.button-group--condensed {
    display: flex;
    margin: 20px auto;
}

    .button-group--condensed .button {
        margin: 0;
        border-radius: 0;
        border-left: 1px solid #979797;
        border-right: 1px solid #979797;
    }

        .button-group--condensed .button:first-of-type {
            border-left: none;
        }

        .button-group--condensed .button:last-of-type {
            border-right: none;
        }

.app__button {
    margin-right: 1rem;
}

.report-button {
    background: #ccc;
    height: auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    color: #444444;
    padding: 5px;
}

    .report-button .fa {
        margin: auto !important;
        font-size: 20px;
        color: #444444;
    }

.button__reset-button {
    color: #0A5C93;
    font-size: 13px;
    font-family: Raleway;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 18px;
    margin-top: 5px;
}

.icon-button {
    background: none;
    vertical-align: top;
    padding: 0;
}

.additional-info__toggle {
    z-index: 2;
}

.link {
    text-decoration: none;
    font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
    transition: all 100ms linear;
    font-size: 14px;
    font-weight: 500;
    color: #0A5C93;
}

.link--light {
    color: #fff;
}

    .link--light:hover {
        color: #7BBFFF;
    }

.link--light-blue {
    color: rgb(121, 237, 255)
}

.link--full-width {
    display: block;
}

.link-list .link a {
    font-family: Raleway;
    font-weight: 400;
    font-size: 15px;
}

.link-list--horizontal {
    display: flex;
    flex: 1;
    flex-flow: row wrap;
    flex-basis: 50%;
}

.link__content {
    color: #0A5C93;
    font-family: Raleway;
    font-size: 17px;
    font-weight: 500;
}


/* CARDS */
.card {
}

.card--clean {
    border: none;
    padding: 0;
}

.card--narrow {
    padding: 0;
}

    .card--narrow .card-body {
        padding: 1em;
    }

.card--borderless {
    border: none;
}

.card__body--even-spacing {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: stretch;
    height: initial;
}

.card__body--link {
    color: initial;
    transition: all 200ms linear;
}

    .card__body--link:hover {
        color: initial;
        background: #d8e8f9;
        text-decoration: none;
    }

.card__text {
    flex: 1;
}

.card--full-height {
    height: 100%;
}

.card .row {
    align-items: stretch;
    flex: 1;
}

.card__icon {
    background: #333;
    color: #DDD;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

    .card__icon .fa {
        font-size: 28px;
        width: 28px;
        color: #DDD;
    }

.card__heading {
    color: rgb(24, 64, 87);
    font-family: "Raleway", "Lato", "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 1em;
}

.card__heading--narrow {
    margin: 0;
}

.card__content {
    align-items: stretch;
    align-content: space-around;
    justify-content: space-around;
}

.card__body {
    margin-bottom: 1em;
}

.card__body, .card__body p span {
    font-family: "Raleway", "Lato", "Open Sans", sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}

.card-img-top {
    height: 40%;
}

.card-image-top {
    height: initial;
    max-height: 250px;
}

.card__image {
    height: 100%;
    border-radius: 0;
}

.card__title {
    font-family: Raleway;
}

.card__title--large {
    font-size: larger;
}

.card__title--heading {
    font-size: 1.25rem;
    display: block;
    color: #1f71a8;
    font-weight: 500;
}

.card__sub-title {
    font-size: medium;
    font-weight: 500;
    margin-top: 0.5em;
    margin-bottom: 1em;
    color: #5A6672;
    font-family: Raleway;
    display: block;
}

.icon--stacked {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column wrap;
    font-size: 13px;
}

.icon--dark {
    color: rgb(102, 102, 102);
}

.icon-card {
    border: none;
}

.icon-card__container--narrow {
}

    .icon-card__container--narrow .section {
        margin-bottom: auto;
    }

.topic-card__title {
    font-size: 44px;
    font-family: Lato;
    font-weight: 300;
}

/*====== HORIZONTAL CARD ======*/
.horizontal__card {
    margin-bottom: 0.5em;
    margin-top: 0.5em;
}

.horizontal__card-body {
    display: flex;
    align-items: center;
}

    .horizontal__card-body span {
        font-family: Raleway;
        font-weight: 500;
        font-size: 15px;
        color: #1f71a8;
    }

/*======== SLIDER ========*/
.slider__container {
    position: relative;
    background: rgb(2, 119, 167);
    background: linear-gradient(180deg, rgba(2, 119, 167, 1) 0%, rgba(40, 128, 125, 1) 100%);
}

    .slider__container .row {
        flex: 1;
        min-height: 450px;
    }

.slider .home-banner-header, .slider .slider__title {
    color: #a3f3ff;
    font-family: "Raleway", "Lato", "Open Sans", sans-serif;
    font-size: 40px;
    font-weight: 300;
}

.slider__hero-image {
    width: inherit;
}

.slider__body p {
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-family: Lato;
    font-weight: 500;
}

.slider__container .slick-dots li {
    width: 30px;
}

    .slider__container .slick-dots li button:before {
        content: '';
        height: 0;
        width: 30px;
        border: 3px solid #FFF;
    }

.slider__container .slick-dots {
    bottom: 1em;
}

.slick-initialized .slick-slide {
    display: flex;
}

.data-snapshots .slick-slide, .data-snapshots-alt .slick-slide {
    display: block;
}

/*======= CALL TO ACTION =======*/
.cta {
    background: #2d2d2d;
    color: #fff;
    font-size: 22px;
    font-family: "Raleway", "Lato", "Open Sans", sans-serif;
    font-weight: 300;
    border-radius: 4px;
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
}

.cta--link {
    transition: all 200ms ease-in;
}

    .cta--link:hover {
        text-decoration: none;
        color: #fff;
        background: #666;
    }

.cta__image {
    align-self: flex-end;
    margin-left: 2em;
    position: absolute;
}

.cta__body {
    font-family: "Lato", "Open Sans", sans-serif;
    text-align: center;
    margin: auto;
    align-content: center;
    padding: 1em 0;
}

.cta__action {
    padding-right: 1em;
    position: absolute;
    right: 1em;
}

/*======= Banner =======*/
.banner__container {
    background-color: #dedede;
    background: linear-gradient(180deg, #2b2b2b 0%, #3c3c3c 100%);
    padding: 1em;
    position: relative;
}

    .banner__container::before {
        content: '';
        position: absolute;
        height: 100%;
        width: 100%;
        background-image: url("/media/1052/tile-overlay.svg");
        top: 0;
        left: 0;
        opacity: 0.5;
    }

.banner__heading {
    font-weight: 300;
    font-size: 2rem;
    color: rgb(121, 237, 255);
    margin-bottom: 0;
}

.banner__sub-heading {
    color: #d8e8f9;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
}

.banner__overlay::before {
    opacity: 1;
    background-blend-mode: darken;
}

/*======= TAB CONTENT =======*/
.tab-pane {
    position: relative;
}

.tab__container .tab-pane {
    min-height: 315px;
}

.tab__container--small {
    min-height: 150px;
}

.tab__container--gray .tab-pane {
    background: #EEE;
}

.tab__container .nav-tabs a {
    font-weight: 600;
    font-size: large;
    font-family: Raleway;
    transition: background-color 200ms linear;
    color: rgb(0, 54, 78);
}

    .tab__container .nav-tabs a.active {
        background: #eee;
        border-bottom-color: transparent;
        color: rgb(0, 54, 78);
        font-weight: 600;
    }

.tab__container .tab__panels {
    border: 1px solid #DEDEDE;
    border-top: none;
}

.tab__panels--small .tab-pane {
    min-height: 150px;
}

    .tab__panels--small .tab-pane img {
        width: inherit;
        height: inherit;
    }

.tab-slider {
}

    .tab-slider .tab__body {
        background: #fff;
        min-height: 285px;
        display: flex;
        flex: 1;
        align-items: stretch;
        justify-content: flex-start;
        align-content: stretch;
        margin: auto;
        border-radius: 4px;
        padding: 22px 20px;
        border: 1px solid rgb(175, 194, 204);
    }

    .tab-slider.slick-initialized .slick-slide {
        display: flex;
        flex-flow: column;
        align-items: stretch;
        justify-content: flex-start;
        align-content: stretch;
        margin: 0 auto;
    }

    .tab-slider.slick-initialized .slick-track {
        display: flex;
        flex-flow: row;
        align-items: stretch;
        justify-content: flex-start;
        align-content: stretch;
    }

    .tab-slider .tab__body .tab__title {
        color: #0A5C93;
        font-size: 16px;
        font-family: Raleway, sans-serif;
        font-weight: 500;
        margin-bottom: 1em;
    }

.tab__container--horizontal {
    display: flex;
    align-content: stretch;
    justify-content: space-between;
    flex: 1;
    flex-direction: column;
}

.tab__image--horizontal {
    width: inherit;
}

.tab__body--horizontal {
    background: #fff;
    border-radius: 4px;
    flex: 1;
    align-items: center;
    margin-bottom: 20px;
}

.tab__content p {
    font-family: Raleway;
    font-weight: 500;
    font-size: 14px;
}

.tab__links {
    display: flex;
}

    .tab__links a {
        white-space: nowrap;
    }

.tab__links--medium a {
    font-size: medium;
}

.eds-slider {
    margin-bottom: 3em;
}

/*======= CONTAINER =======*/
.container__header {
}

.container__header--inline {
    display: flex;
    justify-content: space-between;
}

/*======= CALLOUT =======*/
.callout--clickable {
    text-decoration: none;
    color: initial;
    transition: all 200ms linear;
    border: none;
}

    .callout--clickable:hover {
        text-decoration: none;
        background: #d8e8f9;
        color: initial;
    }

.callout--border {
    border: 1px solid rgb(175, 194, 204);
}

.callout__image {
    max-width: 117px;
}

.image__full-height {
    height: 100%;
}

.callout__body {
    border: 1px solid rgb(175, 194, 204);
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-left: none;
}

.callout__body--left {
    border-radius: 0;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border-left: 1px solid rgb(175, 194, 204);
    border-right: none;
}

/*======= DATA SNAPSHOTS =======*/
.snapshot {
    background: #fff;
    border-radius: 4px;
    padding: 10px 15px;
    font-family: Raleway;
    flex-flow: row;
    display: flex !important;
    font-weight: initial;
    color: rgb(68, 68, 68);
}

.snapshot--inline {
    align-items: stretch;
}

.snapshot--link {
}

    .snapshot--link:hover, .snapshot--link:focus {
        color: initial;
    }

.snapshot .col {
    display: flex;
    margin: auto;
}

.snapshot__image {
    width: inherit;
}

.snapshot__contents {
    flex-direction: column;
    display: flex;
    flex: 1;
    justify-content: flex-end;
}

.snapshot__value {
    text-align: left;
    color: initial;
    font-family: Raleway;
    color: rgb(68, 68, 68);
    font-size: 14px;
    font-weight: 500;
    padding: 0 1rem;
}

.snapshot__heading {
    font-family: Raleway !important;
    font-size: 14px;
    font-weight: 500;
    color: rgb(68, 68, 68);
    padding: 0 1rem;
}

.snapshot__heading--large {
    font-size: 16px;
}

.snapshot--link .snapshot__heading {
    color: #0A5C93;
}


/*======= MAP =======*/
.map__container .nav-item {
}

.map-search-input-container {
    height: 55px;
}

.map-search-filter-container {
    width: 358px;
    padding: 0;
}
/*====== MAP OPTIONS =======*/
.map-options__container .multiselect {
    border: 1px solid #212529 !important
}

.multiselect {
    width: 300px;
    line-height: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    height: 31px;
}

/*======= FILTERS =======*/
.map-filters {

}
.map-filters__section {

}

.map-filters__section-toggle:hover {
    cursor: pointer;
}

.map-filters__section-toggle-icon {
    color: #1f71a8;
}

.map-filters__control {
    border: 1px solid rgb(204, 204, 204);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25em 0.5em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
.map-filters__toggle-control {
    display: inline-block;
}

.map-filters__control .custom-checkbox {
    width: 100%;
}

.map-filters__control .custom-control-label {
    display: flex;
    width: 100%;
}

/*====== SCROLLABLE CONTENT =======*/
.timeline {
    border-bottom: 1px solid #ccc;
}

    .timeline .timeline__link {
        color: #0056b3;
        transition: all 300ms linear;
    }

        .timeline .timeline__link:hover {
            text-decoration: underline;
        }

        .timeline .timeline__link.active {
            color: #2b2b2b;
            font-weight: 500;
        }

.scrollable-content__container {
    display: flex;
    overflow: hidden;
}

.scrollable-content {
    min-height: 300px;
    min-width: 100%;
    flex: 1;
    padding: 1em 0;
}

.scrollable-content__items {
    display: flex;
    flex-flow: row;
    flex: 1;
    width: 100%;
    position: relative;
}

.fade-in {
    animation: fade-in 1s;
}

/*====== PRESENTATION DATE =======*/
.presentation__date {
    background: rgb(134, 142, 150);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em;
    padding-left: 1em !important;
    padding-right: 1em !important;
    margin-top: -1px;
}

.presentation__day {
    font-size: 28px;
}

.presentation__month {
    font-size: 16px;
    line-height: 22px;
}

.presentation__content {
    display: flex;
    flex-flow: column wrap;
    height: 700px;
    align-items: stretch;
    justify-content: flex-start;
    align-content: stretch;
    flex: 1;
    opacity: 1;
    transition: 200ms linear all;
    overflow: hidden;
}

    .presentation__content.active {
        display: flex;
    }

    .presentation__content.hidden {
        opacity: 0;
    }

    .presentation__content .card {
        margin: 10px;
        width: 48%;
    }

.disable-scroll {
    pointer-events: none;
    color: #ddd;
}

/*====== PLACEHOLDER CONTAINER ======*/
.placeholder__container {
    height: 400px;
    width: 100%;
    background: #ccc;
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}

/*====== REPORT SETTINGS ======*/
.report-settings__container {
    flex: 1;
    flex-flow: column;
    display: flex;
}

.report-settings__control {
    display: flex;
    flex-flow: column;
    margin-bottom: 0.75rem;
    flex-basis: 48%;
}

    .report-settings__control label {
        margin-bottom: auto;
    }

.report-settings__title {
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-family: Raleway;
    font-weight: bold;
    letter-spacing: -0.11px;
    display: block;
}

.report-settings__subheader {
    width: 300px;
}

.report-settings__text {
    color: rgb(0, 0, 0);
    font-size: 14px;
    font-family: Raleway;
    font-weight: normal;
    letter-spacing: 0px;
}

.report-settings__column {
    display: flex;
    align-items: flex-start;
    flex-flow: row wrap;
    align-content: flex-start;
    justify-content: space-between;
}

.report-settings__message-container {
    width: 100%;
    min-height: 61px;
}
.report-settings__message {
    white-space: pre-line;
    font-weight: bold;
    font-size: 9pt;
    color: #000;
    font-family: Raleway;
}


.report-settings__control .multiselect-native-select, .report-settings__control .multiselect {
    width: 100%;
}

.report-settings__control .multiselect-native-select .btn-group {
    display: flex;
}

.report-settings__button {
    width: 100%;
}

#location-settings-note {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.divider--right::before {
    content: '';
    width: 1px;
    border: 1px solid rgb(204, 204, 204);
    background: rgb(204, 204, 204);
    height: 286px;
    position: absolute;
    right: 0;
}

.dropdown-menu label.radio {
    display: flex;
    padding: 5px 0;
}

div.report-settings-control-panel span.multiselect-selected-text,
div.location-settings-control-panel span.multiselect-selected-text {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: initial;
}

/*====== FORM ELEMENTS ======*/
.custom-control-label::before {
    z-index: 0;
    border: 1px solid rgb(184, 184, 184);
    box-shadow: inset 0px 1px 1px 0px rgba(0, 0, 0, 0.34);
    border-radius: 2px;
    background: rgb(255, 255, 255);
}

/*======= LOADING INDICATOR =======*/
.report-settings-container {
    position:relative;
}

#results-container {
    position: relative;
}

.loading-indicator {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 2rem;
    z-index: 1001;
}

.loading-indicator .spinner-border {
    color: #1f71a8!important;
    height: 3rem;
    width: 3rem;
    border-width: 0.4em;
}

.block-ui::before {
    content: "";
    height: 100%;
    width: 100%;
    z-index: 1000;
    background: rgba(194, 193, 193, 0.5);
    position: absolute;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: scale(1,1)
    }

    to {
        opacity: 1;
    }
}


@media only screen and (max-width: 767px) {
    .button {
        padding: 5px;
        margin-right: 5px;
        font-size: 1rem;
        font-family: Lato;
        font-weight: 400;
    }

    .tab__container .nav-tabs {
        flex-flow: row;
    }

        .tab__container .nav-tabs a {
            border: 1px solid transparent;
            font-size: 14px;
            padding: 0.5em;
            white-space: nowrap;
        }

            .tab__container .nav-tabs a.active {
                border: 1px solid #DEDEDE;
                border-bottom-color: transparent;
            }

    .slider__hero-image-container {
        display: none !important;
    }

    .slider__slide-container {
        padding: 0;
    }

    .slider .home-banner-header, .slider .slider__title {
        font-size: xx-large !important;
    }

    .snapshot__value {
        flex-basis: auto;
        width: auto;
    }

    .cta__action {
        display: none;
    }

    .cta__image {
        z-index: 1;
        right: 1em;
    }

    .cta__body {
        align-self: flex-start;
        margin: initial;
        padding: 1em;
    }

    .report-settings__control {
        flex-basis: 100%;
    }

    .report-settings__column {
        margin-top: 1.5em;
    }

    .report-settings__message {
        margin-top: 1em;
    }

    .divider--right::before {
        bottom: -20px;
        height: 1px;
        width: 100%;
        right: 0;
        left: 0;
    }
}

@media only screen and (max-width: 991px) {
    .tab__links {
        flex-flow: row nowrap;
        overflow-x: auto;
    }

    .report-settings-divider {
        height: 1px;
        width: 100%;
        margin: auto;
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .report-settings__control .multiselect-native-select, .report-settings__control .multiselect {
        width: 100%;
    }

    .report-settings__control .multiselect-native-select .btn-group {
        display: flex;
    }

    .button-group--mobile-stacked {
        display: flex;
        flex: 1;
        align-items: stretch;
    }
    .button-group--mobile-stacked .button {
        width: 100%;
        margin: 0.25em auto;
    }
}

@media only screen and (max-width: 991px) and (min-width: 768px) {

    .tab__container .nav-tabs {
        flex-flow: row;
    }

        .tab__container .nav-tabs a {
            border: 1px solid transparent;
            font-size: 14px;
            padding: 0.5em;
            white-space: nowrap;
        }

    .icon-card__container .button {
        display: inline-block;
    }

    .icon-card__container .card {
        min-height: 155px;
    }

    div.report-settings-control-panel span.multiselect-selected-text {
        max-width: 100px;
    }
}

@media only screen and (min-width: 992px) {
    .reports-container-expanded {
        display: block; 
    }
    .report-settings-divider {
        margin-right: auto;
    }

    .report-settings__column .report-settings__control {
        flex-basis: 48%;
    }

    .report-settings__column .report-settings__control .multiselect {
        flex: 1;

    }

    .report-settings__control .multiselect-native-select, .report-settings__control .multiselect {
        width: 100%;
    }
    div.report-settings-control-panel span.multiselect-selected-text {
        max-width: 150px;
    }
}

@media only screen and (min-width: 1200px) {
    div.report-settings-control-panel span.multiselect-selected-text {
        max-width: 180px;
    }
}

/*MAP*/
.esri-ui-top-right button {
    width: 36px;
}

#identify-full-screen-control button {
    background-image: url(../Media/1053/full-screen-24.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent !important;
    box-shadow: none !important;
}

#identify-full-screen-control.isFullScreen button {
    background-image: url(../Media/1054/full-screen-reverse-24.png);
}

/*Map Search*/
.map-search-input-container {
    position: absolute;
    padding: 0;
    width: 100%;
    z-index: 999;
}

    .map-search-input-container hr {
        margin-right: 10%;
    }

    .map-search-input-container input::-webkit-input-placeholder {
        font-style: italic;
    }

    .map-search-input-container input::-moz-placeholder {
        font-style: italic;
    }

    .map-search-input-container .input-group-text {
        background: #fff;
        border-left: none;
    }

    .map-search-input-container .input-group input {
        margin-top: 10px;
        margin-left: 15px;
    }

    .map-search-input-container .input-group .input-group-text {
        margin-top: 10px;
    }

.map-search-results-container {
    margin-top: 12px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    padding-top: 5px;
    position: absolute;
    width: 100%;
    max-height: 400px;
    overflow-y: scroll;
}

    .map-search-results-container li {
        list-style: none;
        height: 28px;
        padding: 0 10px;
    }

.resultData:hover {
    color: #fff;
    background-color: #0569ff;
    cursor: pointer;
}

/* Content Scroll */
.scroll-content__items {
    display: flex;
    flex-flow: column wrap;
    height: 500px;
    align-items: stretch;
    justify-content: flex-start;
    align-content: stretch;
    flex: 1;
    opacity: 1;
    transition: 200ms linear all;
    overflow: scroll;
}

.scroll-content__child {
    width: 48%;
    margin: 0.25em;
}

.training-assets {
    max-width: 100%;
    display: flex;
    flex-flow: row;
    align-items: center;
    margin: auto;
}

    .training-assets .arrow {
        padding: 1em;
    }

    .training-assets .arrow.slick-disabled {
        color: #ddd;
    }

    .training-assets .slick-list {
        width: 100%;
    }

    .training-assets > .slick-list > .slick-track > .slick-slide > div {
        margin: 1em;
        margin-left: 0;
    }

    .training-assets .slick-track {
        margin: initial;
    }

.header__dropdown {
    width: 350px;
}

.header__dropdown .dropdown-item {
    white-space: normal;
}

.custom-badge {
    font-weight: 500;
    font-family: Raleway;
    letter-spacing: 1px;
}

.custom-badge--large {
    font-size: 13px;
}

.dropdown__header {
    background: #f7f7f7;
    color: #212529;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.dropdown-menu--medium {
    min-width: 300px;
}

@media only screen and (max-width: 767px) {
    .presentation__content .card {
        width: auto;
    }

    div.location-settings-control-panel span.multiselect-selected-text {
        max-width: 200px;
    }
}
