/* CSS Document */
/* Style the tab */
.tab {
  overflow: hidden;
}

/* Style the buttons that are used to open the tab content */
.tab button {

  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 5px 30px;
  transition: 0.3s;
  border: 0px solid rgba(0,0,0,0);
  border-top-left-radius:10px;
  border-top-right-radius:10px;
  border-bottom:none;
  font-size:1.5rem;
  font-weight:bold;
  color:#a6bccb;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color:rgba(153,153,153,.25);
}

/* Create an active/current tablink class */
.tab button.active {
  background-color:rgba(153,153,153,.5);
}

.tabcontents {
	padding:0px;
	margin:0px;
	width:100%;
	  border: 1px solid rgba(0,0,0,0);
  border-radius:10px;
	background-color:rgba(153,153,153,.5);
	min-height:120px;

	
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

