#Terms {
	max-height: 30vh;
	overflow-y: scroll;
	border: 2px solid #bbb;
	margin-bottom: 1rem;
	padding: 0.5rem;
	overflow-x: hidden;
	margin-right: 0.5rem;
	margin-left: 0.5rem;
}

.FormGroupLabel {
    color: #247B50 !important;
    display: block !important;
    font-size: 1.125rem !important;
    font-weight: bold !important;
    margin-bottom: 0.5rem !important;
}

.CouponRow {
	display: table;
}

.CouponValueContainer {
	display: table-cell;
	white-space: nowrap;
}

.CouponServicesContainer {
	display: table-cell;
	max-width: 99%;
	width: 99%;
}

.ServicesContainer {
	max-width: 66%;
	width: 66%;
}

#AddLocation {
	border-radius: 0;
	height: 2.35rem;
}

.Form .Consolidated input[type="text"] {
	width: calc(100% - 4rem);
}

#OfferList, #LocationList {
  list-style-type: none;
  counter-reset: elementcounter;
  padding-left: 0;
}

#OfferList li:before {
  content: "Offer " counter(elementcounter);
  counter-increment: elementcounter;
  font-weight: bold;
  font-size: 1.125rem;
}

#LocationList li:before {
  content: "Street Address " counter(elementcounter);
  counter-increment: elementcounter;
  font-weight: bold;
  font-size: 1.125rem;
}

#OfferList li:first-child, #LocationList > li{
	margin-bottom: 0.4rem;
}

@media screen and (max-width: 1200px) {

	.ServicesContainer {
		max-width: 100%;
		width: 100%;
		margin-top: 0.5rem;
	}
}