/* REQUIRED for core functionality */
.responsive-tabs__heading {
  display: none;
}
.responsive-tabs__list__item {
  display: inline;
  cursor: pointer;
}
@media (max-width: 767px) {
  .responsive-tabs__list {
    display: none;
  }
  .responsive-tabs__heading {
    display: block;
    cursor: pointer;
  }
  .responsive-tabs__panel--closed-accordion-only {
    display: none;
  }
}
@media (min-width: 768px) {
  .responsive-tabs__panel--closed-accordion-only {
    display: block !important;
  }
}
/* END - Required for core functionality */
/* Tab styles */
.responsive-tabs-wrapper {
  clear: both;
  zoom: 1;
}
.responsive-tabs-wrapper:before, .responsive-tabs-wrapper:after {
  content: "";
  display: table;
}
.responsive-tabs-wrapper:after {
  clear: both;
}
.responsive-tabs__heading:focus, .responsive-tabs__list__item:focus {
  outline: none;
}
.responsive-tabs__heading--active:focus, .responsive-tabs__list__item--active:focus {
  outline: none !important;
}
.responsive-tabs__list {
  margin: 2em 0 0 0;
  padding: 0;
  padding-bottom: 5px;
  font-family: 'Teko', sans-serif;
  font-weight: 600;
  font-size: 1.0em;
  text-transform: uppercase;
}
.responsive-tabs__list__item {
  padding: 10px 20px;
  margin-right: 1em;
}
.responsive-tabs__list__item:hover {
  background: none;
  color: #656565;
}
.responsive-tabs__list__item--active, .responsive-tabs__list__item--active:hover {
  background: #fff;
  color: #E2231A;
  border-top: 5px solid #E2231A;
  border-left: 1px solid #DFDFDF;
  border-right: 1px solid #DFDFDF;
}
.responsive-tabs__panel {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .responsive-tabs__heading {
    padding: 0.5em;
    position: relative;
  }
  .responsive-tabs__heading:after {
    content: "";
    display: block;
    position: absolute;
    right: 20px;
    top: 40%;
    width: 0;
    height: 0;
  }
  .responsive-tabs__heading:hover, .responsive-tabs__heading--active:hover {
    background-color: none;
  }
  .responsive-tabs__heading--active {
    background: #fff;
  }
  .responsive-tabs__heading--active:after {
    border-top: 0;
  }
}
/* Tab styles end */