@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw); }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

@keyframes marquee {
  0% {
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw); }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.content__attachments {
  clear: both; }

.content__attachments__list {
  margin: 0;
  padding: 0;
  list-style: none; }
  .content__attachments__list li {
    margin-bottom: 2em; }
    .content__attachments__list li:last-child {
      margin-bottom: 0; }

.content__attachments__list__item {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden; }
  .content__attachments__list__item:after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: -webkit-linear-gradient(0deg, #5ADED5, #1AA89E);
    background: -webkit-gradient(linear, left top, right top, from(#5ADED5), to(#1AA89E));
    background: -webkit-linear-gradient(left, #5ADED5, #1AA89E);
    background: -o-linear-gradient(left, #5ADED5, #1AA89E);
    background: linear-gradient(90deg, #5ADED5, #1AA89E); }

.content__attachments__list__item__link {
  position: relative;
  background: #155078;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 0 1em 0 2em;
  z-index: 2;
  -webkit-transition: background .3s ease;
  -o-transition: background .3s ease;
  transition: background .3s ease; }
  .content__attachments__list__item__link:hover {
    background: #BC5B1A; }
    .content__attachments__list__item__link:hover .content__attachments__list__item__btn {
      -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
      transform: rotate(-90deg); }

.content__attachments__list__item__title {
  overflow: hidden;
  color: #fff; }

.content__attachments__list__item__btn {
  position: relative;
  width: 4.125em;
  height: 4.125em;
  border-radius: 50%;
  background: #fff;
  color: #BC5B1A;
  margin: 10px 0;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  -o-transition: transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease; }

.content__attachments__list__item__icon {
  width: 1.875em;
  color: #BC5B1A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%; }
