﻿/* --BLAZOR error message & loading*/
.valid.modified:not([type=checkbox]) {
    outline: 1px solid #62a74b;
}

.invalid {
    outline: 1px solid #b40000;
}

.validation-message {
    color: #b40000;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }







/* --GENERAL */

:root {
    --sticky-offset: 170px; /* header height so anchors aren't hidden */
}

html {
    scroll-behavior: smooth;
}

a {
    color: #222;
}

    a:hover {
        color: #a32e00;
    }

.btn {
    margin: 5px;
}

.btn-ashbel-orange-outline:hover:before, .btn-ashbel-orange-outline:active:before, .btn-ashbel-orange-outline:focus:before {
    width: 100%;
}

.btn-white-outline:hover:before, .btn-white-outline:active:before, .btn-white-outline:focus:before {
    width: 100%;
}

.btn-system-blue-outline:hover:before, .btn-system-blue-outline:active:before, .btn-system-blue-outline:focus:before {
    width: 100%;
}

img {
    max-width: 100%;
}

main {
    min-height: 1200px;
}

.margin-top-5px {
    margin-top: 5px;
}

body.design-mode-modern #explore li[data-item-id="exploreHealthCare"],
body.design-mode-modern #explore li[data-item-id="exploreAcademics"],
body.design-mode-modern #explore li[data-item-id="exploreResearch"],
body.design-mode-modern #explore li[data-item-id="exploreInstitutional"],
body.design-mode-modern #explore li[data-item-id="exploreGive"],
body.design-mode-modern #explore li[data-item-id="exploreContacts"],
body.design-mode-modern #explore li[data-item-id="exploreAlerts"] {
    display: none;
}

.inline-button {
    display: inline-block;
    padding: 4px;
}

.three-col-design {
    display: grid;
    width: 100%;
    overflow: hidden;
    grid-template-columns: 1fr minmax(0, 1500px) 1fr;
}

a.utmb-card.rounded {
    text-decoration: none;
}

    a.utmb-card.rounded h3:hover {
        text-decoration: underline;
    }

    a.utmb-card.rounded:hover {
        box-shadow: 0 14px 25px rgba(0, 0, 0, .16);
        transform: translateY(-3px);
    }

.bottom-left-rounded {
    border-bottom-left-radius: 80px;
}

.top-right-rounded {
    border-top-right-radius: 80px;
}

.top-left-rounded {
    border-top-left-radius: 80px;
}

.bottom-right-rounded {
    border-bottom-right-radius: 80px;
}

.list-in-line {
    display: inline-flex;
}

    .list-in-line li {
        margin-top: 8px;
    }

/* Loader */
.loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
}

.loader {
    left: 50%;
    margin-left: -4em;
    font-size: 10px;
    border: .8em solid rgba(148, 205, 205, 1);
    border-left: .8em solid rgba(78, 124, 140, 1);
    animation: spin 1.1s infinite linear;
}

    .loader, .loader:after {
        border-radius: 50%;
        width: 8em;
        height: 8em;
        display: block;
        position: absolute;
        top: 50%;
        margin-top: -4.05em;
    }

@keyframes spin {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Modal */
.uk-modal-header h2 {
    font-size: 1.5rem !important;
}

.uk-modal h3 {
    font-size: 1.2rem !important;
}

/* Telerik components */
.k-input {
    height: 40px;
}

.k-input-inner {
    height: 100% !important;
}

.k-input-suffix-horizontal > button {
    height: 100%;
}

.k-grid-header {
    display: none !important;
}

.k-grid {
    border: none
}


.k-toolbar.k-input, .k-toolbar.k-picker {
    width: 20em !important;
}

.k-pager {
    height: 40px;
}

.k-loader-segment {
    color: #a32e00;
}

.k-list-item.k-selected, .k-list-item.k-focus, .k-selected.k-list-optionlabel {
    color: #fff;
    background-color: #444444;
}

    .k-list-item.k-selected:hover, .k-selected.k-list-optionlabel:hover, .k-list-item.k-selected.k-hover, .k-selected.k-hover.k-list-optionlabel {
        color: #fff;
        background-color: #003767;
    }

.k-toolbar .k-input, .k-toolbar .k-picker {
    width: 20em;
}

.k-input-solid {
    color: #a32e00;
}

    .k-input-solid:focus,
    .k-input-solid:focus-within {
        box-shadow: none;
        /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);*/
        /* outline: #003767; */
        border-color: #00376766 !important;
    }


    .k-input-solid.k-focus {
        border-color: #003767
    }

.k-button-solid-base {
    border-color: #fff;
    color: #a32e00;
    background-color: #eee;
    background-image: none;
}

.k-list-lg .k-list-group-sticky-header {
    display: none;
}

.k-clear-value {
    opacity: .9 !important;
}

.k-rounded-lg {
    border-radius: 10rem;
}

.k-cta, .btn-cta {
    background: var(--utmb-orange);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 600;
    cursor: pointer;
}

.k-svg-icon.k-svg-i-x {
    color: #a32e00;
}

.container {
    margin: 0 auto;
    max-width: 1400px;
}

.system-blue-bg h3, .system-blue-bg p, .system-orange-bg h3, .system-orange-bg p, .system-blue-bg a:not(.btn), .system-orange-bg a:not(.btn) {
    color: #222;
}

/* Spacing */
.primary-care-section, .search-section, .refine-search-section, .service-cards-section, .specialty-section-content, .similar-providers-section {
    padding: 30px 50px;
}

@media screen and (max-width: 639px) {
    .primary-care-section, .search-section, .refine-search-section, .service-cards-section, .specialty-section-content, .similar-providers-section {
        padding: 40px 20px;
    }
}


/* --SEARCH BAR,  */

/* Search Bar */
input[type=text] {
    border: none;
    height: 30px;
    padding: 0 5px;
}

.k-list-group-sticky-header {
    background-color: #003767;
    color: #fff;
}

.k-list-group-item {
    background-color: #daeffd;
}

#SearchBar.k-svg-icon.k-icon-lg {
    width: 20px;
    height: 20px;
    color: #a32e00;
}

#SearchBar button.telerik-blazor.k-button.k-button-outline.k-button-md.k-button-outline-base {
    background-color: #fff;
}

#SearchBar span.k-button-text {
    color: #a32e00;
}

#SearchBar .k-button-outline-base:hover {
    background-color: #003767 !important;
    color: #fff;
}

#SearchBar span.k-button-text:hover {
    color: #fff !important;
}

input#searchBarInput {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.2rem);
    padding-left: 0;
}

.k-input-solid .k-input-separator {
    border-color: #fff;
}





/* --LANDING PAGE */
/* Top hero section */
.hero-section.uk-height-large {
    height: 550px;
}

.hero-section {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgb(0 0 0) 20%, rgba(0, 0, 0, 0.0) 500px), url('https://www.utmb.edu/images/librariesprovider32/find-a-doctor/mom-and-daughter.jpg');
    padding: 80px 20px;
    color: white;
}

.hero-section-content {
    max-width: 750px;
    margin-top: 200px;
}

.hero-section h1 {
    font-size: 3rem;
    color: white;
    font-family: "Roboto", "Helvetica Neue 2", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    font-weight: 300;
}

.hero-section p {
    color: white;
}

    .hero-section p.lead {
        font-weight: 300;
    }


/* Services Section */
.service-card:hover {
    border-color: #003d5c;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card-icon {
    font-size: 2rem;
    color: #a32e00;
}

.service-cards-section h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 10px;
}

.service-cards-section p {
    margin-top: 10px;
}

/* Primary Care Section */

.primary-care-content h2 {
    color: #003767;
}

.primary-care-content p.lead {
    color: #003767;
}

.primary-care-content {
    color: #003767;
}

    .primary-care-content p a {
        color: #003767;
    }

/* Speciatly Section */
.specialty-section {
    padding: 60px 0 60px 0
}

.specialty-section-hero .container {
    max-width: 1500px !important;
}

.specialty-section-content {
    max-width: 600px;
    background-color: #003767d9;
    color: #fff;
    border-radius: 18px;
}

    .specialty-section-content h2 {
        color: #ffffff;
    }

.specialty-section-hero {
    background-image: url(https://www.utmb.edu/images/librariesprovider32/find-a-doctor/primary-care.jpg);
}

    .specialty-section-hero.uk-height-large {
        height: 650px;
    }

/* Update your profile message */
.update-message {
    text-align: center;
    margin: 0;
}

/* --RESULTS PAGE */
/* Search / Refine Section */
.search-section h1 {
    font-size: 3rem;
    color: white;
    font-family: "Roboto", "Helvetica Neue 2", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    font-weight: 300;
}

.search-section h2 {
    color: #ffffff;
}

.search-section h2, .refine-search-section h2 {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 8px;
}

.search-section .k-rounded-lg.max-distance {
    border-radius: 10rem;
    border-top-right-radius: 1px !important;
    border-bottom-right-radius: 1px !important;
    border-right: 1px solid #fff;
}

.search-section .k-input-md.zip-code {
    border-radius: 10rem;
    border-top-left-radius: 1px !important;
    border-bottom-left-radius: 1px !important;
    border-left: 1px solid #fff !important;
}

.refine-search-section .k-button-solid-base.k-selected {
    border-color: #ca4b0c !important;
    color: #fff;
    background-color: #ca4b0c !important;
}

.refine-search-section .k-rounded-lg {
    border-radius: 10rem;
    background-color: #00000000 !important;
    border-color: #444 !important;
    border-width: 2px !important;
}

.refine-search-section .k-button-solid-base {
    border-color: #ffffff00;
    color: #444;
    background-color: #ffffff00;
    background-image: none;
}

.refine-search-section input[type=text] {
    background: #00000000;
}

.refine-search-section span.telerik-blazor.k-icon.k-svg-icon.k-svg-i-x {
    color: #ca4b0c;
}

.refine-search-section h3 {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 8px;
    margin-top: 15px;
}

.refine-search-section a:hover, .refine-search-section a:active {
    border-bottom: 1px solid #00000000;
}

p.clear-filters {
    text-align: right;
    margin-top: 5px;
    font-size: 1rem;
    cursor: pointer;
    width: fit-content;
    float: right;
    color: #fff;
}

a.advanced-filter {
    display: block;
    padding-top: 10px;
    margin-bottom: 10px;
}

.drop-down-title {
    margin: 15px 10px !important;
    color: #142047;
    font-weight: 600;
}

/* PAGINATION */

.k-pager {
    font-size: .8rem !important;
    background-color: #fff;
    border-color: #fff;
}

.k-pager-sm {
    padding-block: 3.5px;
}

.k-pager-info {
    justify-content: normal;
}

.k-button-flat-primary {
    color: #222;
}

k-pager:focus,
k-pager:focus-within {
    box-shadow: none;
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);*/
    outline: #003767;
}

.paginator, .sort-dd {
    margin: 10px 0;
}

/* Sort */
.results-wrapper span.telerik-blazor.k-combobox {
    width: 65%;
}

.results-wrapper {
    padding: 15px;
}


.sort-dd {
    /* background: #eeeeee61; */
    /* padding: 5px 0;
        margin: -5px -5px -5px 5px; */
    color: #003767;
}

label.sort-by {
    padding-left: 15px;
    font-size: 1rem;
}

/* Provider Cards */
.all-people-cards {
    padding-bottom: 30px;
}

    .all-people-cards .overview {
        text-align: left;
    }

        .all-people-cards .overview img {
            height: 120px;
            width: 120px;
        }

@media screen and (max-width: 639px) {
    .all-people-cards .overview, .scheduling-popup .overview {
        text-align: center;
    }
}

h3.card-name {
    font-size: 1.15rem;
    color: #003767;
    font-family: unset;
    font-weight: 500;
    margin-bottom: 5px;
}

h4.provider-type {
    margin: 0;
}

.provider-info .patient-acceptance, .provider-info .star-rating, .provider-info .provider-type {
    font-size: .9rem !important;
    font-family: 'Roboto';
    margin-bottom: 4px;
}

.profile-details-card h4 {
    font-size: 1rem;
    color: #003767;
    margin-top: 20px;
    margin-bottom: 0px !important;
    font-weight: 600;
}

.profile-details-card .specialties ul li {
    margin-top: 1px !important;
}

.profile-details-card .specialties ul {
    font-size: .9rem;
}

.profile-details-card .locations a {
    font-size: .9rem;
}

.profile-details-card .more-providers a {
    color: #ca4b0c;
    font-size: .8rem;
}

.profile-details-card .profile-buttons {
    padding-top: 10px;
}

.locations li.loc-providers {
    padding-top: 10px;
}


/* Separation from UTMB */

.separation p {
    margin-bottom: 0;
    font-size: .9rem;
}

.separation-links p {
    font-size: .9rem;
}

/* -- Popup scheduler --*/
.scheduling-popup .k-window-titlebar h2 {
    font-size: 1.3rem;
    font-family: 'Roboto';
    font-weight: 500;
    margin-bottom: 2px;
    color: #142047;
}

.scheduling-popup .k-window-titlebar h3 {
    font-size: 1rem;
    font-family: 'Roboto';
    margin-bottom: 2px;
    color: #142047;
    margin-top: 0px;
}

.scheduling-popup .k-window-titlebar .img-circle {
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: top;
}

/* --PROFILE PAGE */

/* Top Overview Section */
.breadcrumb {
    font-size: .9rem;
    padding-bottom: 10px;
}

    .breadcrumb a {
        color: #fff !important;
    }

        .breadcrumb a:hover {
            color: #fa7e25;
            text-decoration: underline;
            border-bottom: 1px solid #fa7e25;
        }

    .breadcrumb span {
        color: #fff;
    }

.overview-section {
    padding: 50px 50px;
}

.overview img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: top;
    flex-shrink: 0;
}

@media screen and (min-width: 640px) {
    .overview {
        display: flex;
        /*        align-items: center;*/
        gap: 1rem;
    }

    .profile-name {
        font-size: 1.4rem;
        margin-top: 10px;
    }
}

.overview .provider-info {
    display: flex;
    flex-direction: column;
}

.profile-name {
    font-size: 1.6rem;
    color: #fff;
    font-family: 'Roboto';
    font-weight: 500;
    margin-bottom: 2px;
}

.overview-section h2 {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 8px;
    margin-top: 8px;
    color: #fff;
}

.status {
    padding: 30px 50px !important;
}

@media only screen and (max-width: 800px) {
    ul.status.list-in-line {
        display: block;
    }
}



li.patient-acceptance {
    margin-top: 17px;
    margin-right: 15px;
}

li.languages {
    margin-top: 17px !important;
    margin-left: 15px;
}


/* ===== Sidebar (left) ===== */
.sidebar {
    position: sticky;
    top: var(--sticky-offset);
    align-self: start;
}

.toc {
    margin: 30px 0;
    padding: 0;
    list-style: none;
}

    .toc a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 16px;
        color: var(--text);
        text-decoration: none;
        border-left: 4px solid transparent;
        transition: all .15s ease;
        font-size: .98rem;
    }

        .toc a:hover {
            background: #fafafa;
        }

        .toc a.is-active,
        .toc a:focus {
            border-left-color: var(--utmb-orange);
            background: #fff6f0;
            font-weight: 600;
            color: #111827;
        }
/* ===== Content/Sidebar relation ===== */
.content > section {
    scroll-margin-top: var(--sticky-offset);
}

/*profile details*/

.profile-details {
    padding: 0 20px 40px 20px;
}

    .profile-details h2 {
        font-size: 1.6rem;
        font-weight: 500;
        margin-top: 30px;
    }

.border-box {
    border: 1px solid #ddd;
    padding: 20px;
    margin-top: 15px;
}

.locations h3, .education h3, .schedule-now h3, .ratings h3 {
    font-size: 1.2rem;
    font-family: 'Roboto';
    font-weight: 500;
    margin-bottom: 5px;
}

/* Locations */
.locations .uk-grid {
    margin-left: 0 !important;
}

.loc-map iframe {
    height: 100%;
}

@media screen and (min-width: 640px) {
    .loc-map {
        margin-top: -20px;
        margin-bottom: -20px;
    }

    .locations .utmb-card-small {
        padding-right: 0px;
    }
}

@media screen and (max-width: 639px) {
    .loc-map {
        margin-bottom: -20px;
        /* margin-right: -20px; */
        /* margin-left:-20px; */
    }

    .locations .utmb-card-small {
        padding: 20px 0;
    }

    .loc-card {
        padding: 20px;
    }
}

ul.loc-list {
    list-style: none;
    line-height: 1.6;
}

    ul.loc-list li.loc-fax:before {
        display: inline-block;
        margin: 0 10px 0 -20px;
        font-family: "FontAwesome";
        content: "\f1ac";
        color: #a32e00;
    }

    ul.loc-list li.loc-phone:before {
        display: inline-block;
        margin: 0 10px 0 -26px;
        font-family: "FontAwesome";
        content: "\f095";
        color: #a32e00;
    }

    ul.loc-list li.loc-hours:before {
        display: inline-block;
        margin: 0 10px 0 -20px;
        font-family: "FontAwesome";
        content: "\f017";
        color: #a32e00;
    }

    ul.loc-list li.loc-addy:before {
        display: inline-block;
        margin: 0 10px 0 -24px;
        font-family: "FontAwesome";
        content: "\f3c5";
        color: #a32e00;
        font-style: normal !important
    }

    ul.loc-list li.loc-web:before {
        display: inline-block;
        margin: 0 10px 0 -20px;
        font-family: "FontAwesome";
        content: "\e60e";
        color: #a32e00;
    }

/* ul.loc-list li.loc-addy,
        ul.loc-list li.loc-hours,
        ul.loc-list li.loc-phone,
        ul.loc-list li.loc-fax,
        ul.loc-list li.loc-web,
        ul.loc-list li.loc-providers {
            font-size: 0.9rem;
            color: #555555;
        } */

li.loc-providers a {
    margin-left: -30px;
    margin-top: 5px;
}


/* education/bio details */

.education p {
    margin: 2px 10px;
}



/* Schedule Flows */
.scheduling .k-stepper .k-step-label .k-step-text {
    color: #a32e00;
}

.scheduling .k-progressbar .k-selected {
    background-color: #003767 !important;
}

.scheduling .k-wizard-horizontal .k-wizard-steps {
    margin-block-start: 5px !important;
}

.scheduling .k-wizard, .scheduling .k-wizard .k-wizard-step {
    padding: 0px !important;
}

.scheduling p.intro-statement {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.scheduling .schedule-buttons {
    text-align: center;
}

.scheduling button.schedule-next {
    margin: 3px;
}


/* Open Scheduling */
#openSchedulingFrame {
    width: 100% !important;
    height: 625px !important;
}

@media only screen and (max-width: 747px) {
    ​#openSchedulingFrame {
        height: 1000px !important;
    }

    #scheduleContainer {
        margin: 0 -12px !important;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1900px) {
    div #scheduleContainer {
        margin-left: -180px;
        margin-right: -233px;
    }
}

@media only screen and (min-width: 960px) and (max-width: 1199px) {
    div#scheduleContainer {
        margin-left: -180px;
        margin-right: -125px;
    }
}

@media only screen and (max-width: 959px) {
    div#scheduleContainer {
        margin-left: -40px;
        margin-right: -40px;
    }
}

/* .morecontent {
        display: none;
    } */

.statement-text .statement-box {
    margin: 0 0 0 17px;
    padding: 5px 0 1px 15px;
    /* background-color: #eee; */
}

.statement.statement-text:before {
    content: "\f064";
    font-family: 'FontAwesome';
    display: inline-block;
    position: absolute;
    padding: 1px 0;
    margin: 0 3px;
    color: #003767;
    font-size: 1.36rem;
}

/* .decision-tree-area {
    margin-top: 20px;
} */

.decision-tree-area h4 {
    color: #003767;
}

h3.start-questions {
    color: #003767;
    text-align: center;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-family: 'Roboto';
}

.waitlist-message {
    background-color: #a32e00;
    text-align: center;
    margin: 0 auto;
    max-width: 600px;
    font-size: 1rem;
    color: #ffffff;
    padding: 10px;
}

p.alert.alert-primary {
    color: #a32e00 !important;
    border: 1px solid #a32e00 !important;
    margin-right: 20px;
    padding: 10px;
}




/* Similar providers section */
.similar-providers-section .list-in-line {
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
    margin-bottom: 20px;
}


/* Scroll Spy - Active Sidebar */
.toc li a {
    display: block;
    padding: 8px 12px;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    text-decoration: none;
}

    .toc li a:hover {
        border-left-color: #ccc;
    }

.toc li.active a {
    font-weight: 700;
    color: #a32e00;
    border-left-color: #a32e00;
}



/* Loader text */
.loader-container .k-loader-container-label {
    color: #003767 !important;
    font-weight: bold;
}
