.menu-wrapper {
  display: inline-flex;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.menu-btn {
  padding: 8px 40px;
  border: none;
  text-decoration: none;
  background: transparent;
  /* font-size: 14px; */
  cursor: pointer;
  color: #333;
}

.menu-btn.active {
  background: #ef5350;
  color: #fff;
  border-radius: 8px;
}

.menu-btn:hover:not(.active) {
  background: #f5f5f5;
}

.btn-fade-red {
  background: #ef5350;
  color: #fff;
  /* font-weight: 600; */
}

.btn-fade-red:hover {
  background: #db3b38;
  color: #fff;
  /* font-weight: 600; */
}

@media (min-width: 768px) {
  .border-md-end {
    border-right: 1px solid #dee2e6;
  }
}