
/****************************************************************************************************/
/* BASICS */ 
/****************************************************************************************************/

/********************************************************************************/
/* COLORS */
/********************************************************************************/

:root {
	/* Light Blue */
	/* color: #bae9f9 rgba(186, 233, 249, 1) */
	
	/* Blue */
	
	/* Orange */
	--link-color: #ffa901;
	
	/* Dark Orange */
	/* color: #e57102 / rgba(229, 113, 2, 1) */
	--highlight: #e57102;
	
	/* Light Grey */
	/* color: #dfe3e4 / rgba(223, 227, 228, 1) */
	--light-grey: #dfe3e4;
	
	/* Medium Grey */
	/* color: #797c7e / rgba(121, 124, 126, 1) */
	--medium-grey: #797c7e;
	
	/* Dark Grey */
	/* color: #242526 / rgba(36, 37, 38, 1) */
	--dark-grey: #242526;
}

/********************************************************************************/
/* PRESET TAGS */
/********************************************************************************/

* {
	margin: 0;
	padding: 0;
}

html {
	height: 100%;
	min-height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}

body {
	color: var(--medium-grey);
	display: flex;
	flex-direction: column;
	font-family: Alegreya Sans SC, Arial, Verdana, Sans-Serif;
	font-size: 16px;
	font-weight: normal;
	justify-content: space-between;
	letter-spacing: 1px;
	line-height: 1.6em;
	min-height: 100%;
	overflow: hidden;
	position: relative;
	text-align: left;
}

img {
	border: 0;
	display: block;
	padding: 0;
	margin: 0;
}

h1, h2, h3, h4 {
	font-weight: lighter;
	line-height: normal;
}

h1, h2 {
	display: block;
	margin-bottom: 20px;
	text-align: center;
}

h1 {
	font-size: 2.4em;
	line-height: 1.6em;
}

h2 {
	font-size: 1.6em;
	line-height: 1.4em;
}

a {
	outline: medium none;
	text-decoration: none;
	color: #e57102;
}

ul {
	list-style-type: none;
}

p {
	margin-bottom: 1em;
}

/********************************************************************************/
/* CUSTOM */
/********************************************************************************/

a.default {
	color: var(--link-color);
	padding: 1px 4px;
}

a.default:hover {
	color: #ffffff;
	background-color: var(--highlight);
	box-shadow: 2px 0 0 var(--highlight), -2px 0 0 var(--highlight);;
}

.text-center {
	display: block;
	text-align: center;
}

.clearfix {
	*zoom: 1;
}

.clearfix:before,
.clearfix:after {
	display: table;
	line-height: 0;
	content: "";
}

.clearfix:after {
	clear: both;
}

.doctorfou {
	display: inline-block;
	vertical-align: top;
	width: 80px;
	height: 16px;
	margin-top: 4px;
	background-image: url(images/doctorfou-small.png);
	background-repeat: no-repeat;
	font-size: 0;
	background-color: transparent;
}

/******************************//* EXCEPTIONS */

.exception {
	color: red;
	display: block;
	padding: 10px;
	margin: 10px;
	border: 1px solid red;
	background-color: #ffffff;
}

.exception h2 {
	margin-bottom: 10px;
}

/* Scrollbar *******************/

.custom-scrollbar {
	overflow-x: auto;
	padding-bottom: 20px;
}

.custom-scrollbar::-webkit-scrollbar-track,
.custom-scrollbar ::-webkit-scrollbar-track {
	background-color: transparent;
	border-radius: 6px;
}

.custom-scrollbar::-webkit-scrollbar,
.custom-scrollbar ::-webkit-scrollbar {
	background-color: transparent;
	height: 8px;
	width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-thumb,
.custom-scrollbar ::-webkit-scrollbar-thumb {
	background-color: rgba(121, 124, 126, 0.15);
	border-radius: 6px;
}

/****************************************************************************************************/
/* LAYOUT */ 
/****************************************************************************************************/

.simple-layout {
	box-sizing: border-box;
	height: 100%;
	max-width: 100%;
	position: relative;
}

/********************************************************************************/
/* HEADER */ 
/********************************************************************************/

.simple-layout header {
	border-bottom: 1px solid var(--light-grey);
	box-sizing: border-box;
	margin: auto;
	max-width: 1064px;
	padding: 10px 20px;
	text-align: left;
	width: 100%;
}

.simple-layout .doctorfou-logo {
	display: block;
	line-height: initial;
}

/******************************//* HEADER SMALL */

#header-small {
	position: relative;
	width: 100%;
	max-width: 1024px;
	margin: 0 auto 20px;
}

#header-small .wrapper {
	width: 100%;
	border-bottom: 1px solid #dfe3e4;
	padding: 15px 0 10px 15px;
	max-width: 1024px;
	margin: 0 auto;
	box-sizing: border-box;
	text-align: left;
	background-color: #ffffff;
}

#header-small img {
	width: 150px;
}

/********************************************************************************/
/* CONTENT */
/********************************************************************************/

.simple-layout .main-container {
	box-sizing: border-box;
	height: 100%;
	margin: auto;
	max-width: 1064px;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 20px;
	width: 100%;
}

.simple-layout .main-container img {
	margin: 0 auto;
	max-width: 100%;
}

.profile-image {
	display: block;
	width: 120px;
	height: 120px;
	margin: 10px auto 20px;
	border-radius: 50%;
	overflow: hidden;
}

.profile-image img {
	display: block;
	max-width: 100%;
}

/********************************************************************************/
/* FOOTER */ 
/********************************************************************************/

#footer {
	display: block;
	width: 100%;
	position: relative;
	clear: both;
	z-index: 2;
}

/******************************//* COPYRIGHT */

footer {
	position: relative;
	z-index: 1;
}

#copyright {
	background-color: var(--dark-grey);
	padding: 40px 20px;
	text-align: center;
}

#copyright li {
	display: inline-block;
}

/********************************************************************************/
/* RESPONSIVE */ 
/********************************************************************************/

@media (max-width: 960px) {
	
	.simple-layout {
		font-size: 12px;
	}
}