/* -------------   CSS reset  -----------------  */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ------------- actual styles ---------------- */
@font-face {font-family: 'Open Sans Light Italic'; font-style: italic; font-weight: 300; src: local('Open Sans Light Italic'), local('OpenSansLight-Italic'), url(../fonts/OpenSans-LightItalic.woff) format('woff');}
@font-face {font-family: 'Open Sans Semibold';font-style: normal;font-weight: 600;src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(../fonts/OpenSans-Semibold.woff) format('woff');}
@font-face {font-family: 'Open Sans Extrabold';font-style: normal;font-weight: 800;src: local('Open Sans Extrabold'), local('OpenSans-Extrabold'), url(../fonts/OpenSans-Extrabold.woff) format('woff');}

/* Variables
–––––––––––––––––––––––––––––––––––––––––––––––––– */

:root {
    /* Couleurs */
	--T-preprod: #ff6f00;
	--T-cyan: #00bbdf;
	--T-cyan-hover: #00b0ff;
	--T-cyan-active: #0091ea;
	--T-link: #00b4d7;
	--T-valid: #59c940;
    --T-Warning: #e66114;
    --T-Warning-Light: #F87C08;
	--T-error: #d5344b;
	--T-cancel: #ef5350;
	--T-cancel-hover: #dc494c;
	--T-cancel-active: #e53935;
	--T-background: #f5f5f5;
	--T-border: #e2e2e2;
	--T-deep-grey: #78909c;
	--T-blue-grey: #546e7a;
	--T-dark-grey: #37474f;
	--T-indigo: #242a75;

    /* Dimensions */
	--T-max-width: 460px;
	--T-min-width: 270px;
}

/* Styles par défaut
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	background-color: var(--T-background);
}
body {
	margin:0;
	background-color: var(--T-background);
	padding:2% 0 40px 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}
a {background-color: transparent;}
a:active, a:hover {outline: 0;}
label {
	clear:both;
	display: block;
	padding:10px 10px 10px 10px;
}
.small {font-size: 12px;}
.large {font-size: 20px;}

/* Désactivation du password reveal sur Edge */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
  display: none;
}

strong {
	font-weight: bold;
}

/* BOUTONS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.btnSubmit {
	width:276px;
	height:44px;
	line-height: 44px;
	color:white;
	background-color: var(--T-cyan);
	text-align: center;
	font-size: 18px;
	border-radius: 5px;
	border:0px;
	cursor:pointer;
	font-family: 'Open Sans Semibold', sans-serif;
}

.btnSubmitDisabled {
	width:276px;
	height:44px;
	background:#cdcdcd url(btnLoader.gif) no-repeat center center;
	border-radius: 5px;
	border:0px;
}

.btnLink { 
	display: block; 
	padding: 8px; 
	margin-bottom: 25px; 
	color:white !important; 
	background-color: var(--T-cyan); 
	text-align: center;
	font-size: 18px;
	border-radius: 5px;
	border:0px;
	cursor:pointer;
	font-family: 'Open Sans Semibold', sans-serif;
	text-decoration: none !important; 
}

.btnLinkIcon+.btnLink {
	text-indent: 25px;
}

.backLink {
	color: var(--T-indigo) !important;
	background-color: white;
	border: 1px solid var(--T-indigo);
}

.btnLinkIcon {
	position: absolute;
	height: 36px;
	margin-top: 0px;
	width: 42px;
	background: rgba(70, 150, 200, 0.1);
	border-right: 1px solid var(--T-background);
	overflow: hidden;
}

.backLinkIcon {
	border-right: 1px solid var(--T-blue-grey);
}


.btnLinkIcon img {
	margin-top: 4px;
	margin-left: 6px;
	width: 25px;
}

.btnLinkDisabled {
	background: var(--T-border) !important;
}

.link-small {
	font-size: 14px;
}

.frontLink {
	padding: 16px; 
}

.btnSubmit:hover, .btnLink:hover {
	background-color: var(--T-cyan-hover);
}

.btnSubmit:active, .btnLink:active {
	background-color: var(--T-cyan-active);
}

.backLink:hover, .backLink:active {
	background-color: var(--T-background);
}

#errResult {
	display: none;
	background-color: var(--T-error);
	color:white;
	font-size: 11px;
	text-align: center;
	padding:6px 0;
	margin-top: -10px;
	margin-bottom:20px;
	border-radius: 5px;
}

.errVisible {
	display: block !important;
	font-size: 14px !important;
	width: 100% !important;
}

#ajaxSrch, .ajaxSrch {
	display: none;
	background-color: var(--T-deep-grey);
	color:white;
	font-size: 11px;
	text-align: center;
	padding:6px 0;
	margin-top: -10px;
	margin-bottom:20px;
	border-radius: 5px;
}

.ajaxSrch { display: block; }

.tooltip-inner {
	color: var(--T-blue-grey);
    background-color: white;
}
.tooltip.bs-tooltip-right .arrow:before {
    border-right-color: white !important;
}
.tooltip.bs-tooltip-left .arrow:before {
    border-left-color: white !important;
}
.tooltip.bs-tooltip-bottom .arrow:before {
    border-bottom-color: white !important;
}
.tooltip.bs-tooltip-top .arrow:before {
    border-top-color: white !important;
}

.linkBtn {
	width:274px;
	height:44px;
	line-height: 44px;
	color:white;
	text-align: center;
	font-size: 18px;
	border-radius: 5px;
	border:0px;
	cursor:pointer;
	font-family: 'Open Sans Semibold', sans-serif;
	text-decoration: none;
	text-align: center;
	display: block;
	margin:0 auto 20px auto;
}

.linkContinue { background-color: var(--T-cyan); }
.linkContinue:hover { background-color: var(--T-cyan-hover); }
.linkContinue:active { background-color: var(--T-cyan-active); }

.linkCancel { background-color: var(--T-cancel); }
.linkCancel:hover { background-color: var(--T-cancel-hover); }
.linkCancel:active { background-color: var(--T-cancel-active); }

.linkContinueGrey { background-color: #b6b6b6; }
.linkContinueGrey:hover { background-color: #b0b0b0; }
.linkContinueGrey:active { background-color: #a9a9a9; }

hr {
	clear:both;
	display: block;
	width:100%;
	border:0px;
	border-top:1px solid #e3e3e3;
	padding:0 ;
	margin: 20px auto;
}

/* Spécifiques aux conteneurs
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* CoreApp */
body.coreapp { margin-top: 20px; }

/* PREPROD */
body.preprod #authContainer {border-top:1px solid var(--T-preprod) !important;}
body.preprod #accessType {background-color: var(--T-preprod);color:white;display: block;}
#accessType {display: none;margin-left: 10px;padding:3px 15px;position:absolute;text-transform: uppercase;font-family: 'Open Sans Semibold', sans-serif;font-size: 12px;}


#details {width:360px;margin:0 auto 0 auto;text-align: center;color:#78909c;clear:both;}
#details .intro {margin-bottom:40px;padding-top: 10px;}
#details.important h2 {text-transform: uppercase;margin:10px 0 2px 0;padding:6px 0;background-color: var(--T-cancel);color:white;font-size: 14px;font-family: 'Open Sans Semibold', sans-serif;}
#details.important p {color:var(--T-cancel-active);padding:0 0 16px 0;margin:16px 0 36px 0;border-bottom: 1px solid var(--T-cancel);}

#mainContainer, #helpContainer {
	background-color:white;
	border:1px solid var(--T-border);
	border-top:1px solid var(--T-cyan);
	max-width:var(--T-max-width);
	margin:0 auto;
	clear:both;
	min-width:var(--T-min-width);
}

.content, #doneResult {
	padding:20px 40px;
}

#doneResult {
	display: none;
}

.narrower {
	width: 80%;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}

.title-center, #doneResultMsg h3 {
    display: block;
    font-family: 'Open Sans Semibold', sans-serif;
    font-size: 16px;
	text-align: center;
    color: var(--T-blue-grey);
    padding: 0;
    margin: 0 0 5px 0;
}

#doneResultMsg h3 {
	margin-bottom: 15px;
}

.intro-text {
	margin-bottom: 20px;
}

.dirResetRes {
	text-align: left;
	line-height: 25px;
}

#thalesTitle {font-family: 'Open Sans Light Italic', sans-serif;color: #949494;font-size: 24px;max-width: 360px;margin: 12px auto 30px auto;text-align: center;display: block;}
body.coreapp #thalesTitle { margin-top: 58px; }
#thalesTitle img {margin: 22px auto 20px auto;clear:both;display:block;}

#helpContainer {
	margin:0 auto 0 auto;
	background-color:white;
	max-width: var(--T-max-width);
	border:1px solid var(--T-border);
	border-top:none;
	border-bottom:1px solid var(--T-cyan);
	color: var(--T-deep-grey);
	font-size: 12px;
}

#helpContainer h3 {
	font-family: 'Open Sans Semibold', sans-serif;
	font-size: 13px;color: var(--T-blue-grey);
	padding: 0;
	margin: 0;
}
#helpContainer .helpContainerIn ul { list-style-type: none; margin-left: -40px;}
#helpContainer .helpContainerIn ul li {line-height: 18px;}
#helpContainer a {
	display: block;
	color:var(--T-link);
	text-decoration: none;
}

#helpContainer a:nth-of-type(1){ 
	margin: 6px 0;
}

#helpContainer .boredered {
	padding-bottom: 8px;
}

#helpContainer .boredered:nth-of-type(1) {
	padding-top: 8px;
}

#helpContainer a:hover {text-decoration: underline;}

#languageSelectDiv {
	float:right;
}

#authMore {clear:both;border-top:1px solid #ebebeb;width:100%;margin-top:70px;display: inline-block;}
#lgSelectorContainer {border-left:1px solid #ebebeb;padding: 22px 20px 22px 55px;float:right;clear: both;}
#lgSelector {width:160px;padding:0 0 0 6px;}
#lgIcon {
	width:20px;
	height:18px;
	float:left;
	margin-right: 10px;
	padding-top: 2px;
}

.icon { width: 25px; }
.small-icon { width: 15px; }
.flag-icon { width: 20px; }

#homeArea {
	margin-left: 6px;
	margin-top: 6px;
	float: left;
}

#helpArea {
	margin-right: 6px;
	margin-top: 10px;
	float: right;
}

#helpArea a {
	color: black;
	font-size: 12pt;
	text-decoration: none !important;
}

#helpArea a img {
	vertical-align: sub;
}

#languageSelectDiv .flag-icon {	margin-bottom: -4px; }

.dropdown-menu {
	min-width: 5rem;
}

.dropdown-item.active {
	background-color: var(--T-cyan) !important;
}

#helpContainer .row {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}

#helpContainer .pwdPolicyRow {
	border-top: none;
}

#helpContainer .col {
    text-align: center;
    padding: 0px;
}

/*
#helpContainer .col:nth-child(1n+2) {
    border-left: 1px solid var(--T-border);
}
*/
/* CLOAK */
.cloak {
    position: relative;
    top: 12px;
    width: 40px;
    height: 0px;
    margin-left: auto;
    margin-right: 3px;
}

/* Formulaires
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#mainContent {
    margin: 0 auto 40px auto;
	width: 320px;
}

#mainContent + .form-flex-line {
    margin-top: -30px;
    margin-left: 20px;
    margin-right: 20px;
}

label {
    display: block;
    padding: 10px;
}

::placeholder {
    font-style: italic;
    color: var(--T-deep-grey);
}

input { outline: none; }

input[type=text], input[type=password] {
    display: block;
    width: 100%;
    border: 1px solid #d9d9d9;
    border-top: 1px solid #c0c0c0;
    color: #b0b0b0;
    font-size: 14px;
    padding: 12px;
    margin-bottom: 20px;
	transition: all ease .2s;
}

input[type=text]:hover::placeholder, input[type=text]:focus::placeholder, input[type=text]:active::placeholder {
    color: var(--T-cyan);
}

input[type=text]:hover, input[type=password]:hover {
	border: 1px solid var(--T-cyan-hover);
	color: var(--T-dark-grey);
}

input[type=text]:active, input[type=text]:focus, input[type=password]:active, input[type=password]:focus {
	border: 1px solid var(--T-cyan-active);
	color: var(--T-dark-grey);
}

.confirmOK, .confirmOK:active, .confirmOK:focus {
	border: 1px solid var(--T-valid) !important;
}


.errorField {
	border-color: var(--T-error) !important;
	border-top-color: red !important;
}

.subTitle {
	font-style: italic;
	color: var(--T-blue-grey);
}


.activeTGI {
	color: var(--T-cyan-active);
}

/* Tableau
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.details-table {
	width: 80%;
	margin:0 auto;
	clear:both;
	min-width:var(--T-min-width);
	border: 1px solid var(--T-border);
}

.details-table tr:nth-child(odd) td {
	background: var(--T-background);
}

.details-table tr:nth-child(even) td {
	background: var(--T-border);
}
.details-table td {
	padding: 15px;
	font-size: 10pt;
}

.details-table td:nth-child(1) {
	width: 38%;
}

.details-table td:nth-child(2) {
	width: auto;
	border-left: 1px solid var(--T-border);
}

/* Pwd Policy
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#pwdpolicy_container { 
	display: none; 
	margin-top: 10px;
	padding: 15px;
    line-height: 20px;
}

#pwdpolicy_container ul {
	margin-top: 8px;
	list-style-type: square;
	margin-left: 14px;
	margin-bottom: 12px;
}

#pwdpolicy_container ul li {
	margin-left: 5px;
	padding-left: 5px;
}

.policy-title {
    font-size: 12px;
    font-weight: 700;
    display: block;
}

/* Responsive
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media only screen and (max-width: 460px) {
	#mainContainer, #helpContainer {width:100%;border-left:0;border-right: 0px;}
	.narrower { width: 90%;}
}
@media only screen and (max-width: 400px) {
	#mainContainer, #helpContainer {width:100%;border-left:0;border-right: 0px;}
	#lgSelectorContainer {border:0px;}
	.content {padding:20px 20px;}
	.narrower { width: 100%;}
	#helpContainer a:nth-of-type(1){ margin: 16px 0; }
}