.top_line_toggle {
  display: none;
}
.top_line_open svg {
  width: 39px;
  height: 27px;
}

.top_line {

}
.top_line_items {
  display: flex;
  align-items: center;
  justify-content: start;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.top_line_item {
  margin-right: 48px;
  padding: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 6%;
  text-transform: uppercase;
}
.top_line_item:last-child {
  margin-right: 0;
}
.top_line_item.selected {
  text-decoration: underline;
}
.top_line_item a {
  display: block;
  color: var(--color-primary);
  text-decoration: none;
  transition: all .3s ease-in-out;
}
.top_line_item a:hover {
  text-decoration: underline;
}

.top_line_header,
.top_line_footer {
  display: none;
}


@media (max-width: 993px) {
  .top_line_item {
    margin-right: 30px;
  }

}

@media (max-width: 769px) {
  .top_line_toggle {
    /*display: inline-flex;*/
    /*align-self: start;*/
    /*padding: 20px;*/
    /*text-align: right;*/

    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 12px;
    width: 40px;
    height: 40px;
    padding: 12px;
    border-radius: 16px;
    background-color: var(--grey-light);
    z-index: 1;
    cursor: pointer;
  }
  .top_line_open {

  }
  .top_line_close {

  }

  .top_line {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
    color: var(--color-primary);
    background: white;
    z-index: 999;
  }
  .top_line.open {
    display: flex;
  }
  .top_line_items {
    flex-direction: column;
    padding: 0;
  }
  .top_line_item {
    width: 100%;
    margin: 0;
    padding: 24px 12px;
    border-bottom: 1px solid var(--color-secondary);
  }

  .top_line_header {
    display: flex;
  }
  .top_line_footer {
    display: flex;
    margin-top: auto;
    padding: 16px;
  }
}