/**
 * Tabs
 */
.resp-tabs {
  display: flex;
  border-top-left-radius: 15px;
  flex-wrap: wrap;
  border-top-right-radius: 15px;
  text-align: center;
  place-content: center;
  padding-top: 10px;
}

.resp-tabs label {
  order: 1;
  display: block;
  padding: 1rem 2rem;
  margin-right: 0.2rem;
  cursor: pointer;
  background: #e8e8e8;
  font-weight: bold;
  transition: background ease 0.2s;
}

.resp-tabs .resp-tab {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  order: 99;
  flex-grow: 1;
  width: 100%;
  display: none;
  padding: 1rem;
  background: #fff;
}

.resp-tabs input[type="radio"] {
  display: none;
}

.resp-tabs input[type="radio"]:checked + label {
  background: #4b4f5f;
  color: #ffffff;
  border-radius: 5px;
}

.resp-tabs input[type="radio"]:checked + label + .resp-tab {
  display: block;
}

@media (max-width: 45em) {
  .resp-tabs .resp-tab,
  .resp-tabs label {
    order: initial;
  }

  .resp-tabs label {
    width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}
/**
   * Generic Styling
  */
.resp-tab-cotainer {
  border: 2px solid #DCE2F0;
  background: #ffffff;
  /* max-width: 60rem; */
  border-radius: 1px;
}
