/* Where To Buy — distributors map & filter (font-family intentionally inherited from theme, not copied from source) */
.wtb {
	--wtb-red: #e20613;
	--wtb-navy: #143960;
	--wtb-label: #5f666d;
	--wtb-border: #ebedef;
	--wtb-dark: #020f1d;
	--wtb-phcol: #c8d6e4;
}

.wtb :where(ul) {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wtb a {
	text-decoration: none;
}

.wtb__topb {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
}

.wtb__title {
	max-width: 550px;
}

.wtb__eyebrow {
	margin-bottom: 16px;
	color: var(--wtb-red);
	font-weight: 700;
}

.wtb__heading {
	margin: 0;
	font-size: 36px;
	line-height: 49px;
	font-weight: 700;
}

.wtb__filters {
	display: flex;
	align-items: center;
    justify-content: flex-end;
	max-width: 832px;
	width: 100%;
	margin-left: 50px;
}

.wtb__field {
	width: calc(50% - 8px);
	margin-left: 16px;
}

.wtb__field:first-child {
	margin-left: 0;
}

/* A single field (e.g. just the region select) takes a fixed width instead of the 2-up 50% split. */
.wtb__field:only-child {
	width: 320px;
	max-width: 100%;
}

.wtb__label {
	display: block;
	margin-bottom: -8px;
	padding-left: .2em;
	color: var(--wtb-label);
	font-weight: 500;
	opacity: .6;
}

.wtb__select {
	display: block;
	width: 100%;
	height: 60px;
	background-color: transparent;
	border: 0;
	border-bottom: 1px solid var(--wtb-border);
	font-weight: 700;
	outline: none;
}

.wtb__content {
	margin-top: 64px;
}

.wtb__map {
	position: relative;
	max-width: 1395px;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

.wtb__mapcont {
	position: relative;
	padding-top: 68.1%;
}

.wtb__mapcont svg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: auto;
	transform: translate(-51.5%, -58%) scale(1.05);
}

.wtb__mapcont svg text {
	display: none;
	fill: #fff !important;
	font-family: 'Open Sans', sans-serif !important;
	font-size: 8px !important;
}

.wtb__mapcont svg circle {
	display: none;
}

.wtb__mapcont svg #krym > circle,
.wtb__mapcont svg #krym > text {
	display: block;
}

.wtb__mapcont svg #krym > text + text {
	font-size: 6.5px !important;
}

.wtb__mapcont svg #krym > path:first-child {
	fill: var(--wtb-navy) !important;
	transition: fill .15s ease;
}

.wtb__mapcont svg g.city circle,
.wtb__mapcont svg g.city text {
	display: block;
}

.wtb__mapcont svg g.city path:first-child {
	fill: var(--wtb-navy) !important;
	transition: fill .15s ease;
}

.wtb__mapcont svg g.city {
	cursor: pointer;
}

.wtb__mapcont svg g.city:hover path:first-child,
.wtb__mapcont svg g.is-active path:first-child {
	fill: var(--wtb-red) !important;
}

.wtb__list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding-top: 120px;
}

.wtb__item {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	width: calc(100% / 3 - 40px / 3);
	padding: 40px;
	border-radius: 6px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
	text-align: center;
	background: #fff;
	line-height: 1.6;
}

.wtb__item[hidden] {
	display: none;
}

.wtb__name {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	color: var(--wtb-dark);
}

.wtb__address .wtb__city {
	margin-top: 8px;
	font-size: 18px;
	font-weight: 700;
	color: var(--wtb-dark);
}

.wtb__phones li a {
	font-size: 22px;
	font-weight: 700;
	color: var(--wtb-red);
	transition: color .3s ease;
}

.wtb__phones li a:hover {
	color: var(--wtb-dark);
}

.wtb__links li {
	margin-bottom: 12px;
}

.wtb__links li:last-child {
	margin-bottom: 0;
}

.wtb__link-label {
	display: block;
	margin-top: 40px;
	margin-bottom: 8px;
	font-size: 16px;
	font-weight: 600;
	color: var(--wtb-phcol);
}

.wtb__links li a {
	font-size: 16px;
	font-weight: 700;
	color: var(--wtb-dark);
	transition: color .3s ease;
}

.wtb__links li a:hover {
	color: var(--wtb-red);
}

.wtb__empty {
	display: none;
	margin: 40px 0 0;
	color: var(--wtb-label);
	text-align: center;
}

.wtb__empty:not([hidden]) {
	display: block;
}

@media screen and (max-width: 1440px) {
	.wtb__title {
		max-width: 38.19vw;
	}

	.wtb__filters {
		max-width: 57.78vw;
		margin-left: 3.47vw;
	}

	.wtb__field {
		width: calc(50% - .56vw);
		margin-left: 1.11vw;
	}

	.wtb__label {
		margin-bottom: -.56vw;
	}

	.wtb__select {
		height: 4.17vw;
	}

	.wtb__content {
		margin-top: 4.44vw;
	}

	.wtb__list {
		padding-top: 8.34vw;
	}

	.wtb__address .wtb__city {
		margin-top: .56vw;
	}
}

@media screen and (max-width: 920px) {
	.wtb__topb {
		display: block;
	}

	.wtb__title {
		max-width: 100%;
	}

	.wtb__filters {
		max-width: 100%;
		width: 100%;
		margin-left: 0;
		margin-top: 32px;
	}

	.wtb__content {
		margin-top: 32px;
	}

	.wtb__label {
		margin-bottom: 2px;
		font-size: 12px;
		line-height: 16px;
	}

	.wtb__select {
		height: 40px;
	}
}

@media screen and (max-width: 760px) {
	.wtb__filters {
		display: block;
	}

	.wtb__field {
		width: 100% !important;
		max-width: 100%;
		margin-left: 0 !important;
		margin-bottom: 16px;
	}

	.wtb__field:last-child {
		margin-bottom: 0;
	}

	.wtb__map {
		display: none;
	}

	.wtb__item {
		width: 100%;
		max-width: 380px;
	}
}

/* Card typography tiers: desktop (base above) / tablet / mobile. */
@media screen and (max-width: 1024px) {
	.wtb__item {
		padding: 40px 30px;
	}

	.wtb__name {
		font-size: 22px;
	}

	.wtb__address .wtb__city {
		font-size: 17px;
	}

	.wtb__link-label {
		font-size: 16px;
	}

	.wtb__phones li a {
		font-size: 20px;
	}
}

@media screen and (max-width: 767px) {
	.wtb__item {
		padding: 30px 20px;
	}

	.wtb__name {
		font-size: 20px;
	}

	.wtb__address .wtb__city {
		font-size: 16px;
	}

	.wtb__link-label {
		font-size: 15px;
	}

	.wtb__phones li a {
		font-size: 18px;
	}
}
