#orderNew #page * {
  box-sizing: border-box;
}

#notifications, #bottom-notifications {
  max-width: 1200px;
  margin: 0px auto;
}

#notifications > * {
  margin-bottom: 20px;
}

#bottom-notifications > * {
  margin-top: 20px;
}

.basic-info, #membershipInfo {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 10px;
}

#membershipInfo {
  background: #004085;
  border: none;
  color: #2e73bb;
  font-size: 86%;
}

#orderNew #page .page-content-wrapper {
  display: grid;
  grid-template-columns: 5fr 2fr;
  grid-column-gap: 20px;
  max-width: 1200px;
  margin: 0px auto;
}

#orderNew #page .page-content-wrapper > * {
  width: 100%;
  background: white;
  padding: 10px;
  align-self: start;
}

#orderNew #page .page-content-wrapper h2 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.articles .top-block {
  display: grid;
  grid-template-columns: auto /*1fr*/;
  margin-bottom: -5px;
}

.articles .current-step-title {
  display: none;
}

.steps {
  justify-self: center;
  user-select: none;
}

.steps > * {
  height: 28px;
  position: relative;
  background: gray;
  display: inline-block;
  margin-right: 14px;
  padding: 5px;
  padding-left: 20px;
  color: white;
  cursor: pointer;
}
.steps > *:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 14px solid white;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}
.steps > *:before {
  content: "";
  position: absolute;
  right: -14px;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 14px solid gray;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

.steps > .active {
  background: #004085
}

.steps > .active:before {
  border-left: 14px solid #004085;
}

.steps > .done {
  background: green; 
}

.steps > .done:before {
  border-left: 14px solid green;
}


.articles .category {
  display: none;
}

.articles .category.active {
  display: block;
}

.articles .category .category-description {
  margin-top: 20px;
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
  padding: .75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: .25rem;
}

.ticket {
/*	padding: 10px;*/
	margin: 20px 0px;
	border-radius: 5px;
	border: 1px solid #2f862f;
}

.ticket .ticketBody .baseBody {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 6px 8px;
}

/* .ticket .topLeftBlock {
	width: 76%;
	float: left;
	margin-top: 10px;
  padding-left: 10px;
  margin-bottom: 5px;
} */

.ticket .ticketHeader {
	padding: 10px;
	background: #6eaf6e;
	color: #FFFFFF;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
  cursor: pointer;
}

.ticket .ticketHeader .info {
  font-size: 60%;
  vertical-align: 4px;
  text-align: center;
  padding: 4px;
}

.ticket .nameWrapper {
  margin: 0;
}

.ticket .nameWrapper .name {
  vertical-align: top;
}

.ticket .nameWrapper > span {
  min-width: 33%;
  display: inline-block;
}

.ticket.sold-out, .ticket.locked {
  border-color: #ccc;
}

.ticket.sold-out .ticketHeader, .ticket.locked .ticketHeader {
  background: #ccc;
}

.ticket.sold-out .ticketBody, .ticket.locked .ticketBody {
  opacity: 0.4;
}

.ticket .infoTable {
}

.ticket .infoTable td {
  padding: 0px 0px 5px 0px;
  padding: 0;
}

.ticket .infoTable td:first-child {
	width: 145px;
}

.ticket .infoTable .emoji {
  font-size: 10px;
  vertical-align: 1px;
}

.ticket .showDetails {
  cursor: pointer;
}

.ticket .ticketsLeftAndMaxWrapper {
  display: inline-block;
  float: right;
  font-size: 80%;
  font-weight: normal;
  padding: 2px 0;
}


.ticket .ticketsLeft {
	display: inline-block;
}

.ticket .maxTickets {
	display: inline-block;
}


.ticket .givesEntry {
  display: inline-block;
}

.ticket .haveSeatWrapper {
/*	display: inline-block;*/
}

.ticket .haveSeat {
	display: inline-block;
}

.ticket .locked {
	width: auto;
  margin: 1%;
  margin-bottom: 0;
}

.ticket .priceWrapper {
/*	display: inline-block;*/
}

.ticket .price {
	display: inline-block;
  clear: both;
  text-align: right;
  margin: 0 0 10px;
  padding: 0;
  font-size: 150%;
  float: left;
}

/* .ticket .topRightBlock {
	width: 21%;
	float: right;
  padding-right: 10px;
	margin-top: 10px;
} */

.ticket .topRightBlock > div {
	display: inline-block;
	float: right;
}

.ticket .topRightBlock .amountToBuyDisplay {
		padding: 3px 12px 0px;
		border: 1px solid #CACACA;
		font-size: 23px;
		font-weight: bolder;
    margin-bottom: 5px;
  float: left;
}

.ticket .topRightBlock .multiplier {
  display: inline-block;
  float: left;
  margin: 0 0 10px;
  padding: 0 15px;
  font-size: 150%;
  color: #999;
}

.ticket .topRightBlock .changeAmountButtons {
  margin-left: 10px;
  user-select: none;
}

.ticket .topRightBlock .changeAmountButtons > img {
	display: block;
	cursor: pointer;
}

.ticket .topRightBlock .changeAmountButtons > img:hover {
	filter: invert();
}

.ticket .topRightBlock .changeAmountButtons > img:first-child {
	margin-top: 3px;
}
.ticket .topRightBlock .changeAmountButtons > img:last-child {
	margin-top: 0px;
}

.ticket .description {
  border-top: 1px solid #ccc;
	padding: 10px 10px;
	font-size: 86%;
	color: #333333;
  background: #f1f1f1;
  /* display: none; */
}

.ticket .description.hidden {
  display: none;
}

.basket {
  display: grid;
  grid-row-gap: 20px;
  line-height: 1.6em;
}

.basket .items, .basket .total {
  display: grid;
  grid-template-columns: auto 42px 62px;
}

.basket .items .item-category {
  grid-column: span 3;
  background: #eee;
  color: #aaa;
  font-weight: bold;
  margin: 7px -10px;
  padding: 2px 10px;
  font-size: 70%;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.basket .items .item-category:first-child {
  margin-top: 0px;
}

.basket .items .amount, .basket .items .price, .basket .total .price {
  justify-self: end;
}

.basket .items .multiplier {
  color: #999;
  font-weight: bold;
}

.basket .total {
  border-top: 1px solid #ccc;
  color: #666;
  margin: 0 -10px;
  padding: 5px 10px;
}

.basket .bottom-line .next {
  display: grid;
  grid-template-columns: auto;
  align-items: end;
}

.basket .terms {
  font-size: 80%;
  color: #bbb;
  margin-top: 10px;
  text-align: center;
  line-height: 1.5em;
}

#modal.hidden {
  display: none;
}

#modal #modalOverlay {
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  position: fixed;
  top: 0px;
  left: 0px;
}

#modal #modalContent {
  display: block;
  z-index: 10001;
  position: fixed;
  top: 30%;
  background: #FFFFFF;
  border: 1px solid #000000;
  padding: 20px;
  width: 230px;
  left: 40%;
}