button.stringee-btn {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    -webkit-box-shadow: 0px 0px 3px 0px #0D9A46;
    box-shadow: 0px 0px 3px 0px #0D9A46;
    cursor: pointer;
    transition: scale 0.3s;
    margin: 5px 0px;
}
.stringee-button-ctrl .stringee-btn{
    margin-bottom: 0px !important;
}
button.stringee-btn.stringee-btn-l{
    background: #fff;
    border: 1px solid #0D9A46;
}
button.stringee-btn.stringee-btn-d{
    background: #0D9A46;
    border: 1px solid #fff;
}
button.stringee-btn.stringee-btn-img{
    background: #0D9A46;
    border: 1px solid #fff;
    padding: 0px !important;
}
button.stringee-btn.stringee-btn-img img{
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
}
button.stringee-btn:active{
    scale: 0.9;
    /* transform: scale(0.7, 0.3); */
}
.stringee-button-group {
    display: flex;
    flex-direction: column;
    width: 56px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2147483601;
}
.stringee-button-list{
    display: none;
    max-height: 80vh;
    overflow-y: auto;
    padding-left: 2px;
    padding-right: 2px;
}
#stringee-btn-hide{
    display: none;
}

/* width */
.stringee-button-list::-webkit-scrollbar {
    width: 2px;
}

/* Track */
.stringee-button-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.stringee-button-list::-webkit-scrollbar-thumb {
    background: #c5cddd;
}

/* Handle on hover */
.stringee-button-list::-webkit-scrollbar-thumb:hover {
    background: #c5cddd;
}
.stringee-btn.stringee-btn-d img{
    position: absolute;
    top: 15px;
    left: 15px;
}
.stringee-btn.stringee-btn-d{
    position: relative;
}
.stringee-btn.stringee-btn-d.active::before{
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: #00000040;
}