.navigation_container {
  position: fixed;
  bottom: 32px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 70px;

}
.navigation_list {
  display: flex;
  width: 100%;
  border-radius: 36px;
  background: #FFF;
  box-shadow: 0 1px 4.9px 0 rgba(143, 147, 151, 0.21), 0 1px 12px 0 rgba(143, 147, 151, 0.16);
}
.navigation_item {
  flex-grow: 1;
  display: flex;
  height: 56px;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  color: #404a51;
  padding: 0 15px;
  cursor: pointer;
  border-radius: 86px;
}
.navigation_item,
.navigation_item:hover {
  text-decoration: none;
}
.navigation_item:hover {
  position: relative;
  z-index: 1;
  background: rgba(255, 216, 57, 0.20);
}

.navigation_item.active {
  background: #FFD839;
}

/*mobile*/
@media (max-width: 767px) {
  .navigation_container {
    padding: 0 60px 0 20px;
  }
  .navigation_container .container {
    padding: 0;
  }
  .navigation_list {
    overflow: auto;
    padding: 0 20px;
    max-width: 100%;
  }
  .navigation_item {
    white-space: nowrap;
    padding: 0 20px;
    background: transparent;
    height: 40px;
    border-right: none !important;
  }
  .navigation_item:first-child {
    background: #fff;
  }
}
