/* --- BUTTON START --- */
.wpBtn {
    font-family: Roboto;
    position: fixed;
    z-index: 2;
    bottom: 25px;
    right: 25px;
    display: flex;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgb(37, 211, 102);
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

    .wpBtn svg {
        width: 40px;
        height: 40px;
        color: white;
        margin-top: 5px;
    }

    .wpBtn:hover {
        background-color: rgb(50, 230, 116);
    }

#check {
    display: none;
}

&:has(input:checked) {
    .popup

{
    display: block;
}

}

/* --- BUTTON END --- */



/* --- POPUP START --- */
.popup {
    font-family: Roboto;
    position: fixed;
    z-index: 2;
    bottom: 110px;
    right: 25px;
    display: none;
    width: 310px;
    height: 230px;
    background-color: #efe8e0;
    animation: smooth-popup 0.4s linear;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 30px 0px;
    border-radius: 16px;
}

@keyframes smooth-popup {
    0% {
        opacity: 0;
        margin-bottom: -20px;
    }

    100% {
        opacity: 1;
        margin-bottom: 0px;
    }
}

.wpTop {
    display: flex;
    align-items: center;
    width: 310px;
    height: 80px;
    border-radius: 16px 16px 0 0;
    background-color: rgb(0, 128, 105);
}

.topIn {
    display: flex;
    margin-left: 20px;
}

.foto {
    display: flex;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.topIn img {
    width: 30px;
}

.topIn h1 {
    font-size: 16px;
    color: #fff;
    margin: 3px 0 0 15px;
    font-weight: 500;
}

.topIn p {
    font-weight: 300;
}

.youMsg {
    display: flex;
    width: 160px;
    height: 65px;
    border-radius: 16px;
    background-color: #fff;
    margin: 20px 0 0 20px;
    align-items: center;
    justify-content: center;
    padding-left: 3px;
}

    .youMsg p {
        overflow: hidden;
        padding: 5px;
        font-weight: 300;
    }

.wpChatBtn {
    display: flex;
    width: 85%;
    height: 35px;
    margin: 0 auto;
    margin-top: 16px;
    background-color: #fff;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
}

    .wpChatBtn input {
        padding: 0 3px 0 10px;
        width: 85%;
        font-weight: 500;
        border: none;
    }

        .wpChatBtn input:focus {
            outline: none;
        }

    .wpChatBtn svg {
        width: 18px;
        height: 18px;
        color: #fff;
    }

.wpSendBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 30px;
    background-color: rgb(37, 211, 102);
    border-radius: 20px;
}
