
.lf-banner {
	width: 170px;
	position: fixed;
	right: 10.6%;
	bottom: 35px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	gap: 7px 0;
	z-index: 10;
	transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
	opacity: 1;
	visibility: visible;
}
.lf-banner--hidden {
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	pointer-events: none;
}
.lf-banner__close {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	width: 34px;
	height: 34px;
	border: 1px solid #F35740;
	border-radius: 50%;
	cursor: pointer;
	transition: opacity 0.3s ease-in-out;
}
.lf-banner__close:hover {
	opacity: 0.8;
}
.lf-banner__frame {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	background: url(../../img/dvc-bnr/img-lf-banner-decor.webp) no-repeat center 45px, url(../../img/dvc-bnr/img-bg-lf-banner-gerl.webp) no-repeat center 41px, url(../../img/dvc-bnr/img-lf-banner-line.webp) no-repeat center -1px, #F35740;
	border-radius: 25px;
	text-decoration: none;
}
.lf-banner__body {
	margin-top: -1px;
	padding: 11px 0 0;
	position: relative;
	border-radius: 25px;
	text-align: center;
}
.lf-banner__gerl {
	display: block;
	margin-top: 1px;
}
.lf-banner__gerl img {
	vertical-align: bottom;
}
.lf-banner__flowers {
	position: absolute;
	top: 76%;
	display: block;
	animation-duration: 3s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	will-change: transform;
}
.lf-banner__flowers--left {
	left: 9px;
	animation-name: rotate-right;
}
.lf-banner__flowers--right {
	right: 9px;
	animation-name: rotate-left;
}
.lf-banner__flowers img {
	width: 100%;
	height: auto;
}
.lf-banner__text {
	padding: 6px 0;
	font-family: "Circe-Bold";
	font-size: 15px;
	font-weight: bold;
	color: #fff;
	text-align: center;
}
@media only screen and (max-width: 575px) {
	.lf-banner {
		right: 12px;
		bottom: 5px;
		width: 218px;
		flex-direction: row-reverse;
		align-items: center;
		justify-content: space-between;
	}
	.lf-banner__body {
		flex: 1;
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 0 12px;
		margin: 0;
		padding: 0;
		border-radius: 0;
	}
	.lf-banner__frame {
		width: 180px;
		padding: 0 6px 0 8px;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 0;
		border-radius: 8px;
		background: url(../../img/dvc-bnr/img-lf-banner-decor-mobile.webp) no-repeat right 2px, url(../../img/dvc-bnr/img-bg-lf-banner-gerl-mobile.webp) no-repeat 41% bottom, url(../../img/dvc-bnr/img-lf-banner-line-mobile.webp) no-repeat center -1px;
	}
	.lf-banner__gerl {
		align-self: flex-end;
		margin-top: 0;
	}
	.lf-banner__gerl img {
		height: 37px;
	}
	.lf-banner__flowers {
		width: 17px;
		height: 15px;
		top: 56%;
	}
	.lf-banner__flowers--left {
		left: 35px;
	}
	.lf-banner__flowers--right {
		right: -4px;
	}
	.lf-banner__text {
		width: 58px;
		padding: 3px 10px 2px;
		background-color: #F35740;
		border-radius: 50px;
		font-size: 10px;
	}
}

.lf-banner-text {
	display: block;
	font-family: "Circe-ExtraBold", sans-serif;
	font-size: 17px;
	font-weight: 900;
	text-transform: uppercase;
	color: #008AB7;
}
.lf-banner-text__first, .lf-banner-text__second, .lf-banner-text__third {
	opacity: 0;
	animation-duration: 8s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.lf-banner-text__first {
	color: #F35740;
	animation-name: text-first;
}
.lf-banner-text__second {
	animation-name: text-second;
}
.lf-banner-text__third {
	animation-name: text-third;
}
.icon-lf-banner-close {
	width: 14px;
	height: 14px;
}
@media only screen and (max-width: 575px) {
	.lf-banner-text {
		margin-top: 6px;
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		font-size: 9px;
		line-height: 1.1;
	}
}

@keyframes text-first {
	0% {
		opacity: 0;
	}
	12.5% {
		opacity: 1;
	}
	75% {
		opacity: 1;
	}
	87.5% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
@keyframes text-second {
	0%, 12.5% {
		opacity: 0;
	}
	25% {
		opacity: 1;
	}
	75% {
		opacity: 1;
	}
	87.5% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
@keyframes text-third {
	0%, 25% {
		opacity: 0;
	}
	37.5% {
		opacity: 1;
	}
	75% {
		opacity: 1;
	}
	87.5% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
@keyframes rotate-right {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(90deg);
	}
}
@keyframes rotate-left {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(-90deg);
	}
}