.help-section{
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 9999999;
}

.chat-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.chatrv-icon {
    width: 45px;
    height: 45px;
    margin-right: 4px;
    object-fit: cover;
}


.help-section__card__title {
    font-size: 14px;  
    margin: 0;
    color: #2c2c2c;  
}

.help-section__card {
    display: flex;
    position: absolute;
    right: 15px;
    bottom: 25px;
    background: white;
    border: 3px solid black;
    border-radius: 15px;
    gap: 10px;
    flex-direction: column;
    width: 40px;
    height: 40px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: -1;
}

.help-section__card.show {
    width: 150px;
    right: 50px;
    bottom: 70px;
    padding: 15px;
    height: auto;
    opacity: 1;
    visibility: visible;
}

.help-section__card__link{
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;

}

.help-section__card__link--email{
    color: black;
}

.help-section__card__icon{
    color: white;
    line-height: 100% !important;
    border-radius: 100%;
    padding: 10px;
}

.help-section__card__icon--whatsapp{
    background: #25d366;
}

.help-section__card__icon--email{
    background: var(--main);
}

.help-section__card__icon--telegram{
    background: #0088cc
}

.help-section__card__title{
    font-size: 1.2rem;
    font-weight: 600;
    color: black;
    margin: 0;
    padding: 0;
}

.help-section__button{
    cursor: pointer;
    border-radius: 100%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    z-index: 1;
    position: relative;
}

.help-section__button__icon{
    line-height: 25px !important;
    background-color: var(--main);
    color: black;
    padding: 10px;
    border-radius: 100%;
}
.help-section__text{
    padding: 0;
    margin: 0;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    filter: drop-shadow(2px 2px 2px black);
}

