body {font-family: Arial;}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: 1;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 24px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab .active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

/* ----------------Style the detail tabs---------------- */
/* Style the tab */
.mytabs {
  display: flex;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 50px auto;
  Padding: 25px;
}

/* remove radio button */
.mytabs input[type="radio"]{
    display: none;
}

/* Style the tab lable */
.mytabs label {
  background: #e2e2e2;
  border: 1px solid #ccc;
  border-top: none;
  font-weight: bold;
  order: 0;
  padding: 6px 12px;
}

/* Style the tab */
.mytabs .dtab {
  Width: 100%;
  order: 1;
  display: none;
  background: #fff;
}
.mytabs .dtab h2{
  font-size: 3em;
}


.mytabs input[type="radio"]:checked + label + .dtab {
    display: block;
}

.mytabs input[type="radio"]:checked + label {
    background: #fff;
}

