/* Кнопка быстрого чата */
div.quick-chat-button {
	position: fixed;
    bottom: 5%;
    right: 5%;
    margin-right: 5px;
    margin-bottom: 5px;
    background: #284791;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    padding: 0px;
    display: none;
}

div.quick-chat-button input.button[type="checkbox"] {
    width: 0px;
    height: 0px;
    outline: none;
    box-shadow: none;
    display: block;
}
div.quick-chat-button input.button[type="checkbox"]::before {
    content: " ";
    width: 70px;
    height: 70px;
    display: inline-block;
    background-image: url('/lk/images/chat-circle.svg');
    background-size: 60px;
    background-position: 4px 4px;
    background-repeat: no-repeat;
    filter: invert(1);
    cursor: pointer;
}

div.quick-chat-button > ul {
    position: fixed;
    background: #fff;
    border: 1px solid #000;
    bottom: 10%;
    right: 11%;
    list-style-type: none;
    -webkit-margin-start: 0px;
    padding: 0px;
    border-radius: 10px;
    margin: 0 4px 0 4px;
    display: none;
}

div.quick-chat-button input.button[type="checkbox"]:checked + ul {
    display: inline-block;
}

div.quick-chat-button > ul :first-child {
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
}

div.quick-chat-button > ul :last-child {
    border-bottom-left-radius: 9px;
    border-bottom-right-radius: 9px;
}

div.quick-chat-button li {
    padding-block-start: 4px;
    padding-block-end: 4px;
    padding-left: 4px;
    padding-right: 4px;
}

div.quick-chat-button li:hover {
    background-color: #284791;
    color: #fff;
    cursor: pointer;
}

body:has(div.drawer.hidden[data-region="right-hand-drawer"]) div.quick-chat-button {
    display: inline-block !important;
}

@media (max-width: 767.98px) {

    div.drawer[data-region="right-hand-drawer"] i.fa-window-close {
        width: 32px;
        height: 32px;
    }
    div.drawer[data-region="right-hand-drawer"] i.fa-window-close::before {
        font-size: 32px;
    }

}