: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(255, 255, 255);
  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: var(--primary);
  -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:var(--primary);
  border:solid 2px var(--primary);
}
.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{
  padding-top:15vh;
  min-height: calc(93vh - 4.3rem);
  margin: 0 3rem;
}
h3{
  color:var(--primary)
}
.footer{
  transition: ease-in-out 0.5s;
  background-color:#171717;
  height:2rem;
  width:100vw;
  display:flex;
  flex-direction: row;
  flex-flow: nowrap;
  justify-content: space-between;
  align-items: center;
  margin-top:2.3rem;
  color:white;
  padding: 1rem 1.5rem;
}
.footer_contact, .footer_copyright, .footer_contact:hover, .footer_copyright:hover{
  margin:0;
  color:white;
  text-decoration: none;
}
.footer_goup{
  cursor:pointer;
}

@media (max-width: 1000px) {
  .infos{
    margin: 5rem 2rem 2rem 2rem;
  }
}
