.titleCirculationDataPlaceholder {
  padding-top: 10px;
  padding-bottom: 10px;
}

.circulation_loadingIndicator {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.dataTables_scrollHeadInner,
.dataTable {
  min-width: 100%;
}

.dataTable th {
  text-wrap: nowrap;
}

.dataTables_scroll .dataTable thead > tr > th.sorting {
  padding-right: 25px;
}

table.itemList {
    width: 100%;
    border-collapse: collapse;
    /*table-layout: fixed;*/
}

table.itemList th.sorttable_sorted:after {
    content: "\a0\f0dd";
    font-family: FontAwesome;
}

table.itemList th.sorttable_sorted_reverse:after {
    content: "\a0\f0de";
    font-family: FontAwesome;
}

table.itemList th:not(.sorttable_sorted):not(.sorttable_sorted_reverse):not(.sorttable_nosort):after {
    content: "\a0\f0dc";
    font-family: FontAwesome;
    opacity: 0.5;
}

.itemList th {
    cursor: pointer;
}

.itemList th, .itemList td, .itemList tr {
    border-collapse: collapse;
}

.itemList th, .itemList td {
    padding: 4px;
    overflow-wrap: break-word;
}

.itemList tr:nth-child(even) {
    background-color: rgb(239, 243, 245);
}

/* Floor plan spec design */
.itemListWrapper .floor-plan-toggler {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    background-image: url(../images/marker.png);
    background-size: contain;
    background-position: center;
    cursor: pointer;
}

.floor-plan {
    position: relative;
    min-height: 5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    clear: left;
}

.floor-plan .loading-indicator {
    display: none;
    position: absolute;
    top: 2rem;
    width: 100%;
    text-align: center;
}

.floor-plan.loading .loading-indicator {
    display: block;
}

.floor-plan .location-display {
    position: relative;
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}

.floor-plan.loading .location-display {
    opacity: 0;
}

.floor-plan .location-display img {
    width: 100%;
    height: auto;
}

.floor-plan .item-location {
    position: absolute;
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
}

caption.no_items_to_display {
    padding: 4px;
    margin-bottom: 0;
}

#loginPopup {

    width: 205px;
    height: auto;
    background-color: #fefefe;
    z-index: 1001;
    padding: 10px 20px;
    border: 1px solid #CCC;
    border-radius: 8px;

}

.orange_button {
    text-align: center;
    color: #fff;
    cursor: pointer;
    background-color: #f90;
    white-space: nowrap;
    border-radius: 7px;
    display: inline-block;
    padding: 0 5px;
}

div#content .item-table-paginator ul {
    z-index: 10;
}

.item-table-paginator ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

.item-table-paginator ul li {
    cursor: pointer;
    padding: 0 5px;
}

.item-table-paginator ul li i:hover,
.item-table-paginator ul li:hover {
    font-weight: bold;
}

.item-table-paginator ul li.active-page {
    font-weight: bold;
}

.item-table-paginator ul li.unknown-last-page {
    cursor: default;
}

.item-table-paginator ul li.unknown-last-page:hover {
    font-weight: normal;
}

.item-table-paginator-wrapper-bottom .item-table-paginator ul {
    padding-top: 10px;
}

.circData .circulation_loadingIndicator-wrapper {
    top: 100px;
    position: relative;
}

.embedded-floor-plan {
  height: 900px;
}

#results-list .embedded-floor-plan {
  height: 700px;
}

#offlineRecordSnackbar {
    visibility: hidden;
    min-width: 250px;
    transform: translateX(-50%);
    background-color: #faf5c0;
    border-color: #faebcc;
    color: #8a6d3b;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
}

#offlineRecordSnackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 5s;
    animation: fadein 0.5s, fadeout 0.5s 5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}
