.info-meetings {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 0;
	border-top: solid 1px #f5f5f5;
}

.info-meetings__step {
	position: relative;
	text-align: center;
}

h2.info-meetings__title {
	position: relative;
	width: 100%;

	font-size: 22px;
	color: #252222;
}

.info-meetings__list {
	position: relative;
	width: 100%;
	max-height: 320px;
	padding: 0 20px 0 20px;
	overflow-y: auto;
	border-left: solid 5px #d72729;
}

.info-meeting {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px 20px;
	padding: 20px 0;
}

@media screen and (max-width: 550px) {
	.info-meeting {
		flex-direction: column;
		align-items: flex-start;
	};
}

.info-meeting:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 30px;
	display: block;
	width: calc(100% - 60px);
	height: 1px;
	background-color: #dfdfdf;
}

.info-meeting__content {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 640px;
}

@media screen and (max-width: 870px) {
	.info-meeting__content {
		flex-direction: column;
		align-items: flex-start;
	}
}

.info-meeting__date {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 260px;
}

.info-meeting__date:before {
	content: "";
	display: block;
	min-width: 19px;
	height: 15px;
	background-image: url('../img/arrow.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.info-meeting__accessibility {
	display: flex;
	align-items: center;
	gap: 10px;
}

.info-meeting__accessibility:before {
	content: "";
	display: block;
	min-width: 27px;
	height: 27px;
	background-image: url('../img/visio.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.info-meeting__reserve {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 7px 12px;
	background-color: transparent;
	border: solid 1px #d72729;
	border-radius: 50px;
	color: #d72729;
	font-size: 18px;
	white-space: nowrap;
}

/* @media screen and (max-width: 870px) {
	.info-meeting__reserve {
		margin: 0 auto;
	}
} */
