/* list style tabs */
.resp-tabs-list {
  margin: 0px;
  padding: 0px;
}
.resp-tabs-list li {
	float: left;
	display: inline-block;
	list-style: none;
	font-size: 30px;
	line-height: 49px;
	color: #fff;
  background-color: #D60313;
	cursor: pointer;
	padding: 0 20px;
	margin-left: 2px;
}
.resp-tabs-list li:first-child {
	margin-left: 0;
}
.resp-tabs-list li.resp-tab-active {
	background-color: #EAEAEA;
  color: #333;
	border-bottom: 0; /* js */
}
/* tabs container */
.resp-tabs-container {
  clear: left;
  background-color: #EAEAEA;
  padding: 0px;
}
.resp-tab-content {
  display: none;
  padding: 30px;
}
.resp-content-active,
.resp-accordion-active {
  display: block;
}
/* accordion tabs title */
h2.resp-accordion {
  display: none;
  position: relative;
  font-size: 18px;
  line-height: 33px;
  cursor: pointer;
  background-color: #fff !important;
  padding: 0;
  margin: 0;
}
h2.resp-accordion:after {
  font-family: 'FontAwesome';
  content: "\f107";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  color: #D60313;
  line-height: 17px;
  background-color: #fff;
  border: solid 2px #979797;
  padding: 5px 8px;
}
h2.resp-accordion.resp-tab-active:after {
  content: "\f106";
}
h2.resp-accordion .resp-arrow {
  position: absolute;
  top: 50%;
  left: 0;
  right: 47px;
  z-index: 1;
  height: 2px;
  background-color: #3f3f3f;
  margin-top: -10px;
}
h2.resp-accordion .resp-accordion__label {
  position: relative;
  z-index: 2;
  background-color: #fff;
  padding-right: 15px;
}
.resp-easy-accordion h2.resp-accordion {
  display: block;
}
.resp-tab-content-active {
  display: block;
}


@media only screen and (min-width: 992px) and (max-width: 1199px) {
	
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
	
}


@media only screen and (max-width: 767px) {
  ul.resp-tabs-list {
    display: none;
  }
  h2.resp-accordion {
    display: block;
    padding-bottom: 20px;
  }
  .resp-tabs-container {
    background-color: #fff;
  }
  .resp-accordion-closed {
    display: none !important;
  }
  .resp-tab-content {
    background-color: #fff;
    padding: 0;
    padding-bottom: 20px;
  }
  .tabs .graphic .graphic__label {
    background-color: #fff;
  }
}