JSFiddle - React, Tailwind, and code Playground

HTML

<div id="callback" title="Оставить отзыв"><div id="rotate">оставить&nbsp;отзыв</div></div>

<div id="questionary" class="popup_block">Некоторый текст здесь.</div>

CSS

#callback {
  position: fixed; 
  left: 0; 
  top: 30%;
  width: 35px;
  height: 250px;
  background-color: #c53727;
  cursor: pointer;
}
#callback #rotate {
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  font: 1.3em Arial,sans-serif;
  font-weight: normal;
  color: #fff;
  position: relative; 
  left: 0; 
  top: 70%;
}
#questionary {
  width: 590px;
  height: 250px;
  margin-top: 10%; 
  margin-left: 40px;
  border: 1px solid #c53727;
  display: none;
}

JavaScript

$('#callback').click(function() {
    $('#questionary').toggle();
});