/* Dropdown Button */
.dropbtn {
  background-color: #ffcb7b;
  color: black;
  width: 100%;
  padding: 20px;
  font-size: 22.5px;
  border: none;
  cursor: pointer;
}

.dropbtn_2 {
  background-color: #ffcb7b;
  color: black;
  width: calc(100%/3);
  padding: 10px;
  font-size: 20px;
  outline: 2px outset white;
  cursor: pointer;
}

/* For our javascript function to highlight weapon type when clicked */
.focus {background-color: darkgoldenrod;}

/* Dropdown button on hover & focus */
.dropbtn:hover {
  background-color: darkgoldenrod;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  margin-left: 12.5px;
  width: calc(100% - 2*12.5px);
  outline: 2px outset white;
}

/* The container <div> for our sub row of dropdowns */
.dropdown_2 {
  position: relative;
  display: inline-block;
  width: 100%;
  min-height: 300px;
  height: 46vh;
  max-height: 452.5px; 
  z-index: 1;
}
  
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  font-size: 0px;  /* somehow removes space between divs */
  margin-left: -12.5px;
  width: calc(100% + 2*12.5px);
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

/* Dropdown Content for Dagger Type */
.dropdown-content_dagger {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  background-color: #ffcb7b;
  outline: 2px outset black;
}

/* Dropdown Content for Sword Type */
.dropdown-content_sword {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  background-color: #ffcb7b;
  outline: 2px outset black;
}

/* Dropdown Content for Club Type */
.dropdown-content_club {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  background-color: #ffcb7b;
  outline: 2px outset black;
}

.dropdown-content_text_div {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 50px;
  cursor: pointer;
}

.dropdown-content_text1 {
  display: inline-block;
  position: absolute;
  margin: 0px;
  font-size: 20px;
  padding-left: 20px;
  width: 75%;
}

.dropdown-content_text2 {
  display: inline-block;
  position: absolute;
  text-align: right;
  padding-right: 20px;
  right: 0%;
  margin: 0px;
  font-size: 20px;
  width: 25%;
}

.dropdown-content_text_div:hover {background-color: #FFEBCD;}
  
/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}


@media (max-width: 1012.5px) {
  .dropbtn {
    padding: 10px;
    font-size: 18px;
  } .dropdown_2 {
    width: calc(100% + 50px);
    height: 386px;
  } .dropbtn_2 {
    margin-top: 4px;
    font-size: 17px;
  } .dropdown-content_text1, .dropdown-content_text2 {
    font-size: 18px;
  }
}