/* Style the tab */
div.tab {
  overflow: hidden; 
  width: 100%;
  border: 1px solid #ccc;
  background-color: #dfebfb;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  border-right: 1px solid #ccc;
  outline: none;
  cursor: pointer;
  padding: 8px 16px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: bold;
  color: #369;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #b2cff5;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #b2cff5;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 0px 12px 16px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

.tabcontent p{  
margin:0;
padding:0;
}

/* Style the close button */
.topright {
  float: right;
  cursor: pointer;
  font-size: 28px;
 
  
}

.topright:hover {color: red; }
