  /*
    Theme Name: Classic toy store child theme
    Theme URI: http://www.udiea.com/
    Description: My custom child theme for [Classic Toy Store]
    Author: Krsna Buti
    Author URI: http://www.udiea.com/
    Template: classic-toy-store
    Version: 1.0.0
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Tags: light, dark, two-columns, flexible-header, responsive-layout, accessibility-ready
    Text Domain: mychildtheme
    */

.tabs [id^="tab"]:checked + label {   
  background-color: black;
  color: #fff;
}
.tabs [id^="tab"]:checked ~ [id^="tab-panel"] {
  display: block;
}

.tabs {
  list-style: none; 
  position: relative; 
  margin: 0;
  padding: 0;
  width: 100%;  
  font-family: sans-serif
}
.tabs li {
  display: inline-block;
}
.tabs input[type="radio"] {
  display: none;
}
.tabs label {
  display: block;
  cursor: pointer;
  padding: 10px 15px;
  border: 2px solid black;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
}
.tabs .tab-panel {  
  display: none;
  overflow: hidden;
  width: 100%;  
  position: absolute;
  left: 0;
  border-top: 2px solid black;
}