.pnpopupcontact-contact {
    display: none;
}
.pnpopupcontact-contact .pnpopupcontact-no-fields-message {
    position: fixed;
    width: 345px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
}
.pnpopupcontact-contact.pnpopupcontact-visible {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}
.pnpopupcontact-contact.pnpopupcontact-hidden {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}
.pnpopupcontact-contact .pnpopupcontact-form {
    position: fixed;
    width: 345px;
    background: #FFF;
    border-radius: 5px;
    cursor: auto;
    padding: 1.4em 1.4em 0.8em 1.4em;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3), 0 5px 15px rgba(0,0,0,0.2);
    pointer-events: auto;
    will-change: transform, opacity;
    backface-visibility: hidden;
    perspective: 1000px;
}
.pnpopupcontact-contact.pnpopupcontact-visible .pnpopupcontact-form {
    animation: pf-slide-in-right 0.5s ease-out forwards;
}
.pnpopupcontact-contact.pnpopupcontact-hidden .pnpopupcontact-form {
    animation: pf-slide-out-right 0.5s ease-out forwards;
}
.pnpopupcontact-contact .pnpopupcontact-success,
.pnpopupcontact-contact .pnpopupcontact-expired {
    position: fixed;
    width: 345px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    box-sizing: border-box;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3), 0 5px 15px rgba(0,0,0,0.2);
    pointer-events: auto;
    will-change: transform, opacity;
    backface-visibility: hidden;
    perspective: 1000px;
}
.pnpopupcontact-contact .pnpopupcontact-success {
    background: #dff0d8;
    border: 1px solid #d6e9c6;
    color: #468847;
}
.pnpopupcontact-contact .pnpopupcontact-expired {
    background: #fbddd4;
    border: 1px solid #f6a890;
    color: #fe3e02;
}
.pnpopupcontact-contact.pnpopupcontact-visible .pnpopupcontact-success,
.pnpopupcontact-contact.pnpopupcontact-visible .pnpopupcontact-expired {
    animation: pf-slide-in-right 0.5s ease-out forwards;
}
.pnpopupcontact-contact.pnpopupcontact-hidden .pnpopupcontact-success,
.pnpopupcontact-contact.pnpopupcontact-hidden .pnpopupcontact-expired {
    animation: pf-slide-out-right 0.5s ease-out forwards;
}
@keyframes pf-slide-in-right {
    0% {
        transform: translateY(-50%) translateX(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}
@keyframes pf-slide-out-right {
    0% {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-50%) translateX(300px);
        opacity: 0;
    }
}
.pnpopupcontact-contact .pnpopupcontact-header {
    background: #0091dc;
    position: relative;
    margin: -20px -20px 20px -20px;
    border-radius: 5px 5px 0 0;
    text-align: center;
    height: 50px;
    align-content: center;
    overflow: hidden;
}
.pnpopupcontact-contact .pnpopupcontact-header-content {
    color: #fff;
    font-size: 140%;
    font-weight: bold;
}
.pnpopupcontact-contact input,
.pnpopupcontact-contact textarea {
    background: #f5f5f5;
}
.pnpopupcontact-contact .pnpopupcontact-captcha-question {
    background: #f5f5f5;
}
@media (max-width: 480px) {
    .pnpopupcontact-contact .pnpopupcontact-form,
    .pnpopupcontact-contact .pnpopupcontact-success,
    .pnpopupcontact-contact .pnpopupcontact-expired,
    .pnpopupcontact-contact .pnpopupcontact-no-fields-message {
        width: 90%;
        max-width: 345px;
        right: 5%;
        left: auto;
        margin: 0;
        transform: translateY(-50%);
    }
}
.no-pointerevents .pnpopupcontact-contact {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: transparent;
}
.no-pointerevents .pnpopupcontact-contact.pnpopupcontact-visible {
    display: block;
}
.no-pointerevents .pnpopupcontact-contact.pnpopupcontact-hidden {
    display: none;
}
.no-pointerevents .pnpopupcontact-contact .pnpopupcontact-form,
.no-pointerevents .pnpopupcontact-contact .pnpopupcontact-success,
.no-pointerevents .pnpopupcontact-contact .pnpopupcontact-expired {
    animation: none !important;
    transition: none !important;
    pointer-events: auto;
}
.no-pointerevents .pnpopupcontact-contact.pnpopupcontact-visible .pnpopupcontact-form,
.no-pointerevents .pnpopupcontact-contact.pnpopupcontact-visible .pnpopupcontact-success,
.no-pointerevents .pnpopupcontact-contact.pnpopupcontact-visible .pnpopupcontact-expired {
    display: block;
}
.no-pointerevents .pnpopupcontact-contact.pnpopupcontact-hidden .pnpopupcontact-form,
.no-pointerevents .pnpopupcontact-contact.pnpopupcontact-hidden .pnpopupcontact-success,
.no-pointerevents .pnpopupcontact-contact.pnpopupcontact-hidden .pnpopupcontact-expired {
    display: none;
}
