@charset "utf-8";
/* Container needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Style the image button */
.dropbtn {
  background-color: #5ccecc; /* Optional: make the button background transparent */
  border: none; /* Remove default button border */
  cursor: pointer;
  padding-bottom: -8; /* Remove default button padding */
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #5ccecc;
  width: 127px;
  box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.2);
  z-index: 10;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #525453;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #63dbd9;
}

/* Show the dropdown menu (this class is added by JavaScript) */
.show {
  display: block;
}/* CSS Document */

