.reap {
	box-sizing: border-box;
	width: auto; 
	/*background: rgb(93, 164, 35); */
	/*border: 1px solid rgb(57, 101, 22);*/ 
	/*box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.5) inset;*/ 
	color: white; 
	cursor: pointer; 
	display: inline-block; 
	font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; 
	font-size: 14px; 
	font-weight: bold; 
	line-height: 1; 
	margin: 0 0 10px 0; 
	outline: none; 
	padding: 10px 20px 11px; 
	position: relative; 
	text-align: center; 
	text-decoration: none !important; 
	-webkit-transition: background-color 0.15s ease-in-out;
	-moz-transition: background-color 0.15s ease-in-out; 
	-o-transition: background-color 0.15s ease-in-out; 
	transition: background-color 0.15s ease-in-out;
}

.reap:hover,
.reap.open{
	/*background: rgb(57, 101, 22);*/
}

.reap.bought{
	background: rgb(214, 0, 0);
}

.reap.bought:hover{
	background: rgba(154,13,13,1);
}

.reap span{
	font-size: 0.9em;
	background: rgba(0,0,0,0.3);
	border-radius: 99px;
	padding: 4px 6px;
	position: relative;
	top: 0em;
	/*box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2) inset, 0px -1px 0px rgba(255, 255, 255, 0.5) inset;*/
}

.reap.tiny{
	font-size: 10px;
	padding: 5px 10px 6px;
}

.reap.tiny span{
	background: transparent;
	font-size: 1em;
	position: static;
	padding: 0;
	color: rgba(255,255,255,0.8);	
}

.reap.tiny span:before{
	content: "(";
}

.reap.tiny span:after{
	content: ")";
}

.reap.small{
	font-size: 11px;
	padding: 7px 14px;
}

.reap.large{
	font-size: 19px;
	padding: 13px 30px;
}

.reap.secondary{
	background-color: #969696;
}

.reap.alternate{
	background-color: rgb(34, 34, 34);
}

.reap.success{
	background-color: rgb(93, 164, 35);
}

.reap.alert{
	background-color: rgb(214, 0, 0);
}

/*  */
.reap-overlay{
	position: fixed;
	z-index: 99998;
	width:  100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0);
	-webkit-transition: background-color 0.15s ease-in-out;
}

.reap-dialog{
	width: 480px;
	height: 300px;
	position: fixed;
	z-index: 99999;
	top: 0;
	left: 0;
	opacity: 0;
	/*
	-webkit-transition-property: opacity, top, left, height, width;
	-webkit-transition-duration: 0.25s, 0.25s;
	-webkit-transition-delay: 0.15s, 0.15s;
	-webkit-transition-timing-function: ease-in-out, ease-out;
	*/
}

.reap-dialog .reap-close{
	position: absolute;
	text-decoration: none;
	color: rgb(34, 34, 34);
	top: 10px;
	right: 10px;
	cursor: pointer;
}

.reap-dialog iframe{
	border: none;
	background: white;
	width: 100%;
	height: 100%;
}


