/****
* mainColor : rgba(8,142,178,1) ##088eb2  <---- couleur principale (override par couleur client)
* secondaryColor : 43474d  <---- couleur secondaire (par défaut gris rodrigue)
* normalGray : 8f949a <---- normal grey
* lightGray : f1f3f5 <---- light grey
****/
/*couleur principale du client, bouton d'action principal*/
@primaryColor: #088eb2;
@btnPrimaryTextColor: #fff;
/*couleur secondaire du client, bouton d'action secondaire*/
@secondaryColor: #43474d;
@btnSecondaryTextColor: #fff;
/*couleur terciaire du client, bouton d'action terciaire*/
@tertiaryColor: #8f949a; 
@btnTertiaryTextColor:#fff;

/**/
@bannerColor: #fff;

/*couleur de fond de la bannière*/
@txtColor: #43474d;

/*couleur du texte générique*/
@lightGrey: #f1f3f5;

/*couleur de fond léger*/

/****************** FIX ***********************/
:not(hr):not(input):empty {
	margin: 0 !important;
	padding: 0 !important;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
	min-height: 0px;
}

:focus, .custom-file-input:focus~.custom-file-control {
	outline: 0 !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

:invalid {
	-o-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.custom-select.is-invalid + .bootstrap-select > .btn, .form-control.is-invalid + .bootstrap-select > .btn, .was-validated .custom-select:invalid + .bootstrap-select > .btn, .was-validated .form-control:invalid + .bootstrap-select > .btn, .was-validated .bootstrap-touchspin .touchspin.form-control:invalid, .bootstrap-select .btn, .bootstrap-select .btn-default.bs-invalid {
	border-color: #dc3545;
}



.custom-select.is-valid + .bootstrap-select > .btn, .form-control.is-valid + .bootstrap-select > .btn, .was-validated .custom-select:valid + .bootstrap-select > .btn, .was-validated .form-control:valid + .bootstrap-select > .btn, .was-validated .bootstrap-touchspin .touchspin.form-control:valid {
	border-color: #28a745;
}

select.form-control:not([size]):not([multiple])  + .bootstrap-select > .btn {
	height: calc(2.25rem + 2px);
}

body, html {
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	color: @txtColor;
}

a, a:hover {
	color: fade(@primaryColor, 100%);
	text-decoration: none;
}

/** custom radio & checkbox **/
.custom-radio .custom-control-input:checked~.custom-control-label::before {
    background-color: fade(@primaryColor, 100%);
}

.custom-control-input:checked~.custom-control-label::before {
    background-color: fade(@primaryColor, 100%);
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: fade(@primaryColor, 100%);
}

#wrap {
	min-height: 100vh;
}

.btn {
	border-radius: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	margin-top: 2px;
	margin-bottom: 2px;
	white-space: normal;
}

.btn.bootstrap-touchspin-up, .btn.bootstrap-touchspin-down {
	margin-top: 0px;
	margin-bottom: 0px;
}

.btn-primary {
	background-color: fade(@primaryColor, 100%);
	color:@btnPrimaryTextColor;
	border-color: fade(@primaryColor, 100%);
}

.btn-primary.disabled, .btn-primary:disabled {
	color: #fff;
	background-color: #ccc;
	border-color: #ccc;
}

.btn-primary:not(:disabled):not(.disabled):hover, .btn-primary:not(:disabled):not(.disabled):active {
	background-color: fade(@primaryColor, 100%);
	color:@btnPrimaryTextColor;
	border-color: fade(@primaryColor, 100%);
	-webkit-filter: brightness(1.1);
	filter: brightness(1.2);
}

.btn-secondary {
	background-color: @secondaryColor;
	border-color: @secondaryColor;
	color:@btnSecondaryTextColor;
}

.btn-secondary-light {
	background-color: @tertiaryColor;
	border-color: @tertiaryColor;
	color:@btnTertiaryTextColor;
}

.fade {
	transition: all .15s linear;
}
#alertbottom {
	margin-bottom: 0;
}
#alertbottom.fade:not(.show) {
    transform: translate(0, 100%);
}

img[src=""] {
	height: 3px;
	display: block;
	padding: 0;
	margin: 0;
}

#loadingcircle {
	width: 100px;
	position: fixed;
	margin: auto;
	display: block;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 9999;
}

.loadingcircle #greycircle {
	fill: #666666;
	-webkit-animation: loading 2s  linear infinite;
	animation: loading 2s  linear infinite;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
}

.loadingcircle #colorcircle {
	fill: fade(@primaryColor, 100%);
	-webkit-animation: loading 2s  linear infinite reverse;
	animation: loading 2s  linear infinite reverse;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
}

#loadingcircle-modal {
	width: 100px;
	position: relative;
	margin: auto;
	display: block;
	left: 0;
	right: 0;
	z-index: 9999;
}

@-webkit-keyframes loading {

	/* chrom */
	0% {
		opacity: 1;
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {

		/*opacity: 0.5;*/
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}

}

@keyframes loading {

	/* chrom */
	0% {
		opacity: 1;
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {

		/*opacity: 0.5;*/
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}

}

/****************** HEADER + NAV ***********************/
header {
	background-color: @secondaryColor;
}

.navbar {
	background-color: @secondaryColor;
	padding: 15px  1rem;
}

.navbar .navbar-nav .badge {
	height: 1.5em;
	margin-top: 12px;
}

.navbar, .navbar a {
	color: #fff;
}

.navbar-toggler-icon {
	width: auto;
	height: auto;
	font-size: 13px;
}

.navbar-toggler {
	border: 1px solid @btnSecondaryTextColor;
	color: @btnSecondaryTextColor;
	padding: 4px 10px 5px 10px;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.navbar-toggler:hover {
	background-color: fade(@primaryColor, 100%);
	border: 1px solid fade(@primaryColor, 100%);
}

.nav-link {
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	position: relative;
}

.navbar-nav .nav-link {
	color: @btnSecondaryTextColor;
}

.nav-link:hover, .nav-link[aria-expanded="true"] {
	color: fade(@primaryColor, 100%);
}

.nav-link.complete:after {
	content: "\f00c";
	color: #86cb54;
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 16px;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	margin-left: 10px;    /* right: 0; */

	/* padding: 8px; */

	/* top: 0; */
}

.dropdown-menu {
	background-color: @lightGrey;
	min-width: 360px;
	border-bottom: 3px solid rgba(0, 0, 0, 0.2);
}

a.dropdown-item {
	color: @txtColor;
}

.dropdown-menu .abotitle {
	color: fade(@primaryColor, 100%);
	text-transform: uppercase;
	font-weight: bold;
	font-size: 16px;
}

.dropdown-menu .abomanif {
	margin-bottom: 9px;
	line-height: 1.2em;
}

.dropdown-menu .aboprice {
	color: fade(@primaryColor, 100%);
}

.dropdown-menu #totalcart {
	font-size: 16px;
	font-weight: bold;
}

.dropdown-menu [data-toggle="collapse"]:hover {
	cursor: pointer;
}

.dropdown-menu #accordion-card {
	max-height: 25vh;
	overflow-y: auto;
	overflow-x: hidden;
}

.dropdown-menu #cartempty {
	padding: 7px 15px;
	text-align: center;
}

#timer .progress {
	height: 25px;
	background-color: #c94343;
	border-radius: 0;
}

#timer .progress .progress-bar {
	background-color: rgba(0, 0, 0, 0.18);
}

#actualtimer {
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	padding: 3px;
}

#timer {
	background-color: #ad2f2f;
	color: #fff;
	text-align: center;
	z-index: 999;
}

#timer #timerleft {
	font-weight: bold;
}

.infobulle {
	background-color: @primaryColor;
    color: @btnPrimaryTextColor;
    border-radius: 30px;
    min-width: 28px;
    padding: 3px 11px;
    display: inline-block;
    text-align: center;
    font-size:1.2em;
    font-weight: bold;
    float:right;
    transition: all .3s;
}
.infobulle:hover {
	background-color: darken(@primaryColor,10%);
	cursor: pointer;
}
/************** modal *************/
.modal-open .modal {
	-webkit-overflow-scrolling: touch;
}
.modal-header {
	background-color: fade(@primaryColor, 100%);
	color: #fff;
}

.modal-header .close {
	color: #fff;
	text-shadow: 0 1px 0 #000;
}
.modal-footer {
	flex-wrap:wrap;
}

@media (min-width: 992px) {
	.modal-xl {
		max-width: 1230px;
	}
}

/********** bootstrap-select override *********/
.bootstrap-select .selected {
	background-color: rgba(0, 0, 0, 0.05);
}

.bootstrap-select .btn, .bootstrap-select .btn-default {
	display: block;
	width: 100%;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	-webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	-o-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	overflow: hidden;
}

.bootstrap-select .btn:not(:disabled):not(.disabled).active, .bootstrap-select .btn:not(:disabled):not(.disabled):active, .bootstrap-select.show>.btn-info.dropdown-toggle {
	color: #495057;
	background-color: #fff;
	border: 1px solid #ced4da;
}

.bootstrap-select .dropdown-menu.show > .dropdown-menu {
	display: block;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
	width: 100%;
}

.bootstrap-select .filter-option-inner-inner {
	text-align: left;
	color: @txtColor;
}

.bootstrap-select .dropdown-menu {
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 0;
	z-index: 1031;
	top: auto;
	position: relative;
}

.bootstrap-select .dropdown-menu .disabled {
	opacity: 0.65;
}

.bootstrap-select.btn-group .dropdown-menu li:hover {

	/*color:#fff;*/

	background-color: rgba(0, 0, 0, 0.1);
}

.bootstrap-select .dropdown-menu>li>a {
	display: block;
	padding: 3px 20px;
	clear: both;
	font-weight: 400;
	line-height: 1.42857143;
	color: #333;
	white-space: nowrap;
	text-decoration: none;
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
	width: calc(100% - 35px);
	position: absolute;
	left: .75rem;
}

.bootstrap-select.btn-group .media-left {
	margin-right: 5px;
}

.bootstrap-select .dropdown-toggle::after {
	right: .75rem;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}

@media (max-width:991px) {
	.dropdown-menu {
		min-width: 100%;
	}

	.bootstrap-select .dropdown-menu>li>a {
		white-space: normal;
	}

}

/***************** TAB *************************/

/*.nav-tabs .nav-item {
    margin-bottom: -2px;
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef @lightGrey;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: @lightGrey @lightGrey #fff;
}
.nav-tabs .nav-link {
    border: 2px solid transparent;
}
.nav-tabs {
    border-bottom: 2px solid @lightGrey;
}*/

/*.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
border: 2px solid transparent;
    border-color: @lightGrey @lightGrey #fff;
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef @lightGrey;
}*/

a.nav-link.active {
	color: fade(@primaryColor, 100%);
}

a.nav-link {
	color: @txtColor;
	border: 2px solid transparent;	/*border-bottom:2px solid fade(@primaryColor, 50%);
	background-color:fade(@lightGrey, 50%)*/
}

.nav-pills {
	margin-bottom: 10px;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
	color: fade(@primaryColor, 100%);
	background-color: transparent;
	border-color: fade(@primaryColor, 100%);
}

/*.nav-pills .nav-link.active:after {
content: '';
display: block;
position: absolute;
margin: auto;
 left: 0;
    right: 0;
bottom: -10px;
width: 0;
height: 0;
border-style: solid;
border-width: 10px 10px 0 10px;
border-color: rgba(@primaryColor, 1) transparent transparent transparent;
}*/
#myTab.nav-fill .nav-item {
	padding: 3px;
}

#myTab.nav-pills .nav-link {
	border: 2px solid fade(@lightGrey, 100%);
}

#myTab.nav-pills a.nav-link {
	border-bottom: 2px solid fade(@primaryColor, 50%);
	background-color: fade(@lightGrey, 50%)
}

#myTab.nav-pills .nav-link.active, #myTab.nav-pills .show > .nav-link {
	background-color: transparent;
	border: 2px solid fade(@primaryColor, 100%);
}

.tab-content {
	border: 2px solid @lightGrey;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.tab-content  .tab-intro {
	margin-bottom: 10px;
}

.tab-content  .abotitle {
	font-size: 20px;
	line-height: 1em;
	margin-bottom: 10px;
}

.tab-content  .abotitle small {
	font-size: 14px;
}

.tab-content  .abotitle span {
	display: block;
}

/***************** STEP ************************/
#nextsteptop {
	margin-bottom: 8px;
}

.stepwizard-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.stepwizard-step {
	padding: 7px 11px;
	border-radius: 30px;
	border: 2px solid @btnSecondaryTextColor;
	border-color: fade(@primaryColor, 100%);
	color: @btnSecondaryTextColor;
	position: relative;
}

.stepwizard-step:not(:first-child) {
	margin-left: 18px;
}

.stepwizard-step:not(:first-child):before {
	content: '';
	width: 20px;
	height: 2px;
	display: block;
	right: 100%;
	position: absolute;
	top: calc(50% - 1px);
}

.stepwizard-step.active {
	background-color: fade(@primaryColor, 100%);
	border-color: fade(@primaryColor, 100%);
}

.stepwizard-step:before {
	background-color: fade(@primaryColor, 100%);
}

.stepwizard-step.active ~ .stepwizard-step {
	border-color: @btnSecondaryTextColor;
}

.stepwizard-step.active ~ .stepwizard-step:before {
	background-color: @btnSecondaryTextColor;
}

/******* BANNER *********/
#banner {
	background-color: fade(@bannerColor, 100%);
	width: 100%;
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#banner img {
	margin: auto;
}

/************ main content **********/
.oneGroupFormula:not(:last-child) {
	margin-bottom:20px;
}
a.SpectacleSupp {
	text-decoration: underline;
}

#maincontent {
	opacity: 0.5;
	margin-top: 35px;
}

#maincontent h2 {
	font-weight: bold;
}

#intro {
	margin-bottom: 27px;
}

#aboresume {
	margin-top: 10px;
}
#cancelChoice {
	color: #f16565;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
 #cancelChoice:hover {
	cursor: pointer;
	-webkit-filter: brightness(1.1);
	filter: brightness(1.2);
}
#aboresume .formulesselected:not(:empty) {
	margin-bottom: 10px;
}

#aboresume .formulesselected:not(:empty):last-child {
	margin-bottom: 0;
}

#resumetotal {
	font-size: 18px;
	font-weight: bold;
}

.card {
	border-radius: 0;
	border: 2px solid @lightGrey;
}

.card-header {
	border-radius: 0 !important;
	border: 0;
	background-color: @lightGrey;
	padding: 0;
	position: relative;
}

.card-header.valid:before {
	content: "\f00c";
	color: #86cb54;
	display: block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: xx-large;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	margin: auto;
	right: 0;
	padding: 17px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.card-header.valid:after {
	content: "";
	display: block;
	width: 9px;
	height: 100%;
	background-color: #86cb54;
	position: absolute;
	left: 0;
	top: 0;
}

.generale-contrainte {
	color: #e72e45;
	display: inline-block;
	margin-left: 8px;
	font-size: 80%;
	font-weight: bold;
	text-align: right;
}

.card-header.valid .generale-contrainte {
	color: #86cb54;
}

.card-text.collapse, .card-text.collapsing {

	/*position: absolute;*/
	z-index: 99;
	width: 100%;
	background-color: #f9f9f9;
	padding: 0;
	left: 0;	/*-moz-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
	-o-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);*/
	filter: progid:DXImageTransform.Microsoft.Shadow(color=rgba(0, 0, 0, 0.15), Direction=180, Strength=3);
}

.card-text.collapse .aboItems, .card-text.collapsing .aboItems {
	margin-bottom: 10px;
}

.card-header.valid .btn-link {

	/*color:#fff;*/
}

.card-header.valid .btn-link svg {

	/*fill:#fff;*/
}

.card-header .btn-link {
	font-size: 16px;
	color: @txtColor;
	padding: 20px 50px 20px 20px;
	white-space: normal;
	width: 100%;
	text-align: left;
	text-decoration: none;
}

.card-header .btn-link .card-abotitle {
	line-height: 1.1em;
}

.card-header .btn-link .card-abotitle span {
	display: block;
}

.plusoumoins.white {
	fill: #fff;
}

.plusoumoins .verticalbar {
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.plusoumoins .verticalbar {
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.collapsed .plusoumoins .verticalbar {
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
}

.btn .plusoumoins {
	margin-left: 5px;
	max-width: 15px;
	max-height: 15px;
	vertical-align: middle;
}

.card-header .btn-link .plusoumoins {
	fill: @txtColor;
	max-width: 25px;
	vertical-align: middle;
	margin-right: 7px;
	max-width: 100%;
	width: 25px;
	height: 25px;
}

.touchspin-label {
	line-height: 2em;
}

.bootstrap-touchspin .bootstrap-touchspin-down, .bootstrap-touchspin .bootstrap-touchspin-up {
	border: 2px solid  @lightGrey;
	background-color: @lightGrey;
	color:@txtColor;
}

.bootstrap-touchspin .bootstrap-touchspin-down {
	border-radius: .25rem 0px 0px .25rem;
	-moz-border-radius: .25rem 0px 0px .25rem;
	-webkit-border-radius: .25rem 0px 0px .25rem;
}

.bootstrap-touchspin .bootstrap-touchspin-up {
	border-radius: 0px .25rem .25rem 0px;
	-moz-border-radius: 0px .25rem .25rem 0px;
	-webkit-border-radius: 0px .25rem .25rem 0px;
}

.bootstrap-touchspin .touchspin.form-control {
	border: 2px solid @lightGrey;
	max-width: 50px;
	text-align: center;
}

.abogroup {
	font-size: 16px;
	font-weight: bold;
	color: fade(@primaryColor, 100%);
	display: block;
}

.abogroup.valid {

	/*color: #86cb54;*/
}

.abogroup.valid:after {
	content: "\f00c";
	color: #86cb54;
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 16px;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	padding: 0px;
	margin-left: 5px;
}

.abogroup.ferme:after {
	content: "\f023";
	color: #86cb54;
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 16px;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	padding: 0px;
	margin-left: 5px;
}

.abogroup.ferme.valid:after {
	content: "\f023 \f00c";
	color: #86cb54;
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 16px;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	padding: 0px;
	margin-left: 5px;
}

.abogroup:not(:first-child) {
	margin-top: 10px;
}

.aboItems .aboItem {
	padding: 10px 0;
	border-bottom: 1px solid @lightGrey;
	color: @txtColor;
}

.aboItems .aboItem:last-child {
	border-bottom: 0;
}

.aboItems .item-abospectacles {
	font-weight: bold;
}

.aboprice {
	color: fade(@primaryColor, 100%);
}

.aboItems .aboremove {
	color: #f16565;
	font-size: 18px;
	margin-top: -5px;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.aboItems .aboremove:hover {
	cursor: pointer;
	-webkit-filter: brightness(1.1);
	filter: brightness(1.2);
}

#resumaAbos, #resumaAbosExtras {
	font-size: 11px;
}

#resumaAbos .card-title, #resumaAbosExtras .card-title {
	color: @txtColor;
	font-weight: bold;
	font-size: 16px;
}

#resumaAbos .card, #resumaAbosExtras .card {
	background-color: #f9f9f9;
}

#resumaAbosExtras .aboItems .aboItem {
	padding: 5px 0;
}

.rowspectacleextra [class^="item-abospectacles"] {
    font-weight: bold;
}
/* spectacle extras */
#spectacleExtras {
	margin-top: 20px;
}

#spectacleExtras h3 {
	color: fade(@primaryColor, 50%);
	background-color: @lightGrey;
	display: inline-block;
	padding: .25em 1em;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: 30px;
	font-size: 1.5em;
}

#spectacleExtras .abotitle {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1.1em;
}

#spectacleExtras .aboExtraplaces {
	padding-top: 7px;
	padding-bottom: 7px;
	margin: 0;
}

#spectacleExtras  .aboremove {
	color: #f16565;
	margin-top: -5px;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

#spectacleExtras  .aboremove:hover {
	cursor: pointer;
	-webkit-filter: brightness(1.2);
	filter: brightness(1.2);
}

#spectacleExtras .aboExtraplaces {
	border-right: 1px solid @lightGrey;
}

.SpectacleExtrasHorsAbo .aboExtraplaces .horsaboinfos {
	padding-left: 23px;
	position: relative;
}

.SpectacleExtrasHorsAbo .aboExtraplaces .horsaboinfos:before {
	content: '';
	display: block;
	width: 3px;
	height: 100%;
	background-color: #f1f3f5;
	position: absolute;
	top: 0;
	left: 0;
}

#spectacleExtras .aboExtraplaces:last-child {
	border-right: 0px;
}

@media (max-width:575px) {
	#spectacleExtras .aboExtraplaces {
		border-right: 0px;
	}

	#spectacleExtras .modal-footer .btn {
		margin: initial;
	}

}

@media (max-width:767px) {
	#spectacleExtras .aboExtraplaces:nth-child(2n+1) {
		border-right: 0px;
	}

}

@media (min-width:768px) {
	#spectacleExtras .aboExtraplaces:nth-child(3n+1) {
		border-right: 0px;
	}

}

.table-info, .table-info>td, .table-info>th {
	background-color: fade(@primaryColor, 25%);
	color: #fff;
	font-weight: bold;
}

.trtotal {
}

#divMO {
	margin-top: 15px;
}

/********* NEXT STEP *********/
#nextstep {
	margin-top: 30px
}

/********* FOOTER *********/
footer {
	margin-top: 40px;
	background-color: @secondaryColor;
	color: fade(@btnSecondaryTextColor,50%);
	padding: 30px 0;
}

footer a {
	color: fade(@btnSecondaryTextColor,100%);
}

/*** SEAT PLAN ***/
/**overlay mobile **/
#overlayplanSalle { position: absolute; height: 100%; width: 100%; top: 0; background-color: rgba(0, 0, 0, 0.6); pointer-events: none; opacity: 0; -webkit-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; }
#overlayplanSalle span { text-align: center; display: block; width: 100%; color: #fff; font-size: 18px; font-weight: bold; padding: 7px; }

/**minimap**/
#svg_minimap { display: block;  width: 100%; background-color: #f6f6f6;}
#minimap_wrapper { position: relative; }
#minimap_draggable { position: absolute; opacity: .15; background-color: fade(@primaryColor, 100%); cursor: move; min-width: 10px; min-height: 10px; }
#minimap_draggable.animate { transition: top .7s, left .7s; }

/**fullmap**/
#svg_fullmap { width: 100%; height: 450px; background-color: #f6f6f6; }
#panCanvas.animate { transition: transform .7s; }



          
#seatsPlan text { alignment-baseline: before-edge; font-size: 12px; }

.listSeats_actual [data-hk], .listSeats_new [data-hk] {
	font-weight : bold;
}
#planSalle:hover {
    /*cursor: move;*/
}
.panCanvas .fullbackground {
	opacity:0;
	position: relative;
	z-index: 1;
	pointer-events:none;
}

#seatsPlan h3.toptitle {
	margin: auto;
	display: table;
	margin-top: 10px;
	margin-bottom: 10px;
}

#seatsPlan h3.toptitle:after {
	content: '';
	display: block;
	font-weight: bold;
	text-align: center;
	border-bottom: 1px solid #ccc;
	margin-top: 10px;
}

#seatsPlan .rightside {
	font-size: 11px;
}

#seatsPlan #legend svg {
	vertical-align: middle;
}

#seatsPlan #legend  p {
	margin-bottom: 7px;
}

#seatsPlan #legend ul {
	list-style: none;
	padding: 0;
}

#seatsPlan circle {
	fill: #fff;
	stroke-width: 1;
	stroke: grey;
	-webkit-transition: all 0.3s ease-in-out 0.35s;
	-o-transition: all 0.3s ease-in-out 0.35s;
	transition: all 0.3s ease-in-out 0.35s;
}

#seatsPlan circle[data-free="1"] {
	fill: burlywood;
	stroke: #000
}

#seatsPlan circle.flaggedseat {
	fill: #606060;
}

#seatsPlan circle.flaggedseat_tempo_forlegend {
	fill: fade(@primaryColor, 100%);
}
#seatsPlan line.ligne[data-color="0"] {
	stroke: green;

}
#seatsPlan line.ligne {
	stroke: blue;
	stroke-width: 1px;
}


#seatsPlan circle.poteau {
	fill: rgba(0, 0, 0, 0.3);
}

/* base siege */
#seatsPlan .siegeall {
	position: relative;
	z-index: 2;
}
#seatsPlan .siegeall:hover {
	cursor: pointer;
}
#seatsPlan .siegeall:before {
	content: '';
	display: block;
}

#seatsPlan .siegeall[data-bordT="1"]:before {
	border-top: 1px solid #ff9900;
}

#seatsPlan .siegeall[data-bordR="1"]:before {
	border-right: 1px solid #ff9900;
}

#seatsPlan .siegeall[data-bordB="1"]:before {
	border-bottom: 1px solid #ff9900;
}

#seatsPlan.siegeall[data-bordL="1"]:before {
	border-left: 1px solid #ff9900;
}

#seatsPlan .siegeall .siegebg  {
	fill: #ddc097;
	-webkit-transition: all 0.3s ease-in-out 0.35s;
	-o-transition: all 0.3s ease-in-out 0.35s;
	transition: all 0.3s ease-in-out 0.35s;
}
#seatsPlan .siegeall[data-free="0"]:hover{
	cursor: inherit;
}
#seatsPlan .siegeall[data-free="0"] .siegebg {
	fill: #fff;
}

#seatsPlan .siegeall.flaggedseat .siegebg {
	fill: #606060;
}

#seatsPlan .siegedark {
	opacity: 0.15;
}

#seatsPlan .siege50 {
	opacity: 0.5;
}

#seatsPlan .siegelight {
	fill: #FFFFFF;
}

/* rotation selon orientation */
#seatsPlan .siegeall .siegeInner {
	-webkit-transform-origin: 25px 25px 0;
	-ms-transform-origin: 25px 25px 0;
	transform-origin: 25px 25px 0;
}

/* flip on click */
#seatsPlan .siegeall .siegeFlip {
	-webkit-transform-origin: 25px 25px 0;
	-ms-transform-origin: 25px 25px 0;
	transform-origin: 25px 25px 0;
}

#seatsPlan .siegeall[data-orientation="SO"] .siegeFlip, 
#seatsPlan .siegeall[data-orientation="NE"] .siegeFlip, 
#seatsPlan .siegeall[data-orientation="SE"] .siegeFlip, 
#seatsPlan .siegeall[data-orientation="NO"] .siegeFlip {
	-webkit-transform-origin: 50% 50% 0;
	-ms-transform-origin: 50% 50% 0;
	transform-origin: 50% 50% 0;
}

#seatsPlan .siegeall.flaggedseat_tempo .siegebg, 
#seatsPlan circle.flaggedseat_tempo {
	fill: fade(@primaryColor, 100%);
}

#seatsPlan .siegeall.flaggedseat_tempo[data-orientation="S"] .siegeFlip, 
#seatsPlan .siegeall.flaggedseat_tempo[data-orientation="N"] .siegeFlip {
	-webkit-animation: flaggedTempoAnimSN 0.7s ease-in;
	animation: flaggedTempoAnimSN 0.7s ease-in;
}

#seatsPlan .siegeall.flaggedseat_tempo[data-orientation="E"] .siegeFlip, 
#seatsPlan .siegeall.flaggedseat_tempo[data-orientation="O"] .siegeFlip {
	-webkit-animation: flaggedTempoAnimEO 0.7s ease-in;
	animation: flaggedTempoAnimEO 0.7s ease-in;
}

#seatsPlan .siegeall.flaggedseat_tempo[data-orientation="SE"] .siegeFlip, 
#seatsPlan .siegeall.flaggedseat_tempo[data-orientation="NO"] .siegeFlip {
	-webkit-animation: flaggedTempoAnimSENO 0.7s ease-in;
	animation: flaggedTempoAnimSENO 0.7s ease-in;
}

#seatsPlan .siegeall.flaggedseat_tempo[data-orientation="SO"] .siegeFlip, 
#seatsPlan .siegeall.flaggedseat_tempo[data-orientation="NE"] .siegeFlip {
	-webkit-animation: flaggedTempoAnimSONE 0.7s ease-in;
	animation: flaggedTempoAnimSONE 0.7s ease-in;
}

/** flip S, N anim **/
@-webkit-keyframes flaggedTempoAnimSN {
	0% {
		-webkit-transform: rotateY(0deg) scale(1, 1);
		transform: rotateY(0deg) scale(1, 1);
	}

	50% {
		-webkit-transform: rotateY(90deg) scale(1.5, 1.5);
		transform: rotateY(90deg) scale(1.5, 1.5);
	}

	100% {
		-webkit-transform: rotateY(180deg) scale(1, 1);
		transform: rotateY(180deg) scale(1, 1);
	}

}

@keyframes flaggedTempoAnimSN {
	0% {
		-webkit-transform: rotateY(0deg) scale(1, 1);
		transform: rotateY(0deg) scale(1, 1);
	}

	50% {
		-webkit-transform: rotateY(90deg) scale(1.5, 1.5);
		transform: rotateY(90deg) scale(1.5, 1.5);
	}

	100% {
		-webkit-transform: rotateY(180deg) scale(1, 1);
		transform: rotateY(180deg) scale(1, 1);
	}

}

/** flip E, O anim **/
@-webkit-keyframes flaggedTempoAnimEO {
	0% {
		-webkit-transform: rotateX(0deg) scale(1, 1);
		transform: rotateX(0deg) scale(1, 1);
	}

	50% {
		-webkit-transform: rotateX(90deg) scale(1.5, 1.5);
		transform: rotateX(90deg) scale(1.5, 1.5);
	}

	100% {
		-webkit-transform: rotateX(180deg) scale(1, 1);
		transform: rotateX(180deg) scale(1, 1);
	}

}

@keyframes flaggedTempoAnimEO {
	0% {
		-webkit-transform: rotateX(0deg) scale(1, 1);
		transform: rotateX(0deg) scale(1, 1);
	}

	50% {
		-webkit-transform: rotateX(90deg) scale(1.5, 1.5);
		transform: rotateX(90deg) scale(1.5, 1.5);
	}

	100% {
		-webkit-transform: rotateX(180deg) scale(1, 1);
		transform: rotateX(180deg) scale(1, 1);
	}

}

/** flip SE, NO anim **/
@-webkit-keyframes flaggedTempoAnimSENO {
	0% {
		-webkit-transform: rotate3d(0, 0, 0, 0deg) scale(1, 1);
		transform: rotate3d(0, 0, 0, 0deg) scale(1, 1);
	}

	50% {
		-webkit-transform: rotate3d(45, 45, 0, -90deg) scale(1.5, 1.5);
		transform: rotate3d(45, 45, 0, -90deg) scale(1.5, 1.5);
	}

	100% {
		-webkit-transform: rotate3d(90, 90, 0, -180deg) scale(1, 1);
		transform: rotate3d(90, 90, 0, -180deg) scale(1, 1);
	}

}

@keyframes flaggedTempoAnimSENO {
	0% {
		-webkit-transform: rotate3d(0, 0, 0, 0deg) scale(1, 1);
		transform: rotate3d(0, 0, 0, 0deg) scale(1, 1);
	}

	50% {
		-webkit-transform: rotate3d(45, 45, 0, -90deg) scale(1.5, 1.5);
		transform: rotate3d(45, 45, 0, -90deg) scale(1.5, 1.5);
	}

	100% {
		-webkit-transform: rotate3d(90, 90, 0, -180deg) scale(1, 1);
		transform: rotate3d(90, 90, 0, -180deg) scale(1, 1);
	}

}

/** flip SO, NE anim **/
@-webkit-keyframes flaggedTempoAnimSONE {
	0% {
		-webkit-transform: rotate3d(0, 0, 0, 0deg) scale(1, 1);
		transform: rotate3d(0, 0, 0, 0deg) scale(1, 1);
	}

	50% {
		-webkit-transform: rotate3d(-45, 45, 0, -90deg) scale(1.5, 1.5);
		transform: rotate3d(-45, 45, 0, -90deg) scale(1.5, 1.5);
	}

	100% {
		-webkit-transform: rotate3d(-90, 90, 0, -180deg) scale(1, 1);
		transform: rotate3d(-90, 90, 0, -180deg) scale(1, 1);
	}

}

@keyframes flaggedTempoAnimSONE {
	0% {
		-webkit-transform: rotate3d(0, 0, 0, 0deg) scale(1, 1);
		transform: rotate3d(0, 0, 0, 0deg) scale(1, 1);
	}

	50% {
		-webkit-transform: rotate3d(-45, 45, 0, -90deg) scale(1.5, 1.5);
		transform: rotate3d(-45, 45, 0, -90deg) scale(1.5, 1.5);
	}

	100% {
		-webkit-transform: rotate3d(-90, 90, 0, -180deg) scale(1, 1);
		transform: rotate3d(-90, 90, 0, -180deg) scale(1, 1);
	}

}
#collapsePlacement .item-zes {

}
#collapsePlacement .item-rankseat {
font-size:inherit;
}
#collapsePlacement .item-rankseat-wrapper:not(:last-child) {
	margin-bottom: 7px;
}
/*
#collapsePlacement .item-rankseat-wrapper + .item-rankseat-wrapper {
	margin-bottom: 10px;
}*/