

.event_container {
  display: flex;
  width: 100%;
  height: 200px;
  background: #FFF;
  border-radius: 2px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25), 0 8px 8px 0 rgba(0, 0, 0, 0.15);
  margin: 15px 0;
}
.event_container .event_bg {
  width: 35%;
  height: 100%;
  background: #333;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.event_container .event_info {
  width: 60%;
  height: 100%;
  padding: 10px 20px;
}
.event_container .event_info .event_title {
  display: flex;
  width: 100%;
  height: 50px;
  align-items: center;
  margin-bottom: -20px;
  margin-top: 5px;
}
.event_container .event_info .event_title h4 {
  font-size: 19px;
  overflow: hidden;
  height: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.event_container .event_info .event_desc {
  display: flex;
  width: 100%;
  height: calc(100% - 100px);
}
.event_container .event_info .event_desc p {
  font-size: 13px;
  font-weight: 500;
  color: #565861;
  overflow: hidden;
  line-height: 19px;
  text-overflow: ellipsis;
  
}
.event_container .event_info .event_footer {
  display: flex;
  width: 100%;
  height: 50px;
  align-items: center;
  justify-content: space-between;
}
.event_container .event_info .event_footer .event_date p {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}
.event_container .event_info .event_footer .event_more {
  display: flex;
  width: auto;
  height: 100%;
  align-items: center;
}
.event_container .event_info .event_footer .event_more a.btn_more {
  display: flex;
  width: auto;
  height: 40px;
  align-items: center;
  padding: 0 15px;
  text-decoration: none;
  color: #f05a1a;
  font-size: 16px;
  font-weight: 600;
  border-radius: 2px;
  will-change: background;
  transition: background .3s, color .2s ease-in;
}
.event_container .event_info .event_footer .event_more a.btn_more i.material-icons {
  font-size: 18px;
  font-weight: 500;
  padding: 0 2px;
}
.event_container .event_info .event_footer .event_more a.btn_more:hover {
  background: #5F5FFC;
  color: #FFF;
}


.date-ribbon {
	position: absolute;
	left: 2em;
	background: #f05a1a;
	
	padding: 0.4em 1em;
	padding-bottom: 0;

}





.date-ribbon h2 {
	font-weight: 500;
	font-size: 1.15em;
	letter-spacing: 0.07em;
    text-align: center;
    color: #fff !important;

}

.date-ribbon h1 {
	text-align: center;
    font-weight: bold;
	font-size: 2.45em;
    margin-top: -10px;
    margin-bottom: 5px;
    line-height: 1em;
    color: #fff !important;
}

.tag-local{
  padding: 2px 5px;
  background: #f05a1a;
  color: #fff !important;
}


.tribe-event-featured {
    background: None !important;
}

.event_container .event_info .event_footer .event_more a.btn_more:hover {
  background: None !important;
  color: #ff4c00;
  text-decoration: underline !important;

}

@media screen and (max-width: 750px) {
  .event_container .event_info .event_footer .event_date {
    display: none;
  }

  .event_container .event_info .event_footer .event_more a.btn_more{
    font-size: 14px;
  }

}


@media screen and (max-width: 575px) {
  .event_container .event_info .event_footer .event_date {
    display: block;
  }
  
  .event_container {
    width: 100%;
    height: 400px;
    background: #FFF;
    flex-direction: column;
  }
  .event_container .event_bg {
    width: 100%;
    height: 250px;
    min-height: 250px;
    border-top-right-radius: 3px;
    border-bottom-left-radius: 0;
  }
  .event_container .event_info {
    width: 100%;
    height: 155px;
  }
  .event_container .event_info .event_footer .event_date p {
    font-size: 12px;
    font-weight: 600;
    color: #333;
  }

  .event_container .event_info .event_desc p {
    font-size: 18px;
    height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }





}




