@import 'fonts.css';

html {
	--dark-grey: #191919;
	--light-grey: #F6F6F6;
	font-size: 62.5%;
}

body,
html {
	width: 100%;
	min-height: 100%;
	height: max-content;
	padding: 0;
	margin: 0;
	display: flex;
	box-sizing: border-box;
	position: relative;
	flex-direction: column;
	align-items: center;
	color: var(--dark-grey);
	background-color: var(--light-grey);
	font-family: Hind;
}

body * {
	box-sizing: border-box;
	font-size: 1.6rem;
	margin: 0;
	outline: 0 !important;
}

body {
	font-size: 1.6rem;
}

body h1 {
	font-size: 3rem;
}

body h2 span {
	color: #e21617;
	font-size: 4.5rem;

}

body main {
	width: 90vw;
	max-width: 1200px;
}

body h3 {
	font-size: 2.4rem;
}

header img {
	height: 60%;
	margin: 0 5vw;
}

body p.sous_titre {
	font-size: 2rem;
	width: 100%;
	text-align: center;
	margin-bottom: 2vh;
	margin-top: 4vh;
}

header {
	display: flex;
	width: 100%;
	height: max-content;
}

header nav {
	width: 100%;
	display: flex;
	justify-content: center;
	height: 100%;
	align-items: center;
}

header .nav_fixed {
	position: fixed;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, .8);
	height: 6vh;
	backdrop-filter: blur(10px);
	transition: top .3s;
	top: -6vh;
	z-index: 5;
}

header .nav_fixed.visible {
	top: 0;
}

header .nav_fixed ul {
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

header .nav_fixed ul li {
	height: 100%;
}

header .nav_fixed * {
	opacity: .9;
}

header .nav_fixed ul li a {
	color: white;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity .2s;
}

header .nav_fixed ul li a img {
	margin: 0;
	opacity: 1;
}

header nav ul {
	list-style: none;
	display: flex;
	padding: 0;
	height: max-content;
}

header nav ul li a {
	text-decoration: none;
}

header .nav_header>a {
	height: max-content;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: #191919;
	width: 15%;
	justify-content: center;
	align-items: center;
}

header .nav_header>a h1 {
	flex-direction: column;
	display: flex;
	font-size: 1.6rem;
	margin-top: 0.5vh;
	text-align: center;
}

header .nav_header>a img {
	height: auto;
	width: 20%;
	margin: 0.5vh 5vw;
}

header .nav_header>a h1 span {
	font-size: 2.2rem;
	margin: 0;
	line-height: 2.5vh;
}

header .nav_header ul li a {
	color: #191919;
	border-bottom: solid 0px transparent;
	transition: border-color .2s, color .2s;
	font-size: 1.6rem;
}

header .nav_header ul li a i {
	margin-right: 5px;
}

header .nav_header ul li a:not(.to_account):hover,
header .nav_header ul li a:not(.to_account).active {
	border-bottom: solid 2px #e21617;
}

header .nav_header ul li .to_account:hover,
header .nav_header ul li .to_account.active {
	color: #e21617;
}

header .nav_fixed ul li a:hover,
header .nav_fixed ul li a.visible {
	opacity: 1;
}

header nav ul li {
	margin: 0 2vw;
	height: max-content;
}

.page_cancel main {
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
	height: 70vh;
	width: 100%;
	/* justify-content: space-around; */
}

.page_cancel main h2 {
	width: 100%;
	margin-bottom: 5vh;
}

.page_cancel main .strong {
	font-weight: bold;
}

.page_cancel main a {
	margin: 5vh 0 0;
	cursor: pointer;
	background: rgba(226, 22, 23, 1);
	color: white;
	font-family: Hind;
	border: 0;
	padding: 9px 24px;
	border-radius: 10px;
	display: block;
	text-transform: uppercase;
	transition: background .2s;
	text-decoration: none;
}

.page_cancel main a:hover {
	background: rgba(226, 22, 23, .8);
}

.formules main {
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.formules .liste_formules {
	padding: 0;
	margin-top: 20px;
	display: flex;
	list-style: none;
	flex-wrap: wrap;
	width: 90vw;
	max-width: 1200px;
	justify-content: center;
}

.formules .liste_formules .separateur {
	background: transparent;
	color: var(--dark-grey);
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	width: 100%;
	margin: 20px 0;
	text-transform: uppercase;
}

.formules .liste_formules .block_formule {
	width: 100%;
	border-radius: 10px;
	background-color: #191919;
	margin: 15px;
	padding: 20px 4%;
	color: white;
}

.formules .liste_formules .block_formule:not(.essai) {
	width: calc(100% / 3 - 30px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.formules .liste_formules .block_formule h3 {
	text-align: center;
	color: #fff;
}

.formules .liste_formules .block_contenu {
	margin: 20px 0 30px;
}

.formules .liste_formules .block_contenu p {
	display: inline;
}

.formules .liste_formules .block_contenu a {
	display: inline;
	color: #e21617;
	text-decoration: none;
}

.formules .liste_formules .block_contenu a:hover {
	text-decoration: underline;
}

.formules .liste_formules .block_formule div:not(.block_contenu) {
	width: 80%;
	display: flex;
	margin: 5px auto;
}

.formules .liste_formules .block_formule input {
	display: inline-block;
	margin-right: 10px;
	cursor: pointer;
	position: relative;
	top: 0.5rem;
}

.formules input[type='radio']:after {
	width: 80%;
	height: 80%;
	border-radius: 15px;
	top: 0px;
	left: -1px;
	position: relative;
	background-color: #fff;
	content: '';
	display: inline-block;
	visibility: visible;
	border: 2px solid white;
}

.formules input[type='radio']:checked:after {
	width: 80%;
	height: 80%;
	border-radius: 15px;
	top: 0px;
	left: -1px;
	position: relative;
	background-color: #e21617;
	content: '';
	display: inline-block;
	visibility: visible;
	border: 2px solid white;
}

.formules .liste_formules .block_formule label {
	font-weight: bold;
	display: inline-block;
	cursor: pointer;
	opacity: .7;
	transition: opacity .2s;

}

.formules input[type="radio"]:checked+label {
	opacity: 1;
}

.formules .liste_formules .block_formule label span {
	font-weight: normal;
}

.formules .liste_formules .block_formule label .infos {
	display: block;
	font-size: 1.3rem;
}

.old_price,
.hors_offre {
	opacity: .5;
	text-decoration: line-through;
}

.formules .acheter {
	cursor: pointer;
	background: rgba(226, 22, 23, 1);
	color: white;
	font-family: Hind;
	border: 0;
	margin: 50px auto 20px;
	padding: 9px 24px;
	border-radius: 10px;
	display: block;
	text-transform: uppercase;
	transition: background .2s;
	width: max-content;
}

.formules .acheter:hover {
	background: rgba(226, 22, 23, .8);
}

.formules .liste_formules .block_formule img {
	/* width: 12%; */
	/* max-width: 30px; */
	width: 12%;
	margin: 0 auto 20px;
	display: block;
}

.formules .liste_formules .essai img {
	width: calc(12% / 3 - 10px);
}

.essai p,
.essai p b {
	font-size: 1.6rem;
	text-align: center;
	margin-top: 20px;
}

.page_inscription main form {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 5vh;
}

.page_inscription main form article:not(.validation) {
	width: calc((100% / 2) - 40px);
	padding: 0 20px;
	margin: 5vh 0;
}

.page_inscription main form article {
	text-align: center;
}

.page_inscription main form article:nth-child(1) {
	border-right: dashed 0.5px #aaa;
}

.page_inscription main form article:nth-child(2) {
	border-left: dashed 0.5px #aaa;
}

.page_inscription main form .validation {
	width: 100%;
	padding: 20px;
}

.page_inscription main form article h3 {
	margin-bottom: 20px;
	color: #e21617;
}

.page_inscription main form article:not(.validation) div {
	margin: 10px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
}

.page_inscription main form article:not(.validation) div input {
	width: 60%;
}

.facultatif {
	font-size: 1.2rem;
	opacity: .7;
	font-weight: normal;
}

.page_inscription main form .check_cond {
	color: #191919;
	text-align: center;
	margin: 10px 0;
}

.page_inscription main form .check_cond input {
	cursor: pointer;
}

.page_inscription main form .check_cond label {
	color: #191919;
	margin-left: 10px;
	transition: color .1s;
}

.page_inscription main form .check_cond label a {
	color: inherit;
	font-weight: bold;
	text-decoration: underline;
}

.page_inscription main form .check_cond label.red_error {
	color: #E21617;
}

.page_inscription main form button.submit_crea,
.page_connexion main form button.submit_crea {
	margin: 5vh 0;
	padding: 15px 30px;
	background-color: #e21617;
	color: white;
	border: 2px solid #e21617;
	border-radius: 8px;
	cursor: pointer;
	transition: color .2s, background .2s;
}

.page_inscription main form button.submit_crea:hover,
.page_connexion main form button.submit_crea:hover {
	color: #e21617;
	background: transparent;
}

.page_connexion form {
	width: 100%;
	margin: 5vh auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.page_connexion form div {
	width: 100%;
	max-width: 500px;
}

.page_connexion form .field {
	width: 100%;
	max-width: 500px;
}

.page_connexion a.goto_register {
	font-size: inherit;
	color: #e21617;
	text-decoration: none;
}

.page_connexion a.goto_passres {
	color: #e21617;
	margin-top: 10px;
	text-decoration: none;
}

.page_connexion a.goto_register:hover {
	text-decoration: underline;
}

.page_connexion a.goto_passres:hover {
	text-decoration: underline;
}

.page_connexion p.error_co {
	color: #e21617;
	font-weight: 600;
	margin-bottom: 5vh;
}

.page_compte a.goto_hub {
	color: #e21617;
	font-size: 2rem;
	text-decoration: none;
	text-align: center;
	/* margin-left: auto; */
	/* margin-right: auto; */
	display: block;
	/* margin-top: 4vh; */
	margin: 60px auto 90px;
	color: white;
	background-color: #e21617;
	width: max-content;
	padding: 10px 20px;
	border-radius: 6px;
	border: solid 2px #e21617;
	transition: color .2s, background-color .2s;
}

.page_compte a.goto_hub:hover {
	color: #e21617;
	background-color: transparent;
}

.page_compte section {
	margin-bottom: 60px;
}

.page_compte section:not(.question) {
	display: inline-flex;
	flex-direction: column;
	width: 40%;
	margin: 0 2% 60px;
	text-align: center;
	vertical-align: top;
	border: dashed rgba(0, 0, 0, .2) 1px;
	padding: 30px;
	border-radius: 6px;
}

.page_compte section ul {
	list-style: none;
	padding-left: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.page_compte section ul li {
	display: flex;
	margin: 5px 0;
	justify-content: space-around;
}

.page_compte section ul .next-appointment {
	display: block;
	margin: 5px 0;
}

.page_compte section ul li p i {
	margin-right: 5px;
}

.page_compte .infos_persos ul li {
	justify-content: space-between;
}

.page_compte .infos_persos ul .remove-account {
	justify-content: center;
}

.page_compte main section a {
	text-decoration: underline;
	color: #e21617;
}

.page_compte main section a:hover {
	opacity: .8;
}

.page_compte h3 {
	margin-bottom: 20px;
}

.page_compte .infos_persos ul li p {
	margin-right: 5px;
}

.span_bold {
	font-weight: bold;
	font-size: inherit;
}

.page_compte section ul li .non-rens {
	opacity: .5;
}

.page_compte main {
	text-align: center;
}

.infos_connexion p {
	font-size: 1.4rem;
	opacity: .5;
}

.infos_connexion p i {
	font-size: 1.4rem;
}

.page_connexion section.new_code {
	margin-top: 5vh;
	margin: 10vh 0;
	text-align: center;
	font-size: 2rem;
}

.page_connexion section.new_code p {
	font-size: 2rem;
	margin: 2vh;
}

.page_connexion section.new_code h3 {
	color: inherit;
	font-size: 3rem;
}

.page_connexion a.goto_account {
	color: #e21617;
	font-size: 2rem;
	text-decoration: none;
	text-align: center;
	/* margin-left: auto; */
	/* margin-right: auto; */
	display: block;
	/* margin-top: 4vh; */
	margin: 5vh auto 2vh;
	color: white;
	background-color: #e21617;
	width: max-content;
	padding: 10px 20px;
	border-radius: 6px;
	border: solid 2px #e21617;
	transition: color .2s, background-color .2s;
}

.page_connexion a.goto_account:hover {
	color: #e21617;
	background-color: transparent;
}

.page_connexion .sup_choices a.goto_account {
	margin: 5vh 10px 2vh;
}

.sup_choices {
	display: flex;
	justify-content: center;
}

.page_compte .stripe_management {
	display: flex;
	padding: 0;
	margin: 0;
	background: transparent;
}

.page_compte .stripe_management button {
	background: transparent;
	font-family: Hind;
	font-size: 1.6rem;
	color: #e21617;
	text-decoration: underline;
	border: 0;
	outline: 0;
	cursor: pointer;
}

.page_compte .stripe_management button:hover {
	opacity: .8;
}

.page_success main .list_actions {
	list-style: none;
	padding-left: 0;
	margin: 20px 0;
	display: flex;
	width: 100%;
	justify-content: center;
	flex-direction: row;
	text-align: center;
	align-items: center;
	flex-wrap: wrap;
	margin-top: ;
}

.page_success main .list_actions li {
	width: 40%;
	max-width: 600px;
	margin: 20px;
	color: white;
	padding: 25px 35px;
	border-radius: 6px;
	border: solid 1px var(--dark-grey);
	background-color: var(--dark-grey);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.page_success main .list_actions .white_bloc {
	background: transparent;
	color: var(--dark-grey);
}

.page_success main .list_actions li img {
	height: 5vh;
	filter: invert(1);
	margin-bottom: 35px;
	margin-top: 10px;
}

.page_success main .list_actions .white_bloc img {
	filter: invert(0);
}

.page_success main .list_actions li h3 {
	margin-bottom: 10px;
	font-family: League Spartan;
}

.page_success main .list_actions li .bold {
	font-weight: bold;
}

.page_success main .list_actions li a {
	color: white;
	display: block;
	width: 100%;
	width: max-content;
	text-decoration: none;
	background-color: #e21617;
	/* background: transparent; */
	width: 100%;
	width: max-content;
	padding: 10px 20px;
	border-radius: 8px;
	/* width: max-content; */
	/* margin: 0 auto; */
	transition: background .2s, color .2s, border-color .2s;
	margin: 35px auto 15px;
	border: solid 2px #e21617;
}

.page_success main .list_actions li a:hover {
	background: transparent;
	color: #e21617;
	border-color: #e21617;
}

.cookies_rules main p {
	margin: 10px;
}

.cookies_rules main h2 {
	margin-bottom: 5vh;
}

.cookies_rules main h3 {
	margin: 20px 0;
}

.footer_padding footer {
	margin-top: 25px;
}

@media (min-width: 480px) {
	.footer_padding footer {
		margin-top: 50px;
	}
}

@media (max-width:1025px) and (orientation: landscape) {
	.formules .liste_formules .block_formule div:not(.block_contenu) {
		width: 100%;
	}
}

@media (orientation: portrait) {
	.formules .liste_formules .block_formule {
		width: 100% !important;
		border-radius: 10px;
		background-color: #191919;
		margin: 15px;
		padding: 20px 4%;
		color: white;
	}

	.page_success main .list_actions li {
		width: 100%;
		height: max-content !important;
	}

	.page_success main .list_actions li a {
		width: auto;
	}

	.page_compte section:not(.question) {
		width: 100%;
		height: max-content !important;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.page_compte a.goto_hub {
		margin-bottom: 60px;
	}

	.page_compte .infos_persos ul li {
		justify-content: space-between;
		flex-wrap: wrap;
		flex-direction: column;
	}

	.page_compte section {
		margin-bottom: 20px;
	}

	.page_compte section.question {
		margin-top: 20px;
	}

	.page_connexion form div {
		width: 90%;
	}

	.sup_choices {
		display: flex;
		justify-content: center;
		flex-direction: column;
		align-items: center;
		/* margin: 0; */
	}

	.page_connexion .sup_choices a.goto_account {
		margin: 2vh 10px 2vh;
	}

	.page_connexion section.new_code {
		margin: 10vh 0 20px;
	}

	.page_inscription main form article {
		width: 100% !important;
		border: 0 !important;
	}

	.field {
		width: 100% !important;
	}

	.page_connexion a.goto_account {
		width: auto;
	}

	.page_success main .list_actions li:nth-child(3) {
		color: white;
		background-color: var(--dark-grey);
	}

	.page_success main .list_actions li:nth-child(3) img {
		filter: invert(1);
	}

	.page_success main .list_actions li:nth-child(4) {
		background: transparent;
		color: var(--dark-grey);
	}

	.page_success main .list_actions li:nth-child(4) img {
		filter: invert(0);
	}
}