           .get-feedback-survey {
                background: #161616;
                border: 1px solid #fff;
                border-bottom: none;
                position: fixed;
                bottom: 0;
                right: 226px;
                cursor: pointer;
                padding: 3px 12px;
                font-size: 14px;
                font-weight: bold;
                text-transform: uppercase;
                z-index: 9999999;
            }

            .get-feedback-survey:hover .get-feedback-text {
                text-decoration: underline;
            }

            .get-feedback-survey:focus {
                outline: 1px solid #58B3F3;
                outline-offset: 0;
            }

            .get-feedback-text {
                color: #fff;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .get-feedback-text > svg {
                margin-left: 6px;
            }

            .get-feedback-modal {
                background: #fff;
                box-shadow: 0 0 20px rgb(0 0 0 / 50%);
                width: 50vw;
                height: 60vh;
                margin: 0 auto;
                position: relative;
            }

            .get-feedback-modal-wrapper {
                width: 100vw;
                height: 100vh;
                display: flex;
                position: fixed;
                background: rgb(0 0 0 / 64%);
                content: '';
                left: 0;
                right: 0;
                top: 0;
                align-content: center;
                justify-content: center;
                align-items: center;
                z-index: 100000000;
            }

            .get-feedback-modal-wrapper button {
                line-height: 12px;
                padding: 8px;
                position: absolute;
                top: 16px;
                right: 16px;
                cursor: pointer;
                background: transparent;
                border: none;
                font-size: 24px;
                display: block;
                color: #333;
            }

            .get-feedback-modal iframe {
                display: block;
                height: 100%;
                width: 100%;
                border: none;
            }

            @media only screen and (max-width: 671px) {
                .get-feedback-modal {
                    width: 95vw;
                    height: 95vh;
                }
            }