/* ===============================
   BASE
=============================== */
#pb-popup {
    position: fixed;
    z-index: 9999999;
    opacity: 0;
    pointer-events: none;
    transition: all .45s ease;
}

/* Visible */
#pb-popup.pb-visible {
    opacity: 1;
    pointer-events: auto;
}

/* ===============================
   CONTENIDO
=============================== */
.pb-popup-content {
    position: relative;
    background: #fff;
    padding: 10px;
    border-radius: 14px;
    box-shadow: 0 15px 45px rgba(0,0,0,.45);
    max-width: 340px;
}

.pb-popup-content img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

/* ===============================
   BOTÓN CERRAR
=============================== */
.pb-close {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #000;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
}

/* ===============================
   POSICIÓN: HOME CENTRADO
=============================== */
#pb-popup.pb-home-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
}

#pb-popup.pb-home-center.pb-visible {
    transform: translate(-50%, -50%);
}

/* ===============================
   POSICIÓN: BOTTOM RIGHT
=============================== */
#pb-popup.pb-bottom-right {
    bottom: 20px;
    right: 20px;
    transform: translateY(120%);
}

#pb-popup.pb-bottom-right.pb-visible {
    transform: translateY(0);
}

/* ===============================
   MOBILE
=============================== */
@media (max-width: 768px) {

    .pb-popup-content {
        max-width: 260px;
    }

    #pb-popup.pb-home-center {
        width: 90%;
    }
}
