@charset "UTF-8";
.typeahead__container {
  /**
     * Restore the font weight unset by the previous rule.
     */
  /**
     * Show the overflow in IE.
     * 1. Show the overflow in Edge.
     */
  /**
     * Remove the inheritance of text transform in Edge, Firefox, and IE.
     * 1. Remove the inheritance of text transform in Firefox.
     */
  /**
     * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
     *    controls in Android 4.
     * 2. Correct the inability to style clickable types in iOS and Safari.
     */
  /**
     * Remove the inner border and padding in Firefox.
     */
  /**
     * Restore the focus styles unset by the previous rule.
     */
  /**
     * Change the border, margin, and padding in all browsers (opinionated).
     */
  /**
     * 1. Correct the text wrapping in Edge and IE.
     * 2. Correct the color inheritance from `fieldset` elements in IE.
     * 3. Remove the padding so developers are not caught out when they zero out
     *    `fieldset` elements in all browsers.
     */
  /**
     * Remove the default vertical scrollbar in IE.
     */
  /**
     * 1. Add the correct box sizing in IE 10-.
     * 2. Remove the padding in IE 10-.
     */
  /**
     * Correct the cursor style of increment and decrement buttons in Chrome.
     */
  /**
     * 1. Correct the odd appearance in Chrome and Safari.
     * 2. Correct the outline style in Safari.
     */
  /**
     * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
     */
  /**
     * Correct the text style of placeholders in Chrome, Edge, and Safari.
     */
  /**
     * 1. Correct the inability to style clickable types in iOS and Safari.
     * 2. Change font properties to `inherit` in Safari.
     */ }
  .typeahead__container button,
  .typeahead__container input,
  .typeahead__container optgroup,
  .typeahead__container select,
  .typeahead__container textarea {
    font: inherit;
    /* 1 */
    margin: 0;
    /* 2 */ }
  .typeahead__container optgroup {
    font-weight: bold; }
  .typeahead__container button,
  .typeahead__container input {
    /* 1 */
    overflow: visible; }
  .typeahead__container button,
  .typeahead__container select {
    /* 1 */
    text-transform: none; }
  .typeahead__container button,
  .typeahead__container html [type="button"],
  .typeahead__container [type="reset"],
  .typeahead__container [type="submit"] {
    -webkit-appearance: button;
    /* 2 */ }
  .typeahead__container button::-moz-focus-inner,
  .typeahead__container [type="button"]::-moz-focus-inner,
  .typeahead__container [type="reset"]::-moz-focus-inner,
  .typeahead__container [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0; }
  .typeahead__container button:-moz-focusring,
  .typeahead__container [type="button"]:-moz-focusring,
  .typeahead__container [type="reset"]:-moz-focusring,
  .typeahead__container [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText; }
  .typeahead__container fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  .typeahead__container legend {
    box-sizing: border-box;
    /* 1 */
    color: inherit;
    /* 2 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    white-space: normal;
    /* 1 */ }
  .typeahead__container textarea {
    overflow: auto; }
  .typeahead__container [type="checkbox"],
  .typeahead__container [type="radio"] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */ }
  .typeahead__container [type="number"]::-webkit-inner-spin-button,
  .typeahead__container [type="number"]::-webkit-outer-spin-button {
    height: auto; }
  .typeahead__container [type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -2px;
    /* 2 */ }
  .typeahead__container [type="search"]::-webkit-search-cancel-button,
  .typeahead__container [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }
  .typeahead__container ::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.54; }
  .typeahead__container ::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */ }

.typeahead__container {
  position: relative;
  font: 1rem Lato, "Helvetica Neue", Arial, Helvetica, sans-serif; }

.typeahead__container * {
  box-sizing: border-box;
  outline: 0; }

.typeahead__query {
  position: relative;
  z-index: 2;
  width: 100%; }

.typeahead__filter {
  position: relative; }
  .typeahead__filter button {
    min-width: 100%;
    white-space: nowrap; }
    .typeahead__filter button:after {
      display: inline-block;
      margin-left: 4px;
      width: 0;
      height: 0;
      vertical-align: -2px;
      content: "";
      border: 4px solid;
      border-right-color: transparent;
      border-bottom-color: transparent;
      border-left-color: transparent; }

.typeahead__field {
  display: flex;
  position: relative;
  width: 100%; }

.typeahead__button button {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px; }

.typeahead__field {
  color: #555; }
  .typeahead__field input,
  .typeahead__field textarea,
  .typeahead__field [contenteditable],
  .typeahead__field .typeahead__hint {
    display: block;
    width: 100%;
    line-height: 1.25;
    min-height: calc(0.5rem * 2 + 1.25rem + 2px);
    padding: 0.5rem 0.75rem;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 2px 0 0 2px;
    appearance: none;
    box-sizing: border-box; }
    .typeahead__field input:focus, .typeahead__field input:active,
    .typeahead__field textarea:focus,
    .typeahead__field textarea:active,
    .typeahead__field [contenteditable]:focus,
    .typeahead__field [contenteditable]:active,
    .typeahead__field .typeahead__hint:focus,
    .typeahead__field .typeahead__hint:active {
      border-color: #66afe9; }

.typeahead__field input[type="search"],
.typeahead__field input[type="search"]::-webkit-search-cancel-button {
  appearance: none; }

.typeahead__field input[type="search"]::-ms-clear {
  display: none;
  width: 0;
  height: 0; }

.typeahead__container.hint .typeahead__field input,
.typeahead__container.hint .typeahead__field textarea,
.typeahead__container.hint .typeahead__field [contenteditable] {
  background: transparent; }

.typeahead__container.hint .typeahead__query > :last-child, .typeahead__hint {
  background: #fff; }

.typeahead__container button {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  touch-action: manipulation;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #ccc;
  line-height: 1.25;
  padding: 0.5rem 0.75rem;
  user-select: none;
  color: #555; }
  .typeahead__container button:hover, .typeahead__container button:focus {
    color: #3c3c3c;
    background-color: #f5f5f5;
    border-color: #b3b3b3; }
  .typeahead__container button:active, .typeahead__container button.active {
    background-image: none; }
  .typeahead__container button:focus, .typeahead__container button:active {
    border-color: #66afe9; }

.typeahead__container input.disabled,
.typeahead__container input[disabled],
.typeahead__container button.disabled,
.typeahead__container button[disabled] {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  box-shadow: none;
  background-color: #fff;
  border-color: #ccc; }

.typeahead__container .typeahead__field input,
.typeahead__container .typeahead__field textarea,
.typeahead__container .typeahead__field [contenteditable],
.typeahead__container .typeahead__field .typeahead__hint,
.typeahead__container .typeahead__field .typeahead__label-container {
  padding-right: 32px; }

.typeahead__filter, .typeahead__button {
  z-index: 1; }
  .typeahead__filter button, .typeahead__button button {
    margin-left: -1px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0; }
  .typeahead__filter:hover, .typeahead__filter:active, .typeahead__filter:focus, .typeahead__button:hover, .typeahead__button:active, .typeahead__button:focus {
    z-index: 1001; }
    .typeahead__filter:hover button:focus, .typeahead__filter:hover button:active, .typeahead__filter:active button:focus, .typeahead__filter:active button:active, .typeahead__filter:focus button:focus, .typeahead__filter:focus button:active, .typeahead__button:hover button:focus, .typeahead__button:hover button:active, .typeahead__button:active button:focus, .typeahead__button:active button:active, .typeahead__button:focus button:focus, .typeahead__button:focus button:active {
      z-index: 1001; }

.typeahead__filter + .typeahead__button button {
  margin-left: -2px; }

.typeahead__container.filter .typeahead__filter {
  z-index: 1001; }

.typeahead__list, .typeahead__dropdown {
  position: absolute;
  left: 0;
  z-index: 1000;
  width: 100%;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
  background-clip: padding-box; }

.typeahead__result.detached .typeahead__list {
  position: relative;
  z-index: 1041;
  top: initial;
  left: initial; }

.typeahead__dropdown {
  right: 0;
  left: initial;
  z-index: 1001; }

.typeahead__list > li {
  position: relative;
  border-top: solid 1px #ccc; }
  .typeahead__list > li:first-child {
    border-top: none; }

.typeahead__list .typeahead__item[disabled] > a,
.typeahead__dropdown .typeahead__dropdown-item[disabled] > a {
  cursor: not-allowed;
  color: #bababa;
  background-color: #fafafa; }

.typeahead__list .typeahead__item > a,
.typeahead__dropdown .typeahead__dropdown-item > a {
  display: block;
  padding: 0.5rem 0.75rem;
  clear: both;
  color: #333;
  text-decoration: none; }

.typeahead__list .typeahead__item:not([disabled]) > a:hover,
.typeahead__list .typeahead__item:not([disabled]) > a:focus,
.typeahead__list .typeahead__item:not([disabled]).active > a,
.typeahead__dropdown .typeahead__dropdown-item:not([disabled]) > a:hover,
.typeahead__dropdown .typeahead__dropdown-item:not([disabled]) > a:focus,
.typeahead__dropdown .typeahead__dropdown-item:not([disabled]).active > a {
  background-color: #f5f5f5;
  color: #3c3c3c; }

.typeahead__list.empty > li {
  padding: 0.5rem 0.75rem;
  color: #333; }

.typeahead__list > .typeahead__group {
  border-color: #bfdef6;
  font-weight: bold; }
  .typeahead__list > .typeahead__group:first-child {
    border-top: solid 1px #bfdef6; }
  .typeahead__list > .typeahead__group > a,
  .typeahead__list > .typeahead__group > a:hover,
  .typeahead__list > .typeahead__group > a:focus,
  .typeahead__list > .typeahead__group.active > a {
    cursor: default;
    color: #17639f;
    background: #ecf5fc;
    display: block;
    padding: 0.5rem 0.75rem;
    clear: both;
    text-decoration: none; }

.typeahead__list > li.typeahead__group + li.typeahead__item {
  border-color: #bfdef6; }

.typeahead__container.result .typeahead__list,
.typeahead__container.filter .typeahead__dropdown,
.typeahead__container.hint .typeahead__hint,
.typeahead__container.backdrop + .typeahead__backdrop {
  display: block !important; }

.typeahead__container .typeahead__list,
.typeahead__container .typeahead__dropdown,
.typeahead__container .typeahead__hint,
.typeahead__container + .typeahead__backdrop {
  display: none !important; }

.typeahead__dropdown li:last-child {
  margin-top: 5px;
  padding-top: 5px;
  border-top: solid 1px #ccc; }

.typeahead__cancel-button {
  user-select: none;
  position: absolute;
  right: 0;
  cursor: pointer;
  line-height: 1.25;
  padding: 0.5rem 0.75rem;
  visibility: hidden; }
  .typeahead__label .typeahead__cancel-button {
    visibility: visible;
    right: 4px; }

.typeahead__container.cancel:not(.loading) .typeahead__cancel-button, .typeahead__label .typeahead__cancel-button {
  visibility: visible; }
  .typeahead__container.cancel:not(.loading) .typeahead__cancel-button:hover, .typeahead__label .typeahead__cancel-button:hover {
    color: #d0021b; }

.typeahead__search-icon {
  padding: 0 1.25rem;
  width: 16px;
  height: 16px;
  background: url(data:image/svg+xml;charset=utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDI1MC4zMTMgMjUwLjMxMyIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjUwLjMxMyAyNTAuMzEzOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCI+CjxnIGlkPSJTZWFyY2giPgoJPHBhdGggc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkOyIgZD0iTTI0NC4xODYsMjE0LjYwNGwtNTQuMzc5LTU0LjM3OGMtMC4yODktMC4yODktMC42MjgtMC40OTEtMC45My0wLjc2ICAgYzEwLjctMTYuMjMxLDE2Ljk0NS0zNS42NiwxNi45NDUtNTYuNTU0QzIwNS44MjIsNDYuMDc1LDE1OS43NDcsMCwxMDIuOTExLDBTMCw0Ni4wNzUsMCwxMDIuOTExICAgYzAsNTYuODM1LDQ2LjA3NCwxMDIuOTExLDEwMi45MSwxMDIuOTExYzIwLjg5NSwwLDQwLjMyMy02LjI0NSw1Ni41NTQtMTYuOTQ1YzAuMjY5LDAuMzAxLDAuNDcsMC42NCwwLjc1OSwwLjkyOWw1NC4zOCw1NC4zOCAgIGM4LjE2OSw4LjE2OCwyMS40MTMsOC4xNjgsMjkuNTgzLDBDMjUyLjM1NCwyMzYuMDE3LDI1Mi4zNTQsMjIyLjc3MywyNDQuMTg2LDIxNC42MDR6IE0xMDIuOTExLDE3MC4xNDYgICBjLTM3LjEzNCwwLTY3LjIzNi0zMC4xMDItNjcuMjM2LTY3LjIzNWMwLTM3LjEzNCwzMC4xMDMtNjcuMjM2LDY3LjIzNi02Ny4yMzZjMzcuMTMyLDAsNjcuMjM1LDMwLjEwMyw2Ny4yMzUsNjcuMjM2ICAgQzE3MC4xNDYsMTQwLjA0NCwxNDAuMDQzLDE3MC4xNDYsMTAyLjkxMSwxNzAuMTQ2eiIgZmlsbD0iIzU1NTU1NSIvPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cjwvc3ZnPgo=) no-repeat scroll center center transparent; }

.typeahead__container.loading .typeahead__query:before, .typeahead__container.loading .typeahead__query:after {
  transition: all 0s linear, opacity 0.2s ease;
  position: absolute;
  z-index: 3;
  content: "";
  top: 50%;
  right: 0.55em;
  margin-top: -0.675rem;
  width: 1.35rem;
  height: 1.35rem;
  box-sizing: border-box;
  border-radius: 500rem;
  border-style: solid;
  border-width: 0.1em; }

.typeahead__container.loading .typeahead__query:before {
  border-color: rgba(0, 0, 0, 0.35); }

.typeahead__container.loading .typeahead__query:after {
  animation: button-spin 0.6s linear;
  animation-iteration-count: infinite;
  border-color: #fff transparent transparent;
  box-shadow: 0 0 0 1px transparent; }

@keyframes button-spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

.typeahead__label-container {
  list-style: none;
  position: absolute;
  padding-top: calc(1rem * 0.375);
  padding-left: 6px;
  width: 100%;
  flex-wrap: wrap;
  display: flex; }

.typeahead__label {
  display: flex;
  font-size: calc(1rem * 0.875);
  position: relative;
  background: #ecf5fc;
  border: solid 1px #c2e0ff;
  padding-left: 4px;
  border-radius: 2px;
  margin-right: 4px;
  margin-bottom: calc(1rem * 0.375); }
  .typeahead__label > * {
    align-self: center; }
  .typeahead__label .typeahead__cancel-button {
    line-height: normal;
    height: auto;
    position: static;
    padding-top: calc(1rem * 0.25 - 1px);
    padding-bottom: calc(1rem * 0.25 + 1px);
    padding-left: 6px;
    padding-right: 6px;
    margin-left: 4px;
    font-size: calc(1rem * 0.875);
    border-left: solid 1px #c2e0ff; }
    .typeahead__label .typeahead__cancel-button:hover {
      background-color: #d5e9f9; }

.tagging-loading {
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 3;
  opacity: 0;
  transition: opacity 420ms ease;
  pointer-events: none; }

.tagging-overlay.loading .tagging-loading {
  opacity: 1;
  pointer-events: auto; }

.tagging-loading-spinner {
  display: inline-block;
  position: absolute;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%; }

.tagging-loading-spinner div {
  transform-origin: 32px 32px;
  animation: tagging-loading-spinner 1.2s linear infinite; }

.tagging-loading-spinner div::after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 29px;
  width: 5px;
  height: 14px;
  border-radius: 20%;
  background: #000; }

.tagging-loading-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s; }

.tagging-loading-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s; }

.tagging-loading-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s; }

.tagging-loading-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s; }

.tagging-loading-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s; }

.tagging-loading-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s; }

.tagging-loading-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s; }

.tagging-loading-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s; }

.tagging-loading-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s; }

.tagging-loading-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s; }

.tagging-loading-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s; }

.tagging-loading-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s; }

@keyframes tagging-loading-spinner {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.thetags ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 1rem; }

.thetags li {
  display: block;
  margin-right: 0.2em;
  margin-bottom: 0; }

.thetags li:last-child {
  margin-right: 2em; }

.btn.add-tags,
.btn.admin-add-tags {
  background: #a1a1a1;
  border: 0;
  padding: 0.1em 1em;
  display: block;
  border-radius: 2px;
  color: #000;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  cursor: pointer;
  transition: background 260ms ease-in;
  margin-bottom: 1rem; }

.btn.admin-add-tags {
  display: inline-block;
  text-shadow: unset; }

.btn.add-tags:hover {
  background: #dadada; }

.ubercatcloud .btn.add-tags {
  margin: 0 auto; }

.tagging-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
  opacity: 0;
  background-color: #fff;
  color: #000;
  z-index: 101;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  padding: 1em;
  box-sizing: border-box;
  border: 0.5em solid #000; }

.tagging-overlay.show {
  opacity: 1;
  pointer-events: auto; }

.tag-list-item.has-children > .tag-list {
  margin-left: 1.6em; }

.tag-list-item-name {
  user-select: none;
  cursor: pointer;
  display: block; }

.tag-list-item-name::before {
  content: '';
  display: inline-block;
  height: 1em;
  width: 1em;
  border: 1px solid #000;
  background: #fff;
  margin-right: 0.5em;
  cursor: pointer;
  position: relative; }

.tag-list-level-0 > .tag-list-item-name {
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #000;
  padding: 0.5em 0; }

.tag-list-level-0 > .tag-list {
  display: none; }

.tag-list-level-0.show > .tag-list {
  display: block;
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1; }

.tag-list-level-0 > .tag-list-item-name::after {
  content: '›';
  display: inline-block;
  transform: rotateZ(90deg);
  margin-left: 0.5em; }

.tag-list-level-0.show .tag-list-item-name::after {
  transform: rotateZ(-90deg); }

.tag-list-level-0 > label::before {
  display: none; }

.tag-list-item.tag-list-level-0 > .tag-list {
  margin-top: 1em;
  margin-left: 0; }

.tag-list-check:checked + label::before {
  background-image: url(../../../../images/haekchen-inverted.svg);
  background-repeat: no-repeat;
  background-size: 32px 16px; }

.tag-list-check {
  display: none; }

.tag-list-level-0 .tag-list-item {
  margin-right: 1em;
  padding: 0.18em 0; }

/**
 * Add Tags form
 * —————————————
 */
.tagging-head {
  padding-bottom: 1rem;
  border-bottom: 2px solid #000;
  position: relative; }

.tagging-title {
  font-size: 1.25rem;
  margin: 1.5rem 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid #000; }

.tagging-overlay .close-form {
  position: absolute;
  top: -28px;
  right: 0;
  width: 32px;
  height: 32px;
  cursor: pointer; }

.tagging-overlay .close-form::before,
.tagging-overlay .close-form::after {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  height: 33px;
  background-color: #000;
  width: 2px; }

.tagging-overlay .close-form::before {
  transform: rotate(45deg); }

.tagging-overlay .close-form::after {
  transform: rotate(-45deg); }

.tagging-title span {
  text-transform: uppercase; }

.tagging-search-image-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  align-items: flex-start; }

.tag-search {
  width: 70%;
  padding-right: 1rem;
  margin-bottom: 1rem; }

.tag-search-from {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.typeahead__container {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  width: 100%; }

.typeahead__query {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline; }

.typeahead__button {
  display: none; }

.typeahead__field {
  color: #000;
  margin-left: 3em;
  width: calc(100% - 3em); }

.typeahead__container > label {
  position: absolute;
  top: 0.6em; }

.typeahead__result {
  position: relative;
  margin-left: 3em;
  width: calc(100% - 3em); }

.tag-search-from input[type=search],
.tag-search-from input[type=text],
.tagging-thanks-add input[type=text],
.tagging-thanks-add input[type=email],
.new-tag {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid #000;
  padding: 0.4em 0.5em;
  flex-grow: 1;
  width: auto;
  outline: 0; }

.tag-search-from input[type=search]::placeholder,
.tag-search-from input[type=text]::placeholder,
.tagging-thanks-add input[type=text]::placeholder,
.tagging-thanks-add input[type=email]::placeholder,
.new-tag::placeholder {
  opacity: 1;
  color: #aaa; }

.tagging-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  justify-content: flex-end;
  margin-top: 1rem; }

.tagging-action {
  position: relative;
  cursor: pointer; }

.tagging-action::before {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  top: 1.4em;
  height: 2px;
  background-color: #000; }

.tagging-action-cancel {
  margin-right: 3em; }

.tagging-action-submit {
  margin-right: 0.5em;
  /* compensate for absolute positioned arrow */ }

.tagging-action-cancel::after {
  content: '×';
  position: absolute;
  display: inline-block;
  padding-left: 0.5em; }

.tagging-action-submit::after {
  content: '›';
  position: absolute;
  display: inline-block;
  padding-left: 0.5em; }

.autocomplete-parents {
  font-weight: 400; }

.typeahead__item a strong {
  font-variant: unset;
  font-weight: bold; }

.typeahead__list {
  background-color: #a3a3a3;
  color: #000;
  border: 2px solid #000;
  border-radius: 0;
  padding: 0;
  margin-top: -3px;
  margin-left: -1px; }

.typeahead__group {
  background-color: #fff; }

.typeahead__list > .typeahead__group {
  border: 0; }

.typeahead__list > li.typeahead__group + li.typeahead__item,
.typeahead__list > .typeahead__group:first-child,
.typeahead__list > li {
  border: 0; }

.typeahead__list .typeahead__item:not([disabled]) > a:hover,
.typeahead__list .typeahead__item:not([disabled]) > a:focus,
.typeahead__list .typeahead__item:not([disabled]).active > a,
.typeahead__dropdown .typeahead__dropdown-item:not([disabled]) > a:hover,
.typeahead__dropdown .typeahead__dropdown-item:not([disabled]) > a:focus,
.typeahead__dropdown .typeahead__dropdown-item:not([disabled]).active > a {
  background-color: #fefefe; }

.typeahead__list > .typeahead__group > a,
.typeahead__list > .typeahead__group > a:hover,
.typeahead__list > .typeahead__group > a:focus,
.typeahead__list > .typeahead__group.active > a {
  color: #000;
  background-color: #a3a3a3; }

/**
 * Selected tags list
 */
.tagging-selected-tags-wrapper {
  margin-top: 1.5rem; }

.tagging-selected-tags-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-top: 0.25rem; }

.tagging-selected-tags-list li {
  display: block;
  position: relative;
  padding: 0.3em 0.5em;
  border: 2px solid #000;
  margin: 0 1em 0.5em 0;
  cursor: pointer; }

.tagging-selected-tags-list li::after {
  content: '×';
  padding-left: 0.4em; }

.tagging-selected-tags-list li.original-tag {
  color: #808080;
  border-color: #808080;
  pointer-events: none; }

.tagging-selected-tags-list li.original-tag::after {
  display: none; }

.tagging-selected-tags-list li.new-tag {
  flex-grow: unset;
  border-style: dashed;
  font-style: oblique; }

/**
 * Utility Classes
 */
.tagging-overlay .show {
  display: block; }

.tagging-overlay .hidden {
  display: none; }

/**
 * Center Add tags button on single gallery page
 */
.gallery-add-tags {
  margin: 0 auto;
  display: block;
  text-align: center;
  margin-top: 0.5rem; }

/**
 * Add new tags form.
 */
.new-tag-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 1rem;
  width: 100%;
  position: relative; }

.new-tag-wrapper > div:first-child {
  width: 50%;
  position: relative; }

.new-tag-wrapper input.new-tag {
  margin-left: 3em;
  font-size: 16px;
  width: calc(100% - 3em); }

.new-tag-wrapper .typeahead__container {
  position: relative;
  width: 50%; }

.new-tag-wrapper .typeahead__field {
  width: calc(100% - 3em); }

.new-tag-wrapper label[for=new-tag-input] {
  position: absolute;
  top: 0.6em; }

/**
 * Tagging tooltip
 */
.tag-parents-tooltip {
  position: absolute;
  left: -2px;
  top: -8px;
  transform: translateY(-100%);
  background-color: black;
  z-index: 2;
  color: white;
  padding: 0.3rem 0.5rem;
  font-size: 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0; }

.tag-parents-tooltip::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid black;
  position: absolute;
  bottom: -4px;
  left: 6px; }

.tagging-selected-tags-list li:hover .tag-parents-tooltip {
  opacity: 1; }

.tagging-selected-tags-path {
  position: absolute;
  bottom: 1em;
  width: 100%; }

/**
 * Tagging thumbnail gallery
 */
.tagging-gallery {
  width: 30%;
  max-width: 260px;
  position: relative; }

.tagging-gallery-wrap {
  position: relative;
  width: 100%; }

.tagging-gallery-wrap::after {
  content: '';
  padding-bottom: 100%;
  display: block; }

.tagging-gallery-nav {
  position: absolute;
  width: 50%;
  height: 100%;
  display: block;
  top: 0; }

.tagging-gallery-nav-prev {
  left: 0;
  cursor: w-resize; }

.tagging-gallery-nav-next {
  left: 50%;
  cursor: e-resize; }

.tagging-gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: #333; }

.tagging-gallery-image.show {
  opacity: 1; }

.tagging-gallery-image img {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%; }

.tagging-gallery-count {
  margin-top: 0.5rem;
  text-align: center; }

.tagging-message.confirmation {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }

.tagging-message.confirmation > div:first-child {
  padding-right: 3rem; }

.tagging-message.confirmation input[type=text] {
  margin-right: 0.5rem; }

.tagging-message.confirmation .tagging-actions {
  display: inline-block;
  margin-left: 0; }

.tagging-message.confirmation .tagging-action {
  display: inline-block; }

@media screen and (min-width: 414px) {
  .tag-list-level-0.show > .tag-list {
    display: block;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2; } }

@media screen and (min-width: 768px) {
  .tag-list-level-0.show > .tag-list {
    display: block;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3; } }

/*# sourceMappingURL=tagging.css.map */