/* General */

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}

@keyframes shine {
	100% {
		left: 125%;
	}
}

html, body{
    min-height:100%;
	
	position: relative;
}

body{
    background-color: #f9f9f9;
	
	padding: 0px;
	margin: 0px;
	
	font-family: Arial;
	font-size: 14px;
}


::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

::-webkit-scrollbar-button:start,
::-webkit-scrollbar-button:end {
	display: none;
}


::-webkit-scrollbar-track-piece {
	background-color: transparent;
}

::-webkit-scrollbar-thumb:vertical {
	height: 50px;
	background-color: #666;
}

::-webkit-scrollbar-thumb:horizontal {
	width: 50px;
	background-color: #666;
	-webkit-border-radius: 3px;
}

/* Elements style */

a{
	outline-style: none;
}

img{
	border: 0px;
	vertical-align: bottom;
}

input.sd-styled,
select.sd-styled{
	border: 3px solid #ccc;
	border-radius: 5px;
	padding: 5px;
	width: 200px;
	margin: 3px;

	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;

	-webkit-transition: border-color ease-in-out .15s, background-color ease-in-out .15s;
	-moz-transition: border-color ease-in-out .15s, background-color ease-in-out .15s;
	-ms-transition: border-color ease-in-out .15s, background-color ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, background-color ease-in-out .15s;
	transition: border-color ease-in-out .15s, background-color ease-in-out .15s;
}

input.sd-styled:hover, select.sd-styled:hover{
	border: 3px solid #bbb;
}

input[type="color"].sd-styled{
	overflow: hidden;
	padding: 0px;
	width: 50px;
	border: 0px;
	cursor: pointer;
	margin-bottom: -6px;
}

input[type="color"].sd-styled:disabled{
	cursor: not-allowed;
}

input[type="color"].sd-styled::-webkit-color-swatch-wrapper{
	padding: 0px;
}

input[type="color"].sd-styled::-webkit-color-swatch{
	border: 3px solid #ccc;

	-webkit-transition: border-color ease-in-out .15s, background-color ease-in-out .15s;
	-moz-transition: border-color ease-in-out .15s, background-color ease-in-out .15s;
	-ms-transition: border-color ease-in-out .15s, background-color ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, background-color ease-in-out .15s;
	transition: border-color ease-in-out .15s, background-color ease-in-out .15s;
}

input[type="color"].sd-styled:hover::-webkit-color-swatch{
	border: 3px solid #bbb;
}

textarea.sd-styled{
	border: 3px solid #ccc;
	border-radius: 5px;
	padding: 5px;
	width: 100%;
	height: 200px;
	margin: 3px;

    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;
	
	-webkit-transition: border-color ease-in-out .15s, background-color ease-in-out .15s;
	-moz-transition: border-color ease-in-out .15s, background-color ease-in-out .15s;
	-ms-transition: border-color ease-in-out .15s, background-color ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, background-color ease-in-out .15s;
	transition: border-color ease-in-out .15s, background-color ease-in-out .15s;
}

textarea.sd-styled:hover{
	border: 3px solid #bbb;
}

input[type="submit"].sd-styled{
	width: auto;
	padding: 5px 15px;
	cursor: pointer;
}

input[type="checkbox"].sd-styled{
	border: 0px;
	border-radius: 0px;
	padding: 0px;
	width: auto;
	margin: 3px 3px 0px 0px;
}

.navbar.navbar-inverse{
	position: fixed;
	top:0px;
	left: 0px;
	right: 0px;
	z-index: 1;
}

.navbar.navbar-inverse.bg-custom-faded{
	background-color: rgba(0, 0, 0, 0.85);
}

.navbar-inverse .navbar-toggler{
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.75);
	background-color: #494b4c;
	border: 0px;
}

.navbar-toggleable-md .navbar-nav .nav-link {
	padding-right: .5rem;
	padding-left: .5rem;
}

.navbar .navbar-nav.mr-auto .nav-item{
	margin-right: 5px;
}

.navbar .navbar-nav .nav-item .fas{
	margin-right: 5px;
}

.navbar .navbar-nav .nav-item:hover,
.navbar .navbar-nav .nav-item.active,
.navbar .navbar-nav .nav-item.dmenu.show{
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
	background-color: #494b4c;
	border-radius: 5px;
}

.navbar .navbar-nav .dropdown.dmenu b{
	padding-left: 50px;
}

.navbar .navbar-nav .dropdown.dmenu .profil-round{
	display: inline-block;
	position: absolute;
	top: -2px;
	width: 40px;
	height: 40px;
	margin: auto;
	overflow: hidden;
	border-radius: 30px;
	background-color: #fff;
	border: 2px solid #fff;
	box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
}

.navbar .navbar-nav .dropdown.dmenu .profil-round img{
	object-fit: cover;
	width: 36px;
	height: 36px;
	z-index: 0;
}

.dropdown-item,
.dropdown-item{
	padding: 5px 15px;
}

.dropdown-item.active,
.dropdown-item:active{
	background-color: #595b5c;
}

.clearfix{
	overflow: auto;
}

.button{
	position: relative;
	display: inline-block;
	border: 3px solid #ffffff;
	box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
	padding: 4px 10px 3px 10px;
	margin-left: -5px;
	background: #3498db;
	border-radius: 5px;
	text-align: center;
	font-weight: bold;
	min-width: 140px;
	cursor: pointer;
	color: #ffffff;

	-webkit-transition: border-color ease-in-out .15s, background-color ease-in-out .15s;
	-moz-transition: border-color ease-in-out .15s, background-color ease-in-out .15s;
	-ms-transition: border-color ease-in-out .15s, background-color ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, background-color ease-in-out .15s;
	transition: border-color ease-in-out .15s, background-color ease-in-out .15s;
}

.button:hover{
	background: #44a8eb;
	border: 3px solid #44a8eb;
}

.button.button-size-auto{
	min-width: initial;
}

.button > .fas,
.button > .far{
	margin-right: 5px;
}

.button.button-gray{
	background: #999999;
}

.button.button-gray:hover{
	background: #999999;
	border: 3px solid #ffffff;
}

.button.button-orange{
	background: #e67e22;
}

.button.button-orange:hover{
	background: #f68e32;
	border: 3px solid #f68e32;
}

.button.button-red{
	background: #e74c3c;
}

.button.button-red:hover{
	background: #f75c4c;
	border: 3px solid #f75c4c;
}

.title{
	font-size: 15px;
	font-weight: bold;
}

/* Separators */

.separateur-h-dotted{
	margin: 10px 0px;
	border-bottom: 1px dotted #aaaaaa;
}

.separateur-h-dotted-small-margin{
	margin: 5px 0px;
	border-bottom: 1px dotted #aaaaaa;
}

.separateur-h-dotted-fade-small-margin{
	margin: 5px 0px;
	border-bottom: 1px dotted #dddddd;
}

.separateur-h-solid-white-small-margin{
	margin-top: 1rem;
	margin-bottom: 1rem;
	border: 0;
	border-top: 1px solid #fff;
}