/* ALERTS */
.alert_success,
.alert_error {
	position: fixed;
	right: -500px;
	top: 150px;
	display: inline-block;
	padding: 10px 20px;
	font-family: "Montserrat", Sans-serif;
	margin-bottom: 15px;
    font-weight: 400;
    text-align: center;    
	color: #fff;
	z-index: 99999;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	cursor: pointer;
}

.alert_success {
	background: #00A550;
}

.alert_error {
	background: #FF6347;
}