body {
  font-family: 'Dosis', sans-serif;
}

.catalog {
  display: flex;
  border-top: 1px solid rgb(219, 219, 219);
}

.catalog h2 {
  display: none;
}

.manufacturer-logo {
  width: 160px;
  margin-right: 10px;
  padding: 1.125rem 0;
}

.manufacturer-logo img {
  max-width: 100%;
}

.selection {
  flex: 1 1 0px;
  padding: 1.125rem 0.75rem;
}

.selection--wrists {
  background-color: rgb(245, 245, 245);
}

.piece {
  background-color: #ffffff;
  border: 2px solid #e7e7e7;
  /*border-left: 8px solid #24a82d;*/
  padding: 1em;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: 0.25s ease background-color;
  position: relative;
}

.piece:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  background-color: #24a82d;
  transition: width 0.3s ease-in-out, background-color 0.2s ease;
}

.piece.deactive {
  opacity: 0.5;
  /*border-left: 8px solid #cccccc;*/
  cursor: not-allowed;
}

.piece.deactive:after {
  background-color: #cccccc;
}

.piece:hover {
  background-color: #fbfbfb;
}

/*.piece:hover:after {
  width: 10px;
}*/

.piece.selected {
  /*background-color: #24a82d;*/
/*  color: #ffffff;*/
}

.piece.selected:after {
  width: 100%;
  background-color: #24a82d;
}

.piece.selected:hover:after {
  background-color: #158f1d; 
}

.piece__content {
  position: relative;
  z-index: 1;
}

.piece span {
  color: #767d8d;
  font-family: 'Rubik', sans-serif;
  text-transform: uppercase;
  font-size: 10.5px;
  letter-spacing: 0.25px;
  transition: color 0.25s ease;
}

.piece.selected span {
  color: #ffffff;
}

.piece h4 {
  margin-bottom: 0;
  color: #1b1e25;
  font-weight: 300;
  font-size: 18px;
  margin-top: 5px;
  transition: color 0.25s ease;
}

.piece.selected h4 {
  color: #ffffff;
}