.chat-btn {
    position: fixed;
    left: 14px;
    bottom: 30px;
    cursor: pointer
}

.chat-btn .close {
    display: none
}

.chat-btn i {
    transition: all 0.9s ease
}

#check:checked~.chat-btn i {
    display: block;
    pointer-events: auto;
    transform: rotate(180deg);
    margin-top: 3px;
}

#check:checked~.chat-btn .comment {
    display: none
}

.chat-btn i {
    font-size: 22px;
    color: #fff !important;
    opacity: 1
}

.chat-btn {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background-color: #0A90C4;
    color: #fff;
    font-size: 22px;
    border: none;
    z-index: 999
}

.chat-wrapper {
    position: fixed;
    left: 70px;
    bottom: 40px;
    /*right: 20px;
    bottom: 100px;*/
    width: 300px;
    background-color: whitesmoke;
    border-radius: 5px;
    opacity: 0;
    transition: all 0.4s
}

#check:checked~.chat-wrapper {
    opacity: 1;
    z-index: 9999999
}

.chat-header {
    padding: 13px;
    background-color: #0A90C3;
    border-radius: 5px 5px 0px 0px;
    margin-bottom: 10px;
    color: #fff
}
.chat-header h6 {
  color: #fff
}

.chat-form input {
  margin-bottom: 5px
}

.chat-form {
    padding: 15px;
        margin-bottom: 10px
}

.chat-form textarea {
    resize: none
}

#check {
    display: none !important
}
