.scroll-containers {
  position: fixed;
  width: 50px;
  height: 100px;
  right: 0;
  bottom: 0;
  z-index: 999;
}
.scroll-down-btn {
  background-color: #036;
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: 14px !important;
  line-height: 20px;
  border-radius: 24px 0px 0px 24px !important;
  padding: 11px;
  border: 3px solid #693;
  cursor: pointer;
  transition: opacity 0.3s ease;
  line-height: 20px;
  box-shadow: -2px 1px 22px 8px rgba(255, 255, 255, 0.75);
}
.scroll-down-btn i {
  font-size: 18px;
}
.scroll-to-top {
  font-size: 2rem;
  background: #036;
  width: 50px;
  text-align: center;
  border-radius: 20px 0 0 0;
  color: #fff;
  cursor: pointer;
  font-weight: 100;
  border-top: 2px solid;
  border-left: 2px solid;
  box-shadow: -2px 1px 22px 8px rgba(255, 255, 255, 0.75);
}

.help-advice-container {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
}
.help-advice-button {
  text-orientation: mixed;
  background: #ffffff;
  color: #4C2A73;
  padding: 15px 10px;
  border-radius: 10px 0 0 10px;
  border: 3px solid #ca4d00;
  border-right: none;
  cursor: pointer;
  font-family: sans-serif;
  font-weight: bold;
}
.inner-help-button-title {
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;

}
.help-advice-panel {
  width: 250px;
  opacity: 0;
  overflow: hidden;
  background: #fff;
  padding: 0;
  transition: max-width 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  white-space: normal;
  border: none;
  height: 350px;
}
.help-advice-button.active-panel .help-advice-panel {
  opacity: 1;

  padding: 20px;
}
.read-more-btn {
  padding: 8px 12px;
  margin-top: 15px;
  background: #4C2A73;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}
.read-more-btn:hover {
  background: #007b8f;
}


@media (max-width:992px)
{

  .help-advice-container {
    position: fixed;
    top: unset;
    right: unset;
    transform: unset;
    bottom: 0;
    left: 0;
  }

  .inner-help-button-title {
    writing-mode: horizontal-tb;
  }
  .help-advice-button {
    border-radius: 0 10px 0 0;
    border: 3px solid #ca4d00;
    border-right: 3px solid #ca4d00;
    border-bottom: none;
    border-left: none;
  }

}