html.popupOpen {
    overflow: hidden;
}

.web-top-banner {
    display: none;
    cursor: pointer;
}

.web-top-banner-image {
    width: 100%;
    vertical-align: middle;
}

#web-install-button {
    display: none;
}

#web-popup {
    display: none;

    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);

    z-index: 100;
}

#web-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    box-sizing: border-box;
    padding: 40px 60px 50px;
    max-width: 670px;

    background-color: white;
    border-radius: 18px;
}

#web-popup-close {
    cursor: pointer;
    transition: opacity 0.3s ease;
    opacity: 0.35;

    position: absolute;
    right: 20px;
    top: 20px;

    width: 30px;
    height: 30px;
}

#web-popup-close:hover {
    opacity: 1;
}

#web-popup-image {
    width: 100%;
}

#web-popup-body {
    margin: 22px auto 20px;
    padding: 0;
}

#web-popup-title {
    display: block;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    color: #4a4a4a;
}

#web-popup-description {
    display: block;
    font-size: 16px;
    line-height: 1.75;
    text-align: center;
    color: rgba(74, 74, 74, 0.8);
}

#web-popup-go {
    cursor: pointer;

    display: block;
    margin: 0 auto;

    border: none;
    border-radius: 27px;
    background-color: #28ce98;
    padding: 16px 48px;
}

#web-popup-go:hover {
    box-shadow: 0 4px 17px rgba(0, 0, 0, 0.1);
}

#web-popup-go > a {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

#web-popup-go > a:hover {
    text-decoration: none;
}
