
/* Alert css*/

.alert {
    padding: 20px;
    background-color: #f44336;
    color: white;
    opacity: 0.9;
    transition: opacity 0.6s;
    margin-bottom: 15px;
    margin-top: -5px;
	margin-left: auto;
	margin-right: auto;
    position: relative;
}
.alert a {
	color: #FFFFFF;
    text-decoration: underline; 
}
.alert.info {
    background-color: #0262b6;
}
.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}
.closebtn:hover {
    color: black;
}
.textLeft {
	text-align: left;
}