.sailiz_map_main {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: left;
	position: relative;
}

.side_bar {
    max-width: 360px;
    padding: 0;
	width: 360px;
    overflow-y: auto;
    max-height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    z-index: 1;
    left: 20px;
    top: 20px;
}

.sailiz_distributes {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: black;
    background: #fcfcfc;
    border-radius: 5px;
}

.sailiz_distributes:hover {
    background: #fafafa;
}


h3.shop_title {
    font-size: 24px !important;
    margin: 0;
    padding: 0;
}

.sailiz_map {
    width: 100%;
    height: calc(100vh - 100px);;
    background: #eee;
}

.shop_details {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

p.shop_address {
    font-family: var(--e-global-typography-text-font-family), sans-serif;
    line-height: 1.2;
    color: black;
	margin: 0;
	font-weight: 600;
}

h2.sec_title {
    font-size: 36px !important;
    color: #fefefe !important;
    background: black;
    padding: 12px 20px;
    margin: 0;
    position: sticky;
    top: 0;
}


/* Hide images by default */
.sailiz_distributes .shop_img {
    display: none;
}

/* Visible only on active item */
.sailiz_distributes.active .shop_img {
    display: block !important;
}

.sailiz_distributes.active .shop_img {
  background: #fff !important;
}
/* Style the new button */
.view_large_map_btn {
	font-family: var(--e-global-typography-text-font-family), sans-serif;
    display: flex;
	flex-wrap: nowrap;
	gap: 4px;
	align-items: center;
    color: black !important;
    font-size: 14px;
	font-weight: 700 !important;
	max-width: fit-content;
	text-transform: uppercase;
}

.view_large_map_btn:hover {
    background: transparent;
}


.shop_address {
    display: flex;
    flex-direction: column;
    gap: 7px;
}


@media screen and (max-width: 680px) {
  .side_bar {
    position: relative;
    top: 0;
    left: 0;
}
	
	.sailiz_map_main {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}
	
	.side_bar, .sailiz_map {
    width: 100%;
    max-height: 420px;
}
	
	h2.sec_title {
    font-size: 18px !important;
}
	
	h3.shop_title {
    font-size: 14px !important;
}
	
	p.shop_address {
    font-size: 12px;
}
	
	a.view_large_map_btn {
    font-size: 10px;
}
}