.support-button {
    width: 48px;
    height: 48px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background: #FFFFFF;
    box-shadow: 0 4px 34px rgba(176, 176, 176, 0.28);
    border-radius: 8px;
    overflow: hidden;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .support-button {
        bottom: 80px;
    }
}

.support-button__toggle {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    position: relative;
    z-index: 1;
    will-change: width, height, flex-basis, transform;
}

.support-button__toggle:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
    border-radius: 2px;
}

.support-button__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
    transform-origin: center;
    pointer-events: none;
}

.support-button__icon.closed {
    visibility: hidden;
    opacity: 0;
    transform: scale(0.5);
}

.support-button__buttons {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    visibility: hidden;
    cursor: default;
}

.support-button__item {
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    white-space: nowrap;
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    .support-button,
    .support-button * {
        scroll-behavior: auto !important;
    }
}

.item_email {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;

    background: #F5F5F5;
    border-radius: 8px;

    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.02em;
    color: #1EA3E5;

    text-decoration: none;
    height: 42px;

}

.item_btn {

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    width: 42px;
    height: 42px;

    background: #F5F5F5;
    border-radius: 8px;

}

.support-button__icon.closed {

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 10px;

    width: 42px;
    height: 42px;

    background: #FFFFFF;

    border: 1px solid #E4E4E4;
    border-radius: 8px;


}
