/* CENTERPARTIET – PUFF TAKEOVER */

/* Identifieraren på Puff-komponenten är: takeoverpuff */
#takeoverpuff {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
    margin: 0 !important;
    z-index: 9998 !important;
    background: #fff;
    overflow: auto;
    display: none;
}

#takeoverpuff.takeover-visible {
    display: block !important;
}

body.takeover-open {
    overflow: hidden !important;
}

.takeover-close {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(0,0,0,.75);
    color: #fff;
    font-size: 32px;
    line-height: 48px;
    text-align: center;
    cursor: pointer;
    padding: 0;
}
