/* MISC */
*{
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}
html, body{
	border:none;
	width:100%;
	height:100%;
	margin:0;
	padding:0;
	background-color: #FFFFFF;
}
a {
	color:darkblue;
	text-decoration: none;
	border-bottom-style: dotted;
	border-bottom-color: #B2B1FF;
	border-bottom-width: 2px;
}
a:active, a:visited{
	color:darkblue;
}
ul{
    margin: 0em;
}
.inputLabel{

}
.txtInput{
	border: 0;
	border-bottom: 1px solid #6E7EF9;
	border-bottom: 1px solid rgba(80,100,255,0.9);
	padding: 0 8px;
	margin: 4px 0 8px 0;
	font-size: 14px;
	font-weight: 300;
	color: grey;
}
.txtInput[disabled]{
	background-color:white;
}
.h56 {
    height:56px!important;
}
.h48 {
    height:48px!important;
}
.h24{
	height:24px!important;
}

.lowCase{
	text-transform: lowercase;
}

.pipeSeparator{
	color: #EEFFFF;
}

.seeMore{
	position:absolute;
	right:8px;
	bottom:8px;
	color:#ffc631;
	font-size: 32px;
	cursor: pointer;
}

/* progress */

.progress {
    margin-bottom: 12px;
    overflow: hidden;
    background-color: rgba(185,185,185,0.6);
    border-radius: 5px;
    height: 12px !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    text-align: center;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease-in-out;
    color: #fff !important;
    background-color: #7bbeff;
    padding: 1px 0 0 0;
    font-size: 11px;
    line-height: 11px;
}

/*********/

.siteWrapper{
	overflow:hidden;
}

header, footer{
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	z-index: 1000;
}

.navSlideMenu{
	position: fixed;
	top:0;
	right:auto;
	bottom:0;
	left:-320px;
	background-color: #6173ff;
	width:320px;
	max-width:100%;
	margin-right:24px;
	z-index:1500;
	box-shadow: 0;
	overflow-y: auto;
	transition: all 550ms cubic-bezier(0.47, -0.02, 0.11, 1.57);
}
.navSlideMenu.opened{
	width: 420px;
	left: -50px;
	padding-left: 50px;
	box-shadow: 3px 0px 4px #b2b2FF;
}

.section{
	width: 100%;
	max-width: 984px;
	transition: transform 250ms ease-in-out, opacity 350ms ease-in-out, height 250ms ease-in-out, max-height 250ms ease-in-out;
	overflow: hidden;
}
.section.activeContent{
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	z-index: 100;
	opacity: 1;
	padding: 8px;
}
.section.inactiveContent{
	-webkit-transform: translateY(100vh);
	-ms-transform: translateY(100vh);
	transform: translateY(100vh);
	opacity: 0;
	z-index: 1;
	max-height: 0!important;
	padding: 0;
}
.headerDiv{
	top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-section {
    font-size: 18px;
    font-weight: 500;
    color: darkblue;
    border-bottom: 1px solid grey;
    box-shadow: 0px 2px 8px 1px rgba(0,0,0,0.5);
    background-color: #6173ff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
.content-section {
    min-height: calc(100vh - 56px - 24px)!important;
    background-color: #eee;
    color: black;
    padding: 16px;
    text-shadow: none;
    z-index: 500;
}
.content-section > div {
	width:100%;
}
.footer-section {
    font-size: 12px;
    font-weight: 300;
    color: white;
    background-color: #6173ff;
}
.langSelectWrapper{
	position: absolute;
	right: 8px;
	max-width: 80px;
}
.langSelectWrapper > select{
    border:none;
}

.slideMenuHeadSpace{
	height:56px;
	min-height: 24px;
}
.navSlideMenu .slideMenuHeadSpace .header-title{
	color:transparent;
	text-align: right;
	padding-right: 16px;
	transition: color 1.2s ease-out, transform 550ms ease-out;
	transform: translateX(-500px);
}
.navSlideMenu.opened .slideMenuHeadSpace .header-title{
	color:white;
	transform: translateX(0);
}
.slideMenuItem{
	padding:16px;
	color: white;
	box-shadow: -1px 1px 3px 0px #0b0b87;
	margin: 0 8px 8px 8px;
	cursor: pointer;
}
.slideMenuItem:hover{
	background-color:rgba(0,0,155,0.3);
}
.slideMenuItem.active, .slideMenuItem:active{
	background-color:rgba(0,0,155,0.3);
	box-shadow: 0px 1px 8px 0px #0b0b87 inset;
}

.slideMenuItem.contactNav{
	margin-left: 8px!important;
}
.slideMenuItem .mdi{
	font-size:24px;
	margin-right: 8px;
	margin-left:0;
}
.slideMenuItem.active .mdi,  .slideMenuItem:hover .mdi{
	margin-left:16px;
}

.header-menu-logo{
	/*hidden by default (desktop and large/tablets display  shown when in mobile mode to replace hidden navbar)*/
	color: white;
	margin: 0 8px;
	opacity: 1;
	cursor: pointer;
}
.header-menu-logo > .mdi{
	font-size:24px;
}
.header-title{
	margin-left:16px;
	color: white;
}
.header-subTitle{
	font-size:12px;
	font-style:italic;
	font-weight:400;
	position: relative;
	top: -2px;
}
.header-subTitle::before{ content:" - "; }

.sheet{
	background-color: white;
	border: 1px solid #CCCCCC;
	box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
	border-radius: 5px;
	padding: 24px;
	transition: all 250ms ease-in-out;
}

.sheetHead{
	border-bottom:1px solid grey;
	width:100%;
	margin-bottom:16px;
	padding-left: 0!important;
	font-weight: 500;
}

.sheetInnerTitle{
	color: #6E7EF9;
	border-bottom: 2px solid #6E7EF9;
	width: 100%;
	padding-left: 16px;
}
.sheetInnerTitle .mdi{
	font-size:24px;
	margin: 0 16px;
}

.sheetContent{
	color:grey;
	font-weight: 300;
	text-align: justify;
}



