@charset "UTF-8";
:root {
  --palette-worse: rgb(255,0,89);
  --palette-better: rgb(0,202,169);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul, ol {
  list-style-type: none;
}

body {
  font-family: "Flama", "Lato", sans-serif;
  color: #333;
}

.column {
  padding-right: 16px;
  padding-left: 16px;
  margin: 0 auto;
}

.column.mn {
  max-width: 280px;
}

.column.sm {
  max-width: 480px;
}

.column.md {
  max-width: 640px;
}

.column.lg {
  max-width: 896px;
}

.dots-wrapper {
  padding: 0;
}

.dots {
  display: flex;
  flex-direction: column;
}

.dots .category {
  position: relative;
  height: 72px;
}

.dots .category {
  height: 112px;
}

.dots .category::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: block;
  height: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
  transform: translateY(-50%);
}

.dots .category .dot {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  background: white;
  box-shadow: 0 0 0 1px white;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.dot-label {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
  min-width: 48px;
  color: rgba(0, 0, 0, 0.5);
}

.dot:nth-child(even) .dot-label {
  top: initial;
  bottom: 14px;
}

.dot.winner .dot-label {
  color: rgba(0, 0, 0, 0.8);
}

.satisfaction-label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: 11px;
  display: none;
  /*   font-weight: bold; */
}

.scale {
  margin-bottom: 24px;
}

.ticks {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  padding: 16px 0;
}

.tick {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
}

.scale.end .tick {
  flex-direction: column-reverse;
}

.tick:first-child {
  align-items: flex-start;
}

.tick:last-child {
  align-items: flex-end;
}

.tick::after {
  content: '';
  margin: 4px 0;
  height: 4px;
  width: 1px;
  background: rgba(0, 0, 0, 0.5);
  display: block;
}

.labels {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 75%;
}

.desire .labels .worse,
.desire .labels .better {
  width: 128px;
}

.worse {
  color: var(--palette-worse);
}

.better {
  color: var(--palette-better);
  text-align: right;
}

.desire .dot[data-company="Gmail/Google Drive"] .dot-label {
  width: 70px;
}
.desire .dot[data-company="Moderninha/PagSeguro"] .dot-label {
  width: 72px;
}
