:root{
  --noir: #0E0E0E;
  --primary: #9B51E0;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.b-contain *, .b-contain *::before, .b-contain *::after {
	box-sizing: content-box !important;
}

.b-contain input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.b-contain span {
	line-height: 1.54;
	font-size: 1rem;
	font-family: inherit;
}

.b-contain {
	display: table;
	position: relative;
	padding-left: 1.8rem;
	cursor: pointer;
	margin-bottom: .5rem;
}

.b-contain input[type="checkbox"] ~ .b-input {
	position: absolute;
	top: 0;
	left: 0;
	height: 1.25rem;
	width: 1.25rem;
	background: rgba(241, 245, 248, 1);
	transition: background 250ms;
	border: 1px solid rgba(184, 194, 204, 1);
	border-radius: 0.125rem;
}

.b-contain input[type="radio"] ~ .b-input {
	position: absolute;
	top: 0;
	left: 0;
	height: 1.25rem;
	width: 1.25rem;
	background: rgba(241, 245, 248, 1);
	transition: background 250ms;
	border: 1px solid rgba(184, 194, 204, 1);
	border-radius: 2.0rem;
}

.b-contain input[type="checkbox"] ~ .b-input::after {
	content: '';
	position: absolute;
	display: none;
	left: .45rem;
	top: .18rem;
	width: .25rem;
	height: .6rem;
	border: solid rgba(255, 255, 255, 1);
	border-width: 0 2px 2px 0;
	transition: background 250ms;
	transform: rotate(45deg);
}

.b-contain input[type="radio"] ~ .b-input::after {
	content: '';
	position: absolute;
	display: none;
	left: .25rem;
	top: .25rem;
	width: .75rem;
	height: .75rem;
	border-radius: 2.0rem;
	background: rgba(255, 255, 255, 1);
	transition: background 250ms;
}

.b-contain input:disabled ~ .b-input::after {
	border-color: rgba(135, 149, 161, 1);
}

.b-contain input:checked ~ .b-input::after {
	display: block;
}

.b-contain:hover input ~ .b-input,
.b-contain input:focus ~ .b-input {
	background: rgb(231, 238, 243);
}

.b-contain input:focus ~ .b-input {
	box-shadow: 0 0 0 2px rgba(155, 81, 224, 0.51);
}

.b-contain input:checked ~ .b-input {
	background: var(--primary);
	border-color: var(--primary);
}

.b-contain input[type="checkbox"]:disabled ~ .b-input {
	background: rgba(241, 245, 248, 1);
	border-color: rgba(184, 194, 204, 1);
	opacity: 0.6;
	cursor: not-allowed;
}

.b-contain input[type="radio"]:disabled ~ .b-input {
	background: rgba(241, 245, 248, 1);
	border-color: rgba(184, 194, 204, 1);
	opacity: 0.6;
	cursor: not-allowed;
}

.b-contain input[type="radio"]:disabled ~ .b-input::after {
	background: rgba(135, 149, 161, 1);
}

.b-contain input:checked:focus ~ .b-input, .b-contain:hover input:not([disabled]):checked ~ .b-input {
	background: var(--primary);
	border-color: var(--primary);
}

.b-contain .b-input::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 3rem;
	height: 3rem;
	margin-left: -0.85rem;
	margin-top: -0.85rem;
	background: var(--primary);
	border-radius: 2rem;
	opacity: .6;
	z-index: 99999;
	transform: scale(0);
}

@keyframes b-ripple {
	0% {
		transform: scale(0);
	}

	20% {
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(1);
  	}
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}
*{
  margin:0;
  padding:0;
  scroll-behavior: smooth;
  font-family: "Outfit", "sans-serif";
}
html, body{
  min-height:100vh;
  overflow-x: hidden;
}
body{
  background: rgb(227 227 227);
  /* background-image: linear-gradient(90deg, #ffffff 0%, #f3f3f3 100%); */
  background-color: fixed;
}
a, a:hover{
  color:var(--noir);
  text-decoration: none;
}
.alert{
  position: absolute;
  width:90vw;
  text-align: center;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color:white;
  border-radius: 5px;
  padding:5vw;
  left:5vw;
  top:50vh;
  transform: translateY(-50%);
  -webkit-box-shadow: 0px 0px 18px 1px rgba(0,0,0,0.05);
  -moz-box-shadow: 0px 0px 18px 1px rgba(0,0,0,0.05);
  box-shadow: 0px 0px 18px 1px rgba(0,0,0,0.05);
  z-index:999;
  display:none;
}
.alert_ok{
  padding:0.325rem 1.125rem;
  border-radius: 100px;
  outline:none;
  border:none;
  color:white;
  background-color: #bf0b71;
  -webkit-box-shadow: 0px 0px 18px 1px rgba(0,0,0,0.05);
  -moz-box-shadow: 0px 0px 18px 1px rgba(0,0,0,0.05);
  box-shadow: 0px 0px 18px 1px rgba(0,0,0,0.05);
  cursor:pointer;
}
.alert_ok:hover{
  padding:0.2rem 1rem;
  background-color: white;
  color:#bf0b71;
  border:solid 2px #bf0b71;
}
.alert_ok:focus{
  outline:none;
}
.flou{
  filter:blur(10px);
}
.header{
  z-index:50;
  display:flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position:fixed;
  top:0;
  left:0;
  width:100vw;
  height:9vh;
  padding: 0 1.2rem 0 1.5rem;
  background-color:white;
  -webkit-box-shadow: 0px 0px 20px 8px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 0px 20px 8px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 0px 20px 8px rgba(0, 0, 0, 0.07);
}
.header_title{
  margin-bottom: 0;
  font-size: 1.2rem;
}
.header_titlepink{
  color: var(--primary);
}
.header_add{
  position:relative;
  cursor:pointer;
  transition: ease-in-out 0.3s;
  display:none;
}
.header_add:hover{
  transform:translateY(-3px);
  transition: ease-in-out 0.3s;
}
.header_txtadd{
  margin:0 .5rem 0 0;
  padding: 10px 24px;
  border-radius: 5px;
  background-color: var(--noir);
  color:white;
  font-weight: 500;
  font-size:16px;
  transition: 0.1s ease-in-out;
}
.header_txtadd:hover{
  transition: 0.1s ease-in-out;
  color: white;
  background-color: var(--primary);
}

@media (max-width: 900px) {
  .header_add{
    display:inherit;
  }
  .header_txtadd{
    display:none;
  }
  .header_bookmark{
    cursor:pointer;
    padding-right:0;
  }
}

/*===============CORPS===============*/

.corps{
  min-height: calc(100vh - 4.5rem);
}
.displayoptions{
  margin:auto;
  width:80vw;
  display:flex;
  flex-direction: row;
  flex-flow: nowrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.displayoptions_icon{
  padding-right:1rem;
  margin:0;
  width:2.5rem;
}
.displayoptions_popu, .displayoptions_chrono{
  border:0;
  outline:0;
  border-radius: 100px;
  padding:0.2rem 1rem;
  background-color:white;
  margin-right:0.5rem;
  -webkit-box-shadow: 0px 0px 18px 1px rgba(0,0,0,0.05);
  -moz-box-shadow: 0px 0px 18px 1px rgba(0,0,0,0.05);
  box-shadow: 0px 0px 18px 1px rgba(0,0,0,0.05);
  cursor:pointer;
  transition: ease-in-out 0.3s;
}
.displayoptions_popu:focus, .displayoptions_chrono:focus{
  border:0;
  outline:0;
}
.displayoptions_popu:hover, .displayoptions_chrono:hover{
  border:0;
  outline:0;
  transform:translateY(-3px);
  transition: ease-in-out 0.3s;
}
.displayoptions_chrono{
  color:#bf0b71;
}
.search_all{
  background: rgb(239 239 239);
  /* background: linear-gradient(346deg, rgba(224,224,224,1) 0%, rgba(255,255,255,1) 100%); */
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 15vh;
  padding-bottom: 6vh;
}
.search{
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  height: 50px;
}
.searchbar{
  width:70vw;
  max-width: 500px;
  position: relative;
  /*margin: auto;*/
  margin-right: 10px;
  height: 50px;
}
.search_input{
  border-radius: 3px;
  border:0;
  outline:0;
  height:50px;
  width:60vw;
  max-width: 500px;
  -webkit-box-shadow: 0px 0px 18px 1px rgba(0,0,0,0.05);
  -moz-box-shadow: 0px 0px 18px 1px rgba(0,0,0,0.05);
  box-shadow: 0px 0px 18px 1px rgba(0,0,0,0.05);
  padding:0 1.5rem 0 1.5rem;
  margin:auto;
}

.search_icon{
  border-radius: 3px;
  position:absolute;
  right:0;
  top:0;
  padding: 0.87rem 0.87rem;
  cursor:pointer;
  background-color: white;
  height: 50px;
}

.search_icon:hover{
  background: radial-gradient(292.95% 404.17% at 292.95% 50%, rgba(52, 13, 90, 0.322) 0%, rgba(29, 7, 49, 0) 100%);
}

.search_input:hover, .search_input:hover + .search_icon{
  background-color: rgb(245, 245, 245);
}

.search_filtre_icon{
  background-color: var(--noir);
  width: 50px;
  height: 50px;
  border-radius: 3px;
  padding:12px 0;
  transition: ease-in-out .1s;
}

.search_filtre_icon:hover{
  cursor: pointer;
  background-color: var(--primary);
  transition: ease-in-out .1s;
}

.search_filtre_icon > svg{
  display: block;
  margin: auto;
  transition: ease-in-out .1s;
}

.search_filtre_icon:hover > svg > path{
  stroke:white;
  transition: ease-in-out .1s;
}

.search_filtres{
  width:100vw;
  margin: auto;
  margin-top:1rem;
  display: flex;
  flex-flow: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: fit-content;
  list-style: none;
}

.search_filtres > h2{
  width: fit-content;
  margin:3rem 0 1.25rem 0;
}

.search_filtres > ul{
  list-style: none;
  width:fit-content;
  display: block;
  margin: auto;
  column-count: 3;
  padding-left: 6vw;
}

.search_filtres ul > li{
  border: 1px transparent solid; 
  width: 12em;
}

.search_filtres ul > li > label {
  margin-left: 10px;
}

.search_filtres_actions{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  margin-top:3rem;
  width:90vw;
  max-width:400px;
  flex-wrap: wrap;
}

.search_filtres_go, .search_filtres_clear{
  display: block;
  width:90vw;
  height:58px;
  margin:.5rem;
  padding:15px 10px;
  border-radius: 3px;
  text-align: center;
  background-color: var(--noir);
  color:white;
  font-family: "Outfit";
  transition: 0.1s ease-in-out;
}

.search_filtres_clear{
  box-sizing: border-box;
  color:var(--noir);
  background-color: white;
  outline: 2px solid var(--noir);
  height:54px;
  width:calc(90vw - 4px);
}

.search_filtres_go:hover, .search_filtres_clear:hover{
  color:white;
  background-color: var(--primary);
  outline: none;
  transition: 0.1s ease-in-out;
  cursor: pointer;
}

.search_filtres_note{
  color:grey;
  margin-top:1rem;
  width:70vw;
  text-align: center;
}

/*==============ITEMS=============*/

.gallery{
  padding-top:3rem;
  display:flex;
  flex-flow:wrap;
  flex-direction: row;
  justify-content: space-around;
  align-items:center;
}
.empty{
  color:#0000007a;
}
.item{
  width: 520px;
  height:335px;
  background-image: url("../data/img/noimg.png");
  background-position: center;
  background-size: cover;
  border-radius: 5px;
  margin-bottom: 3rem;
  -webkit-box-shadow: 0px 0px 63px 0px rgba(0,0,0,0.05);
  -moz-box-shadow: 0px 0px 63px 0px rgba(0,0,0,0.05);
  box-shadow: 0px 0px 63px 0px rgba(0,0,0,0.05);
  transition: ease-in-out .3s;
  position:relative;
  margin: 0 1rem 118px 1rem;
  border-radius: 6px;
}
.item:hover{
  transition: ease-in-out .3s;
  transform:translateY(-3px);
  cursor: pointer;
}
.item_infos{
  width:100%;
  height:78px;
  position: absolute;
  bottom:-72px;
  left:0;
  z-index:1;
  margin-left:0;
  border-radius: 3px;
  background-color:white;
  border-radius: 0px 0px 5px 5px;
  -webkit-box-shadow: 0px 0px 18px 1px rgba(0,0,0,0.05);
  -moz-box-shadow: 0px 0px 18px 1px rgba(0,0,0,0.05);
  box-shadow: 0px 0px 18px 1px rgba(0,0,0,0.05);
  display:flex;
  flex-direction: row;
  flex-flow: nowrap;
  justify-content: space-between;
  padding-top: 6px;
}
/*.item_img{
  position:absolute;
  width:100%;
  height:100%;
  z-index:1;
  border-radius:5px;
  object-fit: cover;
}*/
.item_left{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-weight: 500;
}
.item_nom{
  height: fit-content;
  margin: 0 0 0 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 20px;
}
.item_spe{
  height: fit-content;
  margin: 0 0 0 1.5rem;
  color:grey;
}
.item_right{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  line-height:20px;
  color:grey;
  font-weight: 500;
}
.item_lieu{
  height: fit-content;
  margin: 0 1.5rem 0 0;
  line-height: 20px;
}
.item_annee{
  height: fit-content;
  margin: 0 1.5rem 0 0;
}
.gallery_p_empty{
  margin:auto;
  margin-bottom: 3rem;
  padding: 0 1rem 0 1rem;
  text-align: center;
}
.footer{
  background-color:var(--noir);
  min-height:3rem;
  width:100vw;
  display:flex;
  flex-direction: row;
  flex-flow: nowrap;
  justify-content: space-between;
  align-items: center;
  margin-top:2rem;
  color:white;
  padding: 0 1.5rem;
  font-weight: 300;
}
.footer_contact, .footer_copyright, .footer_contact:hover, .footer_copyright:hover{
  margin:0;
  color:white;
  text-decoration: none;
}
.footer_contact:hover{
  margin:0;
  color:var(--primary);
  text-decoration: none;
}
.footer_goup{
  cursor:pointer;
  opacity: 0;
}
.footer_contact {
  text-align: right;
}
.footer_elements {
  width: 40vw;
}

.bold{
  font-weight: bold;
}

@media (min-width: 600px) {
  .item{
    width:425px;
    height:252px;
  }
  .item_infos{
    margin-left:0;
    width:100%;
  }
}

@media (max-width: 600px) {
  .search_filtres > ul{
    column-count: 2;
  }
  .item{
		width:90vw;
    height:58vw;
	}
}

@media (max-width: 340px) {
  .search_filtres > ul{
    column-count: 1;
  }
}

.filter_close{
  overflow: hidden;
  transition: .5s ease-in-out;
  height: 0;
  margin:0;
}