
.gbnew-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: auto;
  max-width: 1200px;
  margin: 0;
  padding: 20px 20px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333333;
  transform: translateY(130%);
  transition: transform 600ms;
}
.gbnew-cookie-bar__content {
  padding: 0;
  margin: 0;
  line-height: 1.3em;
  font-size: 13px;
  color: white;
}
.gbnew-cookie-bar__link {
  color: inherit;
  text-decoration: underline;
}
.gbnew-cookie-bar__close {
  color: white;
  cursor: pointer;
  border: 2px solid white;
  border-radius: 2px;
  padding: 5px 10px;
  margin-left: 20px;
  white-space: nowrap;
  transition: all 200ms;
  font-size: 13px;
}
.gbnew-cookie-bar__close:hover {
  background-color: white;
  color: #333333;
}
.gbnew-cookie-bar--show {
  transform: translateY(0);
}
.gbnew-cookie-bar--closed {
  -webkit-animation: gbnew-cookie-bar-close forwards 800ms;
          animation: gbnew-cookie-bar-close forwards 800ms;
}
.gbnew-cookie-bar--hidden {
  display: none;
}

@media screen and (min-width: 700px) {
  .gbnew-cookie-bar {
    margin: 10px;
  }
}
@media screen and (min-width: 850px) {
  .gbnew-cookie-bar__content {
    line-height: 1.5em;
    font-size: 0.9em;
  }
  .gbnew-cookie-bar__close {
    font-size: 15px;
  }
}
@media screen and (max-width: 670px) {
  .gbnew-cookie-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .gbnew-cookie-bar__close {
    margin-top: 20px;
    margin-left: 0;
    font-size: 13px;
  }
}
@-webkit-keyframes gbnew-cookie-bar-close {
  99% {
    bottom: -100%;
  }
  100% {
    bottom: -100%;
    display: none;
  }
}
@keyframes gbnew-cookie-bar-close {
  99% {
    bottom: -100%;
  }
  100% {
    bottom: -100%;
    display: none;
  }
}