.shipping-destination {
}

.shipping-destination__wrap {
	padding: 105px 94px 120px;
	border: 1px solid rgba(247, 247, 247, 1);
	border-radius: 30px;
	background: rgba(255, 255, 255, 1);
	background-image: url(img/bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.shipping-destination__title {
	color: rgba(255, 255, 255, 1);
	margin-bottom: 21px;
}

.shipping-destination__title b {
	color: inherit;
}

.shipping-destination__text {
	max-width: 752px;
	color: rgba(255, 255, 255, 1);
	margin-bottom: 36px;
}

.shipping-destination-row {
	display: flex;
	flex-wrap: wrap;
	gap: 11px 30px;
}

.shipping-destination-item {
	border: 1px solid rgba(244, 239, 235, 1);
	border-radius: 50px;
	backdrop-filter: blur(10px);
	background: rgba(250, 246, 240, 0.93);
	width: 341px;
	height: 64px;
	display: none;
	align-items: center;
	gap: 10px;
	padding: 10px 19px 10px 12px;
	max-width: 100%;
}

.shipping-destination-item__icon {
	border-radius: 150px;
	background: rgba(255, 255, 255, 0.86);
	width: 44px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.shipping-destination-item__icon:before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	background-image: url(img/location.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.shipping-destination-item__text {
	font-size: 18px;
	font-weight: 300;
	line-height: 20px;
	color: rgba(38, 38, 38, 1);
}

.shipping-destination-item__text b {
	font-weight: 500;
	color: inherit;
}

.shipping-destination-row__footer {
	width: 100%;
	margin-top: 30px;
}

.shipping-destination-row__showall {
	display: block;
	color: rgba(254, 132, 70, 1);
	font-size: 18px;
	font-weight: 500;
	line-height: 18px;
	width: fit-content;
	border-bottom: 1px dashed;
}

.shipping-destination-item:hover {
	box-shadow: 0px 6px 40px 0px rgba(255, 255, 255, 0.2);
	background: rgba(38, 38, 38, 1);
	border: none;
}

.shipping-destination-item:hover .shipping-destination-item__icon {
	background: rgba(254, 132, 70, 1);
}

.shipping-destination-item:hover .shipping-destination-item__icon:before {
	background-image: url(img/location-white.svg);
}

.shipping-destination-item:hover .shipping-destination-item__text {
	color: rgba(255, 255, 255, 1);
}

.shipping-destination-row.opened .shipping-destination-item {
    display: flex;
}

.shipping-destination-row.opened .shipping-destination-row__footer {
    display: none;
}

@media(min-width: 1701px) {
	.shipping-destination-item:nth-child(-n+16) {
		display: flex;
	}
}

@media screen and (max-width: 1700px) {
	.shipping-destination__wrap {
		padding: 80px 72px;
		border-radius: 24px;
	}

	.shipping-destination-item {
		width: calc((100% - 60px)/3);
	}
}

@media screen and (max-width: 1400px) {
	.shipping-destination__wrap {
		padding: 72px 65px;
		border-radius: 22px;
	}
}

@media screen and (min-width: 1201px) {
	.shipping-destination-item:nth-child(-n+12) {
		display: flex;
	}
}

@media screen and (max-width: 1200px) {
	.shipping-destination__wrap {
		border-radius: 24px;
		padding: 50px 45px;
	}

	.shipping-destination-item {
		width: calc((100% - 30px) / 2);
	}
}

@media screen and (max-width: 992px) {
	.shipping-destination__wrap {
		padding: 40px 30px;
		border-radius: 20px;
	}

	.shipping-destination-row {
		gap: 10px;
	}

	.shipping-destination-item {
		width: calc((100% - 10px) / 2);
	}
}

@media screen and (min-width: 577px) {
	.shipping-destination-item:nth-child(-n+8) {
		display: flex;
	}
}

@media screen and (max-width: 576px) {
	.shipping-destination__wrap {
		padding: 30px 20px;
		border-radius: 15px;
	}

	.shipping-destination-item {
		width: 100%;
	}

	.shipping-destination-item:nth-child(-n+6) {
		display: flex;
	}
}
