html {
  height: 100%;
}
body {
  height: 100%;
}

.calendar__inner {
  text-align: center;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  font-size: 40px;
  padding: 10px;
  border: 1px solid #000;
}
.calendar__inner span {
  font-weight: 600;
}
.datepicker-inline {
  position: absolute;
  top: 100%;
  z-index: 10;
}
.datepicker {
  visibility: visible;
}

.hideDatepicker {
  display: none;
}

.overlayDiv {
  height: 100vh;
  position: fixed;
}
.overlay {
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.356);
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.spinner {
  display: none;
  width: 10em;
  height: 10em;
  border-top: 1em solid #fff;
  border-right: 1em solid transparent;
  animation: spinner 0.8s linear infinite;
  border-radius: 50%;
  margin: 40vh auto;
}
.showSpinner {
  display: block !important;
}
@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
.newsDate__title {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 40px;
  text-align: center;
}
.pagination-w-100 {
  width: 100%;
}

.page-numbers__inner,
.page-numbers {
  box-shadow: 0 0 0 0.2rem transparent;
}
.page-numbers__inner span {
  cursor: pointer;
}
.width-100 {
  width: 100%;
}
.card-center {
  margin: 0 auto;
}
