/*кастомный селект НАЧАЛО*/
.custom__select {
	position: relative;
	width: 100%;
}

.custom__select-head {
	border-radius: 4px;
	border: 1px solid #DADADA;
	background: #FFF;
	width: 100%;
}

.custom__item._select._error .custom__select-head {
	border: 1px solid #F03030;
}

.custom__select-body {
	display: flex;
	flex-direction: column;
	border-radius: 4px;
	border: 0px solid #DADADA;
	background: #FFF;
	max-height: 0;
	height: auto;
	overflow: hidden;
	transition: max-height .3s ease, border .3s linear;
	background: #FFF;
	z-index: 5;
	width: 100%;
	position: absolute;
}

.custom__select-body._active {
	max-height: 284px;
	border: 1px solid #DADADA;
	transition: max-height .3s ease, border 0s linear;
	overflow: auto;
}

.custom__select-item {
	display: flex;
	height: auto;
	padding: 9px 10px 13px 10px;
	justify-content: space-between;
	align-items: center;
	align-self: stretch;
	cursor: pointer;
	gap: 8px;
}

.custom__select-item._selected {
	background-color: #30B931;
	color: #FFF;
}

.custom__select-head .custom__select-item span:not(.icon) {
	flex: 1 0 0;
}

.custom__select-head .custom__select-item span:not(.icon) input {
	width: 100%;
	height: 100%;
	border: none;
}

.custom__select-head .custom__select-item span:not(.icon) input::placeholder {
	color: #808080;
	transition: .2s ease;
}

.custom__select-head .custom__select-item span:not(.icon) input:focus::placeholder {
	opacity: 0;
	transition: .2s ease;
}

.custom__select-head .custom__select-item .icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.custom__select-head .custom__select-item .icon:first-child {
	width: 15px;
	height: 15.147px;
	flex-shrink: 0;
}

.custom__select-head .custom__select-item .icon:last-child {
	width: 6px;
	height: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: rotateX(0deg);
	transition: .2s ease;
	margin-top: 2px;
}

.custom__select._active .custom__select-head .custom__select-item .icon:last-child {
	transform: rotateX(180deg);
}

.custom__select-body .custom__select-item:not(._selected):hover {
	background: rgba(48, 185, 49, 0.10);
}

@media (min-width: 980px) {
	.custom__select-head .custom__select-item .icon:last-child {
		margin-top: 0;
	}

	.custom__select-item {
		padding: 16px 14px 13px 14px;
	}

	.custom__select-body .custom__select-item {
		padding: 7px 15px 8px 37px;
	}
}

/*кастомный селект КОНЕЦ*/


.delivery-page__calculator {
	padding: 0;
	border: none;
}

.duty-template .delivery-page__calculator h2 {
	font-size: 22px;
	line-height: normal;
	margin-bottom: 20px;
}

.info {
	margin-top: 20px;
}

.delivery-page__calculator .sub-title {
	font-variant-numeric: lining-nums proportional-nums;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
}


.info .info__title {
	font-variant-numeric: lining-nums proportional-nums;
	font-size: 16px;
	font-weight: 700;
	line-height: 150%;
	margin-bottom: 20px;
}

.info__wrapper {
	display: flex;
	width: 100%;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 20px 10px;
}

.info__item {
	width: calc(50% - 10px/2);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
}

.info__item-img {
	height: min(max(50px, calc(0.75rem + (65 - 50) * ((100vw - 360px) / (768 - 360)))), 65px);
	padding: 5px;
}

.info .info__item-name {
	font-variant-numeric: lining-nums proportional-nums;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.info .info__item-price {
	font-variant-numeric: lining-nums proportional-nums;
	font-size: 16px;
	font-style: normal;
	line-height: normal;
}

@media (min-width: 640px) {
	.info__wrapper {
		flex-wrap: nowrap;
	}

	.info__item {
		width: 100%;
	}
}

@media (min-width: 980px) {
	.duty-template .delivery-page__calculator h2 {
		font-size: 28px;
		margin-top: 0;
		margin-bottom: 7px;
	}

	.duty-template .delivery-page__calculator p {
		margin-top: 15px;
		margin-bottom: 11px;
	}

	.info__item {
		gap: 12px;
	}

	.info .info__item-name {
		font-size: 18px;
	}

	.delivery-page__calculator .sub-title {
		font-size: 20px;
		font-weight: 900;
	}

	.info .info__title {
		font-size: 20px;
	}


}

.table-wrapper {
	border-radius: 4px;
	border: 1px solid #DADADA;
	overflow: hidden;
}

.delivery-page__calculator table {
	width: 100%;
	border-collapse: collapse;

}

.delivery-page__calculator td,
.delivery-page__calculator th {
	border-bottom: 1px solid #DADADA;
	padding: 16px 14px 13px 14px;
	border-collapse: collapse;
}

.delivery-page__calculator tr:last-child td {
	border: none;
}

.delivery-page__calculator td:last-child {
	text-align: end;
}