* {
	accent-color: #ff4e70;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

* [class*="-icons"] {
	vertical-align: middle;
}

:root {
	--accent-color: #D81B60;
	--primary: #D81B60;
}

hr {
	border: 1px solid #e3e3e3;
}

body {
	color: #000;
	font-family: 'Roboto', sans-serif;
	background: #ebebeb;
	padding-top: 7.5rem;
}

.content {
	margin: 20px auto;
	max-width: 1200px;
}

.sidebar {
	height: fit-content;
	position: sticky;
	top: 100px;
	color: #FFF;
	background-color: #AA2A59;
	white-space: nowrap;
	border-radius: 0 20px 20px 0;
	margin-right: 10px;
	overflow: hidden;
}

.sidebar a {
	color: inherit;
}

.sidebar ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: left;
	margin: 0 12px 20px;
}

.sidebar h2 {
	margin: 20px 12px;
}

.bg-primary {
  background-color: #d81b60 !important;
}

.material-symbols-rounded {
  vertical-align: middle;
}

.material-symbols-rounded::before {
  content: attr(data-icon);
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-small {
	font-size: x-small;
}

.no-break {
	white-space: nowrap;
}

.logo {
	display: block;
	width: 154px;
	height: 114px;
	margin: 0 auto 8px;
	background-size: 154px;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('/files/images/logo_cse.png');
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
	background-color: #860f3a;
	border-color: #e87b5a;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus {
	box-shadow: 0 0 0 .2rem rgba(216, 27, 96, 0.4);
}

.btn-primary.focus, .btn-primary:focus {
	border-color: #0062cc;
	box-shadow: 0 0 0 .2rem rgba(216, 27, 96, 0.2);
}

.form-control:focus {
	border-color: rgba(216, 27, 96, 0.45);
	box-shadow: 0 0 0 .2rem rgba(216, 27, 96, 0.18);
}

.btn {
	position: relative;
	display: inline-block;
	padding: 15px;
	background: #f2f2f2;
	border-radius: 10px;
	color: #FFF;
	min-height: 55px;
	line-height: 1em;
	font-size: 15px;
	transition: background .5s ease, color .5s ease;
	text-decoration: none;
	cursor: pointer;
	border:0 none;
	font-family: inherit;
	white-space: normal;
	appearance: button;
}

.box a.btn > .material-symbols-rounded:hover {
  color: inherit;
}

.box .btn.btn-primary:hover {
	color: #FFF !important;
}

.btn.btn-primary {
	background: var(--accent-color);
	color: rgba(255, 255, 255, 0.9);
}

.btn.btn-primary:hover,
.btn.btn-primary.active
{
	background: var(--accent-color);
}

.btn.btn-caps {
	text-transform: uppercase;
}

.btn.btn-block {
	display: block;
	width: 100%;
	max-width: 300px;
	text-align: center;
	margin: 0 0 0 auto;
}

.btn-mini {
	display: inline-block;
	margin: 4px;
	color: var(--accent-color) !important;
}

.pages {
	text-align: center;
}

.page_inactive {
	color: #7d7d7d;
	background: #f9f9f9;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: background .5s ease, color .5s ease;
	border-radius: 5px;
	padding: 10px 15px 10px 15px;
	margin-left: 5px;
	margin-right: 5px;
	text-decoration: none;
}

.page_inactive:hover {
	background: var(--accent-color);
	transition: background .5s ease, color .5s ease;
	color: rgba(255, 255, 255, 0.9) !important;
}

.page_active {
	background: var(--accent-color);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: background .5s ease, color .5s ease;
	border-radius: 5px;
	padding: 10px 15px 10px 15px;
	margin-left: 5px;
	margin-right: 5px;
	color: rgba(255, 255, 255, 0.9);
}

.avatar {
	border-radius: 5px;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
	max-height: 50px;
	max-width: 50px;
}

input[type="submit"],
input[type="button"] {
	padding: 15px;
}

input[type="text"], input[type="number"], input[type="date"], input[type="datetime-local"], input[type="email"], input[type="password"], textarea, select {
	width: 100%;
	border: 1px solid #cfcfcf;
	background: #FFF;
	font-size: 10pt;
	padding: 8px 12px;
	outline: none;
	border-radius: 3px;
	margin-bottom: 7px;
	transition: background .5s ease;
	resize: none;
	font-family: inherit;
	box-shadow: none;
}

.btn input[type="file"] {
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 999;
	line-height: 50px;
	width: 100%;
}

input[required]::before {
    content: '*';
    background-color: yellow !important;
}


input:required:invalid,
textarea:required:invalid,
select:required:invalid {
    border: var(--accent-color) solid 1px;
    background-color: #fff6f9;
}

input[type="text"]:disabled, input[type="password"]:disabled, textarea:disabled, select:disabled {
	background: #dddddd;
	color: #9a9a9a;
}

textarea {
	height: 300px;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
	background: #f5f5f5;
}

sup {
	padding-right: 5px;
	color: #ff3f3f;
	font-size: 1em;
	font-weight: bold;
	vertical-align: top;
	line-height: 2em;
}

.checkbox {
	color: #ccc;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.4);
	font-size: 0.6875em;
	margin-bottom: 7px;
	display: inline-block;
}

.box {
	position: relative;
	background: #f9f9f9;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2);
	border-radius: 20px;
	margin-bottom: 20px;
	color: #000;
	font-size: 12pt;
	/*text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);*/
}

.box h2 {
	color: var(--accent-color);
	font-size: 24px;
}

.box h2 a [class*="-icons"] {
	color: #7d7d7d;
	font-size: 20px;
}

.box h2 a:hover [class*="-icons"] {
	color: #000;
}
/*
label, .box p {
	font-size: 0.75em;
	color: #7d7d7d;
}
*/
label {
	font-size: 10pt;
	cursor: pointer;
}

.post table {
	margin-left:auto; 
	margin-right:auto;
	border-spacing: 0px;
	border-collapse: separate;
}

.post table td {
	padding: 0 10px;
	/*text-align: right;*/
}

.table-default td {
	border-top: 2px solid #e3e3e3;
}

.table-striped > tbody > tr:nth-of-type(even) {
  background-color: #EEEEEE;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #DCDCDC;
}

.post .title {
	color: #000;
	margin-top: 8px;
	padding: 10px;
	font-size: 18px;
	position: absolute;
	background: rgba(255, 255, 255, 0.7);
	text-align: left;
	line-height: 1em;
	font-weight: bold;
	text-transform: uppercase;
	backdrop-filter: blur(10px);
}

.post .title span {
	font-size: 18px;
}

.post .title_big {
	color: #000;
	margin-top: 8px;
	padding: 10px 16px 8px;
	font-size: 30px;
	position: absolute;
	background: rgba(255, 255, 255, 0.7);
	text-align: left;
	line-height: 0.75em;
	font-weight: bold;
	text-transform: uppercase;
	width: auto;
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.post .title_big span {
	font-size: 20px;
}

.box.post .details a:not(.btn) {
	color:  inherit;
	text-decoration: underline;
}

.locations {
	padding: 30px;
	text-align: center;
}

.locations h2 {
	margin-top: 0;
}

.locations .btn.btn-default {
	min-height: 24px;
	margin-top: 10px;
	padding: 8px 15px;
}

.locations .avatar {
	border-radius: 5px;
}

.locations .avatar img {
	border-radius: 5px;
	height: 200px;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.locations .btn {
	margin-top: 30px;
}

.locations ul {
	margin: 0;
	padding: 0;
	color: #000;
	text-align: left;
}

.locations li {
	display: inline-block;
	border-top: 2px solid #e3e3e3;
	width: 100%;
	padding: 6px 0 6px 20px;
}

.locations li a, .box a {
	text-decoration: none;
	color: #000;
}

.locations li .material-symbols-rounded {
	color: #7d7d7d;
}

.box a > .material-symbols-rounded:hover {
	color: var(--accent-color);
}

.locations li a:hover .material-symbols-rounded {
	color: var(--accent-color);
}

.nav a {
	text-decoration: none;
	color: #7d7d7d;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
	font-size: 0.9em;
	font-weight: bold;
}

.nav a:hover {
	color: var(--accent-color);
}

.nav .material-symbols-rounded {
	font-size: 28px;
	margin-bottom: 4px;
	display: inline-block;
}

.nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}

.nav li {
	display: inline-block;
}

.nav li a {
	display: block;
	padding: 21px 4px;
}

.nav li a.hot {
	color: var(--accent-color);
}

.event_small .header {
	border-radius: 0 0 5px 5px;
	padding-bottom: 13px;
	padding-top: 6px;
	background: var(--accent-color);
	text-align: center;
	color: #fff;
	font-size: 17px;
}

.event_small .header a {
	color: #ffffff;
}

.event_small .header a:hover {
	background: #e5e5e5;
	color: #000000;
	transition: background .5s ease, color .5s ease;
}

.video {
	position: relative;
	cursor: pointer;
}

.video:before {
	content: '';
	border: 2px solid rgba(255, 255, 255, 0.8);
	background: rgba(255, 255, 255, 0.1);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -20px 0 0 -20px;
	transition: background .3s ease;
}

.video:after {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -5px 0 0 2px;
	border: 10px solid transparent;
	border-left: 10px solid rgba(255, 255, 255, 0.8);
}

.video:hover:before {
	background: rgba(255, 255, 255, 0.3);
}

.video img {
	border-radius: 5px;
}

.post .image {
	overflow: hidden;
	aspect-ratio: 6;
}

.post .image img {
	border-radius: 12px 12px 0 0;	
	width: 100%;
	vertical-align: sub;
	object-fit: cover;
	aspect-ratio: 6;
}

.post .image.large {
	aspect-ratio: 2.7;
}

.post .image.large img {
	aspect-ratio: 2.7;
}

.post .details,
.error .details,
.validate .details,
.information .details {
	padding: 10px 20px;
}

p.short {
	max-height: 4.5em;
	overflow: hidden;
}

.post .details p,
.error .details p,
.validate .details p,
.information .details p {
	line-height: 1.5em;
}

.error .details a,
.validate .details a,
.information .details a {
	color: inherit;
}

.error {
	color: #ffdede;
	background-color: #e62323;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
	font-weight: bold;
	min-height: 65px;
}

.error [class*="-icons"] {
	position: relative;
	float: left;
	padding: 0 10px 0 0;
	font-size: 50px;
	color: var(--accent-color);
	top: -15px;
}

.validate {
	color: #229f00;
	background-color: #d2ffc6;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
	font-weight: bold;
	min-height: 65px;
}

.validate [class*="-icons"] {
	position: relative;
	float: left;
	padding: 0 10px 0 0;
	font-size: 50px;
	color: #5dbc43;
	top: -15px;
}

.information {
	color: var(--accent-color);
	background-color: #ffe6ef;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
	font-weight: bold;
}

.information [class*="-icons"] {
	position: relative;
	float: left;
	padding: 0 10px 0 0;
	font-size: 50px;
	color: #ffb400;
	top: -15px;
}

.find {
	padding: 10px;
}

.tarifs {
	 font-size: 180%;
}

.tarifs s {
	color: rgba(125, 125, 125, 0.3);
}

.mini {
	font-size: 9px;
	color: #c2c2c2;
}

.title_mini {
	font-size: 0.6em;
	text-transform: uppercase;
}

.title {
	text-transform: uppercase;
}

.confirmation-box {
  /* Custom styling */
  max-width: 550px;
  border-radius: 5px;

  /* Custom transition - slide from top*/
  transform: translateY(-50px);
  transition: all .33s;
}

.fancybox-slide--current .confirmation-box {
  transform: translateY(0);
}

.container {
	padding-top: 10px;
}

.cropit-preview {
	background-color: #f8f8f8;
	background-size: cover;
	border: 1px solid #ccc;
	border-radius: 5px;
	margin-top: 7px;
	width: 300px;
	height: 300px;
	margin-left: auto;
	margin-right: auto;
}

input.cropit-image-input {
	visibility: hidden;
}

.cropit-preview-image-container {
	cursor: move;
	border-radius: 5px;
}

.image-size-label {
	margin-top: 10px;
}

.rotate-cw-btn, .rotate-ccw-btn {
	cursor: pointer;
	color: #7d7d7d;
	width: 100px;
}

.rotate-cw-btn:hover, .rotate-ccw-btn:hover {
	color: #000;
}

.tableau {
	display:table;
}

.tableau span {
	display: table-cell;
	border-top: 2px solid #e3e3e3;
	margin:0px;
	padding:3px;
	line-height:1em;
	font-size: 10px;
	vertical-align: middle;
}

.tableau p {
	clear:left;
	margin:0px;
	padding:0px;
}

.tableau span.tarif {
	text-align: center;
	font-weight: bold;
}

.tableau span.actions {
	text-align: center;
	font-weight: bold;
}

#result {
	margin-top: 10px;
	width: 900px;
}

#result-data {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	word-wrap: break-word;
}

.form-control {
	box-shadow: none;		
	font-weight: normal;
	font-size: 13px;
}
.navbar {
	background: #fff;
	padding: 1em 16px;
	border-bottom: 1px solid #dfe3e8;
	border-radius: 0;
}
.nav-link img {
	border-radius: 50%;
	width: 36px;
	height: 36px;
	margin: -8px 0;
	float: left;
	margin-right: 10px;
}
.navbar .navbar-brand {
	padding-left: 0;
	font-size: 20px;
	padding-right: 50px;
}
.navbar .form-inline {
	display: inline-block;
}
.navbar a {
	color: #888;
	font-size: 15px;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgb(255, 255, 255);
}
.search-box {
	position: relative;
}	
.search-box input {
	padding-right: 35px;
	border-color: #dfe3e8;
	border-radius: 4px !important;
	box-shadow: none
}
.search-box .input-group-text {
	min-width: 35px;
	border: none;
	background: transparent;
	position: absolute;
	right: 0;
	z-index: 9;
	padding: 7px;
	height: 100%;
}
.search-box i {
	color: #a0a5b1;
	font-size: 19px;
}
.navbar .sign-up-btn {
	min-width: 110px;
	max-height: 36px;
}
.navbar .dropdown-menu {
	color: #999;
	font-weight: normal;
	border-radius: 1px;
	border-color: #e5e5e5;
	box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.navbar a, .navbar a:active {
	color: #888;
	/*padding: 8px 20px;*/
	background: transparent;
	line-height: normal;
}
.navbar .navbar-form {
	border: none;
}
.navbar .action-form {
	width: 280px;
	padding: 20px;
	left: auto;
	right: 0;
	font-size: 14px;
}
.navbar .action-form .hint-text {
    text-align: center;
    margin-bottom: 15px;
    font-size: 13px;
}	
.or-seperator {
	margin-top: 32px;
	text-align: center;
	border-top: 1px solid #e0e0e0;
}
.or-seperator b {
	color: #666;
	padding: 0 8px;
	width: 30px;
	height: 30px;
	font-size: 13px;
	text-align: center;
	line-height: 26px;
	background: #fff;
	display: inline-block;
	border: 1px solid #e0e0e0;
	border-radius: 50%;
	position: relative;
	top: -15px;
	z-index: 1;
}
.navbar .action-buttons .dropdown-toggle::after {
	display: none;
}
.form-check-label input {
	position: relative;
	top: 1px;
}

.g-recaptcha > div {
	margin: 0 auto;
}

@media (min-width: 1200px){
	.form-inline .input-group {
		width: 300px;
		margin-left: 30px;
	}

	.post .details,
	.error .details,
	.validate .details,
	.information .details {
		padding: 20px 40px;
	}
}
@media (max-width: 768px){
	.sidebar {
		position: fixed;
		width:  auto;
		padding: 0 10px;
		overflow: hidden;
		z-index: 1;
	}

	.navbar .dropdown-menu.action-form {
		width: 100%;
		padding: 10px 15px;
		/* background: transparent; 2024-02-01 */
		border: none;
	}
	.navbar .form-inline {
		display: block;
	}
	.navbar .input-group {
		width: 100%;
	}
}

#showmenu,
#showadminmenu {
    display: none;
}

@media screen and (max-width:767px) {
	.post .details,
	.error .details,
	.validate .details,
	.information .details {
		padding: 10px 4px;
	}
	
	.post table td {
		padding: 0 4px;
	}
	
	.locations {
		padding: 10px 20px;
	}
	
	.locations h2 {
		margin: 10px 0;
	}
	
	ul.menu {
		max-height: 0;
		width: 0;
		margin:  0;
		overflow: hidden;
		transition: max-height 300ms linear;
	}

	#showmenu:checked + ul.menu,
	#showadminmenu:checked + ul.menu {
		max-height: 500px;
		width: auto;
	}

	.sidebar h2 {
		margin:  0;
	}
	
	.avatar {
		max-width: 30px;
	}
}