﻿@import url(https://fonts.googleapis.com/css?family=Raleway:100,200,300);

.tabs-wrapper {
  margin: 0;
}
.tabs-wrapper input[type=radio] {
  display: none;
}
.tabs-wrapper label {
  transition: all 0.3s ease-in-out;
  display: inline-block;
  cursor: pointer;
  color: #fff;
  width:auto;
  height: 3em;
    font-weight: 400;
    font-size: 15px;
    background: #122e44;
    text-align: center;
    padding: 0 10px;
    line-height: 3em;
    margin-bottom:3px;
}
@media screen and (max-width: 1600px) {
  .tabs-wrapper label {
    width:  auto;
  }
}
@media screen and (max-width: 900px) {
  .tabs-wrapper label {
    width:  auto;
  }
}
@media screen and (max-width: 600px) {
  .tabs-wrapper label {
    width: 100%;
    display: block;
    border-bottom: 2px solid #4D4C47;
  }
}
.tabs-wrapper label:last-of-type {
  border-bottom: none;
}
.tabs-wrapper label:hover {
  background: #fcb041;
}
.tabs-wrapper input[type=radio]:checked + label {
  background: #fcb041;
  color: #fff;
}
.tabs-wrapper .tab-body {
  position: absolute;
  top: -9999px;
  opacity: 0;
  padding: 10px 0;
  transition: opacity 0.5s ease-in;
}
@media screen and (max-width: 600px) {
  .tabs-wrapper {
    margin: 0;
  }
}

.tab-body-wrapper {
  background: #fff;
  border-top: #fcb041 5px solid;
}
@media screen and (max-width: 600px) {
  .tab-body-wrapper {
    border: none;
  }
}

#tab1:checked ~ .tab-body-wrapper #tab-body-1, #tab2:checked ~ .tab-body-wrapper #tab-body-2, #tab3:checked ~ .tab-body-wrapper #tab-body-3, #tab4:checked ~ .tab-body-wrapper #tab-body-4, #tab5:checked ~ .tab-body-wrapper #tab-body-5, #tab6:checked ~ .tab-body-wrapper #tab-body-6 {
  position: relative;
  top: 0px;
  opacity: 1;
}