.offer-form {
	background-color: var(--subheader-bg-color);
  border-radius: 4px;
  padding: 40px;
}
@media (max-width: 1200px) {
  .offer-form {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .offer-form {
    padding: 20px;
  }
}
.offer-form label {
	font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}
.offer-form input, .offer-form textarea {
	background-color: white; 
  border-radius: 4px;
}
.offer-form input {
	height: 50px; 
}
.offer-form textarea {
  min-height: 150px;
}
.offer-form button {
	display: flex;
  width: 100%;
  justify-content: center;
}
/* Sidebar */
.offer-form-sidebar {
	background-color: var(--subheader-bg-color);
	padding: 40px;
  border-radius: 4px;
}
@media (max-width: 1200px) {
  .offer-form-sidebar {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .offer-form-sidebar {
    padding: 20px;
  }
}
.offer-form-sidebar .offer-form-sidebar__title {
	margin-bottom: 15px; 
}
.offer-form-sidebar .offer-form-sidebar__list {
	list-style: none;
  padding-left: 0;
  text-decoration: none;
  margin: 0;
}
.offer-form-sidebar .offer-form-sidebar__list li:not(:last-of-type) {
	margin-bottom: 10px; 
}
.offer-form-sidebar .offer-form-sidebar__list li a {
  text-decoration: none; 
  display: flex;
  align-items: baseline;
  gap: 10px;
  transition: color .4s ease;
}
@media (max-width: 1200px) {
  .offer-form-sidebar .offer-form-sidebar__list li a {
  	font-size: 14px;
  }
}
.offer-form-sidebar .offer-form-sidebar__list li a:hover {
  color: var(--highlight-color);
}
.offer-form-sidebar .offer-form-sidebar__list li a:hover i {
  background-color: var(--highlight-color);
}
.offer-form-sidebar .offer-form-sidebar__list li a i {
	width: 25px;
  height: 25px;
  background-color: var(--heading-text-color);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: background-color .4s ease;
}
/* USP List */
.usp-list li {
	font-size: 14px;
  display: flex;
	align-items: center;
}
.usp-list i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  color: #FFF !important;
  background-color: var(--highlight-color);
  font-size: 10px;
  align-items: center;
  justify-content: center;
}
/* Service Sidelink */
.service-sidelink-item {
	background-color: var(--subheader-bg-color);
  transition: background-color .4s ease, color .4s ease;
  border-radius: 4px;
}
.service-sidelink-item:hover {
  background-color: var(--heading-text-color);
  color: #FFF;
}
@media (max-width: 768px) {
  .service-sidelink-item a {
    margin-bottom: 0; 
  }
}
/* Popup */
.overlay-container.open .overlay-content {
	padding: 0; 
}
.overlay-container.open .offer-form {
  position: relative;
	background-color: unset;
  margin-top: 0 !important;
}
.overlay-container.open .offer-form h2 {
	text-align: start;
  font-size: 25px;
}
.overlay-container.open .offer-form__close {
	position: absolute;
  right: 10px;
  top: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: color .4s ease;
}
.overlay-container.open .offer-form__close:hover {
	color: var(--highlight-color);
}
/* Hide close button on textarea page */
.overlay-container.open .offer-form .cancel-offer-request, .offer-form-textpage .offer-form__close {
	display: none; 
}