/* Knop onder contactgegevens */
.lc-footer-contact-button {
    margin-top: 16px;
}

.lc-footer-contact-button button {
    background: #ff7a00;
    color: #fff;
    border: 0;
    border-radius: 10px;
    padding: 13px 20px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.lc-footer-contact-button button:hover {
    background: #e86e00;
}

/* Chat-popup: standaard verborgen */
.lc-chat-popup {
    display: none;
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: min(450px, calc(100vw - 40px));
    height: min(720px, calc(100vh - 40px));
    z-index: 99999;
    background: #ffffff;
    border-radius: 18px;
}

.lc-chat-popup-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .30);
}

.lc-chat-popup iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: #ffffff;
}

.lc-chat-close {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 5;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 24px;
    line-height: 30px;
    cursor: pointer;
}

.lc-chat-close:hover {
    background: #ff7a00;
}

/* Beveiligingscheck-popup */
.lc-popup {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 330px;
    z-index: 9999;
    display: none;
    font-family: Arial, sans-serif;
}

.lc-popup-inner {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 22px 20px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    overflow: visible;
}

.lc-popup-inner strong {
    display: block;
    font-size: 18px;
    color: #f58220;
    margin-bottom: 10px;
}

.lc-popup-inner p {
    margin: 0 0 9px;
    line-height: 1.45;
    color: #444;
}

.lc-small {
    font-size: 13px;
    color: #777;
}

.lc-btn {
    display: block;
    margin-top: 12px;
    padding: 13px 16px;
    background: #ff7900;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
}

.lc-btn:hover {
    background: #e86e00;
}

.lc-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: 0;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #222;
    z-index: 5;
}

/* Diefje boven de popup */
.lc-thief {
    position: absolute;
    top: -118px;
    right: 22px;
    width: 150px;
    height: auto;
    opacity: 0;
    transform: translateY(35px);
    pointer-events: none;
    z-index: 3;
}

.lc-thief.show {
    animation: lcThiefPeek 4s ease-in-out forwards;
}

@keyframes lcThiefPeek {
    0% {
        opacity: 0;
        transform: translateY(35px);
    }

    18% {
        opacity: 1;
        transform: translateY(0);
    }

    72% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(35px);
    }
}

@media (max-width: 600px) {
    .lc-chat-popup {
        left: 10px;
        bottom: 10px;
        width: calc(100vw - 20px);
        height: calc(100vh - 20px);
    }
}

@media (max-width: 520px) {
    .lc-popup {
        left: 15px;
        right: 15px;
        bottom: 18px;
        width: auto;
    }

    .lc-thief {
        width: 130px;
        top: -103px;
        right: 18px;
    }
}