       .menu-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
		#state-city-menu-container {
			display: none;
		}
        .menu-tabs .tab {
            background: #111;
            color: white;
            padding: 6px 12px;
            border-radius: 4px;
            cursor: pointer;
        }

        .menu-tabs .tab:hover,
        .menu-tabs .tab.active {
            background: #00aad8;
        }

        .menu-items li {
            cursor: pointer;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .main-menu__image-wrapper {
            position: relative;
            display: none;
        }

        .main-menu__image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }

        .main-menu__image-wrapper.active {
            display: block !important;
        }

        .main-menu__image-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            color: #fff;
            padding: 25px;
            font-weight: bold;
            font-size: 16px;
        }
		#location_menu {
			cursor: pointer;
		}

.menu-tabs{
	list-style: none;
	padding: 0px;
	margin-bottom: 40px !important;
	margin-top: 24px;
}
.menu-tabs .tab {
	color:  var(--color-white);
/* font-family: var(--font-oswald); */
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 100%; /* 14px */
text-transform: capitalize;
	border-radius: 32px !important;
	padding: 10px 20px !important;
	border: 1px solid #1F2F35;

}

.city-menu__nested .menu-items {
	padding: 0;
	    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 16px;
}
.main-menu__image-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #0c0d0e40;
}
.menu-items {
	list-style: none !important;
	margin: 0px !important;
}
.menu-tabs .tab:hover,
.menu-tabs .tab.active {
    background: var(--blue-default) !important;
	cursor: pointer;
}
.menu-items li {
	margin-bottom: 0px !important;
}
.menu-items li a  {
	color: #FFF;

/* font-family: var(--font-oswald); */
font-size: var(--size-h6, 32px);
font-style: normal;
font-weight: 500;
line-height: 100%; /* 32px */
letter-spacing: -1.28px;
text-transform: capitalize;
	transition: all 0.5s ease-in-out;
}
.menu-items li a:hover {
		color:  #00AAD8;
	padding-left: 16px;
}


