footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    background-color: #000;
}

footer .copyright {
    font-size: 16px;
    color: #fff;
}

footer.unauthorized {
    display: none;
}

.date-picker-wrapper {
  position: relative;
  display: inline-block;
}

/* Κουμπί κρυφό από default */
.date-picker-wrapper .clear-date {
  display: none;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 1.2em;
  line-height: 1;
  cursor: pointer;
  color: #888;
}

/* Όταν υπάρχει τιμή, εμφανίζεται */
.date-picker-wrapper.has-value .clear-date {
  display: block;
}


.loading {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(46 46 46 / 45%);
    z-index: -1;
    transform: scale(0);
    pointer-events: none;
    opacity: 0;
}

.loading.on {
    z-index: 9999;
    transform: scale(1);
    pointer-events: all;
    opacity: 1;
}

.lds-ripple,
.lds-ripple div {
  box-sizing: border-box;
}
.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid #3f45cc;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}



@media screen and (max-width: 1020px) {
    footer {
        padding: 10px;
    }

    footer .copyright {
        font-size: 14px;
    }
}
