.PrettyMessengerCont{
    position: fixed;
    bottom: 80px;
    right: 0px;
    transition: all 0.4s ease-out;
    opacity: 1.0;
    max-height: 32px;
}

.PrettyMessage_info{
    
    display: block;
}

.PrettyMessage_warn{
    
    display: block;
}

.prettymessengerContent{
    position: relative;     
    -webkit-animation: FadeIn 1500ms linear 1, MoveIn 500ms linear 1;
    -moz-animation: FadeIn 1500ms linear 1, MoveIn 500ms linear 1;
    -o-animation: FadeIn 1500ms linear 1, MoveIn 500ms linear 1;
    animation: FadeIn 1500ms linear 1, MoveIn 500ms linear 1;
    height: auto;
    padding: 24px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.29);
    -moz-box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.29);
    box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.29);
    outline-color: #0082CD;
    outline-style: dashed;
    outline-offset: -8px;
    outline-width: 1px;
    margin-top: 12px;
    width: 310px;
    transition: all 0.4s;
	cursor: pointer;
}

.PrettyMessenger_info{

/* font-weight: 600; */
}

.PrettyMessenger_info:before{
    position: absolute;
    height: 100%;
    width: 64px;
    font: normal normal normal 14px/1 FontAwesome;
    -webkit-font-smoothing: antialiased;
    content: "\f129";
    font-size: 54px;
    text-align: center;
    line-height: 74px;
    color: #4E4E4E;
    left: -64px;
    top: 0px;
    background-color: #FFFFFF;
    box-sizing: border-box;
}

.PrettyMessenger_error{

}

.PrettyMessenger_error:before{
 position: absolute;
 height: 100%;
 width: 64px;
 font: normal normal normal 14px/1 FontAwesome;
 -webkit-font-smoothing: antialiased;
 content: "\f12a";
 font-size: 54px;
 text-align: center;
 line-height: 74px;
 color: #F50000;
 left: -64px;
 top: 0px;
 background-color: #FFFFFF;
 box-sizing: border-box;
}

.PrettyMessenger_info_content{

color: #4E4E4E;
}

.PrettyMessenger_error_content{

/* font-weight: 600; */

color: red;
}

.pm_Fadeout{
    opacity: 0;
}

.pm_MoveOut{
	-webkit-animation: MoveOut 500ms linear 1;
	opacity: 0;
}

/*******************************************************************************
 * Animations
 ******************************************************************************/
@-webkit-keyframes FadeIn {
	from {opacity: 0;}
	to {opacity: 1;}
}

@-moz-keyframes FadeIn {
	from {opacity: 0;}
	to {opacity: 1;}
}

@keyframes FadeIn {
	from {opacity: 0;}
	to {opacity: 1;}
}

@-o-keyframes FadeIn {
	from {opacity: 0;}
	to {opacity: 1;}
}

@-webkit-keyframes MoveIn {
	from {right: -310px}
	to {right: 0px}
}

@-moz-keyframes MoveIn{
	from {right: -310px}
	to {right: 0px}
}

@keyframes MoveIn{
	from {right: -310px}
	to {right: 0px}
}

@-o-keyframes MoveIn{
	from {right: -310px}
	to {right: 0px}
}

@-webkit-keyframes MoveOut {
	from {right: -0px}
	to {right: -310px}
}

@-moz-keyframes MoveOut{
	from {right: -0px}
	to {right: -310px}
}

@-o-keyframes MoveOut{
	from {right: -0px}
	to {right: -310px}
}

@keyframes MoveOut{
	from {right: -0px}
	to {right: -310px}
}