@charset "UTF-8";

.tab__button ul{ text-indent:-1em}
.tab{}

/* Tab Button */
.tab__button {
  height: 50px;
  margin-left:1em; margin-right:1em;
 
}
.list {
  display: flex;
  list-style: none;
  height: 100%;
}
.item {
  width: 100%;
  border: 0;
  
  height: 100%;
}
.button {
  cursor: pointer;
  appearance: none;
  border-radius: 0;
  border-style: none;
  width: 100%;
  height: 100%;
  border-bottom: 2px solid transparent;
  transition: all .25s ease-in-out;
  color: #03e9f4;
  background: repeating-linear-gradient(45deg,rgba(255,255,255,.1) 1px,rgba(255,255,255,.1) 1px, rgba(255,255,255,.0) 2px, rgba(255,255,255,.0) 5px);
}
.button:hover {
  font-weight: bold;
  background: #03e9f4;
	color: #050801;
	box-shadow: 0 0 5px #03e9f4,
				0 0 25px #03e9f4,
				0 0 50px #03e9f4,
				0 0 200px #03e9f4;
}
.button:focus {
  outline: none;
}
.is-current .button {
  color: #fff;
  background: repeating-linear-gradient(45deg,rgba(255,255,255,.1) 1px,rgba(255,255,255,.1) 1px, rgba(255,255,255,.0) 2px, rgba(255,255,255,.0) 5px),
	linear-gradient(90deg,rgba(0,204,204,.8), rgba(0,0,0,0.3),rgba(0,204,204,.8)), url(../images/6.svg) left top no-repeat, rgba(0,255,255,.5);
	box-shadow:inset #0FF 0 0 10px;
	
}
.is-current .button:hover {
  border-bottom: 2px solid transparent;
}

/* Tab Content */
.title {
  font-size: 25px;
  margin:0 auto;
  margin-top:1em;
  text-align:center;
  color:#9FF;
}

.title:first-letter {
  font-size: 40px;

}

.box {
  display: flex;
  flex-direction: column;
  padding:1em;
  width: 90%;
  margin: 0 auto;
  color:#FFF;
  max-width:1000px;
}
.box h3{text-align:center; letter-spacing:0.2em; margin:1em auto; width:15em; background-size: 50px 50px;background-color:rgba(0,204,204,0.2);background-image:linear-gradient(45deg,rgba(51,204,204,.1) 25%,transparent 25%,transparent 50%,rgba(51,204,204,.1) 50%,rgba(51,204,204,.1) 75%,transparent 75%,transparent); color:#6FF; text-shadow:#36C 0 0 5px; box-shadow: #999 5px 5px 1px;clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%); }
.box p{
	line-height:2em;
	text-shadow:#000 0 0 5px, #3CC 0 0  10px, #06F 0 0  15px;
	}
.box ul{text-align:left; line-height:2em; padding:2em;text-shadow:#000 0 0 5px, #3CC 0 0  10px, #06F 0 0  15px;}

@media screen and (max-width:767px) {
  .box {
    flex-direction: column;
    padding: 20px;
  }
}

