.right-panel {
  background: var(--zz-purple);
  position: fixed;
  width: 400px;
  display: flex;
  top: 0;
  bottom: 0;
  right: -400px;
  z-index: 1;
  padding: 150px 60px 0px 60px;
  transition: 0.3s transform;
  flex-flow: column;
}

.right-panel.show {
  transform: translate(-400px, 0px);
}

.yellow-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--zz-yellow);
  position: absolute;
  top: 82px;
  right: 29px;
}

.yellow-dot-button {
  border: 0;
  cursor: pointer;
  background: transparent;
}

.right-panel-list {
  list-style: none;
  display: flex;
  flex-flow: column;
  gap: 15px;
}

.right-panel-list-item {
  font-size: 30px;
}

.right-panel-list-item-link {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.login-register-item {
  margin-top: 54px;
  margin-bottom: 60px;
  display: flex;
  flex-flow: row;
  gap: 16px;
  align-items: center;
}

.login-register-text-wrapper {
  margin-top: 5px;
}

.login-register-text {
  color: white;
  font-size: 15px;
  font-family: ITCFranklinGothicLTPro-Dm, serif;
  text-decoration: none;
}
