.bts-session-selector-container {
	display: flex;
}

.bts-session-selector-container.justify-center {
	justify-content: center;
}

.bts-session-selector-container.justify-end {
	justify-content: flex-end;
}

.bts-session-selector-container.justify-start {
	justify-content: flex-start;
}

.bts-session-selector-button {
	color: #222;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	border: none;
	height: 36px;
	min-width: 120px;
	padding: 0 1rem 0 .5rem;
	border-radius: 5px;
	background: #fffc;
	cursor: pointer;
	transition: all ease .2s;
}

.bts-session-selector-button:hover {
	background: #ffff;
	color: #222;
}

.bts-session-selector-button svg {
	height: 24px;
	overflow: hidden;
}

.bts-session-selector-button svg path {
	fill: currentColor;
}

.bts-session-selector-popup {
	position: fixed;
	z-index: 99999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #0004;
	backdrop-filter: blur(5px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.bts-session-selector-popup__content {
	position: relative;
}

.bts-session-selector-popup__header {
	box-sizing: border-box;
	display: flex;
	justify-content: flex-end;
	position: absolute;
	width: 100%;
	height: 60px;
	padding: 0 1rem;
	align-items: center;
}

.bts-session-selector-popup__close-button {
	padding: 0;
	line-height: 1;
	border: none;
	height: 36px;
	width: 36px;
	border-radius: 5px;
	cursor: pointer;
	background: #0004;
	transition: all ease .2s;
}

.bts-session-selector-popup__close-button:hover {
	background: #0006;
}

.bts-session-selector-popup__close-button svg {
	height: 24px;
	color: white;
}

.bts-session-selector-popup__close-button svg path {
	fill: currentColor;
}