.single-kompass_sc_designer .popup-container {
    position: fixed;
    bottom: 7%;
    left: 0;
    z-index: 999999;
    width: 100%;
    height: 50%;
}

.single-kompass_sc_designer .popup-container--inner {
    width: 100%;
    height: 100%;
}

.single-kompass_sc_designer .popup-container .popup {
    position: absolute;
    right: -100%;
    top: 0;
    width: 62%;
    height: 100%;
    transition: all 1s;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1s;
}

.single-kompass_sc_designer .popup-container .popup > div > p {
    width: 100% !important;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.single-kompass_sc_designer .popup-container .popup img {
    width: 100%;
    height: auto;
}

.single-kompass_sc_designer .popup-container .popup.show {
    opacity: 1;
    right: 0;
}

.heartbeat .animate {
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat
{
    0%
    {
        transform: scale( .75 );
    }
    20%
    {
        transform: scale( 1 );
    }
    40%
    {
        transform: scale( .75 );
    }
    60%
    {
        transform: scale( 1 );
    }
    80%
    {
        transform: scale( .75 );
    }
    100%
    {
        transform: scale( .75 );
    }
}