/* Style The Dropdown Button */
.dropbtn-api {
  color: white;
  border: none;
  cursor: pointer;
}

.md-tabs__list {
  contain: inherit;
}
.md-tabs {
overflow: inherit;
}
.md-header {
  z-index: 1000 !important;
}

/* The container <div> - needed to position the dropdown content */
.dropdown-api {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content-api {
  display:none;
  font-size: 13px;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1000;
  border-radius: 2px;
  left:-15px;
}

/* Links inside the dropdown */
.dropdown-content-api a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content-api a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown-api:hover .dropdown-content-api {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown-api:hover .dropbtn-api {
}
