.title_link_container {
  width: 500px;
  max-width: 500px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.title_link {
  width: 110px;
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #000000;
  padding: 10px 20px;
  margin-right: 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease-out;
}

.title_link:hover {
  background: #ebe6df;
  font-weight: 600;
}

.title_link_selected {
  color: #fff;
  background: #000000;
  font-weight: 600;
  cursor: default;
}

.title_link_selected:hover {
  color: #fff;
  background: #000000;
  font-weight: 600;
  cursor: default;
}

.title_link:last-child {
  margin-right: 0;
}

@media screen and (max-width: 820px) {
  .title_link_container {
    width: 100%;
    white-space: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin: auto;
  }

  .title_link {
    width: 90px;
    padding: 10px;
  }
}

@media screen and (max-width: 320px) {
  .title_link_container {
    justify-content: flex-start;
    overflow-x: scroll;
  }
}
