.content-row {
  height: 52.25px;

  display: flex;
  align-items: center;
}

.content-row td {
  display: inline-block;

  color: rgb(121, 121, 121);
  font-size: 0.9rem;
  font-weight: 500;
}

.content-row__title {
  text-align: left;
  flex: 5;
}

.content-row__toggle {
  text-align: center;
  flex: 1;
}

.content-row__price {
  text-align: center;
  flex: 1;
}

.content-row__category {
  text-align: center;
  flex: 2;
}

/* The switch - the box around the slider */
.toggle__switch {
  position: relative;
  display: inline-block;
  width: 42.35px;
  height: 24px;
}

/* Hide default HTML checkbox */
.toggle__switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.toggle__switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.toggle__switch-slider:before {
  position: absolute;
  content: '';
  height: 17.5px;
  width: 17.5px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .toggle__switch-slider {
  background-color: #08289a;
}

input:focus + .toggle__switch-slider {
  box-shadow: 0 0 1px #08289a;
}

input:checked + .toggle__switch-slider:before {
  -webkit-transform: translateX(17.75px);
  -ms-transform: translateX(17.75px);
  transform: translateX(17.75px);
}

/* Rounded sliders */
.toggle__switch-slider.toggle__switch-round {
  border-radius: 8px;
}

.toggle__switch-slider.toggle__switch-round:before {
  border-radius: 50%;
}
