.funding {
	width: 100%
}

.funding__description {
	font-size: 16px;
	color: #0d3350;
	font-weight: 400;
	margin-bottom: 16px
}

.funding__search {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin-bottom: 24px
}

.funding__search-input {
	width: 100%;
	border-radius: 10px;
	border: 1px solid #0f72ac;
	padding: 20px 24px;
	color: #0d3350;
	font-size: 20px;
	line-height: 24px;
	font-family: Lato;
	font-weight: 500
}

.funding__search-input::placeholder {
	color: #9ea1b9
}

.funding__search-icon {
	position: absolute;
	right: 20px;
	width: 24px;
	height: 24px;
	cursor: pointer;
	transform: translateY(-50%);
	top: 50%
}

@media (max-width: 768px) {
	.funding__search-input {
		padding: 14px 18px;
		font-size: 16px;
		line-height: 20px
	}
}

.funding__country-picker {
	z-index: 1;
	list-style: none;
	width: 100%;
	overflow: hidden;
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 4px);
	background-color: #fff;
	border-radius: 10px;
	height: 0;
	padding: 0;
	box-shadow: 0 4px 50px 0 #0d33501a
}

.funding__country-picker.show {
	height: auto;
	overflow: auto;
	padding: 8px 0;
	max-height: 30vh
}

.funding__country-picker__item {
	display: flex;
	align-items: center;
	padding: 16px 24px;
	transition: all .3s;
	cursor: pointer
}

.funding__country-picker__item:hover {
	background-color: #f4eeff
}

.funding__country-picker__item-image {
	width: 32px;
	height: 23px;
	object-fit: contain;
	margin-right: 16px
}

.funding__payments {
	font-family: Lato;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 24px
}

.funding__payments__item {
	width: calc(50% - 12px);
	padding: 32px 40px;
	box-sizing: border-box;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 50px 0 #0d33500d;
	transition: all .33s, width 0s;
	font-size: 10px;
	border-radius: 10px
}

.funding__payments__item.full-size {
	width: 100%
}

.funding__payments__item:hover {
	box-shadow: 0 4px 30px 0 #8f80805e
}

@media (max-width: 1024px) {
	.funding__payments__item {
		font-size: 8px
	}
}

@media (max-width: 768px) {
	.funding__payments__item {
		width: 100%
	}
}

@media (max-width: 460px) {
	.funding__payments__item {
		padding: 16px 20px
	}
}

.funding__payments__item__title {
	display: flex;
	align-items: center;
	gap: 24px;
	justify-content: flex-start;
	margin-bottom: 24px
}

@media (max-width: 1024px) {
	.funding__payments__item__title {
		margin-bottom: 16px
	}
}

.funding__payments__item__title_icon {
	width: 5em;
	height: 5em;
	border-radius: 1.6em
}

.funding__payments__item__title_value {
	color: #0d3350;
	font-size: 2.4em;
	font-weight: 700
}

.funding__payments__item__fund {
	margin-top: auto
}

.funding__payments__item__fund_link {
	font-size: 1.6em;
	font-weight: 700;
	font-family: Lato;
	padding: 14.5px 24px;
	box-sizing: border-box
}

@media (max-width: 768px) {
	.funding__payments__item__fund_link {
		width: 100%
	}
}

.funding__payments__item_description {
	font-size: 2em;
	color: #798387;
	font-weight: 400;
	margin-bottom: 24px
}

@media (max-width: 1024px) {
	.funding__payments__item_description {
		margin-bottom: 16px
	}
}

.funding__payments__item_note {
	color: #a05600;
	font-size: 2em;
	font-weight: 400;
	margin-bottom: 24px
}

@media (max-width: 1024px) {
	.funding__payments__item_note {
		margin-bottom: 16px
	}
}

.funding__payments__item__params {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	font-size: 2em;
	font-weight: 400;
	color: #0d3350;
	margin-bottom: 24px
}

@media (max-width: 1024px) {
	.funding__payments__item__params {
		margin-bottom: 16px
	}
}

.funding__payments__item__params_key {
	width: calc(50% - 12px)
}

.funding__payments__item__params_key-gray {
	color: #798387
}

.funding__payments__item__params_value {
	width: calc(50% - 12px);
	text-align: right
}

.funding__payments__item__params_highlight {
	background-color: #3873cc26;
	border-radius: 8px;
	padding: 4px 8px;
	display: inline-block
}

.funding__tooltip {
	margin-bottom: 16px;
	color: #0d3350;
	background-color: #f1ebfb;
	display: flex;
	padding: 14px 20px;
	flex-wrap: nowrap;
	align-items: flex-start;
	border-radius: 12px
}

.funding__tooltip__icon {
	color: #0d3350;
	width: 24px;
	height: 24px;
	display: inline-block;
	margin-right: 8px
}

.funding__tooltip__text {
	flex: 1;
	color: #294366;
	font-size: 14px;
	font-family: Lato;
	font-weight: 400;
	padding-top: 2px;
	line-height: 20px
}

.funding__tooltip__text a {
	color: #0f72ac;
	display: inline-flex;
	font-size: inherit;
	align-items: center;
	font-weight: 400;
	line-height: normal;
	text-decoration: none
}