@-moz-keyframes expand {
  0% {
    -moz-transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(180deg);
  }
}

@-webkit-keyframes expand {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(180deg);
  }
}

@keyframes expand {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@-moz-keyframes collapse {
  0% {
    -moz-transform: rotate(180deg);
  }

  100% {
    -moz-transform: rotate(0deg);
  }
}

@-webkit-keyframes collapse {
  0% {
    -webkit-transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
  }
}

@keyframes collapse {
  0% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

df-expandable-list {
  width: 100%;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

df-expandable-list>div {
  max-height: 68vh;
  overflow: auto;
}

df-expandable-list-item .item-container {
  outline: 0;
  overflow: hidden;
}

df-expandable-list-item .item-container.collapsed {
  min-height: 74px;
  max-height: 74px;
  transition: all 0.25s linear;
}

df-expandable-list-item .item-container.expanded {
  min-height: 128px;
  max-height: 128px;
  overflow-y: auto;
  transition: all 0.25s linear;
}

df-expandable-list-item .list-summary {
  flex: 1;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}

df-expandable-list-item:not(:last-of-type) {
  border-bottom: 1px solid #eee;
}

df-expandable-list-item .msg-header {
  font-size: 1.1em;
  width: 100%;
}

df-expandable-list-item .msg-body {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

df-expandable-list-item .msg-history-subject {
  font-weight: bold;
}

.campaignModal md-list {
  border: 1px solid #eee;
  min-height: 450px;
  max-height: 800px;
  overflow-x: hidden;
  overflow-y: scroll;
  position: relative;
}

df-expandable-list-item:nth-child(odd) {
  background-color: #fefefe;
}

df-expandable-list-item:nth-child(even) {
  background-color: #efefef;
}

df-expandable-list-item {
  padding: 10px 15px;
}

df-expandable-list-item .df-more-btn {
  background-color: transparent;
  margin: 0;
  padding: 0;
  min-width: 0;
  min-height: 0;
  display: flex;
}

df-expandable-list-item .df-more-btn md-icon {
  margin: 16px 16px 0 0;
  -webkit-animation: collapse 0.25s linear;
  -moz-animation: collapse 0.25s linear;
  animation: collapse 0.25s linear;
  animation-fill-mode: forwards;
}

df-expandable-list-item .df-more-btn.spun md-icon {
  -webkit-animation: expand 0.25s linear;
  -moz-animation: expand 0.25s linear;
  animation: expand 0.25s linear;
  animation-fill-mode: forwards;
}

df-expandable-list-item *::-webkit-scrollbar {
  width: 6px;
}

df-expandable-list-item .expand-active *::-webkit-scrollbar-thumb {
  background-color: transparent;
}

df-expandable-list-item .expand-active *::-webkit-scrollbar-track {
  box-shadow: none;
}

df-expandable-list-item *::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
}

df-expandable-list-item *::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.3);
}

df-expandable-list-item .invisible {
  visibility: hidden;
  opacity: 0;
}

df-expandable-list-item .grey {
  color: #999;
}

df-expandable-list-item .info {
  color: #666;
  font-size: 9pt;
}