/* Main structure of the site */

html,body{
	/*height:100%;*/
	height: -webkit-fill-available;
	background-color: #e9f2f9;
	margin:0px;
	font-family: "Segoe UI","Helvetica Neue",Arial,"Noto Sans",sans-serif;
}

body {
/*
background: rgb(207,216,224);
background: linear-gradient(180deg, rgba(207,216,224,1) 0%, rgba(127,141,153,1) 100%);
*/
background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(224,237,237,1) 100%);
}
#outer {
  display: flex;
  flex-direction: column;
  height: 100%;
}


#outer_remaining {
	flex-grow : 1;
	margin: 0px;
	padding: 0px;
}


#inner {
	display:flex;
	flex-flow: row;
	padding: 0px;
	margin:0px;
}

#inner_content {
	flex-grow: 1;
	padding: 0px;
	margin:0px;
}

#header_left {
	float:left;
}
#header_right {
	float:right;
}

#header_link {
	color: #ffffff;
	font-size: large; 
	text-decoration:none;
	padding: 5px 0px 5px 10px;
}

/* Mobile version of the site */

#mobile_top_header_text {
	margin-left: 110px;
	color: #ffffff;
	font-family: 'open sans',Helvetica,Arial,sans-serif;
    font-size: calc(0.80vw + 10px);
	height:16px;

}

#mobile_top {
	display:flex;
	background-color: #58738a;
	flex-direction:row; /* will list the elements on next to each other */
	box-shadow: 1px 4px 9px -2px rgba(0,0,0,0.44);
	border-bottom: solid 1px #2d3d4f;
	z-index: 10;
	margin-bottom:18px;
}

#mobile_top_header {
	background-color: #50687d;
	border-bottom: solid 1px #2d3d4f;
	z-index: 10;
}



#desktop_top{
	display:none;
}


.circleBase {
	border-radius: 50%;
}


div.desktop_logo_spacer {
	width: 106px;
	height:180px;
}

div.desktop_logo_circle_outer {
	background-color: #406151;
	border: solid 1px #2d3d4f;
	width: 206px;
	height:206px;
	position:absolute;
	margin-top: -38px;
	z-index: 11;
	box-shadow: 1px 4px 9px -2px rgba(0,0,0,0.44);
}
div.desktop_logo_circle_inner {
	background-color: #ffffff;
	border: solid 1px #2d3d4f;
	width: 190px;
	height:190px;
	position:absolute;
	margin-top: -30px;
	margin-left: 8px;
	z-index: 12;
}
div.desktop_logo_circle_inner:hover {
	background-color: #eeeeee;
}

div.desktop_logo_circle_inner img {
	width: 146px;
	height:146px;
	position:absolute;
	margin-top: 18px;
	margin-left: 16px;
	cursor:pointer;
	z-index: 13;
}



div.mobile_logo_spacer {
	width: 106px;
}

div.mobile_logo_circle_outer {
	background-color: #406151;
	border: solid 1px #2d3d4f;
	width: 106px;
	height:106px;
	position:absolute;
	margin-top: -20px;
	z-index: 11;
}
div.mobile_logo_circle_inner {
	background-color: #ffffff;
	border: solid 1px #2d3d4f;
	width: 86px;
	height:86px;
	position:absolute;
	margin-top: -10px;
	margin-left: 10px;
	z-index: 12;
}
div.mobile_logo_circle_inner img {
	width: 66px;
	height:66px;
	position:absolute;
	margin-top: 8px;
	margin-left: 6px;
	cursor:pointer;
	z-index: 13;
}

div.mobile_button {
	min-width: 80px;
	flex-grow:1; /* will let all items grow with the same proportion (1) until the container is filled out */
	border-right: solid 1px #2d3d4f;
	flex-direction:column; /* will list the elements on top of each other */
	cursor:pointer;
	padding-top: 3px;
	padding-right:10px;
	padding-bottom:3px;
}

div.mobile_button:hover {
  background-color: rgba(72,94,113,0.85); /*#99ccff;*/
}

div.mobile_button_inactive {
	min-width: 80px;
	flex-grow:1; /* will let all items grow with the same proportion (1) until the container is filled out */
	border-right: solid 1px #2d3d4f;
	flex-direction:column; /* will list the elements on top of each other */
	padding-top: 3px;
	padding-right:10px;
	padding-bottom:3px;
}


div.mobile_button_icon {
	color:#ffffff;
	font-size: 16pt;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align:center;
}


div.mobile_button_text {
	color:#ffffff;
	text-align:center;
	font-size: 12pt;
	font-family: 'open sans',Helvetica,Arial,sans-serif;
    font-size: calc(0.80vw + 10px);
}



#menu_container_mobile{
	display:none;
	position:fixed;
	/*left: -250px;*/ /* start hidden */
	background-color: rgba(80,104,125, 0.98); /*#50687d;*/
	right: 0px;
	z-index: 9;
	top:74px;
	width:100%;
}

#menu_container_desktop{
	display:none;
	height: 500px;
	background-color: rgba(80,104,125, 1.00); /*#50687d;*/
	box-shadow: 1px 4px 9px -2px rgba(0,0,0,0.44);
	margin-left: 0px;
	z-index:10;
}

#menu_container_desktop_logo {
	text-align:center;
	padding-top: 5px;
	padding-bottom: 10px;
}


/* Desktop version of the site */

@media only screen and (min-width: 768px){
	#mobile_top_header {
		display:none;
	}
	#mobile_top {
		display:none;
	}
	
	
	#desktop_top {
		display:flex;
		flex:1;
		height: 39px;
		max-height: 39px;
		margin: 0px;
		background-color:  rgb(75 98 119); /*#50687d;*/#58738a;
		box-shadow: 1px 4px 9px -2px rgba(0,0,0,0.44);
		z-index:10;
}
	
	#desktop_top_left {
		width:156px;
	}

	#desktop_top_center {
		flex:1; /* fill width to the content */
		padding-top: 4px;
		/* The following centers the content */
		text-align:center;
	}

	#desktop_top_right {
		width:306px;
		padding-top: 5px;
		padding-bottom: 4px;
		padding-right: 14px;
	}
	
	span.desktop_top_phone, span.desktop_top_phone a {
		color: #ffffff;
	}

	#menu_container_mobile {
		display:none;
	}

	#menu_container_desktop {
		display:block;
	}
}



/* Menu style */
.menu_icon {
  width: 20px;
}
.header-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 200px;
} 
 
/* each navigation item anchor */
.header-menu li a {
  display: block;
  color: #ffffff;
  padding: 8px 16px;
  text-decoration: none;
} 


.header-menu li a:hover {
  background-color: rgba(72,94,113,0.85); /*#99ccff;*/
  color: white;
}


/* Mobile menu */

.mobile-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* each navigation item anchor */
.mobile-menu li a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 20px 2px 10px 30px;
  height:32px;
  width:100%;
}


.mobile-menu li a:hover {
  background-color: rgba(72,94,113,0.85); /*#99ccff;*/
  color: white;
}

.mobile-menu-icon {
  width: 20px;
}



/* For desktop screens */
@media screen and (min-width: 768px) { 
	#toggle {
	display:none;
	}
 
} 


div.content-box {
	background-color: rgba(255,255,255,0.90);
	border: solid 1px rgba(200,200,200,0.90);
	margin: 20px;
	padding: 10px;
}

div.content-box h1 {
	font-family: 'open sans',Helvetica,Arial,sans-serif;
	font-size: 14pt;
	font-weight: bold;
}


/* Prices */

div.header-box {
	width: 28px;
	height: 28px;
	background-color: #406151;
	border: 0px;
	float:left;
	margin-right:7px;
}
span.header-title {
	font-size: 16pt;
	font-weight: bold;
}


	div.price-item {
		margin-top: 20px;
		align-items:center;
		display:flex;
	}
	div.price-content {
		flex-grow: 1;
	}

	div.price-header {
		display:flex;
		justify-content: space-between;
		margin-bottom: 5px;
	}
	
	h4.price-title {
		display:inline-block;
		margin:0px;
	}
	
	span.price-connector {
		align-self:center;
		border-bottom-style: dotted;
		border-bottom-width: 1px;
		border-bottom-color: #cccccc;
		margin-left: 5px;
		margin-right: 5px;
		height:1px;
		flex-grow: 1;
		bottom: calc((-1px)/2);
	}
	span.price-amount {
		float:right;
		font-size: 10pt;
	}
	div.price-description {
		font-size: 10pt;
		margin-right: 50px;
	}
	
	
	
/*
p.notification {
    font-family: Roboto, sanf serif; 
    font-weight:300;
    font-size: 14pt;
}
*/

div.notification {
    font-family: Roboto, sanf serif; 
    font-weight:300;
    font-size: 13pt;
}

div.notification_box {
	border: solid 1px #2d3d4f;
    background-color: rgba(255,255,255,0.70);
/*    min-height:250px; */
    margin-right:50px;
    padding:20px;
}
