@import url("https://fonts.googleapis.com/css?family=Roboto:400,700");
@font-face {
  font-family: 'entities';
  src: url("../fonts/entities.ttf?szl2oe") format("truetype"), url("../fonts/entities.woff?szl2oe") format("woff"), url("../fonts/entities.svg?szl2oe#entities") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'entities' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-command:before {
  content: "\e900"; }

.icon-cmd:before {
  content: "\e900"; }

.icon-heart-o:before {
  content: "\e901"; }

.icon-heart:before {
  content: "\e902"; }

body {
  font-family: 'Roboto', sans-serif;
  color: #263238; }

h1 {
  text-align: center;
  padding: 50px 0; }

table {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #263238;
  border-radius: 0 0 5px 5px;
  border-collapse: collapse;
  margin-bottom: 2rem; }

thead th {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9); }

thead tr:last-of-type th, thead tr:last-of-type td {
  border-bottom: 2px solid #263238; }

tbody tr {
  transition: all .2s linear; }

tbody tr:nth-of-type(even) {
  background: rgba(0, 188, 212, 0.1); }

tbody tr:hover {
  background: rgba(0, 188, 212, 0.5);
  color: #00343b; }

tbody tr.like {
  background: rgba(236, 64, 122, 0.3); }

tfoot {
  background: #f1f1f1;
  text-align: right; }
  tfoot td {
    padding-right: 30px; }

th {
  padding: 15px; }

td {
  padding: 12px; }

.overlay-notification {
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  font-size: 3rem;
  transition: .3s ease-in-out all; }

.overlay-notification.visible {
  display: flex;
  opacity: 1; }

.columns {
  max-width: 1200px;
  display: flex;
  margin: 0 auto;
  padding-bottom: 25px;
  justify-content: center; }
  .columns button {
    border: 1px solid #263238;
    padding: 4px 10px;
    border-radius: 10px;
    margin: 0 5px;
    font-weight: bold;
    transition: .3s all ease-in-out;
    background: rgba(38, 50, 56, 0); }
    .columns button.active {
      background: #263238;
      color: #fff; }
