#cookie-consent-bar {
  position: fixed;
  bottom: 0;
  left: 13px;
  right: 13px;
  width: calc(100% - 26px);
  max-width: 900px;
  background-color: #121212;
  color: #e0e0e0;
  padding: 15px 50px 15px 15px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  font-size: 14px;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  z-index: 10000;
}
#cookie-consent-bar a {
  color: #4ea1ff;
  text-decoration: underline;
  cursor: pointer;
}
#cookie-consent-bar .close-btn {
  position: absolute;
  top: 8px;
  right: 15px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  color: #aaa;
  font-size: 20px;
  line-height: 20px;
  font-weight: bold;
  background: transparent;
  border: none;
  padding: 0;
  transition: color 0.3s ease;
}
#cookie-consent-bar .close-btn:hover {
  color: #fff;
}
@media (max-width: 600px) {
  #cookie-consent-bar {
    font-size: 12px;
    padding: 12px 40px 12px 12px;
    border-radius: 0;
    width: calc(100% - 26px);
  }
  #cookie-consent-bar .close-btn {
    top: 6px;
    right: 10px;
    width: 18px;
    height: 18px;
    font-size: 18px;
    line-height: 18px;
  }
}
@media (min-width: 601px) and (max-width: 900px) {
  #cookie-consent-bar {
    font-size: 13px;
  }
}