@charset "UTF-8";
/* onglet dans la page annonce */
.tabs-list , .connexion-list{
	list-style: none;
	margin: 0;
	padding: 0;
}

.tabs-list li ,
.connexion-list li {
	padding: 15px 30px;
	background: #fff;
	display: inline-block;
	position: relative;
	top: 1px;
	cursor: pointer;
	border: 1px solid #ccc;
}

.tabs-list  li:hover,
.connexion-list li:hover{
	color: #18ba60;
}

.tabs-list .active ,
.connexion-list .active{
	border-bottom: 1px solid #fff;
	z-index: 2;
}

.tabs-content ,
.connexion-content{
	background: #fff;
	border: 1px solid #ccc;
	position: relative;
}

.tabs-content>div ,
.connexion-content>div{
	padding: 20px;
	min-height: 200px;
}

.tabs-content>div:not(:first-child) ,
.connexion-content>div:not(:first-child){
	display: none;
}


.bar-progression {
	display: flex;
	flex-direction: row;
	align-items: center;
	height: 100%;
	justify-content: center;
	margin: 30px 0px;
}

.step-on {
	background-color: #18ba60;
	transition: .9s all linear;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	background-image: url(/images/tick.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto;
}

.step-on:hover {
	background-color: rgb(124, 24, 255);
}

.step-off:hover {
	background-color: rgb(142, 142, 148);
}

.step-off {
	background-color: rgb(231, 219, 210);;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	background-image: url(/images/wait.png);
	transition: .5s all linear;
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto;
}

.bar {
	width: 100px;
	height: 3px;
	background-color: rgb(231, 219, 210);
	display: flex;
	justify-content: left;
}

.bar_progress {
	width: 3px;
	height: 0%;
	background-color: #18ba60;
	transition: .5s all linear;
	display: flex;
}

.radio-buttons {
	margin: 10px 0px;
	width: 100%;
}

.custom-radio input {
	display: none;
}

.radio-btn {
	width: 55px;
	height: 55px;
	border: 3px solid transparent;
	display: inline-block;
	border-radius: 10px;
	position: relative;
	text-align: center;
	box-shadow: 0 0 20px #c3c3c367;
	cursor: pointer;
}

.radio-btn>i {
	color: #ffffff;
	background-color: #18ba60;;
	font-size: 20px;
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%) scale(4);
	border-radius: 50px;
	padding: 3px;
	transition: 0.2s;
	pointer-events: none;
	opacity: 0;
}

.radio-btn .hobbies-icon {
	width: 42px;
	height: 23px;
	position: absolute;
	top: 54%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.radio-btn .hobbies-icon i {
	color: #8373e6;
	line-height: 80px;
	font-size: 60px;
}

.radio-btn .hobbies-icon h3 {
	color: black;
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
  	font-size: 1.2rem;
  	font-weight: 600;
}

.custom-radio input:checked+.radio-btn {
	border: 3px solid #18ba60;;
}

.custom-radio input:checked+.radio-btn>i {
	opacity: 1;
	transform: translateX(-50%) scale(1);
}