.vpn-notice {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 10000;
	width: 330px;
	max-width: calc(100vw - 40px);
	padding: 14px;
	color: #ffffff;
	font-family: Helvetica, Arial, sans-serif;
	background: #313131;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
	box-sizing: border-box;
}

.vpn-notice__container {
	position: relative;
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	align-items: start;
	column-gap: 10px;
	width: 100%;
}

.vpn-notice__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.14);
	border-radius: 9px;
	box-sizing: border-box;
}

.vpn-notice__icon svg {
	display: block;
	width: 17px;
	height: 17px;
}

.vpn-notice__content {
	min-width: 0;
	padding-right: 24px;
}

.vpn-notice__title {
	margin: 0 0 4px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
}

.vpn-notice__text {
	margin: 0;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.45;
	opacity: 0.92;
}

.vpn-notice__text a {
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.vpn-notice__close {
	position: absolute;
	top: -5px;
	right: -5px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	padding: 0;
	color: #ffffff;
	font-family: Arial, sans-serif;
	font-size: 19px;
	font-weight: 400;
	line-height: 1;
	background: transparent;
	border: 0;
	border-radius: 6px;
	cursor: pointer;
	opacity: 0.75;
	transition:
		opacity 0.2s ease,
		background-color 0.2s ease;
}

.vpn-notice__close:hover {
	background: rgba(255, 255, 255, 0.12);
	opacity: 1;
}

.vpn-notice[hidden] {
	display: none !important;
}

@media (max-width: 767px) {
	.vpn-notice {
		right: 12px;
		bottom: 12px;
		width: 310px;
		max-width: calc(100vw - 24px);
		padding: 12px;
	}

	.vpn-notice__container {
		grid-template-columns: 32px minmax(0, 1fr);
		column-gap: 9px;
	}

	.vpn-notice__icon {
		width: 32px;
		height: 32px;
	}

	.vpn-notice__icon svg {
		width: 16px;
		height: 16px;
	}

	.vpn-notice__title {
		font-size: 12px;
	}

	.vpn-notice__text {
		font-size: 12px;
		line-height: 1.4;
	}
}