.social-sidebar-sticky {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10100;
}

.social-sidebar-sticky ul {
    list-style: none;
}

.social-sidebar-sticky li {
    margin-bottom: 2px;
    list-style: none;
    height: 48px;
    font-size: 16px;
    font-weight: normal;
    text-align: right;
    font-family: sans-serif;
}

.social-sidebar-sticky li svg {
    width: 24px;        
    height: 24px;
}

.social-sidebar-sticky li svg path {
    fill: #fff;
}

.social-sidebar-sticky li a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    gap: 10px;
    position: relative;
    align-items: center;
    justify-content: flex-start;            
    height: inherit;
    cursor: pointer;
    padding-right: 0px;
    transition: all 0.5s ease 0s;
}

.social-sidebar-sticky li:hover a {            
    padding-left: 24px;
}

.social-sidebar-sticky li > a > div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #ffcd00;
    color: #fff;
    transition: all 0.5s ease 0s;
}

.social-sidebar-sticky li:hover > a {
    background-color: #ffcd00;
    color: #fff;
}

.social-sidebar-sticky li label {
    opacity: 0;
    text-align: left;
    cursor: pointer;
    color: #fff;
    visibility: hidden;
    position: absolute;
    font-size: 0;
    left: 0;            
}

.social-sidebar-sticky li:hover label {
    opacity: 1;
    position: relative;
    font-size: 16px;
    visibility: visible;
	padding-right: 60px;
}
.social-sidebar-sticky li > a > div > img {
    object-fit: scale-down;
}
@media only screen and (max-width: 767px) {
  .social-sidebar-sticky li>a>div {
    width: 40px;
    height: 40px;
  }

  .social-sidebar-sticky li {
    height: 40px;
  }

  .social-sidebar-sticky img {
    max-width: 20px !important;
  }
}