html {
	scroll-behavior: smooth;
}

.errorDiv {
	display: none;
	color: #ffffff;
	text-align: initial;
	font-size: 13px;
	border-radius: 3px;
	background-color: #e24044;
	font-weight: 600;
	padding: 6px 14px;
}

[data-show-validations='true'] *[isvalide='false'].errorDiv {
	display: inline-block;
}

form[data-show-validations='true'] input:invalid,
form[data-show-validations='true'] select:invalid,
form[data-show-validations='true'] textarea:invalid {
	border: 2px solid #e24044 !important;
	color: #e24044 !important;
	background-color: #fee9ea !important;
}

input,
select {
	box-shadow: none;
}
.invalid {
	color: #e24044 !important;
}

#div_phone #validation_suggestion {
	display: none;
	cursor: pointer !important;
	background-color: #ffffff;
	border-radius: 8px;
	color: #a2a2a2;
	text-align: left !important;
	font-size: 14px;
	font-weight: 700;
	padding: 10px 0px;
	flex-direction: row;
	align-items: center;
	gap: 0 10px;
	margin-block-start: 5px;
	border: 1px solid #ededed;
	transition: background-color 320ms ease-in-out;
}
#div_phone #validation_suggestion:hover {
	background-color: #3f3f3f;
}
#div_phone #validation_suggestion::before {
	content: '';
	display: block;
	width: 28px;
	height: 23px;
	background: url(validation_attention.svg) no-repeat center top;
	background-size: 80% auto;
	margin-inline-start: 10px;
}

form[data-show-validations='true'] .Form_Element_Holder_Div {
	text-align: initial !important;
	margin-bottom: 10px;
}

.loader {
	background-image: url(loader.svg) !important;
	background-position: center !important;
	background-size: contain !important;
	background-repeat: no-repeat !important;
	color: transparent !important;
	text-shadow: none !important;
}

@media (max-width: 768px) {
	form[data-show-validations='true'] .errorDiv {
		position: static;
	}
	form[data-show-validations='true'] .errorDiv::after {
		display: none;
	}
}
