/* Location Selector Block */
.location-selector#block_64dbc78c02531caa3e4a19b8e1783e7c {
	border-radius: 4px;
	opacity: 0;

}
.location-selector#block_64dbc78c02531caa3e4a19b8e1783e7c.show {
	opacity: 1;
}

.location-selector.no-location {
	border-radius: 6px;
background: var(--Inky-Blue, #4F7489);
padding: 0px 20px;
text-decoration: none;

transition: all .3s ease-in-out;
}
.location-selector.no-location svg path {
	transition: all .3s ease-in-out;
}
.location-selector.no-location p {
	margin: 10px 0;
	
	/* sboilchange.com/Semantic/Link */
	font-family: var(--font-family-Font-1, "Chakra Petch");
	font-size: var(--font-size-18, 18px);
	font-style: normal;
	font-weight: var(--font-weight-700, 700);
	line-height: var(--line-height-28_8, 28.8px); /* 160% */
	text-decoration: none;
	transition: all .3s ease-in-out;

}
.location-selector.no-location:hover{
	background-color: #B7E0DE;
}
.location-selector.no-location:hover p{ 
    color: #002745;
}
.location-selector.no-location:hover svg path {
    fill: #002745; 
}
.location-selector-inner {
	display: flex;
	align-items: center;
	gap:10px;
}

.location-selector .location-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.location-selector .location-icon svg {
	width: 24px;
	height: 24px;
	color: #ffffff;
}

.location-selector .location-info {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.location-selector .location-name {
	color: #ffffff;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
	margin: 0;
}


.location-selector .change-location-link {
	color: #ffffff;
	font-size: 0.875rem;
	text-decoration: underline;
	cursor: pointer;
	transition: opacity 0.2s ease;
	line-height: 1.2;
}

.location-selector .change-location-link:hover {
	opacity: 0.8;
}
.location-selector p {
	color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.location-selector.no-location, .location-selector.no-location:hover{ 
		background-color: transparent;
		padding: 0;
	}
	.location-selector.no-location:hover svg path {
		fill: #fff;
	}
	.location-selector.no-location p{ 
		visibility: hidden;
		width: 0px;
		overflow: hidden;
		margin: 0
	}
	.location-selector {
		padding: 0.5rem 1rem;
		padding-left: 0;
	}
	
/* 
	.location-selector .location-icon svg {
		width: 20px;
		height: 20px;
	} */

	.location-selector .location-name {
		font-size: 0.875rem;
	}

	.location-selector .change-location-link {
		font-size: 12px;
	}
	.location-info.upper-info .location-name{
		font-size: 12px;
	}
}
