.applications-list .headline {
  display: block;
  color:var(--darkblue);
  padding-bottom: 10px;
  margin-bottom: 10px;
  transition: color .15s;
}
.applications-list a .headline:hover {
  color:var(--lightblue);
}
.applications-list .headline a:after {
  content: "▸";
  float: right;
  font-size: x-large;
  margin-top: -40px;
}
.applications-list .imageholder {
  width: 20px;
  height:100%;
  margin-right: 30px;
}
.applications-list .imageholder img {
  width:20px;
  height:20px;
}
.applications-list .textholder {
  width: calc(100% - 50px);
}
.applications-list .tile:nth-child(odd) {
  padding-right:30px;
}
.applications-list .tile:nth-child(even) {
  padding-left:30px;
}
.applications-list .vertical-yellow-bar {
  width: 3px;
  background-color: var(--tertiarycolor);
  height: 100%;
}
@media only screen and (max-width: 767px) {
.applications-list .tile:nth-child(odd),.applications-list .tile:nth-child(even){
  padding-left:inherit;
  padding-right:inherit;
}
}