/* 
Door Plastisch Chirurgen - Basics
======================================================================================
*/

body
{
	
	font-family: 'myriad-pro',"Lucida Grande","Helvetica Neue","Helvetica","Arial","Verdana","sans-serif";
	font-size: 16px;
	background: #fff;
	height: 100%;

}

::selection {
	background: rgba(0, 0, 0, 0.2);
	color: #FFF;
	text-shadow: none;
}

html {
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale; 	
}
a {
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	outline: 0;
}
a:hover {
	
}
button:hover, button:focus {
	outline: 0;
	background: transparent;
}

img {
	-ms-interpolation-mode:bicubic;
}
input {
	font-family: 'Open Sans', sans-serif;
}
h1, h2, h3, h4, h5, h6 {	
	font-family: 'myriad-pro', sans-serif;
	font-weight: normal;
	font-style: normal;
	text-rendering: optimizeLegibility;
	margin-top: 0.2rem;
	margin-bottom: 0.5rem;
	line-height: 1.1;

 }
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
	font-size: 80%;
	line-height: 0;
	color: #4a4f55;
}



ul, ol, dl {
	font-weight: normal;
}

.rel {
	position: relative;
}
.my-font {
	font-family: 'myriad-pro', sans-serif !important;
}
.serif {
	font-family: 'Georgia',cursive;
	letter-spacing: 1px !important;
}
.italic {
	font-style: italic !important;
}
.thin {
	font-family: 'myriad-pro';
	font-weight: 100 !important;
}
.light {
	font-family: 'myriad-pro';
	font-weight: 300 !important;
}
.book {
	font-family: 'myriad-pro';
	font-weight: 400 !important;
}
.semibold {
	font-family: 'myriad-pro';
	font-weight: 600 !important;
}
.bold {
	font-family: 'myriad-pro';
	font-weight: 700 !important;
}
.black {
	font-family: 'myriad-pro';
	font-weight: 900 !important;
}

.center {
	text-align: center !important;
}
.uppercase {
	text-transform: uppercase;
}
.radius {
	border-radius: 5px !important;
	-webkit-border-radius: 5px !important;
}
.fw {
	width: 100% !important;
}

.no-margin {
	margin: 0 !important;
}
.no-padding {
	padding: 0 !important;
}



/* 
-----------------------------
BACKGROUND COLORS
-----------------------------
*/

/* Gold */
.bg-primary {
	background-color: #e3b13d !important;
}
.bg-primary.opac {
	background: rgba(227, 177, 61, 0.91) !important;
}
.bg-primary.gradient {
	background: rgba(230, 183, 64, 1);
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZTViNjQwIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2YzZDM1YyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
	background: -moz-linear-gradient(-45deg,  rgba(229,182,64,1) 0%, rgba(243,211,92,1) 100%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(229,182,64,1)), color-stop(100%,rgba(243,211,92,1)));
	background: -webkit-linear-gradient(-45deg,  rgba(229,182,64,1) 0%,rgba(243,211,92,1) 100%);
	background: -o-linear-gradient(-45deg,  rgba(229,182,64,1) 0%,rgba(243,211,92,1) 100%);
	background: -ms-linear-gradient(-45deg,  rgba(229,182,64,1) 0%,rgba(243,211,92,1) 100%);
	background: linear-gradient(135deg,  rgba(229,182,64,1) 0%,rgba(243,211,92,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5b640', endColorstr='#f3d35c',GradientType=1 );

}

/* Light Grey */
.bg-secondary {
	background-color: #aeadac !important;
}
.bg-secondary.opac {
	background: rgba(174, 173, 172, 0.9) !important;
}

/* Light Brown */
.bg-color3 {
	background-color: #c5c5c0 !important;
}
.bg-color3.opac {
	background-color: rgba(197, 197, 192, 0.91) !important;
}

/* Brown */
.bg-color4 {
	background-color: #948a87 !important;
}
.bg-color4.opac {
	background-color: rgba(148, 138, 135, 0.9) !important;
}

/* Magenta/Red */
.bg-color5 {
	background-color: #f0505e !important;
}
.bg-color5.opac {
	background-color: rgba(240, 80, 93, 0.97) !important;
}

/* Dark */
.bg-dark {
	background-color: #272e32 !important;
}
.bg-dark.opac {
	background-color: rgba(40, 47, 51, 0.9) !important;
}
.bg-dark.gradient {
	
}



/* Light Gray */
.bg-lightgray {
	background-color: #d1d1d1 !important;
}
.bg-lightgray.opac {
	background-color: rgba(209, 209, 209, 0.95) !important;
}




/* Dark Gray */
.bg-darkgrey {
	background-color: #565656 !important;
}
.bg-darkgrey.opac {
	background-color: rgba(87, 87, 87, 0.91) !important;
}
/* Light */
.bg-light {
	background-color: #f3f0ee !important;
}
.bg-light.opac {
	background-color: rgba(251, 248, 247, 0.86) !important;
}
/* Light */
.bg-lighter {
	background-color: #f3f3f3 !important;
}
.bg-lighter.opac {
	background-color: rgba(227, 224, 223, 0.92) !important;
}



/* White */
.bg-white {
	background: #fff !important;
}
.bg-white.opac {
	background: rgba(255, 255, 255, 0.9) !important;
}

.bg-none {
	background: none !important;
}
.inner-shadow {
	-webkit-box-shadow: inset 0 -2px 0 0px rgba(0, 0, 0, 0.06), 0 1px 20px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 -2px 0 0px rgba(0, 0, 0, 0.06), 0 1px 20px rgba(0, 0, 0, 0.1) ;
}
.inner-shadow-dark {
	-webkit-box-shadow: inset 0 -3px 0 0px rgba(0, 0, 0, 0.06), 0 2px 20px rgba(0, 0, 0, 0.7);
    box-shadow: inset 0 -3px 0 0px rgba(0, 0, 0, 0.06), 0 2px 20px rgba(0, 0, 0, 0.7) ;
}
.shadow {
	-webkit-box-shadow:  0 1px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1) ;
}
.large-shadow {
	-webkit-box-shadow:  0 1px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1) ;
}

.dark-shadow {
	-webkit-box-shadow: inset 0 -3px 0 0px rgba(0, 0, 0, 0.1), 0 1px 20px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 -3px 0 0px rgba(0, 0, 0, 0.1), 0 1px 20px rgba(0, 0, 0, 0.1) ;
}

.bg-shade {
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC42NSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65)));
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
	background: -o-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
	background: -ms-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
}
.bg-shade-40 {
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC40Ii8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.4)));
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%);
	background: -o-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%);
	background: -ms-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#66000000',GradientType=0 );

}

/* 
-----------------------------
TEXT COLORS
-----------------------------
*/

/* Orange */
.c-primary {
	color: #e3b13d !important;	
}

/* Light Blue */
.c-secondary {
	color: #aeadac !important;
}

/* Light Brown */
.c-color3 {
	color: #c4c3be !important;
}

/* Brown */
.c-color4 {
	color: #a19f9e !important;
}

/* Magenta/Red */
.c-color5 {
	color: #f0505e !important;
}

/* Dark/Purple */
.c-dark {
	color: #272e32 !important;
}

.c-lightgrey {
	color: #d5d3d0 !important;
}
.c-grey {
	color: #d7d6d3 !important;
}
.c-white {
	color: #fff !important;
}






/* 
-----------------------------
IMAGE GRAYSCALE
-----------------------------
*/

.grayscale {
  -webkit-filter: grayscale(100%); /* Webkit Nightlies & Google Chrome Canary */
	-webkit-transition: all .6s ease; /* Fade to color for Chrome and Safari */
	-webkit-backface-visibility: hidden; /* Fix for transition flickering */
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'https://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
	filter: gray; /* IE8-9 */
}

.grayscale:hover {
	filter: none; /* Applies to FF + IE */
	-webkit-filter: grayscale(0);
}

.grayscale.grayscale-fade {
  -webkit-transition: -webkit-filter .5s;
}

.grayscale.grayscale-fade:hover {
  -webkit-filter: grayscale(0%);
  filter: none;
}

.grayscale-replaced.grayscale-fade svg {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
}

.grayscale-replaced.grayscale-fade:hover svg {
  opacity: 0;
  filter: alpha(opacity=0);
}


/* 
-----------------------------
CLEARERS
-----------------------------
*/

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

.clearfix:after {
  clear: both;
}

.clearer {
	height: 0px;
	font-size: 0px;
	line-height: 0px;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	clear: both;
}
.clearer.line {
	height:1px;
	margin: 10px auto;
	background: #eee;
	position: relative;
}

.clearer.h5 {
	height: 5px;
}
.clearer.h10 {
	height: 10px;
}
.clearer.h15 {
	height: 15px;
}
.clearer.h20 {
	height: 20px;
}
.clearer.h25 {
	height: 25px;
}
.clearer.h30 {
	height: 30px;
}
.clearer.h35 {
	height: 35px;
}
.clearer.h40 {
	height: 40px;
}
.clearer.h45 {
	height: 45px;
}
.clearer.h50 {
	height: 50px;
}
.clearer.h55 {
	height: 55px;
}
.clearer.h60 {
	height: 60px;
}
.clearer.h65 {
	height: 65px;
}
.clearer.h70 {
	height: 70px;
}
.clearer.h75 {
	height: 75px;
}
.clearer.h80 {
	height: 80px;
}
.clearer.h85 {
	height: 85px;
}
.clearer.h90 {
	height: 90px;
}
.clearer.h95 {
	height: 95px;
}
.clearer.h100 {
	height: 100px;
}
.clearer.h120 {
	height: 120px;
}
