.chat-block {
    position: fixed;
    bottom: 64px;
    right: 8px;
    z-index: 999999;
}

.chat-block__toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;;
    padding: 8px;
    border: none;
    border-radius: 120px 120px 0px 120px;
    background-color: rgba(20, 21, 23, 0.60);
    background-image: url(../img/footer/cryptocurrency-color_chat.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 52px 52px;
    backdrop-filter: blur(48px);
    cursor: pointer;
}

.chat-block__panel {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    min-width: 220px;
    background: #17191C;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s, transform .25s, visibility .25s;
}

.chat-block--open .chat-block__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-block__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.chat-block__link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.chat-block__link:hover {
    color: #E11D20;
    text-decoration: none;
}

.chat-block__link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 80px;
    background: rgba(255, 255, 255, 0.08);
    transition: background .3s;
}

.chat-block__link:hover .chat-block__link-icon {
    background: #E11D20;
}

.chat-block__link-icon img,
.chat-block__link-icon svg {
    width: 20px;
    height: 20px;
}
