.quick_menu {
	position: fixed;
	right: 4rem;
	bottom: 7rem;
	z-index: 98;
	.menulist {
		display: flex;
		flex-direction: column;
		row-gap: 1.5rem;
		width: fit-content;
		li {
			a {
				width: 10rem;
				height: 10rem;
				border-radius: 50%;
				display: flex;
				flex-direction: column;
				align-items: center;
				justify-content: center;
				row-gap: 0.5rem;
				box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.07);
				background-color: var(--bh_color_white);
				&.color_yellow {
					background-color: #ffdd00;
				}
				&.color_main {
					color: var(--bh_color_main);
					p {
						color: var(--bh_color_main);
					}
				}
				svg {
					width: 3.5rem;
					height: 3.5rem;
				}
				p {
					font-size: 1.4rem;
					font-weight: 600;
					text-align: center;
					color: #231815;
				}
				i {
					font-size: 3.5rem;
					line-height: 1;
				}
			}
		}
	}
	@media (max-width: 992px){
		right: 2rem;
		bottom: 2rem;
		.menulist {
			row-gap: 1rem;
			li {
				a {
					width: 8rem;
					height: 8rem;
					img {
						width: 3rem;
					}
					p {
						font-size: 1.2rem;
					}
					i {
						font-size: 2.4rem;
					}
				}
			}
		}
	}
}