main > .container {
  padding: 60px 15px 0;
}

/* Opinion Explorer landing page - Background image overlay with opacity */
/* This file is in public/ (not processed by webpack) so it can reference public folder images directly */
body.opex-landing-active {
  position: relative;
}

@media (min-width: 768px) {
  body.opex-landing-active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/OPEX_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: var(--opex-background-opacity);
    pointer-events: none;
    z-index: 0;
  }
}
