
:root {

	/* COLORS */
	--color-pink: #d53e5b;
	--color-blue: #0081b6;
	--color-green: #27a216;

	/* BACKGROUNDS */
	--background-app: url(../images/apps/background-desktop-b-004.jpg);

}

/* RESET */

* {
	margin: 0; padding: 0;
	border: none; outline: none;
	box-sizing: border-box;
	text-decoration: none;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	font-family: 'Roboto', sans-serif; font-size: 16px;
	list-style: none;
	word-break: break-word;
	/* color: #000656; */
}

html, body {
	background-color: #343979;
	height: 100%;
	background-size: cover;
	background-image: url(../images/background-001.jpg);
}

/*
input, select, option, textarea {
	color: #111;
}
*/

a { color: #e1e1e1; text-decoration: underline; font-weight: 600; }
a:hover { color: white; }

p,
label { color: #e1e1e1; }

@font-face {
	font-family: 'Gunterz-Regular'; src: url(../fonts/Gunterz-Regular.otf);
}

@font-face {
	font-family: 'MyriadPro-Regular'; src: url(../fonts/MyriadPro-Regular_1.otf);
}




@media screen and (max-width: 710px) {

	/* html, body { background-size: 500px; } */

}






/* ------------------------------ APP ------------------------------ */

[data-app] {
	width: 100%;
	height: 100%;
	overflow-y: auto;
}

[data-app] #main {
    background-position: top center;
    background-size: 1920px 550px;
    position: relative;
    background-image: url(../images/portrait-desktop-005.png);
}





/* ------------------------------ WIDE APP ------------------------------ */

.wide {
	margin: 0 auto;
}

.wide.full   { max-width: 100%;   }
.wide.extra  { max-width: 1620px; }
.wide.big    { max-width: 1100px; }
.wide.medium { max-width: 990px;  }
.wide.normal { max-width: 820px;  }
.wide.small  { max-width: 650px;  }
.wide.tiny   { max-width: 420px;  }





/* ------------------------------ ONE BOX ------------------------------ */

.one_air {
	border: 10px solid transparent;
}
.one_box {
	/* overflow: hidden; */
	position: relative;
	padding: 40px;
}

@media screen and (min-width: 900px) {

	.one_box:hover {

	}

}

@media screen and (max-width: 600px) {

	.one_box {
		padding: 30px;
	}

	.one_air {
		/* border: 5px solid transparent; */
	}

}





/* ------------------------------ MARGIN BOTTOM ------------------------------ */

.one_mb5 { margin-bottom: 5px; }
.one_mb10 { margin-bottom: 10px; }
.one_mb15 { margin-bottom: 15px; }
.one_mb20 { margin-bottom: 20px; }
.one_mb25 { margin-bottom: 25px; }
.one_mb30 { margin-bottom: 30px; }
.one_mb35 { margin-bottom: 35px; }
.one_mb40 { margin-bottom: 40px; }
.one_mb45 { margin-bottom: 45px; }
.one_mb50 { margin-bottom: 50px; }





/* TABLE / TABLE-CELL */

.one_tab {
	width: 100%; height: 100%;
	display: table;
}

.one_cel {
	width: 100%; height: 100%;
	display: table-cell;
	vertical-align: middle;
}





/* ------------------------------ SCROLLBARS ------------------------------ */

/* Works on Firefox */
* { scrollbar-width: thin; scrollbar-color: #cbcbcb transparent; }
/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar { width: 8px; height: 4px; } /* width for vertical / height for horizontal */
*::-webkit-scrollbar-thumb { background-color: #7f7f7f; border: 3px solid transparent; } /* drag */
*::-webkit-scrollbar-track { background-color: #c3c3c3; } /* scroll */





/* ------------------------------ KEYFRAMES ------------------------------ */

@keyframes rotation {

	from { transform: rotate(0deg); }
	to { transform: rotate(359deg); }

}











[data-mod="alert"] {
	position: fixed;
	top: 0; left: 0;
	width: 100vw; height: 100vh;
	background-color: rgba(0,0,0,.5);
	z-index: 3000;
	display: none;
}


[data-mod="alert"] .box {
	background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
	width: 340px; height: 260px;
	position: absolute;
	top: 50%; left: 50%;
	margin-top: -150px; margin-left: -170px;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 1px 5px 30px 0px rgb(0 0 0 / 50%);
	-webkit-box-shadow: 1px 5px 30px 0px rgb(0 0 0 / 50%);
	-moz-box-shadow: 1px 5px 30px 0px rgba(0,0,0,.5);
}

[data-mod="alert"] .box .text {
	height: 145px;
}

[data-mod="alert"] .box .text .title {
	font-weight: 700; font-size: 20px; color: white;
	margin: 0 0 8px 0;
}

[data-mod="alert"] .box .text .sep {
	width: 100%; height: 2px;
	background-color: #333;
	border-radius: 5px;
	margin: 5px 0;
	display: none;
}

[data-mod="alert"] .box .text .message {
	font-size: 15px; color: #c4c4c4;
}

[data-mod="alert"] .box .controls {
	height: 70px;
	overflow: hidden;
	text-align: right;
}

[data-mod="alert"] .box .controls [data-control] {
	/* width: 100%; */
}







@media screen and (max-width: 710px) {

	[data-mod="alert"] .box { width: 300px; margin-left: -150px; }

}









[data-mod="loading"] {
	width: 100vw; height: 100vh;
	z-index: 2000;
	background-color: rgba(0,0,0,.4);
	top: 0; right: 0; bottom: 0; left: 0;
	position: fixed;
	display: none;
	opacity: 0;
}

[data-mod="loading"] .graph {
	background-image: url(../images/system/loading.png);
	background-size: 52px;
	width: 60px;
	height: 60px;
	position: absolute;
	z-index: 2000;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	border-radius: 50%;
	border: 6px solid #fbfbfb;
	animation: rotation 2s infinite linear;
}





@media screen and (max-width: 710px) {



}







/* ------------------------------ PORTRAIT ------------------------------ */

#portrait {
	margin: 0 auto 40px auto;
	padding: 0 15px;
	box-sizing: content-box;
	text-align: center;
	min-height: 185px;
}

#portrait img {
	width: 100%;
	border-radius: 10px;
	border-top-right-radius: 0;
	border-top-left-radius: 0;
}

#portrait img.desktop {
	display: inline-block;
	box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.1);
}
#portrait img.mobile { display: none; }

@media screen and (max-width: 600px) {

	#portrait img.desktop { display: none; }
	#portrait img.mobile { display: inline-block; }

}





/* ------------------------------ CONTENT ------------------------------ */

#content {
	padding: 0 15px;
}





/* ------------------------------ CONTENT ------------------------------ */

#content header {
	margin: 0 0 30px 0;
}

@media screen and (max-width: 800px) {

	#content header { margin: 0 0 30px 0; }

}





/* ------------------------------ H ------------------------------ */

h1, 
h1 a, 
h2, 
h2 a {
	font-weight: 700;
	transition: color .15s linear;
	color: #e1e1e1;
	text-decoration: none;
}

h1, h1 a { font-size: 32px; line-height: 30px; }
h2, h2 a { font-size: 25px; line-height: 25px; }

h1:hover, 
h1 a:hover, 
h2:hover, 
h2 a:hover { color: white; }

@media screen and (max-width: 800px) {

	h1, h1 a { font-size: 25px; line-height: 25px; }
	h2, h2 a { font-size: 22px; line-height: 22px; }

}





/* APP HEADERS */

[data-app] header {
	text-align: center;
}

[data-app] header h1, 
[data-app] header p {
	margin: 0 0 3px 0;
}





/* ------------------------------ FIELDS ------------------------------ */

.sep {
	border-bottom: 2px dotted #e3e3e3;
	padding: 0 0 0 0;
	margin: 0 0 30px 0;
}

.fields {
	/* overflow: hidden; */
}

.fields .pack {
	/* overflow: hidden; */
	width: 100%;
	margin: 0 0 20px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.fields .pack h3 {
	font-size: 16px; font-weight: 700; color: #333;
	margin: 0 0 15px 0;
}

.fields .field {
	padding: 0 0 15px 0;
}

.fields .field.w100 { width: 100%; }
.fields .field.w48 { width: 48%; }
.fields .field.w30 { width: 30%; }
.fields .field.w20 { width: 20%; }

@media screen and (max-width: 900px) {

	.fields .field.w100 { width: 100%; }
	.fields .field.w48  { width: 100%; }
	.fields .field.w30  { width: 100%; }
	.fields .field.w20  { width: 100%; }

}





.fields .field label {
	font-size: 12px;
	margin: 0 0 5px 0;
	display: block;
	color: #eeeeee;
	text-transform: uppercase;
	font-weight: 600;
}

.fields .field label span {
	color: #d52046;
	font-size: 12px;
}

.fields .field .text {

}

.fields .field .select {

}

.fields .field .text input,
.fields .field .select select {
	width: 100%; height: 45px; line-height: 45px;
	padding: 0 15px;
	border-radius: 5px;
	border: 2px solid transparent;
	font-weight: 700; font-size: 22px; color: white;
	background-color: rgba(0, 0, 0, .5);
	box-shadow: none;
	transition: box-shadow .2s ease-in-out;
	backdrop-filter: blur(10px);
}

.fields .field .text input:focus,
.fields .field .select select:focus {
	/* box-shadow: 5px 5px 0px 1px #86d32d; */
	border: 2px solid white;
}

.fields .field .text input.error,
.fields .field .select select.error {
	border: 2px solid #d53e5b;
	color: #d53e5b;
}

.fields .field .textarea {

}

.fields .field .textarea textarea {
	width: 100%; max-width: 100%; height: 150px; line-height: 20px;
	padding: 15px 10px;
	border-radius: 5px;
	font-weight: 700;
	background-color: #f5d9d9;
	border: 2px solid #e3e3e3;
	color: black;
}

.fields .field .textarea textarea:focus {
	border: 2px solid black;
}





.fields .radio {
	overflow: hidden;
	width: 100%;
	border: 2px solid #e3e3e3;
	border-radius: 5px;
	margin: 0 0 20px 0;
	padding: 20px;
}

.fields .radio h3 {
	font-size: 16px; font-weight: 700; color: #333;
	margin: 0 0 15px 0;
}

.fields .radio [data-radio] {
	position: relative;
	cursor: pointer;
	margin: 0; padding: 10px 5px 10px 45px;
	border-radius: 5px;
}

.fields .radio [data-radio]:hover {
	background-color: rgba(0,0,0,.05);
}

.fields .radio [data-radio] p {
	border: 3px solid black;
	width: 20px; height: 20px;
	border-radius: 50%;
	position: absolute;
	top: 10px; left: 15px;
}

.fields .radio [data-radio] p.active {
	border: 3px solid black;
	background-color: black;
}

.fields .radio [data-radio] .text {

}





.fields .check {
	background-color: rgba(0, 0, 0, .1);
    padding: 40px;
    border-radius: 5px;
    /* border: white solid 2px; */
    box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.05);
    /*
    box-shadow: 0px 8px 15px -2px rgba(0,0,0,0.15);
    -webkit-box-shadow: 0px 8px 15px -2px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 8px 15px -2px rgba(0,0,0,0.15);
    */
}

.fields .check h3 {
	font-size: 16px; font-weight: 700; color: white;
	margin: 0 0 15px 0;
}

.fields .check [data-check] {
	position: relative;
	margin: 0 0 0 -15px; padding: 20px 60px 10px 60px;
	/* border-bottom: 1px solid rgba(255,255,255,.1); */
}

@media screen and (max-width: 710px) {

	.fields .field {
		padding: 0 0 20px 0;
	}

	.fields .field .text input,
	.fields .field .select select {
		height: 50px; line-height: 50px;
	}

}

@media screen and (max-width: 1200px) {

	.fields .check { padding: 25px; }
	.fields .check [data-check] { padding: 22px 10px 20px 60px; }

}

/*
.fields .check [data-check]:hover {
	background-color: rgba(0,0,0,.15);
}
*/

.fields .check [data-check] p {
	border: 3px solid #154de9;
	width: 30px; height: 30px;
	border-radius: 20px;
	position: absolute;
	top: 15px; left: 15px;
	cursor: pointer;
}

.fields .check [data-check] p.active {
	border: 3px solid #154de9;
	background-color: #154de9;
	background-image: url(../images/system/checkbox-icon-001.png);
	background-size: 20px 20px;
}

.fields .check [data-check] span {
	font-size: 15px;
    color: #d9d9d9;
}

.fields .check [data-check] a {
	color: #0197ed;
    text-decoration: underline;
    font-size: 15px;
    font-weight: 600;
}


.fields .check [data-check] a:hover {
	color: #ff23c6;
}





/* ------------------------------ CONTROLS ------------------------------ */

.controls {

}

.controls [data-control="loading"] {
	display: none;
}





/* ------------------------------ BUTTONS ------------------------------ */

.one_btn1,
.one_btn2,
.one_btn3 {
	font-size: 16px; font-weight: 600; text-align: center; text-transform: uppercase;
	margin: 0 5px 0 0; padding: 10px 40px;
	cursor: pointer;
	display: inline-block;
	border-radius: 100px;
	transition: background .15s linear, border .15s linear, color .15s linear;
	text-decoration: none;
}

.one_btn1 {
	color: #211b49;
	border: 4px solid #e1f949;
	background-color: #e1f949;
}
.one_btn1:hover {
	color: white;
	border: 4px solid #211b49;
	background-color: #211b49;
}

.one_btn2 {
	color: black;
	border: 4px solid black;
	background-color: transparent;
}
.one_btn2:hover {
	color: white;
	border: 4px solid #eb383b;
	background-color: #eb383b;
}

.one_btn3 {
	color: white;
	border: 4px solid #1347b4;
	background-color: #1347b4;
}
.one_btn3:hover {
	border: 4px solid #171212;
	background-color: #171212;
}




@media screen and (max-width: 710px) {

	.one_btn1,
	.one_btn2,
	.one_btn3 {
		width: 100%;
		margin: 0 0 10px 0; padding: 20px 30px;
	}

}





/* ------------------------------ VISIBILITY ------------------------------ */

[data-visible="hide"] { display: none; }
[data-visible="show"] { display: block; }





/* ------------------------------ VISIBILITY ------------------------------ */

#bottom {
	background-color: #373740; 
	margin: -60px 0 0 0;
	min-height: 50px;
	display: none;
}

@media screen and (max-width: 1000px) {



}















[data-app="confirm"] {
	padding: 40px 0 0 0;
}




[data-mod="boarding"] {
	
}

[data-mod="boarding"] .card {
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
}

[data-mod="boarding"] .card .head {

}

[data-mod="boarding"] .card .head img {
	
}

[data-mod="boarding"] .card .content {
	
}

[data-mod="boarding"] .card .content .intro {

}

[data-mod="boarding"] .card .content .data {

}

[data-mod="boarding"] .card .content .logos {
	
}

[data-mod="boarding"] .card .content .logos img {
	
}

[data-mod="boarding"] .card .content .calendar {

}



















#logo-roche {
	position: absolute;
    top: 15px;
    left: 15px;
}

#logo-roche img {
	width: 70px;
}

@media screen and (max-width: 710px) {

	#logo-roche img { width: 50px; }

}








#top-intro {
	text-align: center;
    margin: 0 0 40px 0;
    color: white;
    font-size: 20px;
}

#top-intro strong {
    font-size: 20px;
}

@media screen and (max-width: 710px) {

	#top-intro,
	#top-intro strong { font-size: 16px; }

}







#top-info {
	text-align: center;
	margin: 0 0 50px 0;
	backdrop-filter: blur(10px);
	border-radius: 5px;
	overflow: hidden;
	background-color: rgba(0, 0, 0, 0.15);
}

#top-info .row {
	height: 45px;
    line-height: 45px;
    position: relative;
}

#top-info .row img {
    position: absolute;
    top: 0; left: 0;
}

#top-info .row.date {
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    font-size: 20px;
    color: white;
}

#top-info .row.place {

}

#top-info .place a {
	font-size: 20px;
    display: block;
    width: 100%;
    height: 100%;
    transition: background-color .15s ease-in-out;
}

#top-info .place a:hover {
	background-color: rgba(0, 0, 0, .1);
}






[data-app="register"] .agenda {

}

[data-app="register"] .agenda .block {
	position: relative;
    margin: 0 0 10px 0;
    /* min-height: 130px; */
}

[data-app="register"] .agenda .block .content {
	
}

[data-app="register"] .agenda .block .content img {
	z-index: 2;
    position: absolute;
    border-radius: 1000px;
    width: 60px;
    top: 20px;
}

[data-app="register"] .agenda .block .content .info {
	padding: 30px 40px 30px 50px;
	border-radius: 30px;
	background-color: rgba(0, 0, 0, .5);
	backdrop-filter: blur(10px);
	position: relative;
	margin: 0 30px;
}

[data-app="register"] .agenda .block .content .info .time {
	color: white;
}

[data-app="register"] .agenda .block .content .info .title {
	color: white;
	font-size: 28px;
	font-weight: 500;
	line-height: 25px;
	margin: 0 0 8px 0;
}

[data-app="register"] .agenda .block .content .info .desc {
	color: white;
	opacity: .6;
	display: none;
}

@media screen and (max-width: 710px) {

	[data-app="register"] .agenda .block .content .info .title {
		font-size: 20px;
	}

}










