 /* Dropdown Button */
.dropbtn {
  position: absolute;
  background-color: transparent;
  color: white;
  padding: 2px;
  margin: 0px;
  font-size: 16px;
  border: none;

}

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

/* The container <div> - needed to position the dropdown content */

.dropdown {
  background-color: transparent;
  position: absolute;
  visibility: hidden;
}


.setLabelInput {
  font-family: "Fira Sans",Calibri,Candara,Segoe,Segoe UI,Optima,Arial,sans-serif;
  /* text-transform: uppercase; */
  font-size: 1.1em;
  font-weight: bold;
  
    visibility: hidden;
  
    height: 24px;
    position: absolute;

    padding-left: 10px;

    left: 0px;
    top: 5px;
    border-top: none;
    border-left: none;

    outline: none;
    font-size:16px;
    background-color: rgb(233,234,243);
    color: black;
}
/*
.dropdownInfo {
  font: 0.9em "Fira Sans",Calibri,Candara,Segoe,Segoe UI,Optima,Arial,sans-serif;
  background-color: transparent;
  min-width: 150px;
}*/

.objectName {
  font-family: "Fira Sans",Calibri,Candara,Segoe,Segoe UI,Optima,Arial,sans-serif;
  /* text-transform: uppercase; */
  font-size: 1.1em;
  font-weight: bold;
  padding: 8px 16px;
  margin: 0px;
  background-color: rgb(243,244,248);
  color: black;
  min-width: 150px;

}/* Dropdown Content (Hidden by Default) */


.objectStates {
  font-family: Calibri,Candara,Segoe,Segoe UI,Optima,Arial,sans-serif;
  font-size: 0.8em;
  font-weight: normal;
  font-style: italic;
  padding: 0px 16px;
  color: black;

  min-width: 150px;

  background-color: rgba(243,244,248,0.6) !important;

}/* Dropdown Content (Hidden by Default) */


.dropdownInfo a {

  /*text-shadow: 1px 1px 2px black; */

  text-decoration: none;
  display: block;
}


.dropdownActions {
  display: none;
  
  background-color: transparent;

  min-width: 150px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
/* Links inside the dropdown */
.dropdownActions a {
  font: 0.9em "Fira Sans", sans-serif;
  background-color: rgba(0,0,0, 0.2);
  color: white;
  text-shadow: 1px 1px 2px black; 
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}/* Links inside the dropdown */

/* Change color of dropdown links on hover */
.dropdownActions a:hover { background-color: rgba(62,153,192, 0.9);}
/*.dropdownActions a:hover { background-color: rgba(147,217,214, 0.9);}*/


/* Show the dropdown menu (use JS to add this class to the .dropdownActions container when the user clicks on the dropdown button) */
.show {display:block;} 