﻿#id_messager 
{
    position: fixed;
    bottom: 10%;
    right: 10%;
    width: 350px;
    opacity: 1;
    transition: all linear 0.5s;
    z-index: 1000;
}

.message_image 
{
    width: 20px;
    float: left;
    margin: 10px;
}

.message_dark 
{
    color: white;
    background: linear-gradient(to bottom, rgba(63,76,107,1) 0%,rgba(63,76,107,1) 100%);
}

.message_error 
{
    color: black;
    background: linear-gradient(311deg, rgba(255,253,247,1) 0%, rgba(255,253,247,1) 27%, rgba(255,175,150,1) 94%, rgba(255,175,150,1) 100%);
}
 

.message_Init 
{
    float: left;
    opacity: 0;
    width: 90%;
    height: 0px;
    transition: all ease 1s;
    border-radius: 5px;
    font-size: 14px;
}

.message_Show 
{
    margin: 5px;
    padding: 7px;
    opacity: 1;
    height: auto;
}

.message_Remove 
{
    height: 0;
    width: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
}


.ask_Init 
{
    position: absolute;
    opacity: 1;
    left: 25%;
    right: 25%;
    top: 25%;
    bottom: 25%;
    background: linear-gradient(to bottom, rgba(63,76,107,1) 0%,rgba(63,76,107,1) 100%);
}
