.novo_main_city{
    display:  flex;
    gap: 10px;
    color: #337ab7;
    justify-content: center;
    padding: 20px 0;
}
.novo_title{
    font-size: 19px;
}

/* Стили для Fake Select */

.novo_category_nav{
    display: flex;
    gap: 20px;
    justify-content: center;
}

.fake-select {
  position: relative;
  display: inline-block;
  font-family: Arial, sans-serif;
}

.fake-select__toggle {
  background: #fff;
  border: 1px solid #ccc;
  padding: 8px 12px;
  cursor: pointer;
  width: 220px;
  text-align: left;
  color: #807e7e;
}


.fake-select__list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  background: #fff;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 10;
}

.fake-select.open .fake-select__list {
  display: block;
}

.fake-select__list li + li {
  border-top: 1px solid #eee;
}

.fake-select__list a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
}

.fake-select__list a:hover {
  background: #f5f5f5;
}

.bottom_category {
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin: 0 auto;
    padding: 20px 0;
}

.novo_category_links {
    padding: 2px 10px;
    border-radius: 10px;
    background: #e7afaf;
}
.novo_category_links a{
    color: black;
    font-size: 12px;

}





