.cache-bar_container {
  display: flex;
  justify-content: center;
  margin: 0;
}

#refresh-cache-bar {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 16px;
  position: fixed;
  transform: translateY(-50%);
  z-index: 100000;
  font-family: Raleway, sans-serif;
  pointer-events: none;
  opacity: 0;
}

@media only screen and (width <= 1024px) {
  #refresh-cache-bar {
    top: 50%;
  }
}

@media only screen and (width >= 1025px) {
  #refresh-cache-bar {
    top: 75%;
  }
}

#refresh-cache-bar.show {
  animation: fadein 0.5s;
  visibility: visible !important;
  pointer-events: auto;
  opacity: 1;
}

.link {
  color: #4990e2;
  font-weight: 700;
  padding: 0 20px;
  text-decoration: none !important;
  cursor: pointer;
  pointer-events: auto;
  user-select: none;
}

.link:hover {
  text-decoration: underline !important;
}

#close-cache-bar {
  color: #fff;
  text-decoration: none !important;
  cursor: pointer;
  pointer-events: auto;
  user-select: none;
  padding: 0 8px;
}

#close-cache-bar:hover {
  opacity: 0.8;
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

