.rcf-calendar-wrapper{
	width: 100%;
	height: 75vh;
	background-color: #636363;
	padding: 10px;
	border-radius: .75rem;
}
.rcf-calendar{
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #fff;
}
.rcf-calendar-header{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 10%;
	border: solid #636363 2px;
	background-color: #e6e6e6;
	padding: 10px;
	display: flex;
	justify-content: space-between;
}
.rcf-calendar-body{
	position: absolute;
	left: 0;
	top: 10%;
	width: 100%;
	height: 80%;
	border: solid #636363 2px;
	background-color: #fff;
	padding: 10px;
}
.rcf-calendar-footer{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 10%;
	border: solid #636363 2px;
	background-color: #e6e6e6;
	padding: 10px;
	display: flex;
	justify-content: space-between;
}
#rcf-calendar-month-top{
	color: #595959;
}
.rcf-btn{
	color: #fff;
	background: #636363;
	border-color: #636363;
	display: inline-block;
	letter-spacing: 0px;
	border-radius: .25rem;
	transition: .5s;
}
.rcf-btn:hover{
	color: #000;
	background: #e6e6e6;
}
.rcf-row{
	display: flex;
	width: 100%;
	height: 16.67%;
}
.rcf-col{
	width: 14.29%;
	height: 100%;
}
.rcf-date{
	border: solid #636363 1px;
	padding: 10px;
	display: table-cell;
}
.rcf-calendar-day-label{
	float: left;
}
.rcf-calendar-day-number{
	color: red;
	float: right;
}
.rcf-event-wrapper{
	text-align: center;
	display: block;
	margin-top: 1.75rem;
}
.rcf-event-icon > i{
	color: #636363;
	transform: scale(2);
	position: relative;
	top: 0;
	transition: top ease 0.5s;
}
.rcf-event-wrapper:hover i{
	top: -10px;
	text-shadow: 2px 2px 15px #d4af37;
}
.rcf-list-group-item{
	display: flex;
	justify-content: space-between;
}
.rcf-list-group-item-date{
	text-align: center; 
	width: 10%;
	padding: 10px 15px 15px 10px; 
	background-color: #FF0000;
	max-height: 112px;
}
.rcf-list-group-item-date > small{
	color: #fff;
}
.rcf-list-group-item-date > h2{
	margin: 0 !important;
	color: #fff;
	font-weight: 700;
}
.rcf-list-group-item-details{
	width: 75%;
}
.rcf-list-group-item-details > h2,p{
	color: #000;
}
.rcf-badge{
	padding: 5px;
	border-radius: .25rem;
	min-width: 70px;
	text-align: center;
	margin-bottom: .5rem;
}
.rcf-badge-nascar{
	background-color: #0375B7;
}
.rcf-badge-indycar{
	background-color: #DC1834;
}
.rcf-badge-f1{
	background-color: #0C8C26;
}
.rcf-badge-nhra{
	background-color: #2C3540;
}
.rcf-badge-default{
	background-color: #e6e6e6;
}
.rcf-badge-inner{
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
}
.rcf-badge-inner-default{
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
}
.rcf-badge-inner-default > a:hover{
	text-decoration: underline;
}
.rcf-list-group-item-links{
	width: 10%;
}
.rcf-list-group-item-links > a:hover{
	text-decoration: underline;
}
@media only screen and (max-width: 809px){
	.rcf-calendar-day-number{font-size: 10px;}
	.rcf-date{padding: 2px !important;}
	.rcf-calendar-day-label{display: none;}
	.rcf-calendar-wrapper{height: 50vh !important;}
	.rcf-calendar-header > h3{font-size: 12px;}
	.rcf-calendar-body{top: 17%; height: 65%;}
	.rcf-calendar-header{height: 17%;}
	.rcf-calendar-footer{height: 18%;}
	.rcf-event-icon > i{transform: scale(.75); }
	.rcf-event-wrapper{margin-top: 0 !important; margin-bottom: 2.25rem !important;}
	.rcf-list-group-item{display: block;}
	.rcf-list-group-item-date{width: 50%;}
	.rcf-list-group-item-details{width: 100%;}
	.rcf-list-group-item-links{width: 100%;}
}