.sortable {
  border-collapse: collapse;
}
.sortable td {
  padding: 2px 6px;
  border-right: 1px solid grey;
}
.sortable td:last-child {
  border-right: none;
}
.sortable th {
  padding-bottom: 10px;
  cursor: pointer;
  padding-right: 25px;
  position: relative;
  white-space: nowrap;
}
.sortable th::after {
  margin-left: 8px;
  line-height: 0;
  content: "❮";
  color: transparent;
  transform: rotate(-90deg);
  display: inline-block;
}
.sortable th.desc::after,
.sortable th:hover::after {
  color: #676767;
  transform: rotate(-90deg);
}
.sortable th.asc::after,
.sortable th.asc:hover::after {
  color: #676767;
  transform: rotate(90deg);
}
.sortable th.nosort {
  cursor: default;
}
.sortable th.nosort::after {
  content: none;
}
.test_slides {
  position: relative;
  width: 640px;
  height: 358px;
  flex-direction: row;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
}
.team_widget .test_slides {
  width: 520px;
  height: 290px;
}
.test_slides div {
  width: 100%;
  height: 100%;
}
.test_slides button {
  position: absolute;
  z-index: 2;
  font-size: 30px;
  font-weight: bold;
  top: 40%;
  width: 30px;
  height: 30px;
  line-height: 20px;
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 2px 1px rgba(175, 175, 175, 0.85);
  -webkit-appearance: none;
  border-radius: 3px;
  text-align: left;
  border: 1px solid rgba(175, 175, 175, 0.85);
  color: #333;
  text-indent: 4px;
}
.test_slides button:hover {
  box-shadow: none;
}
.test_slides button.left {
  left: 10px;
}
.test_slides button.right {
  right: 10px;
}
.test_widget {
  padding: 15px;
  box-shadow: 0 0 2px 0 rgba(75, 75, 75, 0.5);
  border: 1px solid #333;
  border-radius: 2px;
  width: 680px;
}
.test_widget h2 {
  padding: 15px;
  margin: -15px -15px 10px -15px;
  border-bottom: 1px solid #333;
  box-shadow: 0 0 2px 1px rgba(75, 75, 75, 0.5);
}
.test_widget .questions {
  overflow: hidden;
}
.test_widget .questions .question {
  display: flex;
  align-content: stretch;
  flex-direction: column;
  padding: 8px;
}
.test_widget .questions .question .block {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.test_widget .questions .question .block .choice {
  flex: 0 0 48%;
}
.test_widget .questions .question input[type=text] {
  margin: 4px 0;
  widtH: 160px;
  padding: 4px;
}
.test_widget .questions .question .choice {
  margin: 10px 0;
  padding: 7px;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid #333;
  box-shadow: 0 0 2px 1px rgba(75, 75, 75, 0.5);
}
.test_widget .questions .question .choice:hover {
  box-shadow: none;
}
.test_widget .questions .question .choice.chosen {
  border: 1px solid #2d2;
  background-color: rgba(20, 244, 20, 0.35);
  box-shadow: none;
}
.test_widget .questions .question .choice.chosen.neg {
  border: 1px solid #d22;
  background-color: rgba(244, 20, 20, 0.35);
  box-shadow: none;
}
