/*
 * Copyright (C) 2013-2020 Combodo SARL
 *
 * This file is part of iTop.
 *
 * iTop is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * iTop 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 Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 */

#menu {
  margin-top: 10px !important;
  /* Force to overload layout.js */
}
#cmf-filter-textbox {
  box-sizing: border-box;
}
#cmf-filter-textbox * {
  box-sizing: border-box;
}
#cmf-filter-textbox #cmf-input-wrapper {
  position: relative;
  opacity: 0.6;
  transition: opacity 0.1s ease-in-out;
}
#cmf-filter-textbox #cmf-input-wrapper #cmf-input {
  width: 100%;
  padding: 5px 5px;
  background: #F1F1F1;
  border: none;
  border-bottom: 1px solid #CCC;
  margin-bottom: 5px;
  transition: all 0.2s ease-in-out;
}
#cmf-filter-textbox #cmf-input-wrapper #cmf-input:active, #cmf-filter-textbox #cmf-input-wrapper #cmf-input:focus {
  outline: none;
}
#cmf-filter-textbox #cmf-input-wrapper #cmf-clear-icon, #cmf-filter-textbox #cmf-input-wrapper #cmf-filter-icon {
  position: absolute;
  top: 0.45rem;
  right: 0.35rem;
  color: #555;
  font-size: 12px;
}
#cmf-filter-textbox #cmf-input-wrapper #cmf-clear-icon {
  display: none;
  right: 0.6em;
  cursor: pointer;
}
#cmf-filter-textbox #cmf-input-wrapper #cmf-filter-icon {
  color: #8C8C8C;
}
#cmf-filter-textbox #cmf-empty-label {
  display: none;
}
#cmf-filter-textbox #cmf-empty-label.displayed {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  font-style: italic;
  font-size: 0.8rem;
  color: #868585;
}
#cmf-filter-textbox.active {
  position: sticky;
  /* Does not work with IE and earlier versions of Edge */
  z-index: 1;
  top: 0;
  left: 24px;
  /* Left and right come from #inner-menu padding */
  right: 8px;
}
#cmf-filter-textbox.active #cmf-input-wrapper {
  opacity: 1;
}
#cmf-filter-textbox.active #cmf-input-wrapper #cmf-input {
  border-radius: 2px;
  background: #FFF;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.25);
}
#cmf-filter-textbox.active #cmf-input-wrapper #cmf-clear-icon {
  display: block;
}
#cmf-filter-textbox.active #cmf-input-wrapper #cmf-filter-icon {
  display: none;
}
