#ms-chip-wrap {
	position: fixed;
	bottom: 24px;
	left: 20px;
	z-index: 99990;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, visibility .25s ease;
}

#ms-chip-wrap.ms-chip-show {
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
}

#ms-chip-pill {
	display: flex;
	align-items: center;
	gap: 6px;
	background: #0e3441;
	color: rgba(255, 255, 255, .75);
	border: 1px solid rgba(0, 180, 216, .35);
	border-radius: 20px;
	padding: 7px 14px 7px 10px;
	font-family: inherit;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 2px 14px rgba(0, 180, 216, .18), 0 1px 4px rgba(0, 0, 0, .25);
	transition: border-color .18s, color .18s, box-shadow .18s;
	pointer-events: auto;
}

#ms-chip-pill:hover,
#ms-chip-pill:focus-visible {
	border-color: #00b4d8;
	color: #fff;
	box-shadow: 0 2px 20px rgba(0, 180, 216, .32), 0 1px 4px rgba(0, 0, 0, .25);
}

#ms-chip-pill svg {
	flex-shrink: 0;
	stroke: #00b4d8;
}

#ms-chip-panel {
	width: 260px;
	padding: 16px 18px 14px;
	background: #0e3441;
	border: 1px solid rgba(0, 180, 216, .3);
	border-radius: 12px;
	box-shadow: 0 8px 36px rgba(0, 180, 216, .15), 0 2px 12px rgba(0, 0, 0, .35);
	animation: ms-chip-in .2s cubic-bezier(.22, 1, .36, 1);
	pointer-events: auto;
}

#ms-chip-panel[hidden] {
	display: none !important;
}

@keyframes ms-chip-in {
	from {
		opacity: 0;
		transform: translateY(8px) scale(.97);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

#ms-chip-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
}

#ms-chip-header span {
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .03em;
	text-transform: uppercase;
}

#ms-chip-text {
	margin: 0 0 14px !important;
	color: rgba(255, 255, 255, .68) !important;
	font-size: 12px !important;
	line-height: 1.55 !important;
}

#ms-chip-text a {
	color: #00b4d8 !important;
	font-weight: 600;
	text-decoration: underline;
}

#ms-chip-actions {
	display: flex;
	gap: 8px;
}

#ms-chip-accept,
#ms-chip-decline {
	flex: 1;
	padding: 8px 0 !important;
	border-radius: 7px !important;
	font-family: inherit !important;
	font-size: 12px !important;
	cursor: pointer !important;
}

#ms-chip-accept {
	color: #0e3441 !important;
	background: #00b4d8 !important;
	border: 0 !important;
	font-weight: 700 !important;
	transition: background .15s !important;
}

#ms-chip-accept:hover,
#ms-chip-accept:focus-visible {
	background: #009ab8 !important;
}

#ms-chip-decline {
	color: rgba(255, 255, 255, .55) !important;
	background: transparent !important;
	border: 1px solid rgba(255, 255, 255, .18) !important;
	font-weight: 600 !important;
	transition: border-color .15s, color .15s !important;
}

#ms-chip-decline:hover,
#ms-chip-decline:focus-visible {
	color: rgba(255, 255, 255, .85) !important;
	border-color: rgba(255, 255, 255, .4) !important;
}

@media (max-width: 480px) {
	#ms-chip-wrap {
		bottom: 16px;
		left: 12px;
	}

	#ms-chip-panel {
		width: 230px;
		max-width: calc(100vw - 24px);
	}
}
