.toggle-group {
  display: flex !important;
  align-items: stretch !important;
}

.up-btn {
  flex: 1 !important; /* each takes 50% width */
  margin: 0 !important;
  padding: 0.75rem 1rem !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  transition: background .2s ease-in-out !important;
  cursor: pointer !important;
  background: #fff !important;
  border: 1px solid #ccc !important;
  color: #596169 !important;
}

/* Left button */
.active.up-btn {
  border-right: none !important;
  border-radius: 5px 0 0 5px !important;
	 color: #596169 !important;
}

/* Right button */
.inactive.up-btn {
  border-left: none !important;
  border-radius: 0 5px 5px 0 !important;
}

/* Highlight active */
.currentActive.up-btn {
  background-color: #C22329 !important;
  color: #fff !important;
  font-weight: 600 !important;
}