/* Material Icons Font Family */
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0');

/* Font Family Override */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400&display=swap');
body, body * {font-family: 'Roboto', sans-serif !important;}

/* Changelog Widget Styles */
.category {
	border-radius: 4px !important;
	padding: 2px 4px !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	text-transform: capitalize;
}

.feature {
	border-radius: 8px !important;
	border: 1px solid #CFCECF !important;
	box-shadow: none !important;
}

.featureAction a {
	border-radius: 8px !important;
	font-weight: 400 !important;
}

/* Changelog header */
.embed.beamer_active .header {
	min-height: 48px !important;
}

.embed .headerTitle {
	padding-top: 10px !important;
	padding-bottom: 10px !important;
}

/* Header icons */
.headerNav {
	top: 14px !important;
}

.headerClose {
	top: 12px !important;
}

.featerFeedback {
	background: #FAFAFA !important;
	border-top: 1px solid #EDEDED !important;
}

.feedbackInput {
	border-radius: 8px !important;
	border-color: #CFCECF !important;
}

/* Hide the current feedback icons */
.featureFeedback .emojis img {
    opacity: 0 !important;
    height: 100% !important;
    width: 100% !important;
    margin: 0 !important;
}

/* Create new icons */
.featureFeedback .emojis .emojiContainer {
	position: relative;
	width: 40px;
	height: 40px;
	margin: 0 4px;
	color: #E0A500;
	background-color: #fff;
	border-radius: 50%;
	transition: all 0.25s ease;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .15);
}

.featureFeedback .emojis .emojiContainer::before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: "Material Symbols Outlined";
	font-size: 40px;
}

.featureFeedback .emojis .emojiContainer:nth-of-type(1)::before {
	content: "sentiment_dissatisfied"
}
.featureFeedback .emojis .emojiContainer:nth-of-type(2)::before {
	content: "sentiment_neutral"
}
.featureFeedback .emojis .emojiContainer:nth-of-type(3)::before {
	content: "sentiment_satisfied"
}

/* Hover styles */
.featureFeedback .emojis .emojiContainer:not(.selectedemoji, .unselectedemoji):hover {
	cursor: pointer;
	transform: scale(1.1);
}

.featureFeedback .emojis .emojiContainer:hover::before {
	transform: translate(-50%, -50%);
}

/* Feedback selection styles */
.featureFeedback .emojis .emojiContainer.unselectedemoji {
	transform: scale(0.8);
	color: #CFCECF;
}

.featerFeedback .emojis .emojiContainer.selectedemoji {
	color: #E0A500;
}

/* Uncomment everyting below this line once navigation revamp goes live, simply remove this line as well as the comment start/end characters in the block below */
/* body.embed.beamer_active .header {
  --bar-height: 68px;
  --bar-bg: #3A6256;
  --bar-padding: 24px;
  --icon-gap: 12px;
  --icon-slot: 24px;
  --icon-ink: 16px;
  --icon-font-size: calc(var(--icon-ink) * 24 / 18);

  height: var(--bar-height) !important;
  min-height: var(--bar-height) !important;
  background-color: var(--bar-bg) !important;
  display: flex !important;
  align-items: center !important;
  gap: var(--icon-gap) !important;
  padding: 0 var(--bar-padding) !important;
  box-sizing: border-box !important;
}

body.embed .headerTitle {
  flex: 1 !important;
  display: flex !important;
  min-width: 0 !important;
  padding: 0 !important;
}

body.embed .headerTitle a {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  min-width: 0 !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  pointer-events: none !important;
  cursor: default !important;
  text-decoration: none !important;
}

body.embed .headerNav svg,
body.embed .headerClose svg {
  display: none !important;
}

body.embed .headerTitle a::after,
body.embed .headerNav::before,
body.embed .headerClose::before {
  flex: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: var(--icon-slot) !important;
  height: var(--icon-slot) !important;
  font-family: "Material Symbols Outlined" !important;
  font-size: var(--icon-font-size) !important;
  line-height: 1 !important;
}

body.embed .headerTitle a::after {
  content: "open_in_new" !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}

body.embed .headerNav::before {
  content: "search" !important;
}

body.embed .headerClose::before {
  content: "close" !important;
}

body.embed .headerNav,
body.embed .headerClose {
  position: static !important;
  top: auto !important;
  right: auto !important;
  flex: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: var(--icon-slot) !important;
  height: var(--icon-slot) !important;
}*/