.cookies-container{
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 999999;
}

.wrapper{
  position: fixed;
  bottom: 0;
  right: auto;
  height:auto;
  left: 0;
  width: 100%;
  background: #000000;
  padding: 25px 25px 30px 25px;
  box-shadow: 1px 7px 14px -5px rgba(0,0,0,0.15);
}
.cookies-container.hide{
  display: none !important;
}
.wrapper .content{
  /*margin-top: 10px;*/
}
.wrapper .content p{
  color: #fff;
  /*margin: 5px 0 20px 0;*/
}
.wrapper .content .buttons{
}
.wrapper .buttons button{
  width: 100%;
  padding: 10px 20px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  background: #ce0b0b;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wrapper .buttons button:hover{
  transform: scale(0.97);
}
.wrapper .buttons a{
  color: #fff;
}
 
