.blooming-menu__bg {
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.55);
	z-index: 50;
	top: 0;
	left: 0;
	/* Trạng thái ẩn ban đầu */
	opacity: 0;
	visibility: hidden;
	/* Tạo hiệu ứng mượt mà cho cả độ mờ và trạng thái hiển thị */
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.blooming-menu__bg.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 52;
}

.blooming-menu__container {
	right: 50%;
	transform: translate(-35px);
	position: fixed;
	bottom: 95px;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26);
	transition: all 0.6s ease-in-out;
	z-index: 51;
}

.blooming-menu__container.is-active {
	bottom: 190px;
	z-index: 53;
}

@media (min-width: 1200px) {
	.blooming-menu__container {
		right: 60px;
	}

	.blooming-menu__container.is-active {
		bottom: 203px;
		right: 111px;
	}
}

.blooming-menu__main {
	color: white;
	border-radius: 50%;
	width: 70px;
	height: 70px;
	background-image: url(/socical/icon/bg_button_home.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
}

.blooming-menu__main.is-active {
	width: 70px;
	height: 70px;
	background-image: url(/socical/icon/b_ico_home.png);
}

.blooming-menu__main-content {
	display: block;
	width: 100%;
	height: 100%;
}

.blooming-menu__item {
	display: none;
	color: white;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	bottom: -62px;
	transform: translate(15px);
}

.blooming-menu__item.is-active {
	display: block;
	width: 60px;
	height: 60px;
}

.blooming-menu__item-btn {
	transition: box-shadow .28s cubic-bezier(.4, 0, .2, 1), opacity .28s cubic-bezier(.4, 0, .2, 1);
	background-size: 50%;
	background-position: center 9px;
	background-repeat: no-repeat;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.blooming-menu__item-btn::before {
	color: #ffffff;
	font-size: 9px;
	margin-top: 30px;
}