/* Repair Page */
#repair-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: center;
  margin-right: 10px;
}

#repair-cards-row {
  display: flex;
  margin: 0px;
}

#repair-cards .card {
  border-radius: 5px;
}

#repair-cards .card-header {
  text-align: center;
  background-color: #f2f2f2;
  font-size: x-large;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  flex: 1;
}

#repair-cards .card-body {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
#warranty-card {
  border-radius: 5px;
  margin-bottom: 10px;
}

#warranty-card h3 {
  margin-bottom: 0px;
}

#repair-time-card img {
  margin-left: 10px;
}

#repair-request-div {
  flex: 1;
  border-radius: 5px;
  display: flex;
}
@media (max-width: 767px) {
  .row {
    flex-direction: column;
    align-items: center;
    margin: 10px;
  }
  #repair-cards {
    flex-direction: column;
    margin-right: 0px;
    width: 100%;
    margin-bottom: 10px;
  }
  #repair-request-div {
    width: 100%;
  }
  #products-we-repair #series-card {
    margin-right: 0px;
    margin-bottom: 10px;
  }
  #products-we-repair #series-card .card-body {
    justify-content: center;
  }
}