@charset "UTF-8";
/* CSS Document */

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

/* Style the buttons inside the tab */
.tab button {
	
  background-color: #eee;
  float: center;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 4px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #fff;
}

/* Create an active/current tablink class */
.tab button.active {
  border-bottom: 2px solid #a9d1c9;
}

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


/* Dispositivos pequeños */
@media (max-width: 576px) {
	
	.tabcontent {
		background-color: #fff;
		opacity: .8;
	}
	
}


