.wholesale-price-notice {
	position: fixed;
	top: 16px;
	right: 16px;
	z-index: 1000000000;
	box-sizing: border-box;
	width: min(410px, calc(100vw - 32px));
	padding: 22px 46px 22px 22px;
	border: 1px solid #e0d9b6;
	border-radius: 6px;
	background: #ffffe0;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
	color: #333;
	font-family: 'roboto_ltregular', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.45;
	animation: wholesale-price-notice-show 0.35s ease-out both;
}

.wholesale-price-notice__text {
	margin: 0;
}

.wholesale-price-notice a {
	color: #953737;
	text-decoration: underline;
}

.wholesale-price-notice a:hover,
.wholesale-price-notice a:focus {
	text-decoration: none;
}

.wholesale-price-notice__close {
	position: absolute;
	top: 8px;
	right: 10px;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #777;
	cursor: pointer;
	font: 28px/30px Arial, sans-serif;
}

.wholesale-price-notice__close:hover,
.wholesale-price-notice__close:focus {
	color: #222;
}

@keyframes wholesale-price-notice-show {
	from {
		opacity: 0;
		transform: translateY(-16px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 520px) {
	.wholesale-price-notice {
		top: 8px;
		right: 8px;
		width: calc(100vw - 16px);
		padding: 18px 42px 18px 18px;
		font-size: 15px;
	}
}
