table {
	width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
}

th {
    padding: 0 .60rem;
}

td {
	padding: .60rem;
	vertical-align: top;
}

table.countries {
    margin-top: 15px;
}

table.countries th {
    vertical-align: bottom;
}

td.years span a {
    transform: rotate(-45deg);
    display: inline-block;
    margin-left: -15px;
}

small {
    font-size: x-small;
}

.quipasse {
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    animation-duration: 0.1s;
    animation-name: rightleft;
    animation-iteration-count: infinite;
    animation-duration: 3s;
}

@keyframes rightleft {
  0% {
      transform: translate(450px, 0);
  }
  100% {
      transform: translate(0, 0);
  }
}
