.lmr-tabs-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: transparent;
  overflow: hidden;
  position: relative;
  list-style: none;
  max-width: 483px;
  padding: 0 1px 0 6px;
  height: 56px;
  width: 100%;
}

.lmr-tabs-nav::before,
.lmr-tabs-nav::after {
  display: none;
}

.lmr-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  z-index: 3;
  height: 43px;
  margin-top: 2px;
  -webkit-transition: background-color 0.3s, color 0.3s;
  -moz-transition: background-color 0.3s, color 0.3s;
  -ms-transition: background-color 0.3s, color 0.3s;
  -o-transition: background-color 0.3s, color 0.3s;
}

.lmr-tab:last-child {
  border-right: none;
}

.lmr-tab.active {
  background-color: white;
  color: black;
}