.support_container {
    position: fixed;
    width: 4rem;
    height: 4rem;
    right: 1rem;
    bottom: 2rem;
    font-size: 1.7rem;
    z-index: var(--zi_support_window);
}

.support_btn {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white_color);
    background: var(--dark_color);
    border-radius: 100%;
    cursor: pointer;
    transition: var(--default_transition);
}
.support_btn:hover,
.support_btn.support_btn_active {
    background: var(--black_color);
    box-shadow: 0 0 30px rgba(101, 101, 101, 0.5);

}

.support_block {
    width: 30rem;
    height: 42rem;
    border-radius: var(--default_border_radius);
    box-shadow: var(--default_shadow);
    background-color: #fafafa;
    cursor: default;
}
    .support_block .support_block_body {
        position: relative;
        width: 100%;
        height: 100%;
        display: grid;
        grid-template-columns: minmax(1px, 1fr);
        grid-template-rows: 2.2rem max-content 1fr 4rem;
        padding: 1.5rem 1rem;
    }
        .support_block_body .support_logo_block {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: space-between;
        }
            .support_block_body .support_logo_block img {
                width: 2.2rem;
                max-height: 100%;
            }
            .support_block_body .support_logo_block .support_btn_panel {
                width: max-content;
                height: 100%;
                display: flex;
                flex-wrap: nowrap;
                gap: 0.2rem;
            }
                .support_block_body .support_logo_block .support_btn_panel .support_btn_panel_btn {
                    width: 2rem;
                    height: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size: 1.1rem;
                    color: var(--dark_color);
                    cursor: pointer;
                    border-radius: 100%;
                }
                .support_block_body .support_logo_block .support_btn_panel .support_btn_panel_btn:hover {
                    color: var(--black_color);
                    background-color: var(--hover_gray_color);
                }

        .support_block_body .support_header_block {
            width: 100%;
            margin-top: 1rem;
        }
            .support_block_body .support_header_block .support_header {
                color: var(--dark_color);
                font-size: 1.5rem;
                font-family: RobotoMedium;
            }
            .support_block_body .support_header_block .support_desc {
                color: var(--gray_color);
                font-size: 1rem;
                font-family: Roboto;
                margin-top: 0.3rem;
            }

        .support_block_body .support_success_box {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: var(--green_light_color);
        }
            .support_block_body .support_success_box .support_success_header {
                font-size: 1.3rem;
            }
            .support_block_body .support_success_box .support_success_subheader {
                font-size: 1rem;
            }
            .support_block_body .support_success_box .support_success_icon {
                font-size: 3rem;
            }

        .support_block_body .support_form_block {
            width: 100%;
            display: flex;
            justify-content: center;
            align-content: flex-start;
            flex-wrap: wrap;
            overflow-y: auto;
            padding: 0 0.2rem 2rem 0.2rem;
        }
            .support_block_body .support_form_block textarea {
                height: max-content;
                min-height: 7.2rem;
            }
            .support_block_body .support_form_block .support_error_box {
                width: 100%;
            }
                .support_block_body .support_form_block .support_error_box .support_error {
                    width: 100%;
                    color: var(--white_color);
                    background-color: var(--red_light_color);
                    border-radius: 0.4rem;
                    padding: 0.5rem 1rem;
                    margin-top: 0.7rem;
                }
                    .support_error .message {
                        width: 100%;
                        word-break: break-all;
                    }
                    .support_error .context_box {
                        width: 100%;
                        margin-top: 0.2rem;
                    }
                    .support_error .context_box .context_item {
                        width: 100%;
                        margin-top: 0.2rem;
                        word-break: break-word;
                    }
                    .support_error .context_box .context_item:before {
                        content: "-";
                        margin-right: 0.5rem;
                    }

        .support_block_body .support_footer_block {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 1rem;
        }
            .support_block_body .support_footer_block .btn {
                width: 100%;
                height: 100%;
                padding: 0 2rem;
            }

@media (max-width: 768px) {
    .support_container {
        width: 3.2rem;
        height: 3.2rem;
        font-size: 1.7rem;
    }

    .support_block {
        position: fixed;
        width: 100% !important;
        height: 100% !important;
        border-radius: 0;
        left: 0 !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
    }
}