/*-----------------------------------
	HELP SIDEBAR
  -----------------------------------*/
.help-sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
  font-family: inherit;
}

.help-tab {
  background: #C9B7E7;
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  font-weight: 600;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.help-tab:hover {
  background: #B9A4E0;
}

.help-sidebar.open .help-tab {
  writing-mode: horizontal-tb;
  text-orientation: initial;
  border-radius: 10px 10px 0 0;
  padding: 10px 16px;
}

.help-content {
  background: #EEE7FA;
  width: 280px;
  padding: 20px;
  border-radius: 10px 0 0 10px;
  display: none;
  color: #333;
  transition: all 0.3s ease;
}

.help-content h3 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 700;
}

.help-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.help-content li {
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 500;
}

.help-content strong {
  font-weight: 600;
}

@media (max-width: 768px) {

  .help-tab {
    padding: 10px;
    font-size: 1.1rem;
  }
  .help-content h3 {
    font-size: 1.0rem;
  }

  .help-content p, 
  .help-content li {
    font-size: 0.9rem;
  }

}
  
