/*****************/
/***** Fonts *****/
/*****************/

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@300;400;500;700&display=swap");

@font-face {
	font-family: "JP-Hand-Slanted";
	src: url("../font/JP-Hand-Slanted.otf");
}

/******************/
/***** Layout *****/
/******************/

html,
body {
	height: 100%;
}
body {
	display: flex;
	flex-direction: column;
}

body,
form * {
	/*
	display: flex;
	flex-direction: column;
	*/
	/*background-color: white;*/
	text-align: center;
	color: black;
	font-family: "Roboto", sans-serif;
	/*	font-family: Arial, sans-serif;*/
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.4rem;
	margin: auto;
}

main {
	flex: 1 0 auto;
	background: white;
	width: 100%;
	max-width: 1024px;
	margin: 0 auto;
}

h1 {
	display: block;
	color: #82436e;
	font-family: "Playfair Display", serif;
	font-size: 28px;
	line-height: 35px;
	font-weight: bold;
	text-align: left;
	border-bottom: solid 1px #82436e;
	margin: 20px 20px 30px;
	width: calc(100% - 40px);
	text-transform: uppercase;
}
@media (max-width: 700px) {
	h1 {
		font-size: 24px;
	}
}
h2 {
	display: block;
	color: #82436e;
	font-size: 1.8em;
	margin-top: 1.2em;
	line-height: 1.2em;
	margin-bottom: 1.2em;
	margin-left: 0;
	margin-right: 0;
	font-weight: 500;
	/*text-transform: uppercase;*/
}
@media (max-width: 600px) {
	h2 {
		font-size: 1.4em;
		margin-top: 0.7em;
		margin-bottom: 0.7em;
	}
}
@media (max-width: 400px) {
	h2 {
		font-size: 1.2em;
		margin-top: 0.8em;
		margin-bottom: 0.8em;
	}
}
h3 {
	display: block;
	font-size: 1.17em;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 0;
	margin-right: 0;
	font-weight: bold;
}
h4 {
	display: block;
	font-size: 1em;
	margin-top: 1.33em;
	margin-bottom: 1.33em;
	margin-left: 0;
	margin-right: auto;
	font-weight: bold;
}

a {
	color: black;
}

.justify {
	text-align: justify;
}

/*********************/
/***** Utilities *****/
/*********************/

.boxzone {
	/*
	background-color: rgba(255, 255, 255, 0.6);
	border: dashed 3px grey;
	padding: 20px;
	margin: 20px;
	*/
	text-align: center;
}
.fullwidth {
	width: 100%;
	max-width: 1024px;
	margin: 20px;
}
.flex-centered {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 20px;
}
.flex-centered img {
	max-width: 100%;
}
.flex-centered-page {
	padding-top: 0;
	padding-bottom: 0;
}
.flex-row {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	padding: 20px;
	flex-wrap: wrap;
	max-width: 100%;
}
@media (max-width: 1100px) {
	.fullwidth {
		max-width: none;
		margin: 20px 0;
	}
}
@media (max-width: 700px) {
	.flex-row {
		padding: 10px;
	}
}

/******************/
/***** Header *****/
/******************/

header {
	height: 235px;
	background-color: #efeff0;
	overflow: hidden;
	flex-shrink: 0;
}
.width-max {
	max-width: 1024px;
	margin: auto;
	position: relative;
}
.header-intro {
	position: relative;
	height: 180px;
}
.header-logo {
	position: absolute;
	top: 80px;
	left: 30px;
}
.header-logo img {
	width: 250px;
}
.header-bg {
	position: absolute;
	height: 180px;
	left: 0;
}
.header-menu {
	position: relative;
	height: 55px;
	background-color: #93cecb;
	z-index: 2;
}
.header-menu > div {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 100%;
}
.menu-buttons {
	display: flex;
	justify-content: flex-end;
	flex-direction: row;
}
.menu-buttons a {
	margin: auto 8px;
	font-size: 0.9rem;
	font-weight: 500;
	color: white;
	line-height: 1rem;
	text-align: center;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.5s;
	padding: 5px 8px;
	border-radius: 3px;
}
.menu-buttons a:hover {
	background-color: white;
	color: #93cecb;
}
.menu-buttons a.button-no-hover:hover {
	background-color: transparent;
}
.menu-buttons object {
	pointer-events: none;
}
@media (max-width: 600px) {
	header {
		height: 155px;
	}
	.header-logo {
		position: relative;
		left: auto;
		top: 35px;
	}
	.header-bg {
		display: none;
	}
	.header-intro {
		height: 120px;
	}
	.header-menu {
		height: 35px;
	}
	.header-menu > div {
		justify-content: center;
	}
	.menu-buttons a {
		margin: auto 0px;
		letter-spacing: 0.1px;
	}
}
@media (max-width: 450px) {
	.menu-buttons a {
		font-size: 0.7rem;
		letter-spacing: 0px;
	}
}

@media (max-width: 700px) {
	.banner-img {
		width: 150%;
	}
}

/*************************/
/***** Header Notify *****/
/*************************/

.header-notify {
	position: absolute;
	background-color: #82436e;
	border-radius: 10px 10px 0 0;
	/*height: 30px;*/
	top: -30px;
	right: 0;
}

.header-notify a {
	color: white;
	font-size: 14px;
	font-weight: 500;
	line-height: 30px;
	padding: 0 10px;
}

@media (max-width: 1100px) {
	.header-notify {
		right: 20px;
	}
}

/******************/
/***** Footer *****/
/******************/

footer {
	flex-shrink: 0;
	min-height: 120px;
	background-color: #93cecb;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.footer-wrapper {
	max-width: 1024px;
	width: 100%;
	margin: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.footer-logos {
	margin-left: 30px;
}
.footer-logos > div {
	margin: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.footer-logos a {
	margin: auto 10px;
}
.footer-logos img {
	height: 50px;
}
.footer-menu > div {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 100%;
}
.footer-logos p {
	color: white;
}

@media (max-width: 800px) {
	footer {
		/*height: 250px;*/
	}
	.footer-menu > div {
		justify-content: center;
	}
	.footer-wrapper {
		flex-direction: column;
	}
	.footer-wrapper > div {
		margin: 20px auto;
	}
}
footer .menu-buttons {
	flex-direction: column;
}
footer .menu-buttons a {
	padding: 2px 5px;
	margin: 3px auto;
}

/*****************/
/***** Login *****/
/*****************/

.crt-horizontal-separator {
	margin: 25px auto 10px;
	width: 100%;
	border-top: solid 1px #999;
}

.o-formlogin {
	width: 450px;
	max-width: 100%;
	margin: auto;
}
.crt-form-reduced {
	max-width: 350px;
}
.formlogin {
	padding: 20px;
}
.crt-form p {
	margin: 20px;
}
.crt-form input {
	text-align: center;
}
.crt-form input[type="text"],
.crt-form input[type="password"],
.crt-form select,
.crt-form textarea {
	color: black;
	border: 0;
	border: solid 2px #eee;
	padding: 10px 5px;
	font-size: 1.1rem;
	border-radius: 5px;
	/*box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.06);*/
	outline: none;
	width: 90%;
	transition: all 0.5s;
	margin: 10px auto;
}

.crt-form input[name="email"] {
	text-transform: lowercase;
}

.crt-form input[type="text"]:hover,
.crt-form input[type="password"]:hover {
	border: solid 2px black;
}
.crt-form .crt-form-bloc {
	margin: 10px;
}

.crt-form h3 {
	margin-bottom: 0.3125em;
}
.crt-form .error {
	font-size: 1rem;
	background-color: rgba(130, 67, 110, 0.6);
	color: white;
	padding: 10px;
	border-radius: 10px;
	margin: 10px;
}
.crt-form .error a {
	color: white;
	font-weight: 700;
	/*text-decoration: none;*/
}

.crt-account {
	font-size: 1rem;
	border: solid 2px black;
	padding: 10px;
	border-radius: 10px;
	margin: 10px;
}
.formlogin a {
	margin: 10px;
}
.crt-form textarea {
	font-family: "Roboto", sans-serif;
	font-weight: 300;
	resize: none;
}
.crt-form .g-recaptcha {
	margin-bottom: 20px;
}
.crt-form .crt-form-left {
	margin-left: 15px;
	margin-top: 0;
	text-align: left;
}
.crt-form .crt-form-left > * {
	color: #666;
}
.crt-form input[type="checkbox"] {
	opacity: 0.8;
	margin-right: 5px;
}
.crt-form .crt-form-right {
	margin-right: 5px;
	margin-top: 0;
	text-align: right;
}
.crt-flex-bothside {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.crt-form .crt-flex-bothside * {
	margin: 0;
}
.crt-form .crt-form-info,
.crt-form .crt-form-info a {
	font-size: 12px;
	line-height: 12px;
	margin-left: 0;
}
/*******************/
/***** Buttons *****/
/*******************/

.crt-button,
.crt-button-alt {
	margin: auto 8px;
	font-size: 16px;
	line-height: 26px;
	font-weight: bold;
	padding: 4px 14px;
	color: white;
	border: solid 2px #93cecb;
	background-color: #93cecb;
	text-align: center;
	letter-spacing: 1px;
	text-decoration: none;
	transition: all 0.5s;
	border-radius: 3px;
	cursor: pointer;
	text-decoration: none;
}
.crt-button:hover {
	background-color: white;
	color: #93cecb;
}
.crt-button-home {
	text-transform: uppercase;
	margin: 18px;
	font-size: 20px;
	background-color: #82436e;
	border-color: #82436e;
}
.crt-button-home:hover {
	background-color: white;
	color: #82436e;
}

.crt-button-alt {
	border: solid 2px #82436e;
	background-color: #82436e;
}
.crt-button-alt:hover {
	background-color: white;
	color: #82436e;
}

.crt-button object {
	pointer-events: none;
}

.icon {
	display: inline-block;
	width: 19px;
	height: 13px;
	background-size: cover;
}
.icon-arrow-back {
	margin-left: 10px;
	background-image: url(/images/arrow.svg);
	transition: all 0.3s;
	/* cf https://codepen.io/sosuke/pen/Pjoqqp */
	filter: invert(100%) sepia(5%) saturate(20%) hue-rotate(185deg)
		brightness(107%) contrast(104%);
}
.crt-button:hover .icon-arrow-back {
	filter: invert(78%) sepia(38%) saturate(242%) hue-rotate(128deg)
		brightness(94%) contrast(87%);
}

.crt-link-simple {
	font-size: 0.9rem;
	text-decoration: none;
}
.crt-link-simple:hover {
	text-decoration: underline;
}

.crt-link-color {
	font-weight: 500;
	text-decoration: none;
	color: #93cecb;
	transition: color 0.3s;
}
.crt-link-color:hover {
	color: #82436e;
}

/****************/
/***** Form *****/
/****************/

.formfield-select {
	position: relative;
}

.formfield-select--container {
	position: relative;
	background-color: #fff;
	border: #777 1px solid;
	margin: 0 0 1.5em 0;
	overflow: hidden;
}
.formfield-select--container select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%; /* Hide native arrow */
	height: auto;
	border: 0;
	margin: 0;
	padding: 0.55em;
	border-radius: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}
.formfield-select--container::after {
	content: "";
	position: absolute;
	top: 50%;
	margin-top: -3px;
	right: 0.75em;
	display: block;
	width: 0;
	height: 0;
	border-color: transparent;
	border-top-color: #444;
	border-width: 6px;
	border-style: solid;
	pointer-events: none;
}
#crt-select-language {
	width: 120px;
	margin: auto;
}
#crt-select-language h3 {
	margin-bottom: 5px;
}

/*****************/
/***** Admin *****/
/*****************/

.o-admin a {
	display: block;
}
.o-admin .crt-button {
	margin: 10px;
}

/*
.admin-answer{
    font-size: 0.8rem;
    max-width: 400px;
    margin: auto;
    color: #CCC;
    border: 1px solid #CCC;
    padding: 10px;
}
*/
.admin-table {
	line-height: 1.8rem;
	margin: auto;
}
.admin-table thead {
	font-size: 1.2rem;
	font-weight: 700;
}
.admin-table td,
.admin-table th {
	padding: 10px;
	text-align: center;
}
.admin-table tr {
	padding: 5px;
}
.admin-table thead tr:first-child {
	background: rgba(0, 0, 0, 0);
}
.admin-table tr:nth-child(even) {
	background: rgba(147, 206, 203, 0.1);
}
.admin-table tr:nth-child(odd) {
	background: rgba(147, 206, 203, 0.3);
}

.admin-table a {
	color: rgba(0, 0, 0, 0.7);
	transition: color 0.3s;
}
.admin-table a:hover {
	color: rgba(0, 0, 0, 1);
}
.pager {
	margin-bottom: 10px;
}
.pager a {
	color: grey;
}

/***************/
/***** Map *****/
/***************/

.text-intro {
	max-width: 700px;
	text-align: left;
	margin: auto;
}
.text-intro-alt {
	font-style: italic;
}
@media (max-width: 800px) {
	.text-intro {
		margin: auto 20px;
	}
}
.text-intro p {
	margin-bottom: 10px;
}

#map-wrapper {
	width: 100%;
	overflow: hidden;
}

#o-map {
	position: relative;
	margin: 10px auto 30px;
	padding: 0;
	/* height:75vh et width calculée */
}
@media (max-width: 1024px) {
	#o-map {
		padding: 0 20px;
	}
}
#map-graf {
	width: 100%;
	/*border: solid 1px red;*/
}

.map-layer {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}
.map-token {
	position: absolute;
	/*transition: all .3s ease-out;*/
	cursor: pointer;
}

.map-token-name {
	position: absolute;
	pointer-events: none;
	top: 53px;
	left: 16px;
}
.map-token-name-inside {
	position: relative;
	font-weight: 500;
	font-size: 1.2rem;
	transform: translateX(-50%);
	white-space: nowrap;
	color: #82436e;
}
.map-token-arrow {
	position: absolute;
	transform-origin: left;
	height: 2px;
	width: 100px;
	background-color: #82436e;
	transform: translate(8px, -41px) rotate(-45deg);
}
/*
@media (max-width: 3650px) {
	.map-token-name-inside {
		font-size: 1.2rem;
	}
}
*/
@media (max-width: 600px) {
	#o-map {
		padding: 10px;
	}
}

.crt-zoombutton {
	position: absolute;
	z-index: 10;
	top: 10px;
	right: 10px;
	display: flex;
	flex-direction: column;
}
.crt-zoombutton div {
	cursor: pointer;
}
@media (max-width: 900px) {
	.crt-zoombutton img {
		width: 50%;
	}
}
/******************/
/***** Tokens *****/
/******************/

.bg-spot_done {
	width: 32px;
	height: 94px;
	background: url("/images/css_spots.png") -0 -0;
}
.bg-spot_question {
	width: 32px;
	height: 94px;
	background: url("/images/css_spots.png") -32px -0;
}

/*******************/
/***** Enquete *****/
/*******************/

.o-question {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.o-resolution {
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-height: 0;
	overflow: hidden;
	transition: all 3s;
	margin-top: 20px;
}

.o-resolution img {
	margin-bottom: 20px;
}

.o-resolution > div {
	justify-content: flex-start;
}
.o-resolution {
	padding: 0 20px;
}

.crt-wrong {
	font-weight: 500;
}

.crt-invite-zone {
	/*
	border: solid 2px #82436e;
	border-radius: 0 0 20px 20px;
	padding: 20px;
	box-shadow: 4px 2px 5px rgba(130, 67, 110, 0.3);
	margin: 10px auto 0;
	font-size: 0.9rem;
	*/
}
.crt-invite-zone p {
	display: inline-block;
}
@media (max-width: 1100px) {
	.crt-invite-zone {
		max-width: 80%;
	}
}
@media (max-width: 800px) {
	.crt-invite-zone {
		max-width: 80%;
	}
	.crt-invite-zone p {
		display: block;
	}
	.crt-invite-zone > p:first-child {
		margin-bottom: 10px;
	}
}

.crt-resolution b {
	font-weight: bold;
}
.crt-resolution {
	text-align: justify;
}
.crt-answer {
	display: grid;
	grid-template-columns: 100px 1fr;
	justify-content: center;
	align-items: start;
}

.crt-handscript {
	font-family: "JP-Hand-Slanted";
	font-size: 28px;
	line-height: 32px;
	font-weight: 300;
}
.crt-resolution.crt-handscript b {
	font-weight: bold;
	/*
	text-shadow: -3px 0px 3px yellow, 3px 0px 3px yellow, 6px 0px 6px yellow,
		-6px 0px 6px yellow;
	*/
	margin: 0 -0.4em;
	padding: 0.01em 0.4em;
	border-radius: 0.8em 0.3em;
	background: transparent;
	background-image: linear-gradient(
		to right,
		rgba(255, 225, 0, 0.1),
		rgba(255, 225, 0, 0.7) 4%,
		rgba(255, 225, 0, 0.3)
	);
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	/*padding: 0.6em 13.7px;*/
	-webkit-box-decoration-break: clone;
	margin: 0;
	border-radius: 7.5px;
	text-shadow: -12px 12px 9.8px rgba(237, 253, 12, 0.829),
		21px -18.1px 7.3px rgba(255, 255, 255, 1),
		-18.1px -27.3px 30px rgba(255, 255, 255, 1);
}

.copyright {
	color: #999;
	font-size: 12px;
	padding: 0;
}

/****************/
/***** Hero *****/
/****************/

.crt-hero {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px;
	padding-top: 0;
	margin-top: 0;
}
.crt-hero img {
	object-fit: cover;
	width: 100%;
	max-height: 100%;
}
.crt-hero-img {
	position: relative;
	max-height: 250px;
}
.crt-hero-img-legend {
	position: absolute;
	width: 100%;
	font-weight: 500;
	font-size: 0.6rem;
	line-height: 2rem;
	background-color: rgba(255, 255, 255, 0.6);
	bottom: 4px;
	padding-left: 10px;
}

@media (max-width: 1100px) {
	.crt-hero {
		margin: 0;
	}
}

.crt-notation {
	position: relative;
	margin-bottom: 20px;
}
@media (max-width: 800px) {
	.crt-notation img {
		width: 30px;
	}
	.crt-notation-view img {
		width: auto;
	}
}
@media (max-width: 350px) {
	.crt-notation-view img {
		width: 40px;
	}
}
.crt-notation h2 {
	margin: 10px auto;
}
.crt-notation img:hover {
	cursor: pointer;
}
#crt-notation-done {
	display: none;
	margin-top: 10px;
}
.crt-notation-view {
	position: relative;
	width: 300px;
	height: 70px;
}
.crt-notation-view > div {
	position: absolute;
	top: 11px;
	left: 17px;
}
#crt-notation-empty {
	opacity: 0.3;
}

#crt-comment textarea {
	resize: none;
	display: block;
	margin: 10px 10px 10px;
	width: 100%;
}
#crt-comment-done {
	display: none;
}

/*****************/
/***** Blocs *****/
/*****************/

.crt-justify {
	text-align: justify;
}
.crt-2-blocs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: 40px auto;
}
.crt-home img {
	width: 100%;
}
.crt-home p {
	margin: 10px auto;
}
.crt-home .flex-centered {
	padding: 0 10px;
}
.crt-home h1 {
	margin: 0;
	font-size: 20px;
	width: 100%;
}

@media (max-width: 700px) {
	.crt-2-blocs {
		grid-template-columns: 1fr;
	}
	.crt-2-reverse div:nth-child(2) {
		grid-row: 1;
	}
	.crt-2-blocs h4 {
		padding: 10px 20px 0;
		margin-bottom: 0;
	}
	.crt-2-blocs p {
		/*padding: 10px 20px;*/
	}
	.crt-home .flex-centered.crt-2-blocs-img {
		padding: 0;
	}
}

.crt-list-quest {
	margin: 20px;
}

.button-circle {
	text-decoration: none;
}
.button-circle-img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: white;
	box-shadow: 2px 2px 3px grey;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 80%;
	margin: auto;
}
.button-circle .button-title {
	margin-top: 4px;
	text-transform: uppercase;
}

/***********************/
/****** Button CTA *****/
/***********************/

.button-cta {
	display: inline-block;
	width: 320px;
	height: 110px;
	background-color: #e9e9e9;
	border-radius: 20px;
	box-shadow: 2px 2px 3px grey;
	padding: 10px 10px 20px 0;
	margin: 10px;
	text-decoration: none;
	max-width: 90%;
}
.button-cta-wrapper {
	display: grid;
	grid-template-columns: 100px 1px 1fr;
	align-items: center;
	justify-content: center;
	height: 90px;
	position: relative;
}
.button-cta-sep {
	height: 90px;
	/*border-left: solid 1px #82436e;*/
	border-left: solid 1px rgba(0, 0, 0, 0.3);
}
.button-cta-text {
	padding-left: 10px;
	text-align: left;
	font-size: 14px;
	line-height: 16px;
}
.button-cta .button-title {
	font-weight: bold;
	line-height: 14px;
	margin: 10px;
}

.button-cta-locked {
	background-color: rgb(147, 206, 203, 0.2);
	pointer-events: none;
}
.button-cta-open {
	background-color: rgb(147, 206, 203);
}
.button-cta-locked-alt {
	background-color: rgb(130, 67, 110, 0.2);
	pointer-events: none;
}
.button-cta-open-alt {
	background-color: rgb(130, 67, 110);
}

.button-cta-open-alt .button-title {
	color: white;
}
.button-cta-locked .button-title,
.button-cta-locked-alt .button-title {
	color: rgba(0, 0, 0, 0.3);
}
.button-cta-locked .button-circle-img,
.button-cta-locked-alt .button-circle-img {
	opacity: 0.3;
}

.button-cta-new {
	background-image: url("/images/new-doc.svg");
	height: 40px;
	width: 50px;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: -30px;
	left: -30px;
	opacity: 0.8;
}

/****************************/
/***** Mentions legales *****/
/****************************/

.mentions-legales {
	text-align: left;
	max-width: 80%;
	margin: auto;
	margin-bottom: 50px;
}
.mentions-legales p,
.mentions-legales ul {
	margin-bottom: 8px;
}
.mentions-legales li {
	list-style: disc;
	margin-left: 30px;
}
.mentions-legales h3 {
	text-transform: uppercase;
}
.mentions-legales .indent {
	margin-left: 30px;
	margin-bottom: 0;
}

/***************************/
/***** Unlocked sticky *****/
/***************************/

.globalquest-sticky {
	position: relative;
	top: 0;
	background-color: #82436e;
	width: 100vw;
	left: calc(-50vw + 512px);
	padding: 10px 0;
}
.globalquest-sticky p,
.globalquest-sticky a {
	color: white;
	font-weight: 400;
	display: inline-block;
}
.globalquest-sticky a {
	font-weight: 500;
}

/*************************/
/***** Unlocked Grid *****/
/*************************/

.unlocked-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 40px 1fr;
}
.unlocked-arrow {
	height: 100px;
}

.unlocked-grid-sep {
	grid-column-start: 1;
	grid-column-end: 5;
	height: 3px;
	background-color: black;
	margin: 30px 10px;
}

.unlocked-arrow {
}

.unlocked-grid-tab-last {
	grid-column-start: 4;
	grid-column-end: 5;
	grid-row-start: 6;
	grid-row-end: 10;
}

@media (max-width: 1100px) {
	.unlocked-grid {
		grid-template-columns: 1fr 1fr;
	}
	.unlocked-grid-sep {
		grid-column-start: 1;
		grid-column-end: 3;
	}
	.unlocked-grid-tab-last {
		grid-column-start: 1;
		grid-column-end: 3;
		grid-row-start: auto;
		grid-row-end: auto;
	}
	.button-cta-open-alt,
	.button-cta-locked-alt,
	.conclusion-button-unlocked {
		grid-column-start: 1;
		grid-column-end: 3;
		margin: 10px auto;
	}
	.unlocked-arrow {
		display: none;
	}
	.unlocked-empty {
		display: none;
	}
}

@media (max-width: 690px) {
	.unlocked-grid {
		grid-template-columns: 1fr;
	}
	.unlocked-grid-sep {
		grid-column-start: 1;
		grid-column-end: 2;
	}
	.unlocked-grid-tab-last {
		grid-column-start: 1;
		grid-column-end: 2;
	}
	.button-cta-open-alt,
	.button-cta-locked-alt,
	.conclusion-button-unlocked {
		grid-column-start: 1;
		grid-column-end: 2;
		margin: 10px;
	}
}

/****************************/
/***** Conclusion Button ****/
/****************************/

.conclusion-button {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #82436e;
	border-radius: 20px;
	box-shadow: 2px 2px 3px grey;
	padding: 10px;
	margin: 10px;
	text-decoration: none;
}
@media (max-width: 1100px) and (min-width: 691px) {
	.conclusion-button {
		margin: 10px auto;
	}
}
.conclusion-button img {
	width: 30px;
	margin-left: 10px;
}
.conclusion-button p {
	margin: 10px;
	color: white;
	font-weight: 700;
}

.conclusion-button-map {
	position: absolute;
	bottom: 50px;
	left: 100px;
}
@media (max-width: 800px) {
	.conclusion-button-map {
		transform-origin: left center;
		transform: scale(0.8);
		left: 60px;
	}
}
@media (max-width: 500px) {
	.conclusion-button-map {
		transform: scale(0.6);
		left: 20px;
	}
}
.conclusion-button-unlocked {
	width: 305px;
	height: 110px;
}
.conclusion-button-unlocked img {
	width: 40px;
	margin-right: 20px;
}
.crt-button-conclusion {
	width: 600px;
	font-size: 14px;
	padding: 10px;
	text-transform: none;
}
