/*
CHILDREN'S MINNESOTA BRANDING COLOR PALETTE

Primay Colors
#012169 - dark blue   (use white text if background)
#009CDE - medium blue (use white text if background)

Secondary Colors
#572932 - maroon      (use white text if background)
#F5DADF - pink        (use gray text if background)
#71CC98 - green       (use white text if background)
#B9D9EB - light blue  (use gray text if background)
#DF4661 - red         (use white text if background)
#FEDB00 - yellow      (use gray text if background)
#A15A95 - purple      (use white text if background)
#FEAD77 - orange      (use white text if background)

Text coolors
#000000 - Black
#5C5C5C - Dark gray
#ACAEB0 - Light blue gray

Schedule Colors
#B5A3A6 - Maroon for the U
#75A697 - Darker green for Woodbury (wby)
#e3c1b3 - Light red for Mpls Annex

FONT FAMILIES

Headlines, subheadings. Headlines in upper case.
font-family: "Trade Gothic", Arial, sans-serif;

Body copy, quotes
font-family: Georgia, serif;

Functional body copy like caption
font-family: Avenir, Arial, sans-serif;


/* Global styles
------------------------------------*/
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    'header'
    'main'
    'footer';
  color: #5C5C5C;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: Georgia, serif;
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;

}

.status-test{
  background-image: none;
}

h1, h2 {
  color: #012169;
}

h3{
  font-family: Avenir, Arial, sans-serif;
  font-weight: 500;
  color:#ACAEB0;
  padding: 0;
  margin: 5px 0 0 0;
}
h4 {
  font-family: Avenir, Arial, sans-serif;
  font-weight: bold;
  color: #A15A95;
  margin: 5px 0 -5px 10px;
  padding: 5px 0 5px 0;
}
p{
  margin-top: 5px;
  cursor: auto;
}
ul ul li:last-child{
  padding-bottom: 5px;
}

a.node-target {
  color: #A15A95;
}

a.node-target:hover {
  text-decoration: underline;
  cursor: pointer;
}


#page-container {
  position: relative;
  min-height: 100vh;
}

#wrapper-minus-footer {
  padding-bottom:2.5rem; /* Footer height */
}


.content-wrap {
  max-width: 800px;
  width: 85%;
  margin: 0 auto;
  padding: 10px 0;
}

/* Flex styles for header (and maybe footer)
-----------------------------------------------*/

.flex-container {
 /* We first create a flex layout context */
 display: flex;

 /* Then we define the flow direction
    and if we allow the items to wrap
  * Remember this is the same as:
  * flex-direction: row;
  * flex-wrap: wrap;
  */
 flex-wrap: nowrap;

 /* Then we define how is distributed the remaining space */
 justify-content: space-around;
 padding: 0;
 margin: 0;
 list-style: none;
}


/*
.header-logo {
 min-width: 160px;
}

.header-title {

 padding-left: 20px;
}

.header-button {
 width: 100px;
 min-width: 100px;
}

.header-button-box {
 width: 100px;
 text-align: center;
 height: 50px;
 padding: 15px 5px;
 border-radius: 8px;
 font-family: Avenir, Arial, sans-serif;
 background-color: #B9D9EB;
}
*/


/* Header styles
------------------------------------*/
/*
header {
  background: #012169;
  height: 80px;
  padding: 10px;
}
header h1 {
  margin: 0;
  padding-top: 10px;
  color: white;
  font-family: "Trade Gothic", Arial, sans-serif;
  font-size: 20px;
  vertical-align: bottom;
}

@media (max-width:833px) {
  header h1 {
    margin: 0px;
    padding-top: 8px;
    color: white;
    font-family: "Trade Gothic", Arial, sans-serif;
    font-size: 20px;
    vertical-align: bottom;
  }
}


#childrens-logo {
  float: left;
  height: 50px;
}
*/

/* Breadcrumbs styles
------------------------------------*/
#breadcrumbs .content-wrap {
  font-family: "Trade Gothic" , Arial, sans-serif;
  font-size: 14px;
  color: #012169;
  padding-top: 2px;
  padding-bottom: 0;
  cursor: pointer;
}

#breadcrumbs a {
  color: #A15A95;
}

#breadcrumbs a:hover {
  text-decoration: underline;
  cursor: pointer;
}

/* Search Area styles
------------------------------------*/
#search-area {
	margin: 0 auto;
	text-align: center;
	padding: 0;
	width: 40%;
  display: inline-block;
	-webkit-border-radius: 10px 10px 0 0;
	border-radius: 10px 10px 0 0;

}

#search-area input {
	width: 80%;
	text-align: center;
	border-radius: 8px;
}

.search-breadcrumb {
  font-size: 10px;
  padding: 10px 0 5px 0;
  margin: 0;
  line-height: 1.1em;
  color: #ACAEB0;
}
.search-result{
  font-size: 16px;
  margin: 0 0;
  padding: 0 0 10px 0;
  line-height: 1.1em;
}


/* NodeInfo styles
------------------------------------*/
.node-info .content-wrap{
  padding-bottom: 0;
}
.node-info #phone-script,
.node-info #info,
.node-info #question {
  padding-bottom: 5px;
}
.node-info p {
  padding-left: 10px;
  margin-bottom: 2px;
}
.node-info ul{
  margin-top: 3px;
}

.node-info h2{
  margin-bottom: 10px;
}


/* Branches and Leaves styles
------------------------------------*/

.branches .content-wrap {
  padding-top: 0;
}
.branches-list{
  list-style: none;
  padding-left: 0;
  font-family: Avenir, Arial, sans-serif;
  font-size: 1.2em;
  line-height: 1.2;
}

.branches-list li{
  position: relative;
  padding-left: 40px;
  margin-bottom: 10px;
}
.leaf:before {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  /* background-image: url('../img/bullet-circle-two.png'); */
  background-image: url('../img/bullet-circle.png');
  background-size: cover;
  background-position: center;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.branch:before {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  background-image: url('../img/bullet-circle.png');
  /* background-image: url('../img/bullet-circle-one.png'); */
  background-size: cover;
  background-position: center;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

#branches-menu a {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 0 10px;
}

#branches-menu a:hover {
  color: #A15A95;
  /* border: 1px dotted #A15A95; */
  background: #B9D9EB;
  border-radius: 6px;
  cursor: pointer;
}

/* Page Information Styles
------------------------------------*/

.urgent {
  display:inline-block;
  background-color: red;
  font-weight: 600;
  color: white;
  padding: 3px 6px;
  border-radius: 6px;
  margin-top: 2px;
  margin-bottom: 2px;
}

.caution {
  display:inline-block;
  background-color: gold;
  padding: 3px 6px;
  border-radius: 6px;
  margin-top: 2px;
  margin-bottom: 2px;
}


/* Provider roster styles
------------------------------------*/
.providers-roster ul {
  padding: 0;
  margin-top: -35px;
}

.provider-schedules li {
  display: block;
  border: 2px solid lightgray;
  border-radius: 8px;
  height: auto;
  margin-bottom: 10px;
}

.headshot {
  float: left;
  padding: 10px;
  width: 95px;
  border-radius: 18px;
  /* border: 1px solid red; */
}
.schedule-day {
  display: inline-block;
  text-align: center;
  width: 16%;
  padding: 5px 5px;
  margin: 0;
  /* border: 1px solid pink; */
}
.provider-name {
  padding-top: 10px;
  padding-left: 85px;
  margin: 0;
  /* border: 1px solid red; */
  font-family: "Trade Gothic", Arial, sans-serif;
  font-weight: 600;
}

.schedule-day h3 {
  font-family: Avenir, Arial, sans-serif;
  font-weight: 300;
  font-size: 10px;
  padding: 0;
  margin: 0;
}

.provider-prefs {
  clear: both;
  padding: 5px 10px 1px 10px;
  background: #F5DADF;
  font-weight: 500;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* reset default styles for the provider-prefs ul and li tags */
.provider-prefs ul{
  display: block;
  list-style-type: disc;
  margin: 0;
  padding: 0 0 0 40px;
}
.provider-prefs li {
  display: list-item;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
}


.schedule-day .unavailable,
.schedule-day .available-mpls,
.schedule-day .available-annex,
.schedule-day .available-mg,
.schedule-day .available-mtka,
.schedule-day .available-remote,
.schedule-day .available-shr,
.schedule-day .available-stp,
.schedule-day .available-wby,
.schedule-day .available-mixed,
.schedule-day .available-u {
  background: lightgray;
  padding: 5px 0px;
  /* border: 1px solid gray; */
  margin: 3px 0px;
  font-family: Avenir, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  border-radius: 10px;
}
.schedule-day .available-mg{
  background: #efc5ff;
}
.schedule-day .available-mpls{
  background: #edd9b4;
}
.schedule-day .available-mtka{
  background: #bec0f3;
}
.schedule-day .available-shr{
  background: #f8ccab;
}
.schedule-day .available-stp{
  background: #cff4ea;
}
.schedule-day .available-wby{
  background: #75A697;
}
.schedule-day .available-u{
  background: #B5A3A6;
}
.schedule-day .available-annex{
  background: #e3c1b3;
}
.schedule-day .available-mixed{
  background: #B9D9EB;
}

/* Referrals styles
------------------------------------*/
.referral-block {
  display: block;
  border: 2px solid lightgray;
  border-radius: 8px;
  height: auto;
  margin-bottom: 10px;
  /* overflow: hidden; */
}
.referral-column {
  display: flex;
  flex-direction: column;
  /* border: 1px solid black; */
}
.referral-row1 {
  display: flex;
  flex-direction: row;
  /* border: 1px solid navy; */
}
.referral-row2{
  padding: 10px 10px 0 10px;
  border-radius: 0 0 6px 6px;
  background: #F5DADF;
}
.referral-thumbnail {
  width: 150px;
  height: auto;
  /* border: 1px solid red; */
}
.referral-thumbnail img {
  border-radius: 10px;
  margin: 5px;
}
.referral-description {
  width: 100%;
  padding-left: 15px;
  /* border: 1px solid blue; */
}
.referral-desription h3, h4 {
  margin: 0;
}

.referral-description ul {
  display: inline-block;
  padding: 0;
  margin: 0;
  /* border: 1px solid yellow; */
}

.referral-location li {
  display: inline-block;
  padding: 5px 15px;
  margin: 5px 5px 5px 0;
  /* border: 1px solid green; */
  border-radius: 10px;
}

.referral-location p, h5{
  font-family: Avenir, Arial, sans-serif;
  font-weight: normal;
  margin: 0;
  text-align: center;
}
.referral-location p {
  font-size: 12px;
}
.referral-location h5 {
  font-size: 15px;
}
.ref-stp {
  background: #cff4ea;
}
.ref-mpls {
  background: #edd9b4;
}
.ref-mtka {
  background: #bec0f3;
}
.ref-wby {
  background: #75A697;
}
.ref-gr8 {
  background: #572932;
  color: white;
}
.referral-md-practice a {
  font-family: inherit;
  color: inherit;
  text-decoration: none;
}
.referral-md-practice a:hover{
  text-decoration: underline;
}


/* Footer styles
------------------------------------*/
footer {
  background: #012169;
  color: #F7FFF7;
}
footer .content-wrap{
  padding: 1px;
  height: 50px;
}

#footer{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px; /* Footer height */
}

#footer span{
  display: inline-block;
  position: relative;
  bottom: 15px;
}
#footer .logo{
  display: inline-block;
}
#footer .logo img{
  height: 40px;
  padding-right: 20px;
}
