/* CSS Document */
.AllEventsContainer {
  margin-top: 100px;
  width: 100%;
}
.singleEventContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 100px;
}
.singleEventContainer p {
  padding-bottom: 3px;
}
.singleEventContainer .calendarSection {
  width: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.singleEventContainer .calendarSection p {
  padding-bottom: 0px;
}
.singleEventContainer .calendarSection p.bottom {
  font-weight: bold;
}
.singleEventContainer .infoSection {
  width: 55%;
}
.singleEventContainer .imageSection {
  width: 25%;
  min-height: 200px;
}
.singleEventContainer .imageSection img{
  max-height: 200px;
}
p.eventDate {
  font-size: 14px;
}
.eventMonthContainer {
  display:flex;
  flex-direction: column;
}

@media only screen and (max-width: 999px) {
  .singleEventContainer {
    /* flex-wrap: wrap; */
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .singleEventContainer .calendarSection {
    /* width:100%!important; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .singleEventContainer .infoSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
  }
  .singleEventContainer .imageSection {
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.top {
  color: #7eb6e6;
  font-size: 24px;
  font-weight: bold;
}

body div .previous.AllEventsContainer{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
body div .previous.AllEventsContainer .eventMonthContainer.ongoing{
  display:none;
}

body div .previous.AllEventsContainer  .eventMonthContainer{
  width:48%;
}
/* body div .previous.AllEventsContainer
body div .previous.AllEventsContainer
body div .previous.AllEventsContainer */
body div .previous.AllEventsContainer .infoSection p{
  display:none;
}
body div .previous.AllEventsContainer .infoSection p:nth-of-type(2){
  display:inherit;
  white-space: nowrap;

}
body div .previous.AllEventsContainer  .eventMonthContainer .singleEventContainer{
  display:flex;
  flex-direction: column;
}
body div .previous.AllEventsContainer  .eventMonthContainer .singleEventContainer .contentSection{
display:flex;
flex-wrap: wrap;
justify-content: space-between;
}
body div .previous.AllEventsContainer  .eventMonthContainer .singleEventContainer .contentSection .imageSection{
width:28%
}
body div .previous.AllEventsContainer  .eventMonthContainer .singleEventContainer .contentSection .calendarSection{
  width:65%;
align-items: flex-start;
}
body div .previous.AllEventsContainer  .eventMonthContainer .singleEventContainer .contentSection h5{

color:#04284A;
}
@media only screen and (max-width: 999px) {

  body div .previous.AllEventsContainer  .eventMonthContainer .singleEventContainer .contentSection{
  flex-direction: column;
  }
  body div .previous.AllEventsContainer  .eventMonthContainer .singleEventContainer .contentSection .imageSection{
width:100%
  }
  body div .previous.AllEventsContainer  .eventMonthContainer .singleEventContainer .contentSection .calendarSection{
    width:100%;
  align-items: flex-start;
  }

}
@media only screen and (max-width: 700px) {
  body div .previous.AllEventsContainer  .eventMonthContainer{
width:100%;
  }
}
