#alist-shows {
  width: 100%;
}

/* .show {
  margin-bottom: 5px;
  padding: 5px 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: center;
}

.show:hover {
  cursor: pointer;
}

.show .alist {
  flex-grow: 1;
  width: 20%;
  padding: 0;
  margin: 0;
  text-align: left;
}

.alist.venue {
  font-weight: bold;
}

.alist.showinfo {
  font-style: italic;
  text-decoration: underline;
  text-align: right;
  max-width: 10%;
  opacity: .3;
}

.alist.book {
  max-width: 10%;
  text-align: center;
  background: rgba(0,0,0,.1);
  padding: 2px 5px;
  text-transform: uppercase;
  font-weight: bold;
}

.alist.book.soon {
  opacity: .5;
}

.show .moreinfo {
  display: none;
  width: calc(100% - 5px);
  padding: 3px 0 18px 5px;
}

.show .moreinfo p {
  margin: 0;
  padding: 0;
}

@media only screen and (max-width:768px) {

	.show {
		padding-top: 15px;
	}

	.alist.date, .alist.venue {
		flex-grow: 2;
		min-width: 50%;
	}

	.alist.city, .alist.showinfo {
		flex-grow: 0;
		width: auto;
		text-align: right;
	}

	.alist.venue {
		font-size: 14px;
	}

	.alist.showinfo {
		width: auto;
	}

	.alist.book {
		width: 100%;
		margin-top: 15px;
		font-size: 16px;
		padding: 6px 6px 3px;
	}

	[data-mobile-order="2"] {
		order: 2;
	}
	[data-mobile-order="1"] {
		order: 1;
	}

}


- - - */


.show {
	width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-around;
	    -ms-flex-pack: distribute;
	        justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.show:hover {
	cursor: pointer;
}
.show > * {
	padding-right: 10px;
}
.show p {
	margin: 0;
}

.alist.date, .alist.city, .alist.venue {
	flex-grow: 1;
	flex-shrink: 1;
	width: 20%;
}

.show .alist.city {
  font-weight: bold;
}

/* More information */

.show .alist.showinfo {
	font-style: italic;
	width: 85px;
  text-decoration: underline;
}

.show .moreinfo {
	margin: 6px 3px;
}

/* Ticket links */

.show .alist.book {
	text-align: center !important;
	width: auto;
	width: 150px;
  background: rgba(0,0,0,.15);
	text-transform: uppercase;
	font-weight: bold;
	padding: 2px 5px;
}
.show .alist.book.soon {
	cursor: default;
  opacity: .5;
}

.show .moreinfo {
	display: none;
	width: 100%;
}


@media only screen and (max-width:768px) {

	.show {
		padding: 15px 5px 0;
    width: calc(100% - 10px);
	}

	.show .alist.date, .show .alist.venue {
		flex-grow: 2;
		min-width: 50%;
	}

	.show .alist.city, .alist.show .alist.showinfo {
		flex-grow: 0;
		width: auto;
		text-align: right;
	}

	.show .alist.showinfo {
		width: auto;
	}

	.show .alist.book {
		width: 100%;
		margin-top: 15px;
		padding: 6px 6px 3px;
	}

	[data-mobile-order="2"] {
		order: 2;
	}
	[data-mobile-order="1"] {
		order: 1;
	}

}
