
.containerFlash {

    width: 550px;
    height: 200px;
    position: absolute;
    top: 70%;
    left: 50%;
    z-index: 50;

    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#flash .success{
    width: 100%;
    height: 80px;
    margin-bottom: 20px;
    position:relative;
    overflow: hidden;

    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;

    -webkit-box-shadow: 5px 5px 15px rgba(0,140,158,0.6);
    -moz-box-shadow: 5px 5px 15px rgba(0,140,158,0.6);
    box-shadow: 5px 5px 15px rgba(0,140,158,0.6);

    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}


#flash .error {
    width: 100%;
    height: 80px;
    margin-bottom: 20px;
    position:relative;
    overflow: hidden;

    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;

    -webkit-box-shadow: 5px 5px 15px rgba(158, 23, 40, 0.6);
    -moz-box-shadow: 5px 5px 15px rgba(158, 23, 40, 0.6);
    box-shadow: 5px 5px 15px rgba(158, 23, 40, 0.6);

    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

#flash .success {
    background-color: #f4f5f9;
}

#flash .error {
    background-color: #f4f5f9;
}

#flash .iconFlash {
    width: 80px;
    font-size: 48px;
    line-height: 80px;
    text-align: center;
    text-shadow: 1px 1px rgba(0,0,0,0.12);
    color: #fff;
    position: relative;
    float: left;
}

#flash .success  .iconFlash {
    background-color: #3ac569;
    border: 1px solid #3ac569;
    background-image: -webkit-radial-gradient(ellipse farthest-corner at center bottom, #88dba3 0%, #3ac569 50%);
    background-image: radial-gradient(ellipse farthest-corner at center bottom, #88dba3 0%, #3ac569 50%);
}

#flash  .error  .iconFlash {
    background-color: #f1404b;
    border: 1px solid #f1404b;
    background-image: -webkit-radial-gradient(ellipse farthest-corner at center bottom, #ff7473 0%, #f1404b 50%);
    background-image: radial-gradient(ellipse farthest-corner at center bottom, #ff7473 0%, #f1404b 50%);
}

#flash .message {
    font-size: 18px;
    line-height: 80px;
    vertical-aligment: middle;
    position: absolute;
    top: 0px;
    left: 100px;
}

#flash .message > span {
    font-weight: 800;
}

#flash .success > .message {
    color: #3ac569;
}

#flash .error > .message {
    color: #f1404b;
}

#flash a {
    text-decoration: none;
}

#flash .buttonFlash {
    font-size: 18px;
    line-height: 28px;
    padding: 0 8px;
    float: right;
    margin: 26px 15px;

    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;

    -webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.12);
    -moz-box-shadow: 1px 1px 3px rgba(0,0,0,0.12);
    box-shadow: 1px 1px 3px rgba(0,0,0,0.12);
}

#flash .button-success {
    color: #3ac569;
    border: 1px solid #3ac569;
}

#flash .button-success:hover {
    color: #fff;
    background-color: #3ac569;
    border: 1px solid #3ac569;
}

#flash .button-error {
    color: #f1404b;
    border: 1px solid #f1404b;
}

#flash .button-error:hover {
    color: #fff;
    background-color: #f1404b;
    border: 1px solid #f1404b;
}