/* -----------------------------------------------------------------------*/
/* >>>>>>>> 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@300;400;500&display=swap');

@font-face{
	font-family: "ETModules";
	src: url("../fonts/modules.ttf");
}

* {
    padding:0; margin:0;
}

html, body {
    height: 100%;
}

body {
/*  -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;*/
    font-family: 'Montserrat', sans-serif;
    background-color: #FEFCF7;
}

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 <<<<<<<<<<<<<<<<<<<<-*/
/* -------------------------------------------------*/
.main-header-wrapper {
    background-color: #fff;
    width: 100%;
    box-shadow: 0 1px 0 rgb(0 0 0 / 10%);
}

.header-wrapper {
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
    height: 64px;
}

.top-header{

}

.logo{
    height: 100%;
    display: inline-block;
}

.logo a{

}

.logo img{
    width: 246.72px;
    padding-top: 12px;
    padding-left: 4px;
    height: 39.95px;
}

/* ---------------------------------------------------*/
/* >>>>>>>>>>>>>>>>>>>>> MAIN NAV <<<<<<<<<<<<<<<<<<-*/
/* -------------------------------------------------*/

.main-menu {
    float: right;
    padding-top: 22px;
}

.main-menu ul {
    list-style-type: none;
    padding-right: 17.5px;
}

.main-menu > ul > li {
    display: inline-block;
    font-size: 14px;
    padding-right: 22.5px;
    position: relative;
    line-height: 1em;
}

.main-menu > ul > li.down-carat > a:after {
    font-family: 'ETmodules';
    content: "3";
    font-size: 16px;
    position: relative;
    top: 2px;
    font-weight: 800;
    padding-left: 4px;
}

.main-menu ul > li > a {
    color: rgba(0,0,0,0.6);
    display: block;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    padding-bottom: 25px;
}

.main-menu ul > li > a:before {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 45%;
    background: #8bd5c3;
    height: 2px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.main-menu ul  ul > li > a:before {
    bottom: 0;
}

.main-menu ul > li a:hover:before {
    right: 0;
}

.main-menu ul > li:hover > a {
    color: #bc9342;
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding: 20px 0;
    z-index: 9999;
    width: 240px;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    border-top: 3px solid #977000;
    box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
    -webkit-transform: translateZ(0);
    text-align: left;
}

.main-menu ul li:hover ul {
    visibility: visible;
    opacity: 1;
}

.main-menu ul ul > li {
    padding: 0 20px;
    margin: 0;
    word-wrap: break-word;
}

.main-menu ul ul > li > a {
    color: rgba(0,0,0,0.7);
    padding: 6px 0;
    width: 200px;
    line-height: 28px;;
}

.main-menu ul ul > li:hover > a{

}

.content {
    border-radius: 10px;
    padding: 8px 20px 20px;
    max-width: 900px;
    margin: 40px auto 20px;
}

.text h1 {
    color: #333;
    padding-bottom: 10px;
    line-height: 1em;
    font-weight: 500;
}

.text li,
.text p {
   font-weight: 300;
   color: #212121;
   line-height: 1.9em;
}

.portal_menu li a {
    font-size: 14px;
}


/* --------------------------------------------------------*/
/* >>>>>>>>>>>>>>>>>> BANNER <<<<<<<<<<<<<<-*/
/* ------------------------------------------------------*/



/* --------------------------------------------------------*/
/* >>>>>>>>>>>>>>>>>> LOGIN BUTTON STYLING <<<<<<<<<<<<<<-*/
/* ------------------------------------------------------*/

#signin_form .button, 
#signin_form button {
  background-image: none;
  padding: 5.4px 20px;
  border: 1px solid #8bb28f;
  background-color: #8bd5c3;
  transition: all .2s;
  border-radius: 3px;
  -webkit-appearance: none;
}

#signin_form .button:hover, 
#signin_form button:hover {
  background-color:#7ac2b1;; 
}

/* ----------------------------------------------------*/
/* >>>>>>>>>>>>>>>>>>>>>> FOOTER <<<<<<<<<<<<<<<<<<<<-*/
/* --------------------------------------------------*/




/* -----------------------------------------------------------------------*/
/* >>>>>>>>>>>>>>>>>>>>>>> PRACTICE SPECIFIC OVERRIDES<<<<<<<<<<<<<<<<<<-*/
/* ---------------------------------------------------------------------*/


/* -----------------------------------------------------------------------*/
/* >>>>>>>>>>>>>>>>>>>>>>>>> MOBILE MEDIA QUERIES<<<<<<<<<<<<<<<<<<<<<<<-*/
/* ---------------------------------------------------------------------*/
@media screen and (max-width: 965px){
	
	.logo img {
    
    }
	
	
	
	/************************************************/
	/****************Portal Menu      ***************/
	/************************************************/
	
	a.hamburger {
		display: inline-block;
		margin: 12px 12px 0 0;
		position: absolute;
		top: 3px;
		right: 10px;
        background-color: #8bd5c3;
	}
	
	a.hamburger:hover {
        background-color:#977000;
	}
	
	.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: 540px){

    .text h1 {
        font-size: 32px;
        padding-top: 30px;
    }


    .logo img {
        width: auto;
        height: auto;
        max-width: 60%
    }
    
	header.main-header-wrapper,
	header.top-header{
		text-align: left;
	}
}

@media screen and (max-width: 400px){

    .text h1 {
        font-size: 32px;
    }

	header.main-header-wrapper,
	header.top-header{
		text-align: left;
	}
}