/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 17 janv. 2019, 16:37:21
    Author     : thomas
*/

.aocAlerte_Cadre
{
	position: relative;
	display: flex;
	flex-direction: column;
	border: 1px solid grey;
	background-color: white;
	min-height: 100px;
	min-width: 350px;
  max-width: 600px;
	/*border-radius: 5px;*/
	/*overflow: hidden;*/
	/*box-shadow: 0px 10px 60px 0px lightgrey;*/
	font-family: Arial;
	font-size: 14px;
	z-index: 100000;
}

.aocAlerte_Titre
{
	color: black;
	background-color: #006dcc;
	background-image: linear-gradient(#00CCFF, #006dcc);
	text-align: center;
	padding: 3px;
	user-select: none;
	/*border-top-left-radius: inherit;*/
	/*border-top-right-radius: inherit;*/
}

.aocAlerte_Corps
{
	padding: 5px;
	flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.aocAlerte_Boutons
{
	padding: 5px;
	padding-top: 0px;
	display: flex;
	flex-direction: row-reverse;
}

.aocAlerte_Bouton
{
	padding: 3px;
	border: 1px solid grey;
	background-color: #5fad25;
	background-image: linear-gradient(lightgrey, #898989);
	display: flex;
	margin-bottom: 5px;
	margin-right: 5px;
	border-radius: 5px;
	user-select: none;
}

.aocAlerte_Bouton:hover
{
	background-color: #9f003a;
	background-image: linear-gradient(#FC9, #ed7000);
	color: black;
}

.aocAlerte_Voile
{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-color: rgb(100, 100, 100);
  background-color: rgba(120, 120, 120, 0.1);
	background-color: black;
	opacity: 0.5;
}

.aocAlerte_Icones
{
  height: 100%;
  width: 60px;
  display: flex;  
  align-items: center;
  justify-content: center;
}

.aocAlerte_Texte
{
  padding: 15px;
  /*height: 35px;
  width: 250px;
  margin-bottom: 5px;
	margin-top: -67px;
  margin-left: 100px;*/
	flex: 1;
  font-family: Arial;
  font-size: 12px;
  text-align: justify;
}

.aocAlerte_Image
{
  
}