.header--container {
  align-items: center;
  background-color: rgb(20, 20, 20, .7);
  display: flex;
  height: 75px;
  justify-content: center;
  position: fixed;
  width: 100vw;
  z-index: 2;
}

.header--mobile-menu-container {
  align-items: center;
  display: flex;
  flex-flow: column;
  height: auto;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0px;
  top: 75px;
  transition: .5s;
  width: 175px;
  z-index: 2;
}

.header--mobile-menu-hamburger {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-flow: column;
  height: 75px;
  justify-content: center;
  margin-right: 15px;
  position: fixed;
  right: 0px;
  top: 0px;
  transition: .5s;
  width: 35px;
}

.header--mobile-menu-hamburger-slice {
  background-color: white;
  border-radius: 4px;
  height: 4px;
  margin-top: 4px;
  width: 35px;
}

.header--name {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: flex-start;
  width: 100%;
}

.header--option {
  align-items: center;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  display: flex;
  height: 75px;
  justify-content: center;
  margin-right: 25px;
  transition: .2s;
  width: auto;
}

.header--option:hover {
  border-bottom: 1px solid white;
  transition: .2s;
}

.header--option-container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: flex-end;
  width: 100%;
}

.header--options-container {
  height: 100%;
  width: 100%;
}

.header--mobile-menu-option {
  align-items: center;
  background-color: rgb(20, 20, 20, .5);
  cursor: pointer;
  display: flex;
  height: 50px;
  justify-content: center;
  padding: 15px;
  transition: .2s;
  width: 100%;
}

.header--mobile-menu-option:hover {
  transition: .2s;
}
