/* src/components/tab.sass */
.pitaya_tabs {
  box-sizing: content-box;
  display: block;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  z-index:0;
}
.pitaya_tabs [class^=tab] label,
.pitaya_tabs [class*=" tab"] label {
  color: #fe442b;
  cursor: pointer;
  display: block;
  font-size: 1.2em;
  font-weight: 300;
  line-height: 1em;
  padding: 1rem 0;
  text-align: center;
}
.pitaya_tabs [class^=tab] [type=radio],
.pitaya_tabs [class*=" tab"] [type=radio] {
  border-bottom: 1px solid rgba(100, 100, 100, 0.5);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pitaya_tabs [class^=tab] [type=radio]:hover, .tabs [class^=tab] [type=radio]:focus,
.pitaya_tabs [class*=" tab"] [type=radio]:hover,
.pitaya_tabs [class*=" tab"] [type=radio]:focus {
  border-bottom: 2px solid #3240a8;
}
.pitaya_tabs [class^=tab] [type=radio]:checked,
.pitaya_tabs [class*=" tab"] [type=radio]:checked {
  border-bottom: 3px solid #3d40e3;
}
.pitaya_tabs [class^=tab] [type=radio]:checked + div,
.pitaya_tabs [class*=" tab"] [type=radio]:checked + div {
  opacity: 1;
}
.pitaya_tabs [class^=tab] [type=radio] + div,
.pitaya_tabs [class*=" tab"] [type=radio] + div {
  opacity: 0;
  padding: 2rem 0;
  position: relative;
  top: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pitaya_tabs .tab-2 {
  width: 50%;
}
.pitaya_tabs .tab-2 [type=radio] + div {
  width: 200%;
  left: 200%;
}
.pitaya_tabs .tab-2 [type=radio]:checked + div {
  left: 0;
}
.pitaya_tabs .tab-2:last-child [type=radio] + div {
  left: 100%;
}
.pitaya_tabs .tab-2:last-child [type=radio]:checked + div {
  left: -100%;
}

.pitaya_tabs .tab-3 {
  width: 33.333%;
}
.pitaya_tabs .tab-3 [type=radio] + div {
  width: 300%;
  left: 300%;
}
.pitaya_tabs .tab-3 [type=radio]:checked + div {
  left: 0;
}
.pitaya_tabs .tab-3:nth-child(2) [type=radio] + div {
  left: 200%;
}
.pitaya_tabs .tab-3:nth-child(2) [type=radio]:checked + div {
  left: -100%;
}
.pitaya_tabs .tab-3:nth-child(3) [type=radio] + div {
  left: 100%;
}
.pitaya_tabs .tab-3:nth-child(3) [type=radio]:checked + div {
  left: -200%;
}

.pitaya_tabs .tab-4 {
  width: 25%;
}
.pitaya_tabs .tab-4 [type=radio] + div {
  width: 400%;
  left: 400%;
}
.pitaya_tabs .tab-4 [type=radio]:checked + div {
  left: 0;
}
.pitaya_tabs .tab-4:nth-child(2) [type=radio] + div {
  left: 300%;
}
.pitaya_tabs .tab-4:nth-child(2) [type=radio]:checked + div {
  left: -100%;
}
.pitaya_tabs .tab-4:nth-child(3) [type=radio] + div {
  left: 200%;
}
.pitaya_tabs .tab-4:nth-child(3) [type=radio]:checked + div {
  left: -200%;
}
.pitaya_tabs .tab-4:nth-child(4) [type=radio] + div {
  left: 100%;
}
.pitaya_tabs .tab-4:nth-child(4) [type=radio]:checked + div {
  left: -300%;
}

.pitaya_tabs .tab-5 {
  width: 20%;
}
.pitaya_tabs .tab-5 [type=radio] + div {
  width: 500%;
  left: 500%;
}
.pitaya_tabs .tab-5 [type=radio]:checked + div {
  left: 0;
}
.pitaya_tabs .tab-5:nth-child(2) [type=radio] + div {
  left: 400%;
}
.pitaya_tabs .tab-5:nth-child(2) [type=radio]:checked + div {
  left: -100%;
}
.pitaya_tabs .tab-5:nth-child(3) [type=radio] + div {
  left: 300%;
}
.pitaya_tabs .tab-5:nth-child(3) [type=radio]:checked + div {
  left: -200%;
}
.pitaya_tabs .tab-5:nth-child(4) [type=radio] + div {
  left: 200%;
}
.pitaya_tabs .tab-5:nth-child(4) [type=radio]:checked + div {
  left: -300%;
}
.pitaya_tabs .tab-5:nth-child(5) [type=radio] + div {
  left: 100%;
}
.pitaya_tabs .tab-5:nth-child(5) [type=radio]:checked + div {
  left: -400%;
}
.pitaya_tabs .tab-5:nth-child(6) [type=radio] + div {
  left: 0;
}
.pitaya_tabs .tab-5:nth-child(6) [type=radio]:checked + div {
  left: -500%;
}

