.Button {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	cursor: pointer;
	font-style: normal;
	position: relative;
	outline: none;
	border: unset;
	width: fit-content;
	height: fit-content;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	user-select: none;
}
.Button--primary {
	background: linear-gradient(296.47deg, #B59975 47.04%, #DDC282 119.66%);
	border-radius: 8px;
	padding: 16px 48px;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	color: #000;
	box-shadow: unset;
	transition: color .2s, box-shadow .2s;
}
.Button--loading {
	pointer-events: none !important;
	user-select: none !important;
}
.Button--loading * {
	color: transparent !important;
	pointer-events: none !important;
	user-select: none !important;
}
.Button--loading::before {
	font-family: 'ETModules' !important;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: '\e02d';
	position: absolute !important;
	display: flex !important;
	align-items: flex-end !important;
	justify-content: center !important;
	margin-left: auto !important;
	margin-right: auto !important;
	animation: spinner .7s linear infinite;
	transform-origin: center;
	font-size: 16px;
}
@keyframes spinner {
	0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
	to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

.Text {
	pointer-events: none;
}

.credit-form {
	position: relative;
}
.credit-form-wrap {
	max-width: 1170px;
	margin: auto;
	padding: 0 15px;
}
.credit-form-wrap form {
	padding: 48px 64px;
	background: #151515;
	border-radius: 8px;
	box-shadow: 0px 0px 40px rgba(221, 194, 130, 0.5);
	position: relative;
}
.credit-form-head {
	font-weight: 700;
	font-size: 28px;
	line-height: 36px;
	color: #fff;
}
.credit-form-head + * {
	margin-top: 40px;
}
.credit-form-ul {
	display: grid;
	grid-template-columns: 1fr 320px;
	grid-column-gap: 80px;
	position: relative;
}
.credit-form-range {
	position: relative;
}
.credit-form-range-title {
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	color: #fff;
}
.credit-form-range-text {
	user-select: none;
	width: fit-content;
	cursor: pointer;
}
.credit-form-range-text::after {
	content: attr(hint);
	position: absolute;
	display: block;
	bottom: 12px;
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #F7FAFC;
	padding: 6px 12px;
	background-color: #283236;
	z-index: 10;
	border-radius: 2px;
	pointer-events: none;
	user-select: none;
	opacity: 0;
	visibility: hidden;
	transition: visibility .2s, opacity .2s;
	white-space: nowrap;
}
.credit-form-range-text.hint::after {
	opacity: 1;
	visibility: visible;
}
.credit-form-range-text,
.input-buffer {
	display: flex;
	align-items: center;
	font-weight: 700;
	font-size: 28px;
	line-height: 33px;
	color: #fff;
	margin-top: 8px;
}
.credit-form-range-tip {
	margin: auto 0 auto auto;
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #283136;
	padding: 6px 12px;
	background-color: #ECF6FF;
	border-radius: 2px;
	opacity: 0;
	visibility: hidden;
	transition: visibility .2s, opacity .2s;
	user-select: none;
	pointer-events: none;
	position: absolute;
	right: 0;
}
.credit-form-range:hover .credit-form-range-tip {
	opacity: 1;
	visibility: visible;
}
.credit-form-range-text input,
.input-buffer {
	color: #fff;
	width: 0px;
	min-width: 0px;
	line-height: unset;
	outline: none;
	border: unset;
	text-align: right;
	transition: color .2s;
	padding: 0 !important;
	font-weight: 700 !important;
	font-size: 28px !important;
	line-height: 33px !important;
	background-color: transparent !important;
}
.input-buffer {
	position: absolute;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	width: unset;
	min-width: unset;
}
.credit-form-range-text input[readonly=""] {
	cursor: pointer;
}
.credit-form-range-text input[readonly="true"] {
	width: 100%;
	min-width: 100%;
	text-align: left;
	pointer-events: none;
}
.credit-form-range-text input::-webkit-outer-spin-button,
.credit-form-range-text input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.credit-form-range-text input[type=number] {
	-moz-appearance: textfield;
}
.credit-form-range-text .Icon {
	font-family: 'ETModules';
	margin-left: 16px;
	font-size: 24px;
	line-height: 24px;
	color: #bbb;
	user-select: none;
	cursor: pointer;
	transition: color .2s;
}
.credit-form-range-text:hover .Icon,
.credit-form-range-text:active .Icon,
.credit-form-range-text:focus .Icon {
	color: #666;
}
.credit-form-range-text input:not([readonly]),
.credit-form-range-text:focus-within {
	color: #666;
	border: none;
}
.credit-form-range-text input:not([readonly]) ~ .Icon {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.credit-form-range-tip {
	margin: auto 0 auto auto;
	font-weight: 700;
	font-size: 12px;
	line-height: 15px;
	color: #000;
	padding: 4px 8px;
	background: linear-gradient(180deg,#dec382 0%,#b59975 100%);
	border-radius: 2px;
	opacity: 0;
	visibility: hidden;
	transition: visibility .2s, opacity .2s;
	user-select: none;
	pointer-events: none;
	position: absolute;
	right: 0;
}
.credit-form-range:hover .credit-form-range-tip {
	opacity: 1;
	visibility: visible;
}
.credit-form-li-ranges {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 20px;
	grid-row-gap: 50px;
}
.credit-form-li-ranges > *:nth-child(1) {
	grid-area: 1 / 1 / 2 / 3;
}
.credit-form-li-ranges > *:nth-child(2) {
	grid-area: 2 / 1 / 3 / 2;
}
.credit-form-li-ranges > *:nth-child(3) {
	grid-area: 2 / 2 / 3 / 3;
}
.credit-form-li-ranges > *:nth-child(3) .credit-form-range-text {
	pointer-events: none;
}
#credit-form-range {
	margin-top: calc(16px + 10px);
	padding: 0 11px;
}

.credit-form .noUi-handle:after,
.credit-form .noUi-handle:before {
	display: none!important;
}
.credit-form .noUi-handle {
	height: 24px!important;
	width: 24px!important;
	border-radius: 50%;
	background: #FFDEA9;
	cursor: pointer;
	box-shadow: 0px 3px 8px rgba(255, 222, 169, 0.3);
	border: unset;
	pointer-events: all;
}
.credit-form .noUi-horizontal .noUi-handle {
	right: -13px;
	top: -11px;
}
.credit-form .noUi-connects {
	border-radius: 2px;
	margin: 0 -11px;
}
.credit-form .noUi-connect {
	background: #ddc282;
}
.credit-form .noUi-horizontal {
	height: 2px;
}
.credit-form .noUi-target {
	background: #444;
	border-radius: 2px;
	border: unset;
	box-shadow: unset;
}
.credit-form .noUi-pips {
	padding: 13px 0 0 0;
	height: fit-content;
	font-weight: 400;
	font-size: 12px;
	line-height: 14px;
	width: unset;
	left: 11px;
	right: 11px;
}
.credit-form .noUi-marker-horizontal.noUi-marker {
	display: none;
}
.credit-form .noUi-value {
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	color: #bbb;
	cursor: pointer;
	transition: color .2s;
	font-weight: 600;
}
.credit-form .noUi-value:hover,
.credit-form .noUi-value:active,
.credit-form .noUi-value:focus {
	color: #ffdea9;
}
.credit-form .noUi-value.active {
	color: #ffdea9;
	font-weight: 600;
}
.credit-form .noUi-value:nth-child(2) {
	left: -11px!important;
	right: unset!important;
	-webkit-transform: unset;
	transform: unset;
	text-align: left;
}
.credit-form .noUi-value:last-child {
	left: unset!important;
	right: -11px!important;
	-webkit-transform: unset;
	transform: unset;
	text-align: right;
}
.credit-form .noUi-base {
	top: calc((10px - 2px / 2) * -1);
	padding: 10px 0;
	margin: -10px 0;
}
.credit-form .noUi-origin {
	height: 2px;
	top: calc((10px - 2px / 2));
	pointer-events: none;
}
.credit-form .noUi-connects {
	height: 2px;
	top: -1px;
}

.credit-form-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	background: linear-gradient(180deg,#dec382 0%,#b59975 100%);/* linear-gradient(320.26deg, #2B57F1 21.55%, #1E8FFE 85.26%); */
	border-radius: 8px;
	padding: 18px;
}
.credit-form-card-li {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.credit-form-card-title {
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	color: #000;
}
.credit-form-card-text {
	font-weight: 700;
	font-size: 32px;
	line-height: 38px;
	color: #000 !important;
	background: transparent !important;
	border: none !important;
	outline: unset;
	padding: 0 !important;
}
.credit-form-card-hint {
	background: rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	display: flex;
	align-items: flex-start;
	font-weight: 400;
	font-size: 14px;
	line-height: 19px;
	color: #000;
	gap: 8px;
	padding: 12px;
}
.credit-form-card-hint::before {
	content: '\70';
	display: block;
	position: relative;
	font-size: 18px;
	font-family: 'ETmodules' !important;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.credit-form-data {
	margin-top: 54px;
	grid-column-start: span 2;
}
.credit-form-title {
	font-weight: 700;
	font-size: 20px;
	line-height: 23px;
	color: #fff;
}
.credit-form-title + * {
	margin-top: 24px;
}
.credit-form-text {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
}
.credit-form-text + * {
	margin-top: 16px;
}
.credit-form-inputs {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}
.credit-form-inputs > * {
	margin: 0!important;
}
.credit-form .order-form-group {
	position: relative;
	width: 100%;
}
.credit-form .order-form-input {
	background: transparent;
	padding: 12px 10px;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	outline: none;
	border: unset;
	border-bottom: 2px solid #fff;
	border-radius: 0;
	text-align: left;
	width: 100%;
	transition: border 300ms ease 0ms;
}
.credit-form .order-form-group.error .order-form-input {
	border-bottom-color: #FE264C;
}
.credit-form .order-form-input:hover,
.credit-form .order-form-input:focus {
	border-bottom-color: #f8d192;
}
.credit-form .order-form-input:focus {
	color: #fff;
}
.credit-form-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 40px;
	grid-column-start: span 2;
}
.credit-form-li > .Button {
	min-width: 216px;
}
.credit-form-sub {
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #999;
}
.credit-form-sub .terms-link {
	color: #FFDEA9;
	transition: color .2s;
}
.credit-form-sub .terms-link:hover,
.credit-form-sub .terms-link:active,
.credit-form-sub .terms-link:focus {
	color: #C4A87A;
}
.credit-form-sub.after-form-submit-message {
	font-size: 14px;
	color: #fff;
	flex: 1;
	text-align: right;
	margin: 0;
	margin-left: 80px;
	margin-right: 20px;
}

.credit-form-bottom .gglcptch_v2 {
	flex: 1;
	display: flex;
	justify-content: center;
}
@media (max-width: 1200px) and (min-width: 501px) {
	.credit-form-wrap form {
		padding: 64px 60px;
	}
	.credit-form-ul {
		grid-template-columns: 1fr 260px;
		grid-column-gap: 60px;
	}
	.credit-form-data {
		margin-top: 64px;
	}
	.credit-form-card {
		padding: 16px;
		height: fit-content;
	}
	.credit-form-li-ranges {
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: calc(32px + 27px);
	}
	.credit-form-li-ranges > *:nth-child(1) {
		grid-area: unset;
	}
	.credit-form-li-ranges > *:nth-child(2) {
		grid-area: unset;
	}
	.credit-form-li-ranges > *:nth-child(3) {
		grid-area: unset;
		margin-bottom: 27px;
	}
	.credit-form-range-text::after {
		bottom: calc(12px - 27px);
	}
	.credit-form-range-title {
		font-weight: 600;
		font-size: 14px;
		line-height: 16px;
	}
	.credit-form-range-text,
	.input-buffer {
		font-weight: 700;
		font-size: 20px;
		line-height: 23px;
	}
}
@media (max-width: 768px) and (min-width: 501px) {
	.credit-form {
		padding: 0 0 calc(80px - 40px) 0;
	}
	.credit-form-wrap form {
		padding: 40px;
		transform: translateY(-40px);
	}
	.credit-form-ul {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}
	.credit-form-data {
		margin-top: 0;
	}
	.credit-form-title {
		font-weight: 700;
		font-size: 16px;
		line-height: 19px;
	}
	.credit-form-title + * {
		margin-top: 16px;
	}
	.credit-form-bottom {
		margin-top: 0;
		grid-column-start: unset;
	}
	.credit-form-card {
		display: grid;
		grid-template-columns: calc(100% - 235px - 46px) 235px;
		grid-template-rows: repeat(2, 1fr);
		grid-column-gap: 46px;
		grid-row-gap: 16px;
		width: 80%;
	}
	.credit-form-card > *:nth-child(1) {
		grid-area: 1 / 1 / 2 / 2;
	}
	.credit-form-card > *:nth-child(2) {
		grid-area: 2 / 1 / 3 / 2;
	}
	.credit-form-card > *:nth-child(3) {
		grid-area: 1 / 2 / 3 / 3;
	}
	.credit-form-card-hint {
		font-weight: 400;
		font-size: 16px;
		line-height: 19px;
		gap: 8px;
		padding: 12px;
		margin: 0;
		height: fit-content;
	}
	.credit-form-li-ranges > * {
		grid-area: unset;
		margin-bottom: 27px;
	}
	.credit-form-range-text::after {
		bottom: calc(12px - 27px);
	}
	.credit-form-li-ranges {
		width: 80%;
	}
}
@media (max-width: 500px) {
	
	.credit-form {
		padding: 0;
	}
	.credit-form-wrap {
		padding: 0;
	}
	.credit-form-wrap form {
		padding: calc(24px + 7px) 15px 24px 15px;
		transform: unset;
	}
	.credit-form-head {
		font-weight: 700;
		font-size: 22px;
		line-height: 28px;
	}
	.credit-form-ul {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}
	.credit-form-data {
		margin-top: 0;
	}
	.credit-form-title {
		font-weight: 700;
		font-size: 16px;
		line-height: 19px;
	}
	.credit-form-title + * {
		margin-top: 16px;
	}
	.credit-form-bottom {
		margin-top: 0;
		grid-column-start: unset;
		display: flex;
		flex-direction: column-reverse;
		gap: 12px;
	}
	.credit-form-li > .Button {
		width: 100%;
	}
	.credit-form-card {
		width: auto;
		display: flex;
		flex-direction: column;
		gap: 16px;
		padding: 16px;
	}
	.credit-form-card > *:nth-child(1) {
		grid-area: unset;
	}
	.credit-form-card > *:nth-child(2) {
		grid-area: unset;
	}
	.credit-form-card > *:nth-child(3) {
		grid-area: unset;
	}
	.credit-form-card-hint {
		font-weight: 400;
		font-size: 16px;
		line-height: 19px;
		gap: 8px;
		padding: 12px;
		margin: 0;
		height: fit-content;
	}
	.credit-form-li-ranges > * {
		grid-area: unset;
		margin-bottom: 27px;
	}
	.credit-form-range-text::after {
		bottom: calc(12px - 27px);
	}
	.credit-form-li-ranges {
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 32px;
	}
	.credit-form-inputs {
		flex-direction: column;
		gap: 16px;
	}
	.credit-form-range-title {
		font-size: 14px;
		line-height: 16px;
	}
	.credit-form-range-text,
	.input-buffer {
		font-size: 20px;
		line-height: 23px;
	}
	.credit-form-card-title {
		font-size: 14px;
		line-height: 16px;
	}
	.credit-form-card-text {
		font-size: 24px;
		line-height: 28px;
	}
	.credit-form-sub {
		text-align: center;
	}
	.credit-form .noUi-horizontal .noUi-handle,
	.credit-form .noUi-pips {
		pointer-events: all!important;
	}
	.credit-form .noUi-target {
		pointer-events: none!important;
	}
	.credit-form-sub.after-form-submit-message {
		margin: 4px 0;
	}
}