.fpdvs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin: 0 0 16px;
	padding: 0;
	width: 100%;
	position: relative;
	z-index: 20;
	box-sizing: border-box;
}

.fpdvs-btn {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 18px;
	min-height: 44px;
	border: 1px solid #ccc;
	border-radius: 999px;
	background: #fff;
	color: #1f1f1f;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	white-space: nowrap;
	box-sizing: border-box;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

.fpdvs-btn:focus-visible {
	outline: 0;
	box-shadow: 0 0 0 3px rgba(31, 31, 31, .15);
}

@media (hover: hover) {
	.fpdvs-btn:hover {
		background: #f7f7f7;
		border-color: #9e9e9e;
	}
}

.fpdvs-btn.is-active {
	background: #1f1f1f;
	color: #fff;
	border-color: #1f1f1f;
}

.fpdvs-btn.icon {
	padding: 10px 12px;
	min-width: 44px;
	flex: 0 0 auto;
}

.fpdvs-btn.icon svg {
	display: block;
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

@media (max-width: 1024px) {
	.fpdvs {
		gap: 8px;
		margin-bottom: 14px;
	}

	.fpdvs-btn {
		padding: 10px 14px;
		font-size: 14px;
	}
}

@media (max-width: 767px) {
	.fpdvs {
		gap: 6px;
		margin-bottom: 12px;
		padding: 0 10px;
	}

	.fpdvs-btn {
		flex: 1 1 auto;
		min-width: 0;
		padding: 10px 12px;
		font-size: 14px;
	}

	.fpdvs-btn.icon {
		flex: 0 0 auto;
		min-width: 42px;
	}
}

@media (max-width: 480px) {
	.fpdvs {
		gap: 6px;
	}

	.fpdvs-btn {
		padding: 9px 10px;
		font-size: 13px;
		min-height: 42px;
	}
}
