.bms_button_tel {
	color: #fff;
	background-color: #fff;
	padding: 13px;
	margin-left: 30px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 25%);
	display: block;
}

.bms_overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 140ms;
	visibility: hidden;
	opacity: 0;
	overflow: auto;
	z-index: 9999999999;
}

.active {
	visibility: visible;
	opacity: 1;
}

.bms_popup {
	margin: 120px 20px;
	max-width: 450px;
	width: 90%;
	float: right;
	right: 80px;
	border-radius: 15px;
	background: #fff;
	position: relative;
	transition: opacity 1.4s ease-in-out;
}

.bms_popup_items_header {
	background-color: var(--oxy_color_2);
	display: flex;
	justify-content: space-between;
	padding: 15px 30px;
	align-items: center;
	min-height: 80px;
	gap: 50px;
	position: relative;
}

.bms_popup_items:not(:last-child) .bms_popup_items_header::after {
    position: absolute;
    bottom: -50%; /* Décale la ligne SOUS le numéro */
    left: 30px;
    width: calc(100% - 60px);
    height: 1px;
    background-color: white;
    content: "";
}

.bms_popup_items_header span {
	font-family: intro;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
}

.bms_popup_content_header {
	position: relative;
	background-color: #2696A9;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

.bms_popup .bms_cross {
	display: block;
	position: absolute;
	z-index: 999;
	width: 40px;
	height: 26px;
	top: 16px;
	right: 10px;
	cursor: pointer;
}

.bms_popup .bms_cross span {
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #fff;
	transition: 0.3s all;
	border-radius: 15px;
}

.bms_cross span:first-child {
	transform: rotate(45deg);
	top: 50%;
}

.bms_cross span:last-child {
	bottom: 0;
	right: 0;
	transform: rotate(-45deg);
	top: 50%;
}

.bms_popup .bms_popup_content {
	overflow: auto;
	display: flex;
	flex-direction: column;
}

.bms_popup .bms_popup_content h2 {
	padding-top: 20px;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 20px;
	color: #fff;
}

.bms_popup_item_phone {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	padding-top: 0px;
	padding-left: 30px;
	padding-right: 50px;
	padding-bottom: 20px;
	background-color: #003d78;
	
}

.bms_popup_item_phone img {
	width: 16px;
	height: 19px;
	margin-top: 1px;
}

.bms_popup .bms_popup_content .bms_popup_items {
	display: flex;
	flex-direction: column;
}

.bms_popup_items a,
.bms_popup_items a:visited {
	text-decoration: none;
	color: #fff;
}

.bms_popup_logo img {
	width: 45px;
	height: 45px;
	object-fit: contain;
}

.bms_popup_logo {
	display: flex;
	gap: 20px;
}

.bms_button_container {
	display: flex;
	gap: 20px;
	position: relative;
}

.marque_gamme_img {
    position: relative;
    right: auto;
    transform: none;
    display: flex;
}

.marque_gamme_img img {
    width: auto;
    object-fit: contain;
}

.marque_gamme_img img[alt="gamme-bmw-motorrad"],
.marque_gamme_img img[alt="ram"]  {
	width: 150px;
}

.marque_gamme_img img[alt="Logo-Auto76-blanc"],
.marque_gamme_img img[alt="gamme-mini"] {
	width: 70px;
}

.marque_gamme_img img[alt="gamme-ram"] {
	width: 90px;
}

.marque_gamme_img img[alt="gamme-bmw"]{
	width: 50px;
}

@media screen and (max-width: 1600px) {

	.marque_gamme_img {
		position: relative;
		right: auto;
		transform: none;
	}

}

@media screen and (max-width: 1100px) {}

@media screen and (max-width: 767px) {

	.bms_popup {
		right: 0px;
	}

}

@media screen and (max-width: 480px) {

	.bms_popup_items_header {
		flex-direction: column;
		gap: 20px;
		align-items: inherit;
	}

	.marque_gamme_img {
		display: none;
	}

}