.userAccount {
  cursor: pointer;
  position: relative;
}
.userAccount:hover,
.userAccount:active {
  background-color: rgba(33, 33, 33, 0.1);
}
.userAccount__toggle {
  width: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3.5rem;
}
.userAccount__modal {
  position: absolute;
  right: 0;
  top: 3.5rem;
  background-color: #fff;
  color: #6c757d;
  width: 200px;
  padding: 1rem;
  box-shadow: 0 5px 10px rgba(33, 33, 33, 0.05);
  border-radius: 5px;
}
.userAccount__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.userAccount__toggle .btn {
  flex-basis: 50%;
}
