.dropdown {
  position: relative;
  display: inline-block;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
}

.dropdown:hover{
  cursor: pointer;
}

.dropdown > a, .dropdown > button {
    background-color: #d3b175;
    border: 1px solid #d6cab6;
    border-radius: 4px;
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding-right: 30px;
}

.dropdown > button:hover{
  cursor: pointer;
}

.dropdown > a:before, .dropdown > button:before {
    position: absolute;
    right: 10px;
    top: 20px;
    content: ' ';
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
        border-top: 7px solid white;
}

.dropdown input[type=checkbox] {
  position: absolute;
  display: block;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  margin: 0px;
  opacity: 0;
}

.dropdown input[type=checkbox]:checked {
  position: fixed;
  z-index:+0;
  top: 0px; left: 0px; 
  right: 0px; bottom: 0px;
}

.dropdown ul {
      z-index: 99999;
  text-align: left;
  position: absolute;
  top: 18px;
  border: 1px solid #ccc;
  border-radius: 3px;
  left: 0px;
  list-style: none;
  padding: 4px 0px;
  display: none;
  background-color: white;
  box-shadow: 0 3px 6px rgba(0,0,0,.175);
  margin-top: 19px;
}

.dropdown input[type=checkbox]:checked + ul {
  display: block;
}

.dropdown ul li {
  color: black;
  display: block;
  padding: 6px 20px;
  white-space: nowrap;
  min-width: 100px;
  font-weight: 400;
  font-size: 13px;
}

.dropdown ul li:hover {
  background-color: #F5F5F5;
  cursor: pointer;
}

.dropdown ul li a {
  text-decoration: none;
  display: block;
  color: black
}

.dropdown .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
  font-size: 1px;
  padding: 0;
}

label:hover{
  cursor: pointer;
}

