
.tabs-container{
  position: relative;
  width: 120px;
  height: 100vh;
  float: left;
  z-index: 20;

}
/* tabs names */
.tabs-container label{
  position: relative;
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
  font-size: 13px;
  color: #000;
  cursor: pointer;
  user-select: none;
}

/* Hover effect on tabs names */
.tabs-container label:hover{
 background: rgba(0, 0, 0, 0.2);

}
/* Content area for tabs */
.tab-content{
  position: relative;
  background: #eee;
  width: calc(100% - 120px);
  min-height: 100vh;
  padding: 15px;
  float: left;
  box-sizing: border-box;
  z-index: 19;
  display: none;
}

.tab-content:after{
  content: "";
  clear: both;

}
/* Hide input radio from users */
input[name="tab"]{
 display: none;
}

/* Show tab when input checked */
#tab0:checked ~ .tabs-container ~ #content0,
#tab1:checked ~ .tabs-container ~ #content1,
#tab2:checked ~ .tabs-container ~ #content2,
#tab3:checked ~ .tabs-container ~ #content3,
#tab4:checked ~ .tabs-container ~ #content4,
#tab5:checked ~ .tabs-container ~ #content5,
#tab6:checked ~ .tabs-container ~ #content6,
#tab7:checked ~ .tabs-container ~ #content7,
#tab8:checked ~ .tabs-container ~ #content8,
#tab9:checked ~ .tabs-container ~ #content9,
#tab10:checked ~ .tabs-container ~ #content10{
 display: block;
/* animation: slide 0.5s forwards;*/
}
/* Active Tab Name */
#tab0:checked ~ .tabs-container #label0,
#tab1:checked ~ .tabs-container #label1,
#tab2:checked ~ .tabs-container #label2,
#tab3:checked ~ .tabs-container #label3,
#tab4:checked ~ .tabs-container #label4,
#tab5:checked ~ .tabs-container #label5,
#tab6:checked ~ .tabs-container #label6,
#tab7:checked ~ .tabs-container #label7,
#tab8:checked ~ .tabs-container #label8,
#tab9:checked ~ .tabs-container #label9,
#tab10:checked ~ .tabs-container #label10{
   background: black;
   color:white;
}

/* Slide animation for tab contents */
@keyframes slide{
   from{
       left: -100%;
       opacity: 0;
   }
   to{
       left: 0;
       opacity: 1;
   }

}
