/* Countdown */
:root{
    --bk-color: #0b5632;
    --text-color: #fff;
}

#countdown-container {
  color: var(--text-color);
  text-align: center;
  margin-bottom: 0px;
  margin-top: 0px;
  letter-spacing: 0px;
  /* text-shadow: 1px 1px 2px #ffaf00, 0 0 1em #ffaf00, 0 0 0.2em #ffaf00; */
}

#countdown-text {
  font-size: 38px;
  line-height: 38px;
  font-weight: 500;
  color: #2d2d2d;
  /* text-shadow: 1px 1px 2px #ffaf00, 0 0 1em #ffaf00, 0 0 0.2em #ffaf00; */
}

#new {
    width: 50%
	font-size: 50%;
	color: var(--text-color);
    /* text-shadow: 0px 3px 7px #393939ad; */
    position: absolute;
    top: 5px;
    right: 5px;
}

#countdown {
  font-size: 52px;
  line-height: 53px;
  font-weight: 500;
  color: var(--text-color);
  /* text-shadow: 1px 1px 2px #ffaf00, 0 0 1em #ffaf00, 0 0 0.2em #ffaf00; */
}

@media (min-width: 2000px) {
#countdown-container {
font-size: 200%;
}
#countdown-text {
font-size: 200%;
}
#countdown {
font-size: 200%;
}	
}

span.separatore {
  font-size: 30px;
  bottom: 10px;
  position: relative;
}

#giorni:before {
  content: "giorni";
  padding-left: 8px;
}
#ore:before {
  content: "ore";
}
#minuti:before {
  content: "minuti";
}
#secondi:before {
  content: "secondi";
}

span.labeled {
  position: relative;
  margin-top: 6px;
}
.labeled:before {
  position: absolute;
  left: 2px;
  right: 2px;
  font-size: 14px;
  bottom: -22px;
}

/***************************************************

COOKIE BAR

***************************************************/

#cookie-bar {
    top: 0;
    z-index: 1060;
    display: flex;
    flex-flow: column;
    width: calc(100% - 0px);
    padding: 0px;
    background-color: var(--bk-color);
	padding-top: 5px;
    padding-bottom: 5px;
}

@media (min-width: 992px) {
#cookie-bar {
	position: fixed;
}
}