/*
* 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*/
.notifyPanel {
  position: fixed;
  height: 50%;
  width: 40%;
  right: 5px;
  z-index: 999999;
  top: 30px;
  pointer-events: none;
}
.notification {
  position: relative;
  width: 100%;
  background: #474B55;
  opacity: 0.85;
  -webkit-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
  -webkit-box-shadow: 0px 0px 5px #666666;
  box-shadow: 0px 0px 5px #666666;
  overflow: hidden;
  z-index: 10;
  padding-left: 5px;
  margin-bottom: 5px;
  background-repeat: no-repeat;
  box-sizing: border-box;
  pointer-events: all;
}
.notification img {
  float: left;
  margin-top: 10px;
  margin-bottom: 10px;
  height: 40px;
  margin-right: 10px;
  width: 40px;
}
.notification .title {
  font-weight: bold;
  margin-top: 20px;
  font-size: 14px;
}
.notification .description {
  font-size: 11px;
  margin-top: 5px;
  margin-right: 5px;
  word-wrap: break-word;
}
.close-notification {
  border-left: solid 1px #2D2D2D;
  padding: 0 !important;
}
