.heel-wtb {
	position: fixed;
	inset: 0;
	z-index: 100000;
	visibility: hidden;
	pointer-events: none;
}

.heel-wtb.is-open {
	visibility: visible;
	pointer-events: auto;
}

.heel-wtb__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: rgba(22, 35, 54, 0.52);
	opacity: 0;
	cursor: default;
	transition: opacity 0.3s ease;
}

.heel-wtb.is-open .heel-wtb__overlay {
	opacity: 1;
}

.heel-wtb__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(620px, 92vw);
	height: 100%;
	padding: 54px 64px 60px;
	overflow-y: auto;
	background: #fff;
	box-shadow: -12px 0 40px rgba(24, 45, 67, 0.14);
	transform: translateX(100%);
	transition: transform 0.35s ease;
	outline: none;
}

.heel-wtb.is-open .heel-wtb__panel {
	transform: translateX(0);
}

.heel-wtb-lock {
	overflow: hidden;
}

.heel-wtb__close {
	position: absolute;
	top: 18px;
	right: 24px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #333;
	font: 300 42px/1 Arial, sans-serif;
	cursor: pointer;
}

.heel-wtb__product {
	margin: 0 55px 10px 0;
	color: #777;
	font-size: 18px;
}

.heel-wtb__title {
	margin: 0 0 8px;
	color: #168fa8;
	font-size: 38px;
	font-weight: 300;
}

.heel-wtb__intro {
	margin: 0 0 34px;
	color: #5795a5;
	font-size: 24px;
	line-height: 1.45;
}

.heel-wtb__section {
	margin: 0 0 38px;
}

.heel-wtb__section-title {
	margin: 0 0 20px;
	color: #168fa8;
	font-size: 32px;
	font-weight: 300;
	line-height: 1.25;
}

.heel-wtb__list {
	display: grid;
	gap: 12px;
}

.heel-wtb__item {
	display: grid;
	grid-template-columns: 150px 1fr;
	grid-template-areas:
		"logo name"
		"logo link";
	align-items: center;
	min-height: 126px;
	padding: 18px 20px;
	border: 1px solid #edf1f2;
	background: #fff;
	box-shadow: 0 2px 9px rgba(24, 67, 84, 0.05);
}

.heel-wtb__logo-link {
	grid-area: logo;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 82px;
	padding-right: 20px;
	border-right: 1px solid #edf1f2;
}

.heel-wtb__logo {
	display: block;
	max-width: 115px;
	max-height: 65px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.heel-wtb__name {
	grid-area: name;
	padding: 0 0 4px 28px;
	color: #333;
	font-size: 19px;
}

.heel-wtb__site-link {
	grid-area: link;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-left: 28px;
	color: #168fa8;
	font-size: 16px;
	text-decoration: none;
}

.heel-wtb__site-link span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid #168fa8;
	border-radius: 50%;
	transition: 0.2s ease;
}

.heel-wtb__site-link:hover,
.heel-wtb__site-link:focus {
	color: #097087;
	text-decoration: none;
}

.heel-wtb__site-link:hover span,
.heel-wtb__site-link:focus span {
	background: #168fa8;
	color: #fff;
}

.heel-wtb-open {
	border: 0;
	cursor: pointer;
}

@media (max-width: 767px) {
	.heel-wtb__panel {
		width: 100%;
		padding: 58px 20px 40px;
	}

	.heel-wtb__title {
		font-size: 32px;
	}

	.heel-wtb__intro {
		font-size: 20px;
	}

	.heel-wtb__section-title {
		font-size: 27px;
	}

	.heel-wtb__item {
		grid-template-columns: 105px 1fr;
		padding: 14px;
	}

	.heel-wtb__logo-link {
		padding-right: 14px;
	}

	.heel-wtb__logo {
		max-width: 82px;
	}

	.heel-wtb__name,
	.heel-wtb__site-link {
		margin-left: 0;
		padding-left: 18px;
	}
}
