/* on-off button styling depends on data-toggle in bootstrap */
.btn-onoff-ct input {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}
a {
    cursor: pointer;
}

.disabled {
    pointer-events: auto;
}

.btn {
    min-height: 26px;
    min-width: 26px;
}

.btn.disabled {
    pointer-events: auto;
}

.btn.disabled:hover {
  z-index: auto;
}

a.disabled {
    cursor: not-allowed !important;
    text-decoration: none;
    pointer-events: none;
    color: #8b8d8f;
}

a.disabled:hover {
    text-decoration: none;
}

.dropdown-menu > li > a.disabled,
.dropdown-menu > li > a.disabled:hover,
.dropdown-menu > li > a.disabled:focus {
  color: #999999;
}

.dropdown-menu > li > a.disabled:hover,
.dropdown-menu > li > a.disabled:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  border-color: transparent;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: default;
}

/* Limit dropdown menus to 90% of the viewport size */
.dropdown-menu {
    height: auto;
    overflow-x: hidden;
    max-height: 90vh;
}
/* Align these buttons more nicely */
.btn.fa-minus,
.btn.fa-plus {
    padding-top: 4px;
}

/* HACK: Workaround for https://github.com/patternfly/patternfly/issues/174*/

.page-ct {
    margin-top: 20px;
}

.highlight-ct {
    background-color: #edf8ff;
}

/* Well and Blankslate */

.curtains-ct {
    top: 0px;
    height: 100%;
    width: 100%;
    position: fixed;
}

.panel .well {
    margin-bottom: 0px;
    border: none;
    border-radius: 0px;
    background-color: #FAFAFA;
}

.well.blank-slate-pf {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05) inset;
    padding-top: 40px;
}

.blank-slate-pf .spinner-lg {
    height: 58px;
    width: 58px;
}

/*
 * Control buttons such as play and stop
 * Used with .btn .btn-default
 */

.btn-control-ct,
.btn-control-ct:hover {
    background-position: center center;
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-image: none;
    -webkit-border-radius: 2;
    -moz-border-radius: 2;
    border-radius: 2px;
    height: 28px;
    width: 28px;
    box-shadow: none;
}

.btn-control-ct {
    background-color: #eeeeee;
}

.btn-control-ct:hover {
   background-color: #e0e0e0;
}


/* On/off switch */

.btn-onoff-ct {
    margin: 1px 0px;
    text-transform: uppercase;
}

.btn-onoff-ct .btn {
    color: transparent;
    border-color: #B7B7B7;
    padding: 2px 6px 1px 6px;
    background-color: white;
    background-image: linear-gradient(to bottom, rgb(250, 250, 250) 0px, rgb(237, 237, 237) 100%);
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 37px;
}

.btn-onoff-ct .btn:first-child {
    border-right: #00435F;
}

.btn-onoff-ct .btn:last-child {
    border-left: #00435F;
    padding-left: 5px;
}

.btn-onoff-ct .btn.active {
    background-image: none;
    width: 36px;
}

.btn-onoff-ct .btn.active:first-child {
    background-color: #0086CF;
    color: white;
    border-right: 1px solid #0071b0;
}

.btn-onoff-ct .btn.active:last-child {
    color: #000;
    border-left: 1px solid #d6d6d6;
}

.btn-onoff-ct .btn.disabled {
    pointer-events: none;
    color: transparent !important;
}

.btn-onoff-ct .btn.active.disabled {
    background-color: #888 !important;
    color: white !important;
}

/* Small list inside a dialog */
/* Alert fixups */

.modal-content .alert {
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
}

.modal-content .alert .fa {
    position: absolute;
    left: 10px;
    top: 6px;
    font-size: 20px;
}

.modal-content .alert .pficon {
    top: 5px;
}

.alert.alert-danger .fa {
    color: #af151a;
}

/* Dialog patterns */

.dialog-wait-ct {
    margin-top: 3px;
}

.dialog-wait-ct .spinner {
    display: inline-block;
}

.dialog-wait-ct span {
    vertical-align: 4px;
    padding-left: 10px;
}

.dialog-list-ct {
    max-height: 230px;
    overflow-x: auto;
    border: 1px solid #CCC;
    margin-bottom: 0px;
}

/* HACK: https://github.com/patternfly/patternfly/issues/255 */
input[type=number] {
  padding: 0 0 0 5px;
}

/* Make a dialog visible */
.dialog-ct-visible {
    display: block;
}
#cockpit_modal_dialog .modal-body.scroll {
    max-height: calc(75vh - 10rem);
    overflow: auto;
}
.package-list-ct {
    margin: 1em 0;
    padding: 0;
    max-width: 110rem;
    text-align: left;
    box-sizing: border-box;
}

.package-list-ct li {
    text-align: left;
    box-sizing: border-box;
    width: 22rem;
    padding: 0 1ex;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.scale-up-ct {
    animation: dialogScaleUpCt 1s;
}

@keyframes dialogScaleUpCt {
    0% {
        opacity: 0;
        max-height: 0;
    }
    25% {
        opacity: 0;
    }
    50% {
        max-height: 100vh;
    }
    100% {
        opacity: 1;
    }
}
.pk-updates--header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0 1rem;
}
.pk-updates--header--heading,
.pk-updates--header--actions {
  padding: 0.5rem 0 0;
}
.pk-updates--header--heading {
  margin: 0;
  padding-right: 15px;
}
.pk-updates--header--actions > .btn,
.pk-updates--header--actions > .btn-group {
  margin: 5px 5px 0 0;
}
.pk-updates--header--actions > .btn:last-child,
.pk-updates--header--actions > .btn-group:last-child {
  margin-right: 0;
}
@media screen and (min-width: 640px) {
  .pk-updates--header--auto {
    justify-content: start;
  }
}
/* override default cockpit CSS, as this doesn't fit our table */
table.listing-ct {
  margin-top: 0;
  width: 100%;
}
table.listing-ct thead th {
  padding-left: 0;
}
table.listing-ct thead th:last-child {
  text-align: left;
}
tr.listing-ct-item td,
tr.listing-ct-item th {
  /* We *should* align to baseline, but names wrap */
  /* Padding and text side is the same, so top works here */
  /* Too bad table doesn't align to "first baseline", like flex/grid */
  vertical-align: top;
}
tr.listing-ct-item td:not(:first-child) {
  padding-left: 0;
}
tr.listing-ct-item th:last-child {
  text-align: left;
}
@media screen and (min-width: 641px) {
  tr.listing-ct-item {
    /* Desktop: Truncate version by default and untruncate on hover */
  }
  tr.listing-ct-item td.version {
    width: 18ex;
    /* Tables are stretchy, so we *also* need the max-width */
    max-width: 18ex;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* Expand version string when hovering */
  }
  tr.listing-ct-item td.version:hover {
    overflow: visible;
  }
  tr.listing-ct-item td.version:hover .truncating {
    background: linear-gradient(to left, rgba(237, 248, 255, 0), #edf8ff 3em);
    position: relative;
    padding: 0.5em 4em 0.5em 0;
  }
}
@media screen and (max-width: 640px) {
  tr.listing-ct-item {
    /* Mobile: force wrap version strings */
  }
  tr.listing-ct-item td.version {
    word-break: break-all;
    width: 16ch;
    max-width: 30vw;
  }
}
tr.listing-ct-item td.type {
  white-space: nowrap;
}
tr.listing-ct-item td.changelog {
  vertical-align: top;
  text-align: left;
}
tr.listing-ct-item td.changelog * {
  display: inline;
  font: inherit;
  background: inherit;
  color: inherit;
}
tr.listing-ct-item td.changelog,
tr.listing-ct-item td.changelog p {
  max-width: 60vw;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.severity-critical {
  color: #a30000;
}
.severity-important {
  color: #ec7a08;
}
.severity-low {
  color: #72767b;
}
@font-face {
  font-family: "pf-symbols";
  font-style: normal;
  font-weight: 400;
  src: url(data:application/x-font-woff;charset=utf-8;base64,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) format("woff");
  unicode-range: U+E946, U+E93A;
}
.pficon-security:before {
  content: "\E946";
  font-family: pf-symbols;
}
.pficon-enhancement:before {
  content: "\E93A";
  font-family: pf-symbols;
}
div.changelog {
  max-height: 20em;
  overflow: auto;
  white-space: pre-wrap;
}
tr.security.listing-ct-item {
  background-color: #fbf0f0 !important;
  /* keep red background when expanded */
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (min-width: 641px) {
  tr.security.listing-ct-item td.version:hover .truncating {
    background: linear-gradient(to left, rgba(251, 240, 240, 0), #fbf0f0 3em);
  }
}
/* Hide changelog summaries in narrow widths */
@media screen and (max-width: 80ch) {
  .container-fluid {
    overflow-x: hidden;
  }
  table.listing-ct {
    /* Hide changelog header (there's no class) & data */
  }
  table.listing-ct thead th:last-child,
  table.listing-ct td.changelog {
    display: none;
  }
}
/* Remove listing table margins in cramped space (mobile) */
@media screen and (max-width: 640px) {
  table.listing-ct {
    /* counteract .container-fluid */
    margin-left: -20px;
    margin-right: -20px;
    /* Mobile mode table should be full width */
    width: 100vw;
  }
  tbody.open > tr.listing-ct-item,
  tbody.open > tr.listing-ct-panel {
    border-left: none;
    border-right: none;
  }
}
/* don't let the install progress bar get too wide */
.progress-main-view {
  max-width: 60rem;
  margin: 10ex auto 0;
}
/* stolen from pkg/systemd/host.css */
.content-header-extra {
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
  width: 100%;
  z-index: 900;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (min-width: 640px) {
  .content-header-extra {
    position: sticky;
  }
}
.content-header-extra--state,
.content-header-extra--updated {
  /* Make the height similar to the button (2px padding + 1px border) */
  padding: 3px 0;
}
.content-header-extra--state {
  flex: 100 1 auto;
  padding-right: 1ex;
}
.content-header-extra--updated {
  flex: auto;
}
.content-header-extra--action {
  text-align: right;
  padding-left: 1ex;
}
/* fixed width to avoid jumpy text between expanded/collapsed */
.expander-caret {
  width: 2ex;
}
.expander-title {
  margin-bottom: 2em;
  display: flex;
  align-items: center;
}
.expander-title hr {
  flex: auto;
}
.expander-title span {
  padding: 1ex;
  flex: none;
}
.blank-slate-pf {
  /* PatternFly empty state has a gray background which we don't want here */
  background: inherit;
  border: none;
  /* standard blank-slate-pf does not limit width of paragraph, which looks ugly */
}
.blank-slate-pf p {
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}
.flow-list-blank-slate {
  padding-top: 8em;
  margin: 0 auto;
  max-width: 69rem;
  text-align: center;
}
.flow-list {
  margin: 1em 1em 3em;
  padding: 0;
  max-width: 110rem;
  text-align: left;
  box-sizing: border-box;
}
.flow-list li {
  text-align: left;
  box-sizing: border-box;
  width: 22rem;
  padding: 0 1ex;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 600;
}
.update-log {
  padding-top: 8em;
  margin: 0 auto;
  max-width: 69rem;
  text-align: center;
}
.update-log th {
  text-align: left;
  padding-right: 3ex;
}
.update-log td {
  text-align: left;
}
.update-log-content {
  margin: 0 10ex;
  height: 13em;
  overflow-y: auto;
}
table.header-buttons {
  margin-bottom: 20px;
  /* replacement for h2's margin-bottom */
}
table.header-buttons td {
  vertical-align: middle;
}
table.header-buttons h2 {
  margin: 0 4rem 0 0;
  /* vertical default ones break vertical alignment */
}
.auto-conf {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  margin: 1em 0 2em;
  width: 100%;
  /* bootstrap sets widths to 100%, way too wide for Select widgets */
}
.auto-conf .dropdown-toggle {
  width: auto;
}
.auto-conf .dropdown {
  width: auto !important;
  padding: 0.5ch;
}
.auto-conf-text {
  padding: 0 1ch;
}
.auto-conf-group:first-child > .dropdown {
  padding-left: 0;
}
/* three columns for auto update hour picker */
#auto-update-time ul {
  width: 25ex;
}
#auto-update-time li {
  width: 8ex;
  display: inline-block;
  text-align: right;
}
/* Listing pattern */
table.listing-ct {
  margin-top: 15px;
  min-width: 65%;
}
table.listing-ct > caption,
table.listing-ct > thead h3 {
  font-size: 22px;
  padding: 10px 0px 10px;
  font-weight: 300;
  margin-top: 0;
}
table.listing-ct > caption {
  color: inherit;
  line-height: 1.1;
}
table.listing-ct > thead td {
  padding-top: 20px;
}
table.listing-ct > thead:first-child td {
  padding-top: 0;
}
table.listing-ct > thead td > a {
  line-height: 30px;
  padding: 10px 0 10px;
}
table.listing-ct > thead th {
  border-top: 1px solid #f1f1f1;
  font-weight: normal;
  padding: 10px 20px;
  color: #888;
}
table.listing-ct > thead th:first-child {
  padding-left: 20px;
}
table.listing-ct > thead th:last-child {
  text-align: right;
}
/* A listing item is a row in the table */
tbody > tr.listing-ct-item {
  border: 1px solid transparent;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  cursor: pointer;
}
table.listing-ct > tbody:last-child {
  border-bottom: 1px solid #f1f1f1;
}
table.listing-ct > tbody + thead {
  border-top: 1px solid #f1f1f1;
}
table.listing-ct > tbody.open:last-child {
  border-bottom: none;
}
table.listing-ct > tbody.open + thead {
  border-top: none;
}
tbody > tr.listing-ct-item.listing-ct-warning {
  background-color: #fbc7c7;
}
tbody.open > tr.listing-ct-item {
  background-color: #def3ff;
  border-bottom: none;
  border-top: none;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  transition: all 200ms;
}
tbody.open > tr.listing-ct-item td,
tbody.open > tr.listing-ct-item th {
  border-top: 1px solid #ccc;
}
tbody.open td div.listing-ct-head {
  background-color: #fff;
}
tbody.open > .listing-ct-panel {
  border: 1px solid #ccc;
}
tbody.open > .listing-ct-panel > td > .listing-ct-body {
  border: none;
  overflow: auto;
}
tbody.open > tr.listing-ct-panel + tr.listing-ct-body {
  border-top: none;
}
tbody.open > tr.listing-ct-panel td div.listing-ct-head {
  border: none;
  border-bottom: 1px solid #ccc;
}
/* only highlight the row if navigation is available */
tbody:not(.open) > tr.listing-ct-item:not(.listing-ct-nonavigate):hover {
  background-color: #edf8ff;
}
/* if we can't navigate to a row but expand is available, highlight the caret */
tbody:not(.open) > tr.listing-ct-item.listing-ct-nonavigate:hover td.listing-ct-toggle {
  color: #65bedf;
}
/* use hover color expanded rows even if navigation isn't available */
tbody.open:hover > tr.listing-ct-item,
tr.listing-ct-item.listing-ct-nonavigate:hover {
  background-color: #edf8ff;
}
tr.listing-ct-item .listing-ct-toggle:not(:empty) {
  width: 35px;
  color: #393f44;
}
/* Highlight toggle color when hovered or if the row is open */
.listing-ct-toggle:hover,
tbody.open .listing-ct-toggle {
  color: #65bedf;
}
.listing-ct .listing-ct-toggle:empty {
  width: 0;
  padding: 0;
}
.listing-ct > thead > tr > .listing-ct-toggle + th,
.listing-ct-item > .listing-ct-toggle + td,
.listing-ct-item > .listing-ct-toggle + th {
  padding-left: 10px;
  position: relative;
}
.listing-ct-item > .listing-ct-toggle:not(:empty) + th::before,
.listing-ct-item > .listing-ct-toggle:not(:empty) + td::before {
  border-left: 1px solid rgba(0, 0, 0, 0.18);
  /* pf-black-300 */
  content: "";
  height: 1.66666667em;
  left: -5px;
  position: absolute;
  top: 15px;
}
td.listing-ct-toggle i {
  font-size: 17px;
}
td.listing-ct-toggle i:before {
  position: relative;
  content: "\F105";
  display: block;
}
tbody.open td.listing-ct-toggle i:before {
  content: "\F107";
  animation: listingCtToggleOpen 100ms ease-in-out;
  top: 1px;
}
@keyframes listingCtToggleOpen {
  0% {
    transform-origin: 50% 50%;
    transform: translate(0, -1px) rotate(-90deg);
  }
  100% {
    transform: translate(0, 0) rotate(0);
  }
}
/* Listing items have decent padding ... */
.listing-ct > thead > tr > th,
tr.listing-ct-item > th,
tr.listing-ct-item > td {
  padding: 15px;
  vertical-align: text-top;
  /* baseline doesn't support wrapped lines */
}
tr.listing-ct-item > td > .btn {
  /* .btn has padding of 6px and 1px border */
  margin-top: -7px;
  margin-bottom: -7px;
}
tr.listing-ct-item > td > .btn-control-ct {
  /* Adapt for Cockpit's modified button, which is larger by 8px */
  margin-top: -3px;
  margin-bottom: -3px;
}
/* Listing caption is text next to the actions, text should be similar to nav (.nav-tabs-pf > li > a)*/
.listing-ct-actions > .listing-ct-caption {
  font-size: 13px;
  vertical-align: middle;
  color: #0088ce;
  padding-right: 5px;
}
/* Listing actions can be used directly as a cell */
tr.listing-ct-item td.listing-ct-actions,
td.listing-ct-actions {
  padding: 5px 10px;
  text-align: right;
  float: none;
}
/* if the entire row is selected, highlight */
tr.listing-ct-item.listing-ct-selected {
  background-color: #0088ce;
  color: #fff;
  border-color: #007ebf;
}
tr.listing-ct-item.listing-ct-selected:hover {
  background-color: #007ebf;
  border-color: #007ebf;
}
tr.listing-ct-item.listing-ct-selected .badge {
  background-color: #00537e;
}
tr.listing-ct-item.listing-ct-selected .badge:hover {
  background-color: #003e5f;
}
.listing-ct-head .listing-ct-actions {
  margin-top: -7px;
}
/* The last column of a listing is always right aligned */
tr.listing-ct-item td:last-child {
  text-align: right;
}
div.listing-ct-panel {
  box-shadow: 1px 1px 1px 1px #f5f5f5;
  margin-bottom: 15px;
}
div.listing-ct-maybe {
  border: 1px dashed #ddd;
  box-shadow: none;
}
div.listing-ct-head {
  padding: 10px 10px 0 10px;
  background-color: #f5f5f5;
  border-color: #ccc;
  border-style: solid;
  border-width: 1px 1px 0 1px;
  overflow: hidden;
}
div.listing-ct-head:last-child {
  padding-bottom: 10px;
}
div.listing-ct-maybe div.listing-ct-head,
div.listing-ct-maybe div.listing-ct-body {
  background-color: #fff;
  border: none;
}
tbody.active .listing-ct-head {
  border-top: 3px solid #0099d3;
}
.listing-ct-head h3 {
  font-weight: normal;
  font-size: 18px;
  margin-top: 0px;
  margin-left: 5px;
  margin-bottom: 10px;
}
.listing-ct-head h3 i {
  float: left;
  padding-right: 7px;
}
.listing-ct-head .nav li a {
  font-size: 13px;
  /* Counteract listing-ct-head padding */
  margin-top: -10px;
}
.listing-ct-head .nav-tabs {
  border-bottom: none;
}
.listing-ct-head .nav-tabs-pf {
  /* Counteract listing-ct-head padding */
  margin: -10px 0 0 -10px;
}
/* To display info instead of tabs */
.listing-ct-head dl {
  display: inline-block;
  height: 1.6em;
  margin-bottom: 5px;
  white-space: nowrap;
  margin-right: 45px;
  margin-left: 5px;
}
.listing-ct-head dt {
  font-weight: normal;
  display: inline;
  margin-right: 0.5em;
  color: #888;
}
.listing-ct-head dd {
  display: inline;
  color: black;
}
.listing-ct-body {
  padding: 20px 25px;
  font-size: 13px;
  border: 1px solid #ccc;
  background-color: #fff;
}
.listing-ct-inline > td > .listing-ct-body {
  border: none;
  padding-top: 0px;
  padding-left: 20px;
  padding-bottom: 0px;
}
.listing-ct-inline > h3 {
  border-top: 1px solid #ccc;
  padding-top: 20px;
  margin-top: 30px;
}
.listing-ct-inline > h3:first-child {
  border-top: none;
  padding-top: 0px;
  margin-top: 20px;
}
.listing-ct-actions {
  float: right;
  min-height: 26px;
}
.listing-ct-status {
  float: right;
  clear: right;
}
.listing-ct-error {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.listing-ct-error.alert {
  margin-bottom: 0;
}
.listing-ct-body tt {
  font-size: 12px;
}
.listing-ct-body dl {
  margin: 0;
}
.listing-ct-body dl dd dl.inline-dl dt,
.listing-ct-body dt {
  clear: left;
  float: left;
  width: 100px;
  min-height: 26px;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #888;
  font-weight: normal;
}
.listing-ct-body dt {
  text-align: right;
}
.listing-ct-body dl dd dl dt {
  text-align: left;
}
.listing-ct-body dd {
  margin-left: 110px;
  min-height: 26px;
  max-width: 1000px;
  text-overflow: ellipsis;
}
.listing-ct-body dl.full-width dt {
  text-align: left;
  min-width: none;
  max-width: none;
  float: none;
  width: auto;
}
.listing-ct-body dl.full-width dd {
  margin-left: 0px;
}
table.listing-ct tbody {
  transition: all 100ms ease-out;
}
table.listing-ct tbody.open {
  transition: all 100ms ease-in;
  box-shadow: 0 2px 6px rgba(3, 3, 3, 0.2);
}
/* By default these are hidden */
/* (HACK: Special-case the user auth dialog) */
tbody:not(.ssh-key-body) > tr.listing-ct-head,
tbody > tr.listing-ct-panel,
tbody > tr.listing-ct-body {
  display: none;
}
/* ... unless they are in the right state */
tbody.open > tr.listing-ct-head,
tbody.open > tr.listing-ct-panel,
tbody.open > tr.listing-ct-body {
  display: table-row;
}
/* Animate the listing head & the last visible body */
/* (Switching tabs will adds new listing-ct-bodys & toggle visibility) */
tbody.open div.listing-ct-head,
tbody.open div.listing-ct-head + div.listing-ct-body:not([hidden]):last-child {
  animation: listingCtShow 100ms ease-in-out;
}
@keyframes listingCtShow {
  0% {
    margin-bottom: 0;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    padding-bottom: 0;
    padding-top: 0;
    line-height: 0;
  }
  50% {
    opacity: 0;
    line-height: 1;
  }
  100% {
    max-height: 100vh;
    opacity: 1;
  }
}
/* Turn off animation if requested by the browser/OS (where supported) */
@media (prefers-reduced-motion: reduce) {
  tbody.open td.listing-ct-toggle i:before,
  tbody.open div.listing-ct-head,
  tbody.open div.listing-ct-body {
    animation: none;
  }
}
tbody.open tr.listing-ct-head {
  border-color: #ccc;
  border-style: solid;
  border-width: 1px 1px 0 1px;
  border-top: 3px solid #0099d3;
  background-color: #f5f5f5;
}
tr.listing-ct-head + tr.listing-ct-head {
  border-top: none;
}
tr.listing-ct-head + tr.listing-ct-head td {
  padding: 0px 10px 0px 10px;
}
tr.listing-ct-body td {
  padding: 20px 25px;
  font-size: 13px;
}
.listing-ct-empty {
  color: #888;
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
/* Used at the end of a group of tbody to show an 'empty' message */
thead.listing-ct-empty td,
table.listing-ct > thead.listing-ct-empty td {
  padding: 10px;
}
tbody + thead.listing-ct-empty {
  display: none;
}
/* Listing pattern defaults to using full width of parent */
.listing-ct-wide {
  width: 100%;
}
/* Listing pattern mod to redce the padding */
.listing-ct-compact > thead > tr > th,
.listing-ct-compact > tbody > tr > th,
.listing-ct-compact > tbody > tr > td {
  padding: 5px;
}
.listing-ct-compact > tbody > tr > .listing-ct-toggle:not(:empty) + th,
.listing-ct-compact > tbody > tr > .listing-ct-toggle:not(:empty) + td {
  padding-left: 5px;
}
.listing-ct-compact > tbody > tr > .listing-ct-toggle:not(:empty) + th::before,
.listing-ct-compact > tbody > tr > .listing-ct-toggle:not(:empty) + td::before {
  top: 5px;
}
div.listing-ct-head {
  overflow: visible;
}
.listing-ct-head .btn-group,
.listing-ct-head button:not(.dropdown-toggle) {
  margin-left: 0.3em;
}
table.listing-ct > caption a {
  font-size: 16px;
}
tbody tr.listing-ct-noexpand {
  cursor: default;
}
/* Fix up nav-tabs-pf to work properly */
.nav-tabs-pf > li:first-child a {
  margin-left: 0px !important;
  padding-left: 15px !important;
}
.nav-tabs-pf > li a:before {
  right: 0px !important;
}
.nav-tabs-pf > li > a:active:before,
.nav-tabs-pf > li > a:focus:before,
.nav-tabs-pf > li > a:hover:before,
.nav-tabs-pf > li.active a:before {
  height: 3px;
  left: 0px;
}
/* Force word-wraps when words are too long */
.listing-ct-item td,
.listing-ct-item th,
.listing-ct-body {
  overflow-wrap: break-word;
  hyphens: auto;
}
.listing-ct-item td,
.listing-ct-item th {
  max-width: calc(100vw - 18rem);
}
.listing-ct-body {
  /* 42 = (20px padding + 1px border) * 2 */
  max-width: calc(100vw - 42px);
}

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