@media screen and (max-width:767px) {
    .wrap-block {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        gap: 15px;
    }
    .wrap-block a {
        width: calc(100% / 2 - 15px);
    }
    .chat {
        padding: 0 10px;
        max-height: calc(100vh - 60px);
        overflow: hidden;
    }
    .chat-footer textarea {
        margin-right: 10px;
    }
    .menu {
        left: -270px;
        -webkit-transition: left 0.3s ease;
        -o-transition: left 0.3s ease;
        transition: left 0.3s ease;
    }
    .menu.menu-open {
        left: 0;
        position: relative;
        z-index: 10;
    }
    .toggle-menu {
        position: fixed;
        z-index: 1111;
        width: 100%;
        background: linear-gradient(45deg, #050C14, #333B52);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        font-size: 20px;
        font-weight: bold;
        color: #fff;
        gap: 15px;
        padding: 10px 0 10px 20px;
        /* border-bottom: 1px solid #999999; */
    }
    .toggle-menu svg {
        width: 30px;
        fill: #fff;
    }
    .chat-wrap {
        margin-left: 0px;
        padding-top: 60px;
    }
    .chat-body {
        max-height: calc(100vh - 150px);
    }
    .chat-body.active {
        position: fixed;
        top: 60px;
        padding-bottom: 120px;
        width: calc(100% - 20px);
    }
    .chat-footer {
        padding: 20px 0px 10px;
    }
    .chat-body.active + .chat-footer {
        position: fixed;
        z-index: 1;
        width: calc(100% - 20px);
        left: 10px;
        bottom: 10px;
    }
    .um-header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 10px;
    }
    .um-header h2 {
        font-size: 20px;
    }
    .um-header .um-btn-add {
        width: 100%;
    }
    .um-btn-gray span {
        display: none;
    }
    .um-btn-gray img {
        margin-right: 0;
    }
    .um-btn-gray {
        padding: 6px;
    }
}