
: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: #72a5d0;
	height: 100%;
	background-size: cover;
	background-image: url(../images/background-001.jpg);
}

/*
input, select, option, textarea {
	color: #111;
}
*/

a { color: #ca676b; text-decoration: underline; font-weight: 600; }
a:hover { color: white; }

p,
label { color: #355089; }

@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: 100%;
    position: relative;
}





/* ------------------------------ 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;  }





/* ------------------------------ 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(255, 255, 255, 0.75);
    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: #1347b4;
	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: black;
}

[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;
}

#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: #355089;
	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: #000; }

@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: #355089;
	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: #355089;
	box-shadow: none;
	transition: box-shadow .2s ease-in-out;
}

.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: white;
	border: 4px solid #488aba;
	background-color: #488aba;
}
.one_btn1:hover {
	border: 4px solid #171212;
	background-color: #171212;
}

.one_btn2 {
	color: black;
	border: 4px solid black;
	background-color: transparent;
}
.one_btn2:hover {
	color: white;
	border: 4px solid #2ca8c4;
	background-color: #2ca8c4;
}

.one_btn3 {
	color: white;
	border: 4px solid #355089;
	background-color: #355089;
}
.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 {

}




















[data-app="register"] .options {

}

[data-app="register"] .options [data-option] {
	position: relative;
	padding: 10px 0 10px 40px;
	/* border-bottom: 1px solid gray; */
}

[data-app="register"] .options [data-option] p {
	position: absolute;
	border: 4px solid rgba(0, 0, 0, .25);
	width: 27px;
	height: 27px;
	border-radius: 50px;
	top: 9px;
	left: 0;
	cursor: pointer;
	transition: border .15s ease-in-out;
}

[data-app="register"] .options [data-option][data-selected="1"] p {
	border: 8px solid #355089;
}

[data-app="register"] .options [data-option] .content {
	color: #355089;
	user-select: none;
}

[data-app="register"] .options [data-option] .content a {
	color: #1f3259;
	text-decoration: underline;
	font-weight: 600;
	font-size: 18px;
}

[data-app="register"] .options [data-option] .content a:hover {
	color: black;
}








