.banner-tag span {
  font-size: 14px;
  color: var(--clr-common-white);
  margin-right: 5px;
}
.banner-tag a {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  text-align: center;
  padding: 0 13px;
  font-size: 14px;
  margin-left: 8px;
  background-color: transperent;
  color: var(--clr-common-white);
  border-radius: 2px;
  margin-bottom: 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.custom-dropdown .dropdown-menu {
  padding: 0.7rem 0rem;
  font-size: 0.875rem;
  line-height: 22px;
  color: #5c5776;
  border: none;
  box-shadow: 0 10px 30px 0 rgba(31, 45, 61, 0.1);
  border-radius: 0.5rem;
}

.custom-dropdown .dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-in;
}

.custom-dropdown .dropdown:hover > .dropdown-menu {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}

.custom-dropdown .dropdown-submenu:hover > .dropdown-menu {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}

@media (min-width: 990px) {
  .custom-dropdown .dropright-lg {
    position: relative;
  }
  .custom-dropdown .dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-right: 0.125rem;
  }
}

.custom-dropdown .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: ">";
  border: none;
  float: right;
}

.custom-dropdown .avatar-md {
  width: 56px;
  height: 56px;
}

.custom-dropdown .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-dropdown .avatar {
  position: relative;
  display: inline-block;
  width: 3rem;
  height: 3rem;
  font-size: 1rem;
}

.custom-dropdown .avatar-online:before {
  background-color: green;
}

.custom-dropdown .avatar-indicators:before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 5%;
  width: 30%;
  height: 30%;
  border-radius: 50%;
  border: 2px solid #fff;
  display: table;
}

/* Container styles */
.share {
  position: relative !important; /* Position relative for absolute positioning of icons */
  display: flex !important; /* Use flex to align items horizontally */
  align-items: center !important; /* Vertically center the items */
}

/* Main share button */
.share .share-btn {
  background-color: #333 !important;
  color: #fff !important;
  font-weight: bold !important;
  padding: 10px 15px !important; /* Adjusted padding for better alignment */
  font-size: 16px !important;
  border: none !important;
  border-radius: 30px !important; /* Rounded corners for the button */
  cursor: pointer !important;
  transition: background-color 0.3s !important;
  z-index: 1 !important; /* Ensure button is above the icons */
}

/* No hover effect for share button */
.share .share-btn:hover {
  background-color: #333 !important; /* No change on hover */
}

/* Social icon container */
.share .social-icons {
  display: none !important; /* Initially hidden */
  position: absolute !important; /* Position absolute */
  top: 50% !important; /* Center icons vertically relative to the button */
  left: 100% !important; /* Position to the right of the button */
  transform: translateY(-50%) !important; /* Adjust vertical alignment */
  justify-content: center !important; /* Center the icons */
  margin-left: 10px !important; /* Space between the button and icons */
  flex-direction: row !important; /* Align icons in a row */
}

/* Show icons on click */
.share.active .social-icons {
  display: flex !important;
}

/* Social icon links */
.share .social-icons a {
  background-color: #eee !important;
  color: #333 !important;
  width: 30px !important; /* Smaller icon size */
  height: 30px !important; /* Smaller icon size */
  border-radius: 50% !important; /* Circular icons */
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 5px !important; /* Horizontal spacing between icons */
  font-size: 16px !important; /* Smaller icon font size */
  transition: background-color 0.3s color 0.3s !important;
  text-decoration: none !important;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1) !important;
}

.share .social-icons a.twitter:hover {
  background-color: #1da1f2 !important;
  color: #fff !important;
}

.share .social-icons a.facebook:hover {
  background-color: #3b5998 !important;
  color: #fff !important;
}

.share .social-icons a.linkedin:hover {
  background-color: #0077b5 !important;
  color: #fff !important;
}

.share .social-icons a.email:hover {
  background-color: #d44638 !important;
  color: #fff !important;
}

.custom-icon {
  min-width: 50px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: rgba(0, 128, 0, 0.1);
  border-radius: 50%;
  transition: all 0.5s;
}
.custom-icon:hover {
  transform: scale(0.9);
  background-color: rgba(0, 128, 0, 0.25);
}
.icon-wrapper:hover .custom-icon {
  background-color: rgba(0, 128, 0, 0.25);
}
.icon-text {
  font-weight: bold;
  color: #6c757d; /* muted text color */
  max-width: 154px;
  line-height: 1.2;
}
.custom-red {
  background-color: rgba(255, 0, 0, 0.1);
}
.custom-red:hover {
  background-color: rgba(255, 0, 0, 0.25);
}
.custom-purple {
  background-color: rgba(128, 0, 128, 0.1);
}
.custom-purple:hover {
  background-color: rgba(128, 0, 128, 0.25);
}


.hidden-div {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}
.visible-div {
    display: block;
    opacity: 1;
}

