html {
  height: 100%;
}
body {
  font-family: 'Open Sans', sans-serif;
  color: #4A4A4A;
  height: 100%;
}

h1 {
  color: #07D1FA;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.colophon a {
  color: #4A4A4A;
}
.vehicle_description_body {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.quote {
  text-align: center;
}
.vehicle_specs_body {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
}
.specs {
  text-align: center;
}
iframe {
  max-width: 100% !important;
}
.illustrations {
  padding: 10px;
}
.vehicle_description_image {
  margin-bottom: 20px;
}
.vehicle_description_image img {
  width: 100%;
  max-width: 480px;
}

table {
  border-collapse: collapse;
  width: 100%;
}
table td,th {
  border: 1px solid #ddd;
  padding: 8px;
  word-wrap: break-word;
}
table tr:nth-child(even) {
  background-color: #f2f2f2;
}
table tr:hover {background-color: #ddd;}
.send-to-quote {
  background-color: #07CCF9;
  border-color: #07CCF9;
}
#send-to-quote .btn {
  padding: 15px;
  font-size: 16px;
  -webkit-animation: blink .3s;
  animation: blink .3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.btn {
  font-weight: 700;
  cursor: pointer;
}
.btn-primary {
  color: #fff;
  background-color: #07CCF9;
  border-color: #07CCF9;
}
.btn {
  display: inline-block;
  font-weight: normal;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@keyframes blink {
  0% { box-shadow: none; }
  2% { box-shadow: 0 0 20px #07CCF9; }
  4% { box-shadow: none; }
  6% { box-shadow: 0 0 20px #07CCF9; }
  8% { box-shadow: none; }
}