:root {
	--blue-main: #1863DC;
	--blue-dark: #134FB0;
	--blue-light: #4682E3;
	--blue-bg1: #D1E0F8;
	--blue-bg2: #ECF3FC;
	--blue-bg3: #F1F6FD;
	--grey-title: #27283C;
	--grey-body: #3D3E50;
	--grey-label: #525363;
	--grey-placeholder: #686876;
	--grey-line: #BEBFC5;
	--white: #ffffff;
	--red: #DD425A;
}

.cy-template form input[type=text],
.cy-template form textarea,
.cy-template form input[type=password],
.cy-template form input[type=number],
.cy-template form input[type=email],
.cy-template form input[type=number],
.cy-template form input[type=file],
.cy-template form input[type=url],
.cy-template form input[type=search] {
	border: 1px solid var(--grey-line);
	border-radius: 4px;
	padding: 12px 16px;
	width: 100%;
}

.cy-template form input[type=text],
.cy-template form textarea,
.cy-template form input[type=password],
.cy-template form input[type=number],
.cy-template form input[type=email],
.cy-template form input[type=number],
.cy-template form input[type=file],
.cy-template form input[type=url],
.cy-template form input[type=search],
.cy-template .select2-container .select2-chosen {
	color: var(--grey-body);
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 24px;
}

.cy-template form input[type=text]:focus,
.cy-template form textarea:focus,
.cy-template form input[type=password]:focus,
.cy-template form input[type=number]:focus,
.cy-template form input[type=email]:focus,
.cy-template form input[type=number]:focus,
.cy-template form input[type=file]:focus,
.cy-template form input[type=url]:focus,
.cy-template form input[type=search]:focus,
.cy-template .select2-container-active a.select2-choice {
	outline: none;
	box-shadow: none;
	border-color: var(--blue-main);
}

.cy-template .select2-container.select2-container-active a.select2-choice,
.cy-template .select2-container a.select2-choice:focus {
	border-color: var(--blue-main) !important;
}

.cy-template form label {
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;
	margin-bottom: 6px;
	color: var(--grey-body);
}

.cy-template form input[type=file] {
	padding: 0;
}

.cy-template input::file-selector-button {
	background: #E9E9EB;
	border: none;
	border-radius: 4px 0 0 4px;
	padding: 12px 16px;
}

.cy-template form input::plceholder {
	color: var(--grey-placeholder);
}

.cy-template textarea {
	max-height: 140px;
}

.cy-template .inline-fields {
	align-items: stretch;
	width: 100%;
}

.cy-template .inline-fields input {
	width: auto !important;
}

.cy-template .inline-fields .inline-field1 {
	position: relative;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	width: 1%;
	height: 100%;
	min-width: 0;
	margin-bottom: 0;
	margin-right: 4px;
}

.cy-template .select2-container {
	width: 100%;
}

.cy-template .select2-container a.select2-choice {
	border: 1px solid var(--grey-line) !important;
	border-radius: 4px;
	color: var(--grey-body);
	background: transparent;
	background-image: none !important;
	height: 50px;
	padding: 12px 16px;
}

.cy-template .select2-container a.select2-choice:hover {
	text-decoration: none;
}

.cy-template .select2-container span.select2-arrow {
	background-image: none !important;
	background: transparent !important;
	border: none !important;
}

.cy-template .select2-container .select2-choice .select2-arrow {
	width: 30px;
	padding-right: 10px;
}

.cy-template .select2-container .select2-choice .select2-arrow b {
	background-image: url(../../images/guideline-images/dropdown.svg) !important;
	background-position: center;
	background-repeat: no-repeat !important;
	background-size: contain !important;
	transition: all .2s ease;
	transform: rotate(0deg);

}

.cy-template .select2-dropdown-open .select2-choice .select2-arrow b {

	background-image: url(../../images/guideline-images/dropdown.svg) !important;
	transform: rotate(180deg);
	transition: all .2s ease;
}

.select2-drop.select2-drop-active {
	border-radius: 8px;
	border: 1px solid var(--greyscale-cy-shade-10-bg, #E9E9EB) !important;
	background: var(--White, #FFF);
	box-shadow: 0px 8px 28px -4px rgba(24, 99, 220, 0.20) !important;
	padding: 16px;
}

.select2-results li.select2-result {

	color: var(--grey-body);
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	/* 160% */
}

.select2-results li.select2-result .select2-result-label {
	padding: 12px 16px;
}

.select2-results li.select2-result.select2-highlighted {
	border-radius: 4px;
	background: var(--blue-bg2);
}

.select2-search .select2-input {
	border: 1px solid var(--grey-line);
	border-radius: 4px;
	padding: 0px 8px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 30px white inset !important;
}


@media(max-width: 379px) {
	.cy-template .inline-fields input {
		width: 100% !important;
	}

	.cy-template .inline-fields .inline-field1 {
		margin-right: 0;
		margin-bottom: 4px;
	}
}