#main.actus #calendar {
  background-color: #f29613;
  padding: 35px 10%;
  margin: 15px;
}

#main.actus #calendar .box {
}

#main.actus #calendar .header-calendar h2 {
  color: #fff;
  text-align: center;
  margin: 15px 0;
}

#main.actus #calendar .header-calendar .inner-header-calendar {
  align-items: center;
  display: flex;
  justify-content: space-around;
  margin: 15px 0;
}

#main.actus #calendar .header-calendar .inner-header-calendar .nav-header-calendar {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

#main.actus #calendar .header-calendar a.prev,
#main.actus #calendar .header-calendar a.next {
  color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  font-family: 'Poppins';
  font-size: 22px;
  font-weight: 500;
  margin: 0 10px;
  text-decoration: none;
  text-transform: uppercase;
}

#main.actus #calendar .header-calendar span.title {
  color: rgba(0, 0, 0, 0.4);
  font-family: 'Poppins';
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
}

/*******************************Calendar Content Cells*********************************/
#main.actus #calendar .box-content {
  background-color: #f29613;
}

#main.actus #calendar ul.label {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

#main.actus #calendar ul.label li {
  color: #000;
  font-family: 'Poppins';
  font-size: 17px;
  font-weight: 500;
  list-style-type: none;
  margin: 0px;
  padding: 15px 0;
  text-align: center;
  width: calc(100% / 7);
}

#main.actus #calendar ul.dates {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/** overall width = width+padding-right**/
#main.actus #calendar ul.dates li {
  color: #fff;
  font-family: 'Poppins';
  font-size: 17px;
  margin: 0px;
  padding: 15px 0;
  position: relative;
  list-style-type: none;
  opacity: 1;
  text-align: center;
  width: calc(100% / 7);
}

#main.actus #calendar ul.dates li.active span {
    color: #f29613;
    position: relative;
    z-index: 1;
}

#main.actus #calendar ul.dates li.active:after {
  background: #FFF;
  border-radius: 50%;
  content: "";
  width: 34px;
  height: 34px;
  display: block;
  position: absolute;
  left: calc(50% - 17px);
  top: calc(50% - 17px);
  z-index: 0;
}

/*******************************Calendar Reponse Événements *********************************/
#main.actus #reponse-calendar {
  margin: 45px 15px;
}

/******************************* Responsive *********************************/
@media (max-width: 960px) {
  #main.actus #calendar {
    margin: 25px 0;
  }
}

@media (max-width: 500px) {
  #main.actus #calendar {
    padding: 25px 5px;
  }
}
