:root {
	--black: #091115;
	--main: #01BFDB;
	--lightgrey: #C1C1C1;
	--grey: #838687;
	--white: #FFF;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
a {
	font-family: inherit;
	text-decoration: none;
	color: inherit;
}
html {
	height: 100%;
}
body {
	font-family: "Roboto", sans-serif;
	color: var(--black);
	line-height: 1.4;
}
input {
	font-family: inherit;
	font-size: inherit;
	background: none;
}
button,
input,
input[type="submit"] {
	cursor: pointer;
	border: none;
}
input:focus,
button:focus,
textarea:focus,
select:focus {
	outline: none;
}
.overlay {
	position: fixed;
	z-index: 999;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--black);
	opacity: 0;
	visibility: hidden;
	transition: all .2s ease-in-out;
}
[data-showed-popup="delete-covid"] .overlay,
[data-showed-popup="send-covid-email"] .overlay,
[data-showed-popup="send-covid-email-list"] .overlay {
	visibility: visible;
	opacity: 0.6;
}
.popup {
	position: fixed;
	bottom: -100%;
	z-index: 999;
	width: calc(100% - 40px);
	max-width: 450px;
	margin: 0 20px;
	border-radius: 10px;
	padding: 40px 20px 40px;
	background: var(--white);
	transition: all .5s ease-in-out;
}
.popup._flex-column {
	display: flex;
	flex-direction: column;
}
.popup._center {
	justify-content: center;
	align-items: center;
	text-align: center;
}
[data-showed-popup="delete-covid"] .delete-covid,
[data-showed-popup="send-covid-email"] .send-covid-email,
[data-showed-popup="send-covid-email-list"] .send-covid-email-list {
	bottom: 20px;
}
.popup .title {
	text-align: center;
	margin-bottom: 20px;
	font-weight: 700;
}
.popup .popup-covid-btn {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}
.popup .popup-btn {
	border: none;
	padding: 10px 20px;
	border-radius: 3px;
}
.popup .popup-btn:not(:last-child) {
	margin-right: 10px;
}
.popup .popup-btn._grey {
	background: var(--lightgrey);
}
.popup .popup-btn._main {
	background: #33B3C9;
	color: #FFF;
}
.popup .popup-btn._red {
	background: #E41819;
	color: #FFF;
}
.connexion-wrapper {
	position: fixed;
	width: 100%;
	height: 100%;
	background: url('Assets/background.png') no-repeat var(--main);
	background-position: -70% 160%;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.connexion-inner {
	max-width: 420px;
	width: 100%;
	margin: 0 auto 0px;
}
.connexion-header {
	font-size: 21px;
	font-weight: 300;
	text-align: center;
	color: var(--white);
}
.connexion-header strong {
	display: block;
	font-size: 40px;
	font-weight: 700;
}
.connexion-form {
	margin-top: 40px;
	border-radius: 15px;
	background: var(--white);
	padding: 50px 20px;
	box-shadow: 2px 2px 17px 3px rgb(9 114 130 / 39%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.connexion-form h1 {
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 40px;
}
.connexion-form label {
	width: 100%;
	margin-bottom: 10px;
}
.connexion-form label input {
	width: 100%;
	background: var(--lightgrey);
	min-height: 40px;
	padding: 15px;
	border-radius: 5px;
}
.connexion-form label input::-webkit-input-placeholder {
	color: var(--grey);
	font-style: italic;
}
.connexion-btn {
	margin-top: 30px;
	background: var(--main);
	color: var(--white);
	border-radius: 5px;
	width: 100%;
	min-height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}
.main-header {
	min-height: 45px;
	position: fixed;
	z-index: 9;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--main);
	color: var(--white);
	padding: 0 20px;
}
.main-header h1 {
	font-size: 20px;
	font-weight: 700;
}
.main-header a.logout {
	position: relative;
	top: 2px;
}

/* Nav */

.main-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: white;
	z-index: 9;
}
.main-nav .central-btn {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--main);
	color: #FFF;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
}
.main-nav .central-btn._grey {
	background: var(--lightgrey);
}
.main-nav .central-btn svg {
	transform: scale(1.6);
}
.main-nav ul {
	display: flex;
	box-shadow: 0 0 8px 0px #9a9a9a6b;
	padding: 5px 0;
}
.main-nav ul li {
	width: 100%;
	color: #979EA0;
}
.main-nav ul li.selected {
	color: var(--black);
}
.main-nav-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 5px;
}
.main-nav-btn svg {
	margin-right: 5px;
}
.main-nav-btn span {}
.actions-wrapper {
	position: fixed;
	bottom: 85px;
	left: 0;
	width: 100%;
	padding: 20px;
	background: var(--white);
	display: flex;
	justify-content: space-between;
}
.actions-wrapper .main-btn {
	background: var(--main);
	color: var(--white);
	display: block;
	padding: 10px;
	font-size: 16px;
	text-align: center;
	width: 100%;
	border-radius: 5px;
}
.actions-wrapper .main-btn.orange {
	margin-right: 10px;
}
.actions-wrapper .cancel-btn {
	min-width: 42px;
	margin-right: 10px;
	height: 42px;
	background: var(--lightgrey);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.main-container {
	padding: 65px 20px 90px;
}
.main-container:not(.patients-wrapper) {
	padding: 65px 20px 180px;
}
.lookfor {
	position: sticky;
	top: 45px;
	z-index: 9;
	left: 0;
	background: white;
	padding: 10px 0;
	margin-top: -20px;
}
.lookfor_inner {
	display: flex;
	background: #F5F5F5;
	font-size: 16px;
	padding: 10px;
	max-width: 1100px;
	border-radius: 5px;
}
.lookfor input {
	border: none;
	background: none;
	width: 100%;
}
.lookfor input::-webkit-input-placeholder {
	font-style: italic;
}
.lookfor .clear_search {
	opacity: 0;
	margin-right: 5px;
	visibility: hidden;
	border: none;
	background: none;
	padding: 0;
	transition: all .2s ease-in-out;
	position: relative;
	width: 22px;
	height: 22px;
	border: 2px solid transparent;
}
.lookfor .clear_search::after,
.lookfor .clear_search::before {
	content: "";
	display: block;
	position: absolute;
	width: 16px;
	height: 2px;
	background: currentColor;
	transform: rotate(45deg);
	border-radius: 5px;
	top: 8px;
	left: 1px
}
.lookfor .clear_search::after {
	transform: rotate(-45deg)
}
.lookfor .clear_search.show {
	opacity: 1;
	visibility: visible;
}
.lookfor .clear_search:hover {
	color: #E41818;
	border: none
}
.attestations-wrapper {}
.attestations-wrapper .mentions {
	font-size: 12px;
	color: #adadad;
}
.attestation {
	display: flex;
	border-bottom: 1px solid var(--lightgrey);
	margin-bottom: 10px;
	padding-bottom: 10px;
	position: relative;
}
.att-download {
	margin-right: 10px;
	display: flex;
	flex-direction: column;
}
.att-download a {}
.att-download button {
	background: none;
	padding: 0;
}
.att-infos {
	font-size: 14px;
	color: var(--grey);
}
.att-name {
	font-size: 16px;
	color: var(--black);
	font-weight: 700;
}
.att-date {}
.att-madeby {
	color: #d5d5d5;
}
.title-form {
	font-weight: 700;
	margin: 20px 0 10px;
}
.att-delete {
	background: none;
	opacity: 0.2;
	position: absolute;
	top: 0;
	right: -4px;
}
.or {
	text-align: center;
	margin: 20px 0;
	font-weight: 700;
}
.main-form section {
	margin-bottom: 20px;
}
.main-form .title {
	font-size: 16px;
	margin-bottom: 10px;
	font-weight: 600;
}
.main-form article {
	display: flex;
	margin-bottom: 10px;
	margin-right: -10px;
}
.label-text {
	margin-bottom: 0;
	border: 1px solid #6b6b6b;
	border-radius: 3px;
	display: flex;
	align-items: center;
	padding: 7px 10px;
	margin-right: 10px;
	width: 100%;
}
.label-birthdate {}
.label-birthdate .autofocus_date {
	display: flex;
}
.label-birthdate input {
	text-align: center;
}
.label-text.error {
	border-color: red;
}
.label-text p {
	color: #6b6b6b;
	font-weight: 400;
	white-space: nowrap;
}
.label-text input {
	border: none;
	width: 100%;
	margin-left: 5px;
}
.label-text input:focus {
	outline: none;
}
.article-radio {
	display: flex;
	align-items: center;
}
.label-radio {
	margin-right: 10px;
	border: 1px solid #6b6b6b;
	border-radius: 3px;
	padding: 7px 10px;
	display: flex;
	align-items: center;
	cursor: pointer;
	margin-bottom: 0;
}
.label-radio.error {
	border-color: red;
}
.label-radio input {
	display: none;
}
.label-radio span {
	width: 14px;
	min-width: 14px;
	height: 14px;
	border: 1px solid #000;
	border-radius: 3px;
	margin-right: 7px;
	position: relative;
	transition: all .2s ease-in-out;
}
.label-radio input[type='radio']+span,
.label-radio input[type='radio']+span:before {
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}
.label-radio span:before {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	background: #000;
	top: 2px;
	left: 2px;
	border-radius: 1px;
	transform: scale(0);
	transition: all .2s ease-in-out;
}
.label-radio input:checked+span:before {
	transform: scale(1);
}
.label-radio p {
	font-weight: 400;
	transition: all .2s ease-in-out;
}
.label-radio:hover span {
	border-color: #2A6077;
}
.label-radio:hover span:before {
	border-color: #2A6077;
}
.label-radio:hover p {
	color: #2A6077;
}
.main-form article.no-margin {
	margin-right: 0;
}
.label-radio-bloc {
	padding: 0 0 0 10px;
	margin: 0;
	width: auto;
}
.label-radio-bloc p {
	margin-right: 10px;
}
.label-radio-bloc label {
	position: relative;
	margin-bottom: 0;
	height: 100%;
	font-weight: 400;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.label-radio-bloc label input {
	position: absolute;
	top: -30px;
	display: none;
}
.label-radio-bloc label span {
	padding: 0 5px;
	font-size: 12px;
	border-left: 1px solid #e2e2e2;
	height: 100%;
	display: flex;
	align-items: center;
	transition: all .2s ease-in-out;
	min-height: 38px;
}
.label-radio-bloc label span:hover {
	color: #33B3C9;
}
.label-radio-bloc label input:checked+span,
.label-radio-bloc label input:checked+span:hover {
	background: #33B3C9;
	color: #FFF;
}
.mention {
	font-size: 10px;
	color: var(--grey);
}

/* POPUP */

.send-covid-confirmed {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.send-covid-success {
	display: none;
}
.send-covid-email .subtitle {
	text-align: center;
}
.send-covid-email .popup_send_email,
.popup_send_email_list {
	width: 100%;
	text-align: center;
	margin-top: 10px;
	padding: 5px 10px;
	border: 1px solid var(--lightgrey);
}
.send-covid-email .send-success {
	color: var(--grey);
	text-align: center;
	font-size: 12px;
}

/* Not found page */

.notfound {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 18px;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	margin: auto;
}
.notfound h1 {
	font-size: 20px;
}
.notfound h2 {
	margin-top: 20px;
	color: var(--grey);
}
.notfound p {
	margin-top: 10px;
	color: var(--grey);
}

/* Patients list */

.patients-inner {}
.patients-inner article {}
.patients-inner article .title {
	color: var(--lightgrey);
	font-size: 0.938rem;
	position: sticky;
	top: 107px;
	background: var(--white);
	z-index: 2;
}
.patients-inner article ul {
	margin-top: 8px;
}
.patients-inner article ul li {
	margin-bottom: 14px;
}
.patients-inner .contact-name {
	font-size: 1rem;
}
.patients-inner .contact-name strong {
	font-weight: 700;
}
.patients-inner .contact-detail {
	display: none;
	border-bottom: 1px solid #EFEFEF;
	padding-bottom: 10px;
	margin-top: 10px;
	line-height: 24px;
	margin-top: 5px;
}
.patients-inner .contact-detail p {
	color: var(--grey);
	font-weight: 400;
	font-size: 0.875rem;
}
.patients-inner .contact-detail .contact-phone {
	margin-bottom: 8px;
}
.patients-inner .contact-detail p a {
	display: flex;
	align-items: center;
}
.patients-inner .contact-detail p a span {
	min-width: 20px;
	text-align: center;
	margin-right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.patients-inner .contact-detail p a em {
	font-style: italic;
}
.patients-inner .contact-detail p a i {
	display: inline-block;
}