.cfb-fixed{
	position:fixed;
	right:20px;
	bottom: 10%;
	display:flex;
	flex-direction:column;
	gap:10px;
	z-index:9999;
}
.cfb-fixed .cfb-map-btn {
	cursor: pointer;
}
.cfb-fixed>.cfb-btn {
	background:#fff;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	width: 44px;
	height: 44px;
	border-radius:99px;
	text-decoration:none;
	font-size:14px;
	position: relative;
}
.cfb-fixed .cfb-btn>svg {
	fill: #185A8E;
}

.cfb-fixed .cfb-btn>span {
	display: none;
}

.cfb-fixed .cfb-popup{
	display:none;
	position: absolute;
	bottom:0;
	right: 100%;
	padding-right: 15px;
	z-index:99999;
	width: 360px;
	
}
.cfb-fixed .cfb-map-btn:focus .cfb-popup,
.cfb-fixed .cfb-map-btn:hover .cfb-popup {
	display: block;
}
.cfb-popup-inner{
	padding: 15px;
	position:relative;
	background:#fff;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	border-radius: 10px;
}
.cfb-popup-inner ol>li,
.cfb-popup-inner ul>li {
	margin-left: 30px;
}

/* Mobile */
@media(max-width:768px){

	.cfb-fixed{
		bottom:0;
		top:auto;
		right:0;
		left:0;
		flex-direction:row;
		justify-content:space-around;
		background:#fff;
		padding: 5px 0;
		border-top:1px solid #ddd;
	}

	.cfb-fixed .cfb-btn {
		display: flex;
		flex:1;
		text-align:center;
		border-radius:0;
		background:none;
		color:#000;
		align-items: center;
		justify-content: center;
		gap: 10px;
		box-shadow: none;
	}
	.cfb-fixed .cfb-popup {
		right: auto;
		left: 0;
		bottom: 100%;
		padding: 15px;
		width: 100vw;
	}
	.cfb-fixed .cfb-btn svg {
		width: 30px;
	}
.cfb-fixed  .cfb-btn>span {
	display: inline;
}
}
