.alert-success, .alert-error, .alert-warning, .alert-info {
	padding: 5px 25px;
	border-radius: 40px;
	color: black;
	background-color: white;
	border: 1px solid black;
	margin-bottom: 3px;
	text-align: center;
}

.alert-success {
	color: green;
	border-color: green;
}

.alert-info {
	color: blue;
	border-color: blue;
}

.alert-warning {
	color: #FFA000;
	border-color: #FFA000;
}

.alert-error {
	color: red;
	border-color: red;
}

.alert-success a, .alert-error a, .alert-warning a, .alert-info a {
	text-decoration: underline;
}

.loading {
    display: flex;
    flex-direction: row;
	align-items: center;
	justify-content: center;
}

.red-text {
	color: red;
}

.br1-main {
	font-family: "Roboto";
}

.message-box.modal {
    font-family: Roboto;    
	max-width: 600px;	
}

.message-box .message-text {
	font-size: 1.3em;
	line-height: 25px;
}

.message-box .buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.message-box button {
	min-width: 150px;
	margin-left: 20px;
}

.error-message {
	background-color: red;
	color: white;
	padding: 5px;
	border-radius: 5px;
}