.support-container {
    position: fixed;
    bottom: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    width: fit-content;
}
html[dir='ltr']  .support-container{
    left: 40px;
}
html[dir='rtl'] .support-container{
    right: 40px;
}
.support-btn, .support-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 10px;
    font-size: 22px;
}

.support-option {
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.support-option.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
}
.support-option.btn-info {
    background-color: #0084ff;
    border-color: #0084ff;
    color: white
}
.support-option.btn-success {
    background-color: #25d366;
    border-color: #25d366;
    color: white
}
.support-option.btn-danger {
    background-color: #b92b27;
    border-color: #b92b27;
    color: white
}