#cool-notification, #cool-notification-new{ display: none; }
@font-face{
	font-family: nunito;
	src: url(../fonts/Nunito-Regular.ttf);
}
::-webkit-scrollbar { width: 0px; height: 0; background: transparent; }
::-webkit-scrollbar-thumb { background: #FF0000; }
::selection{ color: #000; background: #9e9e9e; }
::-moz-selection{ color: #000; background: #9e9e9e; }
body[night-mode] *::selection{ color: #fff; background: #333; }
body[night-mode] *::-moz-selection{ color: #fff; background: #333; }
*{ -ms-overflow-style: none; }
html, body{
	/* overflow: hidden; */
	position: fixed;
	top: 0; bottom: 0;
	left: 0; right: 0;
	overflow: hidden;
	font-family: nunito;
	padding: 0px !important;
	margin: 0px !important;
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
	background: #2faace;
	transition: background 0.4s ease;
	-webkit-transition: background 0.4s ease;
	-moz-transition: background 0.4s ease;
}

body[night-mode]{ background: #333 !important; }

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

noscript#noscript-speciale{
	position: fixed;
	top: 0; bottom: 0;
	left: 0; right: 0;
	z-index: 100000;
	background: #fff;
	text-align: center;
	font-weight: 600;
}
noscript#noscript-speciale > div{
	position: absolute;
	top: 50%; left: 50%;
	max-width: 100%;
	width: max-content;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}
noscript#noscript-speciale p{
	padding: 0 20px;
	text-align: center;
}
noscript#noscript-speciale span{
	font-weight: 600;
	text-shadow: 0 0 1px #000;
}

/************************************** custom modal **********************************************/
.modal{
	padding-left: 10px !important;
	padding-right: 10px !important;
}
.modal-dialog{
	width: 100% !important;
	max-width: 500px;
	text-shadow: 0 0 1px #000;
	color: #000;
	margin-left: auto;
	margin-right: auto;
}
body[night-mode] .modal-dialog{ color: #fff; }
.modal-header, .modal-footer{ border: none !important; }
.modal-dialog .btn{
	background: transparent;
	color: #000;
	border: none;
	outline: none !important;
}
body[night-mode] .modal-dialog .btn{ color: #fff; }
body[night-mode] .modal-content{ background-color: #333 !important; }
.modal-content .btn{ font-weight: 600; }
.modal-dialog .btn-primary{ border-color: transparent !important; }
body:not([night-mode]) .modal-dialog .btn-primary{
	background-color: #333 !important;
	color: #fff;
}
body[night-mode] .modal-dialog .btn-primary{
	background-color: #fff !important;
	color: #000 !important;
}
.modal-footer{ text-align: center !important; }


/************************************************************************************/
#container-main-scrollable{
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
}
#container-main-scrollable > div{
	height: 100%;
	overflow-y: auto;
	padding: 15px;
}
#container-main-scrollable > div > div{
	display: table;
	width: 100%;
	max-width: 800px;
	height: 100%;
	margin: 0 auto;
}
#container-main-scrollable > div > div > div{
	display: table-cell;
	vertical-align: middle;
}

#main-inner-layout{
	background: #fff;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
}
body[night-mode] #main-inner-layout{
	background: #444;
	box-shadow: 0 0 2px 0 rgba(255, 255, 255, 0.5);
	-webkit-box-shadow: 0 0 2px 0 rgba(255, 255, 255, 0.5);
	-moz-box-shadow: 0 0 2px 0 rgba(255, 255, 255, 0.5);
}
#main-inner-layout > div{
	display: table;
	width: 100%;
}
#main-inner-layout > div > div{
	display: table-cell;
	vertical-align: middle;
	position: relative;
	z-index: 1;
}
#main-inner-layout > div > div:last-child{ width: 100%; }


/************************************************************************************/
#panel-logo-customable{
	padding: 50px 30px;
}
#panel-logo-customable > b{
	display: block;
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
	z-index: -1;
	opacity: 0.2;
	background: #2faace;
}
body[night-mode] #panel-logo-customable > b{ background: #fff !important; opacity: 0.1; }

#panel-logo-customable > div{
	
}

#area-main-custom-logo{
	position: relative;
	cursor: pointer;
	width: max-content;
	margin: 0 auto;
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
}
#area-main-custom-logo:active{
	transform: scale(0.9);
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
}
#container-main-scrollable[state-loading] #area-main-custom-logo{ z-index: -1; }
#area-main-custom-logo::after{
	content: '';
	display: block;
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
	z-index: 1;
}
#area-main-custom-logo img{
	display: block;
	max-width: 120px;
	max-height: 120px;
	margin: 0 auto;
}

#area-main-custom-title{
	padding: 15px 0;
}
#area-main-custom-title p{
	margin: 0;
	color: #000;
	font-weight: 600;
	white-space: nowrap;
	text-align: center;
	font-size: 1.2em;
}
body[night-mode] #area-main-custom-title p{ color: #fff; }

#area-main-custom-banner{
	position: relative;
	margin: 0 auto;
	padding: 30px;
	z-index: 1;
}
#area-main-custom-banner::after{
	content: '';
	display: block;
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
	z-index: 1;
}
#area-main-custom-banner svg{
	display: block;
	position: absolute;
	top: 50%; left: 50%;
	opacity: 0.2;
	width: 100%;
	z-index: -1;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}
#area-main-custom-banner svg path{ fill: #2faace; }
body[night-mode] #area-main-custom-banner svg path{ fill: #000; }
#area-main-custom-banner > div{
	position: relative;
	width: max-content;
	height: max-content;
	margin: 0 auto;
}
#area-main-custom-banner img{
	display: block;
	max-width: 200px;
	max-height: 200px;
	margin: 0 auto;
}

/************************************************************/
#panel-input-form-data{
	padding: 30px 20px;
	white-space: normal;
	word-break: break-word;
	color: #000;
	position: relative;
}
#container-main-scrollable[state-loading] #panel-input-form-data{
	filter: blur(1px);
	-webkit-filter: blur(1px);
	opacity: 0.8;
}
#container-main-scrollable[state-loading] #panel-input-form-data::after{
	content: '';
	display: block;
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
	z-index: 1;
}
body[night-mode] #panel-input-form-data > div{ color: #fff; }
#container-main-scrollable[state-loading] #panel-input-form-data > div{ position: relative; z-index: -1; }

/************************************************************/
#pifd-title{
	
}
#pifd-title p{
	margin: 0;
	color: inherit;
	font-weight: 600;
	text-align: center;
	font-size: 1.5em;
	letter-spacing: 1px;
	text-transform: capitalize;
}

#pifd-info{
	padding: 10px 0;
}
#pifd-info p{
	margin: 0;
	text-align: center;
	color: inherit;
	font-size: 1em;
}

#pifd-addon-img{
	
}
#pifd-addon-img[state-displayed]{ transform: scale(1); -webkit-transform: scale(1); -moz-transform: scale(1); }
#pifd-addon-img b{
	display: block;
    position: relative;
    width: max-content;
    margin: 0px auto 15px;
    z-index: -1;
}
#pifd-addon-img b img{ display: block; position: relative; }
#pifd-addon-img b i{
	display: block; position: absolute; top: 50%; left: 50%; font-size: 90px;
	transition: all 0.4s ease; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease;
	transform: translate(-50%, -50%) scale(0);
}
#pifd-addon-img[state-displayed] b i{
	transform: translate(-50%, -50%) scale(1);
}

#pifd-description{
	position: relative;
	z-index: 1;
	padding: 7px 10px;
	overflow: hidden;
	border-radius: 5px;
}
#pifd-description b{
	display: block;
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
	z-index: 1;
	background: #2faace;
	opacity: 0.5;
	z-index: -1;
}
#pifd-description p{
	margin: 0;
	color: inherit;
	font-weight: 600;
	font-size: 0.8em;
	text-shadow: 0 0 1px #fff;
	text-align: center;
}
body[night-mode] #pifd-description p{ font-weight: normal; }

/************************************************************/
#pifd-group-input{
	color: #2faace;
	margin: 10px auto 0 auto;
	width: 100%;
	max-width: 350px;
	border-color: #2faace;
}

#pifd-group-input > div[id^="pifdgi-"]{
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	max-height: 500px; opacity: 1; margin-bottom: 5px;
}
#pifd-group-input > div[id^="pifdgi-"]:not([state-displayed]){
	max-height: 0;
	opacity: 0;
	margin-bottom: 0;
	overflow: hidden;
	border-width: 0;
}
#pifd-group-input > div[id^="pifdgi-"]::after{ content: ''; display: block; clear: both; }

#pifdgi-email-in, #pifdgi-pwd-in,
#pifdgi-pwd-new, #pifdgi-pwd-confirm,
#pifdgi-nisn,
#pifdgi-npsn > div > div > div,
#pifdgi-captcha > div,
#pifdgi-name,
#pifdgi-email,
#pifdgi-phone,
#pifdgi-vch{
	border-width: 1px;
	border-style: solid;
	border-color: inherit;
	border-radius: 20px;
	overflow: hidden;
	/* margin-bottom: 5px; */
	background: #fff;
}
body[night-mode] #pifdgi-email-in,
body[night-mode] #pifdgi-pwd-in,
body[night-mode] #pifdgi-nisn,
body[night-mode] #pifdgi-npsn > div > div > div,
body[night-mode] div[id^="pifdgi-pin"] label,
body[night-mode] #pifdgi-captcha > div,
body[night-mode] #pifdgi-name,
body[night-mode] #pifdgi-email,
body[night-mode] #pifdgi-phone,
body[night-mode] #pifdgi-pwd-new,
body[night-mode] #pifdgi-pwd-confirm,
body[night-mode] #pifdgi-vch{ border-color: #fff; }

/* div[id^="pifdgi-pin"], #pifdgi-gender, #pifdgi-card, #pifdgi-reset-password-info{ margin-bottom: 5px; } */

#pifdgi-email-in > div,
#pifdgi-pwd-in > div,
#pifdgi-nisn > div,
#pifdgi-npsn > div > div > div > div,
div[id^="pifdgi-pin"] > div,
#pifdgi-captcha > div,
#pifdgi-name > div,
#pifdgi-email > div,
#pifdgi-phone > div,
#pifdgi-pwd-new > div,
#pifdgi-pwd-confirm > div,
#pifdgi-vch > div{
	display: table;
	width: 100%;
}
div[id^="pifdgi-pin"] > div{ width: max-content; margin: 0 auto; }

#pifdgi-email-in > div > div,
#pifdgi-pwd-in > div > div,
#pifdgi-nisn > div > div,
#pifdgi-npsn > div > div > div > div > div,
div[id^="pifdgi-pin"] > div > div,
#pifdgi-captcha > div > div,
#pifdgi-name > div > div,
#pifdgi-email > div > div,
#pifdgi-phone > div > div,
#pifdgi-pwd-new > div > div,
#pifdgi-pwd-confirm > div > div,
#pifdgi-vch > div > div{
	display: table-cell;
	vertical-align: middle;
}
#pifdgi-email-in > div > div:nth-child(2),
#pifdgi-pwd-in > div > div:nth-child(2),
#pifdgi-nisn > div > div:nth-child(2),
#pifdgi-npsn > div > div > div > div > div:nth-child(2),
#pifdgi-captcha > div > div:nth-child(2),
#pifdgi-name > div > div:nth-child(2),
#pifdgi-email > div > div:nth-child(2),
#pifdgi-phone > div > div:nth-child(2),
#pifdgi-pwd-new > div > div:nth-child(2),
#pifdgi-pwd-confirm > div > div:nth-child(2),
#pifdgi-vch > div > div:nth-child(2){ width: 100%; }



#pifdgi-email-in p,
#pifdgi-pwd-in p,
#pifdgi-nisn p,
#pifdgi-npsn > div > div > div p,
div[id^="pifdgi-pin"] p,
#pifdgi-captcha p,
#pifdgi-name p,
#pifdgi-email p,
#pifdgi-phone p,
#pifdgi-pwd-new p,
#pifdgi-pwd-confirm p,
#pifdgi-vch p{
	margin: 0;
	width: 40px;
	text-align: center;
	color: inherit;	
	white-space: nowrap;
}
div[id^="pifdgi-pin"] p{ width: max-content; color: #000; font-weight: 600; padding-right: 10px; }
body[night-mode] div[id^="pifdgi-pin"] p{ color: #fff; }

#pifdgi-pin-new p, #pifdgi-pin-confirm p{
	width: 100px;
	text-align: right; 
	padding-right: 0;
	margin-right: 10px;
}

#pifdgi-email-in input[type="text"],
#pifdgi-pwd-in input[type="text"],
#pifdgi-pwd-in input[type="password"],
#pifdgi-npsn input[type="text"],
#pifdgi-nisn input[type="text"],
#pifdgi-captcha input[type="text"],
#pifdgi-name input[type="text"],
#pifdgi-email input[type="email"],
#pifdgi-phone input[type="tel"],
#pifdgi-pwd-new input[type="text"],
#pifdgi-pwd-new input[type="password"],
#pifdgi-pwd-confirm input[type="text"],
#pifdgi-pwd-confirm input[type="password"],
#pifdgi-vch input[type="text"]{
	display: block;
	width: 100%;
	background: none;
	border: none;
	outline: none;
	color: #000;
	font-weight: 600;
	height: 35px;
	padding: 0;
}

#pifdgi-pwd-in button,
#pifdgi-captcha button,
#pifdgi-pwd-new button,
#pifdgi-pwd-confirm button{
	display: block;
	width: 35px;
	height: 35px;
	background: none;
	border: none;
	color: inherit;
	outline: none;
	padding: 0;
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
}
#pifdgi-pwd-in button:active,
#pifdgi-captcha button:active,
#pifdgi-pwd-new button:active,
#pifdgi-pwd-confirm button:active{
	transform: scale(0.9);
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
}

#pifdgi-npsn > div{ display: table; width: 100%; }
#pifdgi-npsn > div > div{ display: table-cell; width: 100%; vertical-align: top; }
#pifdgi-npsn > div > div:first-child{ width: 100%; padding-right: 5px; }
#pifdgi-npsn button{
	background: #2faace;
	white-space: nowrap;
	padding: 0 10px;
	font-size: 0.8em;
	border-radius: 20px;
	display: block;
	border: none;
	color: #fff;
	outline: none;
	height: 35px;
	font-weight: 600;
	letter-spacing: 1px;
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
}
#pifdgi-npsn button:active{
	transform: scale(0.9);
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
}

div[id^="pifdgi-pin"] > div > div > div{
	
}
div[id^="pifdgi-pin"] label{
	display: inline-block;
	width: 30px;
	margin: 0 2px;
	background: #fff;
	border-width: 1px;
	border-style: solid;
	border-color: inherit;
	border-radius: 5px;
	overflow: hidden;
	vertical-align: top;
}
div[id^="pifdgi-pin"] input[type="password"]{
	display: block;
	width: 100%;
	height: 35px;
	background: none;
	border: none;
	text-align: center;
	padding: 0;
	outline: none;
	color: #000;
	font-weight: 600;
}

#pifdgi-captcha b{
	display: block;
	width: max-content;
	margin: 0 auto 3px auto;
	height: 50px;
	position: relative;
	background: #fff;
	min-width: 100px;
	border-radius: 5px;
	border: 1px solid #d8d8d8;
	overflow: hidden;
}
#pifdgi-captcha b::after{
	content: '';
	display: block;
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
}
#pifdgi-captcha b img{
	display: block;
	height: 100%;
}

#pifdgi-gender label{
	margin: 0 auto;
	width: max-content;
	display: block;
	border-width: 1px;
	border-style: solid;
	border-color: inherit;
	overflow: hidden;
	border-radius: 20px;
	cursor: pointer;
}
body[night-mode] #pifdgi-gender label{ border-color: transparent; }
#pifdgi-gender label input[type="checkbox"]{ display: none; }
#pifdgi-gender label div{ height: 35px; line-height: 35px; width: 200px; }
#pifdgi-gender label p{
	margin: 0;
	width: 50%;
	float: left;
	text-align: center;
	white-space: nowrap;
	background: #2faace;
	color: #fff;
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
}
#pifdgi-gender label input[type="checkbox"]:not(:checked) ~ div p:last-child,
#pifdgi-gender label input[type="checkbox"]:checked ~ div p:first-child{
	background: #fff !important;
	color: #d8d8d8;
}

#pifdgi-gender label p span{ margin-left: 5px; }

#pifdgi-card div{
	margin: 0 auto 5px auto;
	width: max-content;
	padding: 15px 30px;
	border-radius: 10px;
	background: #d8d8d8;
}
body[night-mode] #pifdgi-card div{ background: #515151; border: 1px solid #9e9e9e; }
#pifdgi-card div b{
	display: block;
	width: 100%;
	text-align: right;
	font-size: 5em;
	color: #000;
}
body[night-mode] #pifdgi-card div b{ color: #d8d8d8; }
#pifdgi-card div p{
	margin: 0;
	white-space: nowrap;
	color: #000;
	font-weight: 600;
	font-size: 1.5em;
}
#pifdgi-card div p span:not(:last-child){ margin-right: 5px; }
body[night-mode] #pifdgi-card div p{ color: #fff; font-weight: normal; }

#pifdgi-card button{
	display: block;
	margin: 0 auto;
	height: 35px;
	width: 120px;
	background: #2faace;
	border-radius: 20px;
	border: none;
	outline: none;
	color: #fff;
	padding: 0;
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
}
#pifdgi-card button:active{
	transform: scale(0.9);
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
}

#pifdgi-reset-password-info{ color: #000; }
body[night-mode] #pifdgi-reset-password-info{ color: #fff; }
#pifdgi-reset-password-info p{
	margin: 0;
	text-align: center;
	color: inherit;
	white-space: normal;
	word-break: break-word;
}

#pifdgi-reset-password-info h4{
	margin: 5px 0;
	text-align: center;
	font-size: 3em;
	font-weight: 600;
	font-family: Courier;
	letter-spacing: -3px;
}
#pifdgi-reset-password-info button{
	display: block;
	background: #2faace;
	border: none;
	color: #fff;
	outline: none;
	padding: 5px 30px;
	margin: 0 auto;
	min-height: 35px;
	border-radius: 20px;
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
}
#pifdgi-reset-password-info button:not([disabled]):active{
	transform: scale(0.9);
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
}
body:not([night-mode]) #pifdgi-reset-password-info button[disabled]{
	background: #d8d8d8 !important;
	color: #9e9e9e;
	cursor: not-allowed;
}
body[night-mode] #pifdgi-reset-password-info button[disabled]{
	background: #515151 !important;
	color: #333;
	cursor: not-allowed;
}

/************************************************************/
#pifd-err-msg{
	padding: 5px 0;
}
#pifd-err-msg p{
	margin: 0;
	color: #ed1c24;
	font-weight: 600;
	text-align: center;
	font-style: italic;
}

/************************************************************/
button#btn-submit-control{
	display: block;
	width: max-content;
	min-width: 60px;
	margin: 5px auto 0 auto;
	height: 40px;
	background: #2faace;
	color: #fff;
    padding: 0 15px;
	border: none;
	outline: none;
	border-radius: 20px;
	font-weight: 600;
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
}
button#btn-submit-control:not([disabled]):active{
	transform: scale(0.9);
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
}
button#btn-submit-control i.fa{ margin-right: 5px; display: none; }
button#btn-submit-control[state-loading] .fa{ display: inline-block; }

body:not([night-mode]) button#btn-submit-control[disabled]{
	background: #d8d8d8 !important; color: #9e9e9e;
	cursor: not-allowed;
}
body[night-mode] button#btn-submit-control[disabled]{
	background: #515151 !important; color: #9e9e9e;
	cursor: not-allowed;
}

button#btn-submit-control > span{}
button#btn-submit-control[state-loading] > span{ display: none; }

/************************************************************/
#area-bare-jumper-mode{
	width: 100%;
	text-align: center;
	padding: 15px 0;
}
#area-bare-jumper-mode button{
	display: inline-block;
	vertical-align: top;
	width: max-content;
	height: 35px;
	padding: 0 15px;
	background: none;
	border: none;
	color: inherit;
	font-weight: 600;
	white-space: nowrap;
	outline: none;
	font-size: 0.9em;
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
}
#area-bare-jumper-mode button:active{
	transform: scale(0.9);
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
}


/************************************************************/
#area-alternate-login{
	
}
#area-alternate-login p{
	margin: 0 0 10px 0;
	color: inherit;
	text-align: center;
}
#area-alternate-login > div{
	text-align: center;
}
#area-alternate-login button{
	position: relative;
	display: inline-block;
	vertical-align: top;
	height: 40px;
	background: none;
	border: 1px solid #2faace;
	outline: none;
	color: inherit;
	white-space: nowrap;
	font-weight: 600;
	border-radius: 5px;
	font-size: 0.9em;
	min-width: 120px;
    margin: 3px;
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
}
#area-alternate-login button:active{
	transform: scale(0.9);
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
}
body[night-mode] #area-alternate-login button{ border-color: #fff !important; }

#area-alternate-login button > *{ display: inline-block; vertical-align: middle; }
#area-alternate-login button > *:not(:first-child){ margin-left: 0.6em; }

#area-alternate-login button[data-for="nfc"] i.fa{ position: relative; padding-left: 0.75em; }
#area-alternate-login button[data-for="nfc"] i.fa::before{
	display: block;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
}
#area-alternate-login button[data-for="nfc"] i.fa::after{
	content: 'N';
	display: block;
	font-family: nunito;
	font-weight: 600;
	position: absolute;
	top: 50%; left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}
#area-alternate-login button[data-for="biometric"] b{
    position: relative; width: 30px; height: 30px; overflow: hidden;
}
#area-alternate-login button[data-for="biometric"] b::after{
    content: ''; display: block; position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: 1;
}
#area-alternate-login button[data-for="biometric"] b img{
    display: block; position: absolute; max-width: 100%; max-height: 100%; top: 50%; left: 50%;
    transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%);
}

/************************************************************/
#area-access-terms-privacy{
	text-align: center;
	margin-top: 15px;
}
#area-access-terms-privacy button{
	display: inline-block;
	background: none;
	color: #9e9e9e;
	border: none;
	outline: none;
	height: 30px;
	padding: 0 10px;
	border-radius: 3px;
	font-size: 0.8em;
	white-space: nowrap;
	vertical-align: top;
	font-weight: 600;
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
}
#area-access-terms-privacy button:active{
	transform: scale(0.9);
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
}


/*****************************/


@media only screen and (max-width: 720px){
	#panel-logo-customable{ padding: 30px 15px; }
	#area-main-custom-banner img{ max-width: 150px; max-height: 150px; }
	
	#area-main-custom-title p{ font-size: 1em; }
}

@media only screen and (max-width: 640px){
	#pifdgi-pin-new > div, #pifdgi-pin-confirm > div{ display: block; }
	#pifdgi-pin-new > div > div, #pifdgi-pin-confirm > div > div{ display: block; }
	#pifdgi-pin-new p, #pifdgi-pin-confirm p{
		width: 100%;
		text-align: center; 
		font-size: 0.8em;
		padding-right: 0;
	}
}
@media only screen and (max-width: 580px){
	#main-inner-layout{ width: 100%; max-width: 400px; margin: 0 auto; }
	#main-inner-layout > div{ display: block; }
	#main-inner-layout > div > div{ display: block; }
	
	#panel-logo-customable{ padding: 15px; }
	#area-main-custom-logo img{ max-width: 100px; max-height: 100px; }
	
	#area-main-custom-title{ padding: 10px 0 0 0; }
	
	#area-main-custom-banner{ display: none; }
	
}
@media only screen and (max-width: 420px){
	#pifdgi-card div b{ font-size: 4em; }
	#pifdgi-card div p{ font-size: 1.2em; }
	
	#pifdgi-captcha b{ height: max-content; }
	#pifdgi-captcha b img{ width: 200px; height: auto; }
}