/* CSS shared between server-rendered part and SPA */

.small {
  font-size: inherit;
}
small {
  font-size: 12px;
  color: #777;
}

img.logo.icon {
  width: 1.2rem;
  height: 1.2rem;
  vertical-align: middle;
  margin-top: -0.15em;
  border-radius: 9%;
}

.dropdown {
  position: relative;
  border-radius: 5px;
  height: 100%;
}
.dropdown:hover {
  background: #fb7e17;
  color: #fff;
  cursor: pointer;
}
.dropdown:hover {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.dropdown a {
  color: inherit;
}
.dropdown .options {
  position: absolute;
  top: 100%;
  left: 0;
  background: inherit;
  color: #fff;
  min-width: 100%;
  border-top: 0;
  display: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
.dropdown .options.right {
  left: auto;
  right: 0;
}
.dropdown:hover .options {
  display: block;
  z-index: 10;
}
.dropdown div.options > *, .dropdown ul.options > li > * {
  display: block;
  padding: 0.5em 1em;
  white-space: nowrap;
  /* In case they're URLs */
  color: inherit;
  text-decoration: none;
}
.dropdown div.options > *:hover, .dropdown ul.options > li > *:hover {
  background: rgba(20, 20, 20, 0.4);
}
.dropdown .options > * .svg-icon {
  margin-right: 0.4em;
  width: 1em;
  font-size: 1.5em;
  text-align: center;
}
