* {
	font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif;
	/* font-size: 14px; */
	margin: 0px;
	padding: 0px;
}
img {
	user-drag: none;
	-webkit-user-drag: none;

	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.glyphicons {
	display: inline-block;
	width: 25px;
	height: 25px;
}

/* Formulaires */
textarea {
	width: 98%;
	height: 4em;
	margin: 0.5em;
}
select, button, a.btn,input, textarea, .btn {
	padding: 0.5em;
	border-radius: 1em;
	text-decoration: none;
}
input[type="text"]{
	margin: 0.15em auto;
}
input[type="email"], input[name="general[newAddress]"]{
	margin: 0.15em auto;
	min-width: 30%;
}


button:hover, a:hover, .btn:hover {
	cursor: pointer;
}

/* width */
::-webkit-scrollbar {
	width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
	background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #434243;
	border-radius: 1rem;
}

.btn {
	border: none;
}
.btn.bg-white{
	background-color: #FFF;
	border: 1px solid #000;
}
.btn.bg-none{
	background-color: transparent;
	border: 1px solid #000;
}
.bg-dark-grey{
	background-color: #434243;
	color: #FFF;
}
.bg-grey{
	background-color: #e8e4e4;
	color: #000;
}
.bg-white {
	background-color: #FFF;
	color: #000;
}
.bg-black {
	background-color: #000;
	color: #FFF;
}
.bg-light-grey{
	background-color: #F0F0F0;
	color: #000;
}
.bg-light-blue{
	background-color: #33b7f7;
	color: #FFF;
	display: inline-block;
	text-align: center;
}
.bg-light-blue:not([title="?"]) {
	line-height: 0.5rem;
}

.ft-dark-grey{
	color: #292832;
}
.ft-light-grey{
	color: #6f6f6f;
}
.ft-black{
	color: #000;
}
/* 
	Form Feature
*/

/* The container */
label.switch {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
label.switch input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
}

/* On mouse-over, add a grey background color */
label.switch:hover input ~ .checkmark {
	background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
label.switch input:checked ~ .checkmark {
	background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.label.switch input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

/*
	Modal Feature
*/
.modal {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 100vh;
	background: #dc9ec7ab;
	display: flex;
	justify-content: center;
	align-items: center;
}
.modal-dialog {
	background: #FFF;
	border: 1px solid #000;
	border-radius: 1rem;
	position: relative;
	width: 25vw;
}
.modal-header .close {
	background: none;
	border: none;
	font-size: 3rem;
	padding: 0rem;
	line-height: 1rem;
}

.modal-body {
	padding: 2rem;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}
.modal-header, .modal-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
}

/* 
	Header section 
*/
.main-menu {
	height: 10vh;
	display: flex;
	justify-content: space-between;
	text-transform: uppercase;
	font-weight: bold;
}
.main-menu img{
	height: 60%;
	height: -webkit-fill-available;	/* Mozilla-based browsers will ignore this. */
	height: fill-available;
	margin: 1rem;
	vertical-align: middle;
}
.main-menu > ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 1rem 2rem;
	max-width: 75%;
	list-style: none;
	margin: 0px 2rem;
}
.main-menu a {
	text-decoration: none;
}
.main-menu a:hover {
	cursor: pointer;
	text-decoration: underline;
}

.nav-item {
	align-self: center;
}

.dropdown-menu {
	display: none;	
}
.dropdown-menu.toggled {
	display: block;
}
img.main-menu-icon {
	height: 25px;
	width: 25px;
	margin: 0.25rem;
}

li.nav-item {
	width: 200px;
}
ul.dropdown-menu li.dropdown-divider {
	height: 1px;
	border-bottom: 1px solid #6f6f6f;
}
ul.dropdown-menu {
	width: 200px;
	list-style: none;
	padding: 1rem;
	position: absolute;
	z-index: 1000;
} 
ul.dropdown-menu li {
	height: 2.5rem;
	text-align: left;
}
ul.dropdown-menu li a{
	text-decoration:none;
	color: #000;
}
ul.dropdown-menu a .dropdown-icons {
	width: 25px;
	height: 25px;
	margin: 0px 10px 0px 0px;
	vertical-align: middle;
}


.btn-icon{
	background-size: 75%;
	background-position: center;
	background-repeat: no-repeat;
	width: 32px;
	height: 32px;
}
.btn-search{
	background-image: url('/img/icons/glyphicons-basic-28-search.svg');
}
.sticky {
	position: sticky;
}
.icons {
	width: 2rem;
}
.box-shadow{
	-webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25); 
	box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
}
.rounded{
	border-radius: 1em;
}
span.required {
	color: red;
}
select.required, input.required,textarea.required{
	border-color: #f99;
	background-color: #fff5f0;
}
/*
	Content section
*/
p {
	margin: 1rem auto;
}
pre {
	margin: 1rem auto;
	background-color: #e8e4e4;
	border: 1px solid #000;
}

#dashboard-alert {
	position: fixed;
	top: 10vh;
	width: 100%;
	z-index: 9001;
}
#dashboard-alert .alert{
	margin: 1rem auto;
	padding: 1rem;
	border-radius: 50rem;
	width: 75vw;
	box-shadow: 0px 10px 10px #ccc;
}
#dashboard-alert .alert.alert-info{
	background-color: #D9DFFB;
}
#dashboard-alert .alert.alert-danger{
	background-color: #F9E6F1;
}
#dashboard-alert .alert.alert-warning{
	background-color: #fbf2d9;
}
#dashboard-alert .alert.alert-success{
	background-color: #D1ECE1;
}
#dashboard-alert .alert button{
	float: right;
	background: transparent;
	border: none;
	position: relative;
	top: -0.5rem;
	z-index: 9002;
}

.flex-container {
	display: flex;
}
.container {
	margin: 0px auto;
	padding: 0.5rem 3rem;
}
img.logo-business {
	width: 30px;
	height: 30px;
	border-radius: 1rem;
}

#content{
	max-height: 90vh;
	width: 100%;
	position: relative;
	overflow: auto;
}


/*
 ONYX-CSS
*/
a.accordion-trigger{
	text-decoration: none;
	margin: 0px auto;
	padding: 0.5rem;
	width: 100%;
	display: inline-block;
}
.accordion-target{
	margin: 0.5rem auto;
	padding: 0rem 1rem;
	/*width: 100%;*/
	max-height: 0px;
	overflow: hidden;
	-webkit-transition: max-height 0.25s ease-out, padding 0.25s; 
	-moz-transition: max-height 0.25s ease-out, padding 0.25s; 
	-ms-transition: max-height 0.25s ease-out, padding 0.25s; 
	-o-transition: max-height 0.25s ease-out, padding 0.25s; 
	transition: max-height 0.25s ease-out, padding 0.25s;
	border: 1px solid #000;
}
.accordion-target.open{
	padding: 1rem;
	max-height: 5000px;
	-webkit-transition: max-height 0.5s ease-in, padding 0.25s; 
	-moz-transition: max-height 0.5s ease-in, padding 0.25s; 
	-ms-transition: max-height 0.5s ease-in, padding 0.25s; 
	-o-transition: max-height 0.5s ease-in, padding 0.25s; 
	transition: max-height 0.5s ease-in, padding 0.25s;  
}

.footer-text{
	margin: auto;
	font-size: 0.9rem;
}

#footer img {
	filter: invert(1);
	max-height: 100px;
}

.horizontal-nav ul > li{
	display: inline-block;
}
.horizontal-nav ul {
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 3rem;
}
.horizontal-nav ul > li > .active {
	filter: invert(1);
}
.horizontal-nav ul > li > a:hover {
	filter: drop-shadow(2px 4px 6px #000);
}
/*
 END ONYX-CSS
*/

#footer{
	position: relative;
	bottom: 0px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	margin: 2rem auto;
}
.error {
	color: red;
	border-color: red;
}

/*
	Helper section
*/
.my-1 {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.my-2 {
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.my-3 {
	margin-top: 3rem;
	margin-bottom: 3rem;
}

.mx-1 {
	margin-left: 1rem;
	margin-right: 1rem; 
}
.mx-2 {
	margin-left: 2rem;
	margin-right: 2rem; 
}
.mx-3 {
	margin-left: 3rem;
	margin-right: 3rem; 
}
.mx-jumbo {
	margin-left: 10rem;
	margin-right: 10rem; 
}

.py-1 {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.py-2 {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.py-3 {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.px-1 {
	padding-left: 1rem;
	padding-right: 1rem; 
}
.px-2 {
	padding-left: 2rem;
	padding-right: 2rem; 
}
.px-3 {
	padding-left: 3rem;
	padding-right: 3rem; 
}
.d-block {
	display: block;
}
.v-align-middle{
	vertical-align: middle;
}
.pull-right {
	float: right;
}
@media print {
	.no-print,#footer,#header {
		display: none;
	}
}