div.bloc-date div.date {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 1;
}
div.bloc-date div.date span.icon {
  position: relative;
  width: 120px;
  height: 120px;
  display: inline-flex;
  flex-flow: wrap row;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: var(--e-global-color-primary);
  border-radius: 50%;
  z-index: 1;
  gap: 5px;
  color: var(--e-global-color-primary);
}
@media screen and (max-width: 767px) {
  div.bloc-date div.date span.icon {
    width: 85px;
    height: 85px;
  }
}
div.bloc-date div.date span.icon:before {
  --color1: rgba(229, 171, 73, 0.4);
  --color2: rgba(229, 171, 73,0.2);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 150px;
  width: 150px;
  transform: translateY(-50%) translateX(-50%);
  border-radius: 50%;
  background-color: rgba(90, 99, 128, 0.2);
  transition: 0.3s ease-out;
  transform-origin: top left;
  z-index: -1;
  animation: glow-var 2s ease-out infinite;
}
@media screen and (max-width: 767px) {
  div.bloc-date div.date span.icon:before {
    height: 100px;
    width: 100px;
  }
}
div.bloc-date div.date span.icon span {
  text-align: center;
  color: white;
  font-size: 20px;
  line-height: 20px;
  margin-left: -4px;
  text-transform: uppercase;
  display: block;
  font-weight: 500;
  flex: 1 0 100%;
}
div.bloc-date div.date span.icon span:first-child {
  font-size: 40px;
  line-height: 40px;
  margin-bottom: -8px;
}
@media screen and (max-width: 767px) {
  div.bloc-date div.date span.icon span:first-child {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: -4px;
  }
}
