.placetopay_lightbox_wrapper {
    background: var(--placetopay-lightbox-backdrop-color);
    position: var(--placetopay-lightbox-position);
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: var(--placetopay-lightbox-wrapper-width);
    height: var(--placetopay-lightbox-wrapper-height);
    z-index: 999;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

#placetopay_lightbox {
    border: 0;
    border-radius: var(--placetopay-lightbox-border-radius);
    overflow: hidden;
    background-color: #fff;
    height: 100%;
    width: 100%;
    max-height: var(--placetopay-lightbox-max-height);
    max-width: var(--placetopay-lightbox-max-width);
    overflow: auto;
    box-shadow: 0 0 60px #00000080
}

#placetopay_close_button {
    cursor: pointer;
    position: absolute;
    right: 8px;
    top: 8px;
    border: 2px solid #4b5563;
    background: #fff;
    padding: 4px;
    border-radius: 100%;
    transition: all .05s ease-in-out
}

#placetopay_close_button:hover {
    transform: scale(.9)
}