body {
  font-size: .875rem;
}

.feather {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Some icons do not line up nicely with anchor text, seemingly because of the vertical alignment applied by .feather.
In such cases try applying .feather-fix to the anchor element. */
a.feather-fix svg.feather {
  vertical-align: middle;
}

/*
 * Sidebar
 */

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100; /* Behind the navbar */
  padding: 48px 0 0; /* Height of navbar */
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
  background-color: var(--yy-theme-color-white);
}

.sidebar-sticky {
  position: relative;
  top: 0;
  height: calc(100vh - 48px);
  padding-top: .5rem;
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
  }
}

.sidebar .nav-link {
  font-weight: 500;
  color: #333;
}

.sidebar .nav-link .feather {
  margin-right: 4px;
  /* color: #999; */
  color: var(--yy-theme-color-gray);
}

.sidebar .yy-discrete .feather {
  margin-right: 4px;
  color: #999;
}

.sidebar .yy-discrete:hover .feather {
  color: inherit;
}

.sidebar .nav-link.active {
  background-color: var(--yy-theme-color-background);
  border-right-style: dashed;
  border-right-color: #e5e5e5; /* Matches the Bootstrap border */
  border-right-width: 1px;
}

.sidebar .nav-link:hover {
  background-color: var(--yy-theme-color-yellow-half);
  border-right-style: inherit;
  border-right-color: #e5e5e5; /* Matches the Bootstrap border */
  border-right-width: 1px;
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
  color: inherit;
}

.sidebar-heading {
  font-size: .75rem;
  text-transform: uppercase;
}

/*
 * Content
 */

[role="main"] {
  padding-top: 48px; /* Space for fixed navbar */
}

/*
 * Navbar
 */

nav.navbar {
  background-color: var(--yy-theme-color-background);
}

.navbar-brand {
  padding-top: 9px; /* 2x 9px + 30px logo = 48px total header height */
  padding-bottom: 9px;
  font-size: 1rem;
  background-color: var(--yy-theme-color-yellow);
}

a.navbar-brand {
  line-height: initial; /* This overrides BS default. Without this, setting height: 24px on the svg below at (S) somehow
  inflates the a element and the whole navbar to be larger than 48 px */
}

a.navbar-brand svg,img {
  height: 30px;
}

.navbar .form-control {
  border-width: 0;
  border-radius: 0;
}

.form-control-dark {
  color: #fff;
  background-color: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .1);
}

.form-control-dark:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}

/*
 * YoteY
 */

 :root {
  /* Added this after migrating from Bootstrap 4 to Bootstrap 5. I like the fonts of 4 better, so copied this from BS 4.
  Monospace fonts seem the same in BS 4 and 5.*/
  --bs-font-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  /* YOTEY variables */
  --yy-theme-color-background: #fbfbfb;
  --yy-theme-color-yellow: #fae07d;
  --yy-theme-color-yellow-half: #fae07d7a;
  --yy-theme-color-gold: #c79403;
  --yy-theme-color-white: #ffffff;
  --yy-theme-color-white-gray: #f4f4f8;
  --yy-theme-color-gray: #9ca1ab;
  --yy-theme-color-silver: #cac3c3;
  --yy-theme-color-violet: #443850;
  --yy-theme-color-danger-bg: #ffd8d8;
}

.yy-bg-theme-color-white-gray {
	background-color: var(--yy-theme-color-white-gray);
}

/* Similarly, this changed in BS 5, making small text slightly larger, which I did not like. Also copied from BS 4. */
.small, small {
  font-size: 80%;
  font-weight: 400;
}

.yy-border-effect.yy-active {
	border-bottom-style: solid;
	border-bottom-width: 3px;
  border-bottom-color: var(--yy-theme-color-yellow);
}

button.tn-icon-button {
  cursor: pointer;
  color: #6c757d; /* Secondary button color in Bootstrap. Define a --yy-theme color for this? */
  font-weight: 400;
  background-color: transparent;
  line-height: 16px; /* Because the intention is to put only a 16px-high Feather icon in the button. */
  border: 1px solid transparent;
  border-radius: 0.2rem;
  padding: 0;
}

button.tn-icon-button.yy-active {
  background-color: var(--yy-theme-color-silver);
  color: var(--yy-theme-color-violet);
}

button.tn-icon-button.yy-active-2 {
	box-shadow: inset 0px -3px 0px 0px var(--yy-theme-color-yellow);
	padding-top: 0.2rem;
	padding-bottom: 0.2rem;
	border-radius: 0;
  color: var(--yy-theme-color-violet);
}

button.tn-icon-button:focus {
  outline: 0;
}

button.tn-icon-button:hover {
  color: var(--yy-theme-color-violet);
}

button.tn-icon-button:disabled {
  text-decoration: line-through;
  color: var(--bs-gray-500);
}

button.tn-icon-button-prominent {
  cursor: pointer;
  color: var(--yy-theme-color-violet);
  font-weight: 400;
  background-color: transparent;
  line-height: 16px; /* Because the intention is to put only a 16px-high Feather icon in the button. */
  border: 1px solid transparent;
  border-radius: 0.2rem;
  padding: 0;
}

button.tn-icon-button-prominent:focus {
  outline: 0;
}

button.yy-button {
  outline: 0;
  font-weight: 400;
  background-color: var(--yy-theme-color-silver);
  border: 1px solid #a8730d3b;
  color: #3f3f41;
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
  padding-right: 0.7rem;
  padding-left: 0.5rem;
}

button.yy-button.yy-button-discrete {
  border: 1px solid #a8730d17; /* Slightly more transparent than .yy-button border. */
  background-color: transparent;
}
/* TODO: Rename yy-button-discrete here to yy-discrete with the intention of it being a "utility class", applicable not only
to buttons, like yy-compact below. */

button.yy-button.yy-button-main {
  background-color: var(--yy-theme-color-yellow);
}

button.yy-button.yy-compact {
  padding: 0;
  line-height: 16px; /* Because the intention is to put only a 16px-high Feather icon in a compact button. */
}

button.yy-button.yy-compact.yy-discrete {
  border: 1px solid transparent;
  background-color: transparent;
}

.sidebar .yy-button.yy-discrete {
  cursor: pointer;
}

.sidebar .yy-button.yy-discrete .feather {
  color: #999;
}

.sidebar .yy-button.yy-discrete:hover .feather {
  color: inherit;
}

button.yy-button:hover:not(:disabled) {
  border: 1px solid var(--yy-theme-color-gold);
}

button.yy-button:disabled {
  text-decoration: line-through;
  /* border: none; */
  /* `border none` createas an interesting effect which I like: the button "shrinks" and becomes smaller. Together with
  `line-through` text it suggests its insignificance, especially when the animation effect of shrinking is visible.
  Later: disabled after all. */
  color: var(--bs-gray-500);
}

h4 .yy-header-marker {
  font-size: x-small;
}

h3 .yy-header-marker {
  font-size: x-small;
}

/* The "project marker" */
h4.yy-project::after {
  content: "project";
  font-size: x-small;
  color: var(--bs-secondary-color); /* Bootstrap .text-muted */
  text-transform: uppercase; /* Bootstrap .text-uppercase */
  padding-left: .25rem; /* Bootstrap .ps-1 */
}

a.tn-popup-link {
  font-weight: 500;
  color: #333;
  text-decoration: none;
}

a.tn-popup-link.yy-completed {
  font-weight: 500;
  color: #868e95;
}

a.tn-popup-link:focus, a.tn-popup-link:hover {
  text-decoration: none;
}

a.tn-popup-link.yy-completed:focus, a.tn-popup-link.yy-completed:hover {
  color: #333;
}

a.tn-popup-link .feather {
  margin-left: 0.25rem; /* Intention: link text is to the left of the icon. */
  color: #999;
  vertical-align: text-top;
}

a.tn-popup-link.yy-completed .feather {
  color: inherit;
}

a.tn-popup-link:focus .feather, a.tn-popup-link:hover .feather {
  color: inherit;
}
/* TODO: see 7/05.06 for the idea of the pop-up link. The above rules are currently for a more general "link
with a trailing icon". Rename and standardize this as the main link style? */

div.component-depgraph {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

div#depgraph-in-phaseview-container {
  display: block;
  width: 100%;
  height: 40vh;
  --bs-border-style: dotted;
}

div#phase-view-area.mode-tasks-collapsed {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 48px); /* That is, reduce with the height of the header. TODO: Make this a variable in the future. */
}

.mode-tasks-collapsed > div#depgraph-in-phaseview-container {
  flex: 1 0 auto;
  /* This will merge with the base rule. */
}

main {
  --bs-gutter-y: 48px; /* Space for the navbar. This matches the variable used in Bootstrap row rule and overrides its
  default value there. */
  background-color: var(--yy-theme-color-background);
}

div.product-shape-like {
  width: 300px;
  background-color: #f4f4f8;
}

div.editor-position {
  position: absolute;
}

.product-menu {
  width: 150px;
  position: absolute;
  /* All of the following is temporary or for visual inspection */
  /* outline-width: 1px;
  outline-color: darkgreen;
  outline-style: solid;
  outline-offset: 3px;
  top: 100px;
  left: 20px; */
}

.product-menu > div {
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}

.dependency-menu-position {
  position: absolute;
}

.dependency-menu {
  background-color: var(--yy-theme-color-background);
  border: 1px solid #dee2e6;
  border-radius: .25rem;
}

.dependency-menu > div {
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}
/* TODO: Bootstrapify dependency menu styling as much as possible. */

/* Item editor component */

div.tt-card-controls {
  /* padding: 0 1.25rem 0.25rem; */
  padding: 0 1rem 0.5rem;
}

/* Not needed anymore? */
div.tt-card-controls > .btn {
  padding: 0;
}

/* Not needed anymore? */
div.tt-card-controls > .btn + .btn {
  margin-left: 1.25rem;
}

div.tt-card-controls > .tn-icon-button + .tn-icon-button {
  margin-left : 1rem;
}

/* Task component */

div.tn-component-task {
  background-color: var(--yy-theme-color-white);
}

.tn-component-task span.yy-task {
  font-size: 0.95rem;
  color: var(--yy-theme-color-violet);
}

div.tn-component-task div.description-editor {
  flex: 1 1 auto;
}

div.description-editor .tn-string-editor {
  width: 80%;
}

div.tn-component-task div.time-editor {
  display: inline-block;
}

div.time-editor .tn-string-editor input {
  width: 3rem;
}

div.tn-component-task div.time-editor .tn-validation-message {
  color: red;
}

div.yy-card-tools-item {
  display: inline-block;
}

.yy-border-transparent {
  border: 1px solid transparent;
}

.yy-card-tools-item:nth-child(n+2)::before {
  margin-left: .5rem;
  margin-right: .5rem;
  content: "·";
}

/* YOTEY contextual pop-up styling */
div.yy-pop-up {
  --bs-border-style: solid;
  /* Equivalent to Bootstrap .border but without !important. */
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
  /* YOTEY contextual pop-up border has a specific top border*/
  border-top-width: 3px;
  border-top-color: var(--yy-theme-color-gold);
}

.tn-component-task .tn-task-booking-editor {
  position: absolute;
  /* top: calc(-0.25rem - 3px); */
  top: 0;
  /* Additional 3px is a correction found experimentally. */
  /* left: calc(-0.25rem - 1px); */
  /* left: -0.25rem; */
  width: max-content;
  background-color: var(--yy-theme-color-white);
  z-index: 1;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.tn-task-booking-editor .tn-string-editor {
  align-items: center;
  white-space: pre;
  flex-grow: 1 !important;
}

.tn-task-booking-editor .tn-string-editor input {
  max-width: 4rem;
}

.tn-smaller-button-text .tn-icon-button {
  font-size: 0.8rem;
}

.tn-component-task .yy-completed {
	color: #868e95 !important;
}

.tn-component-task:has(span.yy-task.yy-completed) {
  box-shadow: inset 4px 0px 0px 0px #6AA857A6;
}

/* Task time tracking component */

.tn-task-and-view {
  position: relative;
}

.tn-task-view {
  border-radius: 0 0 10px 10px;
  background-color: var(--yy-theme-color-white);
}

.tn-task-and-view .tn-border-effect {
	position: absolute;
  height: calc(100% - 20px);
  margin-top: 10px;
  margin-bottom: 10px;
	border-left-style: solid;
	border-left-width: 3px;
	left: -8px;
  border-left-color: #c79403;
}

.tn-icon-title {
  font-variant: small-caps;
}

.yy-icon-title {
  display: flex;
  align-items: center;
  font-variant: small-caps;
}

.tn-task-view .tn-times {
  width: max-content;
  display: grid;
  grid-template-columns: auto minmax(1rem, auto) auto;
  grid-row-gap: 0.5rem;
}

.tn-task-view .tn-times input {
  width: 6rem;
}

/* TODO: Define more predefined pairs of hover target and auto-hide target, up to 9. */

.tn-show-on-hover {
  display: none;
}

.tn-show-on-hover-target:hover .tn-show-on-hover {
  display: initial;
}

.tn-show-on-hover-1 {
  display: none;
}

.tn-show-on-hover-target-1:hover .tn-show-on-hover-1 {
  display: initial;
}

.tn-visible-on-hover {
  visibility: hidden;
}

.tn-visible-on-hover-target:hover .tn-visible-on-hover {
  visibility: visible;
}

.tn-visible-on-hover-1 {
  visibility: hidden;
}

.tn-visible-on-hover-target-1:hover .tn-visible-on-hover-1 {
  visibility: visible;
}

/* Tags and related (pseudo-)components */

a.tn-tag {
  text-decoration: none;
}

div.tn-tag {
  padding-left: 0.5em;
  padding-right: 0.5em;
  background-color: #a0e4ff;
  margin-left: 4px;
  margin-right: 4px;
  border-radius: 4rem;
  cursor: default;
}

a.tn-tag div.tn-tag {
  cursor: inherit;
}

div.tn-tag.tn-tag-click {
  cursor: pointer;
}

.tn-tag {
  color:#6c757d;
}

.tn-tag:hover {
  color: #212529;
}

div.tn-tag-input {
  border-style: solid;
  border-width: 1px;
  border-color: #dee2e6;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  border-radius: 0.2em;
  background-color: white;
}

.tn-tag-input input {
  background-color: transparent;
  border: none;
  outline: none;
}

/* String editor component */

div.tn-string-editor input {
  flex: 1 1 auto;
}

div.yy-string-editor input {
  flex: 1 1 auto;
}

/* Plan filter component */

.tn-filter {
  position: relative;
}

.sidebar .tn-filter {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.sidebar .tn-filter .nav-link {
  padding-left: unset;
  padding-right: unset;
}

.tn-filter div.yy-border-effect {
	position: absolute;
	height: 100%;
	border-left-style: solid;
	border-left-width: 3px;
	left: 8px;
  border-left-color: #c79403;
}

.tn-filter .tn-tag-list {
  flex-wrap: wrap;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  row-gap: 0.3rem;
}

.tn-filter .yy-user-tag-list {
  flex-wrap: wrap;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  row-gap: 0.3rem;
}

/* Pinpoint fix: add vertical border to the active task indicator span to avoid shifting horizontally when the task
completion indicator toggles. */
div.yy-task-completion-indicator span.yy-border-effect.yy-active {
	border-left-style: solid;
	border-left-width: 1px;
  border-left-color: transparent;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: transparent;
}

/* User "tags" */

.yy-user-tag,
.yy-generic-box
{
  display: inline-block; /* This seems to be needed for consistent height whether inside of a flex container or not */
  padding: 0.2rem;
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
  border-radius: 3px;
  color: var(--yy-theme-color-violet);
}

:is(.yy-user-tag, .yy-generic-box).yy-user-tag.yy-user-tag-highlight {
  --bs-border-color: var(--yy-theme-color-violet);
}

:is(.yy-user-tag, .yy-generic-box):hover {
  color: #212529; /* Same as in .tn-tag:hover */
}

.yy-user-tag-list {
  display: flex;
}

.yy-user-tag-list > span.yy-user-tag:nth-of-type(n+2) {
  margin-left: 0.5rem;
}

/* Warning line */

.tn-warning-line {
  border: 1px solid #ffeeba; /* Same as .alert-warning in Bootstrap */
  background-color: #fff3cd; /* Same as .alert-warning in Bootstrap */
  border-radius: 0.25rem; /* Same as .alert in Bootstrap */
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

/* Gantt chart component */

.tn-gantt-viewport {
  background-color: #fffffb;
  height: 100vh;
  overflow-x: auto;
  width: 80%;
}

.tn-gantt-chart-end {
  min-width: 20px;
  height: 100%;
  background-color: lightblue;
}

.tn-gantt-chart {
  position: relative;
  min-width: 100%;
  flex-shrink: 0;
}

.tn-gantt-interval {
  display: inline-block;
  top: 0;
  left: 0;
  position: absolute;
  background-color :#0470fbe6;
  border-radius: 6px;
  /* Vertically center inside a .tn-timeline-row */
  height: 30px;
  margin-top: 10px;
}

.tn-gantt-interval-preview {
  display: inline-block;
  top: 0;
  left: 0;
  position: absolute;
  border: 2px solid #0470fbe6;
  border-radius: 6px;
  /* Vertically center inside a .tn-timeline-row */
  height: 30px;
  margin-top: 10px;
  pointer-events: none;
}

.tn-gantt-row-task {
  height: 46px;
  margin-top: 2px;
  background-color: #f8f9fa;
  /* width: 150px; */
  width: max-content;
  /* TODO: Bootstrap-ify as much as possible, e.g. color the same as in Task component. */
}

.tn-gantt-potential-row {
  height: 0;
}

.tn-gantt-potential-row .feather {
  z-index: 1;
}

.tn-gantt-potential-row .tn-icon-button {
  z-index: 1;
}

/* Autocomplete editor component */

div.yy-autocomplete-component {
  display: block;
}

div.yy-autocomplete-suggestions-container {
  position: relative;
}

ul.yy-autocomplete-suggestions {
  list-style: none;
  position : absolute;
  padding: 0;
  width: 100%;
  background-color: white;
  border: 1px solid;
}

.yy-autocomplete-suggestions li:hover {
  background-color: #f6ca2959;
}

div.yy-autocomplete-suggestions {
  position: absolute;
  background-color: white;
  border: 1px solid;
  width: 100%;
  text-align: center;
}

/* Header and page navigation-related components and styling */

.yy-breadcrumb {
  display: flex;
  align-items: center;
}

ol.yy-breadcrumb {
  list-style: none;
  margin-bottom: 0;
}

.yy-breadcrumb-item {
  margin-right: 0.5rem;
}

.yy-breadcrumb-separator {
  margin-right: 0.5rem;
  color: var(--yy-theme-color-gray);
}

.yy-breadcrumb-item > span:nth-of-type(1) {
  font-size: 1.2rem;
}

/* "Breadcrumb as title" is shown in the title-like font. The (specifically first) `span` matches the mark-up of a
breadcrump to target only the actual text and not affect (by inheritance) the additional widget which may be present as
the child of the breadcrumb. */
.yy-breadcrumb-item.yy-breadcrumb-as-title > span:nth-of-type(1) {
  font-size: 1.5rem;
}

/* The "plan marker" */
.yy-breadcrumb-item.yy-plan.yy-breadcrumb-as-title > span:nth-of-type(1)::after {
  content: "plan";
  font-size: x-small;
  color: var(--bs-secondary-color); /* Bootstrap .text-muted */
  text-transform: uppercase; /* Bootstrap .text-uppercase */
  padding-left: .25rem; /* Bootstrap .ps-1 */
}

/* The "project marker" */
.yy-breadcrumb-item.yy-project.yy-breadcrumb-as-title > span:nth-of-type(1)::after {
  content: "project";
  font-size: x-small;
  color: var(--bs-secondary-color); /* Bootstrap .text-muted */
  text-transform: uppercase; /* Bootstrap .text-uppercase */
  padding-left: .25rem; /* Bootstrap .ps-1 */
}

li.yy-breadcrumb-item {
  white-space: nowrap;
  cursor: pointer;
}

/* Similar to nav-link of Bootstrap */
.navbar div.yy-navbar-div {
  color: rgba(255,255,255,.5);
  padding: .5rem;
}

div.yy-user-profile-menu.yy-container {
  right: 0px;
  min-width: max-content; /* This makes sure the menu assumes its "natural" width. */
}

.yy-user-profile-menu .nav-link {
  --bs-nav-link-color: #333;
  --bs-nav-link-hover-color: var(--bs-nav-link-color); /* Color does not change on hover */
}

.yy-user-profile-menu .nav-link .feather {
  margin-right: 4px;
  color: var(--yy-theme-color-gray);
}

.yy-user-profile-menu .nav-link:hover .feather {
	color: inherit;
}

.yy-user-profile-menu .nav-link:hover {
  background-color: var(--yy-theme-color-yellow-half);
}

/* Project selector component

Definitions below deliberately do not specify HTML elements; this is an attempt at using only semantic definitions and
maybe attach these classes to various elements in the future, possibly other ones than in the project selector
component.

*/

.yy-component-project-selector .yy-projects {
  list-style: none;
  padding: 0;
  cursor: pointer;
  margin-bottom: 0;
  max-height: 60vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.yy-component-project-selector .yy-projects .yy-project:hover {
  background-color: var(--yy-theme-color-yellow-half);
}

.yy-project-selector-trigger {
  /* Match the (apparently default) left-padding of the project indicator breadcrumb */
  padding-left: 40px;
  cursor: pointer;
}

.yy-project-selector-trigger > span:nth-child(1) {
  text-transform: uppercase;
  color: var(--yy-theme-color-violet);
}

/* Plans selector component, styling definitions mostly the same as for the project selector component above */

.yy-container:has(.yy-component-plan-selector) {
  min-width: 30rem;
}

.yy-component-plan-selector .yy-plans {
  list-style: none;
  padding: 0;
  cursor: pointer;
  margin-bottom: 0;
  max-height: 60vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.yy-component-plan-selector .yy-plans .yy-plan:hover {
  background-color: var(--yy-theme-color-yellow-half);
}

/* Completion indicator identical to the one for tasks in the plan break-down view */
.yy-component-plan-selector .yy-plans .yy-plan.yy-completed {
  box-shadow: inset 4px 0px 0px 0px #6AA857A6;
}

/* A generic container class. Meant for divs to mark them as components (usually) for child components. A container
div is often used to for the "absolute within relative" positioning trick and similar. */

/* .yy-container {
}
Deliberately empty, the container itself is styled differently in parent components depending on their rendering needs.
*/

/* A "section title" is visually a header followed by _optional_ controls, in particular buttons. This rule mainly fixes
the header such that the total height does not change when a button is made to appear and disappear dynamically,
avoiding nasty visual shifts of the complete "section". */
.yy-section-title h6 {
  line-height: inherit; /* matching Bootstrap button */
  padding-top: 0.15rem; /* matching yy-button */
  padding-bottom: 0.15rem; /* matching yy-button */
  margin-bottom: 0; /* remove standard Bootstrap header margin, not part of the fix for total height and dynamic controls */
}

.yy-width-20em {
  width: 20em;
}

.yy-width-15em {
  width: 15em;
}

main.yy-pb-10rem {
  padding-bottom: 10rem;
}

/* PlanFilterIndicator */

.yy-filter-component {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}