/* Villasplanet - Captación de propietarios */

#vp-owner-popup {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 390px;
    max-width: calc(100vw - 30px);
    box-sizing: border-box;

    padding: 30px 30px 28px;
    background: rgba(255,255,255,.98);
    color: #333;

    box-shadow: 0 12px 45px rgba(0,0,0,.22);
    z-index: 999999;

    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;

    transition:
        opacity .25s ease,
        transform .25s ease;

    font-family: Arial, Helvetica, sans-serif;
}

#vp-owner-popup.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.vp-owner-close {
    position: absolute;
    top: 8px;
    right: 12px;

    padding: 0;
    border: 0;
    background: transparent;
    color: #777;

    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.vp-owner-kicker {
    margin-bottom: 9px;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 2px;
    color: #f9b233;
}

.vp-owner-title {
    margin: 0 30px 12px 0;
    font-size: 24px;
    line-height: 1.18;
    font-weight: 600;
    color: #e75204 ;
}

.vp-owner-text {
    margin-bottom: 21px;
    font-size: 15px;
    line-height: 1.55;
    color: #555;
}

.vp-owner-button {
    display: inline-block;
    padding: 13px 17px;
    background: #e75204 ;
    color: #fff !important;
    text-decoration: none !important;

    font-size: 12px;
    line-height: 1.2;
    letter-spacing: .7px;
}

.vp-owner-button:hover {
    opacity: .86;
}

@media (max-width: 600px) {
    #vp-owner-popup {
        left: 15px;
        right: 15px;
        bottom: 15px;
        width: auto;
        max-width: none;
        padding: 25px 22px 23px;
    }

    .vp-owner-title {
        font-size: 21px;
    }
}
