.tabs-container *, .tabs-container *:before, .tabs-container *:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.tabs-container html, .tabs-container body {
  height: 100%;
}

.tabs-container body {
  font: 14px/1 'Open Sans', sans-serif;
  color: #555;
  background: #eee;
}

.tabs-container h1 {
  padding: 50px 0;
  font-weight: 400;
  text-align: center;
}

.tabs-container p {
  margin: 0 0 20px;
  line-height: 1.5;
  text-align: justify;
}

.tabs-container main {
  min-width: 320px;
  max-width: 800px;
  padding: 50px;
  margin: 0 auto;
  background: #fff;
}

.tabs-container section {
  display: none;
  padding: 20px 10px 3px 10px;
  border: 1px solid #ddd;
}

.tabs-container input {
  display: none;
}

.tabs-container label {
  display: inline-block;
  margin: 0 0 -1px;
  padding: 15px 25px;
  font-weight: 400;
  text-align: center;
  color: #bbb;
  text-transform: uppercase;
  border: 1px solid #D3D3D3;
  color: #989898;
}

.tabs-container label i {
  float: left;
  width: 100%;
  font-size: 45px;
}

.tabs-container label span {
  line-height: 24px;
  padding-left: 7px;
  display: inline-block;
}

.tabs-container label:before {
  font-family: fontawesome;
  font-weight: normal;
  margin-right: 10px;
}

.tabs-container label:hover {
  color: #D3D3D3;
  background: #231f20;
  cursor: pointer;
}

.tabs-container input:checked + label {
  color: #555;
  color: #04415E;
  font-weight: 600;
  position: relative;
}

.tabs-container input:checked + label:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  z-index: 9999999999;
}

.tabs-container label i {
  position: relative;
}

.tabs-container label i:after {
  content: "";
  width: 0%;
  height: 2px;
  background: #04415E;
  z-index: -1;
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tabs-container #tab1:checked ~ #content1,
.tabs-container #tab2:checked ~ #content2,
.tabs-container #tab3:checked ~ #content3,
.tabs-container #tab4:checked ~ #content4,
.tabs-container #tab5:checked ~ #content5 {
  display: block;
}

@media screen and (max-width: 650px) {
  .tabs-container label {
    font-size: 0;
  }
  .tabs-container label:before {
    margin: 0;
    font-size: 18px;
  }
}

@media screen and (min-width: 1100px) {
  .tabs-container section h2 {
    display: none;
  }
  .tabs-container [type="radio"]:not(:checked) + label, .tabs-container [type="radio"]:checked + label {
    width: 20%;
    margin-right: -5px;
  }
}

@media screen and (max-width: 400px) {
  .tabs-container section {
    margin-top: -5px;
  }
  .tabs-container label {
    padding: 13px;
  }
  .tabs-container label span {
    display: none;
  }
}

@media screen and (max-width: 320px) {
  .tabs-container section {
    display: block !important;
  }
  .tabs-container section h2 {
    font-size: 19px;
    font-weight: bold;
  }
  .tabs-container label {
    display: none !important;
  }
}
/*# sourceMappingURL=tabs.css.map */