

[data-mod="alert"] {
	position: fixed;
	top: 0; left: 0;
	width: 100vw; height: 100vh;
	background-color: rgba(0,0,0,.4);
	z-index: 3000;
	display: none;
}


[data-mod="alert"] .box {
	backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, .5);
	width: 340px; height: 250px;
	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: 135px;
}

[data-mod="alert"] .box .text .title {
	font-weight: 700; font-size: 20px; color: #111;
}

[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: #111;
}

[data-mod="alert"] .box .controls {
	height: 55px;
	overflow: hidden;
	text-align: right;
}







@media screen and (max-width: 710px) {



}




[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) {



}







/* ------------------------------ 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; }
.one_mb55 { margin-bottom: 55px; }
.one_mb60 { margin-bottom: 60px; }

.one_pl20 { padding-left: 20px; }
.one_pl40 { padding-left: 40px; }





/* ------------------------------ BUTTONS ------------------------------ */

.one_btn1,
.one_btn2,
.one_btn3 {
	font-size: 15px; font-weight: 700; text-align: center; text-transform: uppercase;
	padding: 10px 40px;
	cursor: pointer;
	display: inline-block;
	border-radius: 50px;
	transition: background-color .15s linear, border .15s linear, color .15s linear;
	margin: 0 5px 0 0;
}

.one_btn1 { color: white; border: 2px solid #222d5d; background-color: #222d5d; }
.one_btn1:hover { color: white; border: 2px solid black; background-color: black; }

.one_btn2 { color: #222d5d; border: 2px solid #222d5d; background-color: transparent; }
.one_btn2:hover { color: white; border: 2px solid black; background-color: black; }

.one_btn3 { color: white; border: 2px solid var(--color-pink); background-color: var(--color-pink); }
.one_btn3:hover { color: white; border: 2px solid #111; background-color: #111; }




@media screen and (max-width: 710px) {

	.one_btn1,
	.one_btn2,
	.one_btn3 {
		width: 100%;
		margin: 0 0 10px 0;
	}

}





/* 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); }

}






: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: 'Montserrat', sans-serif; font-size: 15px;
	/* color: white; */
	list-style: none;
	word-break: break-word;
	color: #485759;
}

html, body {
	background-color: #222d5d;
	height: 100%;
	background-size: 750px;
	background-repeat: repeat;
}

/*
input, select, option, textarea {
	color: #111;
}
*/

p,
label { color: #485759; }




@media screen and (max-width: 710px) {

	/* html, body { background-size: 500px; } */

}











[data-app] {
	width: 100%; height: 100%;
	overflow-y: auto;
}

@media screen and (max-width: 1100px) {

	[data-app="admin"], 
	[data-app="admin-search"], 
	[data-app="admin-signups-approved"], 
	[data-app="admin-signups-pending"], 
	[data-app="admin-signups-rejected"] { padding: 60px 0 0 0; }

}










[data-app] .blocks {
	overflow: hidden;
}










[data-app] .blocks .sidebar {
	float: left;
	width: 20%;
}

@media screen and (max-width: 1100px) {

	[data-app] .blocks .sidebar { display: none; }	

}










[data-app] .blocks .sidebar .logo {
	margin: 0 0 30px 0;
}

[data-app] .blocks .sidebar .logo img {
	max-width: 100%;
	padding: 0 0 25px 0;
}










[data-app] .blocks .sidebar .menu {

}

[data-app] .blocks .sidebar .menu a {
	width: 100%; height: 40px; line-height: 40px;
	background-color: #f8f8f8;
	border-left: 5px solid #f8f8f8;
	margin: 0 0 2px 0; padding: 0 0 0 20px;
	font-size: 15px; font-weight: 700;
	border-radius: 5px;
	cursor: pointer;
	color: black;
	user-select: none;
	display: block;
}

[data-app] .blocks .sidebar .menu a:hover {
	background-color: #e9e9e9;
	border-left: 5px solid #e9e9e9;
}

[data-app] .blocks .sidebar .menu a.active {
	background-color: #aa19be;
	border-left: 5px solid #aa19be;
	color: white;
}

[data-app] .blocks .sidebar .menu a.active:hover {
	background-color: #881598;
	border-left: 5px solid #881598;
}










[data-app] .blocks .maincontent {
	float: left;
	width: 80%;
	padding: 0 0 0 50px;
}

@media screen and (max-width: 1100px) {

	[data-app] .blocks .maincontent {
		float: initial;
		width: 100%;
		padding: 0;
	}	

}










[data-app] .blocks .maincontent header {
	margin: 0 0 30px 0;
}

[data-app] .blocks .maincontent header h3 {
	font-size: 15px;
	color: #f26f81;
}

[data-app] .blocks .maincontent header h1 {
	font-size: 30px;
	color: #00c7c6;
	margin: 0;
	padding: 5px 0 10px 0;
}

[data-app] .blocks .maincontent header p {
	font-size: 15px;
}










[data-app] .blocks .maincontent [data-pack] {
	overflow: hidden;
	width: 100%;
	border: 2px solid #e3e3e3;
	border-radius: 5px;
	margin: 0 0 15px 0;
	padding: 30px;
}

@media screen and (max-width: 800px) {

	[data-app] .blocks .maincontent [data-pack] {
		padding: 15px;
	}

}











[data-app] .blocks .maincontent [data-pack] h2 {
	font-weight: 700; font-size: 20px; color: black;
	margin: 0 0 15px 0; padding: 0;
}

[data-app] .blocks .maincontent [data-pack] p {
	margin: 0 0 15px 0;
}

[data-app] .blocks .maincontent [data-pack] p strong {
	
}








[data-app] #mobile-nav {
	position: fixed;
	width: 100%; height: 60px;
	top: 0; left: 0;
	background-color: white;
	z-index: 1;
	border-bottom: 1px solid #e9e9e9;
	-webkit-box-shadow: 0px 5px 15px 5px rgb(0 0 0 / 25%);
	box-shadow: 0px 5px 15px 5px rgb(0 0 0 / 25%);
	display: none;
}

[data-app] #mobile-nav .logo {
    position: absolute;
    top: 18px; left: 25px;
}

[data-app] #mobile-nav .logo img {
	width: 111px;
}

[data-app] #mobile-nav .menu {
	top: 5px; right: 20px;
	background-image: url(../images/mobile-menu.png);
	background-position: center;
	background-size: 32px 32px;
	cursor: pointer;
	width: 50px; height: 50px;
	position: absolute;
	user-select: none;
}

@media screen and (max-width: 1100px) {

	[data-app] #mobile-nav { display: block; }

}







[data-app] #mobile-menu {
	position: fixed;
	width: 250px;
	top: 70px; right: 20px;
	background-color: white;
	z-index: 1;
	border: 1px solid #e9e9e9;
	border-radius: 5px;
	padding: 5px;
}

[data-app] #mobile-menu[data-display="show"] { display: block; }
[data-app] #mobile-menu[data-display="hide"] { display: none; }

[data-app] #mobile-menu a {
	width: 100%; height: 35px; line-height: 35px;
	background-color: #f8f8f8;
	border-left: 5px solid #f8f8f8;
	margin: 0 0 2px 0; padding: 0 30px 0 0;
	font-size: 15px; font-weight: 700;
	border-radius: 5px;
	cursor: pointer;
	color: black;
	user-select: none;
	text-align: right;
	display: block;
}

[data-app] #mobile-menu a:hover {
	background-color: #e9e9e9;
	border-left: 5px solid #e9e9e9;
}

[data-app] #mobile-menu a.active {
	background-color: #aa19be;
	border-left: 5px solid #aa19be;
	color: white;
}

[data-app] #mobile-menu a.active:hover {
	background-color: #881598;
	border-left: 5px solid #881598;
}









[data-component="signups"] {
	border-radius: 5px;
	margin: 0 0 5px 0;
}

[data-component="signups"] .min {
	min-height: 50px;
	background-color: #e3e3e3;
	cursor: pointer;
}

[data-component="signups"] .min:hover {
	background-color: #d5d5d5;
}

[data-component="signups"][data-show="min"] .min {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

[data-component="signups"][data-show="max"] .min {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

[data-component="signups"] .min,
[data-component="signups"] .max {
	position: relative;
	padding: 15px;
}

[data-component="signups"] .min p {
	display: block;
	position: absolute;
	width: 30px; height: 30px;
	top: 11px; left: 11px;
	background-image: url(../images/apps/admin/status-icons-30x30.png);
	background-color: #fff;
    border-radius: 5px;
}

[data-component="signups"][data-status="start"]      .min p { background-position: 0 0;      }
[data-component="signups"][data-status="pending"]    .min p { background-position: 0 -30px;  }
[data-component="signups"][data-status="approved"]   .min p { background-position: 0 -60px;  }
[data-component="signups"][data-status="rejected"]   .min p { background-position: 0 -90px;  }
[data-component="signups"][data-status="in_process"] .min p { background-position: 0 -120px; }
[data-component="signups"][data-status="cancelled"]  .min p { background-position: 0 -150px; }

[data-component="signups"] .min .label {
	padding: 1px 0 0 40px;
}

[data-component="signups"] .min .label strong {
	font-size: 18px;
	font-weight: 600;
}

[data-component="signups"] .min .label span {
	font-size: 15px;
}

[data-component="signups"] .max {
	border: 2px solid #e3e3e3;
	margin: 0 0 10px 0;
}

[data-component="signups"][data-show="min"] .max {
	display: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

[data-component="signups"][data-show="max"] .max {
	display: block;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

[data-component="signups"][data-show="max"] .max .loading {
	background-image: url(../images/system/loading.png);
	background-size: 30px;
	width: 30px; height: 30px;
	margin: 0 0 0 -5px;
	z-index: 2000;
	border-radius: 50%;
	animation: rotation 2s infinite linear;
	display: none;
}










[data-app] [data-control="load-more"] {
	text-align: center;
	background-color: #e3e3e3;
	padding: 15px 0;
	border-radius: 5px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
}

[data-app] [data-control="load-more"]:hover {
	background-color: #cbcbcb;
}








































[data-app="confirm"] {
	width: 100%; height: 100%;
	overflow-y: auto;
	background-image: url(../images/apps/login/background-desktop-003.jpg);
	background-color: #222d5d;
}

[data-app="confirm"] .main {
	
}

@media screen and (max-width: 1200px) {

	

}




[data-app="confirm"] [data-status] {
	padding: 20px 20px 20px 80px;
	border-radius: 10px;
	background-size: 40px;
	background-position: 20px 18px;
	border: 5px solid #f8f8f8;
}

[data-app="confirm"] [data-status="approved"]  { background-image: url(../images/apps/confirm/status-approved-001.png);  }
[data-app="confirm"] [data-status="pending"]   { background-image: url(../images/apps/confirm/status-pending-001.png);   }
[data-app="confirm"] [data-status="rejected"]  { background-image: url(../images/apps/confirm/status-rejected-001.png);  }
[data-app="confirm"] [data-status="reconfirm"] { background-image: url(../images/apps/confirm/status-reconfirm-001.png); }

[data-app="confirm"] [data-status] span {
	font-weight: 700;
	text-transform: uppercase;
}

[data-app="confirm"] [data-status="approved"]  span { color: #019af1; }
[data-app="confirm"] [data-status="pending"]   span { color: #ffca00; }
[data-app="confirm"] [data-status="rejected"]  span { color: #ff2263; }
[data-app="confirm"] [data-status="reconfirm"] span { color: #019af1; }

[data-app="confirm"] [data-status] .text .name {
	font-weight: 700; font-size: 20px;
}

[data-app="confirm"] [data-status] .text .status {
	margin: 0 0 10px 0;
}















[data-app="login"] {
	width: 100vw; height: 100vh;
	overflow: hidden;
	position: relative;
	background-image: url(../images/apps/login/background-desktop-003.jpg);
	background-color: #222d5d;
	display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1200px) {

	/* [data-app="login"] { background-image: url(../images/apps/login/background-mobile-001.jpg); } */

}





/* LEFT */

[data-app="login"] .portrait {
	padding: 0 30px 0 0;
}

[data-app="login"] .portrait img { width: 480px; }

[data-app="login"] .portrait img.mobile {
	margin: 30px 0 30px 0;
	width: 80%; max-width: 300px;
	display: none;
}





/* RIGHT */

[data-app="login"] .content {
	padding: 0 0 0 30px;
}





/* FORM */

[data-app="login"] .content #form {
	background-color: white;
	width: 100%; max-width: 450px;
	padding: 50px;
	border-radius: 10px;
	display: inline-block;
	text-align: left;
}







[data-app="login"] .content #form .field {
	width: 100%;
}





@media screen and (max-width: 1200px) {

	[data-app="login"] {
		overflow-y: auto;
		height: 100%;
		display: block;
	}

	[data-app="login"] .portrait img.desktop { display: none; }
	[data-app="login"] .portrait img.mobile { display: inline-block; }


	[data-app="login"] .portrait {
		text-align: center;
		padding: 0;
	}

	[data-app="login"] .content {
		text-align: center;
		padding: 0;
	}

	[data-app="login"] .content #form {
		width: 90%;
		padding: 35px;
	}

}







[data-app="payment_approved"] {
	width: 100%; height: 100%;
	overflow-y: auto;
	background-image: url(../images/apps/login/background-desktop-003.jpg);
	background-color: #222d5d;
}

@media screen and (max-width: 1200px) {

	

}




[data-app="payment_pending"] {
	width: 100%; height: 100%;
	overflow-y: auto;
	background-image: url(../images/apps/login/background-desktop-003.jpg);
	background-color: #222d5d;
}

@media screen and (max-width: 1200px) {

	

}




[data-app="payment_rejected"] {
	width: 100%; height: 100%;
	overflow-y: auto;
	background-image: url(../images/apps/login/background-desktop-003.jpg);
	background-color: #222d5d;
}

@media screen and (max-width: 1200px) {

	

}












[data-app="register"] {
	width: 100%; height: 100%;
	overflow-y: auto;
	background-image: url(../images/apps/login/background-desktop-003.jpg);
	background-color: #222d5d;
}

@media screen and (max-width: 1200px) {

	

}










[data-app="register"] [data-component="type"] {
	overflow: hidden;
}

[data-app="register"] [data-component="type"] [data-option] {
	float: left;
	width: 33.3333333%;
	padding: 2px;
}

[data-app="register"] [data-component="type"] [data-option] .content {
	text-align: center; text-transform: uppercase; font-weight: 700;
	height: 60px; line-height: 60px;
	border-radius: 5px;
	cursor: pointer;
}

[data-app="register"] [data-component="type"] [data-option="establecimiento"] .content { border: 2px solid #d53e5b; color: #d53e5b; }
[data-app="register"] [data-component="type"] [data-option="proveedor"] .content       { border: 2px solid #0081b6; color: #0081b6; }
[data-app="register"] [data-component="type"] [data-option="prensa"] .content          { border: 2px solid #27a216; color: #27a216; }

[data-app="register"] [data-component="type"][data-type="establecimiento"] [data-option="establecimiento"] .content {
	border: 2px solid #d53e5b;
	background-color: #d53e5b;
	color: white;
}

[data-app="register"] [data-component="type"][data-type="proveedor"] [data-option="proveedor"] .content {
	border: 2px solid #0081b6;
	background-color: #0081b6;
	color: white;
}

[data-app="register"] [data-component="type"][data-type="prensa"] [data-option="prensa"] .content {
	border: 2px solid #27a216;
	background-color: #27a216;
	color: white;
}

@media screen and (max-width: 800px) {

	[data-app="register"] [data-component="type"] [data-option] { float: none; width: 100%; padding: 2px; }

}




















#portrait {
	width: 100%; height: 290px;
	background-image: url(../images/portrait-desktop-001.png);
	margin: 0 0 -25px 0;
}

@media screen and (max-width: 1000px) {

	#portrait {
		height: 240px;
		background-image: url(../images/portrait-mobile-005.png);
	}

}












[data-component="terms"] {
	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-component="terms"] .cell {
	width: 100%; height: 100%;
    display: table-cell;
    vertical-align: middle;
}

[data-component="terms"] .cell .box {
	background-color: #eee;
	width: 55vh; height: 70vh;
	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);
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

[data-component="terms"] .cell .box .close {
	width: 34px; height: 34px;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../images/icon-close-001.png);
	background-position: 0 -34px;
	background-size: 34px;
	background-color: rgba(0,0,0,.5);
	cursor: pointer;
	border-radius: 5px;
	transition: background-color 0.1s ease-out;

	position: absolute;
	top: 10px;
	right: 15px;
	z-index: 1;
}

[data-component="terms"] .cell .box .close:hover {
	background-color: #d6d6d6;
	background-position: 0 0;
}

[data-component="terms"] .cell .box .list {
	width: 100%; height: 100%;
	overflow-y: auto;
	padding: 60px 0;
}

[data-component="terms"] .cell .box .list ul {
	position: relative;
}





[data-component="terms"] .cell .box .list a {
	color: #00c7ff;
	font-weight: 700;
	text-decoration: underline;
}

[data-component="terms"] .cell .box .list a:hover {
	color: white;
}





@media screen and (max-width: 710px) {

	[data-component="terms"] .cell .box { width: 85vw; height: 70vh; }

}








/* ------------------------------ WIDE APP ------------------------------ */

.wide_app {
	margin: 0 auto;
}

.wide_app.full   { max-width: 100%;   }
.wide_app.extra  { max-width: 1620px; }
.wide_app.big    { max-width: 1100px; }
.wide_app.medium { max-width: 990px;  }
.wide_app.normal { max-width: 820px;  }
.wide_app.small  { max-width: 620px;  }





/* ------------------------------ FLOW APP ------------------------------ */

.one_flow_app {
	padding: 30px 0 100px 0;
	width: 100%; height: 100%;
	overflow-y: auto;
	position: relative;
}

@media screen and (max-width: 1000px) {

	/* .one_flow_app { padding: 5px 0 100px 0; } */

}





/* ------------------------------ ONE BOX ------------------------------ */

.one_air {
	border: 10px solid transparent;
}
.one_box {
	border-radius: 10px;
	background-color: white;
	overflow: hidden;
	border: 1px solid rgba(0,0,0,.075);
	transition: box-shadow 0.2s ease-out;
	position: relative;
	padding: 80px;
}

@media screen and (min-width: 900px) {

	.one_box:hover {
		-webkit-box-shadow: 0 3px 5px 0 rgba(0,0,0,.1);
		box-shadow: 0 3px 5px 0 rgba(0,0,0,.1);
	}

}

@media screen and (max-width: 600px) {

	.one_box {
		padding: 30px;
	}

	.one_air {
		/* border: 5px solid transparent; */
	}

}

.one_box_left { float: right; width: 75%; padding: 0 0 50px 0; }
.one_box_right { float: left; width: 25%; padding: 0 50px 0 0; }

@media screen and (max-width: 1000px) {

	.one_box_left { float: none; width: 100%; padding: 0 0 50px 0; }
	.one_box_right { float: none; display: none; }

}





/* ------------------------------ H ------------------------------ */

h1, 
h1 a, 
h2, 
h2 a, 
h3, 
h3 a {
	font-weight: 700;
	/* text-transform: uppercase; */
	transition: color .15s linear;
	color: #222d5d;
}

h1, h1 a { font-size: 30px; line-height: 30px; }
h2, h2 a { font-size: 25px; line-height: 25px; }
h3, h3 a { font-size: 18px; line-height: 18px; }

h1:hover, 
h1 a:hover, 
h2:hover, 
h2 a:hover, 
h3:hover, 
h3 a:hover { color: black; }

@media screen and (max-width: 800px) {

	h1, h1 a { font-size: 25px; line-height: 25px; }
	h2, h2 a { font-size: 22px; line-height: 22px; }
	h3, h3 a { font-size: 18px; line-height: 18px; }

}





/* APP HEADERS */

[data-app] header {
	margin: 0 0 40px 0;
}

[data-app] header h1, 
[data-app] header p {
	margin: 0 0 10px 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 20px 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: 15px;
	margin: 0 0 5px 0;
	display: block;
	color: #485759;
}

.fields .field label span {
	color: #ea1c25;
}

.fields .field .text {

}

.fields .field .select {

}

.fields .field .text input,
.fields .field .select select {
	width: 100%; height: 40px; line-height: 40px;
	padding: 0 10px;
	border-radius: 10px;
	font-weight: 700;
	background-color: transparent;
	border: 2px solid #e7e7e7;
	color: #485759;
}

.fields .field .select select option {
	color: black;
}

.fields .field .text input:focus,
.fields .field .select select:focus {
	border: 2px solid #95add0;
}

.fields .field .text input[readonly="readonly"]:focus {
	/* border: 2px solid rgba(255,255,255,.1); */
}

.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: transparent;
	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 {
	overflow: hidden;
	width: 100%;
	margin: 0 0 20px 0;
}

.fields .check h3 {
	font-size: 16px; font-weight: 700; color: #333;
	margin: 0 0 15px 0;
}

.fields .check [data-check] {
	position: relative;
	margin: 0 0 0 -15px; padding: 22px 30px 20px 60px;
	border-bottom: 1px solid rgba(255,255,255,.1);
}

@media screen and (max-width: 1200px) {

	/* .fields .check [data-check] { padding: 20px 30px 20px 45px; } */

}

/*
.fields .check [data-check]:hover {
	background-color: rgba(0,0,0,.15);
}
*/

.fields .check [data-check] p {
	border: 3px solid white;
	width: 25px; height: 25px;
	border-radius: 5px;
	position: absolute;
	top: 20px; left: 15px;
	cursor: pointer;
}

.fields .check [data-check] p.active {
	border: 3px solid white;
	background-color: white;
	background-image: url(../images/system/checkbox-icon-002.png);
	background-size: 20px 20px;
}

.fields .check [data-check] .text {

}





/* ------------------------------ CONTROLS ------------------------------ */

.controls {

}

.controls [data-control="loading"] {
	display: none;
}





/* ------------------------------ VISIBILITY ------------------------------ */

[data-visible="hide"] { display: none; }
[data-visible="show"] { display: block; }





