/* Sidebar Bookmark Styles */
.side-bookmark {
  position: fixed;
  right: 0;
  top: 80%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bookmark-item {
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 15px;
  border-radius: 30px 0 0 30px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
  background-color: var(--primary-color);
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
  transform: translateX(100px);
}
.bookmark-item:hover {
  transform: translateX(0);
}
.bookmark-item i {
  font-size: 24px;
  min-width: 30px;
  text-align: center;
}

.bookmark-item span {
  margin-left: 15px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bookmark-item:hover span {
  opacity: 1;
}

/* Specific Colors */
/*.bookmark-online {*/
/*  background-color: #8e84f5;*/
/*}*/
/*.bookmark-contact {*/
/*  background-color: #5dade2;*/
/*}*/
/*.bookmark-email {*/
/*  background-color: #7bb34a;*/
/*}*/
/*.bookmark-whatsapp {*/
/*  background-color: #f4c143;*/
/*}*/
.bookmark-top {
  /*background-color: #e74c3c;*/
  display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .side-bookmark {
    gap: 5px;
  }
  .bookmark-item {
    padding: 10px;
    /*width: 50px;*/
  }
  /*.bookmark-item:hover {*/
  /*  width: 50px;*/
  /*}*/
  /*.bookmark-item span {*/
  /*  display: none;*/
  /*}*/
}
