#slideout-social-icons {
  position: fixed;
  z-index: 11111;
  right: 0;
  top: 25%;
  transform: translateY(-50%);
  width: 230px;
  height: auto;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
}

#slideout-social-icons .tray-handle {
  width: 25px;
  height: 100%;
  background: var(--theme-color1);
  cursor: pointer;
  position: absolute;
  left: -25px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  color: #fff;
}

#slideout-social-icons .tray-handle span {
  transform: rotate(90deg) translateY(-3px);
  font-size: 14px;
}

#slideout-social-icons .icons {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}

#slideout-social-icons .social-icon {
  margin: 5px 0;
  font-size: 20px;
  /* background-color: #cfcfcf; */
  color: var(--theme-color1);
  height: 40px;
  width: 40px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e19b04;
  border-color: var(--theme-color1) !important;
  border-radius: 100%;
}

#slideout-social-icons.closed {
  right: -230px; /* Adjust this value based on the tray width */
}

/* #slideout-social-icons .tray-handle::before {
  content: ">";
  color: #fff;
  font-size: 18px;
} */
