//@import "../../../abstracts/abstracts";

.validation-message.error {
	border-radius: 0 0 5px 5px;
	display: none;
	color: #fff;
	background: #d5473c;
    font-size: 0.8em;
    font-weight: $label-font-weight;
    width: 100%;
    float: right;
    position: relative;
	padding: 0 5px;
	&::before {
		content: "";
		width: 10px;
		height: 10px;
		border-right: $border-radius-default solid transparent !important;
		border-left: 0 !important;
		border-bottom: $border-radius-default solid #d5473c !important;
		position: absolute;
		left: 0;
		top: -10px;
	}
	&::after {
		content: "";
		width: 10px;
		height: 10px;
		border-left: $border-radius-default solid transparent;
		border-right: 0 !important;
		border-bottom: $border-radius-default solid #d5473c !important;
		position: absolute;
		right: 0;
		top: -10px;
	}
}
