.multi-button {
  display: inline-block;
  height: 34px;
  z-index: 3;
  position: relative;
}
.multi-button > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #cad5da;
  border-radius: 0.25em;
  background-color: #ffffff;
  max-height: 32px;
  overflow: hidden;
  transition: max-height 0.15s ease-out;
  float: right;
}
.multi-button > ul > li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.multi-button > ul li {
  border-top: 1px solid #cad5da;
}
.multi-button > ul li a {
  display: block;
  padding: 6px 28px 6px 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  text-decoration: none;
  color: #48729d;
}
.multi-button > ul li a:hover {
  background-color: #48729d;
  text-decoration: none;
  color: #ffffff;
}
.multi-button > ul li:first-child {
  border-top: none;
}
.multi-button > ul::before {
  content: '\25BC';
  display: block;
  color: #cad5da;
  float: right;
  padding: 6px 4px 6px 2px;
  border-left: 1px solid #cad5da;
}
.multi-button > ul.single::before {
  display: none;
}
.multi-button > ul.single li a {
  padding: 6px 12px;
}
.multi-button > ul:hover {
  max-height: 1000px;
  transition: max-height 0.25s ease-in;
}
