/* Current Location — header widget */

/* .pgcs-current-location {
	display: flex;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: #fff;
} */
.pgcs-shortcode.pgcs-current-location {
    display: flex;
    align-items: flex-start;
	color: #fff;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.pgcs-current-location__inner {
	display: flex;
	gap: 2px;
	flex-direction: column;
	align-items: flex-start;
}

.pgcs-current-location__name {
	font-size: 14px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: #ffd200;
    line-height: 1;
}

.pgcs-current-location__status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFFCC;
    line-height: 1;
}

.pgcs-current-location__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #3ddc84;
	flex-shrink: 0;
	animation: pgcs-dot-pulse 1.6s ease-in-out infinite;
}

.pgcs-current-location__dot.is-closed {
	background: #ff5a5a;
	animation: pgcs-dot-pulse-closed 1.6s ease-in-out infinite;
}

@keyframes pgcs-dot-pulse {
	0%, 100% {
		opacity: 1;
		box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.5);
	}
	50% {
		opacity: 0.6;
		box-shadow: 0 0 0 4px rgba(61, 220, 132, 0);
	}
}

@keyframes pgcs-dot-pulse-closed {
	0%, 100% {
		opacity: 1;
		box-shadow: 0 0 0 0 rgba(255, 90, 90, 0.5);
	}
	50% {
		opacity: 0.6;
		box-shadow: 0 0 0 4px rgba(255, 90, 90, 0);
	}
}

.pgcs-current-location__change {
    margin-top: 2px;
    padding: 3px 12px;    
	border: 1px solid #FFFFFFCC;
    border-radius: 50px;
    background: transparent;
    color: #FFFFFFCC;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.pgcs-current-location__change:hover,
.pgcs-current-location__change:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	border-color: #fff;
	outline: none;
}

.pgcs-current-location.is-empty .pgcs-current-location__name {
	color: rgba(255, 255, 255, 0.7);
}
.pgcs-current-location__status[hidden] {
    opacity: 0;
}
.ctm-lablocation-header .pgcs-current-location__status span {
    color: rgb(0 0 0 / 50%);
}

.ctm-lablocation-header button.pgcs-current-location__change {
    border: 1px solid rgb(0 0 0 / 50%);
    color: rgb(0 0 0 / 50%);
}

@media (max-width: 991px) {
	.pgcs-current-location__name {
		font-size: 12px;
	}
	.pgcs-current-location__status {
		font-size: 10px;
	}
}