/* line 3, style.scss */
.publication-list {
  list-style-type: none;
  margin: 0 !important;
  padding-left: 0px !important;
  display: flex;
  flex-wrap: wrap;
  column-gap: 50px;
}
/* line 10, style.scss */
.publication-list a {
  text-decoration: none !important;
}
/* line 13, style.scss */
.publication-list li {
  width: 100%;
  max-width: 280px;
}
/* line 17, style.scss */
.publication-list li:hover .publication-desc hr {
  width: 40%;
}

/* line 22, style.scss */
.publication-desc {
  font-size: 14px;
}
/* line 24, style.scss */
.publication-desc h3 {
  font-size: 15px;
  color: #003e7e;
  margin-top: 15px;
}
/* line 29, style.scss */
.publication-desc hr {
  display: block;
  border: none;
  outline: none;
  height: 1px;
  color: #003e7e;
  background: #003e7e;
  margin-left: 0;
  margin-bottom: 1em;
  width: 20%;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
/* line 45, style.scss */
.publication-desc .excerpt {
  margin-bottom: 1em;
}
/* line 48, style.scss */
.publication-desc .btn {
  display: inline-block;
  position: relative;
  padding: 10px 25px;
  background-color: #fff;
  color: #003e7e;
  border: solid 1px #003e7e;
  text-decoration: none;
  font-size: 0.9em;
  text-align: center;
  text-indent: 15px;
  transition: all 400ms;
}
/* line 60, style.scss */
.publication-desc .btn:hover {
  background-color: #003e7e;
  color: white;
}
/* line 63, style.scss */
.publication-desc .btn:hover:before {
  border-color: #fff;
}
/* line 66, style.scss */
.publication-desc .btn:hover:after {
  border-top-color: #fff;
  animation-play-state: running;
}
/* line 71, style.scss */
.publication-desc .btn:before, .publication-desc .btn:after {
  content: ' ';
  display: block;
  position: absolute;
  left: 15px;
  top: 52%;
  width: 12px;
  height: 4px;
  border-style: solid;
  border-width: 0 2px 2px;
}
/* line 82, style.scss */
.publication-desc .btn:after {
  width: 0;
  height: 0;
  margin-left: 2px;
  margin-top: -7px;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: transparent;
  border-top-color: inherit;
  animation: downloadArrow 2s linear infinite;
  animation-play-state: paused;
}

@keyframes downloadArrow {
  /* 0% and 0.001% keyframes used as a hackish way of having the button frozen on a nice looking frame by default */
  0% {
    margin-top: -7px;
    opacity: 1;
  }
  0.001% {
    margin-top: -15px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    margin-top: 0;
    opacity: 0;
  }
}
/* line 123, style.scss */
.publication-thumb a {
  display: block;
}
/* line 126, style.scss */
.publication-thumb img {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 479px) {
  /* line 132, style.scss */
  .publication-list {
    flex-direction: column;
    column-gap: 0;
    row-gap: 40px;
    align-items: center;
    justify-content: center;
  }
}
