@charset "utf-8";
.tabs-warpper{
  display:flex;
  flex-direction: column;
  align-items: center;
}
.tab{
  cursor: pointer;
  padding:10px 20px;
  margin:0px 2px;
  background:#1d2859;
  display:inline-block;
  color:#fff;
  border-radius:3px 3px 0px 0px;
  box-shadow: 0 0.1rem 0.4rem #00000080;
	min-height: 50px;
	max-width: 140px;
	overflow: hidden;
}
.panels{
  background:#fffffff6;
  box-shadow: 0 0.5rem 0.5rem #00000080;
  min-height:170px;
  width:100%;
  max-width:700px;
  border-radius:3px;
  overflow:hidden;
  padding:20px;  
  margin-bottom: 1.5rem;
}
.panel{
  display:none;
  animation: fadein .8s;
  overflow:visible!important;
}
@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
.panel-title{
  font-size:16px;
  margin-bottom: 10px;
  font-weight:bold
}
.radio{
  display:none;
}
#one:checked ~ .panels #one-panel,
#two:checked ~ .panels #two-panel,
#three:checked ~ .panels #three-panel,
#four:checked ~ .panels #four-panel{
  display:block
}
#one:checked ~ .tabs #one-tab,
#two:checked ~ .tabs #two-tab,
#three:checked ~ .tabs #three-tab,
#four:checked ~ .tabs #four-tab

{
  background:#fffffff6;
  color:#000;
  border-top: 3px solid #1d2859;
}