:root {
    --feedback-widget-bg-color: #32373d;
    --feedback-widget-title-text-color: #fff;
    --feedback-widget-content-text-color: #e4e7ed;
    --feedback-widget-content-border-color: #464c53;
}

.FeedbackWidget {
    position: fixed;
    background-color: var(--feedback-widget-bg-color);;
    border-radius: 8px 8px 0 0;
    right: 10px;
    bottom: 0;
    transform: translateY(calc(100% - 48px));
    transition: transform 0.2s ease-out;
}

.FeedbackWidget.show {
    transform: translateY(0);
}

.FeedbackWidget.hide {
    transform: translateY(100%);
}

.FeedbackWidget_title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    height: 48px;
}

.FeedbackWidget_title-text {
    color: var(--feedback-widget-title-text-color);
    font-size: 14px;
    line-height: 16px;
    user-select: none;
}

.FeedbackWidget_title-icon {
    width: 16px;
    height: 16px;
}

.FeedbackWidget_title-icon svg {
    fill: var(--feedback-widget-title-text-color);
    display: block;
    width: 100%;
    height: 100%;
}

.FeedbackWidget_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px 16px;
    border-top: solid 1px var(--feedback-widget-content-border-color);
}

.FeedbackWidget_content-text {
    color: var(--feedback-widget-content-text-color);
    font-size: 12px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.FeedbackWidget_content .btn {
    font-size: 14px;
}

@media screen and (min-width: 992px) {
    .FeedbackWidget {
        min-width: 200px;
        right: 1.75rem;
    }
}
