.aerobay-helicopter-promo {
	position: fixed;
	right: 28px;
	bottom: 28px;
	z-index: 1040;
	width: min(330px, calc(100vw - 56px));
	max-width: 330px;
	box-sizing: border-box;
	display: block;
	padding: 4px 4px 8px;
	font-family: inherit;
	color: #2f3450;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(255, 255, 255, 0.58);
	border-radius: 12px;
	box-shadow: 0 18px 45px rgba(31, 38, 135, 0.22);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	opacity: 0;
	visibility: hidden;
	transform: translateX(42px);
	pointer-events: none;
	transition:
		opacity 0.42s ease,
		transform 0.42s ease,
		visibility 0s linear 0.42s;
}

.aerobay-helicopter-promo[hidden] {
	display: none;
}

.aerobay-helicopter-promo.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	pointer-events: auto;
	transition:
		opacity 0.42s ease,
		transform 0.42s ease,
		visibility 0s linear 0s;
}

.aerobay-helicopter-promo.is-closing {
	opacity: 0;
	visibility: hidden;
	transform: translateX(52px);
	pointer-events: none;
	transition:
		opacity 0.32s ease,
		transform 0.32s ease,
		visibility 0s linear 0.32s;
}

.aerobay-helicopter-promo__close {
	position: absolute;
	top: -14px;
	right: -11px;
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid rgba(85, 101, 221, 0.16);
	border-radius: 50%;
	background: rgba(255, 255, 255, 1);
	color: #3d3d3d;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	transition:
		background 0.22s ease,
		color 0.22s ease,
		box-shadow 0.22s ease,
		transform 0.22s ease;
}

.aerobay-helicopter-promo__close span{
	margin-bottom: 2px;
}

.aerobay-helicopter-promo__close:hover,
.aerobay-helicopter-promo__close:focus {
	background: #ffffff;
	color: #5565dd;
	box-shadow: 0 0 0 3px rgba(85, 101, 221, 0.14);
	transform: translateY(-1px);
	outline: none;
}

.aerobay-helicopter-promo__media {
	overflow: hidden;
	border-radius: 10px;
	background: rgba(85, 101, 221, 0.08);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.46);
	margin-bottom: 12px;
}

.aerobay-helicopter-promo__image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 1;
	object-fit: cover;
}

.aerobay-helicopter-promo__content {
	min-width: 0;
	padding-right: 0;
}

.aerobay-helicopter-promo__title {
	margin: 0 30px 6px 0;
	color: #2f3450;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.24;
	letter-spacing: 0;
}

.aerobay-helicopter-promo__description {
	margin: 0 0 11px;
	color: #4d556b;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.45;
	letter-spacing: 0;
}

.aerobay-helicopter-promo__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 15px;
	border: 0;
	border-radius: 10px;
	background: #5565dd;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 0 10px 0 #979797;
	margin: 0 auto;
	transform: translate(50%);
	width: 50%;
	user-select: none;
	transition:
		background 0.22s ease,
		color 0.22s ease,
		box-shadow 0.22s ease,
		transform 0.22s ease;
}

.aerobay-helicopter-promo__link:hover,
.aerobay-helicopter-promo__link:focus {
	background: #66cc99;
	color: #ffffff;
	text-decoration: none;
	box-shadow: 0 0 4px 0 #979797;
	outline: none;
}

.aerobay-helicopter-promo__link:focus-visible,
.aerobay-helicopter-promo__close:focus-visible {
	outline: 2px solid #66cc99;
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	.aerobay-helicopter-promo,
	.aerobay-helicopter-promo.is-visible,
	.aerobay-helicopter-promo.is-closing {
		transform: translateX(0);
		transition:
			opacity 0.12s ease,
			visibility 0s linear 0.12s;
	}

	.aerobay-helicopter-promo.is-visible {
		transition:
			opacity 0.12s ease,
			visibility 0s linear 0s;
	}

	.aerobay-helicopter-promo__close,
	.aerobay-helicopter-promo__link {
		transition: none;
	}
}
