body {
  margin: 0;
  font-family: 'Titillium Web', sans-serif;
}

div {
  padding: 1px;
}

.header {
  background-color: #f1f1f1;
  text-align: center;
  padding: 0;
  display: grid;
  grid-template-columns: 79% 19%;
  grid-template-rows: auto;
  grid-template-areas: 'header logo';
}

.headerTextContainer {
  grid-area: header;
}

.logoContainer {
  grid-area: logo;
}

.logoimg {
  margin: 0;
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.menuimg {
  vertical-align: bottom;
}

/* The navbar container */
.topnav {
  overflow: hidden;
  background-color: #333;
}

/* Navbar links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

th {
  background-color: burlywood;
}

a.lastlink {
  float: right;
  background-color: orange;
  color: black;
  border-radius: 10%;
}

/* Links - change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
  cursor: pointer;
}

.column {
  float: left;
  margin: 0px;
  padding: 0px;
}

/* Left column */
.column.left {
  width: 20%;
}

/* Middle column */
.column.middle {
  width: 20%;
}

/* Right column */
.column.right {
  width: 59%;
  margin-left: 1%;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other
@media screen and (max-width: 9000px) {
  .column.side,
  .column.middle {
    width: 100%;
  }
} */

.footer {
  background-color: #f1f1f1;
  text-align: center;
  padding: 10px;
}

img.stack {
  width: 99%;
}
img.icon {
  width: 15%;
}

img.icon:hover {
  border: orange solid 5px;
  border-radius: 50%;
}

img.icon.selected {
  border: orange solid 5px;
  border-radius: 50%;
}

#matches {
  width: 99%;
  /* border: #333 solid 3px; */
}

#itemsInStack {
  padding: 0px 10px;
  border: black solid 3px;
  border-radius: 25%;
}

.CS-Button {
  background-color: orange;
  border-radius: 5px;
  font-family: 'Titillium Web', sans-serif;
  border: none;
  font-weight: 600;
  font-size: medium;
  cursor: pointer;
  color: black;
}

.CS-Button-Nav {
  vertical-align: middle;
  background-color: orange;
  border-radius: 5px;
  font-family: 'Titillium Web', sans-serif;
  border: none;
  font-weight: 400;
  font-size: small;
  cursor: pointer;
  color: black;
  padding: 0.3rem;
}
.CS-Button-Highlight {
  background-color: #82aeff;
  border-radius: 5px;
  font-family: 'Titillium Web', sans-serif;
  border: none;
  font-weight: 600;
  font-size: medium;
  cursor: pointer;
  color: black;
}

#industryLabel {
  text-align: left;
  padding: 0px 10px;
}

.wrapper-header {
  margin: 1.5rem 0px;
}

.parameter-value {
  margin: 3px 0px 10px;
}

.slidecontainer {
  display: inline;
}

.parameter-value {
  display: inline;
  margin-left: 2rem;
}

#width-wrapper {
  margin-bottom: 2rem;
}

/* .slider {
  -webkit-appearance: none;
  background-color: red;
} */

/* range-progress */

input[type='range'] {
  -webkit-appearance: none;
  /* margin-right: 15px; */
  width: 65%;
  height: 0.7rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0.5rem;
  /* background-image: linear-gradient(#ff4500, #ff4500); */
  background-image: orange;
  background-color: orange;
  background-size: 70% 100%;
  background-repeat: no-repeat;
}

input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 1);
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background 0.3s ease-in-out;
}

input[type='range']::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: orange;
  border-radius: 0.75rem;
}

#table-nav-buttons-wrapper {
  display: grid;
  grid-auto-columns: auto;
  gap: 10px;
  /* grid-auto-rows: minmax(100px, auto); */
  grid-auto-rows: auto;
}

#backButton {
  grid-column: 1;
  grid-row: 1;
}

#saveToStack {
  grid-column: 2;
  grid-row: 1;
}

#seeStack {
  grid-column: 3;
  grid-row: 1;
}

.best-seller {
  background-color: #f69047;
  font-weight: bold;
  font-size: large;
  color: white;
}

.sticky-header {
  width: 100%;
  position: relative;
}

.sticky-header thead th {
  position: sticky;
  top: 0;
}
