/* ----- Theme CSS ----- */
header,
nav,
footer {
    width: 100%;
    margin: 0px;
    padding: 0px;
    position: relative;
}

#Patient,
#Header,
#Footer,
#Credibility,
#Main-Menu,
#Location {
    max-width: 1200px;
    min-width: 300px;
    margin: 0px auto;
    padding: 0px;
    position: relative;
}

/* Selection CSS */
#Container ::selection {
    background: var(--themeOneBg);
    color: var(--themeTwoBg);
}

/* Scroller CSS */
#Scroller a {
    background: #fff;
    border: 2px solid var(--themeOneBg);
    color: var(--themeThreeBg);
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
}

#gdp_popup .cc-cp-foot-byline {
    font: 400 14px/20px var(--headingFont) !important;
}

/* ----- Header ----- */
#Patient-Container {
    background: #e2e4e5;
}

#Patient {
    min-height: 47px;
    text-align: center;
}

#Patient li {
    display: inline-block;
    vertical-align: top;
    position: relative;
    font: 600 15px/20px var(--headingFont);
}

#Patient li::after {
    content: '';
    position: absolute;
    right: -5px;
    background: #9f9f9f;
    top: 16px;
    width: 1px;
    height: 14px;
}

#Patient li:last-child::after {
    display: none;
}

#Patient li a {
    display: block;
    padding: 12px 18px;
    color: var(--fontDark);
}

#Patient li span {
    display: inline-block;
    vertical-align: top;
    width: 30px;
    height: 20px;
}

.callAppoint span {
    background: url(/images/call-icon.png) no-repeat center center;
}

.faxAppoint span {
    background: url(/images/fax-icon.png) no-repeat center center;
}

#Patient li:hover.faxAppoint span {
    background: url(/images/fax-hv-icon.png) no-repeat center center;
}

.portal span {
    background: url(/images/patient-portal-img.png) no-repeat center center;
}

#Patient li:hover.portal span {
    background: url(/images/patient-portal-hv-img.png) no-repeat center center;
}

.reqAppoint span {
    background: url(/images/book-appo-icon.png) no-repeat center center;
}

#Patient li:hover.reqAppoint span {
    background: url(/images/book-appo-hv-icon.png) no-repeat center center;
}

.register span {
    background: url(/images/register-icon.png) no-repeat center center;
}

#Patient li:hover.register span {
    background: url(/images/register-hv-icon.png) no-repeat center center;
}

#Patient li a:hover {
    color: var(--themeTwoBg);
}

#Header {
    padding: 27px 5px 13px 5px;
}

.logo {
    padding: 10px 0;
    width: 870px;
    text-align: right;
}

.logo a {
    display: block;
}

.appoint {
    text-align: right;
    vertical-align: middle;
}

.appoint ul {
    font-size: 0px;
}

.search-bx-header {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 185px;
    margin-top: -49px;
}

/*.search-bx-header::before {
    content: '';
    background: url(/images/search-icon.png) no-repeat left top;
    width: 17px;
    height: 17px;
    color: #4e5363;
    position: absolute;
    left: 15px;
    top: 17px;
    font-size: 18px;
    font-family: 'fontello';
    z-index: 9;
}*/

.search-bx-header input[type="text"] {
    padding: 14px 14px 14px 45px;
    font: 500 17px/17px var(--headingFont);
    border: 1px solid #ccc;
    width: 100%;
    background: #fff;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-height: 40px;
}

.search-bx .search_submit,
.search-bx-header .search_submit {
    position: absolute;
    left: 15px;
  top: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 20px;
    height: 18px;
     background: url(/images/search-icon.png) no-repeat left top;
}

/* ----- Menu ----- */
.menu {
    text-align: center;
}

.menu li,
.accessible_on .menu li {
    font: 500 15px/15px var(--headingFont);
    text-transform: uppercase;
    position: relative;
    color: var(--fontDark);
}

.menu li a::after {
    content: '';
    position: absolute;
    right: 0px;
    width: 1px;
    height: 15px;
    background: #c3c2c2;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 22px;
}

.menu li:last-child a::after {
    display: none;
}

.menu li a {
    padding: 5px 0px 15px 0;
    color: var(--fontDark);
    position: relative;
}

.menu ul li a::after {
    display: none;
}

.menu ul li a {
    font: 500 16px/22px var(--headingFont);
}

.menu > li > a > span::after {
    background: var(--themeTwoBg);
    content: '';
    position: absolute;
    z-index: 1;
    width: 0px;
    height: 2px;
    left: 0px;
    bottom: 0px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.menu > li:hover > a > span::after {
    width: 100%;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.menu li ul {
    width: 100%;
    min-width: 200px;
}

.menu ul li {
    text-transform: none;
    border-bottom: 1px solid #d8d3d3;
}

.menu ul li a {
    padding: 12px 15px 12px 30px;
    color: #000;
    background: var(--themeOneBg);
}

.menu ul li a:hover,
.menu ul li:hover > a {
    background: var(--themeTwoBg);
    color: #fff;
}

.menu-home a::before {
    font-size: 20px;
    color: var(--themeTwoBg);
}

.menu-home {
    min-width: 30px;
    width: 7%;
}

.menu li.menu-home a span::after {
    left: -23px;
}

.menu-home a {
    width: 100%;
    height: 100%;
}

.menu-about {
    width: 16%;
}

.menu-about ul {
    width: 60% !important;
    min-width: 240px !important;
}

.menu-services {
    width: 16%;
}

.menu-research {
    width: 16%;
}

.menu-patient ul {
    width: 60% !important;
    min-width: 255px !important;
}

.menuNurse ul {
    width: 60% !important;
    min-width: 212px !important;
}

.menu-patient {
    width: 16%;
}

.menu-media {
    width: 16%;
}

.menu-media ul {
    width: 60% !important;
    min-width: 190px !important;
}

.menu li.menu-contact {
    width: 13%;
    text-align: right;
}

.menu .subMenu li:hover > a {
    background: url(/images/bullet-w.gif) no-repeat 10px 18px var(--themeTwoBg);
}

.menu .subParentMenu > a {
    background: url(/images/bullet-b.gif) no-repeat calc(100% - 10px) 18px var(--themeOneBg);
}

/* Mobile Menu CSS */
.toggleMenu {
    font: 700 20px/30px var(--headingFont);
    color: #fff;
    background: var(--themeThreeBg);
}

.Wrapper {
    font: 400 14px/20px var(--headingFont);
    background: var(--themeOneBg);
    color: #000;
}

.parentMenu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.parentMenu li:hover,
.parentList.actMenu {
    background: var(--themeTwoBg);
    color: #fff;
}

.parentList.actMenu ul {
    background: var(--themeOneBg);
    color: #000;
}

.subMenu li a:hover {
    background: var(--themeTwoBg);
}

/* ----- Credibility ----- */
#Credibility {
    padding: 56px 0px 56px 0px;
    text-align: center;
}

#Credibility li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 35px;
}

/* ----- Footer ----- */
#Footer-Container {
    background: url(/images/footer-bg.jpg) no-repeat center top;
    min-height: 851px;
    color: var(--fontLight);
    background-size: cover;
}

.locations ul {
    padding-bottom: 40px;
}

.locations li {
    display: inline-block;
    vertical-align: top;
    width: 24%;
    text-align: center;
}

/*.locations li:first-child {
    padding-right: 171px;
}*/

/*.locations li:last-child {
    padding-left: 180px;
}*/

.locAdd h3 {
    font: 600 26px/30px var(--headingFont);
    padding-bottom: 10px;
}

.locAdd p,
.locDirection {
    font: 400 16px/25px var(--headingFont);
    position: relative;
}

.locAdd p {
    padding-bottom: 8px;
}

.locDirection:hover {
    color: var(--themeThreeBg);
}

.locDirection:hover::after {
    background: var(--themeThreeBg);
}

.locDirection::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 2px;
    right: 0;
    background: #dcdcdc;
    width: 144px;
    margin: 0 auto;
    height: 1px;
}

.locDirections::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 2px;
    right: 0;
    background: #dcdcdc;
    margin: 0 auto;
    width: 144px;
    height: 1px;
}

.locTime {
    text-align: center;
    font: 400 16px/25px var(--headingFont);
}

.locTell {
    padding: 20px 0 30px 0;
}

.locCall,
.locFax {
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding: 0 30px;
    font: 500 20px/25px var(--headingFont);
}

.locCall:hover,
.locFax:hover {
    color: #000;
}

.locCall:hover::after {
    background: url(/images/call-icon.png) no-repeat center center;
}

.locCall::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 4px;
    background: url(/images/loc-call-icon.png) no-repeat center center;
    width: 20px;
    height: 20px;
}

.locCall::before {
    content: '';
    position: absolute;
    right: 9px;
    top: 1px;
    width: 1px;
    height: 25px;
    background: #a2a2a2;
}

.locFax:hover::after {
    background: url(/images/fax-icon.png) no-repeat center center;
}

.locFax::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 4px;
    background: url(/images/loc-fax-icon.png) no-repeat center center;
    width: 20px;
    height: 20px;
}

.locAppo {
    position: relative;
}

.locAppo a {
    display: inline-block;
    vertical-align: top;
    font: 500 18px/18px var(--headingFont);
    background: var(--themeTwoBg);
    padding: 18px 23px;
    border-radius: 40px;
    color: var(--fontLight);
}

.locAppo a:hover {
    background: var(--themeOneBg);
    color: var(--fontDark);
}

.locAppo::after {
    content: '';
    position: absolute;
    right: 0px;
    top: 22px;
    width: 435px;
    height: 1px;
    background: #7b7b7b;
}

.locAppo::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 22px;
    width: 435px;
    height: 1px;
    background: #7b7b7b;
}

#Footer {
    padding: 95px 5px;
    text-align: center;
}

.socLogo {
    padding: 57px 0px 40px 0;
}

.socLogo li {
    width: 46px;
    height: 46px;
    display: inline-block;
    vertical-align: top;
    line-height: 44px !important;
    margin: 3px 10px;
    color: var(--fontLight);
    border-radius: 50px;
    font: 400 16px/20px var(--headingFont);
}

.facebook {
    background: #1977f3;
}

.twitter {
    background: #000;
    position: relative;
}

.instagram {
    background: #d60562;
}

.youtube {
    background: #ff0000;
}

.linkedin {
    background: #0097e9;
}

.twitter a::before {
    content: '';
    background: url(/images/twitter-icon.png) no-repeat center center;
    width: 100%;
    height: 100%;
    display: block;
    margin-top: -1px;
}

.socLogo li:hover.twitter a::before {
    background: url(/images/twitter-hv-icon.png) no-repeat center center;
}

.socLogo li:hover {
    color: var(--fontDark);
    background: var(--fontLight);
}

.socLogo li a {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 100%;
}

.socLogo li a::before {
    font-size: 24px;
}

.socLogo li span {
    display: none;
}

.footLinks {
    font: 400 16px/20px var(--headingFont);
    text-align: center;
}

.footLinks a {
    display: inline-block;
    vertical-align: middle;
    padding: 15px 5px;
    color: var(--fontLight);
}

.footLinks a:hover {
    color: var(--themeThreeBg);
}

.footLinks span {
    display: inline-block;
    vertical-align: middle;
}

.copyrights {
    padding: 30px 0px 20px 0px;
    font: 400 16px/20px var(--headingFont);
}

.ypoLogo {
    padding: 10px 0px 20px 0px;
}

.ypoLogo a {
    display: inline-block;
}

.nbs-flexisel-nav-left,
.nbs-flexisel-nav-right {
    font-size: 26px;
}

.search-bx-header label {
    font: 700 14px/20px var(--siteFont);
    color: var(--fontLight);
    display: none;
}

@media screen and (max-width: 1200px) {
    #Patient li:last-child a {
        padding: 12px 5px 12px 19px;
    }

    .menu li.menu-contact {
        width: 11%;
    }
}

@media screen and (max-width: 1186px) {
    #Patient li a {
        padding: 12px 10px;
    }

    #Patient {
        min-height: unset;
    }

    .register,
    .callAppoint {
        float: none;
    }

    .logo {
        width: 740px;
    }

    .menu li.menu-contact {
        text-align: center;
    }

    .locAppo::after,
    .locAppo::before {
        width: 30%;
    }
}

@media screen and (max-width: 1000px) {

    .menu-about,
    .menu-services,
    .menu-patient,
    .menu-research,
    .menu-media {
        width: 15%;
    }

    .menu li.menu-contact {
        width: 12%;
    }

    .locations li:first-child {
        padding-right: 110px;
    }

    .locations li:last-child {
        padding-left: 100px;
    }
}

@media screen and (max-width: 950px) {
    .logo {
        width: 630px;
    }

    .locations li:first-child {
        padding-right: 50px;
    }

    .locations li:last-child {
        padding-left: 50px;
    }
}

@media screen and (max-width: 850px) {
    .logo {
        width: 550px;
    }

    .menu li,
    .accessible_on .menu li {
        font: 500 14px/15px var(--headingFont);
    }

    .menu li.menu-contact {
        width: 14%;
    }
}

@media screen and (max-width: 760px) {
    .logo {
        width: auto;
        display: block;
        text-align: center;
        padding: 0 0 20px 0;
    }

    #Header {
        padding: 20px 20px 20px 20px;
    }

    .appoint {
        text-align: center;
        display: block;
    }

    .search-bx-header {
        margin-top: 0;
    }

    .menu-about,
    .menu-patient {
        width: 17%;
    }

    .menu li.menu-contact {
        width: 16%;
    }

    .menu-media {
        width: 13%;
    }

    .locations li:first-child {
        padding-right: 20px;
    }

    .locations li:last-child {
        padding-left: 20px;
    }

    #Footer {
        padding: 30px 5px;
    }

    .locAppo::after,
    .locAppo::before {
        width: 25%;
    }
}

@media screen and (max-width: 640px) {
    header {
        position: relative;
    }

    #Menu-Container {
        position: relative;
    }

    #Main-Menu {
        display: none;
    }

    #Mobile-Menu {
        display: block;
    }

    .footLinks a {
        padding: 5px 10px;
    }

    #gdpCookie,
    #gdp_popup .cc-cp-foot-byline {
        font: 400 14px/20px var(--siteFont) !important;
    }

    .cookie-main {
        padding: 5px !important;
        line-height: unset !important;
    }

    .cookie-main p {
        padding: 0px 0px 5px 0px !important;
        margin: 0px !important;
    }

    .cookie-main li.cookie-button a {
        margin: 0px !important;
    }

    .cookie-main li.cookie-content {
        margin: 0px !important;
    }

    .locations li:first-child {
        padding-right: 0px;
    }

    .locations li:last-child {
        padding-left: 10px;
    }

    .socLogo {
        padding: 30px 0px 20px 0;
    }

    .locAppo::after,
    .locAppo::before {
        display: none;
    }

    #Credibility {
        padding: 30px 20px;
        text-align: center;
    }

    #Credibility li {
        padding: 0;
    }

    #Footer-Container {
        background: #414141;
    }
}

@media screen and (max-width: 600px) {
    .locations li {
        width: 47%;
    }

    .locations li:last-child {
        padding-top: 20px;
    }

    .locAdd p,
    .locDirection {
        font: 400 15px/25px var(--headingFont);
    }

    .locCall::before {
        display: none;
    }

    .locTell {
        padding: 15px 0 15px 0;
    }

    #Footer-Container {
        min-height: auto;
        background-size: cover;
    }
}

@media screen and (max-width: 450px) {
    #Patient li {
        font: 500 14px/20px var(--headingFont);
        min-width: 175px;
    }

    #Patient li:last-child a {
        padding: 5px 5px 5px 6px;
    }

    #Patient li:first-child a {
        padding: 5px 25px 5px 5px;
    }

    #Patient li a {
        padding: 5px 5px;
    }

    #Patient li::after {
        display: none;
    }

    #Patient {
        padding: 10px;
        text-align: left;
    }

    .locCall {
        padding: 0 10px 0 20px;
        font: 500 16px/25px var(--headingFont);
    }

    .locFax {
        padding: 0 0px 0 20px;
        font: 500 16px/25px var(--headingFont);
    }

    .locCall::after,
    .locFax::after {
        left: -5px;
    }
    .tableCell.logo {
        height: 83px;
    }
}

@media screen and (max-width: 420px) {
    #Patient li {
        font: 500 12px/20px var(--headingFont);
        min-width: 139px;
    }
}
