.se-spinner {
  background: url('/wp-admin/images/loading.gif') no-repeat;
  background-size: 16px 16px;
  display: none;
  float: right;
  opacity: 0.7;
  filter: alpha(opacity=70);
  width: 16px;
  height: 16px;
  margin: 5px 5px 0;
}

/* used in loading geoQuery.ts results */
.se-loading {
  width: 2rem;
  height: 2rem;
  border: 5px solid var(--primary);
  border-bottom-color: var(--secondary);
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* span all columns if market-table is display: grid */
.market-table .no-results {
  grid-column: 1 / span all;
}

.facility-item.filtered {
  display: none;
}

#marketMapAlt, #marketMapAltClustered {
  width: 100%;
  height: 325px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #000;
}

#marketMap, #marketMapClustered {
  position: fixed;
  top: 100%;
  left: 0;
  width: 100vw;
  height: 0;
  width: 100%;
  height: 325px;
  background-color: #fff;
  z-index: 9999;
}

#marketMap.tall, #marketMapClustered.tall {
  height: 100vh;
  border-radius: 4px;
  border: 1px solid #000;
}