.cookie-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: none;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden; }
  .cookie-panel.active {
    display: block; }
  .cookie-panel .cookie-panel-inner {
    position: absolute;
    overflow: scroll;
    padding: 20px;
    top: 20px;
    left: 0;
    max-height: 95vh; }
    @media (min-width: 768px) {
      .cookie-panel .cookie-panel-inner {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -60%);
        min-width: 600px;
        max-width: 900px; } }