.document {
  color: #000000;
  display: block;
  padding: 25px 40px;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 100%;
}
.document.mobile {
  display: none;
}
.document.mobile .cols {
  display: inline-block;
  width: calc(100% - 15px);
}
.document.mobile i {
  display: inline-block;
  width: 15px;
}
.document:hover {
  color: #1ca6fe;
}
.document:hover:after {
  width: 100%;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.document:after,
.document:before {
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  top: auto;
  width: 100%;
  bottom: 0;
}
.document:after {
  background: #1ca6fe;
  width: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.document:before {
  background: #0f1b2a;
  opacity: .1;
}
.document span,
.document i {
  display: inline-block;
  vertical-align: middle;
}
.document .col {
  width: 50%;
}
.document .col.noRaces .innerCol {
  width: 100%;
  margin-left: 0;
}
.document .col:last-child span,
.document .col:last-child i {
  margin-left: 40px;
}
.document .col:last-child span:first-child,
.document .col:last-child i:first-child {
  margin-left: 0;
}
.document .name {
  font-weight: 600;
  /*font-style: italic;*/
}
.document .races {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  position: relative;
}
.document .innerCol {
  width: calc(50% - 40px);
  display: inline-block;
  vertical-align: middle;
  text-align: right;
}
.document i {
  color: #1ca6fe;
}
@media all and (max-width: 1024px) {
  .document {
    font-style: italic;
    display: none;
    padding: 20px 10px;
  }
  .document.mobile {
    display: block;
  }
  .document .col {
    display: block;
    width: 100%;
  }
  .document .col:last-child span {
    margin-left: 5px;
  }
  .document .name {
    font-weight: 600;
  }
  .document .races {
    color: #8F8F8F;
  }
}
@media all and (max-width: 767px) {
  .document {
    font-size: 12px;
    line-height: 16px;
  }
  .document .col:last-child {
    font-size: 10px;
  }
}
/*# sourceMappingURL=index_partial.css.map */