.main {
    -webkit-animation: toast-in 0.25s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: toast-in 0.25s; /* Firefox < 16 */
        -ms-animation: toast-in 0.25s; /* Internet Explorer */
         -o-animation: toast-in 0.25s; /* Opera < 12.1 */
            animation: toast-in 0.25s;
    margin-top:3mm;
    margin-bottom:3mm;
}

@keyframes toast-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes toast-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes toast-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes toast-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes toast-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* SET FOR WEBSITE */
.btn{height: auto;}
.controls .notification{
    font-weight: bold;
}
.alert-messages{
    top:100px;
}

/* SET FOR FOOTER */
body{
    padding-bottom: 120px;
}