#popup-banner-wrapper {
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 999999;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

#popup-banner-wrapper.show {
    max-height: 500px;
    opacity: 1;
}

#popup-banner {
    padding: 15px 40px;
    position: relative;
}

#popup-banner.admin-bar {
    margin-top: 32px;
}

#popup-banner .popup-content {
    max-width: 1000px;
    margin: 0 auto;
}

#popup-banner #popup-close {
    position: absolute;
    top: 10px;
    left: 15px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    color: inherit;
}

#popup-banner #popup-close:hover {
    text-decoration: underline;
}

#popup-banner-wrapper a {
    color: inherit;
    text-decoration: underline;
}

#popup-banner-wrapper a:hover {
    font-weight: bold;
}
