.trade-in-module {
  width: 45rem;
  margin: 0 auto;
}

.trade-in-container:not(.hidden) {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

#trade-in-electric,
#trade-in-ice {
  flex-direction: column;
}

.trade-in-button {
  position: relative;
  border-radius: 8px;
  width: 22rem;
  height: 15rem;
  font-size: 1.8rem;
  font-weight: 700;
  background: #2b2c2d;
  cursor: pointer;
  color: white;
}
.trade-in-button:hover {
  box-shadow: 2px 2px 5px var(--gray);
}

.trade-in-button span {
  position: relative;
  z-index: 2;
}

#trade-in-electric-button::before,
#trade-in-ice-button::before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
  border-radius: 8px;
  z-index: 1;
}

#trade-in-electric-button::before {
  background-image: url('https://www.goodcar.co/hubfs/Trade%20In/electric-car.jpg');
}

#trade-in-ice-button::before {
  background-image: url('https://www.goodcar.co/hubfs/Trade%20In/petrol-car.jpg');
}

#form-integration-app .vehicle-form-group {
  margin-bottom: 1.25rem;
}
#form-integration-app .vehicle-form-group label {
  display: none;
}
#form-integration-app .vehicle-form-group .vehicle-form-select {
  -webkit-appearance: none;
  display: inline-block;
  width: 100% !important;
  height: auto !important;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.2rem;
  color: #000;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #333;
  border-radius: 0;
  padding: 12px;
  text-transform: none;
}

#form-integration-app .submit-buttons {
  display: inline-block;
  text-align: center;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 1rem;
  padding: .75rem 1rem;
  letter-spacing: .05px;
  line-height: 1;
  white-space: initial;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid #6fa8dc;;
  user-select: none;
  -webkit-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
  color: #fff;
  background: #6fa8dc;
}

#form-integration-app .submit-buttons:hover {
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
}

.toggle .toggle-bar {
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 12px;
  margin-top: 16px;
  border: 1px solid var(--lightgray);
  transition: border-bottom ease-out 0s;
  transition-delay: 200ms;
}

.toggle.active .toggle-bar {
  border-bottom: none;
}

.toggle .toggle-bar .toggle-icon::before {
  content: '+';
  width: 2em;
}

.toggle.active .toggle-bar .toggle-icon::before {
  content: '-';
}

.toggle .toggle-content {
  max-height: 0;
  transition: max-height ease 200ms;
  overflow: hidden;
  padding: 0 12px;
  border: 1px solid var(--lightgray);
  border-top: none;
}

.toggle.active .toggle-content {
  padding: 8px 12px;
  max-height: 9999px;
}