#callback-button-container-mobile{
	position: fixed;
	z-index: 999; 
	width: 100%;
	height: 60px;
	left: 0;
	bottom: 0;
	background-color: #fff;
	padding: 5px 10px;
	display: flex;
	align-items: center;
	box-shadow: 0 0 2px 0 rgba(0, 0, 0, .2);
	justify-content: space-evenly;
}
	#callback-button-container-mobile #callback-button-mobile{
		background-color: #ddd;
		color: #333;
		border: none;
		height: auto;
		border-radius: 0;
		width: auto;
		font-size: 15px;
		box-shadow: 0 0 2px 0 rgba(0, 0, 0, .2);
		padding: 5px 10px;
		display: flex;
		align-items: center;
	}
#callback-button-container {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999;
}
#callback-button-container {
	bottom: <?php echo get_option('callback_button_button_bottom'); ?>px;
	right: <?php echo get_option('callback_button_button_right'); ?>px;
}
#callback-button {
	background-color: #007bff;
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	font-size: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
}

#callback-button {
	box-shadow: 0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);
	background-color: <?php echo get_option('callback_button_button_color'); ?>;
	width: <?php echo get_option('callback_button_button_size'); ?>px;
	height: <?php echo get_option('callback_button_button_size'); ?>px;
	/* Ajoutez d'autres styles CSS selon vos besoins */
}
#callback-button > span{
	display: flex;
	flex-direction: column;
}
#callback-button:hover {
	/* background-color: #0056b3; */
	filter: brightness(90%);
}

#callback-form-mobile,
#callback-form {
	display: none;
	position: fixed;
	bottom: 100px;
	right: 110px;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 300px;
	padding: 20px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}

#phone-number-mobile,
#phone-number {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

#callback-form-content-mobile,
#callback-form-content {
	text-align: center;
}

#callback-form-mobile input,
#callback-form-mobile select,
#callback-form input,
#callback-form select {
	width: calc(100% - 20px);
	margin-bottom: 10px;
	margin-top: 10px;
	padding: 5px;
}

#callback-form-mobile button,
#callback-form button {
	/* background-color: #007bff; */
	background-color: <?php echo get_option('callback_button_button_color'); ?>;
	color: #fff;
	border: none;
	border-radius: 3px;
	padding: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
}

#callback-form-mobile button:hover,
#callback-form button:hover {
	/* background-color: #0056b3; */
	filter: brightness(90%);
}

#callback-error-mobile,
#callback-error {
	color: red;
	margin-bottom: 10px;
}

#callback-success-mobile,
#callback-success {
	color: green;
	margin-bottom: 10px;
}
