footer #chatBtn .chat-btn {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    cursor: pointer;
}

footer #chatBtn .chat-btn .close {
    display: none
}

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

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

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

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

footer #chatBtn .chat-btn {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background-color: var(--marrom);
    color: #fff;
    font-size: 22px;
    border: none;
    z-index: 2;
}

footer #chatBtn .wrapper {
    position: fixed;
    right: 2rem;
    bottom: 100px;
    max-width: 80vw;
    width: 300px;
    background-color: #fff;
    border-radius: 5px;
    opacity: 0;
    z-index: -1;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}

footer #chatBtn #check:checked~.wrapper {
    opacity: 1;
    z-index: 2;
}

footer #chatBtn .header {
    padding: 13px;
    background-color: var(--marrom);
    border-radius: 5px 5px 0px 0px;
    margin-bottom: 10px;
    color: #fff
}

footer #chatBtn .chat-form {
    padding: 15px
}

footer #chatBtn .chat-form input,
footer #chatBtn textarea,
footer #chatBtn button {
    margin-bottom: 10px
}

footer #chatBtn .chat-form textarea {
    resize: none
}

footer #chatBtn .form-control:focus,
footer #chatBtn .btn:focus {
    box-shadow: none
}

footer #chatBtn .btn,
footer #chatBtn .btn:focus,
footer #chatBtn .btn:hover {
    background-color: var(--marrom);
    border: var(--marrom)
}

footer #chatBtn #check {
    display: none !important
}