﻿.electionsContainer ul li {
  font-size: 15px;
  padding: 5px;
}

.electionULHead {
  font-size: 17px;
  background: #fcfcfc;
  padding: 5px 10px;
  border-left: 12px solid #bb1a35;
}

.evDateBlock {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  justify-content: flex-start;
  box-sizing: border-box;
}

.mobWKD{
  display: none;
}

.evDateBlock .evDayDOW, .evDateBlock .schedEVTime {
  display: flex;
  flex-direction: column;
  width: 14.28%;
  /* box-sizing: inherit !important; */
  /* flex: 0 1 auto; */
}

.dateStat {
  font-size: 14px;
  padding: 0.3em;
}

.evDayDOW {
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1 0 auto;
}
.evTitleDOW {
  background: #efefef;
  width: 100%;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.evTitleDOW .long {
  display: block;
}

.evTitleDOW .short {
  display: none;
}

.evDayHeadDOW {
  letter-spacing: 1px;
  font-weight: bold;
  padding: 7px 0 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  background: #fcfcfc;
}

.evBodyDOW {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  flex: 0 0 content;
}

.schedEVTime {
  min-height: 5em;
  padding-bottom: 0.5em;
  border: 2px solid #f5f5f5;
  display: flex;
  /* width: 13.85% !important; */
  text-align: center;
  box-sizing: inherit;
}

.schedEVTime span{
  padding-left: 0.25em;
}

.schedEVTime .mnthDay {
  background: #fcfcfc;
  padding: 5px 0;
  width: 100%;
  /* text-align: center; */
  font-weight: bold;
}


.schedEVTime.placeholder {
  display: flex;
  /* flex: 1 0 auto; */
  background: #fcfcfc;
  /* min-height: 97px; */
}

.elCalBlock {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex: 0 1 auto;
  align-items: center;
  padding: 10px 5px;
}

.elCalBlock:nth-child(even) {
  background: #fcfcfc;
}

.elCalBlock .elIcon {
  font-size: 75px;
  color: #ddd;
}

.elCalBlock .elBod {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 1 auto;
  width: fit-content;
}

.elCalBlock ul {
  list-style: circle;
}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 991px) {
  .evTitleDOW .long {
    display: none;
  }

  .evTitleDOW .short {
    display: block;
  }
}

@media screen and (max-width: 498px) {
  .evDateBlock {
    flex-direction: column;
  }

  .evDayDOW {
    display: none !important;
  }

  .mobWKD{
    display: block;
  }

  .evDateBlock .evDayDOW,
  .evDateBlock .schedEVTime {
    width: 100%;
    align-items: center;
  }

  .elCalBlock .elIcon {
    font-size: 20px;
  }

  .electionsContainer ul li {
    width: 90%;
  }

  .schedEVTime.placeholder {
    display: none;
  }

}