.cookies_box{
  width: 100%;
  background-color: rgba(25, 25, 25, 0.9);
  color: #efefef;
  padding: 5px 20px;
  font-size: 12px;
  line-height: 1.2em;
  text-align: center;
  z-index: 999;
  position: absolute;
  top: 0px;
  left: 0px;
  box-sizing: border-box;
  transition: 0.6s;
  transform: translateY(0px);
}
.cookies_on{
  transform: translateY(-100px);
}
.cookies_box .h4 {
  font-size: 1.2em;
  font-weight: bold;
  padding: 7px;
  color: #fff;
}
.cookies_box .p {
  color: #a2a2a2;
}
.cookies_box .aBox{
  padding: 7px 0 5px 0;
}
.cookies_box .aBox a{
  color: #f6a21d;
  font-weight: bold;
  font-size: 14px;
  margin: 0 10px;
  text-decoration: underline;
  cursor: pointer;
}
.cookies_box .x{
  display: block;
  position: absolute;
  right: 10px;
  top: 4px;
  font-size: 20px;
  cursor: pointer;
}