
.eventsListing {
  width: 100%;
  margin: auto;
  margin-bottom: 3em;
  display: inline-flex;
}

.column {
  width: 50%;
  align-self: top;
  box-sizing: border-box;
  padding: 10px;
  display: inline-block;
  font-size: 15px;
}

.column:first-of-type {
  border-right: 1px solid #AAAAAA;
  padding-right: 35px;
}

.column:not(:first-of-type) {
  margin-left: 25px;
}

.title {
  font-size: 24px;
}

.listingContainer {
  /*position: relative;*/
  margin-top: 10px;
  text-align: left;
  /*padding-bottom: 45px;*/
}

.listingMore {
  /*position: absolute;*/
  bottom: 0;
}

.itemContainer {
  display: inline-flex;
  /*justify-content: space-between;*/
  align-items: center;
  width: 100%;
  border-top: 1px solid #AAA;
  padding: 15px 10px;
}

.itemTitle {
  text-align: left;
  margin-left: 10px;
  text-decoration: none;
}

.item {
  text-decoration: none;
}

.presenter {
  margin-top: 8px;
}

.itemDescription {
  font-size: 16px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}

.itemLink {
  flex: 0 0 75px;
  padding: 4px 8px;
  margin: 0;
  margin-left: 10px;
  text-align: center;
}

.moreLink {
  margin-top: 5px;
  text-decoration: none;
  text-align: right;
  flex: 0 0 100%;
}

/* DATE ICON */

.date {
  width: 35px;
  margin-right: 10px;
  margin-left: 10px;
  flex: 0 0 35px;
  display: flex;
  flex-direction: column;
  border: 1px solid #777777;
  border-radius: 5px;
  text-align: center;
  overflow: hidden; /*covers children bg colors*/
  -webkit-box-shadow: 1px 2px 2px 1px #333;
  box-shadow: 1px 2px 2px 1px #666666;
}

.date-wide {
  width: 70px;
  margin-right: 10px;
  margin-left: 10px;
  flex: 0 0 70px;
  display: flex;
  flex-direction: column;
  border: 1px solid #777777;
  border-radius: 5px;
  text-align: center;
  overflow: hidden; /*covers children bg colors*/
  -webkit-box-shadow: 1px 2px 2px 1px #333;
  box-shadow: 1px 2px 2px 1px #666666;
}

.on-demand {
  width: 70px;
  text-align: center;
  overflow: hidden; /*covers children bg colors*/
  font-size: 12px;
  font-weight: bold;
  padding: 0;
}

.day {
  font-size: 18px;
  border-bottom: 1px solid #333333;
  padding: 0 4px;
  background-color: #EFF;
}

.month {
  font-size: 9px;
  background-color: #2A4477;
  color: #FFF;
}

@media (max-width: 600px) {
  .itemDescription {
    display: flex;
    flex-direction: column;
  }

  .itemLink {
    margin-top: 10px;
    flex: 0;
    width: calc(100% - 15px);
  }

  .itemContainer {
    padding: 15px 0;
  }

  .eventsListing {
    width: 100%;
    margin: 0;
    display: block;
  }

  .date {
    margin-left: 0;
  }

  .column {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
  }

  .column:first-of-type {
    border: none;
    padding: 0;
  }

  .column:not(:first-of-type) {
    margin-left: 0;
  }
}


