/*
  Colors
*/
/*
  Width
*/
/*
  Space
*/
/*
	Shadow
*/
.tabs {
  padding: 0;
  width: 100%;
}
.tabs .mobile-select {
  margin-bottom: 0;
}
.tabs__buttons {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin: 0 0 1rem;
}
.tabs__buttons.-desktop {
  border-bottom: 1px solid #e3dfdf;
}
.tabs__buttons.-left {
  margin-right: auto;
  max-width: 50%;
}
.tabs__buttons.-right {
  margin-left: auto;
  max-width: 50%;
}
.tabs__button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  width: 100%;
  color: #999999;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.5px;
  text-decoration: none;
  text-transform: capitalize;
  cursor: pointer;
  outline: none;
  border: none;
  background: transparent;
}
.tabs__button.-active {
  color: #474242;
}
.tabs__button.-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #9d0d22;
}
@media only screen and (max-width: 768px) {
  .tabs__buttons.-desktop {
    display: none;
  }
}
@media only screen and (min-width: 769px) {
  .tabs__buttons {
    margin: 0 0 2rem;
  }
  .tabs__buttons.-mobile {
    display: none;
  }
}