/* font-family: 'Tungsten Book'; $$$*/
/* font-family: 'Sentinel Book'; $$$*/

.ws-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.ws-column { flex-direction: column; }
.ws-row { flex-direction: row; }
.ws-between { justify-content: space-between; }
.ws-btn:active {
  transition: .6s;
  transform: scale(.9);
}
.ws-hidden { display: none; }
.ws-full-width{ 
  width: auto;
  max-width: 1050px !important;
}

.ws-seeker-box {
  width: fit-content;
}


.ws-title {
  background-color: #d26028;
  color: white;
  text-align: center;
  padding: 10px 0;
  margin-top: 0;

  /* Alternative to Tungsten */
  font-family: 'Saira Extra Condensed', sans-serif;
  font-weight: 300;
  font-size: 47px;
}
.ws-and-ws {
  max-width: 1200px;
  margin: 0 auto;
}

/* Seeker-options */
.ws-seeker-options {
  width: 100%;
  margin-bottom: 20px;
  justify-content: space-around;
}
.ws-focus-style:focus {
  box-shadow: 0 0 5px lightblue;
  z-index: 5;
}
.ws-filteroptions, #wsFilterReset {
  background-color: #fff;
  width: 106px;
  height: 34px;
}
#seekerTextBox, .ws-filteroptions, #wsFilterReset {
  /* border: 1px solid #dfdfdf; */
  border: 1px solid #000;
  padding: 4px 8px;
  margin: 0 2px 4px 2px;
  font-size: 19px;
  font-family: "Tungsten-Book";
}
#seekerTextBox {
  margin-right: 0;
  width: 150px;
  padding: 3px 8px 2px 8px;
  text-transform: uppercase;
  margin-left: 0;
}
#seekerTextBox::placeholder {
  color: black;
}
#seekerBtn {
  height: 34px;
  width: 34px;
  /* background-color: #eeeeee; */
  /* border: 1px solid #dfdfdf; */
  border: 1px solid #000;
  border-left: none;
  padding: 7px;
  margin: 0 2px 4px 0;
}

#wsFilterReset {
  padding-top: 3px;
}

#wsSearchResults {
  color: #fff;
  background: #d26028;
}

.ws-quantity {
  width: 100%;
  text-align: right;
  color: #999999;
  margin: 10px 0;
}
.ws-quantity select {
  color: #999999;
}

/* Table of results */
.ws-table {
  width: 100%;
  overflow: auto;
}
.ws-table table {
  margin: 0 auto;
}
.ws-table tbody tr {
  border-bottom: 1px solid #dfdfdf;
}
.ws-table tbody tr:hover {
  background: #eeeeee;
}
.ws-table tbody tr:last-of-type {
  border-bottom: 2px solid #dfdfdf;
}
.ws-table table, .ws-table th, .ws-table td {
  border-collapse: collapse;
}
.ws-table th {
  color: #ba4f18;
  border-bottom: 2px solid #dfdfdf;
  padding: 8px;
  text-align: left;
}
.ws-table td {
  color: #999999;
  padding: 8px;
}


/* Pagination */
.ws-pagination {
  max-width: 987px;
  margin: 15px auto;
  color: #999999;
}
.ws-pagination p{
  width: fit-content;
  margin: 0;
  margin: 5px 0;
}
.ws-nav p{
  text-decoration: underline;
  padding: 5px;
  cursor: pointer;
}

.ws-current-page, .ws-nav p:hover {
  color: #ba4f18;
  text-decoration: none !important;      
}
.ws-locked {
  color: #dfdfdf;
  pointer-events: none;
  text-decoration: none !important;
}

@media (max-width: 640px) {
  .ws-seeker-options {
    justify-content: space-around;
  }
  #seekerTextBox {
    width: calc(70vw - 34px);
    margin-left: 2px;
  }
  .ws-filteroptions, #wsFilterReset {
    width: 70vw;
  }
}