.pop-form{
    position: absolute;
    top: 10vh;
    right: 85px;
    height: auto;
    background-color: #fff;
    width: 426px;
    border-radius: 10px;
    z-index: 100;
    box-sizing: content-box;
    box-shadow: 0px 0px 5px lightcoral;
    position: fixed;
    display: none;
}
.pop-form textarea{
    resize: none;
}
.cancel-btn{
    position: absolute;
    right: 30px;
    top: 20px;
    cursor: pointer;
}

/* Chat Icon */

.chat-icon{
    position:absolute;
    display: inline-block;
    background-color: brown;
    border-radius: 10px;
    right: 15px;
    bottom:140px;
    cursor: pointer;
    position:fixed;
    transition: .2s ease-in-out;
}
.chat-icon:hover{
    background-color: rgb(0,0,0);
}

@media screen and (max-width:646px) {
    /* .pop-form{
        width: 60%;
        right: 80px;
    } */
    .chat-icon{
        bottom:70px;
    }
}

@media screen and (max-width:576px) {
    .pop-form{
        width: 70%;
        right: 3%;
    }
    .chat-icon{
        bottom:70px;
    }
}