.pdsz-mobile-panel-trigger {
	display: none;
}

.pdsz-mobile-panel {
	position: fixed;
	inset: 0;
	z-index: 1150;
	visibility: hidden;
	pointer-events: none;
}

.pdsz-mobile-panel.is-open {
	visibility: visible;
	pointer-events: auto;
}

.pdsz-mobile-panel__overlay {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgba(16, 17, 20, 0.68);
	padding: 0;
	opacity: 0;
	transition: opacity 0.32s ease;
}

.pdsz-mobile-panel.is-open .pdsz-mobile-panel__overlay {
	opacity: 1;
}

.pdsz-mobile-panel__drawer {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: min(320px, calc(100vw - 28px));
	background: #fff;
	box-shadow: 18px 0 36px rgba(0, 0, 0, 0.22);
	display: flex;
	flex-direction: column;
	transform: translate3d(-100%, 0, 0);
	transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.pdsz-mobile-panel.is-open .pdsz-mobile-panel__drawer {
	transform: translate3d(0, 0, 0);
}

.pdsz-mobile-panel__header {
	display: flex;
	justify-content: flex-end;
	padding: 14px 14px 0;
}

.pdsz-mobile-panel__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 0;
	background: transparent;
	color: #15161b;
	padding: 0;
}

.pdsz-mobile-panel__close svg {
	width: 22px;
	height: 22px;
}

.pdsz-mobile-panel__body {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 8px 16px 22px;
}

body.pdsz-mobile-panel-open {
	overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
	.pdsz-mobile-panel__overlay,
	.pdsz-mobile-panel__drawer {
		transition-duration: 0.01ms;
	}
}

@media (max-width: 767px) {
	.pdsz-mobile-panel-trigger {
		display: block;
		padding: 22px 0 0;
	}

	.pdsz-mobile-panel-trigger__button {
		display: inline-flex;
		align-items: center;
		gap: 14px;
		min-height: 44px;
		padding: 0;
		border: 0;
		background: transparent;
		color: #15161b;
		font: 400 17px/1.2 "Lato", sans-serif;
	}

	.pdsz-mobile-panel-trigger__icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 34px;
		height: 34px;
	}

	.pdsz-mobile-panel-trigger__icon svg {
		width: 24px;
		height: 24px;
	}

	.pdsz-mobile-panel-trigger__label {
		display: inline-block;
	}
}
