/* CSS Document */

input[type=date], input[type=datetime-local], input[type=month]{
    -webkit-print-color-adjust: exact;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type=date]::-webkit-clear-button,
input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-calendar-picker-indicator,
input[type=datetime-local]::-webkit-clear-button,
input[type=datetime-local]::-webkit-inner-spin-button,
input[type=datetime-local]::-webkit-calendar-picker-indicator,
input[type=month]::-webkit-clear-button,
input[type=month]::-webkit-inner-spin-button,
input[type=month]::-webkit-calendar-picker-indicator{
    display: none;
	-webkit-appearance: none;
}

input[type="date"]::-webkit-input-placeholder,
input[type="datetime-local"]::-webkit-input-placeholder,
input[type="month"]::-webkit-input-placeholder{ 
    visibility: hidden !important;
}

.err-msg-tip{
	position:relative;
	display:none;
	margin-top:10px;
	width:100%;
}

.err-msg-tip:after{
	position: absolute;
    top: -6px;
    left: 20px;
    content: '';
    display: block;
    width: 0;
    height: 0;
    -moz-transform: scale(.9999);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ef6262;
}

.err-msg-tip.to-right:after{
	left:inherit;
	right:20px;
}

.err-msg-tip .err-msg{
	width:100%;
	border:0px;
	display:inline-block;
	background:#ffdbdb;
	background:#ef6262;
	color:#ac2c2c;
	color:#fff;
	padding:10px 15px 8px;
	font-size:12px;
	margin: 0px 0px 5px 0px;
}

