/* Motorcycle Page Styles */

/* Accordion/Wrapper Styles */
body .wrapper {
  width: 80%;
  margin: 0 auto;
  background: white;
  border-radius: 4px;
  position: relative;
}

/* Wrapper variant for forza-125 (full width with max-width) */
body .wrapper.full-width {
  width: 100%;
  max-width: 1280px;
}

body .wrapper label {
  display: block;
  position: relative;
  color: #484848;
  overflow: hidden;
  cursor: pointer;
  height: 37px;
  -webkit-transition: text-indent 0.2s;
  text-indent: 20px;
}

body .wrapper ul {
  margin: 0;
  padding: 0;
}

body .wrapper li {
  color: red;
  list-style-type: none;
  display: block;
  width: 100%;
  padding: 15px 0px;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

body .wrapper input[type=checkbox] {
  display: none;
}

.wrapper span {
  height: 3px;
  position: absolute;
  width: 0px;
  display: block;
  top: 37px;
  background: #38B087;
}

.wrapper .content {
  height: 0;
  height: auto;
  position: relative;
  top: 4px;
}

.wrapper h3 {
  padding: 10px;
  font-weight: 700;
  background: #DADADA;
  color: #484848;
}

.wrapper .lil_arrow {
  width: 10px;
  height: 10px;
  border-top: 2px solid #484848;
  border-right: 2px solid #484848;
  float: right;
  position: relative;
  top: -23px;
  right: 27px;
  transform: rotate(45deg);
}

.wrapper input[type=checkbox]:checked + label > .content {
  display: block;
}

.wrapper input[type=checkbox]:checked + label > span {
  display: none;
}

body .wrapper input[type=checkbox]:checked + label > .lil_arrow {
  -webkit-transition-timing-function: cubic-bezier(0, -0.55, 0.265, 1.55);
  transform: rotate(135deg);
}

body .wrapper input[type=checkbox]:checked + label {
  display: block;
  height: auto;
  transition: height 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0, -0.55, 0.265, 1.55);
}

body .wrapper input[type=checkbox]:not(:checked) + label {
  display: block;
  transition: height 0.8s;
  height: 37px;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  display: none;
}

/* Motorcycle Home/Video Container */
.home {
  position: relative;
}

.video h2,
.video p {
  position: absolute;
}

/* Motorcycle Slider Styles */
.mc-slider {
  margin: 0 auto;
  clear: both;
}

/* Motorcycle Specification Tables */
.mc-spec-table {
  margin: 0 auto 50px;
  width: 80%;
}

.mc-spec-table tr {
  padding: 10px;
  width: 100%;
}

.mc-spec-table td {
  padding: 10px;
  border-bottom: 1px solid #dadada;
}

.mc-spec-table td:first-child {
  border-right: 1px solid #dadada;
  width: 50%;
}

.mc-spec-table td:last-child {
  width: 50%;
}

