@charset "utf-8";
/* CSS Document */

.tab-wrap {
  transition: 0.3s box-shadow ease;
  border-radius: 6px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  list-style: none;
  background-color: lightgray;
  margin: 0px 0px 5px 0px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.tab-wrap:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), 0 3px 3px rgba(0, 0, 0, 0.1);
}
.tab {
  display: none;
}
.tab:checked:nth-of-type(1) ~ .tab__content:nth-of-type(1) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);
  text-shadow: 0 0 0;
}
.tab:checked:nth-of-type(2) ~ .tab__content:nth-of-type(2) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);
  text-shadow: 0 0 0;
}
.tab:checked:nth-of-type(3) ~ .tab__content:nth-of-type(3) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);
  text-shadow: 0 0 0;
}
.tab:checked:nth-of-type(4) ~ .tab__content:nth-of-type(4) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);
  text-shadow: 0 0 0;
}
.tab:checked:nth-of-type(5) ~ .tab__content:nth-of-type(5) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);
  text-shadow: 0 0 0;
}
.tab:checked + label {
  background-color: #be6400;
  color: azure;
  box-shadow: 0 -1px 0 #be6400 inset;
  cursor: default;
}
.tab:checked + label:hover {
  box-shadow: 0 -1px 0 #be6400 inset;
  color: azure;
  background-color: #be6400;
}
.tab + label {
  box-shadow: 0 -1px 0 #b484c3 inset;
  border: 1px solid green; 
  border-radius: 2px;
  cursor: pointer;
  display: block;
  text-decoration: none;
  font-family: "DejaVu Sans", Verdana, "sans-serif";
  color: azure;
  flex-grow: 3;
  text-align: center;
  background-color: orange;  
  text-align: center;
  color: black;
  font-size: 16px;
  transition: 0.3s background-color ease, 0.3s box-shadow ease;
  max-width: 200px;
  min-height: 30px;
  box-sizing: border-box;
  padding: 5px;
}
.tab + label:hover {
  background-color: #be6400;
  color: azure;
  box-shadow: 0 1px 0 #b484c3 inset;
}
.tab__content {
  padding: 10px 20px;
  background-color: transparent;
  position: absolute;
  width: 100%;
  z-index: -1;
  opacity: 0;
  left: 0;
  transform: translateY(-3px);
  border-radius: 6px;
}

