/**
1. COMMON
2. HEADER
3. FORMS
**/

/**********
*	COMMON
**********/

body{
	font-family: 'Open Sans', sans-serif;
	color: #000;
	/*font-size: 13px;*/
	line-height: 1.42857;
	margin-bottom: 10px;
}

/* titles */
h1, h2, h3, h4 {
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
}

/* size */
.size-xs{
	font-size: 0.8em;
}

.size-s{
	font-size: 0.9em;
}

.size-l{
	font-size: 1.5em;
}

.size-xl{
	font-size: 2em;
}

.size-xxl{
	font-size: 3em;
}

/* align */
.center{
	text-align: center;
}

.left{
	text-align: left;
}

.right{
	text-align: right;
}

.vertical-center{
	vertical-align: middle;
}

.margin-top{
	margin-top: 20px;
}

.margin-bottom{
	margin-bottom: 20px;
}

/* links */
a.disabled  {
	pointer-events: none;
	cursor: default;
	color: #333;
}

a {
	font-weight: 400;
	color: #00566B;
	text-decoration: none;
	background-color: transparent;
}

.btn, .btn-success {
	background-color: #fff;
	border-radius: 5px;
	font-weight: 700;
	padding: 6px 24px;
	color: #00566B;
	border: #00566B 2px solid;
}

.btn-hover, .btn-success:hover{
	background-color: #00566B;
	color: #fff;
	border: #00566B 2px solid;
}

.btn:active, .btn:focus,.btn-success:focus, .btn-success:active {
	background-color: #000 !important;
	border: #000 2px solid !important;
	color: #fff !important;
}

.btn-xs, .btn-xs:hover{
	padding: 1px 5px;
}

.btn-disabled{
	pointer-events: none;
	cursor: default;
	color: #333;
	background-color: #ccc;
	border-color: #bbb;
	opacity: 0.65;
}

.btn-outline{
	background-color: #00566B;
	border-radius: 5px;
	font-weight: 700;
	padding: 6px 24px;
	color: #fff;
	border: #fff 2px solid;
}

.btn-outline:hover, .btn-outline:focus, .btn-outline:active{
	background-color: #fff;
	border-radius: 5px;
	font-weight: 700;
	padding: 6px 24px;
	color: #00566B;
	border: #00566B 2px solid;
}

td.actions a.btn, td p.actions a.btn{
	width: 100%;
	margin-bottom: 5px;
}

.help {
	padding-left: 10px;
	text-align: right;
	width: 20px;
	color: #000;
}


.alert-info .popover{
	color: #000;
}

.alert{
	border-radius: 8px;
}

.alert-warning{
	background-color: #FFF;
	border-color: #FFED75;
	border-width: 3px;
	color: #012434;
}
.alert-info{
	background-color: transparent;
	border-color: #00566B;
	border-width: 3px;
	color: #000;
}
.alert-success{
	background-color: transparent;
	border-color: #2CB8A5;
	border-width: 3px;
	color: #012434;
}
.alert-green{
	background-color: transparent;
	border-color: #B6E7DD;
	border-width: 2px;
	color:#012434;
}
.alert-danger{
	background-color: transparent;
	border-color: #B04346;
	border-width: 2px;
	color:#012434;
}
.label-info, .panel-primary .panel-heading{
	background-color: #00566B;
	border: none;
	color: #FFF;
}

.label{
	border-radius: 0;
	font-weight: 500;
}

.panel-primary .panel-heading .popover{
	color: #000;
}

.uppercase{
	text-transform: uppercase;
}

.border-right{
	border-right: 1px solid #ddd;
}

/* visibility */
.visibility-hidden{
	visibility: hidden; /*hide the element but keeps the size*/
}

/* tables */
.well .table{
	background-color: #FFF;
}

table td.wordbreak{
	word-break: break-all;
}

table.center td, table.center th{
	text-align: center !important;
	vertical-align: middle !important;
}

tr.border-top-double{
	border-top: 3px solid #ddd;
}

tr.border-bottom-double{
	border-bottom: 3px solid #ddd;
}

tr.more-visible, td.more-visible{
	font-weight: bold;
}

.bootstrap-table .pagination-detail{
	display: none;
}

.pagination-detail{
	display: none !important;
}

/* icons */
.icon-xs{
	height: 10px;
}

.icon-s{
	height: 15px;
}

.icon-m{
	height: 25px;
}

.icon-l{
	font-size: 30px;
	margin-left: 10px;
}

/* colors */
.red{
	color: #B04346;
}

.green{
	color: #208572;
}

.yellow{
	color: #FFED75;
}

/*lists*/
.center ul{
	text-align: left;
	margin-left: 15%;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
	background-color: #0b6483 ;
	color: #fff;
	border-radius: 0;
}

.nav-pills > li > a:hover {
	border-radius: 0;
}

.icon-superman{
	width: 30px;
	height: 15px;
	display: inline-block;
	background-image: url('../img/assets/superman-flying.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 30px;
}

dt:after {
	content:" : ";
}

dt, dd{
	display: inline;
	line-height: 30px;
}

dd:after{
	content:"\A";
	white-space:pre;
}

/* fix minor bug in google charts */
svg > g > g:last-child {
	pointer-events: none
}

/**********
*	HEADER
**********/

header {
	background-color: #fff;
	padding-bottom: 5px;
}

header a:hover {
	color: #012434;
	text-decoration: none;
}

/* language switcher */
#language-switcher{
	background-color: #012434;
	padding: 2px 0 2px 0;
}

#language-switcher .navbar-nav {
	padding: 8px 0;
}

#language-switcher a, #language-switcher a:hover, #language-switcher a:active, #language-switcher a:visited{
	color: #FFF;
	text-decoration: none;
	background-color: #012434;
	padding: 0 8px;
}

/* Breadcrumbs */
ol#wo-breadcrumbs{
	background-color: transparent;
	color: #FFF;
	padding-left: 0;
	margin-bottom: 0;
}

ol#wo-breadcrumbs a{
	color: #FFF;
}

.breadcrumb > li + li::before{
	content: '> ';
}

/* Nav */

.navbar-header {
	padding: 15px 0;
}

#main-navbar .navbar-nav {
	/*padding-left: 50px;*/
	padding-top: 23px;
}

#main-navbar li a::after {
	color: transparent;
	content: attr(title);
	display: block;
	font-weight: 500;
	height: 1px;
	margin-bottom: -1px;
	overflow: hidden;
	visibility: hidden;
}

#main-navbar li a {
	display: inline-block;
	margin: 0 15px;
	padding: 6px 5px;
	text-align: center;
	text-transform: uppercase;
	color: #000;
}

#main-navbar li a:hover {
	font-weight: 700;
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	color: #000;
}

#main-navbar li a:active {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	color: #000;
}

/* logo */
#app-logo{
	display: inline-block;
	height: 100px;
}

#title-Panorama{
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	font-size: 2.5rem;
	color: #057A8B;
}

/**********
* BODY
**********/

/* Intro */
.intro {
	font-size: 16px;
	margin-bottom: 30px;
}

.blue-degrade {
	background: #00566B;
	color: #fff;
}

.intro h1{
	margin-bottom: 20px;
	margin-top: 10px;
	padding: 0
}

.intro form {
	border-bottom: 1px solid #517b8d;
	border-top: 1px solid #517b8d;
	margin: 20px 0 55px;
	padding: 40px 0 25px;
}

/**********
*	FORMS
**********/
input.input-xs{
	max-width: 400px;
}

input{
	max-width: 550px;
}

input[type=text], input[type=password], input[type=email]{
	width: 550px;
}

select{
	display: block;
	width: 550px;
}

.form-group.center input, .form-group.center select{
	margin: auto;
}

.input-inline{
	display: inline;
}

label {
	display: inline;
}

.modal-header h4 label{
	font-weight: normal;
}

input.checkbox-block{
	margin-right: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
}

input.checkbox-block+label{
	font-weight: 300;
}

input.checkbox-block+label:after{
	content: "\A";
	white-space: pre;
}

input[type="checkbox"].styled:checked + label:after,
input[type="radio"].styled:checked + label:after,
.checkbox input[type=checkbox]:checked + label:after {
	font-family: 'Glyphicons Halflings';
	content: "\e013";
}

input[type="checkbox"].styled:checked label:after,
input[type="radio"].styled:checked label:after,
.checkbox label:after {
	padding-left: 4px;
	padding-top: 2px;
	font-size: 9px;
}

input[type="checkbox"].styled:checked  + label{
	color: #2CB8A5;
	font-weight: bold;
}

.checkbox-success input[type="checkbox"]:checked + label::before, .checkbox-success input[type="radio"]:checked + label::before {
	background-color: #2CB8A5;
	border-color: #2CB8A5;
}

.checkbox-vertical label{
	padding-left: 4px;
}

.checkbox-vertical label::after{
	content: '\A';
	white-space: pre;
}

input[type="radio"]+label{
	margin-right: 20px;
}

.radio-lg label {
	padding-right: 20px;
}

select.input-size{
	max-width: 550px;
}

.stats-type-radio .select-type label{
	font-weight: normal;
	padding-left: 5px;
}

.login-new-password {
	margin-top: 3rem;
}

/*jquery typehead*/
.center ul.typeahead-list {
	margin: auto;
	width: 550px;
	position: relative;
}

.typeahead-field input {
	background-color: #FFF;
}

select:disabled{
	background: #dddddd;
}

.typeahead-field input:disabled{
	background: #dddddd;
}

.blue-degrade select{
	color: #000;
}

ul.form-errors {
	list-style: none;
	padding: 0;
	margin: 0;
}

ul.form-errors li:before {
	position: relative;
	top: 1px;
	display: inline-block;
	font-family: 'Glyphicons Halflings';
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	padding: 0 10px;
	content: "\e107";
}

.ui-corner-all input{
	margin-right: 5px;
}

/* SCROLLBAR */
::-webkit-scrollbar {
	width: 12px;
}
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
::-webkit-scrollbar-thumb {
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

/* NAV */
.nav-pills{
	margin-bottom: 10px;
}

/* TABS */

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus{
	color: #000;
}

.tab-content{
	border: 1px solid #ddd;
	padding: 10px;
}
.pdf-language{
	padding-left:20px;
}
.modal-trigger :hover{
	cursor: pointer;
}
.modal-home-page{
	vertical-align: middle;
}
.modal-home-page li{
	list-style-type:none;
	margin-bottom: 5px;
}

.help-contact-row{
	border-top: 1px solid #517b8d;
	border-bottom: 1px solid #517b8d;
	margin: 20px 0 55px;
	padding: 40px 0 25px;
}

.title_bar{
	background-color: #0b6483;
}

.popover .arrow {
	visibility: hidden;
}

.popover{
	width: 200px;
}

.point-half{
	margin-left: 50%;
}

#modal-personnal-data .modal-dialog{
	width: 70%;
}

#modal-personnal-data .modal-body{
	overflow-y: scroll;
	overflow-x: hidden;
	max-height: 500px;
}

#form-faq textarea{
	width: 550px;
}

#users-list ul.projects{
	max-width: 180px;
	padding-left: 10px;
}

#users-list ul.projects li{
	max-width: 180px;
	word-wrap: break-word;
}

table#projects-list ul.questionnaires{
	padding-left: 10px;
}

.progress-bar-success{
	background-color: #2CB8A5;
}

.progress-bar-danger{
	background-color: #B04346;
}

.label-default{
	background-color: #535D5F;
}

.slider-handle, .slider-selection.tick-slider-selection, .slider-tick.in-selection{
	background-image: linear-gradient(to bottom,#00566B,#00566B 100%);
}

.well{
	background-color: #F8F8F8;
	border: none;
    box-shadow: none;
	-webkit-box-shadow: none;
}

.toggle-on.btn{
	background-color: #2CB8A5;
	border: #2CB8A5 1px solid;
	color: #fff;
}

.toggle-off.btn{
	background-color: #B04346;
	border: #B04346 1px solid;
	color: #fff;
}

.toggle  .toggle-handle{
	background-color: #00566B;
}

option{
	font-weight: 400;
}
.panel-primary{
	border-color: #00566B;
}

#impersonate-topbar {
	background: #3A3A3A;
	color: #FFFFFF;
}

.background-green{
	background-color: #B6E7DD;
}

.mail-admins_type label{
	margin: 0 2rem 0 0.5rem;
	font-size: 1.7rem;
}

/* TABLE */
.large-table {
	margin-left: -100px;  /* Décale le tableau vers la gauche */
    margin-right: -100px;
}

table .col-md-2 {
    white-space: normal !important;
    overflow: hidden;
    max-width: 200px; 
}

table .col-md-2 {
    white-space: normal !important;
    overflow: hidden;
    max-width: 100px; 
}

/* EMAIL ADMIN */
.mail-admin-attachment {
	margin-top: 1rem;
}

.tab-content{
	border: none;
	padding: 10px;
}