*{
	font-family:"proxima-nova", sans-serif;
	color:white;
}
body {
    background: #1d384a;
}

#content {
    max-width: 768px;
    width: 100%;
    margin: 50px auto 0;
    padding: 3% 3%;
}
h1, h2, h3, h4, h5, h6 {
	text-align:center;
	margin-bottom:20px;
}
h1{
	font-size:39px;
}
h2{
	font-size:28px;
}
h2 span {
    font-size: 0.6em;
    display: block;
    margin-top: -6px;
}
.accueil p{
	font-size:21px;
}
p{
	font-size:16px;
}

label {
    display: block;
    color: #82cfc2;
    padding: 5px;
}
label span[class^="icon-"]{
	color: #82cfc2;
}
input {
    width: 100%;
    border: 1px solid #3c596c;
    border-radius: 60px;
    margin-bottom: 20px;
    padding: 8px 25px;
	outline:none;
}
input:focus {
    border-color:white;
}
input.invalid{
    border-color: red;
}
button{
	cursor:pointer;
}
.bulle-title {
    background-color: #00B4B3;
    color: white;
    width: 15%;
	min-width: 84px;
    aspect-ratio: 1;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
	margin: 0 auto 30px;
}
.bulle-title span {
	font-size:60px;
}
.suivant, .ajouter {
    display: flex;
	justify-content:center;
}
.suivant span[class^="icon-"], .ajouter span[class^="icon-"] {
    font-size: 25px;
	border-radius: 50%;
	border: 1px solid white;
	width: fit-content;
    padding: 5px;
	transition: ease-in-out rotate 0.5s, ease-in-out font-size 0.5s;
}
.suivant:hover span, .ajouter:hover span {
    rotate :360deg;
	font-size:30px;
}
#footer button:not(.suivant),#footer a:not(.suivant) {
    color: #495E72;
    border-bottom: 2px solid #495E72;
}
#footer .suivant{
	text-align:center;
}
#footer{
	display:flex;
	max-width: 768px;
    width: 100%;
    margin: 10px auto 50px;
    padding: 10px 3%;
	align-items: center;
}
#footer div{
	flex:1;
}
#footer div:nth-child(3){
	text-align:right;
}
.employe-wrap {
    text-align: center;
    margin: 10px 0 30px;
}
.employe-image {
    width:60px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
	background-color: #495e72;
	
}
.mini-bulle-wrapper .employe-image{
	box-shadow: 1px 5px 11px rgba(0, 0, 0, 0.3);
}
.employe-image .icon-profil {
    font-size: 30px;
}
.employe-actions {
    position: relative;
    width: 60px;
    margin: 0 auto 10px;
}
.modifier, .supprimer {
    position: absolute;
    top: 15px;
    font-size: 30px;
}
.modifier {
    left: 100px;
}
.supprimer {
    left: 150px;
}
.employe-actions.photo {
    margin: 10px 0;
}
.employe-actions.photo .supprimer {
    left: 80px;
}
label.telecharger-image {
    border: 1px dashed #3c596c;
    border-radius: 23px;
	text-align: center;
}
label.telecharger-image span{
	display:block;
	padding:30px;
	cursor:pointer;
	font-size:32px;
	transition:ease-in-out 0.5s
}
label.telecharger-image:hover span{
	rotate :360deg;
}
.preview{
	display:flex;
	align-items:center;
	gap: 10px;
    margin-top: 10px;
}
.preview img {
    width: 60px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
}
/* reset de la flèche native */
.select-wrap select {
  /*-webkit-appearance: none;
  appearance: none;*/
  background: transparent;
  border: none;
  border-bottom: 1px solid #3c596c;
  width: 100%;
  padding: 8px 48px 8px 25px; /* place pour la bulle à droite */
  margin-bottom: 20px;
  color: #fff; /* adapte à ton thème */
  font-size: 1.3em;
}
select::-ms-expand { display: none; } /* vieux Edge/IE */

/* conteneur et bulle */
.select-wrap {
  position: relative;
  overflow: visible; /* par sécurité */
}

.select-bubble {
    position: absolute;
    right: 10px;
    top: 45px;
    background-color: #1d384a;
    width: 40px;
    height: 40px;
    border: 1px solid #3c596c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
	cursor:pointer;
}
select:focus, select:focus-visible {
	border:none;
	border-bottom:1px solid #3c596c;
}
select{
	outline:none;
}
option{
	background: #374B5E;
	color: white;
	padding:8px 25px;
}
option span{
	color:rgba(255,255,255,0.5);
	/*font-size: 1.3em;*/
}
a.ajoutercat {
    padding: 8px 25px;
    display: block;
	color:rgba(255,255,255,0.5);
	background: #374B5E;
	font-size: 0.7em;
}
.ajoutercat .icon-plus {
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 7px;
}
option:not(:last-child){
	border-bottom:1px solid #1d384a;
}
option:checked, option:hover, .ajoutercat:hover{
	background: #495E72;
	/*text-decoration:underline;*/
}
option:checked span, option:hover span, .ajoutercat:hover{
	color:rgba(255,255,255,1);
}
option::checkmark{
	display:none
}
	
select, select::picker(select){
	appearance:base-select;
	cursor:pointer;
}
select::picker-icon{
	display:none;
}
/* Style du panneau déroulant */
select::picker(select) {
  border: none;
  outline: none;
  background: #495E72;
  border-radius: 25px;
  color: white;
  /*padding: 8px 25px;*/
  border: none;
  margin-top:10px;
  top: anchor(bottom);
  left:anchor(left);
}

/* Option survolée */
select::picker(option:hover) {
  background: #5D768C;
}

/* Option sélectionnée */
select::picker(option:checked) {
  background: #82CBE3;
  color: #000;
}
	
.popup-wrap {
    position: fixed;
    display: flex;
    z-index: 9999;
}
.popup-box {
	background: white;
	color:#1d384a;
	padding: 30px 20px;
	border-radius: 25px;
	position: relative;
	max-width: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease;
}
.popup-box p, .popup-box span {
	color:#1d384a;
}
.popup-box p {
    font-size:16px;
}
/* Croix de fermeture */
.popup-box .icon-croix {
	position: absolute;
	top: 8px;
	right: 12px;
	font-size: 28px;
	cursor: pointer;
}

/* Contenu */
.popup-content {
    text-align: center;
}

/* Animation */
@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.9);}
    to {opacity: 1; transform: scale(1);}
}
/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 300px;
  background-color: #82cfc2;
  color: #1d384a;
  text-align: left;
  padding: 8px 20px;
  border-radius: 12px;
  top: 100%;
  left: 0;
  margin-left: ; /* Use half of the width (120/2 = 60), to center the tooltip */
  position: absolute;
  z-index: 1;
  font-size:13px;
  opacity:0;
  transition: all 0.3s ease-in-out;
  
  
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity:1;
}
button.bulle {
    border: 1px solid white;
    height: 30px;
    border-radius: 50%;
    font-size: 26px;
    line-height: 32px;
    flex: 0 0 30px;
}
.jour {
    display: flex;
    align-items: center;
    justify-content: flex-start;
	gap: 1vw;
}
.jour input{
	margin:0;
    width: 80px;
    padding: 8px 1vw;
	transition: width 0.3s ease-in-out;
    text-align: center;

}
/*
.jour input:not(.visible) {
    width: 0;
    padding: 0;
}
.jour input:not(.visible):not(.flatpickr-input) {
    width: 0;
    padding: 0;
}
    */
.jour label {
    flex: 0 0 80px;
}
.jour p{
	font-size:16px;
}
.jour input[type="time"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}
.jour input[type="time"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
/* Masquer aussi sur Firefox */
.jour input[type="time"]::-moz-focus-inner {
  border: 0;
}
.jour input[type="time"]::-moz-calendar-picker-indicator {
  display: none;
}
.jour.hidden input {
    display: none;
}
.horaires {
    width: 350px;
    margin: auto;
}
.horaires-employe {
    width: fit-content;
    margin: auto;
	max-width:100%;
}
.mini-bulle-wrapper {
    position: relative;
	margin-top: -72px;
	height: 80px;
	margin-bottom: 40px;
}
.mini-bulle-wrap-up {
    position: absolute;
    left: 50%;
    top: 0;
    padding: 10px;
}
.mini-bulle-wrap-pre-inner > div, .mini-bulle-wrap-post-inner > div {
    width: 40px;
	height: 40px;
	flex: 0 0 40px;
}
.mini-bulle-wrap-pre-inner, .mini-bulle-wrap-post-inner {
	flex:none;
	flex-wrap:nowrap;
    display: flex;
    gap: 5px;
	width: max-content;         /* ← clé pour s’étirer selon les enfants */
  min-width: max-content; 
	
}
.mini-bulle-wrap-pre, .mini-bulle-wrap-post {
	position: absolute;
	bottom: -30px;
    overflow: hidden;
    padding: 30px 0;
	display:flex;
}

.mini-bulle-wrap-pre {
    width: 50%;
	justify-content:flex-end;
}
.mini-bulle-wrap-post {
    width: calc(50% - 80px);
	left: calc(50% + 80px);
}
.mini-bulle-wrap-pre-inner {
    justify-content: flex-end;
}
.mini-bulle-wrap-post-inner {
	justify-content: flex-start;
}

.mini-bulle-wrap-pre.ouvert, .mini-bulle-wrap-post.ouvert {
	top: 10px;
    overflow: visible;
}
.ouvert #cache-droite, .ouvert #cache-gauche {
    bottom: 0;
    top: auto;
    right: 10px;
	left:auto;
}
.mini-bulle-wrap-pre:not(.ouvert) #cache-gauche span, .mini-bulle-wrap-post:not(.ouvert) #cache-droite span {
	display:none;
}
.mini-bulle-wrap-pre.ouvert .mini-bulle-wrap-pre-inner, .mini-bulle-wrap-post.ouvert .mini-bulle-wrap-post-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
	flex-wrap: wrap;
	width: 100%;
    min-width: 100%;
}
#cache-droite, #cache-gauche{
	transition: all 0.3s ease-in-out;;
}
.ouvert #cache-droite img, .ouvert #cache-gauche img {
    display: none;
}
#cache-gauche, #cache-droite {
    position: absolute;
	z-index: 200;
}
#cache-gauche img {
    transform: rotate(180deg);
}
#cache-gauche {
    top: 0;
    left: -30px;
}
#cache-droite {
    top: 0;
    right: -20px;
}
.ouvert #cache-droite span, .ouvert #cache-gauche span {
    padding: 6px;
    border: 1px solid white;
    border-radius: 50%;
}
.mini-bulle.entreprise {
    width: 60px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
	background-color: #00b4b3;
	font-size:40px;
}
.mini-bulle.entreprise span {
    line-height: 60px;
}
.mini-bulle-wrap-pre .mini-bulle.entreprise span{
	line-height:40px;
	font-size: 30px;
}
.mini-bulle a {
    display: flex;
    align-items: center;
    justify-content: center;
	height: 40px;
}
.mini-bulle-wrap-up a {
    height: 60px;
}
.mini-bulle-wrap-up a p {
    font-size: 18px;
}
.mini-bulle-wrap-up .mini-bulle{
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.mini-bulle{
	display:inline-block;
	/*margin-right:5px;*/
	vertical-align:middle;
	text-align:center;
}
.mini-bulle-wrap-up .employe-image p {
    line-height: 60px;
}
.employe-image p {
    line-height: 40px!important;
}
.ouvert .mini-bulle.entreprise, .ouvert .mini-bulle.employe-image {
    flex: 0 1 40px;
	display: flex;
    align-items: center;
    justify-content: center;
}
#cache-droite, #cache-gauche {
	cursor:pointer;
}
.mini-bulle a:hover * {
    transform:scale(1.2);
}
.mini-bulle p, .mini-bulle img, .mini-bulle span{
transition:0.3s ease-in-out;
}
.mini-bulle-wrap-pre .mini-bulle a  {
    opacity: 0.5;
}
.mini-bulle-wrap-pre .mini-bulle a:hover {
    opacity: 1;
}



.erreur {
    color: #F26722;
}
.pause-label span {
    display: block;
    font-size: 12px;
    line-height: 10px;
}
.pause-wrapper.visible {
    display: flex;
    align-items: center;
    justify-content: flex-start;
	gap: 10px;
}
.pause-wrapper:not(.visible){
	display:none;
}
.pause-input-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5vw;
    background: #495E72;
    border-radius: 60px;
    padding: 8px 0;
}
.pause-input-wrapper button {
    padding: 0 1vw;
}
.pause-qty {
    width: 5vw;
    text-align: center;
    border: 0;
    padding: 0 !important;
}
.pause-qty::-webkit-inner-spin-button,
.pause-qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.pause-qty {
  -moz-appearance: textfield;
}
.jour.hidden .pause-wrapper {
    display:none;
}
.jour:not(.hidden) .bulle.add {
    display:none;
}
.jour.hidden .bulle.remove {
    display:none;
}

@media screen and (max-width:999px){
	.jour {
		font-size: 0.8em;
	}
	.jour label {
		flex: 0 0 60px;
	}
}
@media screen and (min-width:1000px){
	.pause-qty {
		width: 30px;
	}
	.pause-input-wrapper button {
		padding: 0 10px;
	}
	.pause-input-wrapper {
		gap: 5px;
	}
}

/*produits*/
.groupe-marque {
    display: flex;
    flex-wrap: wrap;
}
.checkbox-group {
    display: contents;
}
.checkbox-input {
	clip: rect(0 0 0 0);
	clip-path: inset(100%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;

	&:checked + .checkbox-tile {
		border-color: #fff;
		color: #fff;
		
		.checkbox-label {
			color: #fff;
		}
	}
	
}
label.checkbox-wrapper {
    display: contents;
}
.checkbox-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 60px;
	border: 1px solid #3c596c;
	background-color: transparent;
	transition: 0.15s ease;
	cursor: pointer;
	position: relative;
	margin: 4px;
	&:hover {
		border-color: white;
	}
	
}
.checkbox-label {
	color: #3c596c;
	transition: .375s ease;
	text-align: center;
	padding:8px 15px;
}
.datainputs input {
    font-size: 16px;
    color: white;
    padding: 0;
    border: 0;
    margin: 0;
    height: fit-content;
    width: fit-content;
}
.required_inp {
    border: 1px solid #fff;
    border-radius: 60px;
    padding: 8px 15px;
    display: flex;
    width: fit-content;
	margin: 4px;
}
.add_input {
    font-size: 28px;
    border: 1px solid #3c596c;
    border-radius: 60px;
    line-height: 40px;
    height: 40px;
    width: 40px;
    display: flex;
    color: #3c596c;
    align-items: center;
    justify-content: center;
	margin:4px;
}
.add_input span{
	 color: #3c596c;
}
.inputRemove{
cursor:pointer;
}
span.input-marque {
    min-width: 60px;
}
span.input-marque:focus {
    outline: none;
}
.datainputs {
    display: contents;
}
.datainputs-wrap {
    display: flex;
    flex-wrap: wrap;
}


/*categories*/
.ajout-cat {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border: 1px solid white;
    border-radius: 50%;
    margin: 30px auto;
    font-size: 24px;
}
.categories-wrap {
    margin-top: 30px;
}
.categorie-tile {
    display: flex;
    align-items: center;
    justify-content: flex-start;
	gap: 8px;
	border: 1px solid transparent;
    border-radius: 60px;
}
.select-image-trigger {
    flex: 0 0 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    cursor: pointer;
    margin-left: 5px;
}
.has-image .select-image-trigger {
    border-radius: 50%;
    overflow: hidden;
}
.categorie-wrap input {
    margin: 0;
    border: none;
}
.categorie-wrap {
    margin-bottom: 24px;
}
.categorie-wrap .inputRemove {
    flex: 0 0 40px;
    height: 40px;
}
.select-cat-image {
    background: white;
    border-radius: 22px;
    margin-top: 8px;
    padding: 8px;
	max-width: 461px;
}
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: flex-start;
}
.radio-input {
	clip: rect(0 0 0 0);
	clip-path: inset(100%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;	

	&:checked + .radio-tile {
		border: 3px solid rgba(0, 180, 179, 0.3);
		
		.radio-label {
			color: #fff;
		}
	}
	
}

.radio-tile {
    display: block;
    height: 40px;
    width: 40px;
    overflow: hidden;
    border-radius: 50%;
}
label.radio-wrapper {
    padding: 0;
	cursor:pointer;
}
.categorie-wrap.has-image img.selected-thumb {
    display: block !important;
}
.categorie-wrap.has-image span.icon-ajout-image {
    display: none !important;
}
.categorie-wrap.has-image > *{
	transition:all 0.3x ease-in-out;
}
li.cat-suggest-item {
    background: #3c596c;
    border-radius: 30px;
    padding: 5px 15px;
    margin: 5px 40px;
}
.categorie-tile:has(.cat-name-input:focus) {
  border: 1px solid white;
      justify-content: space-between;
}
.categorie-tile:has(.cat-name-input:focus) input{
	/*permet d'attribuer du style à la box quand l'input est focus*/
}

/*creneau*/
.creneau-tile input {
	clip: rect(0 0 0 0);
	clip-path: inset(100%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;		
}
.creneau-tile:has(> input:checked){
	border-color:white;
}
.creneau-tile{
	cursor: pointer;
}
.creneau-wrap {
	margin:60px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
}
.creneau-tile {
    padding: 0;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid #3c596c;
}
.creneau-name {
    padding: 15px 15px;
    text-align: center;
    color: #fff;
    display: block;
}
.creneau-name  span {
    font-size: 22px;
}
.creneau-name span.sous-phrase {
    font-size: 14px;
}
.creneau-image img {
    scale: 1.05;
	transition:scale 0.3s ease-in-out;
}
.creneau-tile:hover img, .creneau-tile:has(> input:checked) img{
	scale: 1.1;
}
/*Portes services*/
.portes-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
	margin:60px 0;
}
.portes-tile {
    padding: 0;
    border-radius: 30px;
    border: 2px solid #3c596c;
	flex: auto;
}
.portes-icon {
    text-align: center;
    margin-top: -40px;
}
.portes-icon span {
    background: #00B4B3;
    aspect-ratio: 1;
    font-size: 45px;
    padding: 15px;
    display: inline-block;
    border-radius: 50%;
}
.portes-image img {
    max-width: 210px;
	transition:scale 0.3s ease-in-out;
}
.portes-image {
    overflow: hidden;
    margin: 20px 0 0 0;
}
.portes-name {
    text-align: center;
    padding: 30px 15px;
    font-size: 32px;
}
.portes-tile:hover img{
	scale:1.1;
}
/*Forfaits liste*/
#forfaits {
    margin: 60px 0;
}
.categorie-label {
    color: #82cfc2;
	margin-bottom: 15px;
}
.forfait-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #3c596c;
    border-radius: 30px;
    margin-bottom: 20px;
    padding: 0 15px;
	    gap: 5px;
}
.forfait-name a, .forfait-price a { 
	padding: 12px 0;
}
.forfait-name span{
    align-content: center;
}
.forfait-name {
    display: flex;
    flex: 0 0 58%;
    cursor: move;
    user-select: none;
}
.forfait-price {
    text-align: center;
	flex: auto;
}
.forfait-price a {
    color: #7690a1;
}
.forfait-action {
    flex: 0 0 40px;
    text-align: center;
    vertical-align: middle;
}
.forfait-action span {
    line-height: 40px;
    font-size: 24px;
    cursor: pointer;
}
.draggable.dragging {
    opacity: .5;
}  
.switch {
    position: relative;
    width: 60px;
    height: 30px;
    -webkit-appearance: none;
    background: #222c32;
    outline: none;
    border-radius: 20px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    transition: 0.7s;
	border:none;
}

.switch:checked[type="checkbox"] {
  background: #00B4B3;
}

.switch[type="checkbox"]:before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 20px;
  top: 0;
  left: 0;
  background: #3c596c;
  transform: scale(1.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: .5s;
  cursor:pointer;
}

.switch:checked[type="checkbox"]:before {
  left: 30px;
  background: #fff;
}
.forfait-table th {
    color: #82cfc2;
    font-weight: normal;
    font-size: 0.9em;
}
.forfait-table th:first-child {
    text-align: left;
    padding-left: 11px;
}
.forfait-table input{
	margin:0;
}
.forfait-table td{
	padding:2px;
}
.time-btn {
  padding: .25rem .5rem;
  line-height: 1;
  cursor: pointer;
}
.time-qty {
  width: 3ch; 
  text-align: center;
  border:none;
  padding:8px 0;
}
.time-wrapper {
	display: flex;
    align-items: center;
    gap: .5rem;
    background: #3c596c;
    border-radius: 60px;
}
.time-qty::-webkit-inner-spin-button,
.time-qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.forfait-table td:nth-child(4) input::-webkit-inner-spin-button,
.forfait-table td:nth-child(4) input::webkit-outer-spin-button{
	-webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.forfait-table td:nth-child(4) input{
	padding:8px;
	text-align:center;
}
	
.forfait-table td:nth-child(4) > *, .forfait-table td:nth-child(2) > *, .forfait-table td:nth-child(3) > * {
    width: 97px;
}
.forfait-table td:nth-child(4)input{
	padding:8px 4px;
}
.forfait-table td:first-child{
	width:100%;
}
.forfait-table td {
    padding: 2px;
}
.forfait-table td > button {
    height: 30px;
    width: 30px;
}
.forfait-table .icon-poubelle {
    font-size: 26px;
}
.forfait-table tfoot td:nth-child(2), .forfait-table tfoot td:nth-child(3){
	padding:13px;
}
.forfait-table .temps, .forfait-table .prix {
    width: 100% !important;
	text-align:center;
	border-top: 2px solid #3c596c;
}
.forfait-table .temps .title, .forfait-table .prix .title {
    display: none;
}
.forfait-table tfoot span{
	color:#82cfc2;
}
.remises-liste{
	margin:60px 0;
}
.remise-wrap{
	display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #3c596c;
    border-radius: 30px;
    margin-bottom: 20px;
    padding: 0 15px;
    gap: 5px;
}
.remise-name{
	flex: 0 0 58%;
}
.remise-price{
	text-align: center;
    flex: auto;
}
.remise-name a, .remise-price a {
    padding: 12px 0;
    display: block;
}
.remise-action{
	flex: 0 0 40px;
    text-align: center;
    vertical-align: middle;
}
.remise-action span {
    line-height: 40px;
    font-size: 24px;
}
.remise-price a {
    color: #7690a1;
}
/*remise création*/
.remise-creation-wrap input {
    margin-bottom: 0;
}
.remise-creation-wrap > div {
    margin-bottom: 25px;
}
.remise-creation-wrap > div > label {
    margin-bottom: 6px;
}
.type input {
	clip: rect(0 0 0 0);
	clip-path: inset(100%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;		
}
.type-wrap {
    display: flex;
    background: #3c596c;
    width: fit-content;
    border-radius: 60px;
    padding: 3px;
	gap:15px
}
.type {
    position: relative;
	padding:0;
	cursor:pointer;
}
.type .bulle {
    width: 40px;
    height: 40px;
    display: block;
	background-color:white;
	opacity:0;
	position: absolute;
	border-radius:50%;
	transition:left 0.3s ease-in-out;
}
.type .symbol {
    z-index: 500;
    position: inherit;
    width: 40px;
    height: 40px;
    display: block;
    text-align: center;
    font-size: 26px;
    line-height: 40px;
	color:#1d384a;
	transition:color 0.2s ease-in-out;
}
.type.pourcent .bulle {
    top: 0;
    left: 40px;
}
.type.montant .bulle {
    top: 0;
    left: -40px;
}
.type:has(> input:checked){
	
}
.type:has(> input:checked) .bulle{
	opacity:1;
	top: 0;
    left: 0;
	transition:left 0.2s ease-in-out;
}
.type:has(> input:checked) .symbol{
	color:#00B4B3;
}
.montant-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.remise-montant-wrap input::-webkit-outer-spin-button,
.remise-montant-wrap input::-webkit-inner-spin-button, 
.services input::-webkit-outer-spin-button,
.services input::-webkit-inner-spin-button,  {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

.remise-montant-wrap input[type=number], .services input[type=number]{
    -moz-appearance:textfield; /* Firefox */
}
.montant-wrap input {
    margin: 0;
    padding: 8px;
    flex: 0 0 100px;
	text-align:center;
}
span.type-display {
    font-size: 26px;
}
.destination-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}
.destination input {
	clip: rect(0 0 0 0);
	clip-path: inset(100%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;		
}

.destination{
	border:1px solid #3c596c;
	border-radius: 60px;
    padding: 8px 15px;
}
.destination:has(> input:checked) {
	border:2px solid white;
}
/*page résumé*/
.list-resume {
    max-width: 400px;
    margin: 40px auto 0;
}
.resume-wrap {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
	align-items: center;
}
.etape-nom {
    flex: 0 0 60%;
}
.resume-wrap > div {
    padding: 8px;
}
.etape-compte {
    text-align: right;
    flex: 0 0 calc(100% - 60% - 40px - 16px);
}
.etape-compte a{
	color:#82cfc2;
}
.etape-action a span {
    font-size: 26px;
    line-height: 26px;
}
.suivant.wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}
.suivant.wrap .texte {
    font-size: 26px;
}
.aide p {
    color: #667687;
}
.aide > p:first-child {
    font-size: 20px;
    margin-top: 40px;
}
/*bravo*/
.bravo p {
    text-align: center;
}
#footer.bravo {
    position: fixed;
    bottom: 0;
    justify-content: flex-end;
	left:0;
}
#footer.bravo img {
    max-width: 163px;
}
#content.bravo{
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	height: calc(100% - 100px);
}
@media screen and (min-width : 768px){
	#footer.bravo {
		left: calc(50% - 384px);
	}
}
/*resume*/
.helpbox h2{
    color: #1d384a;
}
.helpback{
	backdrop-filter: blur(10px);
	display:none;
	position:fixed;
	inset:0;
	background:rgba(0,0,0,.45);
	z-index:9999;
	align-items:center;
	justify-content:center;
}
.helpbox input, .helpbox textarea{
border:1px solid #b2bdc5;
    border-radius: 25px;
	color:#1d384a;
}
.helpbox textarea:focus{
	outline:none;
}
.helpbutton {
    padding: 10px 16px;
    border: none;
    border-radius: 60px;
    background: #1d384a;
    color: #fff;
    cursor: pointer;
    margin: 8px auto;
    width: fit-content;
    display: block;
}
.helpbox{
	background:#fff;
	max-width:560px;
	width:92%;
	border-radius:14px;
	padding:24px;
	box-shadow:0 10px 40px rgba(0,0,0,.2);
}
/****/
.alert-box {
    padding: 15px 25px;
    border: 2px solid #f26722;
    color: #ffb590;
    border-radius: 22px;
    margin-top: 30px;
    position: relative;
}
.alert-box strong, .alert-box p, .alert-box a{
	color: #ffb590;
}
.alert-box  .attention {
    position: absolute;
    top: 9px;
    left: -20px;
    background-color: #f26722;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
}

button .attention {
    position: absolute;
    top: 0;
    left: -10px;
    background: #f26722;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
    font-size: 17px;
}
/*fenetre copie horaires*/
#bluroverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(7px);
    z-index: 14000;
}
#dialogBoxDiv dialog {
    z-index: 15000;
    margin: auto;
    position: absolute;
    top: 50%;
    padding: 20px;
    border-radius: 25px;
}
#dialogBoxDiv button {
    background: transparent;
    border: 1px solid #1d384a;
    color: #1d384a;
    padding: 5px 15px;
    border-radius: 25px;
    margin-top: 8px;
}