/*!
 * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
 *
 *  This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 *  Software Foundation; either version 2.1 of the License, or (at your option)
 *  any later version.
 *
 * This library is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 *   FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 *   details.
 */
.dropdown.input {
  padding: 0 !important; }

.dropdown .dropbtn {
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  padding: 0.6em 1em;
  border-radius: 4px;
  fill: #879cb9;
  white-space: nowrap;
  font-size: 0.88em; }
  .dropdown .dropbtn:hover {
    background-color: #879cb9;
    color: #fff;
    fill: #fff; }
  .dropdown .dropbtn svg {
    height: 1.5em;
    position: relative;
    top: 5px; }

.dropdown .show .dropbtn {
  background-color: #879cb9;
  color: #fff;
  fill: #fff; }

.dropdown .search-input {
  box-sizing: border-box;
  font-size: 1em;
  padding: 8px 20px 6px 35px;
  border: none;
  border-bottom: 1px solid #ddd;
  width: 250px; }
  .dropdown .search-input:focus {
    outline: 2px solid #879cb9; }

.dropdown .dropdown {
  position: relative; }

.dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f2f5f9;
  min-width: 250px;
  z-index: 10;
  box-shadow: 0 0px 1px 1px rgba(0, 0, 0, 0.075), 0 0px 30px -15px rgba(0, 0, 0, 0.7);
  top: 50px;
  border-radius: 4px;
  overflow: hidden;
  right: 0; }
  .dropdown .dropdown-content a {
    color: black;
    padding: 7px 13px;
    text-decoration: none;
    display: block; }
    .dropdown .dropdown-content a:hover {
      background-color: #ebeef1; }
  .dropdown .dropdown-content svg {
    position: absolute;
    left: 1em;
    top: 0.8em;
    height: 1.3em;
    fill: #999; }
  .dropdown .dropdown-content .dropdown-links {
    max-height: 30em;
    overflow-y: auto; }

.dropdown.show .dropdown-content {
  display: block; }