.aaai-calendar-wrap {
	width: 100%;
	margin: 10px 0;
	padding: 1em 0;
}
h2.calendar-heading {
	color: white;
	display: grid;
	float: left;
	width: auto;
	font-weight: 700;
	padding-right: 1em;
}

.aaai-calendar-wrap select {
	display: inline-block;
	width: 200px;
}
.aaai-calendar {
	display: block;
	width: 100%;
	color: white;
	font-size: 16px;
	font-family: "Roboto",sans-serif;
	list-style-type: none;
	clear: left;
}
.entry-content ul.aaai-calendar > li {
	list-style-type: none;
}
li.calendar-row {
	width: 100%;
	padding: 1em;
	margin-left: 0;
	border-radius: 7px;

}
li.calendar-row:nth-child(even) { 
	  background: #001B37; 
	  }
li.calendar-row:nth-child(odd) { 
	  background: rgba(0, 57, 115, 0.4); 
	  }
  

li.calendar-row.calendar-header {
	font-family: "Rustica", sans-serif;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 700;
	background: linear-gradient(270deg, #003973 0%, #0A00C7 100%); 
	margin-top: 2em;
	padding: .8em 1em;
}
.calendar-event .event-title,
.calendar-event .event-step,
.calendar-event .display-date,
.calendar-event .event-link {
	display: block;
	float: left;
	padding: 2px 2px 0 0;
	margin: 0;
}
.calendar-event .event-title {
	font-weight: 800;
	width: 25%;
}
.calendar-event .event-step {
	width: 30%;
}
.calendar-event .display-date {
	width: 30%;
}
.calendar-event .event-link {
	width: 15%;
	font-weight: 700;
}
.calendar-event .event-link a {
	color: #FAB31E;
}
.calendar-event .event-link a::after {
	 content:'\2192';
}
.calendar-event .event-link a:hover,
.calendar-event .event-link a:focus,
.calendar-event .event-link a::after:hover,
.calendar-event .event-link a::after:focus { 
	color: white;
}
.calendar-clear {
	clear: both;
	font-size: 1px;
}

:root {
  --select-border: white;
  --select-focus: blue;
  --select-arrow: var(--select-border);
}

.calendar-select {
	width: 280px;
	float: left;
}
.calendar-select select {
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  outline: none;
  color: white;

}
.calendar-select {
  min-width: 15ch;
  max-width: 30ch;
  border-style:  solid;
  border-width: 0 0 1px 0;
  border-color: var(--select-border);
  border-radius: 0;
  padding: 0.25em 0.5em;
  font-size: 16px;
  cursor: pointer;
  line-height: 1.1;
  background-color: #001B37;
  font-family: "Roboto", sans-serif;
  display: none; /* ordiinarily grid */
  grid-template-areas: "select";
  align-items: center;

}
.calendar-select::after {
  content: "";
  width: 0.8em;
  height: 0.5em;
  background-color: var(--select-arrow);
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
    justify-self: end;

}
.calendar-select select,
.calendar-select:after {
  grid-area: select;
}

