/* ==========================================================================
HTML & BODY
========================================================================== */
html, body {
	color:#333;
}
body {
	font-family:"Roboto", sans-serif;
	font-weight:300;
	font-size:16px;
	-webkit-text-size-adjust:100%;
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none;   /* Chrome/Safari/Opera */
	-khtml-user-select: none;    /* Konqueror */
	-moz-user-select: none;      /* Firefox */
	-ms-user-select: none;       /* Internet Explorer/Edge */
	user-select: none;           /* Non-prefixed version */
}

/* ==========================================================================
BACKGROUND
========================================================================== */
.bg-blue {
	background:#5faded !important;
}
.bg-black {
	background:#111 !important;
}

/* ==========================================================================
MARGINS
========================================================================== */
.top-buffer-lg {
	margin-top:80px;
}
.top-buffer {
	margin-top:40px;
}
.top-buffer-sm {
	margin-top:20px;
}
.top-buffer-xs {
	margin-top:10px;
}
.bottom-buffer-lg {
	margin-bottom:80px;
}
.bottom-buffer {
	margin-bottom:40px;
}
.bottom-buffer-sm {
	margin-bottom:20px;
}
.bottom-buffer-xs {
	margin-bottom:10px;
}
.height-buffer-lg {
	margin-top:80px;
	margin-bottom:80px;
}
.height-buffer {
	margin-top:40px;
	margin-bottom:40px;
}
.height-buffer-sm {
	margin-top:20px;
	margin-bottom:20px;
}
.height-buffer-xs {
	margin-top:10px;
	margin-bottom:10px;
}

/* ==========================================================================
FONTS & BUTTONS STYLES
========================================================================== */
.btn-default {
	color:#fff;
	border:2px solid #3F95DC;
	background:#5faded;
	-webkit-transition-timing-function:ease;
	transition-timing-function:ease;
	-webkit-transition-duration:500ms;
	transition-duration:500ms;
	-webkit-transition-property:color, border-color, background-color, box-shadow;
	transition-property:color, border-color, background-color, box-shadow;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
	color:#fff;
	border:2px solid #418DCC;
	background:#499BDF;
}
.btn-light {
	color:#000 !important;
	border:2px solid rgba(0,0,0,.1) !important;
	background:rgba(0,0,0,.05) !important;
}
.btn-light:hover,
.btn-light:focus,
.btn-light:active {
	color:#000 !important;
	border:2px solid rgba(0,0,0,.15) !important;
	background:rgba(0,0,0,.1) !important;
}
a:hover,
.btn-default:hover {
	-webkit-transition-duration:200ms;
	transition-duration:200ms;
}
a,
a:hover,
a:visited,
a:focus,
a:active {
	text-decoration:none;
}
a:hover,
a:active {
	color:#363940;	
}
a:not(.btn),
a:not(.btn):hover,
a:not(.btn):visited,
a:not(.btn):active,
a:not(.btn):focus {
	color:#5faded;
	text-decoration:underline;
}
h1, h2, h3, h4, h5 {
    margin:0;
	font-weight:700;
}
h1, h2, h3 {
	color:#000;
}
h4, h5 {
	color:#333;
}
.text-link {
	cursor:pointer;
	text-decoration:underline;
}
.text-link:hover {
	color:#000;
}
.text-normal {
	font-weight:300;
}
.text-bold,
strong {
	font-weight:700;
}
.text-small {
	font-size:.75em;
}
.text-white {
	color:#fff;
}
.text-blue {
	color:#5faded;
}

/* ==========================================================================
INPUTS
========================================================================== */
input, textarea {
	border-radius:6px;
}

/* ==========================================================================
LISTS
========================================================================== */
.fa-ul {}
	.fa-ul li {
		margin-bottom:10px;
	}
	.fa-ul li .fa-li {
		left:-2.14285714em;
	}

/* ==========================================================================
BACKGROUND COLOR
========================================================================== */
.bg-light {
	background:rgba(255,255,255,.65);
}
.bg-dark {
	background:rgba(0,0,0,.65);
}

/* ==========================================================================
DEFINITIONS ANIMATE.CSS
========================================================================== */
section {
	overflow:hidden;
}
.animated {
	visibility:hidden;
}
.bounceIn,
.rubberBand,
.fadeIn,
.fadeInUp,
.fadeInDown,
.fadeInLeft,
.fadeInRight,
.flipInX {
	visibility:visible;
}

/* ==========================================================================
BUTTONS
========================================================================== */
.btn {
	width:100%;
	border-radius:6px;
}
.btn-lg {
	font-size:1.15rem;
}
	.btn .fa {
		margin-right:8px;
	}

/* ==========================================================================
ICON
========================================================================== */
.i-wrapper i {
	width:2.2em;
	line-height:2.2em;
	border-radius:2.2em;
	border:2px solid rgba(185,194,201,0.25);
	color:#5faded;
	background:#fff;
	box-sizing:content-box;
}

/* ==========================================================================
Preloader
========================================================================== */
.lds-ring {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}
.lds-ring div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 64px;
	height: 64px;
	margin: 8px;
	border: 8px solid #5faded;
	border-radius: 50%;
	animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #5faded transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
	animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
	animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
	animation-delay: -0.15s;
}
@keyframes lds-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* ==========================================================================
FORM GROUP
========================================================================== */
.input-group .form-control {
	font-weight:700;
}
.input-group-prepend .input-group-text,
.input-group-prepend button,
.input-group-append .input-group-text,
.input-group-append button {
	background:#ebedef;
	box-shadow:none;
	border:1px solid rgba(0,0,0,.1);
	border-top-left-radius:6px;
	border-bottom-left-radius:6px;
}
	.input-group-prepend .input-group-text i {
		color:#000;
	}
.input-group-prepend button:hover,
.input-group-prepend button:active,
.input-group-prepend button:visited,
.input-group-prepend button:focus,
.input-group-append button:hover,
.input-group-append button:active,
.input-group-append button:visited,
.input-group-append button:focus {
	background:#C7D0D8 !important;
	border-color:inherit !important;
	color:#000 !important;
}
.input-group .form-control:last-child {
	background:#fff;
	box-shadow:none;
	border:1px solid rgba(0,0,0,.1);
	border-top-right-radius:6px;
	border-bottom-right-radius:6px;
	color:#333;
}

/* ==========================================================================
FORM VALIDATION
========================================================================== */

/* ==========================================================================
FORM VALIDATION
========================================================================== */
.help-block {
	margin-right:8px;
    font-size:.9em !important;
}
.has-error label *,
.has-error .help-block,
.has-error .input-group-text * {
    color:#D15457 !important;
}
.has-success label,
.has-success .help-block,
.has-success .input-group-text * {
    color:#000;
}

/* ==========================================================================
PRODUITS
========================================================================== */
.categorie-produits {
	cursor:pointer;
}
.categorie-produits:hover * {
	color:#000 !important;
}
	.categorie-produits img {
		max-width:80px;
		border:4px solid rgba(165,175,185,.25);;
	}
	.categorie-produits:hover img {
		max-width:80px;
		border:4px solid rgba(165,175,185,1);;
	}
.img-categorie-produit {
	width:80px;
}
.ligne_produit {
	padding:15px;
	border-radius:6px;
	margin-bottom:10px;
	background:rgba(165,175,185,.1);
	border:1px solid rgba(165,175,185,.15);
	cursor:auto;
}
.ligne_produit.description {
	cursor:pointer;
}
.ligne_produit.selectionnee {
	border: 1px solid #000;
}
	.ligne_produit.selectionnee .form-control {
		background:#000 !important;
		border-color:#000 !important;
		color:#ffc107!important;
	}
	.ligne_produit .image-produit {
		width:80px;
		background:#fff;
		border-radius:6px;
	}
	.ligne_produit .textes-produit * {
		line-height:1;
	}
	.ligne_produit .prix_unitaire {
		width:80px;
	}
	.ligne_produit .quantite {
		width:100px;
	}
	.ligne_produit .description {
		line-height:1.4;
	}
	.ligne_produit ul {
		list-style:none;
		padding:0;
		margin:0
	}
		.ligne_produit ul li {
			padding-left: 1.5em;
		}
		.ligne_produit ul li:before {
			content: "\f105"; /* FontAwesome Unicode */
			font-family: 'FontAwesome';
			font-weight:300;
			display: inline-block;
			margin-left: -1.5em; /* same as padding-left set on li */
			width: 1.5em; /* same as padding-left set on li */
		}

/* ==========================================================================
LOGO
========================================================================== */
.logo-societe {
	height:80px;
	position:relative;
}

/* ==========================================================================
 FOOTER
========================================================================== */
section.footer {
	color:rgba(255,255,255,.7);
	font-size:.7em;
}

/* ==========================================================================
BACK TO TOP
========================================================================== */
.cd-top {
	display:inline-block;
	height:60px;
	width:60px;
	position:fixed;
	bottom:50px;
	right:50px;
	box-shadow:0 4px 10px rgba(0, 0, 0, 0.1);
	overflow:hidden;
	text-indent:100%;
	white-space:nowrap;
	background:#000 url(/images/cd-top-arrow.svg) no-repeat center 50%;
	visibility:hidden;
	opacity:0;
	border-radius:5px;
	-webkit-transition:opacity .3s 0s, visibility 0s .3s;
	-moz-transition:opacity .3s 0s, visibility 0s .3s;
	transition:opacity .3s 0s, visibility 0s .3s;
	z-index:10;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touchevents .cd-top:hover {
	-webkit-transition:opacity .3s 0s, visibility 0s 0s;
	-moz-transition:opacity .3s 0s, visibility 0s 0s;
	transition:opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
	visibility:visible;
	opacity:.5;
}
.cd-top.cd-fade-out {
	opacity:.5;
}
.cd-top:hover {
	background-color:#000;
	opacity:1;
}

/* ==========================================================================
RESPONSIVENESS
========================================================================== */
@media screen and (max-width:767px) {
	/* BACK TO TOP */
	.cd-top {
		height:30px;
		width:30px;
		right:15px;
		bottom:40px;
	}
}
