﻿*, ::after, ::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: "Work Sans","Work Sans",Arial,sans-serif;
    font-size: 12px;
    line-height: 1.4285;
    color: #495057;
    background-color: #fff;
	overflow: hidden;
	font-style: normal;
}
.mainContainer {
    position: relative;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	align-content: stretch;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 100vh;
}
.mainContainer > .left-part,
.mainContainer > .right-part {
    position: relative;
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 50%;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
}
.mainContainer > .right-part {
	background-image: url("../img/logo_val.jpg");
	background-position: right bottom;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-size: 140px 35px;
}
.mainContainer > .left-part {
	background-image: url("../img/FondsEspacesTravail/infirmieres.jpg");
	background-size: cover;
	background-attachment: scroll;
	background-position: center center;
	background-repeat: no-repeat;
}
.mainContainer > .left-part::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    opacity: 1;
    z-index: 0;
	background-image: linear-gradient(-135deg, rgba(255, 160, 0, 0.7) 25%, rgba(255, 160, 0, 0.95) 100%);
}
.mainContainer .content-container {
	position: relative;
	z-index: 1;
}
.Copyright
{
	color: #ffffff;
	font-weight: normal;
	font-size: 1rem;
	font-style: normal;
}
.Conteneur
{
	width: 100%;
	background: #F6F6F4;
	padding: 16px;
}
.Description {
	color: #495057;
	font-weight: normal;
	font-size: 0.85714rem;
	font-style: italic;
	line-height: 1.142857rem;
}
.actionButton {
	margin-top: 2rem;
	padding: 16px 16px 16px 46px;
	display: flex;
	flex-direction: row;
	align-items: center;
	align-content: center;
	cursor: pointer;
}
.actionButton .Intitule
{
	color: #6900C3;
	font-weight: bold;
	font-size: 16px;
	line-height: 1.5em;
}
.actionButton .Description
{
	color: inherit;
	font-weight: normal;
	font-size: 14px;
	line-height: 1.5em;
}
.actionButton:hover {
	background-color: #F6F6F4;
}
.actionButton.active,
.actionButton.active:hover {
	background-color: rgb(255, 160, 0);
	color: #fff;
}
.actionButton.active .Intitule,
.actionButton.active:hover .Intitule,
.actionButton.active .Description,
.actionButton.active:hover .Description {
	color: #fff;
}
.loginOptions
.loginLabel {
    color: #495057;
    font-weight: normal;
    font-size: 12px;
    font-style: normal;
}

/* Slider */
.ui-slider
{
	position: relative;
	text-align: left;
	background-color: rgb(240, 240, 240);
	border: 1px solid rgb(69, 179, 226);
	height: 8px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	webkit-border-radius: 3px;
}
.ui-slider-range
{
	background-color: rgb(91, 188, 229);
	height: 8px;
}
.ui-slider-handle
{
	color: rgb(0, 0, 0);
	font-size: 10px;
	font-weight: bold;
	line-height: 14px;
	vertical-align: top;
	text-align: center;
	text-decoration: none;
	position: absolute;
	z-index: 2;
	width: 14px;
	height: 14px;
	background-color: rgb(181, 226, 246);
	border: 1px solid rgb(69, 179, 226);
	margin-left: -7px;
	top: -4px;
	background-image: none;
	opacity: 1.0;
	-moz-border-radius: 4px;
	border-radius: 4px;
	webkit-border-radius: 4px;
}

.val-bullet
{
	width: 6px;
	height: 6px;
	margin: 7px;
	overflow: hidden;
	border: 1px solid rgb(200, 200, 200);
	-moz-border-radius: 10px;
	border-radius: 10px;
	webkit-border-radius: 10px;
	background-color: rgb(220, 220, 220);
}
/*
Classe Css a utiliser pour couper une chaine de caractere et qui ajoute "..." a la fin de la chaine
*/
.val-Ellipsis {
	overflow: hidden;
	white-space: normal;
	display: -webkit-box !important;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis; /** IE6+, Firefox 7+, Opera 11+, Chrome, Safari **/
	width: 100%;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.val-Flex
{
    display: -ms-inline-flexbox; /*IE 10 */
    display: -webkit-inline-flex; /*FF 2 */
    display: inline-flex;
}

.val-Italic
{
    font-style:italic;
}