﻿
/*------------  CUSTOM CAROUSEL -------------------*/
.carousel-control-prev,
.carousel-control-next {
    background-color: #e1e1e1;
    width: 5vh;
    height: 5vh;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .carousel-inner .carousel-item > div {
        display: none;
    }

        .carousel-inner .carousel-item > div:first-child {
            display: block;
        }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

/* display 3 */
@media (min-width: 768px) {

    .carousel-inner .carousel-item-right.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(33.333%);
    }

    .carousel-inner .carousel-item-left.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(-33.333%);
    }
}

.carousel-inner .carousel-item-right,
.carousel-inner .carousel-item-left {
    transform: translateX(0);
}
/*----------------------------------------------------*/




/*------------- CUSTOM NAVIGATION TABS--------------- */
.custom-tab {
    width: 100%;
    margin: 60px auto;
    min-height: 400px;
}

#custom-featured-tabs .tab-pane {
    padding: 15px;
    height: 80px;
}

#custom-featured-tabs .nav-tabs {
    position: relative;
    border: none !important;
    background-color: #fff;
    border-radius: 6px;
}

    #custom-featured-tabs .nav-tabs li {
        margin: 0px !important;
    }

        #custom-featured-tabs .nav-tabs li a {
            position: relative;
            margin-right: 0px !important;
            padding: 20px 40px !important;
            font-size: 16px;
            border: none !important;
            color: #333;
        }

    #custom-featured-tabs .nav-tabs a:hover {
        background-color: #fff !important;
        border: none;
    }

#custom-featured-tabs .slider {
    display: inline-block;
    width: 30px;
    height: 4px;
    border-radius: 3px;
    background-color: #39bcd3;
    position: absolute;
    z-index: 1200;
    bottom: 0;
    transition: all .4s linear;
}

#custom-featured-tabs .nav-tabs .active {
    background-color: transparent !important;
    border: none !important;
    color: #39bcd3 !important;
}
/*---------------------------------------------- */

.footer-info-single h2 {
    color: white;
    font-size: 1.5rem !important;
}

.footer-info-single a {
    color: white;
}

/* --  accordion -- */
#accordionFilter .nav-link {
    color: black !important
}

#accordionFilter .active {
    font-weight: bolder;
}

#filter 

/* chip-set */
chip-set {
    display: flex;
    flex-wrap: wrap;
    padding: 0.25rem;
}

.chip-set .chip {
    --mdc-ripple-fg-size: 0;
    --mdc-ripple-left: 0;
    --mdc-ripple-top: 0;
    --mdc-ripple-fg-scale: 1;
    --mdc-ripple-fg-translate-end: 0;
    --mdc-ripple-fg-translate-start: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    will-change: transform, opacity;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0.25rem;
    border-radius: 50rem;
    line-height: 1.25;
    letter-spacing: 0.0178571429em;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    padding: 0 0.75rem;
    font-size: 0.875rem;
    background-color: #e0e0e0;
    color: rgba(0, 0, 0, 0.87);
}

    .chip-set .chip::before, .chip-set .chip::after {
        position: absolute;
        border-radius: 50%;
        opacity: 0;
        pointer-events: none;
        content: "";
    }

    .chip-set .chip::before {
        transition: opacity 15ms linear, background-color 15ms linear;
        z-index: 1;
        /* @alternate */
        z-index: var(--mdc-ripple-z-index, 1);
    }

    .chip-set .chip::after {
        z-index: 0;
        /* @alternate */
        z-index: var(--mdc-ripple-z-index, 0);
    }

    .chip-set .chip.mdc-ripple-upgraded::before {
        transform: scale(var(--mdc-ripple-fg-scale, 1));
    }

    .chip-set .chip.mdc-ripple-upgraded::after {
        top: 0;
        /* @noflip */
        /*rtl:ignore*/
        left: 0;
        transform: scale(0);
        transform-origin: center center;
    }

    .chip-set .chip.mdc-ripple-upgraded--unbounded::after {
        top: var(--mdc-ripple-top, 0);
        /* @noflip */
        /*rtl:ignore*/
        left: var(--mdc-ripple-left, 0);
    }

    .chip-set .chip.mdc-ripple-upgraded--foreground-activation::after {
        -webkit-animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
        animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
    }

    .chip-set .chip.mdc-ripple-upgraded--foreground-deactivation::after {
        -webkit-animation: mdc-ripple-fg-opacity-out 150ms;
        animation: mdc-ripple-fg-opacity-out 150ms;
        transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
    }

    .chip-set .chip::before, .chip-set .chip::after {
        top: calc(50% - 100%);
        /* @noflip */
        /*rtl:ignore*/
        left: calc(50% - 100%);
        width: 200%;
        height: 200%;
    }

    .chip-set .chip.mdc-ripple-upgraded::after {
        width: var(--mdc-ripple-fg-size, 100%);
        height: var(--mdc-ripple-fg-size, 100%);
    }

    .chip-set .chip::before, .chip-set .chip::after {
        background-color: #424242;
        /* @alternate */
        background-color: var(--mdc-ripple-color, #424242);
    }

    .chip-set .chip:hover::before, .chip-set .chip.mdc-ripple-surface--hover::before {
        opacity: 0.08;
        /* @alternate */
        opacity: var(--mdc-ripple-hover-opacity, 0.08);
    }

    .chip-set .chip.mdc-ripple-upgraded--background-focused::before, .chip-set .chip:not(.mdc-ripple-upgraded):focus::before {
        transition-duration: 75ms;
        opacity: 0.12;
        /* @alternate */
        opacity: var(--mdc-ripple-focus-opacity, 0.12);
    }

    .chip-set .chip:not(.mdc-ripple-upgraded)::after {
        transition: opacity 150ms linear;
    }

    .chip-set .chip:not(.mdc-ripple-upgraded):active::after {
        transition-duration: 75ms;
        opacity: 0.16;
        /* @alternate */
        opacity: var(--mdc-ripple-press-opacity, 0.16);
    }

    .chip-set .chip.mdc-ripple-upgraded {
        --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.16);
    }

    .chip-set .chip.active {
        color: #6200ea;
        background-color: rgba(98, 0, 234, 0.08);
    }

        .chip-set .chip.active::before, .chip-set .chip.active::after {
            background-color: #6200ea;
            /* @alternate */
            background-color: var(--mdc-ripple-color, #6200ea);
        }

        .chip-set .chip.active:hover::before, .chip-set .chip.active.mdc-ripple-surface--hover::before {
            opacity: 0.08;
            /* @alternate */
            opacity: var(--mdc-ripple-hover-opacity, 0.08);
        }

        .chip-set .chip.active.mdc-ripple-upgraded--background-focused::before, .chip-set .chip.active:not(.mdc-ripple-upgraded):focus::before {
            transition-duration: 75ms;
            opacity: 0.12;
            /* @alternate */
            opacity: var(--mdc-ripple-focus-opacity, 0.12);
        }

        .chip-set .chip.active:not(.mdc-ripple-upgraded)::after {
            transition: opacity 150ms linear;
        }

        .chip-set .chip.active:not(.mdc-ripple-upgraded):active::after {
            transition-duration: 75ms;
            opacity: 0.24;
            /* @alternate */
            opacity: var(--mdc-ripple-press-opacity, 0.24);
        }

        .chip-set .chip.active.mdc-ripple-upgraded {
            --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.24);
        }

    .chip-set .chip .chip-leading-icon {
        margin: -0.25rem 0.25rem -0.25rem -0.25rem;
        width: 1.25rem;
        height: 1.25rem;
        font-size: 1.25rem;
    }

    .chip-set .chip .chip-close-icon {
        color: #757575;
        margin: 0.25rem -0.325rem -0.125rem 0.25rem;
        width: 1.125rem;
        height: 1.125rem;
        font-size: 1.125rem;
    }

    .chip-set .chip .chip-leading-image {
        margin: -0.5rem 0.5rem -0.5rem -0.5rem;
        width: 1.5rem;
        height: 1.5rem;
        border-radius: 100%;
    }


/* --- Searchbar ---*/
.form-control-borderless {
    border: none;
}

    .form-control-borderless:hover, .form-control-borderless:active, .form-control-borderless:focus {
        border: none;
        outline: none;
        box-shadow: none;
    }


.vertical-center {
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
}



.dropdown-item {
    display: block;
    width: 100%;
    padding: 0 1rem;
    clear: both;
    font-weight: 400;
    color: #212121;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

    .dropdown-item:hover, .dropdown-item:focus {
        color: #212121;
        background-color: #fff;
    }

    .dropdown-item.active, .dropdown-item:active {
        color: #212121;
        text-decoration: none;
        background-color: #fff;
    }

    .dropdown-item.disabled, .dropdown-item:disabled {
        color: #9e9e9e;
        pointer-events: none;
        background-color: transparent;
    }

.dropdown-menu.show {
    display: block;
}


.dropdown .dropdown-menu .dropdown-item {
  overflow: hidden;
  height: 3rem;
  align-items: center;
  display: flex;
}
.dropdown .dropdown-menu .dropdown-item .leading-icon {
  margin-right: 1.25rem;
  margin-left: 0.5rem;
  color: rgba(0, 0, 0, 0.38);
}
.dropdown .dropdown-menu:not(.dropdown-menu-dark) .dropdown-item {
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  will-change: transform, opacity;
}
.dropdown .dropdown-menu:not(.dropdown-menu-dark) .dropdown-item::before, .dropdown .dropdown-menu:not(.dropdown-menu-dark) .dropdown-item::after {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  content: "";
}
.dropdown .dropdown-menu:not(.dropdown-menu-dark) .dropdown-item::before {
  transition: opacity 15ms linear, background-color 15ms linear;
  z-index: 1;
  /* @alternate */
  z-index: var(--mdc-ripple-z-index, 1);
}
.dropdown .dropdown-menu:not(.dropdown-menu-dark) .dropdown-item::after {
  z-index: 0;
  /* @alternate */
  z-index: var(--mdc-ripple-z-index, 0);
}
.dropdown .dropdown-menu:not(.dropdown-menu-dark) .dropdown-item.mdc-ripple-upgraded::before {
  transform: scale(var(--mdc-ripple-fg-scale, 1));
}
.dropdown .dropdown-menu:not(.dropdown-menu-dark) .dropdown-item.mdc-ripple-upgraded::after {
  top: 0;
  /* @noflip */
  /*rtl:ignore*/
  left: 0;
  transform: scale(0);
  transform-origin: center center;
}
.dropdown .dropdown-menu:not(.dropdown-menu-dark) .dropdown-item.mdc-ripple-upgraded--unbounded::after {
  top: var(--mdc-ripple-top, 0);
  /* @noflip */
  /*rtl:ignore*/
  left: var(--mdc-ripple-left, 0);
}
.dropdown .dropdown-menu:not(.dropdown-menu-dark) .dropdown-item.mdc-ripple-upgraded--foreground-activation::after {
  -webkit-animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
          animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}
.dropdown .dropdown-menu:not(.dropdown-menu-dark) .dropdown-item.mdc-ripple-upgraded--foreground-deactivation::after {
  -webkit-animation: mdc-ripple-fg-opacity-out 150ms;
          animation: mdc-ripple-fg-opacity-out 150ms;
  transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.dropdown .dropdown-menu:not(.dropdown-menu-dark) .dropdown-item::before, .dropdown .dropdown-menu:not(.dropdown-menu-dark) .dropdown-item::after {
    top: calc(50% - 100%);
    /* @noflip */
    /*rtl:ignore*/
    left: calc(50% - 100%);
    width: 200%;
    height: 200%;
}

.add-on .input-group-btn > .btn {
    border-left-width: 0;
    left: -2px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* stop the glowing blue shadow */
.add-on .form-control:focus {
    box-shadow: none;
    -webkit-box-shadow: none;
    border-color: #cccccc;
}


.box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.box div {
    width: 100px;
    height: 100px;
 }

.home-search {
    margin: 0 auto;
    padding-top: 1.50rem;
    padding-bottom: 2.5rem;
    text-align: center;
    width: 50%;
}

.physician-detail-background{
    background: url('../Assets/img/PhysicianDetail_texture.png');
    background-position: right;
    background-repeat: no-repeat;
    background-size:cover;
}

.physician-detail {
    background-color: transparent;
}

.physician-bio {
    border-left: thin solid lightgrey;
    border-right: thin solid lightgrey;
    border-bottom: thin solid lightgrey;
    box-shadow: 0px 0px 6px 3px lightgray
}

.PhysicianHeader {
    background: url('../Assets/img/banners_PAProfile.png');    
    background-repeat: no-repeat;
    background-size: cover;
    min-height:125px;
    padding-top:50px;
    padding-left:10px;
    color:white;
}



/* NEW Progress CSS */
/*Gray = #D9D9D9;
Orange = #F38A00*/

@property --p {
    syntax: '<number>';
    inherits: true;
    initial-value: 0;
}

.pie {
    --p: 20;
    --b: 22px;
    --c: darkred;
    --w: 150px;
    width: var(--w);
    aspect-ratio: 1;
    position: relative;
    display: inline-grid;
    margin: 5px;
    place-content: center;
    font-size: 25px;
    font-weight: bold;
    font-family: sans-serif;
    background-color: #D9D9D9;
    border-radius: 50%;
}

    .pie:before,
    .pie:after {
        content: "";
        position: absolute;
        border-radius: 50%;
    }

    .pie:before {
        inset: 0;
        background: radial-gradient(farthest-side,var(--c) 98%,#0000) top/var(--b) var(--b) no-repeat, conic-gradient(var(--c) calc(var(--p)*1%),#0000 0);
        -webkit-mask: radial-gradient(farthest-side,#0000 calc(99% - var(--b)),#000 calc(100% - var(--b)));
        mask: radial-gradient(farthest-side,#0000 calc(99% - var(--b)),#000 calc(100% - var(--b)));
    }

    .pie:after {
        inset: calc(50% - var(--b)/2);
        background: var(--c);
        transform: rotate(calc(var(--p)*3.6deg)) translateY(calc(50% - var(--w)/2));
    }

.animate {
    animation: p 1s .5s both;
}

.no-round:before {
    background-size: 0 0,auto;
}

.no-round:after {
    content: none;
}

.pie-inside {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #fff;
    line-height: 120px;
    text-align: center;
    margin-top: 15px;
    margin-left: 15px;
    color: #F38A00;
    position: absolute;
    z-index: 100;
    font-weight: 700;
    font-size: 1.7rem;

}

@keyframes p {
    from {
        --p: 0
    }
}



/* END */




/* cookie pop-up*/
.cmp-theme, .cc-window, .f-cmp-flyout-wrapper {
    --prefTextColor: #000000;
    --prefBodyColor: #ffffff;
    --prefFooterColor: #ffffff;
    --prefButtonColor: #03173e;
    --prefButtonTextColor: #ffffff;
    --prefSelectorBgColor: #03173e;
    --prefSelectorTextColor: #ffffff;
    --prefFocusRingColor: #03173e;
    --prefLinkColor: #000000;

}

.cc-color-override-1599608346.cc-window {
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
}

.cc-banner.cc-bottom {
    left: 0;
    right: 0;
    bottom: 0;
}

.cc-window.cc-banner {
    padding: 0 32px;
    width: 100%;
}

.cc-bottom {
    bottom: 1em;
}

.cc-revoke, .cc-window {
    position: fixed;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    z-index: 9999;
}

.cc-window {
    opacity: 1;
    -webkit-transition: opacity 1s ease;
    transition: opacity 1s ease;
}

.cc-message-container {
    flex-grow: 1;
    flex-direction: column;
    overflow-y: auto;
    max-width: 100%;
}

.cc-color-override-1599608346 .cc-link, .cc-color-override-1599608346 .cc-link:active, .cc-color-override-1599608346 .cc-link:visited {
    color: rgb(0, 0, 0);
}

.cc-link {
    display: inline-block;
    padding: .2em;
    text-decoration: underline;
}

.cc-btn, .cc-close, .cc-link, .cc-revoke {
    cursor: pointer;
}

.cc-banner .cc-message {
    display: block;
    padding: 24px 0;
    margin-right: 24px;
}

.cc-banner .cc-compliance {
    height: auto;
    padding: 24px 0;
    flex-direction: row;
}

.cc-compliance {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

.cc-btn {
    font-size: 12px;
    font-weight: 100;
    border-width: 1px;
    border-radius: 2px;
    border-style: solid;
    text-align: center;
    white-space: nowrap;
    padding: 0 16px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-btn, .cc-close, .cc-link, .cc-revoke {
    cursor: pointer;
}

.cc-banner.cc-theme-wire .cc-compliance a, .cc-banner.cc-theme-block .cc-compliance a, .cc-banner.cc-theme-classic .cc-compliance a {
    margin-left: 0;
    margin-right: 8px;
    margin-bottom: 8px;
}

.cc-link.cmp-pref-link {
    width: fit-content;
    font-size: 12px;
    font-weight: 100;
    text-align: center;
    white-space: nowrap;
    display: flex;
    padding: 0 4px;
    text-decoration: none;
    margin-left: 8px;
    height: 32px;
}

.cmp-pref-link span {
    display: flex;
    align-items: center;
}

.cmp-pref-link span + span {
    padding-left: 8px;
}

.cmp-pref-link span {
    display: flex;
    align-items: center;
}



/* -------------*/


.GlobalBanner {
    position: fixed !important;
    width: 100%;
    z-index: 1035;
}

.custom-alert {
    position: relative;
    padding-right: 2.5rem;
}

.custom-alert .close-x {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: #cc7a00;
    user-select: none;
}
