.msg {
	color: #CCC;
}

.alert {
	background-color: #FFF;
	border: solid 1px #999;
	border-radius: 5px;
	color: #999;
	font-size: 16px;
	padding: 10px 15px;
	margin: 5px 0;
	margin-top: 10px;
	margin-bottom: 20px;
	line-height: 120%;	
}

.alert-success {
	border-color: #090;
	color: #090;
}

.alert-danger {
	border-color: #C00;
	color: #C00;
}

.error_content {
    position: relative;
    display: block;
}
.error-input{
    position: absolute;
    display: inline-block;
    top: -27px;
    left: 0;
    background: #dc0e24;
    padding: 5px 10px;
    color: white;
    font-size: 12px;
    line-height: 1.2;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    opacity: 1;
    color: #fff;
}

.error-input::after {
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    content: '';
    background: #dc0e24;
    top: -5px;
    left: 15px;
/*
    left: -webkit-calc(50% - 5px);
    left: calc(50% - 5px);
*/
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}