main #title {
	margin: 0;
	text-align: center;
	color: #000;
}

main #title a {
	font-size: 200%;
	font-weight: bold;
	color: rgba(0, 0, 0, 0.80);
}

main #title img {
	width: 80px;
	transform: rotate(-20deg);
    margin-top: 90px;
}

#content {
	padding: 0 10px 0 10px;
}

section.width-large,
section.width-small,
section.width-small-notif {
	padding: 0 10px 0 10px;
}


main #content .helpElement {
	background-color: white;
	padding: 10px;
	margin-top: 30px;
	border-radius: 8px;
	box-shadow: 0 0 24px rgb(74 85 95 / 10%);
	transition: box-shadow 0.3s ease;
}

main #content .helpElement:hover {
	box-shadow: 0 0 24px rgb(74 85 95 / 30%);
}

.subheader {
	display: flex;
	align-items: center;
	justify-content: center; 
	margin: auto;
	margin-left: 5px; /* Avoid horizontal scroll bar on small screens */
	margin-right: 5px; /* Avoid horizontal scroll bar on small screens */
	margin-bottom: 10px;
	margin-top: 10px;
	text-align: center;
	font-size: 130%;
	font-weight: bold;
	color: rgba(0, 0, 0, 0.80);
	font-family: 'Exo2';
}

.subheader-level2 {
    justify-content: center;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    padding: 2px 10px 2px 10px;
    font-size: 120%;
    font-weight: bold;
    border-radius: 8px;
}

.subheader-level2[color=free] {
	background-color: #17aa89;
	color: white;
    text-shadow: 1px 1px 1px rgb(0 0 0 / 40%);
}

.subheader-level2[color=occupiedSemi] {
	background-color: orange;
	color: #000;
}

.subheader #logo {
    width: 60px;
    margin-right: 10px;
    margin-bottom: -6px;
    transform: rotate(-20deg);
}

.hidden {
	display: none;
}

.width-large {
	max-width: 1150px;
	margin: auto;
	box-sizing: content;
	padding-bottom: 30px !important;
}

.width-large[withHeaderMarginTop] {
	padding-top: 65px;
}

.width-small {
	max-width: 500px;
	width: 100%;
	margin: auto;
	padding-bottom: 30px !important;
	box-sizing: border-box;
}

.width-small[withHeaderMarginTop] {
	padding-top: 90px;
}

.width-small-notif {
	text-align: center;
	max-width: 800px;
	margin: auto;
	padding-bottom: 30px !important;
}

.menuButtonGroup {
	border-radius: 8px;
	text-align: left;
	margin-top: 30px;
	box-shadow: 0 0 24px rgb(74 85 95 / 10%);
	background-color: #FFF;
	transition: box-shadow 0.3s ease; /* Transition effect */
}

.menuButtonGroup:hover {
	box-shadow: 0 0 24px rgb(74 85 95 / 30%);
}

.menuButtonGroup .title {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 10px 10px 0 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.menuButtonGroup .titleWithImg {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	justify-content: left;
}

.menuButtonGroup .titleWithImg > img {
	width: 44px;
	height: 44px; /* Required to avoid display anomaly on small screens*/
}

.menuButtonGroup .titleWithImg > #title-next-to-img{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 2px;
}

.menuButtonGroup .body {
	padding: 0 10px 10px 10px;
	border-bottom-left-radius: 10px; 
	border-bottom-right-radius: 10px;
}

.menuButtonGroup .body button {
	justify-content: left;
	background-color: #f5f6f8;
	border-left: 10px solid #dddfe3;
	color: black;
	margin-top: 10px !important;
	border-radius: 8px;
	transition: 0.22s;
}

.menuButtonGroup .body button.disabled {
	color: grey;
	cursor: default;
}

.menuButtonGroup .body button:hover {
	border-left: 10px solid #009b7d;
    filter: brightness(98%); /* Darken the element; adjust percentage as needed */
}

.menuButtonGroup .stepToComplete {
	background-color: #257ac7 !important;
	color: white !important;
	transition: background-color 0.3s ease;
}

.menuButtonGroup .stepToComplete:hover {
	background-color: #236eb3 !important;
}

/* This class is to be combined/used with .notification */
.menuButtonGroup .stepToComplete:after {
	border-bottom-color: #257ac7 !important;
}

.menuButtonGroup span {
	margin-right: 4px;
}

.content {
	margin: auto;
	width: 100%;
	margin-top: 30px;
}

.content[no-top-margin]{
	margin-top: 0;
}

.content .body {
	position: relative; /* Required to insert position:absolute elements inside */
	margin: auto;
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	padding:10px;
	box-shadow: 0 0 24px rgb(74 85 95 / 10%);
	transition: box-shadow 0.3s ease; /* Transition effect */
}

.content .body:hover {
	box-shadow: 0 0 24px rgb(74 85 95 / 30%);
}

.content .body .title {
	border-bottom: 1px solid #d3d3d3;
    color: rgba(0, 0, 0, 0.8);
    padding: 4px 4px 10px 0px;
    display: flex; /* example : in proIntro, have number and text in the same row */
}

.content .body .title span {
	color: #158c71;
} 

.content .body .text {
	margin-top: 10px;
}

.body .empty {
	padding: 10px;
	border-radius:10px;
	background-color: #FFF;
	color: rgba(0, 0, 0, 0.8);
	box-shadow: 0 0 24px rgb(74 85 95 / 10%);
}

.contentSmallTextBellow {
	/* Exemple : delete account link */
	font-size:90%;
	text-align: right;
	margin-left: auto;
}

.information {
	background-color: #f5f6f8;
    border-radius: 8px;
    margin-top: 10px;
    padding: 10px;
    color: #333;
}

.information[no-top-margin]{
	margin-top: 0;
}

/* Used in proParameters (display html code button) */
.information button {
	background-color: #e4e6eb;
	border-color: #e4e6eb !important;
	color: #000;
}

.information button:hover {
	background-color: #d8dadf !important;
	border-color: #d8dadf;
}

.icon-left {
	vertical-align: middle;
}

.information .icon-left {
	font-size: 22px;
	margin-right: 2px;
}

/* Footer elements */

footer .selection {
	padding: 4px;
	margin: auto;
	border-radius: 50%;
	cursor: pointer;
}

footer .selection:hover,
footer .selection[selected] {
	background-color: #FFF;
}

footer #language_selector #langSelect {
    padding: 6px 22px 6px 14px;
    border-radius: 8px;
    background-color: #262626;
    border-color: #262626;
    color: #FFF;
}

footer .main-section{
	display: flex;
	flex-direction: row;
}

@media (max-width: 800px) {
	footer .main-section {
		flex-direction: column;
	}
	
/*	body {
		margin-bottom: 580px;
	}*/
	
	footer .sub-links{
		margin-top: 10px;
		flex-direction: column;
	}
}

footer .links-group {
	display: flex;
	flex-direction: column;
}

footer .presentation {
	padding: 4px 10px;
	line-height: calc(1em + 17px);
	color: #7c7c7c;
	max-width: 340px;
}

footer .links-title {
	font-family: 'Exo2';
	padding: 10px;
}

footer  #language_selector {
	padding: 10px;
}

footer .links-group .facebook-link{
  display: inline-flex; /* Only takes up the width of the content */
  color: white;
  text-decoration: none;
  padding: 8px; /* Optional padding for spacing */

}

footer .sub-links {
	font-family: 'Exo2';
	font-size: 90%;
	display: flex;
}

/* Header elements */

#header {
	z-index: 2;
	text-align: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 0;
	display: flex;
}

#header > a {
	padding: 2px 14px 2px 14px;
	background-color: #393a3a;
	color: #FFF;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	box-shadow: 0 0px 32px -8px rgba(100,100,100,1);
	margin: auto;
}

.content .row{
	display: flex;
}

.content .row .row_title{
	background-color: rgba(100, 100, 100, .1);
	border-radius: 50px;
}

/* Width : 0 - 680px */
@media (max-width: 680px) {
	.content .row{
		flex-direction: column;
		text-align: center;
	}
	
	.content .row:not(:first-child) {
		margin-top: 12px;
	}
	
	.content .row .row_content{
		margin-top: 2px;
	}

	.content .row .row_title{
		padding : 0 8px 0 8px;
	}
}

/* Width : 0 - 680px */
@media (min-width: 680px) {
	.content .row:not(:first-child) {
		margin-top: 6px;
	}

	.content .row .row_title{
		padding : 0 8px 0 8px;
	}

	.content .row .row_content{
		margin-left: 10px;
	}
}

/* Individual Reservations */

.individualReservation {
	display: flex;
	flex-direction: column;
	box-shadow: 0 0 24px rgb(74 85 95 / 10%);
	border-radius: 26px;
}

@keyframes spin{
	from{transform:rotate(0deg)}
	to{transform:rotate(360deg)}	
}

@keyframes blink {
	50%{opacity: 0.4;}
}

@keyframes blinkShadow {
	0% {box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.8);}
	50% {box-shadow: none;}
	100% {box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.8);}
}


/* This class is to be combined/used with .notification */
.stepToComplete {
	background-color: #eef2f7 !important;
	color: #333 !important;
}

/* This class is to be combined/used with .notification */
.stepToComplete:after {
	border-bottom-color: #eef2f7 !important;
}

.subscriptionLink {
	font-weight: bold;
}

.smallButton {
	text-align: center;
	margin: auto;
	box-shadow: 0 0 24px rgb(74 85 95 / 10%);
	cursor: pointer;
	background-color: white;
	padding: 4px;
	border-radius: 8px;
	margin-top: 20px;
}


/* Steps */
/* Credits to : https://devrecipes.net/step-progres-bar-with-pure-css/ */

.stepper-wrapper {
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
}

.stepper-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	text-align: center;
}

.stepper-item::before {
	position: absolute;
	content: "";
	border-bottom: 2px solid #edf3f3;
	width: 100%;
	top: 20px;
	left: -50%;
	z-index: 2;
}

.stepper-item::after {
	position: absolute;
	content: "";
	border-bottom: 2px solid #edf3f3;
	width: 100%;
	top: 20px;
	left: 50%;
	z-index: 2;
}

.stepper-item .step-counter {
	position: relative;
	z-index: 5;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	margin-bottom: 6px;
	box-shadow: 0 0 24px rgb(74 85 95 / 10%);
}

.stepper-item.active {
	font-weight: bold;
}

.stepper-item.active .step-counter {
	background-color: #009b7d;
}

.stepper-item.completed .step-counter {
	background-color: #009b7d;
}

.stepper-item.completed::after {
	position: absolute;
	content: "";
	border-bottom: 2px solid #009b7d;
	width: 100%;
	top: 20px;
	left: 50%;
	z-index: 3;
}

.stepper-item:first-child::before {
	content: none;
}
.stepper-item:last-child::after {
	content: none;
}

/* Cancel steps button */
.stepper-item a {
	background-color: rgba(0, 0, 0, 100);
	border-radius: 8px;
	padding: 0 10px 0 10px;
	color: #FFF;
	font-weight: normal;
}
/* / Steps */

/* Intro elements */

/* HeaderBar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    padding: 6px 10px;
    box-sizing: border-box;
    border-radius: 0 0 20px 20px;
    background: #009b7d;
	transition: box-shadow 0.3s ease; /* Add a transition for smooth effect */
}

/* When this class is added, the box-shadow appears */
nav.scrolled {
	box-shadow: 0 20px 20px -20px rgba(100, 100, 100, 1);
}

nav a {
	color: #fff;
}

nav button {
	padding: 5px 10px 5px 10px !important;
	font-size: 100%;
	border-radius: 20px;
}

nav #profilName {
	display: inline-block;
	max-width: 120px;
	white-space: nowrap;
	overflow: hidden !important;
	text-overflow: ellipsis;
}

nav #linkGroup {
	display: flex;
	flex-direction: row;
	text-align: center;
	margin: auto;
	justify-content: space-between;
	max-width: 1150px;
}

nav #linkGroup .columnList {
	display: flex;
	flex-direction: row;
	align-items: center;
}

nav #linkGroup .columnList .column{
	display: flex;
	flex-direction: row;
	align-items: center;
}

/* Base container for the icon and status */
nav #linkGroup .columnList .column .icon-container {
    position: relative;
    display: flex;
}

nav #linkGroup .columnList .column > a > .icon-container #manager-icon {
	margin-right: 10px;
}

nav #linkGroup .columnList .column .icon-container #manager-icon {
    color: #000;
    background-color: white;
    max-width: 38px;
    padding: 4px;
    border-radius: 100%;
}

/* Status indicator circle */
nav #linkGroup .columnList .column .icon-container .status-indicator {
	position: absolute;
    bottom: -2px;
    right: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid white;
}

/* Connected status - green */
nav #linkGroup .columnList .column .icon-container  .status-indicator.connected {
    background-color: #28a745; /* Green for connected */
}

/* Disconnected status - grey */
nav #linkGroup .columnList .column .icon-container .status-indicator.disconnected {
    background-color: #6c757d; /* Grey for disconnected */
}

/* Manager page case where #manager-icon is in .manager-button */
nav #linkGroup .columnList .column .manager-button {
	background-color: white;
	color: black;
	gap: 2px;
}

nav #linkGroup .columnList .column .manager-button .icon-container #manager-icon{
    font-size: 24px;
    padding: 0;
    max-width: 26px;
    max-height: 26px;
    min-height: 26px;
    min-width: 26px;
}

nav #siteName {
	display: flex;
	align-items: center;
	justify-content: center;
}

nav #logo {
	display: flex;
    align-items: center;
	width: 50px;
}

nav #returnButton {
	display: flex;
    align-items: center;
	width: 34px;
	margin-right: 4px;
	background-color: #fff;
	border-radius: 100%;
    box-shadow: 0 0 24px rgb(74 85 95 / 10%);
	transition: background-color 0.3s ease;
}

nav #returnButton:hover {
    background-color: #75ddc0;
}

nav #text {
	font-family:'Exo2';
	font-style: italic;
	text-shadow: 1px 1px 1px rgb(0 0 0 / 40%);
    font-size: 150%;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
    padding-right: 4px;
    color: #fff;
}
@media (max-width:500px) {
	nav #text[pageName] {
		max-width: 170px; /* cf "planning hebdomadaire" */
	}
}

@media (max-width:400px) {
	nav #text[pageName] {
		font-size: 130% !important;
	}
}

@media (max-width:380px) {
	nav #logo[pageName] {
		display: none;
	}
	nav #text[pageName] {
		font-size: 100% !important;
	}
}

nav #linkGroup .columnList .column[columnNumber1] {
	margin-right:10px;
}

@media (max-width:600px) {
	nav #linkGroup .columnList .column[columnNumber1]{
		display: none;
	}
}

/* Search Area */
#greenHeader {
	display: flex;
    flex-direction: column;
    padding: 140px 10px 140px 10px;
    background-color: #009b7d;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin: auto;
    color: #FFF;
    text-shadow: 1px 1px 1px rgb(0 0 0 / 40%);
    background: url(/core/gui/img/design/design_bgGreen.webp);
    background-size: 512px auto;
    background-repeat: repeat;
    background-color: #009b7c;
	box-shadow: rgb(100, 100, 100) 0px 20px 20px -20px;
}

@keyframes bgScroll {
  from { background-position: 0 0; }
  to { background-position: 0 1000px; }
}

#greenHeader button {
	max-width: 400px;
	margin: auto;
	margin-top: 20px;
}

#greenHeader h1 {
    font-size: 150%;
    font-weight: 600;
}

#greenHeader > h1 {
	margin: auto;
}

#greenHeader[small] {
	padding: 50px 0 0 0;
}

/* SearchArea */
#greenHeader #searchBar {
	display: flex;
	flex-direction: column;
	max-width: 1150px;
	margin: auto;
	width: 100%;
	box-sizing: border-box;
}

#greenHeader #searchBar h1 {
	color: #FFF;
    text-shadow: 1px 1px 1px rgb(0 0 0 / 40%);
    font-weight: 600;
}

/* SearchArea */
#greenHeader #searchBar #searchInputs {
	display: flex;
    flex-direction: row;
    width: 100%;
    margin: auto;
}

#greenHeader #searchBar #searchInputs input {
    padding: 14px;
	margin: 10px 10px 10px 0;
	width: 100%;
	border-radius: 8px;
	border: 1px solid #fff;
}

#greenHeader #searchBar #searchInputs .button {
	padding: 18px;
    margin: 10px 0 10px 0;
    border-radius: 8px;
    background-color: #000;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
    gap: 4px;
}

@media (max-width: 680px) {
	#greenHeader #searchBar #searchInputs {
	    flex-direction: column;
	}
}

@media (min-width: 680px) {
	#greenHeader #searchBar #searchInputs input#input_searchAreacode {
		max-width: 250px;
	}
}

/* Pro presentation */

#greenHeader #greenHeaderContainer {
	display: flex;
    margin: auto;
    position: relative;
    width: 100%;
    max-width: 1150px;
	padding-bottom: 50px;
}

#greenHeader #greenHeaderContainer #text {
    display: flex;
    flex-direction: column;
}

#greenHeader #greenHeaderContainer #text > span {
	max-width: 540px;
	display: inline-block;
	font-size: 130%;
	margin-top: 30px;
	margin-bottom: 30px;
	z-index: 10;
}

#greenHeader #greenHeaderContainer #text a button {
	max-width: 400px;
	width: auto;
	margin: 0;
	padding: 10px 20px;
	border-radius:100px;
}

#greenHeader #greenHeaderContainer img {
    max-height: 350px;
    position: absolute;
    bottom: 0;
    right: 50px;
}

@media (max-width: 920px) {
	#greenHeader #greenHeaderContainer #text span {
		font-size: 120%;
	}
	
	#greenHeader #greenHeaderContainer img {
		display: none;
	}
}

/* Other Elements */
.introBar {
	z-index: 1;
	border-radius: 8px;
	margin: 30px 0 0 0;
}

.introBar[white] {
	background-color: white;
}

.introBar[no-top-margin]{
	margin-top: 0;
}

.introBar .introBarRowBasic {
	display: flex;
	justify-content: center;
	align-items: center;  
	text-align: center;
	margin: auto;
	border-radius: 40px;
    box-shadow: 0 0 24px rgb(74 85 95 / 10%);
	transition: box-shadow 0.3s ease; /* Smooth transition for the shadow */
}

/* used in presentation pro - payments*/
.introBar .introBarRowBasic .columnsWithNotesBellow {
	display: flex;
	align-items: center;
}

.introBar .introBarRowBasic[green] {
	background: url(/core/gui/img/design/design_bgGreen.webp);
    background-size: 512px auto;
    background-repeat: repeat;
    background-color: #009b7c;
}

.introBar .introBarRowBasic[green] h2 {
	color: white;
	text-shadow: 1px 1px 1px rgb(0 0 0 / 40%);
}

.introBar .introBarRowBasic[white] {
	background-color: #fff;
}

.introBar .introBarRowBasic .column {
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

.introBar .introBarRowBasic .column-with-text p {
	font-size: 110%;
	line-height: 1.6;
	color: #444;
	margin: 20px 20px 0 20px;
}

@media (max-width: 800px) {
	.introBar .introBarRowBasic .column-with-text {
		padding: 40px 10px;
	}
	
	.introBar .introBarRowBasic .column > img,
	.introBar .introBarRowBasic[toreverseonmobile] .column > img {
		border-radius: 0 0 10px 10px !important;
	}
}

.introBar .introBarRowBasic .column a {
	text-align: -webkit-center; /* Center button link */
}

.introBar .introBarRowBasic .column img {
	border-radius: 0 8px 8px 0;
	width: 100%;
	height: 100%;
    align-self: center;  /* Aligns only the image horizontally */
}

.introBar .introBarRowBasic[toreverseonmobile] .column img {
	border-radius: 8px 0 0 8px;
}

.introBar .introBarRowBasic .column button {
	margin: auto;
	margin-top: 20px;
	max-width: 400px;
	border-radius: 100px;
}

.introBar .introBarRowIntro {
	display: flex;
	justify-content: center;
	align-items: center;  
	text-align: center;
	margin: auto;
	padding: 10px;
	background-color: #fff;
	border-radius: 8px;
	margin-top: 30px;
    box-shadow: 0 0 24px rgb(74 85 95 / 10%);
}

.introBar .introBarRowIntro .column {
	width: 100%;
	padding: 8px;
}

.introBar .introBarRowIntro .column img {
	border-radius: 8px;
	width: 100%;
}

.introBar .introBarRowIntro .column h1 {
	width: 100%;
	padding: 8px;
}

.introBar button {
	max-width: 800px;
}

.introBar .introBarRowBasic .column .highlight{
	background-color: rgba(245, 246, 248, 0.8);
    border-radius: 100px;
    margin: auto;
    padding: 8px;
    margin-top: 18px;
    width: 100%;
    box-sizing: border-box;
	max-width: 400px;
}

.introBar .introBarRowBasic .column .text{
    margin: 18px 0;
}

.introBar h1 {
	color: rgba(0, 0, 0, 0.80);
	text-align: center;
    font-size: 150%;
    font-weight: 600;
}

.introBar h2 {
    text-align: center;
    font-size: 120%;
    font-weight: 400;
}

.introBar .introBarRowBasic:hover {
    box-shadow: 0 0 24px rgb(74 85 95 / 30%); /* More visible shadow on hover */
}

/* used in presentation pro - payments*/
.introBar .notes {
    font-size: 90%;
    color: darkslategrey;
}

.introBarRowIcons {
	display: flex;
	flex-direction: column;
	text-align: center;
	max-width: 1220px;
	margin: auto;
}

.introBarRowIcons .columnList .column .highlight{
	background-color: #fff;
	box-shadow: 0 0 24px rgb(74 85 95 / 10%);
}

.introBarRowIcons[white] {
	background-color:#FFF;
	border-radius: 8px;
	box-shadow: 0 0 24px rgb(74 85 95 / 10%);
}

.introBarRowIcons[white] .columnList .column .highlight{
	background-color: #f5f6f8;
}

.introBarRowIcons .columnList {
	display: flex;
	flex-direction: row;
}

.introBarRowIcons .columnList .column h2 {
	font-weight: bold !important;
}

.introBarRowIcons .columnList .column {
	width: 100%;
	border-radius: 8px;
	padding: 20px 0 20px 0;
    box-sizing: border-box;
}

.introBarRowIcons .columnList .column[column2] {
	width: 100%;
	margin-left: 20px;
	margin-right: 20px;
}

.introBarRowIcons .columnList .column img {
	width: 80px;
	border-radius: 8px;
}

.introBarRowIcons[lightGreen] .columnList .column {
	background-color: #f2f4f7;
}

.introBarRowIcons .columnList .column .highlight{
	border-radius: 8px;
	max-width: 330px;
	margin: auto;
	padding: 4px 10px 4px 10px;
	margin-top: 10px !important; /* Required to rewrite button margin-top*/
}

.introBarRowIcons[lightGreen] .columnList .column .highlight{
	background-color: #fff;
}

@media (max-width: 800px) {
	.introBar .introBarRowBasic {
		flex-direction: column;
	}

	.introBar .introBarRowBasic[toReverseOnMobile] {
		flex-direction: column-reverse; /* Image must be under description, on mobile/small-screen view */
	}

	/* Handle .introBarRowBasic color */
	.introBar .introBarRowBasic {
		border-radius: 40px;
	}
	
	.introBar .introBarRowIntro {
		flex-direction: column;
		box-shadow: 0 0 0 0 #fff; /* remove shadow */
	}

	/* Handle .introBarRowBasic color */
	.introBar .introBarRowIntro[white] {
		background-color: rgba(0, 0,0, 0); /* remove background */
	}

	.introBar .introBarRowIntro .column {
		background: white;
		border-radius: 8px;
		box-shadow: 0 0 24px rgb(74 85 95 / 10%);
	}
	
	.introBar .introBarRowIntro .column:not(:first-child) {
		margin-top: 30px;
	}
	.introBarRowIcons .columnList {
		flex-direction: column;
	}

	.introBarRowIcons .columnList .column[column2] {
		margin-left: 0;
		margin-right: 0;
	}

	.introBarRowIcons .columnList .column[column3] {
	}
	
	/* used in presentation pro - payments*/
	.introBar .introBarRowBasic .columnsWithNotesBellow {
		display: block;
	}
}

.introBarSEO {
	display: flex;
	flex-direction: column;
	margin: auto;
	text-align: left;
	margin-top: 24px;
	border-radius: 8px;
	font-size: 90%;
	color: #464646;
}

.introBarSEO h2 {
	padding :0;
	margin: 0;
	text-align: left;
	font: 100% Baloo, Arial, Helvetica, sans-serif;
	margin : 8px 0 8px 0;
	font-weight:bold;
}

.introBarSEO p {
	text-align: justify;
	margin: 8px 0 8px 0;
}

/* / Intro elements */

.searchResult {
	display: flex;
	align-items: center;
	margin: auto;
	padding: 12px;
	background-color: #fff;
	color: #0d2339;
	border-radius: 8px;
	margin-top: 30px;
	box-shadow: 0 0 24px rgb(74 85 95 / 10%);
	transition: box-shadow 0.3s ease;
}

.searchResult button {
	border : 1px solid #000;
}

.searchResult:hover {
	box-shadow: 0 0 24px rgb(74 85 95 / 30%);
}

.searchResult:hover button {
	border : 1px solid #464646;
	background-color: rgba(0, 0, 0, 0.8);
	color: #fff;
}

.searchResult .userInformation {
	display: flex;
	width: 100%;
}

.searchResult .userInformation .avatar {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.searchResult .userInformation .avatar img {
	width: 80px;
	height: 80px;
	border-radius: 8px;
	/*box-shadow: 0 0 24px rgb(74 85 95 / 10%);*/
}

.searchResult .userInformation .description {
	margin-left: 20px;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.searchResult .userReservation {
	min-width: 200px;
}

.searchResult .userReservation button {
	border-radius: 8px;
}

.searchResult .userReservation .undefinedHours {
	border-radius: 8px;
	padding: 10px;
	background-color: #f2f2f2;
	text-align: center;
}

.searchResultEmpty {
    padding: 10px;
    text-align: center;
    margin-top: 30px;
}

.searchResultAd {
	text-align: center;
	background-color: #FFF;
	margin-top: 30px; 
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0 0 24px rgb(74 85 95 / 10%);
}

.searchResultAd button {
	border-radius:10px;
}

@media (max-width: 680px) {
	.searchResult {
		flex-direction: column;
	}

	.searchResult .userReservation {
		width: 100%;
	}

	.searchResult .userReservation button {
		margin-top: 10px;
	}
	
	.searchResult .userReservation .undefinedHours {
		margin-top: 10px;
	}
}

.blinkShadow {
    animation: blinkShadow 1.0s linear infinite;
}

#notification_goToPaidViewUsageContent {
	text-align: center;
	margin-bottom: 10px;
	margin-top: 10px;
	box-shadow: 0 0 24px rgb(74 85 95 / 10%);
	background-color: white;
	border-radius: 8px;
	padding : 0 10px 0 10px;
	color: #000;
}

.goTo {
	cursor: pointer;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	padding: 10px;
	margin: auto;
	margin-top: 24px;
	font-size: 190%;
	color: rgba(0, 0, 0, 0.70);
	background-color: rgba(255, 255, 255, .7);
	text-align: center;
	box-shadow: 0 0 24px rgb(74 85 95 / 10%);
}

#supportContainer {
    position: fixed;
    bottom: 14px;
    right: 14px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Chat icon button */
#supportButton {
    width: 52px;
    height: 52px;
    background-color: #009b7d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(13, 161, 146, 0.25);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

#supportButton img {
	width: 34px;
	height: 34px;
	margin: 14px;
}

#supportButton:hover {
    transform: scale(1.1);
    box-shadow: 0 14px 32px rgba(13, 161, 146, 0.35);
}

/* Text button (mobile only) */
#supportTextMobile {
    background: #000;
    color: #fff;
    border-radius: 26px;
    padding: 12px 18px;
    font-size: 90%;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    white-space: nowrap;

    /* always render but invisible unless active */
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    visibility: hidden;
}

@media (max-width: 767px) {
    #supportTextMobile.show {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }
}

/* Used to display loading message in proPublic page */
.fadeInElement {
	animation: fadeIn 1s;
}

.fadedElement {
	filter: blur(4px);
}

.unfadeElement {
	animation-name: Unfade;
	animation-duration: 0.3s;
	transition-timing-function: linear;
}

/* Used by reservation payment icon */
.blinkingElement {
	animation: blinker 1.5s linear infinite;
}

@keyframes Unfade {
	0% {filter: blur(4px);}
	100% {filter: blur(0px);}
}

@keyframes fadeIn {
	0% {opacity:0;}
	100% {opacity:1;}
}

@keyframes blinker {
	50% {opacity: 0;}
}

#pageShareLink {
	display: flex;
}

#pageShareLinkButton {
	display: flex;
    align-items: center;
    margin-top: 10px;
    font-size: 90%;
}

/* Width : 0 - 680px */
@media (max-width: 680px) {
	#pageShareLinkButton {
		width: 100%;
		text-align: center;
	}
}

#pageShareLinkButton img {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	padding: 8px;
	width: 14px;
	height: 14px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 0 24px rgb(74 85 95 / 10%);
}

#trialBypassMessage {
	background-color: #f5f6f8;
	border-radius: 8px;
	padding: 0px 16px 16px 16px;
	margin: 10px;
}

#trialBypassMessage button {
	width: 100%;
}

#media-list {
	display: flex;
    flex-direction:column;
	flex-wrap: nowrap;
	align-items: center;
    justify-content: center;
	overflow: hidden;
    background-color: black;
    padding-bottom: 30px;
    margin-top: 30px;
}

#media-list h2{
	font-size: 120%;
	padding-top: 40px;
    font-weight: 400;
    color: grey;
}

#media-list #listing {
	display: flex;
    flex-direction:row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

#media-list #listing .logo{
	max-height: 100px;
    max-width: 230px;
	margin: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
	opacity: 0.8;
	filter: grayscale(100%);
	user-drag: none; /* Prevents image drag */
	user-select: none; /* Prevents text selection */
	-webkit-user-drag: none; /* Prevents image drag on WebKit browsers */
	-webkit-user-select: none; /* Prevents text selection on WebKit browsers */
	-moz-user-select: none; /* Prevents text selection on Firefox */
	-ms-user-select: none; /* Prevents text selection on old IE versions */
}

#media-list #listing .logo:hover {
    transform: scale(1.1);
    opacity: 1;
    filter: none;
}

@media (max-width: 900px) { /* Adjust breakpoint as needed */
	#media-list #listing {
		flex-wrap: wrap;
		justify-content: center;
	}

	#media-list #listing .logo {
		flex: 1 1 50%; /* Makes sure two logos fit per row */
		max-width: 35%;
		display: flex;
		justify-content: center;
	}
}

#userPremium-list {
	font-family: 'Exo2';
	display: flex;
	align-items: center;
    justify-content: center;
	flex-wrap: wrap;
	padding-bottom: 20px;
}

#userPremium-list .logo{
    max-width: 100px;
	margin: 30px 30px 10px 30px;
    transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
	height: auto;
	display: block;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	flex: 1 1 50%; /* Makes sure two logos fit per row */
	display: flex;
	justify-content: center;
}

#userPremium-list .logo:hover {
	transform: scale(1.1);
}

#userPremium-list .user-item {
	text-align: center;
}

#userPremium-list .username {
	font-size: 14px;
	color: #158c71;
	white-space: nowrap;
	margin: auto;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 130px;
}

#userPremium-list .useractivity {
	color: lightslategray;
	font-size: 14px;
	white-space: nowrap;
	min-height: 24px; /* ensures space is always reserved */
	margin: auto;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 130px;      /* or whatever width makes sense */
}

@media only screen and (min-width: 680px) {
    .mobile-only {
        display: none;
    }
}

#faq-extract-bg {
    background: linear-gradient(to bottom, #ffffff, #f5f7fa, #eef2f7);
    width: 100%;
    padding: 1px 10px 0 10px;
    box-sizing: border-box;
}

#faq-extract {
	max-width: 900px;
	margin: auto;
}

#faq-extract:not(:first-child) {
    margin-top: 30px;
}

#faq-extract > h2 {
	text-align: left;
    font-size: 120%;
    font-weight: 400;
}

#faq-extract .accordion-item {
	border: 0;
	box-shadow: 0 0 24px rgb(74 85 95 / 10%);
	margin-top: 20px;
}

#faq-extract .accordion-button {
	font-family: 'Exo2';
    font-style: italic;
    padding: 26px 30px;
}

#faq-extract .accordion-body p {
	margin-top: 0;
}

#faq-extract .accordion-body p:last-child {
    margin-bottom: 0;
}


/*
/* Pro pricing page
*/

.pricing-container {
    display: grid;
    gap: 30px;
    padding-top: 100px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid layout */
    justify-content: center; /* Center items if there’s extra space */
}

.pricing-container .pricing-card {
}

@media (min-width: 1000px) {
	.pricing-container .pricing-description {
	    min-height: 80px;
	}
}

@media (max-width: 1000px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr); /* Two cards per row */
    }
    

}

@media (max-width: 600px) {
    .pricing-container {
        grid-template-columns: 1fr; /* One card per row */
    }
}

.pricing-container .pricing-card .pricing-header {
	border-top-right-radius: 20px;
	border-top-left-radius: 20px;
	text-align: center;
	padding: 10px;
}

.pricing-container .pricing-card .pricing-content {
	padding: 10px;
	box-shadow: 0 0 24px rgb(74 85 95 / 10%);
	background-color: #FFF;
	border-radius: 0 0 8px 8px;
}

.pricing-container .pricing-title {
	font-size: 1.5em;
	margin-bottom: 10px;
	color: #333;
}

.pricing-container .pricing-description {
    font-size: 90%;
}

.price-container {
	position: relative;
	display: inline-block;
	font-family: Arial, sans-serif;
	display: flex;
	width: 100%;
}

.price-container .price {
	font-size: 3rem; /* Taille du prix */
	font-weight: bold;
	display: inline-block;
}

.price-container .price-elements {
	display: flex;
	flex-direction: column;
	margin-left: 2px;
}

.price-container .price-elements .currency {
	position: relative;
	top: 0.4rem;
	right: 0;
	font-size: 1.2rem; /* Petite taille pour le symbole € */
}

.price-container .price-elements .period {
	position: relative;
	bottom: -0.5rem;
	right: 0;
	font-size: 0.9rem; /* Petite taille pour "/mois" */
	color: grey;
}

.pricing-container .subscribe-button {
	display: flex;
	padding: 10px 20px;
	color: #fff;
	border-radius: 100px !important;
	width: 100%;
	box-sizing: border-box;
	margin-top: 10px;
}

.pricing-container  #color1 .pricing-header,
.pricing-container  #color1 .subscribe-button {
	background-color: #000; /* Darker charcoal for a more refined, luxurious feel */
	color: #fff; /* Lighter gray for a soft yet sophisticated contrast */
}

.pricing-container #color2 .pricing-header,
.pricing-container #color2 .subscribe-button {
	background-color: #add7f0; /* Muted pastel blue with a bit more vibrancy for a fresh, modern look */
	color: #014F86; /* Rich navy blue for a deeper, more professional contrast */
}

.pricing-container #color3 .pricing-header,
.pricing-container #color3 .subscribe-button {
	background-color: #ffd098; /* Warm, subtle amber for a refined, yet inviting look */
	color: #7A4A1D; /* Dark amber-brown for a grounded, elegant touch */
}

.pricing-container #color4 .pricing-header,
.pricing-container #color4 .subscribe-button {
	background-color: #75dec0; /* Sophisticated lavender with more intensity for a rich, modern appeal */
	color: #135642; /* Deep purple for a strong, yet elegant contrast */
}

.pricing-container .price-info {
	font-size: 90%;
}

.signup-info-container {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap if they exceed max width */
    gap: 10px 20px; /* Adds space between items */
    max-width: 1150px; /* Adjust the max width as needed */
    margin: 20px auto; /* Centers the container and adds a top margin */
    justify-content: center; /* Centers the items horizontally */
}

 .signup-info-container div {
    text-align: center;
}

.pricing-container  .toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 25px;
    max-width: 250px;
    margin-bottom: 4px;
}

.pricing-container  .toggle-option {
    cursor: pointer;
    color: #444;
    transition: color 0.3s ease;
	flex: 1;
	text-align: center;
	border-radius: 20px;
	cursor: pointer;
	transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.pricing-container .toggle-option.active {
	background: #007bff;
	color: white;
}


.pricing-container .toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.pricing-container .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-container .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 20px;
}

.pricing-container .slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.pricing-container input:checked + .slider {
    background-color: #007bff;
}

.pricing-container input:checked + .slider:before {
    transform: translateX(20px);
}

#usage-container {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    font-family: 'Arial', sans-serif;
}

.usage-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.usage-header p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.usage-bar {
    width: 100%;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.usage-fill {
    height: 100%;
    background: linear-gradient(to right, #76c7c0, #34a79f);
    transition: width 0.5s ease-in-out;
}

.usage-percentage {
    text-align: right;
    font-size: 14px;
    color: #777;
    margin-top: 5px;
}

#proSignUpSection {
	background: url(/core/gui/img/design/design_bgGreen.webp);
	padding: 30px 10px;
	background-size: 512px auto;
	background-repeat: repeat;
	background-color: #009b7d;
	animation: gradient 18s ease infinite, bgScroll 60s linear infinite;
}

#proSignUpSection h2 {
	font-style: italic;
    text-shadow: 1px 1px 1px rgb(0 0 0 / 40%);
    font-size: 120%;
    font-weight: 400;
    text-align:center;
    padding-right: 4px;
    margin-bottom:30px;
    color: #fff;
}