.house {
  z-index: 2;
  flex-direction: row;
  overflow-y: scroll !important;

}

.house .house-level:last-child {
  margin-bottom: 1em;
}

.tag-line {
  font-weight: bolder;
  font-size: 1.2em;
}

.roof-tiles {
  margin-top: 1em;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 50px solid black;
}

.roof {
  max-height: 200px;
}

.house-level {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: auto;
}

.garage {
  flex: 1;
  align-self: stretch;
  margin: 0.7em;
  padding: 0.5em;
  /* border: gray solid 1px; */
  border-radius: 10px;
  background-color: #B17AB9;
}

.garage:not(:first-child) {
  margin-left: 0.35em;
}

.garage:not(:last-child) {
  margin-right: 0.35em;
}

.garage-door-opening {
  padding: 1px;
  box-shadow: inset 0px -6px 8px 0px rgba(0,0,0,0.75);
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: white;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;

  position: relative;
}

.garage-door {
  z-index: 10;
  width: 100%;
  border-radius: 2px;
  border: #B9B9B9 solid 2px;
  position: absolute;
}

.garage-door-panel {
  height: 1em;
  background-color: #EBEBEB;
  border-bottom: 2px solid #505050;
  position: relative;
}

.garage-door-panel.bottom-panel {
  height: 0.5em;
  background-color: #EBEBEB;
  border-bottom: none;
}

.garage-door .offer {
  z-index: 1;
}

@keyframes slide-up {
  0% {
    transform: translateY(0);
  }
  100% {
      transform: translateY(-85%);
  }
}

.garage-door.open {
	-webkit-animation: slide-up 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-up 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.flex {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.row {
  flex-direction: column;
}

.column {
  flex-direction: row;
}

.offer {
  color: black;
  padding-bottom: 1em;
  width: 100%;
  height: 100%;
}

.offer .header {
  font-size: 1.5em;
}

.offer .header, .offer .subheader {
  margin-top: 1em;
}

.offer .subheader {
  margin-top: 1em;
  margin-bottom: 1em;
}

.cta {
  text-decoration: none;
}

.subheader .cost {
  margin-left: 1em;
  max-width: 60px;
}

.pricing-plan {
  margin: 0 !important;
}

.extras, .hourly {
  font-size: 0.7em;
}

.icon {
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon.wash {
  background-image: url("images/wash.svg");
}

.icon.battery {
  background-image: url("images/battery.svg");
}

.icon.gas {
  background-image: url("images/gas.svg");
}

.icon.wipers {
  background-image: url("images/wipers.svg");
}

@keyframes slide-up {
  0% {
    transform: translateY(0);
  }
  100% {
      transform: translateY(-85%);
  }
}
