/* -----------------------------------------------------------------------*/
/* >>>>>>>> PATIENT PORTAL CSS <<<<<<<<<<<<<<<<-*/
/* ---------------------------------------------------------------------*/

/*EXAMPLE OF FONT IMPORT */
/*@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600);
or


@font-face{
	font-family: "MYNAME";
	src: url("../fonts/FILE.woff2");
}*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&family=Playfair+Display:wght@400;500&display=swap');


@font-face{
	font-family: "Astra";
	src: url("../fonts/astra.woff");
}

* {
    padding:0; margin:0;
}

html, body {
    height: 100%;
}

body {
/*  -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;*/
    font-family: 'Montserrat', sans-serif;
    background-image: linear-gradient(180deg, #f0f4fb 0%, #fff 100%);
}

p {

}

a {
    text-decoration: none;
}


/* ovverride h2 colors on page to a standard grey */
.content .text h2 {
 color: #767561;
}
 
/*When the body color conflicts with the tooltip */
p.aToolTipContent {
/*     color: white !important; */
}


/* ---------------------------------------------------*/
/* >>>>>>>>>>>>>>>>>>>>> HEADER <<<<<<<<<<<<<<<<<<<<-*/
/* -------------------------------------------------*/
.header-wrapper {
    background-color: white;
    border-bottom: 1px solid #f1f1f1;
}

.top-header {
    background-color: #f0f4fb;
    border-bottom: 1px solid #eaeaea;
    height: 40px;
}

.top-header .top-container{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 1240px;
    height: 40px;
    padding-left: 50px;
    padding-right: 50px;
    margin:0 auto;
    box-sizing: border-box;
}

.top-header .top-container ul{
    list-style-type:none;
    display: flex;
}

.top-header .top-container ul a{
    color: #075aae;
    margin: 0px 17px;
    font-family: Montserrat, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
}

.mid-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    height: 109px;
    padding-left: 50px;
    padding-right: 50px;
    padding: 15px 50px 12px;
    margin:0 auto;
    box-sizing: border-box;
    
}

.logo{

}

.logo a{

}

.logo img{

}

/* ---------------------------------------------------*/
/* >>>>>>>>>>>>>>>>>>>>> MAIN NAV <<<<<<<<<<<<<<<<<<-*/
/* -------------------------------------------------*/

.main-menu {

}

.main-menu ul {
    list-style-type:none;
    margin-right: 44px;
    padding-bottom: 2px;
}

.main-menu > ul > li {
    position: relative;
    display: inline-block;
}

.main-menu > ul > li {
    position: relative;
    display: inline-block;
}

.main-menu ul > li.arrow-down  > a:after {
    content: "\e900";
    display: inline-block;
    font-family: Astra;
    font-size: 9px;
    font-size: .6rem;
    font-weight: 700;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-left: 6px;
    line-height: normal;
}

.main-menu ul > li > a {
    color: #666666;
    padding-right: 8px;
    padding-left:8px;
    line-height: 68px;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
}

.main-menu ul > li:hover > a {
    color: #3c7db3
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    line-height: 1.45;
    box-shadow: 0 4px 10px -2px rgb(0 0 0 / 10%);
    width: 240px;
    background: #fff;
    padding-left: 0;
    z-index: 10000;
}

.main-menu >ul > li:hover > ul {
    visibility: visible;
    opacity: 1;
}

.main-menu ul ul > li {
    position: relative;
}


.main-menu ul > li ul > li.arrow-right > a:after {
    content: "\e900";
    display: inline-block;
    font-family: Astra;
    font-size: 9px;
    font-size: .6rem;
    font-weight: 700;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    float: right;
    transform: rotate(-90deg);
    line-height: normal;
}

.main-menu ul ul > li > a {
    color: #666666;
    padding: 10px;
    display: block;
    line-height: 24px;
    transition: all .2s linear;
}

.main-menu ul ul > li:hover > a{

}

.main-menu ul ul ul {
    left: 240px;
    top: 0;
    display: inline;
    position: absolute;
}

.main-menu > ul ul > li:hover > ul {
    visibility: visible;
    opacity: 1;
}

.content {
    border-radius: 10px;
    padding: 8px 20px 20px;
    max-width: 900px;
    margin: 40px auto 20px;
    
}

.text h1 {
    font-family: 'Playfair Display', serif;
    line-height: 1.24;
    font-weight: 400;
    color: #3c7db3;
    padding-top: 20px;
}

.text li,
.text p {
    color: #666666;
    font-size: 17px;
    line-height: 25.5px;
    font-weight: 400;
}

.portal_menu li a {
    font-size: 14px;
}

ul.logged_in_list {
    list-style-type: none;
}
/* --------------------------------------------------------*/
/* >>>>>>>>>>>>>>>>>> BANNER <<<<<<<<<<<<<<-*/
/* ------------------------------------------------------*/



/* --------------------------------------------------------*/
/* >>>>>>>>>>>>>>>>>> LOGIN BUTTON STYLING <<<<<<<<<<<<<<-*/
/* ------------------------------------------------------*/

#signin_form .button, 
#signin_form button {
  background-image: none;
  padding: 8px 16px;
  border: none;
  background: #3c7db3
  transition: all .2s;
  border-radius: 4px;
  -webkit-appearance: none;
}

#signin_form .button:hover, 
#signin_form button:hover {
    transform: scale(1.1);
}

/* ----------------------------------------------------*/
/* >>>>>>>>>>>>>>>>>>>>>> FOOTER <<<<<<<<<<<<<<<<<<<<-*/
/* --------------------------------------------------*/




/* -----------------------------------------------------------------------*/
/* >>>>>>>>>>>>>>>>>>>>>>> PRACTICE SPECIFIC OVERRIDES<<<<<<<<<<<<<<<<<<-*/
/* ---------------------------------------------------------------------*/

p.login_extra.pwd_set_account {
    font-weight: 900;
}

#signin_form p a {
    font-size: 15px;
}

#signin_form p.register a {
    font-weight: 500;
}

/* -----------------------------------------------------------------------*/
/* >>>>>>>>>>>>>>>>>>>>>>>>> MOBILE MEDIA QUERIES<<<<<<<<<<<<<<<<<<<<<<<-*/
/* ---------------------------------------------------------------------*/
@media screen and (max-width: 880px){
	
	
	
	
	
	/************************************************/
	/****************Portal Menu      ***************/
	/************************************************/
	
	a.hamburger {
		display: inline-block;
		margin: 12px 12px 0 0;
		position: absolute;
		top: 63px;
		right: 10px;
        background-color: #303a4b;
	}

    a.hamburger span {
		left: 5px;
	}
	
	a.hamburger:hover {
		 
	}
	
	.portal_menu.open-menu {
		display: block;
		position: absolute;
		width: 100%;
		left: 0;
		z-index: 1000;
		transition: all .4s;
		visibility: visible;
		opacity: 1;
		height: 100%;
    }
	
	.portal_menu.open-menu li {
        padding: 8px 0;
        border-bottom: solid 1px #dadada;
        background-position: 8px 9px;
    }
    .portal_menu.open-menu ul {
        padding: 12px 8px;
        background-color: white;
    }
    .portal_menu.open-menu h3 {
        display: none;
    }
    .portal_menu li a span {
        position: relative;
        width: 100%;
        display: inline-block;
        font-size: 18px;
    }
    .portal_menu.open-menu li a {
        padding-left: 65px;
    }
	
	.portal_menu {
        visibility: hidden;
        opacity: 0;
        height: 0;
    }
	
	/**************************************************/
	
	
	
     .text {
         max-width: none;
     }
	
	.header-container {
		width: 100%;
	}
	
    body {
        padding-top:0;
        width:100%;
        margin:auto;
        overflow-x: hidden;
    }
    
    header {
        position:relative;
        margin-top: 0;
        text-align: center;
    }

    .main-menu {
        display:none;
    }

    .text {
        width:auto;
    }
    
    .text h1 {
        text-align:center;
    } 
    
    input {
        font-size:12px;
    }
    
    .wrapper {
        width: 100%;
        box-shadow:none;
        min-height: 860px;
    }
    .content {
        padding: 0 22px 22px;
        width: auto;
        margin: 20px;
    }

    .content-wrapper {
        width: 100%;
    }
    .container {
        width: auto;
    }
    
    #seconary_nav {
      display: block;
      font-size: 22px;
      margin: 10px auto;
      text-align: center;
      width:80%;
    }
    .right-block {
      display: none;
      text-align: right;
    }

    .draggable {
      max-width: 100% !important;
    }

    #registration {margin-right:0px;}
    .content_inner {padding:0;}
    .text {padding:0px; width:auto;}
    
    .block label {font-size:16px; padding:12px 4px 8px;}
    .block label span {font-size:16px;}

    .menu_main {
        display:none;
    }
    
    .menu_main .link_active {
        display:none;
    }

    .text p.msg {
        color: #f60;
        position: relative;
        right: 0;
    }

    .draggable {
      max-width: 100% !important;
    }
    
    #signin_form {
        max-width: 400px;
        margin: 20px auto;
    }

    #signin_form label {
        font-size: 11px;
    }

    .bg-top-bar {
        font-size: 13px;
        padding: 9px 22px;
    }

    .soc-icons {
        display: none;
    }
    .bg-menu {
        display:block;
        width: 100%;
    }


	.password_block .PWD1, .password_block .PWD2{
		float:none !important;
	}

}

@media screen and (max-width: 420px){
	header.main-header-wrapper,
	header.top-header{
		text-align: left;
	}

    .top-header .top-container {
        justify-content: center;
    }

    .top-header .top-container ul li:first-child{
       display: none;
    }

    .mid-container {
        padding: 15px 10px 12px;
    }

    .logo img {
       max-width: 70%;
    }
}


/* CUSTOM MENU LINK ICON */

.portal_menu li.myshopify_nav {
    background-image: url(/custom/images/shopify_icon.png);
}

.portal_menu li a {
    margin: -3px;
}