.subMenu-mobile {
	width: 100%;
	position: absolute;
	left: 76px;
	top: 0;
	background: #EEF0F0;
	opacity: 0;
	transform: translateY(-20px);
	animation: slidedown .5s ease-out forwards;
}
#travelCard-subMenu-mobile.subMenu-mobile {
	top: unset;
	bottom: 0;
}
@keyframes slidedown {
	to {
		opacity: 1;
		transform: translateY(0px);
	}
}
@media (max-width: 991px) {

	.subMenu-mobile .subNav-link {
		display: block;
		margin-right: 0px;
		padding: 12px 10px;
		border-bottom: 1px solid #ededed33;
		border-radius: 0px;
		text-transform: uppercase;
		color: #0C0E1F;
		cursor: pointer;
	}
}


.breadcrumb-bar {
	display: flex;
	height: 57px;
	align-items: center;
	background-color: white;
}
.breadcrumb-bar .home {
	background: url("./images/home.png") no-repeat center center;
    background-size: 20px;
	width: 28px;
	height: 24px;
	cursor: pointer;
}
.breadcrumb-bar .bc-item {
	font-size: 14px;
	line-height: 21px;
	font-weight: 500;
	color: #0C0E1F;
	cursor: pointer;
}
.breadcrumb-bar .bc-item:last-child {
	color: #b1b2b2;
}
.breadcrumb-bar .bc-item::before {
	content: "/";
	padding: 0 10px;
	color: #0C0E1F;
}