/*
* Software Name : abcdesktop.io
* Version: 0.2
* SPDX-FileCopyrightText: Copyright (c) 2020-2021 Orange
* SPDX-License-Identifier: GPL-2.0-only
*
* This software is distributed under the GNU General Public License v2.0 only
* see the "license.txt" file for more details.
*
* Author: abcdesktop.io team
* Software description: cloud native desktop service
*/
/*Supporting colours*/
div#searchZone {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 55px;
  width: 100%;
  max-height: 80%;
  overflow: auto;
  z-index: 13;
  opacity: 0.85;
  background: #474B55;
  -webkit-transition: all 0.3s;
  -webkit-transform-origin: 50% 100%;
  -moz-transition: all 0.4s;
  -moz-transform-origin: 50% 100%;
  -o-transition: all 0.3s;
  -o-transform-origin: 50% 100%;
}
div#searchZone #appZone,
div#searchZone #fileZone {
  display: none;
  list-style: none;
  width: 100%;
  box-sizing: border-box;
  max-height: 250px;
  overflow: auto;
  margin: 0 auto;
}
div#searchZone p {
  font-size: 18px;
  margin-left: 0px;
  margin-top: 5px;
  color: #65AECD;
}
#searchZone .icon {
  width: 110px;
  text-align: center;
  float: right;
  margin: 5px 0px;
}
#searchZone .icon:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
}
#searchZone .icon img {
  height: 50px;
  width: 50px;
}
#searchZone .icon div.appname {
  font-size: 12px;
  height: 28px;
  color: #65AECD;
  overflow: hidden;
  text-overflow: ellipsis;
}
#searchZone .icon:hover .appname {
  overflow: visible;
  word-wrap: break-word;
}
#closeZone {
  display: none;
  align-self: flex-end;
  height: 40px;
  width: 20px;
  background: url(../../../img/folder/close-white.svg) no-repeat center;
  background-size: 40px;
  cursor: pointer;
}
#searchZone li img.search-lock-icon {
  position: relative;
  width: 25px !important;
  height: 20px !important;
  bottom: 50px;
  left: 12px;
  display: none;
}
#searchZone li[locked=true] img.search-lock-icon {
  display: unset;
}
