.ui-dialog {
    z-index: 100 !important;
}

.ui-messages
{
    width: 400px;
}

.ui-messages > div {
    padding-left: 0!important;
    font-size: 15px!important;
}

body .ui-messages .ui-messages-error {
    color: red!important;
    background:transparent!important;
}

body .ui-messages .ui-messages-warn {
    color: orange!important;
    background:transparent!important;
}

body .ui-messages .ui-messages-info {
    color: blue!important;
    background:transparent!important;
}

body .ui-messages .ui-messages-fatal {
    color: darkred!important;
    background:transparent!important;
}

.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close span.ui-button-icon-primary.ui-icon-closethick {
    display: none;
}



.error span {
    color: #E4002B;
}

.fade-in {
    -webkit-animation: fade-in 5s ease-in 5s both;
    animation: fade-in 5s ease-in 5s both;
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}