.evtx-calendar {
	display: flex;
	flex-flow: row wrap;
	justify-content: left;
}
.evtx-calendar .evtx-calendar-card{
	width: 100%;
	margin-bottom: 1.5em;
	display: flex;
	flex-flow: row wrap;
	border: 1px solid #e2e2e2;
	background-color: #f5f5f5;
    color: #000;
	border-radius: 6px;	
	padding: .5rem;	
	margin: .25rem;
	transition: all 0.2s ease-in-out;
	cursor: pointer;
	position: relative;
}

.evtx-calendar-card:hover {
	background-color: #b3dff3; 
	transform: scale(1.02);
	border: 1px solid #999;
	box-shadow: 0 6px 16px rgba(255, 255, 255, 0.1), 0 2px 4px rgba(0, 0, 0, 0.3);
  }

@media (min-width: 767px) {
	.evtx-calendar .evtx-calendar-card {
		width: calc(50% - 0.75em);
	}
}

@media (min-width: 969px) {
	.evtx-calendar .evtx-calendar-card {
		width: calc(100% / 7 - 0.75em);
	}
}

.evtx-day-image {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}

.evtx-cal-title {
	margin-top: 0;
	font-size: 1rem;
	line-height: 1.3;
	font-weight: 600;
	color: #333333;
	text-align: center;
}
@media(min-width: 969px) and (max-width: 991px){
	.evtx-day-image {
		max-width: 50px;
		max-height: 50px;
		width: 40%;
		height: 30%;
	}
}

@media(min-width: 969px){
	.evtx-cal-title {
		width: 100%;
	}
}

.evtx-calendar-card .evtx-cal-companies {
	margin-top: auto;
}
.evtx-calendar-card .evtx-cal-companies img {
	width: 8em;
	height: 3em;
	object-fit: contain;
	float: left;
	object-position: center center;
}

@media (max-width: 890px) {
    .evtx-calendar-card {
        flex-direction: column;
    }
    .evtx-day-image {
        margin-left: auto;
    }
	.evtx-calendar-card .evtx-cal-companies img {
    	object-position: left center;
	}
}

.evtx-cal-date {
	padding: .2rem 1rem .2rem .1rem;
	/* background-color: $theme-color-primary;
	color: $theme-color-offwhite;
	font-family: $theme-font-headings; */
	font-weight: bold;
}

.evtx-cal-day {
	font-size: 2em;
	line-height: 1;
	margin-bottom: 0;
}
.evtx-cal-month {
	font-weight: 200;
	text-transform: uppercase;
	/* border-top: 1px solid rgba($theme-color-gray,0.35); */
	padding-top: 0.25em;
	text-align: center;
}   

.evtx-cal-info {
	padding: 0;
    position: relative;
    display: flex;
    flex-flow: column;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
}

.evtx-cal-info p,
.evtx-cal-info ul,
.evtx-cal-info ol {
	font-size: 0.95em;
	margin-bottom: 0.5em;
}

.evtx-calendar-card a.evtx-link {
	margin-right: auto;
	/* font-family: $theme-font-headings; */
	font-weight: bold;
	text-transform: uppercase;
	font-size: 0.95em;
}
.evtx-calendar-card a.evtx-link:after {
	content: ' \f08e';
	font-family: 'FontAwesome';
}


