@charset "utf-8";

/* Style the tab */
.tab {
  overflow: hidden;
  border: 0px solid #ccc;
  background-color: #ffffff;
}

/* 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: 14px 16px;
  transition: 0.3s;
}

 /* Styles for screens smaller than 768px */
    @media screen and (max-width: 767px) {
       .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 6px;
  transition: 0.3s;
}
    }

/* Change background color of buttons on hover */
.tab button:hover {
  color: #ffffff;
  background-color: rgb(65,182,230);
  /*background-color: rgba(65,182,230,50%);*/
}

/* Create an active/current tablink class */
.tab button.active:hover {
  background-color: rgb(65,182,230);
  font-weight: bold;
}


/* Create an active/current tablink class */
.tab button.active {
  background-color: #ffffff;
  font-weight: bold;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

.tablinks {
  font-weight: normal;
}