#offert-container {
  overflow: hidden;
  background-color: #f1f1f1;
  padding: 20px 10px; 
  transition: 0.4s; 
  position: fixed; 
  width: 100%;
  z-index: 10000;
  bottom: 0;
	height: 131px;
}
#offert-container.collapsed {
	padding: 10px;
	height: 35px;
	
}
#offert-container .offert-body {
	max-width: 800px;
	margin: auto;
}
#offert-container .offert-title {
	font-size: 28px;
	transition:0.4s;
	opacity: 1;
	color: rgb(116, 116, 116);
}
#offert-container.collapsed .offert-title {
	opacity: 0;
}
#offert-container .secondary-text {
	transition:0.4s;
	margin-top: 20px;
	color: rgb(116, 116, 116);
}
#offert-container.collapsed .secondary-text {
	margin-top: -48px;
	z-index: 1000;
	position: relative;
	color: rgb(116, 116, 116);
}
#offert-container a {
  color: #000;
background: #fecc00;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
  transition: 0.4s;
	margin-left: 20px;
}

#offert-container a:hover {
  background-color: #fca000;
	color: #fff;
}

.close-offert {
	position: absolute;
	top: 0px;
	right: 0;
	font-size: 32px;
	padding: 5px;
	/* height: 42px; */
	background: #ddd;
	line-height: 32px;
	cursor: pointer;
	transition: 0.4s;
}
.close-offert:hover {
	background: #c4c4c4;
}

@media screen and (max-width: 580px) {
  #offert-container {
    padding: 20px 10px !important;
  }
	#offert-container .offert-title {
	font-size: 19px;
		padding-right: 32px;
	}
	#offert-container.collapsed .secondary-text {
	margin-top: -70px;	
}
	#offert-container a {
	margin-left:14px;
}
	#offert-container {
		font-size: 14px
	}

}