body {
    background-color: #eee
}

.link-blue {
  color: blue !important;
}

.link-blue:hover {
  text-decoration: underline;
}

.anchor-link {
  color: lightgray !important;
  opacity: 20%;
}

.anchor-link:hover {
  opacity: 100%;
}

.chat-btn {
    position: fixed;
    right: 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)
}

#check:checked~.chat-btn .comment {
    display: none
}

.chat-btn i {
    font-size: 22px;
    color: #fff !important
}

.chat-btn {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background-color: blue;
    color: #fff;
    font-size: 22px;
    border: none
}

.wrapper {
    position: fixed;
    right: 20px;
    bottom: 100px;
    border-radius: 5px;
    opacity: 0;
    display: none;
    transition: all 0.4s
}

#check:checked~.wrapper {
    opacity: 1;
    display: block;
}

.header {
    padding: 13px;
    border-radius: 5px 5px 0px 0px;
    margin-bottom: 10px;
}

.chat-form {
    padding: 15px
}

.chat-form input,
textarea,
button {
    margin-bottom: 10px
}

.chat-form textarea {
    resize: none
}

.form-control:focus,
.btn:focus {
    box-shadow: none
}



#check {
    display: none !important
}